From 2f11f56d323cc7a559ecc42f521083301479920e Mon Sep 17 00:00:00 2001 From: kondou Date: Thu, 18 Apr 2013 18:28:03 +0200 Subject: [PATCH 01/64] Use !== and === in files_trashbin-app --- apps/files_trashbin/ajax/delete.php | 2 +- apps/files_trashbin/ajax/undelete.php | 2 +- apps/files_trashbin/index.php | 12 +++++------ apps/files_trashbin/js/trash.js | 20 +++++++++---------- apps/files_trashbin/lib/trash.php | 4 ++-- apps/files_trashbin/templates/index.php | 2 +- .../templates/part.breadcrumb.php | 2 +- apps/files_trashbin/templates/part.list.php | 10 +++++----- 8 files changed, 27 insertions(+), 27 deletions(-) diff --git a/apps/files_trashbin/ajax/delete.php b/apps/files_trashbin/ajax/delete.php index 16c39ab385..92361b65f6 100644 --- a/apps/files_trashbin/ajax/delete.php +++ b/apps/files_trashbin/ajax/delete.php @@ -13,7 +13,7 @@ $success = array(); $i = 0; foreach ($list as $file) { - if ( $dirlisting=='0') { + if ( $dirlisting === '0') { $delimiter = strrpos($file, '.d'); $filename = substr($file, 0, $delimiter); $timestamp = substr($file, $delimiter+2); diff --git a/apps/files_trashbin/ajax/undelete.php b/apps/files_trashbin/ajax/undelete.php index 9d78f16676..e39004cc0d 100644 --- a/apps/files_trashbin/ajax/undelete.php +++ b/apps/files_trashbin/ajax/undelete.php @@ -12,7 +12,7 @@ $success = array(); $i = 0; foreach ($list as $file) { - if ( $dirlisting=='0') { + if ( $dirlisting === '0') { $delimiter = strrpos($file, '.d'); $filename = substr($file, 0, $delimiter); $timestamp = substr($file, $delimiter+2); diff --git a/apps/files_trashbin/index.php b/apps/files_trashbin/index.php index 6f1c364737..7cb2832c9f 100644 --- a/apps/files_trashbin/index.php +++ b/apps/files_trashbin/index.php @@ -24,7 +24,7 @@ if ($dir) { $dirContent = $view->opendir($dir); $i = 0; while($entryName = readdir($dirContent)) { - if ( $entryName != '.' && $entryName != '..' ) { + if ( $entryName !== '.' && $entryName !== '..' ) { $pos = strpos($dir.'/', '/', 1); $tmp = substr($dir, 0, $pos); $pos = strrpos($tmp, '.d'); @@ -54,13 +54,13 @@ foreach ($result as $r) { $i['timestamp'] = $r['timestamp']; $i['mimetype'] = $r['mime']; $i['type'] = $r['type']; - if ($i['type'] == 'file') { + if ($i['type'] === 'file') { $fileinfo = pathinfo($r['id']); $i['basename'] = $fileinfo['filename']; $i['extension'] = isset($fileinfo['extension']) ? ('.'.$fileinfo['extension']) : ''; } $i['directory'] = $r['location']; - if ($i['directory'] == '/') { + if ($i['directory'] === '/') { $i['directory'] = ''; } $i['permissions'] = OCP\PERMISSION_READ; @@ -68,9 +68,9 @@ foreach ($result as $r) { } function fileCmp($a, $b) { - if ($a['type'] == 'dir' and $b['type'] != 'dir') { + if ($a['type'] === 'dir' and $b['type'] !== 'dir') { return -1; - } elseif ($a['type'] != 'dir' and $b['type'] == 'dir') { + } elseif ($a['type'] !== 'dir' and $b['type'] === 'dir') { return 1; } else { return strnatcasecmp($a['name'], $b['name']); @@ -83,7 +83,7 @@ usort($files, "fileCmp"); $pathtohere = ''; $breadcrumb = array(); foreach (explode('/', $dir) as $i) { - if ($i != '') { + if ($i !== '') { if ( preg_match('/^(.+)\.d[0-9]+$/', $i, $match) ) { $name = $match[1]; } else { diff --git a/apps/files_trashbin/js/trash.js b/apps/files_trashbin/js/trash.js index 87dfea491e..295bc69511 100644 --- a/apps/files_trashbin/js/trash.js +++ b/apps/files_trashbin/js/trash.js @@ -15,7 +15,7 @@ $(document).ready(function() { var row = document.getElementById(result.data.success[i].filename); row.parentNode.removeChild(row); } - if (result.status != 'success') { + if (result.status !== 'success') { OC.dialogs.alert(result.data.message, t('core', 'Error')); } }); @@ -42,7 +42,7 @@ $(document).ready(function() { var row = document.getElementById(result.data.success[i].filename); row.parentNode.removeChild(row); } - if (result.status != 'success') { + if (result.status !== 'success') { OC.dialogs.alert(result.data.message, t('core', 'Error')); } }); @@ -72,7 +72,7 @@ $(document).ready(function() { var rows = $(this).parent().parent().parent().children('tr'); for (var i = start; i < end; i++) { $(rows).each(function(index) { - if (index == i) { + if (index === i) { var checkbox = $(this).children().children('input:checkbox'); $(checkbox).attr('checked', 'checked'); $(checkbox).parent().parent().addClass('selected'); @@ -111,7 +111,7 @@ $(document).ready(function() { var row = document.getElementById(result.data.success[i].filename); row.parentNode.removeChild(row); } - if (result.status != 'success') { + if (result.status !== 'success') { OC.dialogs.alert(result.data.message, t('core', 'Error')); } }); @@ -137,7 +137,7 @@ $(document).ready(function() { var row = document.getElementById(result.data.success[i].filename); row.parentNode.removeChild(row); } - if (result.status != 'success') { + if (result.status !== 'success') { OC.dialogs.alert(result.data.message, t('core', 'Error')); } }); @@ -170,9 +170,9 @@ $(document).ready(function() { function processSelection(){ var selected=getSelectedFiles(); - var selectedFiles=selected.filter(function(el){return el.type=='file'}); - var selectedFolders=selected.filter(function(el){return el.type=='dir'}); - if(selectedFiles.length==0 && selectedFolders.length==0) { + var selectedFiles=selected.filter(function(el){return el.type === 'file'}); + var selectedFolders=selected.filter(function(el){return el.type === 'dir'}); + if(selectedFiles.length === 0 && selectedFolders.length === 0) { $('#headerName>span.name').text(t('files','Name')); $('#modified').text(t('files','Deleted')); $('table').removeClass('multiselect'); @@ -182,7 +182,7 @@ function processSelection(){ $('.selectedActions').show(); var selection=''; if(selectedFolders.length>0){ - if(selectedFolders.length==1){ + if(selectedFolders.length === 1){ selection+=t('files','1 folder'); }else{ selection+=t('files','{count} folders',{count: selectedFolders.length}); @@ -192,7 +192,7 @@ function processSelection(){ } } if(selectedFiles.length>0){ - if(selectedFiles.length==1){ + if(selectedFiles.length === 1){ selection+=t('files','1 file'); }else{ selection+=t('files','{count} files',{count: selectedFiles.length}); diff --git a/apps/files_trashbin/lib/trash.php b/apps/files_trashbin/lib/trash.php index b9d900dfab..a74d03ea4c 100644 --- a/apps/files_trashbin/lib/trash.php +++ b/apps/files_trashbin/lib/trash.php @@ -262,14 +262,14 @@ class Trashbin { $query = \OC_DB::prepare('SELECT `location`,`type` FROM `*PREFIX*files_trash`' . ' WHERE `user`=? AND `id`=? AND `timestamp`=?'); $result = $query->execute(array($user, $filename, $timestamp))->fetchAll(); - if (count($result) != 1) { + if (count($result) !== 1) { \OC_Log::write('files_trashbin', 'trash bin database inconsistent!', \OC_Log::ERROR); return false; } // if location no longer exists, restore file in the root directory $location = $result[0]['location']; - if ($result[0]['location'] != '/' && + if ($result[0]['location'] !== '/' && (!$view->is_dir('files' . $result[0]['location']) || !$view->isUpdatable('files' . $result[0]['location']))) { $location = ''; diff --git a/apps/files_trashbin/templates/index.php b/apps/files_trashbin/templates/index.php index 66ec36df86..371765fa69 100644 --- a/apps/files_trashbin/templates/index.php +++ b/apps/files_trashbin/templates/index.php @@ -5,7 +5,7 @@
- +
t('Nothing in here. Your trash bin is empty!'))?>
diff --git a/apps/files_trashbin/templates/part.breadcrumb.php b/apps/files_trashbin/templates/part.breadcrumb.php index 85bb16ffa2..8ecab58e5c 100644 --- a/apps/files_trashbin/templates/part.breadcrumb.php +++ b/apps/files_trashbin/templates/part.breadcrumb.php @@ -12,7 +12,7 @@ -
svg" +
svg" data-dir=''>
diff --git a/apps/files_trashbin/templates/part.list.php b/apps/files_trashbin/templates/part.list.php index 94a8eec951..254b08dd36 100644 --- a/apps/files_trashbin/templates/part.list.php +++ b/apps/files_trashbin/templates/part.list.php @@ -7,7 +7,7 @@ $name = \OCP\Util::encodePath($file['name']); $directory = \OCP\Util::encodePath($file['directory']); ?> ' @@ -22,14 +22,14 @@ data-dirlisting=0 > + style="background-image:url()" style="background-image:url()" > - + @@ -43,14 +43,14 @@ - + - + From 70b4f85911c0d1a774c6a446c44e4ec464abaee4 Mon Sep 17 00:00:00 2001 From: kondou Date: Wed, 10 Jul 2013 02:36:43 +0200 Subject: [PATCH 02/64] Use isIgnoredDir() --- apps/files_trashbin/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files_trashbin/index.php b/apps/files_trashbin/index.php index 7cb2832c9f..2dbaefe7a7 100644 --- a/apps/files_trashbin/index.php +++ b/apps/files_trashbin/index.php @@ -24,7 +24,7 @@ if ($dir) { $dirContent = $view->opendir($dir); $i = 0; while($entryName = readdir($dirContent)) { - if ( $entryName !== '.' && $entryName !== '..' ) { + if (!\OC\Files\Filesystem::isIgnoredDir($entryName)) { $pos = strpos($dir.'/', '/', 1); $tmp = substr($dir, 0, $pos); $pos = strrpos($tmp, '.d'); From dc272e6e209e9cc9a555df7ee103e48f8d088dc6 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Mon, 22 Jul 2013 16:24:46 +0200 Subject: [PATCH 03/64] db: cast default values for boolean fields to booleans --- lib/db/mdb2schemareader.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/db/mdb2schemareader.php b/lib/db/mdb2schemareader.php index 0ead9528c9..b88e0f6041 100644 --- a/lib/db/mdb2schemareader.php +++ b/lib/db/mdb2schemareader.php @@ -167,6 +167,9 @@ class OC_DB_MDB2SchemaReader { $type = 'bigint'; } } + if ($type == 'boolean' && isset($options['default'])){ + $options['default'] = self::asBool($options['default']); + } if (!empty($options['autoincrement']) && !empty($options['notnull'])) { $options['primary'] = true; From b073a34e77d127488b414fedc5b24c31b11bc12e Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Mon, 22 Jul 2013 16:25:07 +0200 Subject: [PATCH 04/64] add support for the element within field definitions --- lib/db/mdb2schemareader.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/db/mdb2schemareader.php b/lib/db/mdb2schemareader.php index b88e0f6041..e9561a7ef1 100644 --- a/lib/db/mdb2schemareader.php +++ b/lib/db/mdb2schemareader.php @@ -138,6 +138,10 @@ class OC_DB_MDB2SchemaReader { $comment = (string)$child; $options['comment'] = $comment; break; + case 'primary': + $primary = self::asBool($child); + $options['primary'] = $primary; + break; default: throw new DomainException('Unknown element: '.$child->getName()); From 499a01f179d511135828c10edf64348547d31794 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Mon, 22 Jul 2013 17:41:33 +0200 Subject: [PATCH 05/64] use === --- lib/db/mdb2schemareader.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/db/mdb2schemareader.php b/lib/db/mdb2schemareader.php index e9561a7ef1..ad4b2fe0e0 100644 --- a/lib/db/mdb2schemareader.php +++ b/lib/db/mdb2schemareader.php @@ -171,7 +171,7 @@ class OC_DB_MDB2SchemaReader { $type = 'bigint'; } } - if ($type == 'boolean' && isset($options['default'])){ + if ($type === 'boolean' && isset($options['default'])){ $options['default'] = self::asBool($options['default']); } if (!empty($options['autoincrement']) From 59bdba9bac531fb18b7026649e118ea4e3944e07 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Fri, 26 Jul 2013 15:43:10 +0200 Subject: [PATCH 06/64] fix scanner hooks, cant use inside closures in php 5.3 --- lib/files/utils/scanner.php | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/lib/files/utils/scanner.php b/lib/files/utils/scanner.php index 800bb64993..da0cbd75f6 100644 --- a/lib/files/utils/scanner.php +++ b/lib/files/utils/scanner.php @@ -10,6 +10,7 @@ namespace OC\Files\Utils; use OC\Hooks\BasicEmitter; use OC\Files\Filesystem; +use OC\Hooks\PublicEmitter; /** * Class Scanner @@ -20,7 +21,7 @@ use OC\Files\Filesystem; * * @package OC\Files\Utils */ -class Scanner extends BasicEmitter { +class Scanner extends PublicEmitter { /** * @var string $user */ @@ -60,11 +61,12 @@ class Scanner extends BasicEmitter { */ protected function attachListener($mount) { $scanner = $mount->getStorage()->getScanner(); - $scanner->listen('\OC\Files\Cache\Scanner', 'scanFile', function ($path) use ($mount) { - $this->emit('\OC\Files\Utils\Scanner', 'scanFile', array($mount->getMountPoint() . $path)); + $emitter = $this; + $scanner->listen('\OC\Files\Cache\Scanner', 'scanFile', function ($path) use ($mount, &$emitter) { + $emitter->emit('\OC\Files\Utils\Scanner', 'scanFile', array($mount->getMountPoint() . $path)); }); - $scanner->listen('\OC\Files\Cache\Scanner', 'scanFolder', function ($path) use ($mount) { - $this->emit('\OC\Files\Utils\Scanner', 'scanFolder', array($mount->getMountPoint() . $path)); + $scanner->listen('\OC\Files\Cache\Scanner', 'scanFolder', function ($path) use ($mount, &$emitter) { + $emitter->emit('\OC\Files\Utils\Scanner', 'scanFolder', array($mount->getMountPoint() . $path)); }); } From dd4e33fe6b1cf9feccaeae33c81fc8b08fb24d4d Mon Sep 17 00:00:00 2001 From: Michael Gapczynski Date: Sun, 28 Jul 2013 16:14:49 -0400 Subject: [PATCH 07/64] Fix calculating size for empty folders --- lib/files/cache/cache.php | 35 ++++++++++++++++------------------- 1 file changed, 16 insertions(+), 19 deletions(-) diff --git a/lib/files/cache/cache.php b/lib/files/cache/cache.php index 3818fdbd84..458df56141 100644 --- a/lib/files/cache/cache.php +++ b/lib/files/cache/cache.php @@ -485,27 +485,24 @@ class Cache { * @return int */ public function calculateFolderSize($path) { - $id = $this->getId($path); - if ($id === -1) { - return 0; - } - $sql = 'SELECT `size` FROM `*PREFIX*filecache` WHERE `parent` = ? AND `storage` = ?'; - $result = \OC_DB::executeAudited($sql, array($id, $this->getNumericStorageId())); $totalSize = 0; - $hasChilds = 0; - while ($row = $result->fetchRow()) { - $hasChilds = true; - $size = (int)$row['size']; - if ($size === -1) { - $totalSize = -1; - break; - } else { - $totalSize += $size; + $entry = $this->get($path); + if ($entry && $entry['mimetype'] === 'httpd/unix-directory') { + $id = $entry['fileid']; + $sql = 'SELECT `size` FROM `*PREFIX*filecache` WHERE `parent` = ? AND `storage` = ?'; + $result = \OC_DB::executeAudited($sql, array($id, $this->getNumericStorageId())); + while ($row = $result->fetchRow()) { + $size = (int)$row['size']; + if ($size === -1) { + $totalSize = -1; + break; + } else { + $totalSize += $size; + } + } + if ($entry['size'] !== $totalSize) { + $this->update($id, array('size' => $totalSize)); } - } - - if ($hasChilds) { - $this->update($id, array('size' => $totalSize)); } return $totalSize; } From 7e5ae8d78082891386f170d2d3db9b7ca7436e4c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Tue, 9 Jul 2013 12:31:46 +0200 Subject: [PATCH 08/64] test lastinsertid --- tests/lib/db.php | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/tests/lib/db.php b/tests/lib/db.php index e817a2db5e..e965ce8e1c 100644 --- a/tests/lib/db.php +++ b/tests/lib/db.php @@ -71,7 +71,19 @@ class Test_DB extends PHPUnit_Framework_TestCase { $result = $query->execute(array('uri_3')); $this->assertTrue((bool)$result); } - + + public function testLastInsertId() { + $query = OC_DB::prepare('INSERT INTO `*PREFIX*'.$this->table2.'` (`fullname`,`uri`) VALUES (?,?)'); + $result = OC_DB::executeAudited($query, array('insertid 1','uri_1')); + $id1 = OC_DB::insertid('*PREFIX*'.$this->table2); + // we don't know the id we should expect, so insert another row + $query = OC_DB::prepare('INSERT INTO `*PREFIX*'.$this->table2.'` (`fullname`,`uri`) VALUES (?,?)'); + $result = OC_DB::executeAudited($query, array('insertid 2','uri_2')); + $id2 = OC_DB::insertid('*PREFIX*'.$this->table2); + // now we can check if the two ids are in correct order + $this->assertEquals($id1+1, $id2); + } + public function testinsertIfNotExist() { $categoryentries = array( array('user' => 'test', 'type' => 'contact', 'category' => 'Family', 'expectedResult' => 1), From 05fa55f2eb6997f3b59a2418a64447427a1b19ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Tue, 9 Jul 2013 13:17:01 +0200 Subject: [PATCH 09/64] always return int --- lib/db.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/db.php b/lib/db.php index e70d66fc2b..dd48c32949 100644 --- a/lib/db.php +++ b/lib/db.php @@ -344,7 +344,7 @@ class OC_DB { $result = self::executeAudited('SELECT lastval() AS id'); $row = $result->fetchRow(); self::raiseExceptionOnError($row, 'fetching row for insertid failed'); - return $row['id']; + return (int)$row['id']; } else if( $type === 'mssql') { if($table !== null) { $prefix = OC_Config::getValue( "dbtableprefix", "oc_" ); @@ -368,7 +368,7 @@ class OC_DB { $result = self::$connection->lastInsertId($table); } self::raiseExceptionOnError($result, 'insertid failed'); - return $result; + return (int)$result; } /** From b8bd1e5a81080a756913e5804b877aafd770f6e3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Tue, 9 Jul 2013 13:17:25 +0200 Subject: [PATCH 10/64] check type, assertgreaterthan --- tests/lib/db.php | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/tests/lib/db.php b/tests/lib/db.php index e965ce8e1c..79e05f30a1 100644 --- a/tests/lib/db.php +++ b/tests/lib/db.php @@ -74,14 +74,16 @@ class Test_DB extends PHPUnit_Framework_TestCase { public function testLastInsertId() { $query = OC_DB::prepare('INSERT INTO `*PREFIX*'.$this->table2.'` (`fullname`,`uri`) VALUES (?,?)'); - $result = OC_DB::executeAudited($query, array('insertid 1','uri_1')); + $result1 = OC_DB::executeAudited($query, array('insertid 1','uri_1')); $id1 = OC_DB::insertid('*PREFIX*'.$this->table2); + $this->assertInternalType('int', $id1); + // we don't know the id we should expect, so insert another row - $query = OC_DB::prepare('INSERT INTO `*PREFIX*'.$this->table2.'` (`fullname`,`uri`) VALUES (?,?)'); - $result = OC_DB::executeAudited($query, array('insertid 2','uri_2')); + $result2 = OC_DB::executeAudited($query, array('insertid 2','uri_2')); $id2 = OC_DB::insertid('*PREFIX*'.$this->table2); // now we can check if the two ids are in correct order - $this->assertEquals($id1+1, $id2); + $this->assertInternalType('int', $id2); + $this->assertGreaterThan($id1, $id2); } public function testinsertIfNotExist() { From 97f2c393c122409f1c90234935a8ebbca962cb44 Mon Sep 17 00:00:00 2001 From: Victor Dubiniuk Date: Mon, 29 Jul 2013 16:33:23 +0300 Subject: [PATCH 11/64] Allow apps to have own 404 content, closes #3225 --- apps/files_sharing/public.php | 5 +++++ apps/files_sharing/templates/part.404.php | 12 ++++++++++++ core/css/styles.css | 12 ++++++++++++ core/templates/404.php | 16 ++++++++++------ 4 files changed, 39 insertions(+), 6 deletions(-) create mode 100644 apps/files_sharing/templates/part.404.php diff --git a/apps/files_sharing/public.php b/apps/files_sharing/public.php index 3f8e29345a..6878109f7b 100644 --- a/apps/files_sharing/public.php +++ b/apps/files_sharing/public.php @@ -234,6 +234,11 @@ if (isset($path)) { } else { OCP\Util::writeLog('share', 'could not resolve linkItem', \OCP\Util::DEBUG); } + +$errorTemplate = new OCP\Template('files_sharing', 'part.404', ''); +$errorContent = $errorTemplate->fetchPage(); + header('HTTP/1.0 404 Not Found'); $tmpl = new OCP\Template('', '404', 'guest'); +$tmpl->assign('content', $errorContent); $tmpl->printPage(); diff --git a/apps/files_sharing/templates/part.404.php b/apps/files_sharing/templates/part.404.php new file mode 100644 index 0000000000..400dd6bbfd --- /dev/null +++ b/apps/files_sharing/templates/part.404.php @@ -0,0 +1,12 @@ +
    + +
\ No newline at end of file diff --git a/core/css/styles.css b/core/css/styles.css index 0dd66fb5b7..1e2ce3862a 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -304,6 +304,18 @@ label.infield { cursor:text !important; top:1.05em; left:.85em; } #body-login form .errors { background:#fed7d7; border:1px solid #f00; list-style-indent:inside; margin:0 0 2em; padding:1em; } #body-login .success { background:#d7fed7; border:1px solid #0f0; width: 35%; margin: 30px auto; padding:1em; text-align: center;} +#body-login .error-broken-link{ + text-align:left; +} + +#body-login .error-broken-link ul{ + margin:10px 0 10px 0; +} + +#body-login .error-broken-link ul li{ + list-style: disc;list-style-position:inside; +} + /* Show password toggle */ #show, #dbpassword { position: absolute; diff --git a/core/templates/404.php b/core/templates/404.php index ee17f0de8e..bf1e03e6bc 100644 --- a/core/templates/404.php +++ b/core/templates/404.php @@ -7,9 +7,13 @@ if(!isset($_)) {//also provide standalone error page exit; } ?> -
    -
  • - t( 'Cloud not found' )); ?>
    -

    -
  • -
+ + + +
    +
  • + t( 'Cloud not found' )); ?>
    +

    +
  • +
+ From 1faac6108c0c51d28021eb0676db9ad2b94a6f3d Mon Sep 17 00:00:00 2001 From: Michael Gapczynski Date: Mon, 29 Jul 2013 10:22:44 -0400 Subject: [PATCH 12/64] Use query to calculate folder size --- lib/files/cache/cache.php | 23 +++++++++++++---------- 1 file changed, 13 insertions(+), 10 deletions(-) diff --git a/lib/files/cache/cache.php b/lib/files/cache/cache.php index 458df56141..c3d11ab4cf 100644 --- a/lib/files/cache/cache.php +++ b/lib/files/cache/cache.php @@ -489,19 +489,22 @@ class Cache { $entry = $this->get($path); if ($entry && $entry['mimetype'] === 'httpd/unix-directory') { $id = $entry['fileid']; - $sql = 'SELECT `size` FROM `*PREFIX*filecache` WHERE `parent` = ? AND `storage` = ?'; + $sql = 'SELECT SUM(`size`), MIN(`size`) FROM `*PREFIX*filecache` '. + 'WHERE `parent` = ? AND `storage` = ?'; $result = \OC_DB::executeAudited($sql, array($id, $this->getNumericStorageId())); - while ($row = $result->fetchRow()) { - $size = (int)$row['size']; - if ($size === -1) { - $totalSize = -1; - break; + if ($row = $result->fetchRow()) { + list($sum, $min) = array_values($row); + $sum = (int)$sum; + $min = (int)$min; + if ($min === -1) { + $totalSize = $min; } else { - $totalSize += $size; + $totalSize = $sum; } - } - if ($entry['size'] !== $totalSize) { - $this->update($id, array('size' => $totalSize)); + if ($entry['size'] !== $totalSize) { + $this->update($id, array('size' => $totalSize)); + } + } } return $totalSize; From afff75001156e38620e08f81cad6372abb54ebb1 Mon Sep 17 00:00:00 2001 From: Michael Gapczynski Date: Mon, 29 Jul 2013 10:23:14 -0400 Subject: [PATCH 13/64] Add test for calculating size of newly empty folder --- tests/lib/files/cache/cache.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/lib/files/cache/cache.php b/tests/lib/files/cache/cache.php index 527c1d1b2a..247373a5cb 100644 --- a/tests/lib/files/cache/cache.php +++ b/tests/lib/files/cache/cache.php @@ -127,6 +127,11 @@ class Cache extends \PHPUnit_Framework_TestCase { $this->assertEquals(1025, $this->cache->calculateFolderSize($file1)); + $this->cache->remove($file2); + $this->cache->remove($file3); + $this->cache->remove($file4); + $this->assertEquals(0, $this->cache->calculateFolderSize($file1)); + $this->cache->remove('folder'); $this->assertFalse($this->cache->inCache('folder/foo')); $this->assertFalse($this->cache->inCache('folder/bar')); From fbbe0ebe7735222b7e9502585c622ea3f98648c2 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Mon, 29 Jul 2013 16:32:37 +0200 Subject: [PATCH 14/64] add function to get config object from OC_Config --- lib/legacy/config.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/legacy/config.php b/lib/legacy/config.php index 5294a48ea4..7e49801373 100644 --- a/lib/legacy/config.php +++ b/lib/legacy/config.php @@ -46,6 +46,10 @@ class OC_Config { */ public static $object; + public static function getObject() { + return self::$object; + } + /** * @brief Lists all available config keys * @return array with key names From d6c56b584ac4fdb9169ed2747072d8f90cc00612 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Mon, 29 Jul 2013 16:33:00 +0200 Subject: [PATCH 15/64] make MDB2Schema reader non static --- lib/db/mdb2schemareader.php | 197 +++++++++++++++++++++++------------- lib/db/schema.php | 20 +++- 2 files changed, 144 insertions(+), 73 deletions(-) diff --git a/lib/db/mdb2schemareader.php b/lib/db/mdb2schemareader.php index ad4b2fe0e0..b7128a2f17 100644 --- a/lib/db/mdb2schemareader.php +++ b/lib/db/mdb2schemareader.php @@ -6,35 +6,57 @@ * See the COPYING-README file. */ -class OC_DB_MDB2SchemaReader { - static protected $DBNAME; - static protected $DBTABLEPREFIX; - static protected $platform; +namespace OC\DB; + +class MDB2SchemaReader { + /** + * @var string $DBNAME + */ + protected $DBNAME; /** - * @param $file - * @param $platform - * @return \Doctrine\DBAL\Schema\Schema - * @throws DomainException + * @var string $DBTABLEPREFIX */ - public static function loadSchemaFromFile($file, $platform) { - self::$DBNAME = OC_Config::getValue( "dbname", "owncloud" ); - self::$DBTABLEPREFIX = OC_Config::getValue( "dbtableprefix", "oc_" ); - self::$platform = $platform; + protected $DBTABLEPREFIX; + + /** + * @var \Doctrine\DBAL\Platforms\AbstractPlatform $platform + */ + protected $platform; + + /** + * @param \OC\Config $config + * @param \Doctrine\DBAL\Platforms\AbstractPlatform $platform + */ + public function __construct($config, $platform) { + $this->platform = $platform; + $this->DBNAME = $config->getValue('dbname', 'owncloud'); + $this->DBTABLEPREFIX = $config->getValue('dbtableprefix', 'oc_'); + } + + /** + * @param string $file + * @return \Doctrine\DBAL\Schema\Schema + * @throws \DomainException + */ + public function loadSchemaFromFile($file) { $schema = new \Doctrine\DBAL\Schema\Schema(); $xml = simplexml_load_file($file); - foreach($xml->children() as $child) { - switch($child->getName()) { + foreach ($xml->children() as $child) { + /** + * @var \SimpleXMLElement $child + */ + switch ($child->getName()) { case 'name': case 'create': case 'overwrite': case 'charset': break; case 'table': - self::loadTable($schema, $child); + $this->loadTable($schema, $child); break; default: - throw new DomainException('Unknown element: '.$child->getName()); + throw new \DomainException('Unknown element: ' . $child->getName()); } } @@ -43,16 +65,20 @@ class OC_DB_MDB2SchemaReader { /** * @param\Doctrine\DBAL\Schema\Schema $schema - * @param $xml - * @throws DomainException + * @param \SimpleXMLElement $xml + * @throws \DomainException */ - private static function loadTable($schema, $xml) { - foreach($xml->children() as $child) { - switch($child->getName()) { + private function loadTable($schema, $xml) { + $table = null; + foreach ($xml->children() as $child) { + /** + * @var \SimpleXMLElement $child + */ + switch ($child->getName()) { case 'name': $name = (string)$child; - $name = str_replace( '*dbprefix*', self::$DBTABLEPREFIX, $name ); - $name = self::$platform->quoteIdentifier($name); + $name = str_replace('*dbprefix*', $this->DBTABLEPREFIX, $name); + $name = $this->platform->quoteIdentifier($name); $table = $schema->createTable($name); break; case 'create': @@ -60,10 +86,13 @@ class OC_DB_MDB2SchemaReader { case 'charset': break; case 'declaration': - self::loadDeclaration($table, $child); + if (is_null($table)) { + throw new \DomainException('Table declaration before table name'); + } + $this->loadDeclaration($table, $child); break; default: - throw new DomainException('Unknown element: '.$child->getName()); + throw new \DomainException('Unknown element: ' . $child->getName()); } } @@ -71,36 +100,47 @@ class OC_DB_MDB2SchemaReader { /** * @param \Doctrine\DBAL\Schema\Table $table - * @param $xml - * @throws DomainException + * @param \SimpleXMLElement $xml + * @throws \DomainException */ - private static function loadDeclaration($table, $xml) { - foreach($xml->children() as $child) { - switch($child->getName()) { + private function loadDeclaration($table, $xml) { + foreach ($xml->children() as $child) { + /** + * @var \SimpleXMLElement $child + */ + switch ($child->getName()) { case 'field': - self::loadField($table, $child); + $this->loadField($table, $child); break; case 'index': - self::loadIndex($table, $child); + $this->loadIndex($table, $child); break; default: - throw new DomainException('Unknown element: '.$child->getName()); + throw new \DomainException('Unknown element: ' . $child->getName()); } } } - private static function loadField($table, $xml) { + /** + * @param \Doctrine\DBAL\Schema\Table $table + * @param \SimpleXMLElement $xml + * @throws \DomainException + */ + private function loadField($table, $xml) { $options = array(); - foreach($xml->children() as $child) { - switch($child->getName()) { + foreach ($xml->children() as $child) { + /** + * @var \SimpleXMLElement $child + */ + switch ($child->getName()) { case 'name': $name = (string)$child; - $name = self::$platform->quoteIdentifier($name); + $name = $this->platform->quoteIdentifier($name); break; case 'type': $type = (string)$child; - switch($type) { + switch ($type) { case 'text': $type = 'string'; break; @@ -110,8 +150,6 @@ class OC_DB_MDB2SchemaReader { case 'timestamp': $type = 'datetime'; break; - // TODO - return; } break; case 'length': @@ -119,15 +157,15 @@ class OC_DB_MDB2SchemaReader { $options['length'] = $length; break; case 'unsigned': - $unsigned = self::asBool($child); + $unsigned = $this->asBool($child); $options['unsigned'] = $unsigned; break; case 'notnull': - $notnull = self::asBool($child); + $notnull = $this->asBool($child); $options['notnull'] = $notnull; break; case 'autoincrement': - $autoincrement = self::asBool($child); + $autoincrement = $this->asBool($child); $options['autoincrement'] = $autoincrement; break; case 'default': @@ -139,11 +177,11 @@ class OC_DB_MDB2SchemaReader { $options['comment'] = $comment; break; case 'primary': - $primary = self::asBool($child); + $primary = $this->asBool($child); $options['primary'] = $primary; break; default: - throw new DomainException('Unknown element: '.$child->getName()); + throw new \DomainException('Unknown element: ' . $child->getName()); } } @@ -157,25 +195,30 @@ class OC_DB_MDB2SchemaReader { } if ($type == 'integer') { $options['default'] = 0; + } elseif ($type == 'boolean') { + $options['default'] = false; } if (!empty($options['autoincrement']) && $options['autoincrement']) { unset($options['default']); } } - if ($type == 'integer' && isset($options['length'])) { + if ($type === 'integer' && isset($options['default'])) { + $options['default'] = (int)$options['default']; + } + if ($type === 'integer' && isset($options['length'])) { $length = $options['length']; if ($length < 4) { $type = 'smallint'; - } - else if ($length > 4) { + } else if ($length > 4) { $type = 'bigint'; } } - if ($type === 'boolean' && isset($options['default'])){ - $options['default'] = self::asBool($options['default']); + if ($type === 'boolean' && isset($options['default'])) { + $options['default'] = $this->asBool($options['default']); } if (!empty($options['autoincrement']) - && !empty($options['notnull'])) { + && !empty($options['notnull']) + ) { $options['primary'] = true; } $table->addColumn($name, $type, $options); @@ -185,38 +228,49 @@ class OC_DB_MDB2SchemaReader { } } - private static function loadIndex($table, $xml) { + /** + * @param \Doctrine\DBAL\Schema\Table $table + * @param \SimpleXMLElement $xml + * @throws \DomainException + */ + private function loadIndex($table, $xml) { $name = null; $fields = array(); - foreach($xml->children() as $child) { - switch($child->getName()) { + foreach ($xml->children() as $child) { + /** + * @var \SimpleXMLElement $child + */ + switch ($child->getName()) { case 'name': $name = (string)$child; break; case 'primary': - $primary = self::asBool($child); + $primary = $this->asBool($child); break; case 'unique': - $unique = self::asBool($child); + $unique = $this->asBool($child); break; case 'field': - foreach($child->children() as $field) { - switch($field->getName()) { + foreach ($child->children() as $field) { + /** + * @var \SimpleXMLElement $field + */ + switch ($field->getName()) { case 'name': $field_name = (string)$field; - $field_name = self::$platform->quoteIdentifier($field_name); + $field_name = $this->platform->quoteIdentifier($field_name); $fields[] = $field_name; break; case 'sorting': break; default: - throw new DomainException('Unknown element: '.$field->getName()); + throw new \DomainException('Unknown element: ' . $field->getName()); } } break; default: - throw new DomainException('Unknown element: '.$child->getName()); + throw new \DomainException('Unknown element: ' . $child->getName()); } } @@ -224,22 +278,25 @@ class OC_DB_MDB2SchemaReader { if (isset($primary) && $primary) { $table->setPrimaryKey($fields, $name); } else - if (isset($unique) && $unique) { - $table->addUniqueIndex($fields, $name); - } else { - $table->addIndex($fields, $name); - } + if (isset($unique) && $unique) { + $table->addUniqueIndex($fields, $name); + } else { + $table->addIndex($fields, $name); + } } else { - throw new DomainException('Empty index definition: '.$name.' options:'. print_r($fields, true)); + throw new \DomainException('Empty index definition: ' . $name . ' options:' . print_r($fields, true)); } } - private static function asBool($xml) { + /** + * @param \SimpleXMLElement | string $xml + * @return bool + */ + private function asBool($xml) { $result = (string)$xml; if ($result == 'true') { $result = true; - } else - if ($result == 'false') { + } elseif ($result == 'false') { $result = false; } return (bool)$result; diff --git a/lib/db/schema.php b/lib/db/schema.php index fa053c64ef..bc82249609 100644 --- a/lib/db/schema.php +++ b/lib/db/schema.php @@ -24,18 +24,21 @@ class OC_DB_Schema { /** * @brief Creates tables from XML file + * @param \Doctrine\DBAL\Connection $conn * @param string $file file to read structure from * @return bool * * TODO: write more documentation */ public static function createDbFromStructure( $conn, $file ) { - $toSchema = OC_DB_MDB2SchemaReader::loadSchemaFromFile($file, $conn->getDatabasePlatform()); + $schemaReader = new \OC\DB\MDB2SchemaReader(\OC_Config::getObject(), $conn->getDatabasePlatform()); + $toSchema = $schemaReader->loadSchemaFromFile($file); return self::executeSchemaChange($conn, $toSchema); } /** * @brief update the database scheme + * @param \Doctrine\DBAL\Connection $conn * @param string $file file to read structure from * @return bool */ @@ -43,7 +46,8 @@ class OC_DB_Schema { $sm = $conn->getSchemaManager(); $fromSchema = $sm->createSchema(); - $toSchema = OC_DB_MDB2SchemaReader::loadSchemaFromFile($file, $conn->getDatabasePlatform()); + $schemaReader = new \OC\DB\MDB2SchemaReader(\OC_Config::getObject(), $conn->getDatabasePlatform()); + $toSchema = $schemaReader->loadSchemaFromFile($file); // remove tables we don't know about foreach($fromSchema->getTables() as $table) { @@ -79,6 +83,7 @@ class OC_DB_Schema { /** * @brief drop a table + * @param \Doctrine\DBAL\Connection $conn * @param string $tableName the table to drop */ public static function dropTable($conn, $tableName) { @@ -92,10 +97,12 @@ class OC_DB_Schema { /** * remove all tables defined in a database structure xml file + * @param \Doctrine\DBAL\Connection $conn * @param string $file the xml file describing the tables */ public static function removeDBStructure($conn, $file) { - $fromSchema = OC_DB_MDB2SchemaReader::loadSchemaFromFile($file, $conn->getDatabasePlatform()); + $schemaReader = new \OC\DB\MDB2SchemaReader(\OC_Config::getObject(), $conn->getDatabasePlatform()); + $fromSchema = $schemaReader->loadSchemaFromFile($file); $toSchema = clone $fromSchema; foreach($toSchema->getTables() as $table) { $toSchema->dropTable($table->getName()); @@ -107,6 +114,7 @@ class OC_DB_Schema { /** * @brief replaces the ownCloud tables with a new set + * @param \Doctrine\DBAL\Connection $conn * @param $file string path to the MDB2 xml db export file */ public static function replaceDB( $conn, $file ) { @@ -126,11 +134,17 @@ class OC_DB_Schema { self::commit(); } + /** + * @param \Doctrine\DBAL\Connection $conn + * @param \Doctrine\DBAL\Schema\Schema $schema + * @return bool + */ private static function executeSchemaChange($conn, $schema) { $conn->beginTransaction(); foreach($schema->toSql($conn->getDatabasePlatform()) as $sql) { $conn->query($sql); } $conn->commit(); + return true; } } From a4df982dc3b2f88078d0ef4a4dbe0fdc1d37105a Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Mon, 29 Jul 2013 16:33:27 +0200 Subject: [PATCH 16/64] add tests for MDB2SchemaReader --- tests/lib/db/mdb2schemareader.php | 80 +++++++++++++++++++++++++++++++ tests/lib/db/testschema.xml | 77 +++++++++++++++++++++++++++++ 2 files changed, 157 insertions(+) create mode 100644 tests/lib/db/mdb2schemareader.php create mode 100644 tests/lib/db/testschema.xml diff --git a/tests/lib/db/mdb2schemareader.php b/tests/lib/db/mdb2schemareader.php new file mode 100644 index 0000000000..b9b241194f --- /dev/null +++ b/tests/lib/db/mdb2schemareader.php @@ -0,0 +1,80 @@ + + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +namespace Test\DB; + +use Doctrine\DBAL\Platforms\MySqlPlatform; + +class MDB2SchemaReader extends \PHPUnit_Framework_TestCase { + /** + * @var \OC\DB\MDB2SchemaReader $reader + */ + protected $reader; + + /** + * @return \OC\Config + */ + protected function getConfig() { + $config = $this->getMockBuilder('\OC\Config') + ->disableOriginalConstructor() + ->getMock(); + $config->expects($this->any()) + ->method('getValue') + ->will($this->returnValueMap(array( + array('dbname', 'owncloud', 'testDB'), + array('dbtableprefix', 'oc_', 'test_') + ))); + return $config; + } + + public function testRead() { + $reader = new \OC\DB\MDB2SchemaReader($this->getConfig(), new MySqlPlatform()); + $schema = $reader->loadSchemaFromFile(__DIR__ . '/testschema.xml'); + $this->assertCount(1, $schema->getTables()); + + $table = $schema->getTable('test_table'); + $this->assertCount(7, $table->getColumns()); + + $this->assertEquals(4, $table->getColumn('integerfield')->getLength()); + $this->assertTrue($table->getColumn('integerfield')->getAutoincrement()); + $this->assertNull($table->getColumn('integerfield')->getDefault()); + $this->assertTrue($table->getColumn('integerfield')->getNotnull()); + $this->assertInstanceOf('Doctrine\DBAL\Types\IntegerType', $table->getColumn('integerfield')->getType()); + + $this->assertSame(10, $table->getColumn('integerfield_default')->getDefault()); + + $this->assertEquals(32, $table->getColumn('textfield')->getLength()); + $this->assertFalse($table->getColumn('textfield')->getAutoincrement()); + $this->assertSame('foo', $table->getColumn('textfield')->getDefault()); + $this->assertTrue($table->getColumn('textfield')->getNotnull()); + $this->assertInstanceOf('Doctrine\DBAL\Types\StringType', $table->getColumn('textfield')->getType()); + + $this->assertNull($table->getColumn('clobfield')->getLength()); + $this->assertFalse($table->getColumn('clobfield')->getAutoincrement()); + $this->assertSame('', $table->getColumn('clobfield')->getDefault()); + $this->assertTrue($table->getColumn('clobfield')->getNotnull()); + $this->assertInstanceOf('Doctrine\DBAL\Types\TextType', $table->getColumn('clobfield')->getType()); + + $this->assertNull($table->getColumn('booleanfield')->getLength()); + $this->assertFalse($table->getColumn('booleanfield')->getAutoincrement()); + $this->assertFalse($table->getColumn('booleanfield')->getDefault()); + $this->assertInstanceOf('Doctrine\DBAL\Types\BooleanType', $table->getColumn('booleanfield')->getType()); + + $this->assertTrue($table->getColumn('booleanfield_true')->getDefault()); + $this->assertFalse($table->getColumn('booleanfield_false')->getDefault()); + + $this->assertCount(2, $table->getIndexes()); + $this->assertEquals(array('integerfield'), $table->getIndex('primary')->getUnquotedColumns()); + $this->assertTrue($table->getIndex('primary')->isPrimary()); + $this->assertTrue($table->getIndex('primary')->isUnique()); + $this->assertEquals(array('booleanfield'), $table->getIndex('index_boolean')->getUnquotedColumns()); + $this->assertFalse($table->getIndex('index_boolean')->isPrimary()); + $this->assertFalse($table->getIndex('index_boolean')->isUnique()); + } +} diff --git a/tests/lib/db/testschema.xml b/tests/lib/db/testschema.xml new file mode 100644 index 0000000000..509b55ee81 --- /dev/null +++ b/tests/lib/db/testschema.xml @@ -0,0 +1,77 @@ + + + + *dbname* + true + false + + utf8 + + + + *dbprefix*table + + + + integerfield + integer + 0 + true + 1 + 4 + + + integerfield_default + integer + 10 + true + 4 + + + textfield + text + foo + true + 32 + + + clobfield + clob + true + + + booleanfield + boolean + + + booleanfield_true + boolean + true + + + booleanfield_false + boolean + false + + + + index_primary + true + true + + integerfield + ascending + + + + + index_boolean + false + + booleanfield + ascending + + + +
+
From dec7b2fa40a7eeb0c0640a798e4c7443d1511bd5 Mon Sep 17 00:00:00 2001 From: Victor Dubiniuk Date: Mon, 29 Jul 2013 17:36:59 +0300 Subject: [PATCH 17/64] Move styles from core to app --- apps/files_sharing/css/404.css | 12 ++++++++++++ apps/files_sharing/public.php | 1 + core/css/styles.css | 12 ------------ 3 files changed, 13 insertions(+), 12 deletions(-) create mode 100644 apps/files_sharing/css/404.css diff --git a/apps/files_sharing/css/404.css b/apps/files_sharing/css/404.css new file mode 100644 index 0000000000..e35e1a5808 --- /dev/null +++ b/apps/files_sharing/css/404.css @@ -0,0 +1,12 @@ + +#body-login .error-broken-link{ + text-align:left;color:#fff; +} + +#body-login .error-broken-link ul{ + margin:10px 0 10px 0; +} + +#body-login .error-broken-link ul li{ + list-style: disc;list-style-position:inside; +} diff --git a/apps/files_sharing/public.php b/apps/files_sharing/public.php index 6878109f7b..741ab14538 100644 --- a/apps/files_sharing/public.php +++ b/apps/files_sharing/public.php @@ -239,6 +239,7 @@ $errorTemplate = new OCP\Template('files_sharing', 'part.404', ''); $errorContent = $errorTemplate->fetchPage(); header('HTTP/1.0 404 Not Found'); +OCP\Util::addStyle('files_sharing', '404'); $tmpl = new OCP\Template('', '404', 'guest'); $tmpl->assign('content', $errorContent); $tmpl->printPage(); diff --git a/core/css/styles.css b/core/css/styles.css index 1e2ce3862a..0dd66fb5b7 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -304,18 +304,6 @@ label.infield { cursor:text !important; top:1.05em; left:.85em; } #body-login form .errors { background:#fed7d7; border:1px solid #f00; list-style-indent:inside; margin:0 0 2em; padding:1em; } #body-login .success { background:#d7fed7; border:1px solid #0f0; width: 35%; margin: 30px auto; padding:1em; text-align: center;} -#body-login .error-broken-link{ - text-align:left; -} - -#body-login .error-broken-link ul{ - margin:10px 0 10px 0; -} - -#body-login .error-broken-link ul li{ - list-style: disc;list-style-position:inside; -} - /* Show password toggle */ #show, #dbpassword { position: absolute; From 64774f30baad3165800aa27ebcd660903f7fa3e7 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Mon, 29 Jul 2013 17:03:57 +0200 Subject: [PATCH 18/64] dont need to explicitly pass by reference --- lib/files/utils/scanner.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/files/utils/scanner.php b/lib/files/utils/scanner.php index da0cbd75f6..7e1bc80bbc 100644 --- a/lib/files/utils/scanner.php +++ b/lib/files/utils/scanner.php @@ -62,10 +62,10 @@ class Scanner extends PublicEmitter { protected function attachListener($mount) { $scanner = $mount->getStorage()->getScanner(); $emitter = $this; - $scanner->listen('\OC\Files\Cache\Scanner', 'scanFile', function ($path) use ($mount, &$emitter) { + $scanner->listen('\OC\Files\Cache\Scanner', 'scanFile', function ($path) use ($mount, $emitter) { $emitter->emit('\OC\Files\Utils\Scanner', 'scanFile', array($mount->getMountPoint() . $path)); }); - $scanner->listen('\OC\Files\Cache\Scanner', 'scanFolder', function ($path) use ($mount, &$emitter) { + $scanner->listen('\OC\Files\Cache\Scanner', 'scanFolder', function ($path) use ($mount, $emitter) { $emitter->emit('\OC\Files\Utils\Scanner', 'scanFolder', array($mount->getMountPoint() . $path)); }); } From dea3472ad77a5ba1941a8d3a636f0cf17257734a Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Mon, 29 Jul 2013 17:04:28 +0200 Subject: [PATCH 19/64] remove unneeded 'use' --- lib/files/utils/scanner.php | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/files/utils/scanner.php b/lib/files/utils/scanner.php index 7e1bc80bbc..f0dc41ffad 100644 --- a/lib/files/utils/scanner.php +++ b/lib/files/utils/scanner.php @@ -8,7 +8,6 @@ namespace OC\Files\Utils; -use OC\Hooks\BasicEmitter; use OC\Files\Filesystem; use OC\Hooks\PublicEmitter; From a10a17f81857045b991fce3a1754b47608a8a4da Mon Sep 17 00:00:00 2001 From: Victor Dubiniuk Date: Mon, 29 Jul 2013 18:25:17 +0300 Subject: [PATCH 20/64] Rewording --- apps/files_sharing/templates/part.404.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files_sharing/templates/part.404.php b/apps/files_sharing/templates/part.404.php index 400dd6bbfd..b5152e1511 100644 --- a/apps/files_sharing/templates/part.404.php +++ b/apps/files_sharing/templates/part.404.php @@ -5,7 +5,7 @@
  • t('the item was removed')); ?>
  • t('the link expired')); ?>
  • -
  • t('sharing is disabled for this ownCloud')); ?>
  • +
  • t('sharing is disabled')); ?>

t('For more info, please ask the person who sent this link.')); ?>

From e2d3225e5aff343bf62b6dbb62eb3526e525cb6b Mon Sep 17 00:00:00 2001 From: Thomas Mueller Date: Mon, 29 Jul 2013 18:24:05 +0200 Subject: [PATCH 21/64] implement a platform independent version of basename --- lib/files/cache/cache.php | 2 +- lib/util.php | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/lib/files/cache/cache.php b/lib/files/cache/cache.php index 3818fdbd84..5b8dc46b77 100644 --- a/lib/files/cache/cache.php +++ b/lib/files/cache/cache.php @@ -200,7 +200,7 @@ class Cache { $data['path'] = $file; $data['parent'] = $this->getParentId($file); - $data['name'] = basename($file); + $data['name'] = \OC_Util::basename($file); $data['encrypted'] = isset($data['encrypted']) ? ((int)$data['encrypted']) : 0; list($queryParts, $params) = $this->buildParts($data); diff --git a/lib/util.php b/lib/util.php index 981b05b2b4..004470908d 100755 --- a/lib/util.php +++ b/lib/util.php @@ -892,4 +892,10 @@ class OC_Util { return $value; } + + public static function basename($file) + { + $t = explode('/', $file); + return array_pop($t); + } } From 89f8f8e42d2729254a1b0e06c942af934bee3948 Mon Sep 17 00:00:00 2001 From: Andreas Fischer Date: Mon, 29 Jul 2013 18:36:52 +0200 Subject: [PATCH 22/64] app migrate: Use = instead of LIKE as described in the comment above. The LIKE operator is not defined on integers (probably any non-text) columns on PostgreSQL. --- lib/migration/content.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/migration/content.php b/lib/migration/content.php index 400a46a434..2d8268a1d7 100644 --- a/lib/migration/content.php +++ b/lib/migration/content.php @@ -112,7 +112,7 @@ class OC_Migration_Content{ foreach( $options['matchval'] as $matchval ) { // Run the query for this match value (where x = y value) - $sql = 'SELECT * FROM `*PREFIX*' . $options['table'] . '` WHERE `' . $options['matchcol'] . '` LIKE ?'; + $sql = 'SELECT * FROM `*PREFIX*' . $options['table'] . '` WHERE `' . $options['matchcol'] . '` = ?'; $query = OC_DB::prepare( $sql ); $results = $query->execute( array( $matchval ) ); $newreturns = $this->insertData( $results, $options ); From 085fdfec2f298fd89d0265d0f97edfdda5a12954 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Mon, 29 Jul 2013 23:32:03 +0200 Subject: [PATCH 23/64] adding unit tests for OC_Util::basename --- lib/util.php | 1 + tests/lib/util.php | 34 +++++++++++++++++++++++++--------- 2 files changed, 26 insertions(+), 9 deletions(-) diff --git a/lib/util.php b/lib/util.php index 004470908d..7f7b9f334b 100755 --- a/lib/util.php +++ b/lib/util.php @@ -895,6 +895,7 @@ class OC_Util { public static function basename($file) { + $file = rtrim($file, '/'); $t = explode('/', $file); return array_pop($t); } diff --git a/tests/lib/util.php b/tests/lib/util.php index 9742d57ac7..2781ade099 100644 --- a/tests/lib/util.php +++ b/tests/lib/util.php @@ -8,12 +8,9 @@ class Test_Util extends PHPUnit_Framework_TestCase { - // Constructor - function Test_Util() { - date_default_timezone_set("UTC"); - } - function testFormatDate() { + date_default_timezone_set("UTC"); + $result = OC_Util::formatDate(1350129205); $expected = 'October 13, 2012 11:53'; $this->assertEquals($expected, $result); @@ -61,8 +58,27 @@ class Test_Util extends PHPUnit_Framework_TestCase { OC_Config::deleteKey('mail_domain'); } - function testGetInstanceIdGeneratesValidId() { - OC_Config::deleteKey('instanceid'); - $this->assertStringStartsWith('oc', OC_Util::getInstanceId()); - } + function testGetInstanceIdGeneratesValidId() { + OC_Config::deleteKey('instanceid'); + $this->assertStringStartsWith('oc', OC_Util::getInstanceId()); + } + + /** + * @dataProvider baseNameProvider + */ + public function testBaseName($expected, $file) + { + $base = \OC_Util::basename($file); + $this->assertEquals($expected, $base); + } + + public function baseNameProvider() + { + return array( + array('public_html', '/home/user/public_html/'), + array('public_html', '/home/user/public_html'), + array('', '/'), + array('442aa682de2a64db1e010f50e60fd9c9', 'local::C:\Users\ADMINI~1\AppData\Local\Temp\2/442aa682de2a64db1e010f50e60fd9c9/') + ); + } } From 409268f3227854dab73233a88a114f26b0fed478 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Tue, 30 Jul 2013 08:54:39 +0200 Subject: [PATCH 24/64] adding test case with no / --- tests/lib/util.php | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/lib/util.php b/tests/lib/util.php index 2781ade099..a038538d7e 100644 --- a/tests/lib/util.php +++ b/tests/lib/util.php @@ -78,6 +78,7 @@ class Test_Util extends PHPUnit_Framework_TestCase { array('public_html', '/home/user/public_html/'), array('public_html', '/home/user/public_html'), array('', '/'), + array('public_html', 'public_html'), array('442aa682de2a64db1e010f50e60fd9c9', 'local::C:\Users\ADMINI~1\AppData\Local\Temp\2/442aa682de2a64db1e010f50e60fd9c9/') ); } From 17c36b50746555444c34feb70147a5fbc1d6ac3c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Tue, 30 Jul 2013 10:26:42 +0200 Subject: [PATCH 25/64] fixes #4026 --- core/js/share.js | 30 +++++++++++++++++++++--------- lib/public/share.php | 3 +++ 2 files changed, 24 insertions(+), 9 deletions(-) diff --git a/core/js/share.js b/core/js/share.js index e59669cbc2..b4b5159b0b 100644 --- a/core/js/share.js +++ b/core/js/share.js @@ -592,8 +592,7 @@ $(document).ready(function() { } // Update the share information - OC.Share.share(itemType, itemSource, OC.Share.SHARE_TYPE_LINK, '', permissions, function(data) { - return; + OC.Share.share(itemType, itemSource, OC.Share.SHARE_TYPE_LINK, '', permissions, function(data) { }); }); @@ -609,13 +608,26 @@ $(document).ready(function() { }); $(document).on('focusout keyup', '#dropdown #linkPassText', function(event) { - if ( $('#linkPassText').val() != '' && (event.type == 'focusout' || event.keyCode == 13) ) { - var itemType = $('#dropdown').data('item-type'); - var itemSource = $('#dropdown').data('item-source'); - OC.Share.share(itemType, itemSource, OC.Share.SHARE_TYPE_LINK, $('#linkPassText').val(), OC.PERMISSION_READ, function() { - console.log("password set to: '" + $('#linkPassText').val() +"' by event: " + event.type); - $('#linkPassText').val(''); - $('#linkPassText').attr('placeholder', t('core', 'Password protected')); + var linkPassText = $('#linkPassText'); + if ( linkPassText.val() != '' && (event.type == 'focusout' || event.keyCode == 13) ) { + + var allowPublicUpload = $('#sharingDialogAllowPublicUpload').is(':checked'); + var dropDown = $('#dropdown'); + var itemType = dropDown.data('item-type'); + var itemSource = dropDown.data('item-source'); + var permissions = 0; + + // Calculate permissions + if (allowPublicUpload) { + permissions = OC.PERMISSION_UPDATE + OC.PERMISSION_CREATE + OC.PERMISSION_READ; + } else { + permissions = OC.PERMISSION_READ; + } + + OC.Share.share(itemType, itemSource, OC.Share.SHARE_TYPE_LINK, $('#linkPassText').val(), permissions, function() { + console.log("password set to: '" + linkPassText.val() +"' by event: " + event.type); + linkPassText.val(''); + linkPassText.attr('placeholder', t('core', 'Password protected')); }); } }); diff --git a/lib/public/share.php b/lib/public/share.php index 596a729a47..b349dd4877 100644 --- a/lib/public/share.php +++ b/lib/public/share.php @@ -454,6 +454,9 @@ class Share { $forcePortable = (CRYPT_BLOWFISH != 1); $hasher = new \PasswordHash(8, $forcePortable); $shareWith = $hasher->HashPassword($shareWith.\OC_Config::getValue('passwordsalt', '')); + } else { + // reuse the already set password + $shareWith = $checkExists['share_with']; } // Generate token From 6f20e081e47ac5ef2f2dde3f4cc9cdb0bf562283 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Tue, 30 Jul 2013 12:48:41 +0200 Subject: [PATCH 26/64] added missing isEmpty ajax file --- apps/files_trashbin/ajax/isEmpty.php | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 apps/files_trashbin/ajax/isEmpty.php diff --git a/apps/files_trashbin/ajax/isEmpty.php b/apps/files_trashbin/ajax/isEmpty.php new file mode 100644 index 0000000000..2e54c7e77b --- /dev/null +++ b/apps/files_trashbin/ajax/isEmpty.php @@ -0,0 +1,14 @@ + array("isEmpty" => $trashStatus))); + + From 01165fbd2208a0c934dbe58cb4100e8d51fb4f7e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Tue, 30 Jul 2013 17:41:52 +0200 Subject: [PATCH 27/64] use tmpfs at /dev/shm to speedup unit test execution --- autotest.sh | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/autotest.sh b/autotest.sh index abe0b92586..a343f6a25a 100755 --- a/autotest.sh +++ b/autotest.sh @@ -10,9 +10,15 @@ DATABASENAME=oc_autotest$EXECUTOR_NUMBER DATABASEUSER=oc_autotest$EXECUTOR_NUMBER ADMINLOGIN=admin$EXECUTOR_NUMBER -DATADIR=data-autotest BASEDIR=$PWD +# use tmpfs for datadir - should speedup unit test execution +if [ -d /dev/shm ]; then + DATADIR=/dev/shm/data-autotest$EXECUTOR_NUMBER +else + DATADIR=$BASEDIR/data-autotest +fi + echo "Using database $DATABASENAME" # create autoconfig for sqlite, mysql and postgresql @@ -24,7 +30,7 @@ cat > ./tests/autoconfig-sqlite.php < 'oc_', 'adminlogin' => '$ADMINLOGIN', 'adminpass' => 'admin', - 'directory' => '$BASEDIR/$DATADIR', + 'directory' => '$DATADIR', ); DELIM @@ -36,7 +42,7 @@ cat > ./tests/autoconfig-mysql.php < 'oc_', 'adminlogin' => '$ADMINLOGIN', 'adminpass' => 'admin', - 'directory' => '$BASEDIR/$DATADIR', + 'directory' => '$DATADIR', 'dbuser' => '$DATABASEUSER', 'dbname' => '$DATABASENAME', 'dbhost' => 'localhost', @@ -52,7 +58,7 @@ cat > ./tests/autoconfig-pgsql.php < 'oc_', 'adminlogin' => '$ADMINLOGIN', 'adminpass' => 'admin', - 'directory' => '$BASEDIR/$DATADIR', + 'directory' => '$DATADIR', 'dbuser' => '$DATABASEUSER', 'dbname' => '$DATABASENAME', 'dbhost' => 'localhost', @@ -68,7 +74,7 @@ cat > ./tests/autoconfig-oci.php < 'oc_', 'adminlogin' => '$ADMINLOGIN', 'adminpass' => 'admin', - 'directory' => '$BASEDIR/$DATADIR', + 'directory' => '$DATADIR', 'dbuser' => '$DATABASENAME', 'dbname' => 'XE', 'dbhost' => 'localhost', From 15e9e95817a2d58951400c8a01ffdd89a573c9b3 Mon Sep 17 00:00:00 2001 From: Victor Dubiniuk Date: Tue, 30 Jul 2013 20:58:21 +0300 Subject: [PATCH 28/64] Use default cursor for list items --- apps/files_sharing/css/404.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files_sharing/css/404.css b/apps/files_sharing/css/404.css index e35e1a5808..2ed81df3b8 100644 --- a/apps/files_sharing/css/404.css +++ b/apps/files_sharing/css/404.css @@ -8,5 +8,5 @@ } #body-login .error-broken-link ul li{ - list-style: disc;list-style-position:inside; + list-style: disc;list-style-position:inside;cursor:default; } From 761f40328cdfee6a91c18fdf78e154e36000c251 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Wed, 31 Jul 2013 02:01:45 -0400 Subject: [PATCH 29/64] [tx-robot] updated from transifex --- apps/files/l10n/cs_CZ.php | 3 ++ apps/files_encryption/l10n/pt_PT.php | 10 ++++++ apps/files_trashbin/l10n/cs_CZ.php | 1 + apps/files_trashbin/l10n/de.php | 1 + apps/files_trashbin/l10n/de_DE.php | 1 + apps/files_trashbin/l10n/es.php | 1 + apps/files_trashbin/l10n/fi_FI.php | 1 + apps/files_trashbin/l10n/it.php | 1 + apps/files_trashbin/l10n/pt_BR.php | 1 + apps/user_ldap/l10n/da.php | 23 ++++++++++++ apps/user_webdavauth/l10n/cs_CZ.php | 4 ++- core/l10n/sl.php | 1 + l10n/af_ZA/core.po | 20 +++++------ l10n/af_ZA/files_sharing.po | 40 ++++++++++++++++----- l10n/af_ZA/lib.po | 8 ++--- l10n/af_ZA/user_ldap.po | 4 +-- l10n/ar/core.po | 20 +++++------ l10n/ar/files.po | 38 ++++++++++---------- l10n/ar/files_sharing.po | 40 ++++++++++++++++----- l10n/ar/lib.po | 8 ++--- l10n/ar/user_ldap.po | 4 +-- l10n/be/files_sharing.po | 40 ++++++++++++++++----- l10n/bg_BG/core.po | 20 +++++------ l10n/bg_BG/files.po | 38 ++++++++++---------- l10n/bg_BG/files_sharing.po | 40 ++++++++++++++++----- l10n/bg_BG/lib.po | 8 ++--- l10n/bg_BG/user_ldap.po | 4 +-- l10n/bn_BD/core.po | 20 +++++------ l10n/bn_BD/files.po | 38 ++++++++++---------- l10n/bn_BD/files_sharing.po | 40 ++++++++++++++++----- l10n/bn_BD/lib.po | 8 ++--- l10n/bn_BD/user_ldap.po | 4 +-- l10n/bs/core.po | 20 +++++------ l10n/bs/files_sharing.po | 40 ++++++++++++++++----- l10n/ca/core.po | 20 +++++------ l10n/ca/files.po | 38 ++++++++++---------- l10n/ca/files_sharing.po | 42 +++++++++++++++++----- l10n/ca/lib.po | 4 +-- l10n/ca/user_ldap.po | 4 +-- l10n/cs_CZ/core.po | 20 +++++------ l10n/cs_CZ/files.po | 12 +++---- l10n/cs_CZ/files_sharing.po | 30 ++++++++++++++-- l10n/cs_CZ/files_trashbin.po | 9 ++--- l10n/cs_CZ/lib.po | 19 +++++----- l10n/cs_CZ/settings.po | 12 +++---- l10n/cs_CZ/user_ldap.po | 4 +-- l10n/cs_CZ/user_webdavauth.po | 11 +++--- l10n/cy_GB/core.po | 20 +++++------ l10n/cy_GB/files.po | 38 ++++++++++---------- l10n/cy_GB/files_sharing.po | 40 ++++++++++++++++----- l10n/cy_GB/lib.po | 8 ++--- l10n/cy_GB/user_ldap.po | 4 +-- l10n/da/core.po | 20 +++++------ l10n/da/files.po | 38 ++++++++++---------- l10n/da/files_sharing.po | 32 ++++++++++++++--- l10n/da/lib.po | 4 +-- l10n/da/user_ldap.po | 53 ++++++++++++++-------------- l10n/de/core.po | 20 +++++------ l10n/de/files.po | 38 ++++++++++---------- l10n/de/files_sharing.po | 42 +++++++++++++++++----- l10n/de/files_trashbin.po | 9 ++--- l10n/de/lib.po | 4 +-- l10n/de/user_ldap.po | 4 +-- l10n/de_DE/core.po | 20 +++++------ l10n/de_DE/files.po | 38 ++++++++++---------- l10n/de_DE/files_sharing.po | 42 +++++++++++++++++----- l10n/de_DE/files_trashbin.po | 9 ++--- l10n/de_DE/lib.po | 4 +-- l10n/de_DE/user_ldap.po | 4 +-- l10n/el/core.po | 20 +++++------ l10n/el/files.po | 38 ++++++++++---------- l10n/el/files_sharing.po | 40 ++++++++++++++++----- l10n/el/lib.po | 8 ++--- l10n/el/user_ldap.po | 4 +-- l10n/en@pirate/files.po | 38 ++++++++++---------- l10n/en@pirate/files_sharing.po | 40 ++++++++++++++++----- l10n/eo/core.po | 20 +++++------ l10n/eo/files.po | 38 ++++++++++---------- l10n/eo/files_sharing.po | 40 ++++++++++++++++----- l10n/eo/lib.po | 8 ++--- l10n/eo/user_ldap.po | 4 +-- l10n/es/core.po | 20 +++++------ l10n/es/files.po | 38 ++++++++++---------- l10n/es/files_sharing.po | 42 +++++++++++++++++----- l10n/es/files_trashbin.po | 9 ++--- l10n/es/lib.po | 4 +-- l10n/es/user_ldap.po | 4 +-- l10n/es_AR/core.po | 20 +++++------ l10n/es_AR/files.po | 38 ++++++++++---------- l10n/es_AR/files_sharing.po | 42 +++++++++++++++++----- l10n/es_AR/lib.po | 4 +-- l10n/es_AR/user_ldap.po | 4 +-- l10n/et_EE/core.po | 20 +++++------ l10n/et_EE/files.po | 38 ++++++++++---------- l10n/et_EE/files_sharing.po | 42 +++++++++++++++++----- l10n/et_EE/lib.po | 4 +-- l10n/et_EE/user_ldap.po | 4 +-- l10n/eu/core.po | 20 +++++------ l10n/eu/files.po | 38 ++++++++++---------- l10n/eu/files_sharing.po | 30 ++++++++++++++-- l10n/eu/lib.po | 4 +-- l10n/eu/user_ldap.po | 4 +-- l10n/fa/core.po | 20 +++++------ l10n/fa/files.po | 38 ++++++++++---------- l10n/fa/files_sharing.po | 42 +++++++++++++++++----- l10n/fa/lib.po | 8 ++--- l10n/fa/user_ldap.po | 4 +-- l10n/fi_FI/core.po | 20 +++++------ l10n/fi_FI/files.po | 38 ++++++++++---------- l10n/fi_FI/files_sharing.po | 42 +++++++++++++++++----- l10n/fi_FI/files_trashbin.po | 9 ++--- l10n/fi_FI/lib.po | 8 ++--- l10n/fi_FI/user_ldap.po | 4 +-- l10n/fr/core.po | 20 +++++------ l10n/fr/files.po | 38 ++++++++++---------- l10n/fr/files_sharing.po | 42 +++++++++++++++++----- l10n/fr/lib.po | 8 ++--- l10n/fr/user_ldap.po | 4 +-- l10n/gl/core.po | 20 +++++------ l10n/gl/files.po | 38 ++++++++++---------- l10n/gl/files_sharing.po | 42 +++++++++++++++++----- l10n/gl/lib.po | 4 +-- l10n/gl/user_ldap.po | 4 +-- l10n/he/core.po | 20 +++++------ l10n/he/files.po | 38 ++++++++++---------- l10n/he/files_sharing.po | 40 ++++++++++++++++----- l10n/he/lib.po | 8 ++--- l10n/he/user_ldap.po | 4 +-- l10n/hi/core.po | 20 +++++------ l10n/hi/files_sharing.po | 40 ++++++++++++++++----- l10n/hi/lib.po | 8 ++--- l10n/hi/user_ldap.po | 4 +-- l10n/hr/core.po | 20 +++++------ l10n/hr/files.po | 38 ++++++++++---------- l10n/hr/files_sharing.po | 40 ++++++++++++++++----- l10n/hr/lib.po | 8 ++--- l10n/hr/user_ldap.po | 4 +-- l10n/hu_HU/core.po | 20 +++++------ l10n/hu_HU/files.po | 38 ++++++++++---------- l10n/hu_HU/files_sharing.po | 42 +++++++++++++++++----- l10n/hu_HU/lib.po | 4 +-- l10n/hu_HU/user_ldap.po | 4 +-- l10n/hy/files.po | 38 ++++++++++---------- l10n/hy/files_sharing.po | 40 ++++++++++++++++----- l10n/ia/core.po | 20 +++++------ l10n/ia/files.po | 38 ++++++++++---------- l10n/ia/files_sharing.po | 40 ++++++++++++++++----- l10n/ia/lib.po | 8 ++--- l10n/ia/user_ldap.po | 4 +-- l10n/id/core.po | 20 +++++------ l10n/id/files.po | 38 ++++++++++---------- l10n/id/files_sharing.po | 40 ++++++++++++++++----- l10n/id/lib.po | 8 ++--- l10n/id/user_ldap.po | 4 +-- l10n/is/core.po | 20 +++++------ l10n/is/files.po | 38 ++++++++++---------- l10n/is/files_sharing.po | 40 ++++++++++++++++----- l10n/is/lib.po | 8 ++--- l10n/is/user_ldap.po | 4 +-- l10n/it/core.po | 20 +++++------ l10n/it/files.po | 38 ++++++++++---------- l10n/it/files_sharing.po | 42 +++++++++++++++++----- l10n/it/files_trashbin.po | 9 ++--- l10n/it/lib.po | 4 +-- l10n/it/user_ldap.po | 4 +-- l10n/ja_JP/core.po | 20 +++++------ l10n/ja_JP/files.po | 38 ++++++++++---------- l10n/ja_JP/files_sharing.po | 42 +++++++++++++++++----- l10n/ja_JP/lib.po | 8 ++--- l10n/ja_JP/user_ldap.po | 4 +-- l10n/ka/core.po | 20 +++++------ l10n/ka/files.po | 38 ++++++++++---------- l10n/ka/files_sharing.po | 40 ++++++++++++++++----- l10n/ka/lib.po | 8 ++--- l10n/ka/user_ldap.po | 4 +-- l10n/ka_GE/core.po | 20 +++++------ l10n/ka_GE/files.po | 38 ++++++++++---------- l10n/ka_GE/files_sharing.po | 40 ++++++++++++++++----- l10n/ka_GE/lib.po | 8 ++--- l10n/ka_GE/user_ldap.po | 4 +-- l10n/kn/files_sharing.po | 40 ++++++++++++++++----- l10n/ko/core.po | 20 +++++------ l10n/ko/files.po | 42 +++++++++++----------- l10n/ko/files_sharing.po | 40 ++++++++++++++++----- l10n/ko/lib.po | 8 ++--- l10n/ko/user_ldap.po | 4 +-- l10n/ku_IQ/core.po | 20 +++++------ l10n/ku_IQ/files.po | 38 ++++++++++---------- l10n/ku_IQ/files_sharing.po | 40 ++++++++++++++++----- l10n/ku_IQ/lib.po | 8 ++--- l10n/ku_IQ/user_ldap.po | 4 +-- l10n/lb/core.po | 20 +++++------ l10n/lb/files.po | 38 ++++++++++---------- l10n/lb/files_sharing.po | 42 +++++++++++++++++----- l10n/lb/lib.po | 8 ++--- l10n/lb/user_ldap.po | 4 +-- l10n/lt_LT/core.po | 20 +++++------ l10n/lt_LT/files.po | 38 ++++++++++---------- l10n/lt_LT/files_sharing.po | 40 ++++++++++++++++----- l10n/lt_LT/lib.po | 8 ++--- l10n/lt_LT/user_ldap.po | 4 +-- l10n/lv/core.po | 20 +++++------ l10n/lv/files.po | 38 ++++++++++---------- l10n/lv/files_sharing.po | 40 ++++++++++++++++----- l10n/lv/lib.po | 8 ++--- l10n/lv/user_ldap.po | 4 +-- l10n/mk/core.po | 20 +++++------ l10n/mk/files.po | 38 ++++++++++---------- l10n/mk/files_sharing.po | 40 ++++++++++++++++----- l10n/mk/lib.po | 8 ++--- l10n/mk/user_ldap.po | 4 +-- l10n/ml_IN/files_sharing.po | 40 ++++++++++++++++----- l10n/ms_MY/core.po | 20 +++++------ l10n/ms_MY/files.po | 38 ++++++++++---------- l10n/ms_MY/files_sharing.po | 40 ++++++++++++++++----- l10n/ms_MY/lib.po | 8 ++--- l10n/ms_MY/user_ldap.po | 4 +-- l10n/my_MM/core.po | 20 +++++------ l10n/my_MM/files.po | 38 ++++++++++---------- l10n/my_MM/files_sharing.po | 40 ++++++++++++++++----- l10n/my_MM/lib.po | 8 ++--- l10n/my_MM/user_ldap.po | 4 +-- l10n/nb_NO/core.po | 20 +++++------ l10n/nb_NO/files.po | 38 ++++++++++---------- l10n/nb_NO/files_sharing.po | 42 +++++++++++++++++----- l10n/nb_NO/lib.po | 8 ++--- l10n/nb_NO/user_ldap.po | 4 +-- l10n/ne/files_sharing.po | 40 ++++++++++++++++----- l10n/nl/core.po | 20 +++++------ l10n/nl/files.po | 38 ++++++++++---------- l10n/nl/files_sharing.po | 42 +++++++++++++++++----- l10n/nl/lib.po | 4 +-- l10n/nl/user_ldap.po | 4 +-- l10n/nn_NO/core.po | 20 +++++------ l10n/nn_NO/files.po | 38 ++++++++++---------- l10n/nn_NO/files_sharing.po | 40 ++++++++++++++++----- l10n/nn_NO/lib.po | 8 ++--- l10n/nn_NO/user_ldap.po | 4 +-- l10n/oc/core.po | 20 +++++------ l10n/oc/files.po | 38 ++++++++++---------- l10n/oc/files_sharing.po | 40 ++++++++++++++++----- l10n/oc/lib.po | 8 ++--- l10n/oc/user_ldap.po | 4 +-- l10n/pl/core.po | 20 +++++------ l10n/pl/files.po | 38 ++++++++++---------- l10n/pl/files_sharing.po | 40 ++++++++++++++++----- l10n/pl/lib.po | 8 ++--- l10n/pl/user_ldap.po | 4 +-- l10n/pt_BR/core.po | 20 +++++------ l10n/pt_BR/files.po | 38 ++++++++++---------- l10n/pt_BR/files_sharing.po | 42 +++++++++++++++++----- l10n/pt_BR/files_trashbin.po | 9 ++--- l10n/pt_BR/lib.po | 4 +-- l10n/pt_BR/user_ldap.po | 4 +-- l10n/pt_PT/core.po | 20 +++++------ l10n/pt_PT/files.po | 38 ++++++++++---------- l10n/pt_PT/files_encryption.po | 26 +++++++------- l10n/pt_PT/files_sharing.po | 42 +++++++++++++++++----- l10n/pt_PT/lib.po | 4 +-- l10n/pt_PT/user_ldap.po | 4 +-- l10n/ro/core.po | 20 +++++------ l10n/ro/files.po | 38 ++++++++++---------- l10n/ro/files_sharing.po | 42 +++++++++++++++++----- l10n/ro/lib.po | 4 +-- l10n/ro/user_ldap.po | 4 +-- l10n/ru/core.po | 20 +++++------ l10n/ru/files.po | 38 ++++++++++---------- l10n/ru/files_sharing.po | 42 +++++++++++++++++----- l10n/ru/lib.po | 4 +-- l10n/ru/user_ldap.po | 4 +-- l10n/si_LK/core.po | 20 +++++------ l10n/si_LK/files.po | 38 ++++++++++---------- l10n/si_LK/files_sharing.po | 40 ++++++++++++++++----- l10n/si_LK/lib.po | 8 ++--- l10n/si_LK/user_ldap.po | 4 +-- l10n/sk/files_sharing.po | 40 ++++++++++++++++----- l10n/sk_SK/core.po | 20 +++++------ l10n/sk_SK/files.po | 38 ++++++++++---------- l10n/sk_SK/files_sharing.po | 40 ++++++++++++++++----- l10n/sk_SK/lib.po | 8 ++--- l10n/sk_SK/user_ldap.po | 4 +-- l10n/sl/core.po | 24 ++++++------- l10n/sl/files.po | 38 ++++++++++---------- l10n/sl/files_sharing.po | 40 ++++++++++++++++----- l10n/sl/lib.po | 8 ++--- l10n/sl/user_ldap.po | 4 +-- l10n/sq/core.po | 20 +++++------ l10n/sq/files.po | 38 ++++++++++---------- l10n/sq/files_sharing.po | 40 ++++++++++++++++----- l10n/sq/lib.po | 8 ++--- l10n/sq/user_ldap.po | 4 +-- l10n/sr/core.po | 20 +++++------ l10n/sr/files.po | 38 ++++++++++---------- l10n/sr/files_sharing.po | 40 ++++++++++++++++----- l10n/sr/lib.po | 8 ++--- l10n/sr/user_ldap.po | 4 +-- l10n/sr@latin/core.po | 20 +++++------ l10n/sr@latin/files.po | 38 ++++++++++---------- l10n/sr@latin/files_sharing.po | 40 ++++++++++++++++----- l10n/sr@latin/lib.po | 8 ++--- l10n/sr@latin/user_ldap.po | 4 +-- l10n/sv/core.po | 20 +++++------ l10n/sv/files.po | 38 ++++++++++---------- l10n/sv/files_sharing.po | 42 +++++++++++++++++----- l10n/sv/lib.po | 4 +-- l10n/sv/user_ldap.po | 4 +-- l10n/sw_KE/files_sharing.po | 40 ++++++++++++++++----- l10n/ta_LK/core.po | 20 +++++------ l10n/ta_LK/files.po | 38 ++++++++++---------- l10n/ta_LK/files_sharing.po | 40 ++++++++++++++++----- l10n/ta_LK/lib.po | 8 ++--- l10n/ta_LK/user_ldap.po | 4 +-- l10n/te/core.po | 20 +++++------ l10n/te/files_sharing.po | 40 ++++++++++++++++----- l10n/te/lib.po | 8 ++--- l10n/te/user_ldap.po | 4 +-- 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 | 28 +++++++++++++-- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/th_TH/core.po | 20 +++++------ l10n/th_TH/files.po | 38 ++++++++++---------- l10n/th_TH/files_sharing.po | 40 ++++++++++++++++----- l10n/th_TH/lib.po | 8 ++--- l10n/th_TH/user_ldap.po | 4 +-- l10n/tr/core.po | 20 +++++------ l10n/tr/files.po | 38 ++++++++++---------- l10n/tr/files_sharing.po | 40 ++++++++++++++++----- l10n/tr/lib.po | 8 ++--- l10n/tr/user_ldap.po | 4 +-- l10n/ug/core.po | 20 +++++------ l10n/ug/files.po | 38 ++++++++++---------- l10n/ug/files_sharing.po | 40 ++++++++++++++++----- l10n/ug/lib.po | 8 ++--- l10n/ug/user_ldap.po | 4 +-- l10n/uk/core.po | 20 +++++------ l10n/uk/files.po | 38 ++++++++++---------- l10n/uk/files_sharing.po | 40 ++++++++++++++++----- l10n/uk/lib.po | 8 ++--- l10n/uk/user_ldap.po | 4 +-- l10n/ur_PK/core.po | 20 +++++------ l10n/ur_PK/files_sharing.po | 40 ++++++++++++++++----- l10n/ur_PK/lib.po | 8 ++--- l10n/ur_PK/user_ldap.po | 4 +-- l10n/vi/core.po | 20 +++++------ l10n/vi/files.po | 38 ++++++++++---------- l10n/vi/files_sharing.po | 40 ++++++++++++++++----- l10n/vi/lib.po | 8 ++--- l10n/vi/user_ldap.po | 4 +-- l10n/zh_CN.GB2312/core.po | 20 +++++------ l10n/zh_CN.GB2312/files.po | 38 ++++++++++---------- l10n/zh_CN.GB2312/files_sharing.po | 40 ++++++++++++++++----- l10n/zh_CN.GB2312/lib.po | 8 ++--- l10n/zh_CN.GB2312/user_ldap.po | 4 +-- l10n/zh_CN/core.po | 20 +++++------ l10n/zh_CN/files.po | 38 ++++++++++---------- l10n/zh_CN/files_sharing.po | 40 ++++++++++++++++----- l10n/zh_CN/lib.po | 8 ++--- l10n/zh_CN/user_ldap.po | 4 +-- l10n/zh_HK/core.po | 20 +++++------ l10n/zh_HK/files.po | 38 ++++++++++---------- l10n/zh_HK/files_sharing.po | 40 ++++++++++++++++----- l10n/zh_HK/lib.po | 8 ++--- l10n/zh_HK/user_ldap.po | 4 +-- l10n/zh_TW/core.po | 20 +++++------ l10n/zh_TW/files.po | 38 ++++++++++---------- l10n/zh_TW/files_sharing.po | 40 ++++++++++++++++----- l10n/zh_TW/lib.po | 8 ++--- l10n/zh_TW/user_ldap.po | 4 +-- lib/l10n/cs_CZ.php | 4 +++ settings/l10n/cs_CZ.php | 4 +++ 378 files changed, 4903 insertions(+), 2991 deletions(-) diff --git a/apps/files/l10n/cs_CZ.php b/apps/files/l10n/cs_CZ.php index c16d32e9c2..3f626d9564 100644 --- a/apps/files/l10n/cs_CZ.php +++ b/apps/files/l10n/cs_CZ.php @@ -49,6 +49,7 @@ "{count} folders" => "{count} složky", "1 file" => "1 soubor", "{count} files" => "{count} soubory", +"%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í", @@ -72,6 +73,8 @@ "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Soubory, které se snažíte odeslat, překračují limit velikosti odesílání na tomto serveru.", "Files are being scanned, please wait." => "Soubory se prohledávají, prosím čekejte.", "Current scanning" => "Aktuální prohledávání", +"directory" => "adresář", +"directories" => "adresáře", "file" => "soubor", "files" => "soubory", "Upgrading filesystem cache..." => "Aktualizuji mezipaměť souborového systému..." diff --git a/apps/files_encryption/l10n/pt_PT.php b/apps/files_encryption/l10n/pt_PT.php index d3cf596fda..15a9ee6de6 100644 --- a/apps/files_encryption/l10n/pt_PT.php +++ b/apps/files_encryption/l10n/pt_PT.php @@ -5,15 +5,25 @@ "Could not disable recovery key. Please check your recovery key password!" => "Não foi possível desactivar a chave de recuperação. Por favor verifique a password da chave de recuperação.", "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.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Chave privada não é válida! Provavelmente senha foi alterada fora do sistema ownCloud (exemplo, o diretório corporativo). Pode atualizar password da chave privada em configurações personalizadas para recuperar o acesso aos seus arquivos encriptados.", +"Missing requirements." => "Faltam alguns requisitos.", "Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Por favor, certifique-se que PHP 5.3.3 ou mais recente está instalado e que a extensão PHP OpenSSL está ativada e corretamente configurada. Por agora, a encripitação está desativado.", "Saving..." => "A guardar...", "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):", +"Recovery key password" => "Chave de recuperação da conta", "Enabled" => "Activado", "Disabled" => "Desactivado", +"Change recovery key password:" => "Alterar a chave de recuperação:", +"Old Recovery key password" => "Chave anterior de recuperação da conta", +"New Recovery key password" => "Nova chave de recuperação da conta", "Change Password" => "Mudar a Password", +"Old log-in password" => "Password anterior da conta", +"Current log-in password" => "Password actual da conta", "Enable password recovery:" => "ativar recuperação do password:", +"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" => "Ao activar esta opção, tornar-lhe-a possível a obtenção de acesso aos seus ficheiros encriptados caso perca a password.", "File recovery settings updated" => "Actualizadas as definições de recuperação de ficheiros", "Could not update file recovery" => "Não foi possível actualizar a recuperação de ficheiros" ); diff --git a/apps/files_trashbin/l10n/cs_CZ.php b/apps/files_trashbin/l10n/cs_CZ.php index 416b6b231d..6429c90cf5 100644 --- a/apps/files_trashbin/l10n/cs_CZ.php +++ b/apps/files_trashbin/l10n/cs_CZ.php @@ -11,6 +11,7 @@ "{count} folders" => "{count} složky", "1 file" => "1 soubor", "{count} files" => "{count} soubory", +"restored" => "obnoveno", "Nothing in here. Your trash bin is empty!" => "Žádný obsah. Váš koš je prázdný.", "Restore" => "Obnovit", "Delete" => "Smazat", diff --git a/apps/files_trashbin/l10n/de.php b/apps/files_trashbin/l10n/de.php index 4dd9033969..3c64387472 100644 --- a/apps/files_trashbin/l10n/de.php +++ b/apps/files_trashbin/l10n/de.php @@ -11,6 +11,7 @@ "{count} folders" => "{count} Ordner", "1 file" => "1 Datei", "{count} files" => "{count} Dateien", +"restored" => "Wiederhergestellt", "Nothing in here. Your trash bin is empty!" => "Nichts zu löschen, der Papierkorb ist leer!", "Restore" => "Wiederherstellen", "Delete" => "Löschen", diff --git a/apps/files_trashbin/l10n/de_DE.php b/apps/files_trashbin/l10n/de_DE.php index 829b5026e1..47dcedd4bf 100644 --- a/apps/files_trashbin/l10n/de_DE.php +++ b/apps/files_trashbin/l10n/de_DE.php @@ -11,6 +11,7 @@ "{count} folders" => "{count} Ordner", "1 file" => "1 Datei", "{count} files" => "{count} Dateien", +"restored" => "Wiederhergestellt", "Nothing in here. Your trash bin is empty!" => "Nichts zu löschen, Ihr Papierkorb ist leer!", "Restore" => "Wiederherstellen", "Delete" => "Löschen", diff --git a/apps/files_trashbin/l10n/es.php b/apps/files_trashbin/l10n/es.php index b2d5a2aed2..d6591713e3 100644 --- a/apps/files_trashbin/l10n/es.php +++ b/apps/files_trashbin/l10n/es.php @@ -11,6 +11,7 @@ "{count} folders" => "{count} carpetas", "1 file" => "1 archivo", "{count} files" => "{count} archivos", +"restored" => "recuperado", "Nothing in here. Your trash bin is empty!" => "No hay nada aquí. ¡Tu papelera esta vacía!", "Restore" => "Recuperar", "Delete" => "Eliminar", diff --git a/apps/files_trashbin/l10n/fi_FI.php b/apps/files_trashbin/l10n/fi_FI.php index fd6edf398e..646a000c0d 100644 --- a/apps/files_trashbin/l10n/fi_FI.php +++ b/apps/files_trashbin/l10n/fi_FI.php @@ -11,6 +11,7 @@ "{count} folders" => "{count} kansiota", "1 file" => "1 tiedosto", "{count} files" => "{count} tiedostoa", +"restored" => "palautettu", "Nothing in here. Your trash bin is empty!" => "Tyhjää täynnä! Roskakorissa ei ole mitään.", "Restore" => "Palauta", "Delete" => "Poista", diff --git a/apps/files_trashbin/l10n/it.php b/apps/files_trashbin/l10n/it.php index 795fd6ea16..769971bb9c 100644 --- a/apps/files_trashbin/l10n/it.php +++ b/apps/files_trashbin/l10n/it.php @@ -11,6 +11,7 @@ "{count} folders" => "{count} cartelle", "1 file" => "1 file", "{count} files" => "{count} file", +"restored" => "ripristinati", "Nothing in here. Your trash bin is empty!" => "Qui non c'è niente. Il tuo cestino è vuoto.", "Restore" => "Ripristina", "Delete" => "Elimina", diff --git a/apps/files_trashbin/l10n/pt_BR.php b/apps/files_trashbin/l10n/pt_BR.php index 9dad8a40a8..c1a88541b2 100644 --- a/apps/files_trashbin/l10n/pt_BR.php +++ b/apps/files_trashbin/l10n/pt_BR.php @@ -11,6 +11,7 @@ "{count} folders" => "{count} pastas", "1 file" => "1 arquivo", "{count} files" => "{count} arquivos", +"restored" => "restaurado", "Nothing in here. Your trash bin is empty!" => "Nada aqui. Sua lixeira está vazia!", "Restore" => "Restaurar", "Delete" => "Excluir", diff --git a/apps/user_ldap/l10n/da.php b/apps/user_ldap/l10n/da.php index 0a77f46647..71fe042406 100644 --- a/apps/user_ldap/l10n/da.php +++ b/apps/user_ldap/l10n/da.php @@ -1,7 +1,18 @@ "Kunne ikke slette server konfigurationen", +"The configuration is valid and the connection could be established!" => "Konfigurationen er korrekt og forbindelsen kunne etableres!", +"The configuration is invalid. Please look in the ownCloud log for further details." => "Konfigurationen er ugyldig. Se venligst ownCloud loggen for yderligere detaljer.", "Deletion failed" => "Fejl ved sletning", +"Keep settings?" => "Behold indstillinger?", +"Cannot add server configuration" => "Kan ikke tilføje serverkonfiguration", "Success" => "Succes", "Error" => "Fejl", +"Connection test succeeded" => "Forbindelsestest lykkedes", +"Connection test failed" => "Forbindelsestest mislykkedes", +"Do you really want to delete the current Server Configuration?" => "Ønsker du virkelig at slette den nuværende Server Konfiguration?", +"Confirm Deletion" => "Bekræft Sletning", +"Server configuration" => "Server konfiguration", +"Add Server Configuration" => "Tilføj Server Konfiguration", "Host" => "Host", "You can omit the protocol, except you require SSL. Then start with ldaps://" => "Du kan udelade protokollen, medmindre du skal bruge SSL. Start i så fald med ldaps://", "Base DN" => "Base DN", @@ -12,10 +23,19 @@ "User Login Filter" => "Bruger Login Filter", "User List Filter" => "Brugerliste Filter", "Defines the filter to apply, when retrieving users." => "Definere filteret der bruges ved indlæsning af brugere.", +"without any placeholder, e.g. \"objectClass=person\"." => "Uden stedfortræder, f.eks. \"objectClass=person\".", "Group Filter" => "Gruppe Filter", "Defines the filter to apply, when retrieving groups." => "Definere filteret der bruges når der indlæses grupper.", +"without any placeholder, e.g. \"objectClass=posixGroup\"." => "Uden stedfortræder, f.eks. \"objectClass=posixGroup\".", +"Connection Settings" => "Forbindelsesindstillinger ", +"Configuration Active" => "Konfiguration Aktiv", "Port" => "Port", +"Backup (Replica) Host" => "Backup (Replika) Vært", +"Backup (Replica) Port" => "Backup (Replika) Port", +"Disable Main Server" => "Deaktiver Hovedserver", +"Only connect to the replica server." => "Forbind kun til replika serveren.", "Use TLS" => "Brug TLS", +"Do not use it additionally for LDAPS connections, it will fail." => "Benyt ikke flere LDAPS forbindelser, det vil mislykkeds. ", "Turn off SSL certificate validation." => "Deaktiver SSL certifikat validering", "Not recommended, use for testing only." => "Anbefales ikke, brug kun for at teste.", "User Display Name Field" => "User Display Name Field", @@ -23,5 +43,8 @@ "Base Group Tree" => "Base Group Tree", "Group-Member association" => "Group-Member association", "in bytes" => "i bytes", +"Email Field" => "Email Felt", +"Internal Username" => "Internt Brugernavn", +"Test Configuration" => "Test Konfiguration", "Help" => "Hjælp" ); diff --git a/apps/user_webdavauth/l10n/cs_CZ.php b/apps/user_webdavauth/l10n/cs_CZ.php index 2efde08faf..e6664d4d7b 100644 --- a/apps/user_webdavauth/l10n/cs_CZ.php +++ b/apps/user_webdavauth/l10n/cs_CZ.php @@ -1,3 +1,5 @@ "Ověření WebDAV" +"WebDAV Authentication" => "Ověření WebDAV", +"Address: " => "Adresa:", +"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." => "Uživatelské přihlašovací údaje budou odeslány na tuto adresu. Tento plugin zkontroluje odpověď serveru a interpretuje návratový kód HTTP 401 a 403 jako neplatné přihlašovací údaje a jakýkoli jiný jako platné přihlašovací údaje." ); diff --git a/core/l10n/sl.php b/core/l10n/sl.php index 60d3c619fc..37194c3905 100644 --- a/core/l10n/sl.php +++ b/core/l10n/sl.php @@ -110,6 +110,7 @@ "Add" => "Dodaj", "Security Warning" => "Varnostno opozorilo", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Uporabljena različica PHP je ranljiva za napad NULL Byte (CVE-2006-7243)", +"Please update your PHP installation to use %s securely." => "Za varno uporabo storitve %s posodobite PHP", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Na voljo ni nobenega varnega ustvarjalnika naključnih števil. Omogočiti je treba razširitev PHP OpenSSL.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Brez varnega ustvarjalnika naključnih števil je mogoče napovedati žetone za ponastavitev gesla, s čimer je mogoče prevzeti nadzor nad računom.", "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Podatkovna mapa in datoteke so najverjetneje javno dostopni preko interneta, saj datoteka .htaccess ni ustrezno nastavljena.", diff --git a/l10n/af_ZA/core.po b/l10n/af_ZA/core.po index 74677c39c9..f310e68c56 100644 --- a/l10n/af_ZA/core.po +++ b/l10n/af_ZA/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -226,7 +226,7 @@ msgstr "" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "" @@ -346,23 +346,23 @@ msgstr "" msgid "share" msgstr "" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "" -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "" @@ -461,7 +461,7 @@ msgstr "Hulp" msgid "Access forbidden" msgstr "" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Wolk nie gevind" diff --git a/l10n/af_ZA/files_sharing.po b/l10n/af_ZA/files_sharing.po index ff1a3d94c2..3bdda43428 100644 --- a/l10n/af_ZA/files_sharing.po +++ b/l10n/af_ZA/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -29,28 +29,52 @@ msgstr "Wagwoord" msgid "Submit" msgstr "" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "" -#: templates/public.php:44 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "" -#: templates/public.php:54 +#: templates/public.php:56 msgid "Cancel upload" msgstr "" -#: templates/public.php:83 +#: templates/public.php:85 msgid "No preview available for" msgstr "" diff --git a/l10n/af_ZA/lib.po b/l10n/af_ZA/lib.po index e89d30f408..c77f882d7b 100644 --- a/l10n/af_ZA/lib.po +++ b/l10n/af_ZA/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -46,7 +46,7 @@ msgstr "Admin" msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "webdienste onder jou beheer" @@ -257,7 +257,7 @@ msgstr "" msgid "years ago" msgstr "" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/af_ZA/user_ldap.po b/l10n/af_ZA/user_ldap.po index b73baa136a..233404f30f 100644 --- a/l10n/af_ZA/user_ldap.po +++ b/l10n/af_ZA/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/core.po b/l10n/ar/core.po index 68f6bff8aa..07652940cf 100644 --- a/l10n/ar/core.po +++ b/l10n/ar/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -226,7 +226,7 @@ msgstr "نوع العنصر غير محدد." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "خطأ" @@ -246,7 +246,7 @@ msgstr "مشارك" msgid "Share" msgstr "شارك" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "حصل خطأ عند عملية المشاركة" @@ -346,23 +346,23 @@ msgstr "حذف" msgid "share" msgstr "مشاركة" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "محمي بكلمة السر" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "حصل خطأ عند عملية إزالة تاريخ إنتهاء الصلاحية" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "حصل خطأ عند عملية تعيين تاريخ إنتهاء الصلاحية" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "جاري الارسال ..." -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "تم ارسال البريد الالكتروني" @@ -461,7 +461,7 @@ msgstr "المساعدة" msgid "Access forbidden" msgstr "التوصّل محظور" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "لم يتم إيجاد" diff --git a/l10n/ar/files.po b/l10n/ar/files.po index 8241c68212..2c0edd0e62 100644 --- a/l10n/ar/files.po +++ b/l10n/ar/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 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" @@ -120,7 +120,7 @@ msgstr "شارك" msgid "Delete permanently" msgstr "حذف بشكل دائم" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "إلغاء" @@ -128,7 +128,7 @@ msgstr "إلغاء" msgid "Rename" msgstr "إعادة تسميه" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "قيد الانتظار" @@ -160,11 +160,11 @@ msgstr "تراجع" msgid "perform delete operation" msgstr "جاري تنفيذ عملية الحذف" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "جاري رفع 1 ملف" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "" @@ -200,15 +200,15 @@ msgstr "جاري تجهيز عملية التحميل. قد تستغرق بعض msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "إسم مجلد غير صحيح. استخدام مصطلح \"Shared\" محجوز للنظام" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "اسم" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "حجم" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "معدل" @@ -285,45 +285,45 @@ msgstr "مجلد" msgid "From link" msgstr "من رابط" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "حذف الملفات" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "إلغاء رفع الملفات" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "لا تملك صلاحيات الكتابة هنا." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "لا يوجد شيء هنا. إرفع بعض الملفات!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "تحميل" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "إلغاء مشاركة" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "حجم الترفيع أعلى من المسموح" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "حجم الملفات التي تريد ترفيعها أعلى من المسموح على الخادم." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "يرجى الانتظار , جاري فحص الملفات ." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "الفحص الحالي" diff --git a/l10n/ar/files_sharing.po b/l10n/ar/files_sharing.po index d29eee8ffa..34d8af4fdc 100644 --- a/l10n/ar/files_sharing.po +++ b/l10n/ar/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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,28 +29,52 @@ msgstr "كلمة المرور" msgid "Submit" msgstr "تطبيق" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s شارك المجلد %s معك" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s شارك الملف %s معك" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "تحميل" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "رفع" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "إلغاء رفع الملفات" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "لا يوجد عرض مسبق لـ" diff --git a/l10n/ar/lib.po b/l10n/ar/lib.po index e1901ce0fe..60c4df45eb 100644 --- a/l10n/ar/lib.po +++ b/l10n/ar/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -46,7 +46,7 @@ msgstr "المدير" msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "خدمات الشبكة تحت سيطرتك" @@ -257,7 +257,7 @@ msgstr "السنةالماضية" msgid "years ago" msgstr "سنة مضت" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/ar/user_ldap.po b/l10n/ar/user_ldap.po index 25433da085..34874b7994 100644 --- a/l10n/ar/user_ldap.po +++ b/l10n/ar/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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/be/files_sharing.po b/l10n/be/files_sharing.po index 43b93d5cff..d8ea6184ff 100644 --- a/l10n/be/files_sharing.po +++ b/l10n/be/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -29,28 +29,52 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "" -#: templates/public.php:44 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "" -#: templates/public.php:54 +#: templates/public.php:56 msgid "Cancel upload" msgstr "" -#: templates/public.php:83 +#: templates/public.php:85 msgid "No preview available for" msgstr "" diff --git a/l10n/bg_BG/core.po b/l10n/bg_BG/core.po index dc5ce40ade..36a3615845 100644 --- a/l10n/bg_BG/core.po +++ b/l10n/bg_BG/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -226,7 +226,7 @@ msgstr "" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Грешка" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "Споделяне" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "" @@ -346,23 +346,23 @@ msgstr "" msgid "share" msgstr "" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "" -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "" @@ -461,7 +461,7 @@ msgstr "Помощ" msgid "Access forbidden" msgstr "Достъпът е забранен" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "облакът не намерен" diff --git a/l10n/bg_BG/files.po b/l10n/bg_BG/files.po index ae11cb5e63..c5b052986f 100644 --- a/l10n/bg_BG/files.po +++ b/l10n/bg_BG/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 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" @@ -120,7 +120,7 @@ msgstr "Споделяне" msgid "Delete permanently" msgstr "Изтриване завинаги" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Изтриване" @@ -128,7 +128,7 @@ msgstr "Изтриване" msgid "Rename" msgstr "Преименуване" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Чакащо" @@ -160,11 +160,11 @@ msgstr "възтановяване" msgid "perform delete operation" msgstr "" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "" @@ -200,15 +200,15 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Име" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Размер" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Променено" @@ -285,45 +285,45 @@ msgstr "Папка" msgid "From link" msgstr "" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Спри качването" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Няма нищо тук. Качете нещо." -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Изтегляне" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "Файлът който сте избрали за качване е прекалено голям" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Файловете които се опитвате да качите са по-големи от позволеното за сървъра." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Файловете се претърсват, изчакайте." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "" diff --git a/l10n/bg_BG/files_sharing.po b/l10n/bg_BG/files_sharing.po index 855cf3e040..88a230e986 100644 --- a/l10n/bg_BG/files_sharing.po +++ b/l10n/bg_BG/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -29,28 +29,52 @@ msgstr "Парола" msgid "Submit" msgstr "Потвърждение" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s сподели папката %s с Вас" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s сподели файла %s с Вас" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Изтегляне" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Качване" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Спри качването" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Няма наличен преглед за" diff --git a/l10n/bg_BG/lib.po b/l10n/bg_BG/lib.po index 74cc7751a4..13a54296f9 100644 --- a/l10n/bg_BG/lib.po +++ b/l10n/bg_BG/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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,7 +47,7 @@ msgstr "Админ" msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "уеб услуги под Ваш контрол" @@ -258,7 +258,7 @@ msgstr "последната година" msgid "years ago" msgstr "последните години" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/bg_BG/user_ldap.po b/l10n/bg_BG/user_ldap.po index d57e84a869..9895f4aa47 100644 --- a/l10n/bg_BG/user_ldap.po +++ b/l10n/bg_BG/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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 5343b04fa6..408ffa0ef1 100644 --- a/l10n/bn_BD/core.po +++ b/l10n/bn_BD/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -226,7 +226,7 @@ msgstr "অবজেক্টের ধরণটি সুনির্দিষ #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "সমস্যা" @@ -246,7 +246,7 @@ msgstr "ভাগাভাগিকৃত" msgid "Share" msgstr "ভাগাভাগি কর" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "ভাগাভাগি করতে সমস্যা দেখা দিয়েছে " @@ -346,23 +346,23 @@ msgstr "মুছে ফেল" msgid "share" msgstr "ভাগাভাগি কর" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "কূটশব্দদ্বারা সুরক্ষিত" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "মেয়াদোত্তীর্ণ হওয়ার তারিখ নির্ধারণ বাতিল করতে সমস্যা দেখা দিয়েছে" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "মেয়াদোত্তীর্ণ হওয়ার তারিখ নির্ধারণ করতে সমস্যা দেখা দিয়েছে" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "পাঠানো হচ্ছে......" -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "ই-মেইল পাঠানো হয়েছে" @@ -461,7 +461,7 @@ msgstr "সহায়িকা" msgid "Access forbidden" msgstr "অধিগমনের অনুমতি নেই" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "ক্লাউড খুঁজে পাওয়া গেল না" diff --git a/l10n/bn_BD/files.po b/l10n/bn_BD/files.po index 701192f581..c651dce787 100644 --- a/l10n/bn_BD/files.po +++ b/l10n/bn_BD/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 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" @@ -120,7 +120,7 @@ msgstr "ভাগাভাগি কর" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "মুছে" @@ -128,7 +128,7 @@ msgstr "মুছে" msgid "Rename" msgstr "পূনঃনামকরণ" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "মুলতুবি" @@ -160,11 +160,11 @@ msgstr "ক্রিয়া প্রত্যাহার" msgid "perform delete operation" msgstr "" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "১টি ফাইল আপলোড করা হচ্ছে" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "" @@ -200,15 +200,15 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "ফোল্ডারের নামটি সঠিক নয়। 'ভাগাভাগি করা' শুধুমাত্র Owncloud এর জন্য সংরক্ষিত।" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "রাম" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "আকার" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "পরিবর্তিত" @@ -285,45 +285,45 @@ msgstr "ফোল্ডার" msgid "From link" msgstr " লিংক থেকে" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "আপলোড বাতিল কর" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "এখানে কিছুই নেই। কিছু আপলোড করুন !" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "ডাউনলোড" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "ভাগাভাগি বাতিল " -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "আপলোডের আকারটি অনেক বড়" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "আপনি এই সার্ভারে আপলোড করার জন্য অনুমোদিত ফাইলের সর্বোচ্চ আকারের চেয়ে বৃহদাকার ফাইল আপলোড করার চেষ্টা করছেন " -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "ফাইলগুলো স্ক্যান করা হচ্ছে, দয়া করে অপেক্ষা করুন।" -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "বর্তমান স্ক্যানিং" diff --git a/l10n/bn_BD/files_sharing.po b/l10n/bn_BD/files_sharing.po index 0633b64722..e16292014d 100644 --- a/l10n/bn_BD/files_sharing.po +++ b/l10n/bn_BD/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -29,28 +29,52 @@ msgstr "কূটশব্দ" msgid "Submit" msgstr "জমা দিন" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s আপনার সাথে %s ফোল্ডারটি ভাগাভাগি করেছেন" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s আপনার সাথে %s ফাইলটি ভাগাভাগি করেছেন" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "ডাউনলোড" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "আপলোড" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "আপলোড বাতিল কর" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "এর জন্য কোন প্রাকবীক্ষণ সুলভ নয়" diff --git a/l10n/bn_BD/lib.po b/l10n/bn_BD/lib.po index d9e572a75f..9b7083e574 100644 --- a/l10n/bn_BD/lib.po +++ b/l10n/bn_BD/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -46,7 +46,7 @@ msgstr "প্রশাসন" msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "ওয়েব সার্ভিস আপনার হাতের মুঠোয়" @@ -257,7 +257,7 @@ msgstr "গত বছর" msgid "years ago" msgstr "বছর পূর্বে" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/bn_BD/user_ldap.po b/l10n/bn_BD/user_ldap.po index 776201997c..72447d825b 100644 --- a/l10n/bn_BD/user_ldap.po +++ b/l10n/bn_BD/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bs/core.po b/l10n/bs/core.po index b3afdebb16..6400ac456e 100644 --- a/l10n/bs/core.po +++ b/l10n/bs/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -226,7 +226,7 @@ msgstr "" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "Podijeli" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "" @@ -346,23 +346,23 @@ msgstr "" msgid "share" msgstr "" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "" -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "" @@ -461,7 +461,7 @@ msgstr "" msgid "Access forbidden" msgstr "" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "" diff --git a/l10n/bs/files_sharing.po b/l10n/bs/files_sharing.po index 6893cf5162..47ff900767 100644 --- a/l10n/bs/files_sharing.po +++ b/l10n/bs/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -29,28 +29,52 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "" -#: templates/public.php:44 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "" -#: templates/public.php:54 +#: templates/public.php:56 msgid "Cancel upload" msgstr "" -#: templates/public.php:83 +#: templates/public.php:85 msgid "No preview available for" msgstr "" diff --git a/l10n/ca/core.po b/l10n/ca/core.po index 99980e27dc..59973b4c64 100644 --- a/l10n/ca/core.po +++ b/l10n/ca/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-26 20:30+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -228,7 +228,7 @@ msgstr "No s'ha especificat el tipus d'objecte." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Error" @@ -248,7 +248,7 @@ msgstr "Compartit" msgid "Share" msgstr "Comparteix" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Error en compartir" @@ -348,23 +348,23 @@ msgstr "elimina" msgid "share" msgstr "comparteix" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Protegeix amb contrasenya" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Error en eliminar la data de venciment" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Error en establir la data de venciment" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "Enviant..." -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "El correu electrónic s'ha enviat" @@ -463,7 +463,7 @@ msgstr "Ajuda" msgid "Access forbidden" msgstr "Accés prohibit" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "No s'ha trobat el núvol" diff --git a/l10n/ca/files.po b/l10n/ca/files.po index a7ee5b020d..8bb421127f 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 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" @@ -122,7 +122,7 @@ msgstr "Comparteix" msgid "Delete permanently" msgstr "Esborra permanentment" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Esborra" @@ -130,7 +130,7 @@ msgstr "Esborra" msgid "Rename" msgstr "Reanomena" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Pendent" @@ -162,11 +162,11 @@ msgstr "desfés" msgid "perform delete operation" msgstr "executa d'operació d'esborrar" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 fitxer pujant" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "fitxers pujant" @@ -202,15 +202,15 @@ msgstr "S'està preparant la baixada. Pot trigar una estona si els fitxers són msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nom de carpeta no vàlid. L'ús de 'Shared' està reservat per Owncloud" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Nom" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Mida" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Modificat" @@ -287,45 +287,45 @@ msgstr "Carpeta" msgid "From link" msgstr "Des d'enllaç" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "Fitxers esborrats" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Cancel·la la pujada" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "No teniu permisos d'escriptura aquí." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Res per aquí. Pugeu alguna cosa!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Baixa" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Deixa de compartir" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "La pujada és massa gran" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Els fitxers que esteu intentant pujar excedeixen la mida màxima de pujada del servidor" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "S'estan escanejant els fitxers, espereu" -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Actualment escanejant" diff --git a/l10n/ca/files_sharing.po b/l10n/ca/files_sharing.po index ba3ffec06a..f160ac69fb 100644 --- a/l10n/ca/files_sharing.po +++ b/l10n/ca/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" -"Last-Translator: rogerc\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -30,28 +30,52 @@ msgstr "Contrasenya" msgid "Submit" msgstr "Envia" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s ha compartit la carpeta %s amb vós" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s ha compartit el fitxer %s amb vós" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Baixa" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Puja" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Cancel·la la pujada" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "No hi ha vista prèvia disponible per a" diff --git a/l10n/ca/lib.po b/l10n/ca/lib.po index 1a7a91a544..6f79f8dd10 100644 --- a/l10n/ca/lib.po +++ b/l10n/ca/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-26 20:40+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/user_ldap.po b/l10n/ca/user_ldap.po index 29c945320e..cc362ad68d 100644 --- a/l10n/ca/user_ldap.po +++ b/l10n/ca/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po index 5247e92ce8..395269681d 100644 --- a/l10n/cs_CZ/core.po +++ b/l10n/cs_CZ/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-29 18:10+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: Honza K. \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -228,7 +228,7 @@ msgstr "Není určen typ objektu." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Chyba" @@ -248,7 +248,7 @@ msgstr "Sdílené" msgid "Share" msgstr "Sdílet" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Chyba při sdílení" @@ -348,23 +348,23 @@ msgstr "smazat" msgid "share" msgstr "sdílet" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Chráněno heslem" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Chyba při odstraňování data vypršení platnosti" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Chyba při nastavení data vypršení platnosti" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "Odesílám ..." -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "E-mail odeslán" @@ -463,7 +463,7 @@ msgstr "Nápověda" msgid "Access forbidden" msgstr "Přístup zakázán" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Cloud nebyl nalezen" diff --git a/l10n/cs_CZ/files.po b/l10n/cs_CZ/files.po index 8adab0262b..36b9af89c6 100644 --- a/l10n/cs_CZ/files.po +++ b/l10n/cs_CZ/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-29 13:20+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"Last-Translator: Honza K. \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" @@ -233,7 +233,7 @@ msgstr "{count} soubory" #: lib/app.php:73 #, php-format msgid "%s could not be renamed" -msgstr "" +msgstr "%s nemůže být přejmenován" #: lib/helper.php:11 templates/index.php:18 msgid "Upload" @@ -331,11 +331,11 @@ msgstr "Aktuální prohledávání" #: templates/part.list.php:74 msgid "directory" -msgstr "" +msgstr "adresář" #: templates/part.list.php:76 msgid "directories" -msgstr "" +msgstr "adresáře" #: templates/part.list.php:85 msgid "file" diff --git a/l10n/cs_CZ/files_sharing.po b/l10n/cs_CZ/files_sharing.po index f2dfc21ea8..89b4d45ab8 100644 --- a/l10n/cs_CZ/files_sharing.po +++ b/l10n/cs_CZ/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-29 14:40+0000\n" -"Last-Translator: pstast \n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -30,6 +30,30 @@ msgstr "Heslo" msgid "Submit" msgstr "Odeslat" +#: 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:15 #, php-format msgid "%s shared the folder %s with you" diff --git a/l10n/cs_CZ/files_trashbin.po b/l10n/cs_CZ/files_trashbin.po index 83c9a450e8..c6dfd407a5 100644 --- a/l10n/cs_CZ/files_trashbin.po +++ b/l10n/cs_CZ/files_trashbin.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Honza K. , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 21:10+0000\n" +"Last-Translator: Honza K. \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" @@ -69,7 +70,7 @@ msgstr "{count} soubory" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" -msgstr "" +msgstr "obnoveno" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" diff --git a/l10n/cs_CZ/lib.po b/l10n/cs_CZ/lib.po index d19bbe4bb9..602c1e4dd8 100644 --- a/l10n/cs_CZ/lib.po +++ b/l10n/cs_CZ/lib.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Honza K. , 2013 # Tomáš Chvátal , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 21:21+0000\n" +"Last-Translator: Honza K. \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" @@ -45,16 +46,16 @@ msgstr "Administrace" #: app.php:844 #, php-format msgid "Failed to upgrade \"%s\"." -msgstr "" +msgstr "Selhalo povýšení verze \"%s\"." -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "služby webu pod Vaší kontrolou" #: files.php:66 files.php:98 #, php-format msgid "cannot open \"%s\"" -msgstr "" +msgstr "nelze otevřít \"%s\"" #: files.php:226 msgid "ZIP download is turned off." @@ -76,7 +77,7 @@ msgstr "Vybrané soubory jsou příliš velké pro vytvoření zip souboru." msgid "" "Download the files in smaller chunks, seperately or kindly ask your " "administrator." -msgstr "" +msgstr "Stáhněte soubory po menších částech, samostatně, nebo se obraťte na správce." #: helper.php:235 msgid "couldn't be determined" @@ -258,9 +259,9 @@ msgstr "minulý rok" msgid "years ago" msgstr "před lety" -#: template.php:296 +#: template.php:297 msgid "Caused by:" -msgstr "" +msgstr "Příčina:" #: vcategories.php:188 vcategories.php:249 #, php-format diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po index 6bf03a6d1f..fbc9ea3099 100644 --- a/l10n/cs_CZ/settings.po +++ b/l10n/cs_CZ/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-29 19:30+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 21:10+0000\n" "Last-Translator: Honza K. \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -182,7 +182,7 @@ msgid "" "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 "" +msgstr "Váš datový adresář i vaše soubory jsou pravděpodobně přístupné z internetu. Soubor .htaccess nefunguje. Důrazně doporučujeme nakonfigurovat webový server, aby datový adresář nebyl nadále přístupný nebo přesunout datový adresář mimo adresář zpřístupňovaný webovým serverem." #: templates/admin.php:29 msgid "Setup Warning" @@ -219,7 +219,7 @@ msgid "" "System locale can't be set to %s. This means that there might be problems " "with certain characters in file names. We strongly suggest to install the " "required packages on your system to support %s." -msgstr "" +msgstr "Systémové nastavení lokalizace nemohlo být nastaveno na %s. Mohou se tedy vyskytnout problémy s některými znaky v názvech souborů. Důrazně doporučujeme nainstalovat balíčky potřebné pro podporu %s ve vašem systému." #: templates/admin.php:75 msgid "Internet connection not working" @@ -232,7 +232,7 @@ msgid "" "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 "" +msgstr "Server nemá funkční připojení k internetu. Některé moduly jako externí úložiště, oznámení o dostupných aktualizacích nebo instalace aplikací třetích stran nebudou fungovat. Přístup k souborům z jiných míst a odesílání oznamovacích e-mailů také nemusí fungovat. Pokud si přejete využívat všech vlastností ownCloud, doporučujeme povolit připojení k internetu tomuto serveru." #: templates/admin.php:92 msgid "Cron" @@ -246,7 +246,7 @@ msgstr "Spustit jednu úlohu s každou načtenou stránkou" msgid "" "cron.php is registered at a webcron service to call cron.php once a minute " "over http." -msgstr "" +msgstr "cron.php je registrován u služby webcron pro zavolání stránky cron.php jednou za minutu po http." #: templates/admin.php:121 msgid "Use systems cron service to call the cron.php file once a minute." diff --git a/l10n/cs_CZ/user_ldap.po b/l10n/cs_CZ/user_ldap.po index 7a961890f1..0e9b72d3e8 100644 --- a/l10n/cs_CZ/user_ldap.po +++ b/l10n/cs_CZ/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-29 19:20+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: Honza K. \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_webdavauth.po b/l10n/cs_CZ/user_webdavauth.po index 73e152c379..74eaf816df 100644 --- a/l10n/cs_CZ/user_webdavauth.po +++ b/l10n/cs_CZ/user_webdavauth.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Honza K. , 2013 # Tomáš Chvátal , 2012-2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:57+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 21:21+0000\n" +"Last-Translator: Honza K. \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" @@ -24,11 +25,11 @@ msgstr "Ověření WebDAV" #: templates/settings.php:4 msgid "Address: " -msgstr "" +msgstr "Adresa:" #: templates/settings.php:7 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 "" +msgstr "Uživatelské přihlašovací údaje budou odeslány na tuto adresu. Tento plugin zkontroluje odpověď serveru a interpretuje návratový kód HTTP 401 a 403 jako neplatné přihlašovací údaje a jakýkoli jiný jako platné přihlašovací údaje." diff --git a/l10n/cy_GB/core.po b/l10n/cy_GB/core.po index a7fa993d10..fdf6b56cf7 100644 --- a/l10n/cy_GB/core.po +++ b/l10n/cy_GB/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -227,7 +227,7 @@ msgstr "Nid yw'r math o wrthrych wedi cael ei nodi." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Gwall" @@ -247,7 +247,7 @@ msgstr "Rhannwyd" msgid "Share" msgstr "Rhannu" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Gwall wrth rannu" @@ -347,23 +347,23 @@ msgstr "dileu" msgid "share" msgstr "rhannu" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Diogelwyd â chyfrinair" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Gwall wrth ddad-osod dyddiad dod i ben" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Gwall wrth osod dyddiad dod i ben" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "Yn anfon ..." -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "Anfonwyd yr e-bost" @@ -462,7 +462,7 @@ msgstr "Cymorth" msgid "Access forbidden" msgstr "Mynediad wedi'i wahardd" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Methwyd canfod cwmwl" diff --git a/l10n/cy_GB/files.po b/l10n/cy_GB/files.po index 285709f347..13f8ec20f6 100644 --- a/l10n/cy_GB/files.po +++ b/l10n/cy_GB/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 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" @@ -120,7 +120,7 @@ msgstr "Rhannu" msgid "Delete permanently" msgstr "Dileu'n barhaol" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Dileu" @@ -128,7 +128,7 @@ msgstr "Dileu" msgid "Rename" msgstr "Ailenwi" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "I ddod" @@ -160,11 +160,11 @@ msgstr "dadwneud" msgid "perform delete operation" msgstr "cyflawni gweithred dileu" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 ffeil yn llwytho i fyny" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "ffeiliau'n llwytho i fyny" @@ -200,15 +200,15 @@ msgstr "Wrthi'n paratoi i lwytho i lawr. Gall gymryd peth amser os yw'r ffeiliau msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Enw plygell annilys. Mae'r defnydd o 'Shared' yn cael ei gadw gan Owncloud" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Enw" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Maint" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Addaswyd" @@ -285,45 +285,45 @@ msgstr "Plygell" msgid "From link" msgstr "Dolen o" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "Ffeiliau ddilewyd" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Diddymu llwytho i fyny" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "Nid oes gennych hawliau ysgrifennu fan hyn." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Does dim byd fan hyn. Llwythwch rhywbeth i fyny!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Llwytho i lawr" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Dad-rannu" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "Maint llwytho i fyny'n rhy fawr" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Mae'r ffeiliau rydych yn ceisio llwytho i fyny'n fwy na maint mwyaf llwytho ffeiliau i fyny ar y gweinydd hwn." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Arhoswch, mae ffeiliau'n cael eu sganio." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Sganio cyfredol" diff --git a/l10n/cy_GB/files_sharing.po b/l10n/cy_GB/files_sharing.po index 38dd52e504..c9edfb2a4b 100644 --- a/l10n/cy_GB/files_sharing.po +++ b/l10n/cy_GB/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -29,28 +29,52 @@ msgstr "Cyfrinair" msgid "Submit" msgstr "Cyflwyno" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "Rhannodd %s blygell %s â chi" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "Rhannodd %s ffeil %s â chi" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Llwytho i lawr" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Llwytho i fyny" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Diddymu llwytho i fyny" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Does dim rhagolwg ar gael ar gyfer" diff --git a/l10n/cy_GB/lib.po b/l10n/cy_GB/lib.po index ce21b1417a..580ccc2902 100644 --- a/l10n/cy_GB/lib.po +++ b/l10n/cy_GB/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -46,7 +46,7 @@ msgstr "Gweinyddu" msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "gwasanaethau gwe a reolir gennych" @@ -257,7 +257,7 @@ msgstr "y llynedd" msgid "years ago" msgstr "blwyddyn yn ôl" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/cy_GB/user_ldap.po b/l10n/cy_GB/user_ldap.po index 62c672e372..d71262f1e3 100644 --- a/l10n/cy_GB/user_ldap.po +++ b/l10n/cy_GB/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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 cea754530d..a1a9cdeb1c 100644 --- a/l10n/da/core.po +++ b/l10n/da/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-29 01:56-0400\n" -"PO-Revision-Date: 2013-07-28 13:50+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: Sappe\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -229,7 +229,7 @@ msgstr "Objekttypen er ikke angivet." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Fejl" @@ -249,7 +249,7 @@ msgstr "Delt" msgid "Share" msgstr "Del" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Fejl under deling" @@ -349,23 +349,23 @@ msgstr "slet" msgid "share" msgstr "del" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Beskyttet med adgangskode" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Fejl ved fjernelse af udløbsdato" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Fejl under sætning af udløbsdato" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "Sender ..." -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "E-mail afsendt" @@ -464,7 +464,7 @@ msgstr "Hjælp" msgid "Access forbidden" msgstr "Adgang forbudt" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Sky ikke fundet" diff --git a/l10n/da/files.po b/l10n/da/files.po index e70e70e49e..957c1b4118 100644 --- a/l10n/da/files.po +++ b/l10n/da/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-29 01:55-0400\n" -"PO-Revision-Date: 2013-07-28 13:50+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:41+0000\n" "Last-Translator: Sappe\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -122,7 +122,7 @@ msgstr "Del" msgid "Delete permanently" msgstr "Slet permanent" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Slet" @@ -130,7 +130,7 @@ msgstr "Slet" msgid "Rename" msgstr "Omdøb" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Afventer" @@ -162,11 +162,11 @@ msgstr "fortryd" msgid "perform delete operation" msgstr "udfør slet operation" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 fil uploades" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "uploader filer" @@ -202,15 +202,15 @@ msgstr "Dit download forberedes. Dette kan tage lidt tid ved større filer." msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Ugyldigt mappenavn. Brug af \"Shared\" er forbeholdt Owncloud" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Navn" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Størrelse" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Ændret" @@ -287,45 +287,45 @@ msgstr "Mappe" msgid "From link" msgstr "Fra link" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "Slettede filer" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Fortryd upload" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "Du har ikke skriverettigheder her." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Her er tomt. Upload noget!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Download" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Fjern deling" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "Upload er for stor" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Filerne, du prøver at uploade, er større end den maksimale størrelse for fil-upload på denne server." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Filerne bliver indlæst, vent venligst." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Indlæser" diff --git a/l10n/da/files_sharing.po b/l10n/da/files_sharing.po index 5b5cbad702..a849b738d7 100644 --- a/l10n/da/files_sharing.po +++ b/l10n/da/files_sharing.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Sappe , 2013 +# Sappe, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 15:40+0000\n" -"Last-Translator: Sappe \n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,6 +30,30 @@ msgstr "Kodeord" msgid "Submit" msgstr "Send" +#: 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:15 #, php-format msgid "%s shared the folder %s with you" diff --git a/l10n/da/lib.po b/l10n/da/lib.po index 6ca3f46281..aefbe04217 100644 --- a/l10n/da/lib.po +++ b/l10n/da/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-28 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 18:30+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: Sappe\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 0285beaf6f..123e7bf007 100644 --- a/l10n/da/user_ldap.po +++ b/l10n/da/user_ldap.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Sappe, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 16:31+0000\n" +"Last-Translator: Sappe\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -23,11 +24,11 @@ msgstr "" #: ajax/deleteConfiguration.php:34 msgid "Failed to delete the server configuration" -msgstr "" +msgstr "Kunne ikke slette server konfigurationen" #: ajax/testConfiguration.php:36 msgid "The configuration is valid and the connection could be established!" -msgstr "" +msgstr "Konfigurationen er korrekt og forbindelsen kunne etableres!" #: ajax/testConfiguration.php:39 msgid "" @@ -39,7 +40,7 @@ msgstr "" msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." -msgstr "" +msgstr "Konfigurationen er ugyldig. Se venligst ownCloud loggen for yderligere detaljer." #: js/settings.js:66 msgid "Deletion failed" @@ -51,11 +52,11 @@ msgstr "" #: js/settings.js:83 msgid "Keep settings?" -msgstr "" +msgstr "Behold indstillinger?" #: js/settings.js:97 msgid "Cannot add server configuration" -msgstr "" +msgstr "Kan ikke tilføje serverkonfiguration" #: js/settings.js:111 msgid "mappings cleared" @@ -71,19 +72,19 @@ msgstr "Fejl" #: js/settings.js:141 msgid "Connection test succeeded" -msgstr "" +msgstr "Forbindelsestest lykkedes" #: js/settings.js:146 msgid "Connection test failed" -msgstr "" +msgstr "Forbindelsestest mislykkedes" #: js/settings.js:156 msgid "Do you really want to delete the current Server Configuration?" -msgstr "" +msgstr "Ønsker du virkelig at slette den nuværende Server Konfiguration?" #: js/settings.js:157 msgid "Confirm Deletion" -msgstr "" +msgstr "Bekræft Sletning" #: templates/settings.php:9 msgid "" @@ -100,11 +101,11 @@ msgstr "" #: templates/settings.php:16 msgid "Server configuration" -msgstr "" +msgstr "Server konfiguration" #: templates/settings.php:32 msgid "Add Server Configuration" -msgstr "" +msgstr "Tilføj Server Konfiguration" #: templates/settings.php:37 msgid "Host" @@ -172,7 +173,7 @@ msgstr "Definere filteret der bruges ved indlæsning af brugere." #: templates/settings.php:60 msgid "without any placeholder, e.g. \"objectClass=person\"." -msgstr "" +msgstr "Uden stedfortræder, f.eks. \"objectClass=person\"." #: templates/settings.php:61 msgid "Group Filter" @@ -184,15 +185,15 @@ msgstr "Definere filteret der bruges når der indlæses grupper." #: templates/settings.php:65 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." -msgstr "" +msgstr "Uden stedfortræder, f.eks. \"objectClass=posixGroup\"." #: templates/settings.php:69 msgid "Connection Settings" -msgstr "" +msgstr "Forbindelsesindstillinger " #: templates/settings.php:71 msgid "Configuration Active" -msgstr "" +msgstr "Konfiguration Aktiv" #: templates/settings.php:71 msgid "When unchecked, this configuration will be skipped." @@ -204,7 +205,7 @@ msgstr "Port" #: templates/settings.php:73 msgid "Backup (Replica) Host" -msgstr "" +msgstr "Backup (Replika) Vært" #: templates/settings.php:73 msgid "" @@ -214,15 +215,15 @@ msgstr "" #: templates/settings.php:74 msgid "Backup (Replica) Port" -msgstr "" +msgstr "Backup (Replika) Port" #: templates/settings.php:75 msgid "Disable Main Server" -msgstr "" +msgstr "Deaktiver Hovedserver" #: templates/settings.php:75 msgid "Only connect to the replica server." -msgstr "" +msgstr "Forbind kun til replika serveren." #: templates/settings.php:76 msgid "Use TLS" @@ -230,7 +231,7 @@ msgstr "Brug TLS" #: templates/settings.php:76 msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "" +msgstr "Benyt ikke flere LDAPS forbindelser, det vil mislykkeds. " #: templates/settings.php:77 msgid "Case insensitve LDAP server (Windows)" @@ -329,7 +330,7 @@ msgstr "i bytes" #: templates/settings.php:95 msgid "Email Field" -msgstr "" +msgstr "Email Felt" #: templates/settings.php:96 msgid "User Home Folder Naming Rule" @@ -343,7 +344,7 @@ msgstr "" #: templates/settings.php:101 msgid "Internal Username" -msgstr "" +msgstr "Internt Brugernavn" #: templates/settings.php:102 msgid "" @@ -412,7 +413,7 @@ msgstr "" #: templates/settings.php:111 msgid "Test Configuration" -msgstr "" +msgstr "Test Konfiguration" #: templates/settings.php:111 msgid "Help" diff --git a/l10n/de/core.po b/l10n/de/core.po index b6ea04d4be..be3e99d64e 100644 --- a/l10n/de/core.po +++ b/l10n/de/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 09:40+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: Mario Siegmann \n" "Language-Team: German \n" "MIME-Version: 1.0\n" @@ -233,7 +233,7 @@ msgstr "Der Objekttyp ist nicht angegeben." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Fehler" @@ -253,7 +253,7 @@ msgstr "Geteilt" msgid "Share" msgstr "Teilen" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Fehler beim Teilen" @@ -353,23 +353,23 @@ msgstr "löschen" msgid "share" msgstr "teilen" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Durch ein Passwort geschützt" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Fehler beim Entfernen des Ablaufdatums" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Fehler beim Setzen des Ablaufdatums" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "Sende ..." -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "E-Mail wurde verschickt" @@ -468,7 +468,7 @@ msgstr "Hilfe" msgid "Access forbidden" msgstr "Zugriff verboten" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Cloud nicht gefunden" diff --git a/l10n/de/files.po b/l10n/de/files.po index 0d09722c43..f4ddfb57c1 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" @@ -124,7 +124,7 @@ msgstr "Teilen" msgid "Delete permanently" msgstr "Endgültig löschen" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Löschen" @@ -132,7 +132,7 @@ msgstr "Löschen" msgid "Rename" msgstr "Umbenennen" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Ausstehend" @@ -164,11 +164,11 @@ msgstr "rückgängig machen" msgid "perform delete operation" msgstr "Löschvorgang ausführen" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 Datei wird hochgeladen" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "Dateien werden hoch geladen" @@ -204,15 +204,15 @@ msgstr "Dein Download wird vorbereitet. Dies kann bei größeren Dateien etwas d msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Ungültiger Verzeichnisname. Die Nutzung von \"Shared\" ist ownCloud vorbehalten." -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Name" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Größe" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Geändert" @@ -289,45 +289,45 @@ msgstr "Ordner" msgid "From link" msgstr "Von einem Link" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "Gelöschte Dateien" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Upload abbrechen" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "Du hast hier keine Schreib-Berechtigung." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Alles leer. Lade etwas hoch!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Herunterladen" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Freigabe aufheben" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "Der Upload ist zu groß" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Die Datei überschreitet die Maximalgröße für Uploads auf diesem Server." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Dateien werden gescannt, bitte warten." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Scanne" diff --git a/l10n/de/files_sharing.po b/l10n/de/files_sharing.po index 8ca2975823..5c73909052 100644 --- a/l10n/de/files_sharing.po +++ b/l10n/de/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" -"Last-Translator: Pwnicorn \n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,28 +30,52 @@ msgstr "Passwort" msgid "Submit" msgstr "Absenden" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s hat den Ordner %s mit Dir geteilt" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s hat die Datei %s mit Dir geteilt" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Download" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Hochladen" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Upload abbrechen" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Es ist keine Vorschau verfügbar für" diff --git a/l10n/de/files_trashbin.po b/l10n/de/files_trashbin.po index 100d4b686b..e18f6c8e8c 100644 --- a/l10n/de/files_trashbin.po +++ b/l10n/de/files_trashbin.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Mario Siegmann , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 16:42+0000\n" +"Last-Translator: Mario Siegmann \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -69,7 +70,7 @@ msgstr "{count} Dateien" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" -msgstr "" +msgstr "Wiederhergestellt" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" diff --git a/l10n/de/lib.po b/l10n/de/lib.po index 385b7e941c..21052b6f83 100644 --- a/l10n/de/lib.po +++ b/l10n/de/lib.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-24 15:30+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: Mario Siegmann \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/user_ldap.po b/l10n/de/user_ldap.po index a7ea39ff99..849befa1d9 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-29 01:56-0400\n" -"PO-Revision-Date: 2013-07-28 16:00+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: Mario Siegmann \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/core.po b/l10n/de_DE/core.po index 41273fc676..620585599a 100644 --- a/l10n/de_DE/core.po +++ b/l10n/de_DE/core.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 09:40+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: Mario Siegmann \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" @@ -232,7 +232,7 @@ msgstr "Der Objekttyp ist nicht angegeben." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Fehler" @@ -252,7 +252,7 @@ msgstr "Geteilt" msgid "Share" msgstr "Teilen" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Fehler beim Teilen" @@ -352,23 +352,23 @@ msgstr "löschen" msgid "share" msgstr "teilen" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Passwortgeschützt" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Fehler beim Entfernen des Ablaufdatums" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Fehler beim Setzen des Ablaufdatums" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "Sende ..." -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "Email gesendet" @@ -467,7 +467,7 @@ msgstr "Hilfe" msgid "Access forbidden" msgstr "Zugriff verboten" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Cloud wurde nicht gefunden" diff --git a/l10n/de_DE/files.po b/l10n/de_DE/files.po index 335e18d400..bf0b8666ab 100644 --- a/l10n/de_DE/files.po +++ b/l10n/de_DE/files.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" @@ -127,7 +127,7 @@ msgstr "Teilen" msgid "Delete permanently" msgstr "Endgültig löschen" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Löschen" @@ -135,7 +135,7 @@ msgstr "Löschen" msgid "Rename" msgstr "Umbenennen" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Ausstehend" @@ -167,11 +167,11 @@ msgstr "rückgängig machen" msgid "perform delete operation" msgstr "Löschvorgang ausführen" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 Datei wird hochgeladen" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "Dateien werden hoch geladen" @@ -207,15 +207,15 @@ msgstr "Ihr Download wird vorbereitet. Dies kann bei größeren Dateien etwas da msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Ungültiger Verzeichnisname. Die Nutzung von \"Shared\" ist ownCloud vorbehalten" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Name" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Größe" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Geändert" @@ -292,45 +292,45 @@ msgstr "Ordner" msgid "From link" msgstr "Von einem Link" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "Gelöschte Dateien" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Upload abbrechen" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "Sie haben hier keine Schreib-Berechtigungen." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Alles leer. Laden Sie etwas hoch!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Herunterladen" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Freigabe aufheben" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "Der Upload ist zu groß" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Die Datei überschreitet die Maximalgröße für Uploads auf diesem Server." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Dateien werden gescannt, bitte warten." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Scanne" diff --git a/l10n/de_DE/files_sharing.po b/l10n/de_DE/files_sharing.po index 7b10322cb5..533360cd7f 100644 --- a/l10n/de_DE/files_sharing.po +++ b/l10n/de_DE/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" -"Last-Translator: JamFX \n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,28 +30,52 @@ msgstr "Passwort" msgid "Submit" msgstr "Bestätigen" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s hat den Ordner %s mit Ihnen geteilt" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s hat die Datei %s mit Ihnen geteilt" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Herunterladen" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Hochladen" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Upload abbrechen" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Es ist keine Vorschau verfügbar für" diff --git a/l10n/de_DE/files_trashbin.po b/l10n/de_DE/files_trashbin.po index 249c002567..a4e20c8129 100644 --- a/l10n/de_DE/files_trashbin.po +++ b/l10n/de_DE/files_trashbin.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Mario Siegmann , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 16:42+0000\n" +"Last-Translator: Mario Siegmann \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -69,7 +70,7 @@ msgstr "{count} Dateien" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" -msgstr "" +msgstr "Wiederhergestellt" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" diff --git a/l10n/de_DE/lib.po b/l10n/de_DE/lib.po index e6b3c139bc..484c8ff3ab 100644 --- a/l10n/de_DE/lib.po +++ b/l10n/de_DE/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-24 15:30+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: Mario Siegmann \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/user_ldap.po b/l10n/de_DE/user_ldap.po index 8dd1d4905f..c5b9e86c3a 100644 --- a/l10n/de_DE/user_ldap.po +++ b/l10n/de_DE/user_ldap.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-29 01:56-0400\n" -"PO-Revision-Date: 2013-07-28 16:00+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: Mario Siegmann \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/el/core.po b/l10n/el/core.po index 59ed3f8890..7269021fb8 100644 --- a/l10n/el/core.po +++ b/l10n/el/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -233,7 +233,7 @@ msgstr "Δεν καθορίστηκε ο τύπος του αντικειμέν #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Σφάλμα" @@ -253,7 +253,7 @@ msgstr "Κοινόχρηστα" msgid "Share" msgstr "Διαμοιρασμός" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Σφάλμα κατά τον διαμοιρασμό" @@ -353,23 +353,23 @@ msgstr "διαγραφή" msgid "share" msgstr "διαμοιρασμός" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Προστασία με συνθηματικό" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Σφάλμα κατά την διαγραφή της ημ. λήξης" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Σφάλμα κατά τον ορισμό ημ. λήξης" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "Αποστολή..." -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "Το Email απεστάλη " @@ -468,7 +468,7 @@ msgstr "Βοήθεια" msgid "Access forbidden" msgstr "Δεν επιτρέπεται η πρόσβαση" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Δεν βρέθηκε νέφος" diff --git a/l10n/el/files.po b/l10n/el/files.po index 7b76ec92ee..c1b8a30a17 100644 --- a/l10n/el/files.po +++ b/l10n/el/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 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" @@ -121,7 +121,7 @@ msgstr "Διαμοιρασμός" msgid "Delete permanently" msgstr "Μόνιμη διαγραφή" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Διαγραφή" @@ -129,7 +129,7 @@ msgstr "Διαγραφή" msgid "Rename" msgstr "Μετονομασία" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Εκκρεμεί" @@ -161,11 +161,11 @@ msgstr "αναίρεση" msgid "perform delete operation" msgstr "εκτέλεση της διαδικασίας διαγραφής" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 αρχείο ανεβαίνει" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "αρχεία ανεβαίνουν" @@ -201,15 +201,15 @@ msgstr "Η λήψη προετοιμάζεται. Αυτό μπορεί να π msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Μη έγκυρο όνομα φακέλου. Η χρήση του 'Κοινόχρηστος' χρησιμοποιείται από ο Owncloud" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Όνομα" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Μέγεθος" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Τροποποιήθηκε" @@ -286,45 +286,45 @@ msgstr "Φάκελος" msgid "From link" msgstr "Από σύνδεσμο" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "Διαγραμμένα αρχεία" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Ακύρωση αποστολής" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "Δεν έχετε δικαιώματα εγγραφής εδώ." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Δεν υπάρχει τίποτα εδώ. Ανεβάστε κάτι!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Λήψη" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Σταμάτημα διαμοιρασμού" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "Πολύ μεγάλο αρχείο προς αποστολή" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Τα αρχεία που προσπαθείτε να ανεβάσετε υπερβαίνουν το μέγιστο μέγεθος αποστολής αρχείων σε αυτόν τον διακομιστή." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Τα αρχεία σαρώνονται, παρακαλώ περιμένετε." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Τρέχουσα ανίχνευση" diff --git a/l10n/el/files_sharing.po b/l10n/el/files_sharing.po index a307bdbb8b..69db46394c 100644 --- a/l10n/el/files_sharing.po +++ b/l10n/el/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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,28 +29,52 @@ msgstr "Συνθηματικό" msgid "Submit" msgstr "Καταχώρηση" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s μοιράστηκε τον φάκελο %s μαζί σας" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s μοιράστηκε το αρχείο %s μαζί σας" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Λήψη" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Μεταφόρτωση" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Ακύρωση αποστολής" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Δεν υπάρχει διαθέσιμη προεπισκόπηση για" diff --git a/l10n/el/lib.po b/l10n/el/lib.po index 47a64c5511..d323798d0e 100644 --- a/l10n/el/lib.po +++ b/l10n/el/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -47,7 +47,7 @@ msgstr "Διαχειριστής" msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "υπηρεσίες δικτύου υπό τον έλεγχό σας" @@ -258,7 +258,7 @@ msgstr "τελευταίο χρόνο" msgid "years ago" msgstr "χρόνια πριν" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/el/user_ldap.po b/l10n/el/user_ldap.po index 05ce6737e6..9b8fe33a4b 100644 --- a/l10n/el/user_ldap.po +++ b/l10n/el/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/en@pirate/files.po b/l10n/en@pirate/files.po index 740b446364..d820894286 100644 --- a/l10n/en@pirate/files.po +++ b/l10n/en@pirate/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:41+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" @@ -120,7 +120,7 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "" @@ -128,7 +128,7 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "" @@ -160,11 +160,11 @@ msgstr "" msgid "perform delete operation" msgstr "" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "" @@ -200,15 +200,15 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "" @@ -285,45 +285,45 @@ msgstr "" msgid "From link" msgstr "" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Download" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "" diff --git a/l10n/en@pirate/files_sharing.po b/l10n/en@pirate/files_sharing.po index 8fae1af4ef..0c43f6a051 100644 --- a/l10n/en@pirate/files_sharing.po +++ b/l10n/en@pirate/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -30,28 +30,52 @@ msgstr "Secret Code" msgid "Submit" msgstr "Submit" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s shared the folder %s with you" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s shared the file %s with you" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Download" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "No preview available for" diff --git a/l10n/eo/core.po b/l10n/eo/core.po index 48bfcc7c8b..3cdd5ac74b 100644 --- a/l10n/eo/core.po +++ b/l10n/eo/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -228,7 +228,7 @@ msgstr "Ne indikiĝis tipo de la objekto." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Eraro" @@ -248,7 +248,7 @@ msgstr "Dividita" msgid "Share" msgstr "Kunhavigi" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Eraro dum kunhavigo" @@ -348,23 +348,23 @@ msgstr "forigi" msgid "share" msgstr "kunhavigi" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Protektita per pasvorto" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Eraro dum malagordado de limdato" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Eraro dum agordado de limdato" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "Sendante..." -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "La retpoŝtaĵo sendiĝis" @@ -463,7 +463,7 @@ msgstr "Helpo" msgid "Access forbidden" msgstr "Aliro estas malpermesata" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "La nubo ne estas trovita" diff --git a/l10n/eo/files.po b/l10n/eo/files.po index da2b56bf10..3d476702c3 100644 --- a/l10n/eo/files.po +++ b/l10n/eo/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 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" @@ -121,7 +121,7 @@ msgstr "Kunhavigi" msgid "Delete permanently" msgstr "Forigi por ĉiam" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Forigi" @@ -129,7 +129,7 @@ msgstr "Forigi" msgid "Rename" msgstr "Alinomigi" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Traktotaj" @@ -161,11 +161,11 @@ msgstr "malfari" msgid "perform delete operation" msgstr "plenumi forigan operacion" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 dosiero estas alŝutata" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "dosieroj estas alŝutataj" @@ -201,15 +201,15 @@ msgstr "Via elŝuto pretiĝatas. Ĉi tio povas daŭri iom da tempo se la dosiero msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nevalida dosierujnomo. Uzo de “Shared” rezervatas de Owncloud." -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Nomo" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Grando" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Modifita" @@ -286,45 +286,45 @@ msgstr "Dosierujo" msgid "From link" msgstr "El ligilo" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "Forigitaj dosieroj" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Nuligi alŝuton" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "Vi ne havas permeson skribi ĉi tie." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Nenio estas ĉi tie. Alŝutu ion!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Elŝuti" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Malkunhavigi" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "Alŝuto tro larĝa" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "La dosieroj, kiujn vi provas alŝuti, transpasas la maksimuman grandon por dosieralŝutoj en ĉi tiu servilo." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Dosieroj estas skanataj, bonvolu atendi." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Nuna skano" diff --git a/l10n/eo/files_sharing.po b/l10n/eo/files_sharing.po index 84941f5630..c66399b2a6 100644 --- a/l10n/eo/files_sharing.po +++ b/l10n/eo/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -29,28 +29,52 @@ msgstr "Pasvorto" msgid "Submit" msgstr "Sendi" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s kunhavigis la dosierujon %s kun vi" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s kunhavigis la dosieron %s kun vi" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Elŝuti" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Alŝuti" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Nuligi alŝuton" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Ne haveblas antaŭvido por" diff --git a/l10n/eo/lib.po b/l10n/eo/lib.po index 60028aadc8..72bd41c450 100644 --- a/l10n/eo/lib.po +++ b/l10n/eo/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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,7 +47,7 @@ msgstr "Administranto" msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "TTT-servoj regataj de vi" @@ -258,7 +258,7 @@ msgstr "lastajare" msgid "years ago" msgstr "jaroj antaŭe" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/eo/user_ldap.po b/l10n/eo/user_ldap.po index 7c3f90fac3..68d47eba35 100644 --- a/l10n/eo/user_ldap.po +++ b/l10n/eo/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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 eafc2f50f6..f121edd4a2 100644 --- a/l10n/es/core.po +++ b/l10n/es/core.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 17:30+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: pablomillaquen \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" @@ -234,7 +234,7 @@ msgstr "El tipo de objeto no está especificado." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Error" @@ -254,7 +254,7 @@ msgstr "Compartido" msgid "Share" msgstr "Compartir" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Error mientras comparte" @@ -354,23 +354,23 @@ msgstr "eliminar" msgid "share" msgstr "compartir" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Protegido con contraseña" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Error eliminando fecha de caducidad" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Error estableciendo fecha de caducidad" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "Enviando..." -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "Correo electrónico enviado" @@ -469,7 +469,7 @@ msgstr "Ayuda" msgid "Access forbidden" msgstr "Acceso prohibido" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "No se encuentra la nube" diff --git a/l10n/es/files.po b/l10n/es/files.po index 76f2641b27..66676ffbc8 100644 --- a/l10n/es/files.po +++ b/l10n/es/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:41+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" @@ -125,7 +125,7 @@ msgstr "Compartir" msgid "Delete permanently" msgstr "Eliminar permanentemente" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Eliminar" @@ -133,7 +133,7 @@ msgstr "Eliminar" msgid "Rename" msgstr "Renombrar" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Pendiente" @@ -165,11 +165,11 @@ msgstr "deshacer" msgid "perform delete operation" msgstr "Realizar operación de borrado" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "subiendo 1 archivo" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "subiendo archivos" @@ -205,15 +205,15 @@ msgstr "Su descarga está siendo preparada. Esto puede tardar algún tiempo si l msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nombre de carpeta no es válido. El uso de \"Shared\" está reservado por Owncloud" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Nombre" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Tamaño" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Modificado" @@ -290,45 +290,45 @@ msgstr "Carpeta" msgid "From link" msgstr "Desde enlace" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "Archivos eliminados" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Cancelar subida" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "No tiene permisos de escritura aquí." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "No hay nada aquí. ¡Suba algo!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Descargar" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Dejar de compartir" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "Subida demasido grande" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Los archivos que estás intentando subir sobrepasan el tamaño máximo permitido en este servidor." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Los archivos están siendo escaneados, por favor espere." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Escaneo actual" diff --git a/l10n/es/files_sharing.po b/l10n/es/files_sharing.po index 6aaaffdefa..d9673bd20f 100644 --- a/l10n/es/files_sharing.po +++ b/l10n/es/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" -"Last-Translator: Korrosivo \n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -30,28 +30,52 @@ msgstr "Contraseña" msgid "Submit" msgstr "Enviar" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s compartió la carpeta %s contigo" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s compartió el fichero %s contigo" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Descargar" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Subir" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Cancelar subida" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "No hay vista previa disponible para" diff --git a/l10n/es/files_trashbin.po b/l10n/es/files_trashbin.po index 4ab3533b60..e3ed8dcb35 100644 --- a/l10n/es/files_trashbin.po +++ b/l10n/es/files_trashbin.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Art O. Pal , 2013 # Korrosivo , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 18:40+0000\n" +"Last-Translator: Art O. Pal \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -70,7 +71,7 @@ msgstr "{count} archivos" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" -msgstr "" +msgstr "recuperado" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" diff --git a/l10n/es/lib.po b/l10n/es/lib.po index 9c16a30b4d..1c79d179b6 100644 --- a/l10n/es/lib.po +++ b/l10n/es/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 17:30+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: pablomillaquen \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 4b2d6d6249..4dec487073 100644 --- a/l10n/es/user_ldap.po +++ b/l10n/es/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/core.po b/l10n/es_AR/core.po index 7bcbd0813c..94bf304700 100644 --- a/l10n/es_AR/core.po +++ b/l10n/es_AR/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -227,7 +227,7 @@ msgstr "El tipo de objeto no está especificado. " #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Error" @@ -247,7 +247,7 @@ msgstr "Compartido" msgid "Share" msgstr "Compartir" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Error al compartir" @@ -347,23 +347,23 @@ msgstr "borrar" msgid "share" msgstr "compartir" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Protegido por contraseña" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Error al remover la fecha de vencimiento" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Error al asignar fecha de vencimiento" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "Mandando..." -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "e-mail mandado" @@ -462,7 +462,7 @@ msgstr "Ayuda" msgid "Access forbidden" msgstr "Acceso prohibido" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "No se encontró ownCloud" diff --git a/l10n/es_AR/files.po b/l10n/es_AR/files.po index f85b60d745..0353e62077 100644 --- a/l10n/es_AR/files.po +++ b/l10n/es_AR/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 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" @@ -122,7 +122,7 @@ msgstr "Compartir" msgid "Delete permanently" msgstr "Borrar permanentemente" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Borrar" @@ -130,7 +130,7 @@ msgstr "Borrar" msgid "Rename" msgstr "Cambiar nombre" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Pendientes" @@ -162,11 +162,11 @@ msgstr "deshacer" msgid "perform delete operation" msgstr "Llevar a cabo borrado" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "Subiendo 1 archivo" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "Subiendo archivos" @@ -202,15 +202,15 @@ msgstr "Tu descarga se está preparando. Esto puede demorar si los archivos son msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nombre de carpeta inválido. El uso de 'Shared' está reservado por ownCloud" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Nombre" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Tamaño" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Modificado" @@ -287,45 +287,45 @@ msgstr "Carpeta" msgid "From link" msgstr "Desde enlace" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "Archivos borrados" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Cancelar subida" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "No tenés permisos de escritura acá." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "No hay nada. ¡Subí contenido!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Descargar" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Dejar de compartir" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "El tamaño del archivo que querés subir es demasiado grande" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Los archivos que intentás subir sobrepasan el tamaño máximo " -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Se están escaneando los archivos, por favor esperá." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Escaneo actual" diff --git a/l10n/es_AR/files_sharing.po b/l10n/es_AR/files_sharing.po index c5f5deb302..3c16c14114 100644 --- a/l10n/es_AR/files_sharing.po +++ b/l10n/es_AR/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" -"Last-Translator: cjtess \n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,28 +30,52 @@ msgstr "Contraseña" msgid "Submit" msgstr "Enviar" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s compartió la carpeta %s con vos" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s compartió el archivo %s con vos" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Descargar" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Subir" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Cancelar subida" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "La vista preliminar no está disponible para" diff --git a/l10n/es_AR/lib.po b/l10n/es_AR/lib.po index fa6c2467e9..06e8c040a6 100644 --- a/l10n/es_AR/lib.po +++ b/l10n/es_AR/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-24 15:30+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: cjtess \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/user_ldap.po b/l10n/es_AR/user_ldap.po index a78e6c2e49..82d48a7e1b 100644 --- a/l10n/es_AR/user_ldap.po +++ b/l10n/es_AR/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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/et_EE/core.po b/l10n/et_EE/core.po index 53d2e6127b..1a87d829d2 100644 --- a/l10n/et_EE/core.po +++ b/l10n/et_EE/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 08:30+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: pisike.sipelgas \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -228,7 +228,7 @@ msgstr "Objekti tüüp pole määratletud." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Viga" @@ -248,7 +248,7 @@ msgstr "Jagatud" msgid "Share" msgstr "Jaga" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Viga jagamisel" @@ -348,23 +348,23 @@ msgstr "kustuta" msgid "share" msgstr "jaga" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Parooliga kaitstud" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Viga aegumise kuupäeva eemaldamisel" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Viga aegumise kuupäeva määramisel" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "Saatmine ..." -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "E-kiri on saadetud" @@ -463,7 +463,7 @@ msgstr "Abiinfo" msgid "Access forbidden" msgstr "Ligipääs on keelatud" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Pilve ei leitud" diff --git a/l10n/et_EE/files.po b/l10n/et_EE/files.po index 4f6132eeb3..f516fc66a0 100644 --- a/l10n/et_EE/files.po +++ b/l10n/et_EE/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 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" @@ -122,7 +122,7 @@ msgstr "Jaga" msgid "Delete permanently" msgstr "Kustuta jäädavalt" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Kustuta" @@ -130,7 +130,7 @@ msgstr "Kustuta" msgid "Rename" msgstr "Nimeta ümber" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Ootel" @@ -162,11 +162,11 @@ msgstr "tagasi" msgid "perform delete operation" msgstr "teosta kustutamine" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 fail üleslaadimisel" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "faili üleslaadimisel" @@ -202,15 +202,15 @@ msgstr "Valmistatakse allalaadimist. See võib võtta veidi aega, kui on tegu su msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Vigane kataloogi nimi. 'Shared' kasutamine on reserveeritud ownCloud poolt." -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Nimi" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Suurus" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Muudetud" @@ -287,45 +287,45 @@ msgstr "Kaust" msgid "From link" msgstr "Allikast" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "Kustutatud failid" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Tühista üleslaadimine" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "Siin puudvad sul kirjutamisõigused." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Siin pole midagi. Lae midagi üles!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Lae alla" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Lõpeta jagamine" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "Üleslaadimine on liiga suur" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Failid, mida sa proovid üles laadida, ületab serveri poolt üleslaetavatele failidele määratud maksimaalse suuruse." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Faile skannitakse, palun oota." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Praegune skannimine" diff --git a/l10n/et_EE/files_sharing.po b/l10n/et_EE/files_sharing.po index 42361100f7..fce075d224 100644 --- a/l10n/et_EE/files_sharing.po +++ b/l10n/et_EE/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" -"Last-Translator: Rivo Zängov \n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -30,28 +30,52 @@ msgstr "Parool" msgid "Submit" msgstr "Saada" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s jagas sinuga kausta %s" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s jagas sinuga faili %s" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Lae alla" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Lae üles" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Tühista üleslaadimine" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Eelvaadet pole saadaval" diff --git a/l10n/et_EE/lib.po b/l10n/et_EE/lib.po index 98146ef225..99e2c16249 100644 --- a/l10n/et_EE/lib.po +++ b/l10n/et_EE/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 08:40+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: pisike.sipelgas \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/user_ldap.po b/l10n/et_EE/user_ldap.po index 10fdbed025..7a5b2570f2 100644 --- a/l10n/et_EE/user_ldap.po +++ b/l10n/et_EE/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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 5c3082a80b..1f660f0642 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-28 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 07:20+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: asieriko \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -228,7 +228,7 @@ msgstr "Objetu mota ez dago zehaztuta." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Errorea" @@ -248,7 +248,7 @@ msgstr "Elkarbanatuta" msgid "Share" msgstr "Elkarbanatu" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Errore bat egon da elkarbanatzean" @@ -348,23 +348,23 @@ msgstr "ezabatu" msgid "share" msgstr "elkarbanatu" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Pasahitzarekin babestuta" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Errorea izan da muga data kentzean" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Errore bat egon da muga data ezartzean" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "Bidaltzen ..." -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "Eposta bidalia" @@ -463,7 +463,7 @@ msgstr "Laguntza" msgid "Access forbidden" msgstr "Sarrera debekatuta" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Ez da hodeia aurkitu" diff --git a/l10n/eu/files.po b/l10n/eu/files.po index f740c546a4..beb0bcad9f 100644 --- a/l10n/eu/files.po +++ b/l10n/eu/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 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" @@ -121,7 +121,7 @@ msgstr "Elkarbanatu" msgid "Delete permanently" msgstr "Ezabatu betirako" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Ezabatu" @@ -129,7 +129,7 @@ msgstr "Ezabatu" msgid "Rename" msgstr "Berrizendatu" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Zain" @@ -161,11 +161,11 @@ msgstr "desegin" msgid "perform delete operation" msgstr "Ezabatu" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "fitxategi 1 igotzen" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "fitxategiak igotzen" @@ -201,15 +201,15 @@ msgstr "Zure deskarga prestatu egin behar da. Denbora bat har lezake fitxategiak msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Baliogabeako karpeta izena. 'Shared' izena Owncloudek erreserbatzen du" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Izena" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Tamaina" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Aldatuta" @@ -286,45 +286,45 @@ msgstr "Karpeta" msgid "From link" msgstr "Estekatik" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "Ezabatutako fitxategiak" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Ezeztatu igoera" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "Ez duzu hemen idazteko baimenik." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Ez dago ezer. Igo zerbait!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Deskargatu" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Ez elkarbanatu" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "Igoera handiegia da" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Igotzen saiatzen ari zaren fitxategiak zerbitzari honek igotzeko onartzen duena baino handiagoak dira." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Fitxategiak eskaneatzen ari da, itxoin mezedez." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Orain eskaneatzen ari da" diff --git a/l10n/eu/files_sharing.po b/l10n/eu/files_sharing.po index f2ce11b7ce..9629a3e461 100644 --- a/l10n/eu/files_sharing.po +++ b/l10n/eu/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-28 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 07:20+0000\n" -"Last-Translator: asieriko \n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,6 +30,30 @@ msgstr "Pasahitza" msgid "Submit" msgstr "Bidali" +#: 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:15 #, php-format msgid "%s shared the folder %s with you" diff --git a/l10n/eu/lib.po b/l10n/eu/lib.po index d91ea3a966..06423f2d25 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-28 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 08:00+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: asieriko \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 70f4858412..002bc4dfdb 100644 --- a/l10n/eu/user_ldap.po +++ b/l10n/eu/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-28 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 15:30+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: asieriko \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 8909d8750f..9cfd8ce084 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -227,7 +227,7 @@ msgstr "نوع شی تعیین نشده است." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "خطا" @@ -247,7 +247,7 @@ msgstr "اشتراک گذاشته شده" msgid "Share" msgstr "اشتراک‌گذاری" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "خطا درحال به اشتراک گذاشتن" @@ -347,23 +347,23 @@ msgstr "پاک کردن" msgid "share" msgstr "به اشتراک گذاشتن" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "نگهداری از رمز عبور" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "خطا در تنظیم نکردن تاریخ انقضا " -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "خطا در تنظیم تاریخ انقضا" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "درحال ارسال ..." -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "ایمیل ارسال شد" @@ -462,7 +462,7 @@ msgstr "راه‌نما" msgid "Access forbidden" msgstr "اجازه دسترسی به مناطق ممنوعه را ندارید" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "پیدا نشد" diff --git a/l10n/fa/files.po b/l10n/fa/files.po index 76429a8c3b..c852569485 100644 --- a/l10n/fa/files.po +++ b/l10n/fa/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 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" @@ -121,7 +121,7 @@ msgstr "اشتراک‌گذاری" msgid "Delete permanently" msgstr "حذف قطعی" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "حذف" @@ -129,7 +129,7 @@ msgstr "حذف" msgid "Rename" msgstr "تغییرنام" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "در انتظار" @@ -161,11 +161,11 @@ msgstr "بازگشت" msgid "perform delete operation" msgstr "انجام عمل حذف" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 پرونده آپلود شد." -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "بارگذاری فایل ها" @@ -201,15 +201,15 @@ msgstr "دانلود شما در حال آماده شدن است. در صورت msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "نام پوشه نامعتبر است. استفاده از \" به اشتراک گذاشته شده \" متعلق به سایت Owncloud است." -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "نام" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "اندازه" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "تاریخ" @@ -286,45 +286,45 @@ msgstr "پوشه" msgid "From link" msgstr "از پیوند" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "فایل های حذف شده" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "متوقف کردن بار گذاری" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "شما اجازه ی نوشتن در اینجا را ندارید" -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "اینجا هیچ چیز نیست." -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "دانلود" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "لغو اشتراک" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "سایز فایل برای آپلود زیاد است(م.تنظیمات در php.ini)" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "فایلها بیش از حد تعیین شده در این سرور هستند\nمترجم:با تغییر فایل php,ini میتوان این محدودیت را برطرف کرد" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "پرونده ها در حال بازرسی هستند لطفا صبر کنید" -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "بازرسی کنونی" diff --git a/l10n/fa/files_sharing.po b/l10n/fa/files_sharing.po index 76c7865d81..a7d90d416c 100644 --- a/l10n/fa/files_sharing.po +++ b/l10n/fa/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" -"Last-Translator: miki_mika1362 \n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,28 +30,52 @@ msgstr "گذرواژه" msgid "Submit" msgstr "ثبت" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%sپوشه %s را با شما به اشتراک گذاشت" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%sفایل %s را با شما به اشتراک گذاشت" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "دانلود" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "بارگزاری" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "متوقف کردن بار گذاری" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "هیچگونه پیش نمایشی موجود نیست" diff --git a/l10n/fa/lib.po b/l10n/fa/lib.po index ecfe7c69a3..3c8ebb5e49 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -47,7 +47,7 @@ msgstr "مدیر" msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "سرویس های تحت وب در کنترل شما" @@ -258,7 +258,7 @@ msgstr "سال قبل" msgid "years ago" msgstr "سال‌های قبل" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/fa/user_ldap.po b/l10n/fa/user_ldap.po index 07127fe3c0..4d5bfef0de 100644 --- a/l10n/fa/user_ldap.po +++ b/l10n/fa/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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 6bee44d190..09db5dddc5 100644 --- a/l10n/fi_FI/core.po +++ b/l10n/fi_FI/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 06:10+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: Jiri Grönroos \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -227,7 +227,7 @@ msgstr "" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Virhe" @@ -247,7 +247,7 @@ msgstr "Jaettu" msgid "Share" msgstr "Jaa" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Virhe jaettaessa" @@ -347,23 +347,23 @@ msgstr "poista" msgid "share" msgstr "jaa" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Salasanasuojattu" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Virhe purettaessa eräpäivää" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Virhe päättymispäivää asettaessa" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "Lähetetään..." -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "Sähköposti lähetetty" @@ -462,7 +462,7 @@ msgstr "Ohje" msgid "Access forbidden" msgstr "Pääsy estetty" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Pilveä ei löydy" diff --git a/l10n/fi_FI/files.po b/l10n/fi_FI/files.po index 9181d3631a..72d5809a58 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_FI/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 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" @@ -121,7 +121,7 @@ msgstr "Jaa" msgid "Delete permanently" msgstr "Poista pysyvästi" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Poista" @@ -129,7 +129,7 @@ msgstr "Poista" msgid "Rename" msgstr "Nimeä uudelleen" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Odottaa" @@ -161,11 +161,11 @@ msgstr "kumoa" msgid "perform delete operation" msgstr "suorita poistotoiminto" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "" @@ -201,15 +201,15 @@ msgstr "Lataustasi valmistellaan. Tämä saattaa kestää hetken, jos tiedostot msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Nimi" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Koko" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Muokattu" @@ -286,45 +286,45 @@ msgstr "Kansio" msgid "From link" msgstr "Linkistä" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "Poistetut tiedostot" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Peru lähetys" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "Tunnuksellasi ei ole kirjoitusoikeuksia tänne." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Täällä ei ole mitään. Lähetä tänne jotakin!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Lataa" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Peru jakaminen" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "Lähetettävä tiedosto on liian suuri" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Lähetettäväksi valitsemasi tiedostot ylittävät palvelimen salliman tiedostokoon rajan." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Tiedostoja tarkistetaan, odota hetki." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Tämänhetkinen tutkinta" diff --git a/l10n/fi_FI/files_sharing.po b/l10n/fi_FI/files_sharing.po index 317486daa3..64ef882ea6 100644 --- a/l10n/fi_FI/files_sharing.po +++ b/l10n/fi_FI/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" -"Last-Translator: Jiri Grönroos \n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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,28 +30,52 @@ msgstr "Salasana" msgid "Submit" msgstr "Lähetä" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s jakoi kansion %s kanssasi" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s jakoi tiedoston %s kanssasi" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Lataa" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Lähetä" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Peru lähetys" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Ei esikatselua kohteelle" diff --git a/l10n/fi_FI/files_trashbin.po b/l10n/fi_FI/files_trashbin.po index 463d965737..2b355bfe39 100644 --- a/l10n/fi_FI/files_trashbin.po +++ b/l10n/fi_FI/files_trashbin.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Jiri Grönroos , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 06:10+0000\n" +"Last-Translator: Jiri Grönroos \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -69,7 +70,7 @@ msgstr "{count} tiedostoa" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" -msgstr "" +msgstr "palautettu" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" diff --git a/l10n/fi_FI/lib.po b/l10n/fi_FI/lib.po index ca512563c6..e84f005d6a 100644 --- a/l10n/fi_FI/lib.po +++ b/l10n/fi_FI/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -47,7 +47,7 @@ msgstr "Ylläpitäjä" msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "verkkopalvelut hallinnassasi" @@ -258,7 +258,7 @@ msgstr "viime vuonna" msgid "years ago" msgstr "vuotta sitten" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/fi_FI/user_ldap.po b/l10n/fi_FI/user_ldap.po index fe9736f808..8dbf5fe894 100644 --- a/l10n/fi_FI/user_ldap.po +++ b/l10n/fi_FI/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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 da213b7868..5ea8804ed8 100644 --- a/l10n/fr/core.po +++ b/l10n/fr/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -231,7 +231,7 @@ msgstr "Le type d'objet n'est pas spécifié." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Erreur" @@ -251,7 +251,7 @@ msgstr "Partagé" msgid "Share" msgstr "Partager" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Erreur lors de la mise en partage" @@ -351,23 +351,23 @@ msgstr "supprimer" msgid "share" msgstr "partager" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Protégé par un mot de passe" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Une erreur est survenue pendant la suppression de la date d'expiration" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Erreur lors de la spécification de la date d'expiration" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "En cours d'envoi ..." -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "Email envoyé" @@ -466,7 +466,7 @@ msgstr "Aide" msgid "Access forbidden" msgstr "Accès interdit" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Introuvable" diff --git a/l10n/fr/files.po b/l10n/fr/files.po index 5cc9e73462..c4babaecdd 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 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" @@ -123,7 +123,7 @@ msgstr "Partager" msgid "Delete permanently" msgstr "Supprimer de façon définitive" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Supprimer" @@ -131,7 +131,7 @@ msgstr "Supprimer" msgid "Rename" msgstr "Renommer" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "En attente" @@ -163,11 +163,11 @@ msgstr "annuler" msgid "perform delete operation" msgstr "effectuer l'opération de suppression" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 fichier en cours d'envoi" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "fichiers en cours d'envoi" @@ -203,15 +203,15 @@ msgstr "Votre téléchargement est cours de préparation. Ceci peut nécessiter msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nom de dossier invalide. L'utilisation du mot 'Shared' est réservée à Owncloud" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Nom" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Taille" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Modifié" @@ -288,45 +288,45 @@ msgstr "Dossier" msgid "From link" msgstr "Depuis le lien" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "Fichiers supprimés" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Annuler l'envoi" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "Vous n'avez pas le droit d'écriture ici." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Il n'y a rien ici ! Envoyez donc quelque chose :)" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Télécharger" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Ne plus partager" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "Téléversement trop volumineux" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Les fichiers que vous essayez d'envoyer dépassent la taille maximale permise par ce serveur." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Les fichiers sont en cours d'analyse, veuillez patienter." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Analyse en cours" diff --git a/l10n/fr/files_sharing.po b/l10n/fr/files_sharing.po index 3991b7e523..4c41bc8d54 100644 --- a/l10n/fr/files_sharing.po +++ b/l10n/fr/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" -"Last-Translator: square \n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -30,28 +30,52 @@ msgstr "Mot de passe" msgid "Submit" msgstr "Envoyer" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s a partagé le répertoire %s avec vous" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s a partagé le fichier %s avec vous" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Télécharger" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Envoyer" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Annuler l'envoi" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Pas d'aperçu disponible pour" diff --git a/l10n/fr/lib.po b/l10n/fr/lib.po index dcb8bc19a2..1bd46de75e 100644 --- a/l10n/fr/lib.po +++ b/l10n/fr/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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 @@ msgstr "Administration" msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "services web sous votre contrôle" @@ -258,7 +258,7 @@ msgstr "l'année dernière" msgid "years ago" msgstr "il y a plusieurs années" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/fr/user_ldap.po b/l10n/fr/user_ldap.po index 3d914eb3c7..bcfe7e3e19 100644 --- a/l10n/fr/user_ldap.po +++ b/l10n/fr/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/core.po b/l10n/gl/core.po index 735075719c..6ad071c401 100644 --- a/l10n/gl/core.po +++ b/l10n/gl/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 08:40+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -227,7 +227,7 @@ msgstr "Non se especificou o tipo de obxecto." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Erro" @@ -247,7 +247,7 @@ msgstr "Compartir" msgid "Share" msgstr "Compartir" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Produciuse un erro ao compartir" @@ -347,23 +347,23 @@ msgstr "eliminar" msgid "share" msgstr "compartir" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Protexido con contrasinal" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Produciuse un erro ao retirar a data de caducidade" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Produciuse un erro ao definir a data de caducidade" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "Enviando..." -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "Correo enviado" @@ -462,7 +462,7 @@ msgstr "Axuda" msgid "Access forbidden" msgstr "Acceso denegado" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Nube non atopada" diff --git a/l10n/gl/files.po b/l10n/gl/files.po index b4676e5d42..79c63c3869 100644 --- a/l10n/gl/files.po +++ b/l10n/gl/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 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" @@ -121,7 +121,7 @@ msgstr "Compartir" msgid "Delete permanently" msgstr "Eliminar permanentemente" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Eliminar" @@ -129,7 +129,7 @@ msgstr "Eliminar" msgid "Rename" msgstr "Renomear" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Pendentes" @@ -161,11 +161,11 @@ msgstr "desfacer" msgid "perform delete operation" msgstr "realizar a operación de eliminación" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "Enviándose 1 ficheiro" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "ficheiros enviándose" @@ -201,15 +201,15 @@ msgstr "Está a prepararse a súa descarga. Isto pode levar bastante tempo se os msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nome de cartafol incorrecto. O uso de «Shared» está reservado por Owncloud" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Nome" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Tamaño" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Modificado" @@ -286,45 +286,45 @@ msgstr "Cartafol" msgid "From link" msgstr "Desde a ligazón" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "Ficheiros eliminados" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Cancelar o envío" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "Non ten permisos para escribir aquí." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Aquí non hai nada. Envíe algo." -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Descargar" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Deixar de compartir" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "Envío demasiado grande" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Os ficheiros que tenta enviar exceden do tamaño máximo permitido neste servidor" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Estanse analizando os ficheiros. Agarde." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Análise actual" diff --git a/l10n/gl/files_sharing.po b/l10n/gl/files_sharing.po index f2c53603c6..3a02212cd6 100644 --- a/l10n/gl/files_sharing.po +++ b/l10n/gl/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" -"Last-Translator: mbouzada \n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -30,28 +30,52 @@ msgstr "Contrasinal" msgid "Submit" msgstr "Enviar" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s compartiu o cartafol %s con vostede" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s compartiu o ficheiro %s con vostede" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Descargar" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Enviar" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Cancelar o envío" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Sen vista previa dispoñíbel para" diff --git a/l10n/gl/lib.po b/l10n/gl/lib.po index 59aeeae8ef..f3fe2b82a1 100644 --- a/l10n/gl/lib.po +++ b/l10n/gl/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-24 06:10+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/user_ldap.po b/l10n/gl/user_ldap.po index 73ad4feb1e..37342000f6 100644 --- a/l10n/gl/user_ldap.po +++ b/l10n/gl/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-28 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 11:00+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/core.po b/l10n/he/core.po index 5aab5ba861..e67ba8ad75 100644 --- a/l10n/he/core.po +++ b/l10n/he/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -227,7 +227,7 @@ msgstr "סוג הפריט לא צוין." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "שגיאה" @@ -247,7 +247,7 @@ msgstr "שותף" msgid "Share" msgstr "שתף" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "שגיאה במהלך השיתוף" @@ -347,23 +347,23 @@ msgstr "מחיקה" msgid "share" msgstr "שיתוף" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "מוגן בססמה" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "אירעה שגיאה בביטול תאריך התפוגה" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "אירעה שגיאה בעת הגדרת תאריך התפוגה" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "מתבצעת שליחה ..." -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "הודעת הדוא״ל נשלחה" @@ -462,7 +462,7 @@ msgstr "עזרה" msgid "Access forbidden" msgstr "הגישה נחסמה" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "ענן לא נמצא" diff --git a/l10n/he/files.po b/l10n/he/files.po index e98a0126d1..83a9b3df42 100644 --- a/l10n/he/files.po +++ b/l10n/he/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 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" @@ -121,7 +121,7 @@ msgstr "שתף" msgid "Delete permanently" msgstr "מחק לצמיתות" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "מחיקה" @@ -129,7 +129,7 @@ msgstr "מחיקה" msgid "Rename" msgstr "שינוי שם" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "ממתין" @@ -161,11 +161,11 @@ msgstr "ביטול" msgid "perform delete operation" msgstr "ביצוע פעולת מחיקה" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "קובץ אחד נשלח" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "קבצים בהעלאה" @@ -201,15 +201,15 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "שם" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "גודל" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "זמן שינוי" @@ -286,45 +286,45 @@ msgstr "תיקייה" msgid "From link" msgstr "מקישור" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "ביטול ההעלאה" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "אין כאן שום דבר. אולי ברצונך להעלות משהו?" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "הורדה" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "הסר שיתוף" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "העלאה גדולה מידי" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "הקבצים שניסית להעלות חרגו מהגודל המקסימלי להעלאת קבצים על שרת זה." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "הקבצים נסרקים, נא להמתין." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "הסריקה הנוכחית" diff --git a/l10n/he/files_sharing.po b/l10n/he/files_sharing.po index ed15a0077f..aa4b887ee2 100644 --- a/l10n/he/files_sharing.po +++ b/l10n/he/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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,28 +29,52 @@ msgstr "סיסמא" msgid "Submit" msgstr "שליחה" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s שיתף עמך את התיקייה %s" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s שיתף עמך את הקובץ %s" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "הורדה" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "העלאה" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "ביטול ההעלאה" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "אין תצוגה מקדימה זמינה עבור" diff --git a/l10n/he/lib.po b/l10n/he/lib.po index bb79451d05..2830a8eab8 100644 --- a/l10n/he/lib.po +++ b/l10n/he/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -46,7 +46,7 @@ msgstr "מנהל" msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "שירותי רשת תחת השליטה שלך" @@ -257,7 +257,7 @@ msgstr "שנה שעברה" msgid "years ago" msgstr "שנים" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/he/user_ldap.po b/l10n/he/user_ldap.po index 963a7defc7..f868583576 100644 --- a/l10n/he/user_ldap.po +++ b/l10n/he/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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 1885e83cf2..4a16892033 100644 --- a/l10n/hi/core.po +++ b/l10n/hi/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -227,7 +227,7 @@ msgstr "" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "त्रुटि" @@ -247,7 +247,7 @@ msgstr "" msgid "Share" msgstr "साझा करें" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "" @@ -347,23 +347,23 @@ msgstr "" msgid "share" msgstr "" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "" -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "" @@ -462,7 +462,7 @@ msgstr "सहयोग" msgid "Access forbidden" msgstr "" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "क्लौड नहीं मिला " diff --git a/l10n/hi/files_sharing.po b/l10n/hi/files_sharing.po index 374cd74847..d2f33421d8 100644 --- a/l10n/hi/files_sharing.po +++ b/l10n/hi/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -29,28 +29,52 @@ msgstr "पासवर्ड" msgid "Submit" msgstr "" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "" -#: templates/public.php:44 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "" -#: templates/public.php:54 +#: templates/public.php:56 msgid "Cancel upload" msgstr "" -#: templates/public.php:83 +#: templates/public.php:85 msgid "No preview available for" msgstr "" diff --git a/l10n/hi/lib.po b/l10n/hi/lib.po index 4c58517285..ab9714261e 100644 --- a/l10n/hi/lib.po +++ b/l10n/hi/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -46,7 +46,7 @@ msgstr "" msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "" @@ -257,7 +257,7 @@ msgstr "" msgid "years ago" msgstr "" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/hi/user_ldap.po b/l10n/hi/user_ldap.po index c943c1679c..cc861519d2 100644 --- a/l10n/hi/user_ldap.po +++ b/l10n/hi/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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 4ec6c0bfd8..3a61a6b864 100644 --- a/l10n/hr/core.po +++ b/l10n/hr/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -226,7 +226,7 @@ msgstr "" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Greška" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "Podijeli" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Greška prilikom djeljenja" @@ -346,23 +346,23 @@ msgstr "izbriši" msgid "share" msgstr "djeli" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Zaštita lozinkom" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Greška prilikom brisanja datuma isteka" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Greška prilikom postavljanja datuma isteka" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "" -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "" @@ -461,7 +461,7 @@ msgstr "Pomoć" msgid "Access forbidden" msgstr "Pristup zabranjen" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Cloud nije pronađen" diff --git a/l10n/hr/files.po b/l10n/hr/files.po index c9259858fd..d14de3d50e 100644 --- a/l10n/hr/files.po +++ b/l10n/hr/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 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" @@ -120,7 +120,7 @@ msgstr "Podijeli" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Obriši" @@ -128,7 +128,7 @@ msgstr "Obriši" msgid "Rename" msgstr "Promjeni ime" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "U tijeku" @@ -160,11 +160,11 @@ msgstr "vrati" msgid "perform delete operation" msgstr "" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 datoteka se učitava" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "datoteke se učitavaju" @@ -200,15 +200,15 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Ime" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Veličina" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Zadnja promjena" @@ -285,45 +285,45 @@ msgstr "mapa" msgid "From link" msgstr "" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Prekini upload" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Nema ničega u ovoj mapi. Pošalji nešto!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Preuzimanje" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Makni djeljenje" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "Prijenos je preobiman" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Datoteke koje pokušavate prenijeti prelaze maksimalnu veličinu za prijenos datoteka na ovom poslužitelju." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Datoteke se skeniraju, molimo pričekajte." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Trenutno skeniranje" diff --git a/l10n/hr/files_sharing.po b/l10n/hr/files_sharing.po index 060175dfc0..3b41ad7c0f 100644 --- a/l10n/hr/files_sharing.po +++ b/l10n/hr/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -29,28 +29,52 @@ msgstr "Lozinka" msgid "Submit" msgstr "Pošalji" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Preuzimanje" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Učitaj" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Prekini upload" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "" diff --git a/l10n/hr/lib.po b/l10n/hr/lib.po index d7ad1c61c9..c866a1a202 100644 --- a/l10n/hr/lib.po +++ b/l10n/hr/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -46,7 +46,7 @@ msgstr "Administrator" msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "web usluge pod vašom kontrolom" @@ -257,7 +257,7 @@ msgstr "prošlu godinu" msgid "years ago" msgstr "godina" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/hr/user_ldap.po b/l10n/hr/user_ldap.po index 2d361d82bb..74a0ad121a 100644 --- a/l10n/hr/user_ldap.po +++ b/l10n/hr/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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 92d3fb95e7..ce7f4a8f03 100644 --- a/l10n/hu_HU/core.po +++ b/l10n/hu_HU/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-26 18:30+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: ebela \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -228,7 +228,7 @@ msgstr "Az objektum típusa nincs megadva." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Hiba" @@ -248,7 +248,7 @@ msgstr "Megosztott" msgid "Share" msgstr "Megosztás" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Nem sikerült létrehozni a megosztást" @@ -348,23 +348,23 @@ msgstr "töröl" msgid "share" msgstr "megoszt" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Jelszóval van védve" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Nem sikerült a lejárati időt törölni" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Nem sikerült a lejárati időt beállítani" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "Küldés ..." -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "Az emailt elküldtük" @@ -463,7 +463,7 @@ msgstr "Súgó" msgid "Access forbidden" msgstr "A hozzáférés nem engedélyezett" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "A felhő nem található" diff --git a/l10n/hu_HU/files.po b/l10n/hu_HU/files.po index ffe9dd4a97..2fa09f0b3c 100644 --- a/l10n/hu_HU/files.po +++ b/l10n/hu_HU/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 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" @@ -121,7 +121,7 @@ msgstr "Megosztás" msgid "Delete permanently" msgstr "Végleges törlés" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Törlés" @@ -129,7 +129,7 @@ msgstr "Törlés" msgid "Rename" msgstr "Átnevezés" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Folyamatban" @@ -161,11 +161,11 @@ msgstr "visszavonás" msgid "perform delete operation" msgstr "a törlés végrehajtása" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 fájl töltődik föl" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "fájl töltődik föl" @@ -201,15 +201,15 @@ msgstr "Készül a letöltendő állomány. Ez eltarthat egy ideig, ha nagyok a msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Érvénytelen mappanév. A név használata csak a Owncloud számára lehetséges." -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Név" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Méret" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Módosítva" @@ -286,45 +286,45 @@ msgstr "Mappa" msgid "From link" msgstr "Feltöltés linkről" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "Törölt fájlok" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "A feltöltés megszakítása" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "Itt nincs írásjoga." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Itt nincs semmi. Töltsön fel valamit!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Letöltés" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "A megosztás visszavonása" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "A feltöltés túl nagy" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "A feltöltendő állományok mérete meghaladja a kiszolgálón megengedett maximális méretet." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "A fájllista ellenőrzése zajlik, kis türelmet!" -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Ellenőrzés alatt" diff --git a/l10n/hu_HU/files_sharing.po b/l10n/hu_HU/files_sharing.po index 3c44de68d3..0d018aba9b 100644 --- a/l10n/hu_HU/files_sharing.po +++ b/l10n/hu_HU/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" -"Last-Translator: Laszlo Tornoci \n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,28 +30,52 @@ msgstr "Jelszó" msgid "Submit" msgstr "Elküld" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s megosztotta Önnel ezt a mappát: %s" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s megosztotta Önnel ezt az állományt: %s" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Letöltés" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Feltöltés" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "A feltöltés megszakítása" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Nem áll rendelkezésre előnézet ehhez: " diff --git a/l10n/hu_HU/lib.po b/l10n/hu_HU/lib.po index 728130342c..f103a4224d 100644 --- a/l10n/hu_HU/lib.po +++ b/l10n/hu_HU/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-26 19:20+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: ebela \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 c9d9d73f58..28f951cefb 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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/hy/files.po b/l10n/hy/files.po index df5bafb76c..7c8ddc7cac 100644 --- a/l10n/hy/files.po +++ b/l10n/hy/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:41+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" @@ -120,7 +120,7 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Ջնջել" @@ -128,7 +128,7 @@ msgstr "Ջնջել" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "" @@ -160,11 +160,11 @@ msgstr "" msgid "perform delete operation" msgstr "" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "" @@ -200,15 +200,15 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "" @@ -285,45 +285,45 @@ msgstr "" msgid "From link" msgstr "" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Բեռնել" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "" diff --git a/l10n/hy/files_sharing.po b/l10n/hy/files_sharing.po index b0ff019c8d..0ddb2f6bb9 100644 --- a/l10n/hy/files_sharing.po +++ b/l10n/hy/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -29,28 +29,52 @@ msgstr "" msgid "Submit" msgstr "Հաստատել" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Բեռնել" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "" diff --git a/l10n/ia/core.po b/l10n/ia/core.po index 8e8c1d777b..a552d39009 100644 --- a/l10n/ia/core.po +++ b/l10n/ia/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -226,7 +226,7 @@ msgstr "" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Error" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "Compartir" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "" @@ -346,23 +346,23 @@ msgstr "" msgid "share" msgstr "" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "" -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "" @@ -461,7 +461,7 @@ msgstr "Adjuta" msgid "Access forbidden" msgstr "Accesso prohibite" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Nube non trovate" diff --git a/l10n/ia/files.po b/l10n/ia/files.po index 02cad9734f..9573d287a0 100644 --- a/l10n/ia/files.po +++ b/l10n/ia/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 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" @@ -120,7 +120,7 @@ msgstr "Compartir" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Deler" @@ -128,7 +128,7 @@ msgstr "Deler" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "" @@ -160,11 +160,11 @@ msgstr "" msgid "perform delete operation" msgstr "" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "" @@ -200,15 +200,15 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Nomine" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Dimension" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Modificate" @@ -285,45 +285,45 @@ msgstr "Dossier" msgid "From link" msgstr "" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Nihil hic. Incarga alcun cosa!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Discargar" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "Incargamento troppo longe" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "" diff --git a/l10n/ia/files_sharing.po b/l10n/ia/files_sharing.po index 2247eb9098..940bd354de 100644 --- a/l10n/ia/files_sharing.po +++ b/l10n/ia/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -29,28 +29,52 @@ msgstr "Contrasigno" msgid "Submit" msgstr "Submitter" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Discargar" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Incargar" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "" diff --git a/l10n/ia/lib.po b/l10n/ia/lib.po index 283c448b8e..6e47ee9dae 100644 --- a/l10n/ia/lib.po +++ b/l10n/ia/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -46,7 +46,7 @@ msgstr "Administration" msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "servicios web sub tu controlo" @@ -257,7 +257,7 @@ msgstr "" msgid "years ago" msgstr "" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/ia/user_ldap.po b/l10n/ia/user_ldap.po index 69e81595ea..901092e5e3 100644 --- a/l10n/ia/user_ldap.po +++ b/l10n/ia/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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 177a8b8a1c..092d01d17e 100644 --- a/l10n/id/core.po +++ b/l10n/id/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -226,7 +226,7 @@ msgstr "Tipe objek tidak ditentukan." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Galat" @@ -246,7 +246,7 @@ msgstr "Dibagikan" msgid "Share" msgstr "Bagikan" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Galat ketika membagikan" @@ -346,23 +346,23 @@ msgstr "hapus" msgid "share" msgstr "bagikan" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Dilindungi sandi" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Galat ketika menghapus tanggal kedaluwarsa" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Galat ketika menyetel tanggal kedaluwarsa" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "Mengirim ..." -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "Email terkirim" @@ -461,7 +461,7 @@ msgstr "Bantuan" msgid "Access forbidden" msgstr "Akses ditolak" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Cloud tidak ditemukan" diff --git a/l10n/id/files.po b/l10n/id/files.po index d200700fe9..6403ada6b7 100644 --- a/l10n/id/files.po +++ b/l10n/id/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 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" @@ -120,7 +120,7 @@ msgstr "Bagikan" msgid "Delete permanently" msgstr "Hapus secara permanen" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Hapus" @@ -128,7 +128,7 @@ msgstr "Hapus" msgid "Rename" msgstr "Ubah nama" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Menunggu" @@ -160,11 +160,11 @@ msgstr "urungkan" msgid "perform delete operation" msgstr "Lakukan operasi penghapusan" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 berkas diunggah" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "berkas diunggah" @@ -200,15 +200,15 @@ msgstr "Unduhan Anda sedang disiapkan. Prosesnya dapat berlangsung agak lama jik msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nama folder salah. Nama 'Shared' telah digunakan oleh Owncloud." -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Nama" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Ukuran" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Dimodifikasi" @@ -285,45 +285,45 @@ msgstr "Folder" msgid "From link" msgstr "Dari tautan" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "Berkas yang dihapus" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Batal pengunggahan" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "Anda tidak memiliki izin menulis di sini." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Tidak ada apa-apa di sini. Unggah sesuatu!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Unduh" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Batalkan berbagi" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "Yang diunggah terlalu besar" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Berkas yang dicoba untuk diunggah melebihi ukuran maksimum pengunggahan berkas di server ini." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Berkas sedang dipindai, silakan tunggu." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Yang sedang dipindai" diff --git a/l10n/id/files_sharing.po b/l10n/id/files_sharing.po index 6741367871..793bcb2e75 100644 --- a/l10n/id/files_sharing.po +++ b/l10n/id/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -29,28 +29,52 @@ msgstr "Sandi" msgid "Submit" msgstr "Kirim" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s membagikan folder %s dengan Anda" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s membagikan file %s dengan Anda" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Unduh" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Unggah" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Batal pengunggahan" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Tidak ada pratinjau tersedia untuk" diff --git a/l10n/id/lib.po b/l10n/id/lib.po index 7d7e86cd29..1866b3b798 100644 --- a/l10n/id/lib.po +++ b/l10n/id/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -46,7 +46,7 @@ msgstr "Admin" msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "layanan web dalam kontrol Anda" @@ -257,7 +257,7 @@ msgstr "tahun kemarin" msgid "years ago" msgstr "beberapa tahun lalu" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/id/user_ldap.po b/l10n/id/user_ldap.po index 2cf3f355a0..da1981e766 100644 --- a/l10n/id/user_ldap.po +++ b/l10n/id/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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 4d63b5e0f0..a02b8f3fae 100644 --- a/l10n/is/core.po +++ b/l10n/is/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -227,7 +227,7 @@ msgstr "Tegund ekki tilgreind" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Villa" @@ -247,7 +247,7 @@ msgstr "Deilt" msgid "Share" msgstr "Deila" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Villa við deilingu" @@ -347,23 +347,23 @@ msgstr "eyða" msgid "share" msgstr "deila" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Verja með lykilorði" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Villa við að aftengja gildistíma" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Villa við að setja gildistíma" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "Sendi ..." -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "Tölvupóstur sendur" @@ -462,7 +462,7 @@ msgstr "Hjálp" msgid "Access forbidden" msgstr "Aðgangur bannaður" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Ský finnst ekki" diff --git a/l10n/is/files.po b/l10n/is/files.po index 29c1fd7163..86b12e0fd2 100644 --- a/l10n/is/files.po +++ b/l10n/is/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 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" @@ -120,7 +120,7 @@ msgstr "Deila" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Eyða" @@ -128,7 +128,7 @@ msgstr "Eyða" msgid "Rename" msgstr "Endurskýra" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Bíður" @@ -160,11 +160,11 @@ msgstr "afturkalla" msgid "perform delete operation" msgstr "" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 skrá innsend" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "" @@ -200,15 +200,15 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Óleyfilegt nafn á möppu. Nafnið 'Shared' er frátekið fyrir Owncloud" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Nafn" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Stærð" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Breytt" @@ -285,45 +285,45 @@ msgstr "Mappa" msgid "From link" msgstr "Af tengli" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Hætta við innsendingu" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Ekkert hér. Settu eitthvað inn!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Niðurhal" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Hætta deilingu" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "Innsend skrá er of stór" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Skrárnar sem þú ert að senda inn eru stærri en hámarks innsendingarstærð á þessum netþjóni." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Verið er að skima skrár, vinsamlegast hinkraðu." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Er að skima" diff --git a/l10n/is/files_sharing.po b/l10n/is/files_sharing.po index d27d881ebb..e01d766773 100644 --- a/l10n/is/files_sharing.po +++ b/l10n/is/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -29,28 +29,52 @@ msgstr "Lykilorð" msgid "Submit" msgstr "Senda" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s deildi möppunni %s með þér" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s deildi skránni %s með þér" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Niðurhal" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Senda inn" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Hætta við innsendingu" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Yfirlit ekki í boði fyrir" diff --git a/l10n/is/lib.po b/l10n/is/lib.po index ad927007a6..4df8009d67 100644 --- a/l10n/is/lib.po +++ b/l10n/is/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -46,7 +46,7 @@ msgstr "Stjórnun" msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "vefþjónusta undir þinni stjórn" @@ -257,7 +257,7 @@ msgstr "síðasta ári" msgid "years ago" msgstr "einhverjum árum" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/is/user_ldap.po b/l10n/is/user_ldap.po index 69d38cfaa3..7c34f34cd0 100644 --- a/l10n/is/user_ldap.po +++ b/l10n/is/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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 9d25e7fd0b..7980040fb4 100644 --- a/l10n/it/core.po +++ b/l10n/it/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-26 16:40+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -229,7 +229,7 @@ msgstr "Il tipo di oggetto non è specificato." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Errore" @@ -249,7 +249,7 @@ msgstr "Condivisi" msgid "Share" msgstr "Condividi" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Errore durante la condivisione" @@ -349,23 +349,23 @@ msgstr "elimina" msgid "share" msgstr "condividi" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Protetta da password" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Errore durante la rimozione della data di scadenza" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Errore durante l'impostazione della data di scadenza" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "Invio in corso..." -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "Messaggio inviato" @@ -464,7 +464,7 @@ msgstr "Aiuto" msgid "Access forbidden" msgstr "Accesso negato" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Nuvola non trovata" diff --git a/l10n/it/files.po b/l10n/it/files.po index 2622309948..2c86ca8c3c 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:41+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" @@ -122,7 +122,7 @@ msgstr "Condividi" msgid "Delete permanently" msgstr "Elimina definitivamente" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Elimina" @@ -130,7 +130,7 @@ msgstr "Elimina" msgid "Rename" msgstr "Rinomina" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "In corso" @@ -162,11 +162,11 @@ msgstr "annulla" msgid "perform delete operation" msgstr "esegui l'operazione di eliminazione" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 file in fase di caricamento" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "caricamento file" @@ -202,15 +202,15 @@ msgstr "Il tuo scaricamento è in fase di preparazione. Ciò potrebbe richiedere msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nome della cartella non valido. L'uso di 'Shared' è riservato da ownCloud" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Nome" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Dimensione" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Modificato" @@ -287,45 +287,45 @@ msgstr "Cartella" msgid "From link" msgstr "Da collegamento" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "File eliminati" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Annulla invio" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "Qui non hai i permessi di scrittura." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Non c'è niente qui. Carica qualcosa!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Scarica" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Rimuovi condivisione" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "Caricamento troppo grande" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "I file che stai provando a caricare superano la dimensione massima consentita su questo server." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Scansione dei file in corso, attendi" -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Scansione corrente" diff --git a/l10n/it/files_sharing.po b/l10n/it/files_sharing.po index 5f93f56ae9..f0c9490e2c 100644 --- a/l10n/it/files_sharing.po +++ b/l10n/it/files_sharing.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -31,28 +31,52 @@ msgstr "Password" msgid "Submit" msgstr "Invia" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s ha condiviso la cartella %s con te" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s ha condiviso il file %s con te" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Scarica" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Carica" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Annulla il caricamento" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Nessuna anteprima disponibile per" diff --git a/l10n/it/files_trashbin.po b/l10n/it/files_trashbin.po index 157e29b615..19d8c8f15d 100644 --- a/l10n/it/files_trashbin.po +++ b/l10n/it/files_trashbin.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Vincenzo Reale , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 06:00+0000\n" +"Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -69,7 +70,7 @@ msgstr "{count} file" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" -msgstr "" +msgstr "ripristinati" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" diff --git a/l10n/it/lib.po b/l10n/it/lib.po index e99e2c2da9..8562c1b2df 100644 --- a/l10n/it/lib.po +++ b/l10n/it/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-26 16:40+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/user_ldap.po b/l10n/it/user_ldap.po index 50fc73cb9c..e42ed7790d 100644 --- a/l10n/it/user_ldap.po +++ b/l10n/it/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-28 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 06:20+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/core.po b/l10n/ja_JP/core.po index 4289e47fc2..1b26070dc6 100644 --- a/l10n/ja_JP/core.po +++ b/l10n/ja_JP/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -228,7 +228,7 @@ msgstr "オブジェクタイプが指定されていません。" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "エラー" @@ -248,7 +248,7 @@ msgstr "共有中" msgid "Share" msgstr "共有" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "共有でエラー発生" @@ -348,23 +348,23 @@ msgstr "削除" msgid "share" msgstr "共有" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "パスワード保護" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "有効期限の未設定エラー" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "有効期限の設定でエラー発生" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "送信中..." -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "メールを送信しました" @@ -463,7 +463,7 @@ msgstr "ヘルプ" msgid "Access forbidden" msgstr "アクセスが禁止されています" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "見つかりません" diff --git a/l10n/ja_JP/files.po b/l10n/ja_JP/files.po index 4872df0480..99861df793 100644 --- a/l10n/ja_JP/files.po +++ b/l10n/ja_JP/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 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" @@ -124,7 +124,7 @@ msgstr "共有" msgid "Delete permanently" msgstr "完全に削除する" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "削除" @@ -132,7 +132,7 @@ msgstr "削除" msgid "Rename" msgstr "名前の変更" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "中断" @@ -164,11 +164,11 @@ msgstr "元に戻す" msgid "perform delete operation" msgstr "削除を実行" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "ファイルを1つアップロード中" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "ファイルをアップロード中" @@ -204,15 +204,15 @@ msgstr "ダウンロードの準備中です。ファイルサイズが大きい msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "無効なフォルダ名です。'Shared' の利用は ownCloud が予約済みです。" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "名前" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "サイズ" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "変更" @@ -289,45 +289,45 @@ msgstr "フォルダ" msgid "From link" msgstr "リンク" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "削除ファイル" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "アップロードをキャンセル" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "あなたには書き込み権限がありません。" -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "ここには何もありません。何かアップロードしてください。" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "ダウンロード" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "共有解除" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "アップロードには大きすぎます。" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "アップロードしようとしているファイルは、サーバで規定された最大サイズを超えています。" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "ファイルをスキャンしています、しばらくお待ちください。" -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "スキャン中" diff --git a/l10n/ja_JP/files_sharing.po b/l10n/ja_JP/files_sharing.po index bd7180154d..73d3652d5a 100644 --- a/l10n/ja_JP/files_sharing.po +++ b/l10n/ja_JP/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" -"Last-Translator: tt yn \n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,28 +30,52 @@ msgstr "パスワード" msgid "Submit" msgstr "送信" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s はフォルダー %s をあなたと共有中です" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s はファイル %s をあなたと共有中です" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "ダウンロード" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "アップロード" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "アップロードをキャンセル" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "プレビューはありません" diff --git a/l10n/ja_JP/lib.po b/l10n/ja_JP/lib.po index a9bfe0203f..63e44f1469 100644 --- a/l10n/ja_JP/lib.po +++ b/l10n/ja_JP/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -47,7 +47,7 @@ msgstr "管理" msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "管理下のウェブサービス" @@ -258,7 +258,7 @@ msgstr "一年前" msgid "years ago" msgstr "年前" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/ja_JP/user_ldap.po b/l10n/ja_JP/user_ldap.po index 73e9bc05c1..1c8c1b407c 100644 --- a/l10n/ja_JP/user_ldap.po +++ b/l10n/ja_JP/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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/core.po b/l10n/ka/core.po index cb5459f479..7bfb35fbc7 100644 --- a/l10n/ka/core.po +++ b/l10n/ka/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -226,7 +226,7 @@ msgstr "" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "" @@ -346,23 +346,23 @@ msgstr "" msgid "share" msgstr "" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "" -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "" @@ -461,7 +461,7 @@ msgstr "შველა" msgid "Access forbidden" msgstr "" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "" diff --git a/l10n/ka/files.po b/l10n/ka/files.po index 75dfc85d93..8f64ae7fb1 100644 --- a/l10n/ka/files.po +++ b/l10n/ka/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -120,7 +120,7 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "" @@ -128,7 +128,7 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "" @@ -160,11 +160,11 @@ msgstr "" msgid "perform delete operation" msgstr "" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "" @@ -200,15 +200,15 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "" @@ -285,45 +285,45 @@ msgstr "" msgid "From link" msgstr "" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "გადმოწერა" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "" diff --git a/l10n/ka/files_sharing.po b/l10n/ka/files_sharing.po index ffe0413a6b..d03fb2074c 100644 --- a/l10n/ka/files_sharing.po +++ b/l10n/ka/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -29,28 +29,52 @@ msgstr "პაროლი" msgid "Submit" msgstr "" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "გადმოწერა" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "" diff --git a/l10n/ka/lib.po b/l10n/ka/lib.po index 5cfcfa245f..be614d19be 100644 --- a/l10n/ka/lib.po +++ b/l10n/ka/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -46,7 +46,7 @@ msgstr "ადმინისტრატორი" msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "" @@ -257,7 +257,7 @@ msgstr "" msgid "years ago" msgstr "" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/ka/user_ldap.po b/l10n/ka/user_ldap.po index 48f5ec1758..f2b7389faa 100644 --- a/l10n/ka/user_ldap.po +++ b/l10n/ka/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/core.po b/l10n/ka_GE/core.po index ff60e8f555..e74124b1f2 100644 --- a/l10n/ka_GE/core.po +++ b/l10n/ka_GE/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -226,7 +226,7 @@ msgstr "ობიექტის ტიპი არ არის მითი #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "შეცდომა" @@ -246,7 +246,7 @@ msgstr "გაზიარებული" msgid "Share" msgstr "გაზიარება" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "შეცდომა გაზიარების დროს" @@ -346,23 +346,23 @@ msgstr "წაშლა" msgid "share" msgstr "გაზიარება" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "პაროლით დაცული" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "შეცდომა ვადის გასვლის მოხსნის დროს" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "შეცდომა ვადის გასვლის მითითების დროს" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "გაგზავნა ...." -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "იმეილი გაიგზავნა" @@ -461,7 +461,7 @@ msgstr "დახმარება" msgid "Access forbidden" msgstr "წვდომა აკრძალულია" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "ღრუბელი არ არსებობს" diff --git a/l10n/ka_GE/files.po b/l10n/ka_GE/files.po index 480242c4e5..918d7d6d17 100644 --- a/l10n/ka_GE/files.po +++ b/l10n/ka_GE/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 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" @@ -120,7 +120,7 @@ msgstr "გაზიარება" msgid "Delete permanently" msgstr "სრულად წაშლა" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "წაშლა" @@ -128,7 +128,7 @@ msgstr "წაშლა" msgid "Rename" msgstr "გადარქმევა" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "მოცდის რეჟიმში" @@ -160,11 +160,11 @@ msgstr "დაბრუნება" msgid "perform delete operation" msgstr "მიმდინარეობს წაშლის ოპერაცია" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 ფაილის ატვირთვა" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "ფაილები იტვირთება" @@ -200,15 +200,15 @@ msgstr "გადმოწერის მოთხოვნა მუშავ msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "დაუშვებელი ფოლდერის სახელი. 'Shared'–ის გამოყენება რეზერვირებულია Owncloud–ის მიერ" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "სახელი" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "ზომა" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "შეცვლილია" @@ -285,45 +285,45 @@ msgstr "საქაღალდე" msgid "From link" msgstr "მისამართიდან" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "წაშლილი ფაილები" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "ატვირთვის გაუქმება" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "თქვენ არ გაქვთ ჩაწერის უფლება აქ." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "აქ არაფერი არ არის. ატვირთე რამე!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "ჩამოტვირთვა" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "გაუზიარებადი" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "ასატვირთი ფაილი ძალიან დიდია" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "ფაილის ზომა რომლის ატვირთვასაც თქვენ აპირებთ, აჭარბებს სერვერზე დაშვებულ მაქსიმუმს." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "მიმდინარეობს ფაილების სკანირება, გთხოვთ დაელოდოთ." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "მიმდინარე სკანირება" diff --git a/l10n/ka_GE/files_sharing.po b/l10n/ka_GE/files_sharing.po index 58d9060e66..349d781cc9 100644 --- a/l10n/ka_GE/files_sharing.po +++ b/l10n/ka_GE/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -29,28 +29,52 @@ msgstr "პაროლი" msgid "Submit" msgstr "გაგზავნა" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s–მა გაგიზიარათ ფოლდერი %s" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s–მა გაგიზიარათ ფაილი %s" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "ჩამოტვირთვა" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "ატვირთვა" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "ატვირთვის გაუქმება" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "წინასწარი დათვალიერება შეუძლებელია" diff --git a/l10n/ka_GE/lib.po b/l10n/ka_GE/lib.po index 499f821fb1..90083f3cfd 100644 --- a/l10n/ka_GE/lib.po +++ b/l10n/ka_GE/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -46,7 +46,7 @@ msgstr "ადმინისტრატორი" msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "web services under your control" @@ -257,7 +257,7 @@ msgstr "ბოლო წელს" msgid "years ago" msgstr "წლის წინ" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/ka_GE/user_ldap.po b/l10n/ka_GE/user_ldap.po index 9dd4877fc3..04c7538f51 100644 --- a/l10n/ka_GE/user_ldap.po +++ b/l10n/ka_GE/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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/kn/files_sharing.po b/l10n/kn/files_sharing.po index 2d27aa7fc3..b4ca534331 100644 --- a/l10n/kn/files_sharing.po +++ b/l10n/kn/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -29,28 +29,52 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "" -#: templates/public.php:44 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "" -#: templates/public.php:54 +#: templates/public.php:56 msgid "Cancel upload" msgstr "" -#: templates/public.php:83 +#: templates/public.php:85 msgid "No preview available for" msgstr "" diff --git a/l10n/ko/core.po b/l10n/ko/core.po index 7335f8e13a..15b5a44259 100644 --- a/l10n/ko/core.po +++ b/l10n/ko/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -228,7 +228,7 @@ msgstr "객체 유형이 지정되지 않았습니다." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "오류" @@ -248,7 +248,7 @@ msgstr "공유됨" msgid "Share" msgstr "공유" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "공유하는 중 오류 발생" @@ -348,23 +348,23 @@ msgstr "삭제" msgid "share" msgstr "공유" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "암호로 보호됨" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "만료 날짜 해제 오류" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "만료 날짜 설정 오류" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "전송 중..." -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "이메일 발송됨" @@ -463,7 +463,7 @@ msgstr "도움말" msgid "Access forbidden" msgstr "접근 금지됨" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "클라우드를 찾을 수 없습니다" diff --git a/l10n/ko/files.po b/l10n/ko/files.po index 815af6c08d..634e6e3dc2 100644 --- a/l10n/ko/files.po +++ b/l10n/ko/files.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# ujuc Gang , 2013 -# ujuc Gang , 2013 +# Sungjin Gang , 2013 +# Sungjin Gang , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 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" @@ -122,7 +122,7 @@ msgstr "공유" msgid "Delete permanently" msgstr "영원히 삭제" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "삭제" @@ -130,7 +130,7 @@ msgstr "삭제" msgid "Rename" msgstr "이름 바꾸기" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "대기 중" @@ -162,11 +162,11 @@ msgstr "되돌리기" msgid "perform delete operation" msgstr "삭제 작업중" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "파일 1개 업로드 중" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "파일 업로드중" @@ -202,15 +202,15 @@ msgstr "다운로드가 준비 중입니다. 파일 크기가 크다면 시간 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "폴더 이름이 유효하지 않습니다. " -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "이름" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "크기" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "수정됨" @@ -287,45 +287,45 @@ msgstr "폴더" msgid "From link" msgstr "링크에서" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "파일 삭제됨" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "업로드 취소" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "당신은 여기에 쓰기를 할 수 있는 권한이 없습니다." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "내용이 없습니다. 업로드할 수 있습니다!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "다운로드" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "공유 해제" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "업로드한 파일이 너무 큼" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "이 파일이 서버에서 허용하는 최대 업로드 가능 용량보다 큽니다." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "파일을 검색하고 있습니다. 기다려 주십시오." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "현재 검색" diff --git a/l10n/ko/files_sharing.po b/l10n/ko/files_sharing.po index 10bb8308d0..98a35975c0 100644 --- a/l10n/ko/files_sharing.po +++ b/l10n/ko/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -29,28 +29,52 @@ msgstr "암호" msgid "Submit" msgstr "제출" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s 님이 폴더 %s을(를) 공유하였습니다" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s 님이 파일 %s을(를) 공유하였습니다" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "다운로드" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "업로드" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "업로드 취소" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "다음 항목을 미리 볼 수 없음:" diff --git a/l10n/ko/lib.po b/l10n/ko/lib.po index 720609c125..e94791c18e 100644 --- a/l10n/ko/lib.po +++ b/l10n/ko/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -47,7 +47,7 @@ msgstr "관리자" msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "내가 관리하는 웹 서비스" @@ -258,7 +258,7 @@ msgstr "작년" msgid "years ago" msgstr "년 전" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/ko/user_ldap.po b/l10n/ko/user_ldap.po index b17eaf1dbe..ad8ee3ed2a 100644 --- a/l10n/ko/user_ldap.po +++ b/l10n/ko/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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 d7eb59f7ed..7a4da67564 100644 --- a/l10n/ku_IQ/core.po +++ b/l10n/ku_IQ/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -226,7 +226,7 @@ msgstr "" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "هه‌ڵه" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "" @@ -346,23 +346,23 @@ msgstr "" msgid "share" msgstr "" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "" -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "" @@ -461,7 +461,7 @@ msgstr "یارمەتی" msgid "Access forbidden" msgstr "" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "هیچ نه‌دۆزرایه‌وه‌" diff --git a/l10n/ku_IQ/files.po b/l10n/ku_IQ/files.po index e8a982abd8..925646a6bc 100644 --- a/l10n/ku_IQ/files.po +++ b/l10n/ku_IQ/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 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" @@ -120,7 +120,7 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "" @@ -128,7 +128,7 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "" @@ -160,11 +160,11 @@ msgstr "" msgid "perform delete operation" msgstr "" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "" @@ -200,15 +200,15 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "ناو" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "" @@ -285,45 +285,45 @@ msgstr "بوخچه" msgid "From link" msgstr "" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "داگرتن" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "" diff --git a/l10n/ku_IQ/files_sharing.po b/l10n/ku_IQ/files_sharing.po index 5cde0384b4..b7314e7946 100644 --- a/l10n/ku_IQ/files_sharing.po +++ b/l10n/ku_IQ/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -29,28 +29,52 @@ msgstr "وشەی تێپەربو" msgid "Submit" msgstr "ناردن" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s دابه‌شی کردووه‌ بوخچه‌ی %s له‌گه‌ڵ تۆ" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s دابه‌شی کردووه‌ په‌ڕگه‌یی %s له‌گه‌ڵ تۆ" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "داگرتن" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "بارکردن" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "هیچ پێشبینیه‌ك ئاماده‌ نیه بۆ" diff --git a/l10n/ku_IQ/lib.po b/l10n/ku_IQ/lib.po index 3c562c92d4..9274ba255a 100644 --- a/l10n/ku_IQ/lib.po +++ b/l10n/ku_IQ/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -46,7 +46,7 @@ msgstr "به‌ڕێوه‌به‌ری سه‌ره‌كی" msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "ڕاژه‌ی وێب له‌ژێر چاودێریت دایه" @@ -257,7 +257,7 @@ msgstr "" msgid "years ago" msgstr "" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/ku_IQ/user_ldap.po b/l10n/ku_IQ/user_ldap.po index 2db7dfc5d0..1ff6172211 100644 --- a/l10n/ku_IQ/user_ldap.po +++ b/l10n/ku_IQ/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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 5a52b6187d..24120db971 100644 --- a/l10n/lb/core.po +++ b/l10n/lb/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -227,7 +227,7 @@ msgstr "Den Typ vum Object ass net uginn." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Feeler" @@ -247,7 +247,7 @@ msgstr "Gedeelt" msgid "Share" msgstr "Deelen" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Feeler beim Deelen" @@ -347,23 +347,23 @@ msgstr "läschen" msgid "share" msgstr "deelen" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Passwuertgeschützt" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Feeler beim Läsche vum Verfallsdatum" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Feeler beim Setze vum Verfallsdatum" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "Gëtt geschéckt..." -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "Email geschéckt" @@ -462,7 +462,7 @@ msgstr "Hëllef" msgid "Access forbidden" msgstr "Zougrëff net erlaabt" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Cloud net fonnt" diff --git a/l10n/lb/files.po b/l10n/lb/files.po index 245cac9d4a..1c581ddf78 100644 --- a/l10n/lb/files.po +++ b/l10n/lb/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 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" @@ -120,7 +120,7 @@ msgstr "Deelen" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Läschen" @@ -128,7 +128,7 @@ msgstr "Läschen" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "" @@ -160,11 +160,11 @@ msgstr "réckgängeg man" msgid "perform delete operation" msgstr "" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "" @@ -200,15 +200,15 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Numm" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Gréisst" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Geännert" @@ -285,45 +285,45 @@ msgstr "Dossier" msgid "From link" msgstr "" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Upload ofbriechen" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Hei ass näischt. Lued eppes rop!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Download" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Net méi deelen" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "Upload ze grouss" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Déi Dateien déi Dir probéiert erop ze lueden sinn méi grouss wei déi Maximal Gréisst déi op dësem Server erlaabt ass." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Fichieren gi gescannt, war weg." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Momentane Scan" diff --git a/l10n/lb/files_sharing.po b/l10n/lb/files_sharing.po index 1575fc1547..1b02b6939f 100644 --- a/l10n/lb/files_sharing.po +++ b/l10n/lb/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" -"Last-Translator: llaera \n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,28 +30,52 @@ msgstr "Passwuert" msgid "Submit" msgstr "Fortschécken" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s huet den Dossier %s mad der gedeelt" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s deelt den Fichier %s mad dir" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Download" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Eroplueden" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Upload ofbriechen" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Keeng Preview do fir" diff --git a/l10n/lb/lib.po b/l10n/lb/lib.po index 12f02c1dd4..3a82a7edf7 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -47,7 +47,7 @@ msgstr "Admin" msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "Web-Servicer ënnert denger Kontroll" @@ -258,7 +258,7 @@ msgstr "Läscht Joer" msgid "years ago" msgstr "Joren hier" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/lb/user_ldap.po b/l10n/lb/user_ldap.po index 2d45e246d2..b67486d75b 100644 --- a/l10n/lb/user_ldap.po +++ b/l10n/lb/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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 ab6fcfab47..0ff3d16d68 100644 --- a/l10n/lt_LT/core.po +++ b/l10n/lt_LT/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -228,7 +228,7 @@ msgstr "Objekto tipas nenurodytas." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Klaida" @@ -248,7 +248,7 @@ msgstr "Dalinamasi" msgid "Share" msgstr "Dalintis" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Klaida, dalijimosi metu" @@ -348,23 +348,23 @@ msgstr "ištrinti" msgid "share" msgstr "dalintis" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Apsaugota slaptažodžiu" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Klaida nuimant galiojimo laiką" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Klaida nustatant galiojimo laiką" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "Siunčiama..." -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "Laiškas išsiųstas" @@ -463,7 +463,7 @@ msgstr "Pagalba" msgid "Access forbidden" msgstr "Priėjimas draudžiamas" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Negalima rasti" diff --git a/l10n/lt_LT/files.po b/l10n/lt_LT/files.po index ce705267f9..6396841d21 100644 --- a/l10n/lt_LT/files.po +++ b/l10n/lt_LT/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 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" @@ -121,7 +121,7 @@ msgstr "Dalintis" msgid "Delete permanently" msgstr "Ištrinti negrįžtamai" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Ištrinti" @@ -129,7 +129,7 @@ msgstr "Ištrinti" msgid "Rename" msgstr "Pervadinti" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Laukiantis" @@ -161,11 +161,11 @@ msgstr "anuliuoti" msgid "perform delete operation" msgstr "ištrinti" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "įkeliamas 1 failas" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "įkeliami failai" @@ -201,15 +201,15 @@ msgstr "Jūsų atsisiuntimas yra paruošiamas. tai gali užtrukti jei atsisiunč msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Negalimas aplanko pavadinimas. 'Shared' pavadinimas yra rezervuotas ownCloud" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Pavadinimas" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Dydis" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Pakeista" @@ -286,45 +286,45 @@ msgstr "Katalogas" msgid "From link" msgstr "Iš nuorodos" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "Ištrinti failai" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Atšaukti siuntimą" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "Jūs neturite rašymo leidimo." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Čia tuščia. Įkelkite ką nors!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Atsisiųsti" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Nebesidalinti" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "Įkėlimui failas per didelis" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Bandomų įkelti failų dydis viršija maksimalų, kuris leidžiamas šiame serveryje" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Skenuojami failai, prašome palaukti." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Šiuo metu skenuojama" diff --git a/l10n/lt_LT/files_sharing.po b/l10n/lt_LT/files_sharing.po index c6d59f11cd..ac8a368754 100644 --- a/l10n/lt_LT/files_sharing.po +++ b/l10n/lt_LT/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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,28 +30,52 @@ msgstr "Slaptažodis" msgid "Submit" msgstr "Išsaugoti" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s pasidalino su jumis %s aplanku" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s pasidalino su jumis %s failu" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Atsisiųsti" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Įkelti" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Atšaukti siuntimą" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Peržiūra nėra galima" diff --git a/l10n/lt_LT/lib.po b/l10n/lt_LT/lib.po index c91fa67de3..352a441e3c 100644 --- a/l10n/lt_LT/lib.po +++ b/l10n/lt_LT/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -47,7 +47,7 @@ msgstr "Administravimas" msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "jūsų valdomos web paslaugos" @@ -258,7 +258,7 @@ msgstr "praeitais metais" msgid "years ago" msgstr "prieš metus" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/lt_LT/user_ldap.po b/l10n/lt_LT/user_ldap.po index 1be664cebc..cc4485baa5 100644 --- a/l10n/lt_LT/user_ldap.po +++ b/l10n/lt_LT/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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 146ad3890c..4ee5542d59 100644 --- a/l10n/lv/core.po +++ b/l10n/lv/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -226,7 +226,7 @@ msgstr "Nav norādīts objekta tips." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Kļūda" @@ -246,7 +246,7 @@ msgstr "Kopīgs" msgid "Share" msgstr "Dalīties" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Kļūda, daloties" @@ -346,23 +346,23 @@ msgstr "dzēst" msgid "share" msgstr "dalīties" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Aizsargāts ar paroli" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Kļūda, noņemot termiņa datumu" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Kļūda, iestatot termiņa datumu" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "Sūta..." -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "Vēstule nosūtīta" @@ -461,7 +461,7 @@ msgstr "Palīdzība" msgid "Access forbidden" msgstr "Pieeja ir liegta" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Mākonis netika atrasts" diff --git a/l10n/lv/files.po b/l10n/lv/files.po index 9452a9c847..b1698a93e0 100644 --- a/l10n/lv/files.po +++ b/l10n/lv/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 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" @@ -120,7 +120,7 @@ msgstr "Dalīties" msgid "Delete permanently" msgstr "Dzēst pavisam" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Dzēst" @@ -128,7 +128,7 @@ msgstr "Dzēst" msgid "Rename" msgstr "Pārsaukt" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Gaida savu kārtu" @@ -160,11 +160,11 @@ msgstr "atsaukt" msgid "perform delete operation" msgstr "veikt dzēšanas darbību" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "Augšupielādē 1 datni" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "" @@ -200,15 +200,15 @@ msgstr "Tiek sagatavota lejupielāde. Tas var aizņemt kādu laiciņu, ja datnes msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nederīgs mapes nosaukums. “Koplietots” izmantojums ir rezervēts ownCloud servisam." -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Nosaukums" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Izmērs" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Mainīts" @@ -285,45 +285,45 @@ msgstr "Mape" msgid "From link" msgstr "No saites" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "Dzēstās datnes" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Atcelt augšupielādi" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "Jums nav tiesību šeit rakstīt." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Te vēl nekas nav. Rīkojies, sāc augšupielādēt!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Lejupielādēt" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Pārtraukt dalīšanos" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "Datne ir par lielu, lai to augšupielādētu" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Augšupielādējamās datnes pārsniedz servera pieļaujamo datņu augšupielādes apjomu" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Datnes šobrīd tiek caurskatītas, lūdzu, uzgaidiet." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Šobrīd tiek caurskatīts" diff --git a/l10n/lv/files_sharing.po b/l10n/lv/files_sharing.po index 260a895ad7..8a2763ec51 100644 --- a/l10n/lv/files_sharing.po +++ b/l10n/lv/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -29,28 +29,52 @@ msgstr "Parole" msgid "Submit" msgstr "Iesniegt" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s ar jums dalījās ar mapi %s" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s ar jums dalījās ar datni %s" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Lejupielādēt" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Augšupielādēt" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Atcelt augšupielādi" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Nav pieejams priekšskatījums priekš" diff --git a/l10n/lv/lib.po b/l10n/lv/lib.po index bf2fd831db..5c952891c4 100644 --- a/l10n/lv/lib.po +++ b/l10n/lv/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -46,7 +46,7 @@ msgstr "Administratori" msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "tīmekļa servisi tavā varā" @@ -257,7 +257,7 @@ msgstr "gājušajā gadā" msgid "years ago" msgstr "gadus atpakaļ" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/lv/user_ldap.po b/l10n/lv/user_ldap.po index 92dd810cdd..2bd8f6842d 100644 --- a/l10n/lv/user_ldap.po +++ b/l10n/lv/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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 bab8937ac2..3dc2cdcab4 100644 --- a/l10n/mk/core.po +++ b/l10n/mk/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -226,7 +226,7 @@ msgstr "Не е специфициран типот на објект." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Грешка" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "Сподели" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Грешка при споделување" @@ -346,23 +346,23 @@ msgstr "избриши" msgid "share" msgstr "сподели" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Заштитено со лозинка" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Грешка при тргање на рокот на траење" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Грешка при поставување на рок на траење" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "Праќање..." -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "Е-порака пратена" @@ -461,7 +461,7 @@ msgstr "Помош" msgid "Access forbidden" msgstr "Забранет пристап" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Облакот не е најден" diff --git a/l10n/mk/files.po b/l10n/mk/files.po index 15ac727406..33f61785d3 100644 --- a/l10n/mk/files.po +++ b/l10n/mk/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 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" @@ -120,7 +120,7 @@ msgstr "Сподели" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Избриши" @@ -128,7 +128,7 @@ msgstr "Избриши" msgid "Rename" msgstr "Преименувај" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Чека" @@ -160,11 +160,11 @@ msgstr "врати" msgid "perform delete operation" msgstr "" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 датотека се подига" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "" @@ -200,15 +200,15 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Име" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Големина" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Променето" @@ -285,45 +285,45 @@ msgstr "Папка" msgid "From link" msgstr "Од врска" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Откажи прикачување" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Тука нема ништо. Снимете нешто!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Преземи" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Не споделувај" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "Фајлот кој се вчитува е преголем" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Датотеките кои се обидувате да ги подигнете ја надминуваат максималната големина за подигнување датотеки на овој сервер." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Се скенираат датотеки, ве молам почекајте." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Моментално скенирам" diff --git a/l10n/mk/files_sharing.po b/l10n/mk/files_sharing.po index 726a5e18b7..ac0efb09ea 100644 --- a/l10n/mk/files_sharing.po +++ b/l10n/mk/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -29,28 +29,52 @@ msgstr "Лозинка" msgid "Submit" msgstr "Прати" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s ја сподели папката %s со Вас" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s ја сподели датотеката %s со Вас" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Преземи" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Подигни" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Откажи прикачување" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Нема достапно преглед за" diff --git a/l10n/mk/lib.po b/l10n/mk/lib.po index 836a349076..dbe4359e4c 100644 --- a/l10n/mk/lib.po +++ b/l10n/mk/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -46,7 +46,7 @@ msgstr "Админ" msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "веб сервиси под Ваша контрола" @@ -257,7 +257,7 @@ msgstr "минатата година" msgid "years ago" msgstr "пред години" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/mk/user_ldap.po b/l10n/mk/user_ldap.po index a3e8985fa6..b85bbf1e56 100644 --- a/l10n/mk/user_ldap.po +++ b/l10n/mk/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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/ml_IN/files_sharing.po b/l10n/ml_IN/files_sharing.po index dbf8befe5f..088c381190 100644 --- a/l10n/ml_IN/files_sharing.po +++ b/l10n/ml_IN/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 08:25+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -29,28 +29,52 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "" diff --git a/l10n/ms_MY/core.po b/l10n/ms_MY/core.po index 74c4ed0031..2c377e673d 100644 --- a/l10n/ms_MY/core.po +++ b/l10n/ms_MY/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -226,7 +226,7 @@ msgstr "" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Ralat" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "Kongsi" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "" @@ -346,23 +346,23 @@ msgstr "" msgid "share" msgstr "" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "" -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "" @@ -461,7 +461,7 @@ msgstr "Bantuan" msgid "Access forbidden" msgstr "Larangan akses" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Awan tidak dijumpai" diff --git a/l10n/ms_MY/files.po b/l10n/ms_MY/files.po index 30702361dd..1cad5bda69 100644 --- a/l10n/ms_MY/files.po +++ b/l10n/ms_MY/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 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" @@ -120,7 +120,7 @@ msgstr "Kongsi" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Padam" @@ -128,7 +128,7 @@ msgstr "Padam" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Dalam proses" @@ -160,11 +160,11 @@ msgstr "" msgid "perform delete operation" msgstr "" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "" @@ -200,15 +200,15 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Nama" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Saiz" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Dimodifikasi" @@ -285,45 +285,45 @@ msgstr "Folder" msgid "From link" msgstr "" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Batal muat naik" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Tiada apa-apa di sini. Muat naik sesuatu!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Muat turun" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "Muatnaik terlalu besar" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Fail yang cuba dimuat naik melebihi saiz maksimum fail upload server" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Fail sedang diimbas, harap bersabar." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Imbasan semasa" diff --git a/l10n/ms_MY/files_sharing.po b/l10n/ms_MY/files_sharing.po index cbc98cfdb5..ca3a8ca1f2 100644 --- a/l10n/ms_MY/files_sharing.po +++ b/l10n/ms_MY/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -29,28 +29,52 @@ msgstr "Kata laluan" msgid "Submit" msgstr "Hantar" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Muat turun" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Muat naik" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Batal muat naik" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "" diff --git a/l10n/ms_MY/lib.po b/l10n/ms_MY/lib.po index d0deb26d3f..7e64969eb0 100644 --- a/l10n/ms_MY/lib.po +++ b/l10n/ms_MY/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -46,7 +46,7 @@ msgstr "Admin" msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "Perkhidmatan web di bawah kawalan anda" @@ -257,7 +257,7 @@ msgstr "" msgid "years ago" msgstr "" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/ms_MY/user_ldap.po b/l10n/ms_MY/user_ldap.po index 290acb297b..ac60e6d8b9 100644 --- a/l10n/ms_MY/user_ldap.po +++ b/l10n/ms_MY/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/my_MM/core.po b/l10n/my_MM/core.po index 1d1bd2e714..3b725afd1b 100644 --- a/l10n/my_MM/core.po +++ b/l10n/my_MM/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -226,7 +226,7 @@ msgstr "" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "" @@ -346,23 +346,23 @@ msgstr "ဖျက်မည်" msgid "share" msgstr "ဝေမျှမည်" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "စကားဝှက်ဖြင့်ကာကွယ်ထားသည်" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "" -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "" @@ -461,7 +461,7 @@ msgstr "အကူအညီ" msgid "Access forbidden" msgstr "" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "မတွေ့ရှိမိပါ" diff --git a/l10n/my_MM/files.po b/l10n/my_MM/files.po index c7aec58aa3..6b951723bf 100644 --- a/l10n/my_MM/files.po +++ b/l10n/my_MM/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:41+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" @@ -120,7 +120,7 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "" @@ -128,7 +128,7 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "" @@ -160,11 +160,11 @@ msgstr "" msgid "perform delete operation" msgstr "" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "" @@ -200,15 +200,15 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "" @@ -285,45 +285,45 @@ msgstr "" msgid "From link" msgstr "" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "ဒေါင်းလုတ်" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "" diff --git a/l10n/my_MM/files_sharing.po b/l10n/my_MM/files_sharing.po index 7cf20920a7..640fd07c17 100644 --- a/l10n/my_MM/files_sharing.po +++ b/l10n/my_MM/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -29,28 +29,52 @@ msgstr "စကားဝှက်" msgid "Submit" msgstr "ထည့်သွင်းမည်" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "ဒေါင်းလုတ်" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "" diff --git a/l10n/my_MM/lib.po b/l10n/my_MM/lib.po index 5b05b4a911..cd8ea13538 100644 --- a/l10n/my_MM/lib.po +++ b/l10n/my_MM/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -46,7 +46,7 @@ msgstr "အက်ဒမင်" msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "သင်၏ထိန်းချုပ်မှု့အောက်တွင်ရှိသော Web services" @@ -257,7 +257,7 @@ msgstr "မနှစ်က" msgid "years ago" msgstr "နှစ် အရင်က" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/my_MM/user_ldap.po b/l10n/my_MM/user_ldap.po index 4cb821a8db..1d0a51d4a3 100644 --- a/l10n/my_MM/user_ldap.po +++ b/l10n/my_MM/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/core.po b/l10n/nb_NO/core.po index 22ee3db46c..d65bf7c168 100644 --- a/l10n/nb_NO/core.po +++ b/l10n/nb_NO/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -227,7 +227,7 @@ msgstr "" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Feil" @@ -247,7 +247,7 @@ msgstr "Delt" msgid "Share" msgstr "Del" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Feil under deling" @@ -347,23 +347,23 @@ msgstr "slett" msgid "share" msgstr "del" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Passordbeskyttet" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Kan ikke sette utløpsdato" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "Sender..." -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "E-post sendt" @@ -462,7 +462,7 @@ msgstr "Hjelp" msgid "Access forbidden" msgstr "Tilgang nektet" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Sky ikke funnet" diff --git a/l10n/nb_NO/files.po b/l10n/nb_NO/files.po index a3d0e3fdf3..e5b14ff8f8 100644 --- a/l10n/nb_NO/files.po +++ b/l10n/nb_NO/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 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" @@ -122,7 +122,7 @@ msgstr "Del" msgid "Delete permanently" msgstr "Slett permanent" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Slett" @@ -130,7 +130,7 @@ msgstr "Slett" msgid "Rename" msgstr "Omdøp" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Ventende" @@ -162,11 +162,11 @@ msgstr "angre" msgid "perform delete operation" msgstr "utfør sletting" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 fil lastes opp" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "filer lastes opp" @@ -202,15 +202,15 @@ msgstr "Nedlastingen din klargjøres. Hvis filene er store kan dette ta litt tid msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Ugyldig mappenavn. Bruk av \"Shared\" er reservert av ownCloud." -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Navn" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Størrelse" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Endret" @@ -287,45 +287,45 @@ msgstr "Mappe" msgid "From link" msgstr "Fra link" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "Slettet filer" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Avbryt opplasting" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "Du har ikke skrivetilgang her." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Ingenting her. Last opp noe!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Last ned" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Avslutt deling" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "Filen er for stor" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Filene du prøver å laste opp er for store for å laste opp til denne serveren." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Skanner etter filer, vennligst vent." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Pågående skanning" diff --git a/l10n/nb_NO/files_sharing.po b/l10n/nb_NO/files_sharing.po index 4e20072c19..ed32d42f6c 100644 --- a/l10n/nb_NO/files_sharing.po +++ b/l10n/nb_NO/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" -"Last-Translator: Stein-Aksel Basma \n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,28 +30,52 @@ msgstr "Passord" msgid "Submit" msgstr "Send inn" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s delte mappen %s med deg" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s delte filen %s med deg" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Last ned" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Last opp" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Avbryt opplasting" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Forhåndsvisning ikke tilgjengelig for" diff --git a/l10n/nb_NO/lib.po b/l10n/nb_NO/lib.po index 771095599f..71ab9aec2b 100644 --- a/l10n/nb_NO/lib.po +++ b/l10n/nb_NO/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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 @@ msgstr "Admin" msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "web tjenester du kontrollerer" @@ -257,7 +257,7 @@ msgstr "forrige år" msgid "years ago" msgstr "år siden" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/nb_NO/user_ldap.po b/l10n/nb_NO/user_ldap.po index ed9414cb2e..c4942645d3 100644 --- a/l10n/nb_NO/user_ldap.po +++ b/l10n/nb_NO/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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/ne/files_sharing.po b/l10n/ne/files_sharing.po index 4dc2fd5cd4..8f745e77bb 100644 --- a/l10n/ne/files_sharing.po +++ b/l10n/ne/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -29,28 +29,52 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "" -#: templates/public.php:44 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "" -#: templates/public.php:54 +#: templates/public.php:56 msgid "Cancel upload" msgstr "" -#: templates/public.php:83 +#: templates/public.php:85 msgid "No preview available for" msgstr "" diff --git a/l10n/nl/core.po b/l10n/nl/core.po index 11f2fa2b7a..2041e32605 100644 --- a/l10n/nl/core.po +++ b/l10n/nl/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -228,7 +228,7 @@ msgstr "Het object type is niet gespecificeerd." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Fout" @@ -248,7 +248,7 @@ msgstr "Gedeeld" msgid "Share" msgstr "Delen" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Fout tijdens het delen" @@ -348,23 +348,23 @@ msgstr "verwijderen" msgid "share" msgstr "deel" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Wachtwoord beveiligd" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Fout tijdens het verwijderen van de verval datum" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Fout tijdens het instellen van de vervaldatum" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "Versturen ..." -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "E-mail verzonden" @@ -463,7 +463,7 @@ msgstr "Help" msgid "Access forbidden" msgstr "Toegang verboden" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Cloud niet gevonden" diff --git a/l10n/nl/files.po b/l10n/nl/files.po index 9ccf2501fe..02a39f9a88 100644 --- a/l10n/nl/files.po +++ b/l10n/nl/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 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" @@ -121,7 +121,7 @@ msgstr "Delen" msgid "Delete permanently" msgstr "Verwijder definitief" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Verwijder" @@ -129,7 +129,7 @@ msgstr "Verwijder" msgid "Rename" msgstr "Hernoem" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "In behandeling" @@ -161,11 +161,11 @@ msgstr "ongedaan maken" msgid "perform delete operation" msgstr "uitvoeren verwijderactie" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 bestand wordt ge-upload" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "bestanden aan het uploaden" @@ -201,15 +201,15 @@ msgstr "Uw download wordt voorbereid. Dit kan enige tijd duren bij grote bestand msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Ongeldige mapnaam. Gebruik van'Gedeeld' is voorbehouden aan Owncloud" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Naam" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Grootte" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Aangepast" @@ -286,45 +286,45 @@ msgstr "Map" msgid "From link" msgstr "Vanaf link" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "Verwijderde bestanden" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Upload afbreken" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "U hebt hier geen schrijfpermissies." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Er bevindt zich hier niets. Upload een bestand!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Downloaden" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Stop met delen" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "Upload is te groot" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "De bestanden die u probeert te uploaden zijn groter dan de maximaal toegestane bestandsgrootte voor deze server." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Bestanden worden gescand, even wachten." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Er wordt gescand" diff --git a/l10n/nl/files_sharing.po b/l10n/nl/files_sharing.po index 694d58f349..8223ec70b1 100644 --- a/l10n/nl/files_sharing.po +++ b/l10n/nl/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" -"Last-Translator: André Koot \n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -30,28 +30,52 @@ msgstr "Wachtwoord" msgid "Submit" msgstr "Verzenden" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s deelt de map %s met u" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s deelt het bestand %s met u" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Downloaden" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Uploaden" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Upload afbreken" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Geen voorbeeldweergave beschikbaar voor" diff --git a/l10n/nl/lib.po b/l10n/nl/lib.po index 5e7af88a23..242adb3fe1 100644 --- a/l10n/nl/lib.po +++ b/l10n/nl/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-28 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 14:50+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: Len \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 7c9429c354..1fbf3553a8 100644 --- a/l10n/nl/user_ldap.po +++ b/l10n/nl/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-28 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 15:00+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: Len \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 0fcbde9302..181d16dc83 100644 --- a/l10n/nn_NO/core.po +++ b/l10n/nn_NO/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -228,7 +228,7 @@ msgstr "Objekttypen er ikkje spesifisert." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Feil" @@ -248,7 +248,7 @@ msgstr "Delt" msgid "Share" msgstr "Del" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Feil ved deling" @@ -348,23 +348,23 @@ msgstr "slett" msgid "share" msgstr "del" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Passordverna" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Klarte ikkje fjerna utløpsdato" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Klarte ikkje setja utløpsdato" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "Sender …" -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "E-post sendt" @@ -463,7 +463,7 @@ msgstr "Hjelp" msgid "Access forbidden" msgstr "Tilgang forbudt" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Fann ikkje skyen" diff --git a/l10n/nn_NO/files.po b/l10n/nn_NO/files.po index 5c8ea2aa31..1508b5b0a5 100644 --- a/l10n/nn_NO/files.po +++ b/l10n/nn_NO/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 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" @@ -122,7 +122,7 @@ msgstr "Del" msgid "Delete permanently" msgstr "Slett for godt" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Slett" @@ -130,7 +130,7 @@ msgstr "Slett" msgid "Rename" msgstr "Endra namn" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Under vegs" @@ -162,11 +162,11 @@ msgstr "angre" msgid "perform delete operation" msgstr "utfør sletting" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 fil lastar opp" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "filer lastar opp" @@ -202,15 +202,15 @@ msgstr "Gjer klar nedlastinga di. Dette kan ta ei stund viss filene er store." msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Ugyldig mappenamn. Mappa «Shared» er reservert av ownCloud" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Namn" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Storleik" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Endra" @@ -287,45 +287,45 @@ msgstr "Mappe" msgid "From link" msgstr "Frå lenkje" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "Sletta filer" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Avbryt opplasting" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "Du har ikkje skriverettar her." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Ingenting her. Last noko opp!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Last ned" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Udel" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "For stor opplasting" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Filene du prøver å lasta opp er større enn maksgrensa til denne tenaren." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Skannar filer, ver venleg og vent." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Køyrande skanning" diff --git a/l10n/nn_NO/files_sharing.po b/l10n/nn_NO/files_sharing.po index 636d57bd68..8ae98be0ca 100644 --- a/l10n/nn_NO/files_sharing.po +++ b/l10n/nn_NO/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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,28 +30,52 @@ msgstr "Passord" msgid "Submit" msgstr "Send" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s delte mappa %s med deg" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s delte fila %s med deg" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Last ned" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Last opp" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Avbryt opplasting" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Inga førehandsvising tilgjengeleg for" diff --git a/l10n/nn_NO/lib.po b/l10n/nn_NO/lib.po index 3ca8a975f7..72832d2013 100644 --- a/l10n/nn_NO/lib.po +++ b/l10n/nn_NO/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -47,7 +47,7 @@ msgstr "Administrer" msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "Vev tjenester under din kontroll" @@ -258,7 +258,7 @@ msgstr "i fjor" msgid "years ago" msgstr "år sidan" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/nn_NO/user_ldap.po b/l10n/nn_NO/user_ldap.po index 888152a0e1..b70768d7de 100644 --- a/l10n/nn_NO/user_ldap.po +++ b/l10n/nn_NO/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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 f7f6fb8762..309f87a709 100644 --- a/l10n/oc/core.po +++ b/l10n/oc/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -226,7 +226,7 @@ msgstr "" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Error" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "Parteja" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Error al partejar" @@ -346,23 +346,23 @@ msgstr "escafa" msgid "share" msgstr "parteja" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Parat per senhal" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Error al metre de la data d'expiracion" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Error setting expiration date" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "" -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "" @@ -461,7 +461,7 @@ msgstr "Ajuda" msgid "Access forbidden" msgstr "Acces enebit" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Nívol pas trobada" diff --git a/l10n/oc/files.po b/l10n/oc/files.po index 7963637bb4..950eb920b5 100644 --- a/l10n/oc/files.po +++ b/l10n/oc/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 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" @@ -120,7 +120,7 @@ msgstr "Parteja" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Escafa" @@ -128,7 +128,7 @@ msgstr "Escafa" msgid "Rename" msgstr "Torna nomenar" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Al esperar" @@ -160,11 +160,11 @@ msgstr "defar" msgid "perform delete operation" msgstr "" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 fichièr al amontcargar" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "fichièrs al amontcargar" @@ -200,15 +200,15 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Nom" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Talha" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Modificat" @@ -285,45 +285,45 @@ msgstr "Dorsièr" msgid "From link" msgstr "" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr " Anulla l'amontcargar" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Pas res dedins. Amontcarga qualquaren" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Avalcarga" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Pas partejador" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "Amontcargament tròp gròs" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Los fichièrs que sias a amontcargar son tròp pesucs per la talha maxi pel servidor." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Los fiichièrs son a èsser explorats, " -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Exploracion en cors" diff --git a/l10n/oc/files_sharing.po b/l10n/oc/files_sharing.po index aff7086e91..d8f6bb9a86 100644 --- a/l10n/oc/files_sharing.po +++ b/l10n/oc/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -29,28 +29,52 @@ msgstr "Senhal" msgid "Submit" msgstr "Sosmetre" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Avalcarga" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Amontcarga" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr " Anulla l'amontcargar" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "" diff --git a/l10n/oc/lib.po b/l10n/oc/lib.po index 9fd1bfbc34..758bf58b23 100644 --- a/l10n/oc/lib.po +++ b/l10n/oc/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -46,7 +46,7 @@ msgstr "Admin" msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "Services web jos ton contraròtle" @@ -257,7 +257,7 @@ msgstr "an passat" msgid "years ago" msgstr "ans a" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/oc/user_ldap.po b/l10n/oc/user_ldap.po index 94e56e4b2a..a28bd120b8 100644 --- a/l10n/oc/user_ldap.po +++ b/l10n/oc/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/core.po b/l10n/pl/core.po index 6ddef20473..7f493d24ba 100644 --- a/l10n/pl/core.po +++ b/l10n/pl/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -228,7 +228,7 @@ msgstr "Nie określono typu obiektu." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Błąd" @@ -248,7 +248,7 @@ msgstr "Udostępniono" msgid "Share" msgstr "Udostępnij" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Błąd podczas współdzielenia" @@ -348,23 +348,23 @@ msgstr "usuń" msgid "share" msgstr "współdziel" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Zabezpieczone hasłem" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Błąd podczas usuwania daty wygaśnięcia" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Błąd podczas ustawiania daty wygaśnięcia" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "Wysyłanie..." -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "E-mail wysłany" @@ -463,7 +463,7 @@ msgstr "Pomoc" msgid "Access forbidden" msgstr "Dostęp zabroniony" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Nie odnaleziono chmury" diff --git a/l10n/pl/files.po b/l10n/pl/files.po index 3d1c0da649..4b137554e6 100644 --- a/l10n/pl/files.po +++ b/l10n/pl/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 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" @@ -122,7 +122,7 @@ msgstr "Udostępnij" msgid "Delete permanently" msgstr "Trwale usuń" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Usuń" @@ -130,7 +130,7 @@ msgstr "Usuń" msgid "Rename" msgstr "Zmień nazwę" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Oczekujące" @@ -162,11 +162,11 @@ msgstr "cofnij" msgid "perform delete operation" msgstr "wykonaj operację usunięcia" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 plik wczytywany" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "pliki wczytane" @@ -202,15 +202,15 @@ msgstr "Pobieranie jest przygotowywane. Może to zająć trochę czasu jeśli pl msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nieprawidłowa nazwa folderu. Korzystanie z nazwy „Shared” jest zarezerwowane dla ownCloud" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Nazwa" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Rozmiar" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Modyfikacja" @@ -287,45 +287,45 @@ msgstr "Folder" msgid "From link" msgstr "Z odnośnika" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "Pliki usunięte" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Anuluj wysyłanie" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "Nie masz uprawnień do zapisu w tym miejscu." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Pusto. Wyślij coś!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Pobierz" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Zatrzymaj współdzielenie" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "Ładowany plik jest za duży" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Pliki, które próbujesz przesłać, przekraczają maksymalną dopuszczalną wielkość." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Skanowanie plików, proszę czekać." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Aktualnie skanowane" diff --git a/l10n/pl/files_sharing.po b/l10n/pl/files_sharing.po index fd067dfc86..9ca97e1602 100644 --- a/l10n/pl/files_sharing.po +++ b/l10n/pl/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -29,28 +29,52 @@ msgstr "Hasło" msgid "Submit" msgstr "Wyślij" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s współdzieli folder z tobą %s" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s współdzieli z tobą plik %s" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Pobierz" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Wyślij" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Anuluj wysyłanie" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Podgląd nie jest dostępny dla" diff --git a/l10n/pl/lib.po b/l10n/pl/lib.po index 69554bc77c..e4a600dd10 100644 --- a/l10n/pl/lib.po +++ b/l10n/pl/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -47,7 +47,7 @@ msgstr "Administrator" msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "Kontrolowane serwisy" @@ -258,7 +258,7 @@ msgstr "w zeszłym roku" msgid "years ago" msgstr "lat temu" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/pl/user_ldap.po b/l10n/pl/user_ldap.po index 65f5dbf639..dcd7013f69 100644 --- a/l10n/pl/user_ldap.po +++ b/l10n/pl/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/core.po b/l10n/pt_BR/core.po index 72f480100d..35b7103dc3 100644 --- a/l10n/pt_BR/core.po +++ b/l10n/pt_BR/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 12:10+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -228,7 +228,7 @@ msgstr "O tipo de objeto não foi especificado." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Erro" @@ -248,7 +248,7 @@ msgstr "Compartilhados" msgid "Share" msgstr "Compartilhar" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Erro ao compartilhar" @@ -348,23 +348,23 @@ msgstr "remover" msgid "share" msgstr "compartilhar" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Protegido com senha" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Erro ao remover data de expiração" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Erro ao definir data de expiração" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "Enviando ..." -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "E-mail enviado" @@ -463,7 +463,7 @@ msgstr "Ajuda" msgid "Access forbidden" msgstr "Acesso proibido" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Cloud não encontrado" diff --git a/l10n/pt_BR/files.po b/l10n/pt_BR/files.po index 6571b85a95..90375a93ab 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 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" @@ -123,7 +123,7 @@ msgstr "Compartilhar" msgid "Delete permanently" msgstr "Excluir permanentemente" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Excluir" @@ -131,7 +131,7 @@ msgstr "Excluir" msgid "Rename" msgstr "Renomear" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Pendente" @@ -163,11 +163,11 @@ msgstr "desfazer" msgid "perform delete operation" msgstr "realizar operação de exclusão" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "enviando 1 arquivo" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "enviando arquivos" @@ -203,15 +203,15 @@ msgstr "Seu download está sendo preparado. Isto pode levar algum tempo se os ar msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nome de pasta inválido. O uso de 'Shared' é reservado para o Owncloud" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Nome" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Tamanho" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Modificado" @@ -288,45 +288,45 @@ msgstr "Pasta" msgid "From link" msgstr "Do link" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "Arquivos apagados" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Cancelar upload" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "Você não possui permissão de escrita aqui." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Nada aqui.Carrege alguma coisa!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Baixar" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Descompartilhar" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "Upload muito grande" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Os arquivos que você está tentando carregar excedeu o tamanho máximo para arquivos no servidor." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Arquivos sendo escaneados, por favor aguarde." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Scanning atual" diff --git a/l10n/pt_BR/files_sharing.po b/l10n/pt_BR/files_sharing.po index e4acbc625b..17ff5ba482 100644 --- a/l10n/pt_BR/files_sharing.po +++ b/l10n/pt_BR/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" -"Last-Translator: Flávio Veras \n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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,28 +30,52 @@ msgstr "Senha" msgid "Submit" msgstr "Submeter" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s compartilhou a pasta %s com você" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s compartilhou o arquivo %s com você" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Baixar" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Upload" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Cancelar upload" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Nenhuma visualização disponível para" diff --git a/l10n/pt_BR/files_trashbin.po b/l10n/pt_BR/files_trashbin.po index 2d31c2c1a9..8bac48b567 100644 --- a/l10n/pt_BR/files_trashbin.po +++ b/l10n/pt_BR/files_trashbin.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Flávio Veras , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 09:50+0000\n" +"Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -69,7 +70,7 @@ msgstr "{count} arquivos" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" -msgstr "" +msgstr "restaurado" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" diff --git a/l10n/pt_BR/lib.po b/l10n/pt_BR/lib.po index 5d2ae3453f..b5dc7ad4e4 100644 --- a/l10n/pt_BR/lib.po +++ b/l10n/pt_BR/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-24 10:30+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/user_ldap.po b/l10n/pt_BR/user_ldap.po index aeab73f538..ddc3d7e66e 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-28 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 12:10+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: tuliouel\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 6210982a92..42c0929b11 100644 --- a/l10n/pt_PT/core.po +++ b/l10n/pt_PT/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 11:30+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: Helder Meneses \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -230,7 +230,7 @@ msgstr "O tipo de objecto não foi especificado" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Erro" @@ -250,7 +250,7 @@ msgstr "Partilhado" msgid "Share" msgstr "Partilhar" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Erro ao partilhar" @@ -350,23 +350,23 @@ msgstr "apagar" msgid "share" msgstr "partilhar" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Protegido com palavra-passe" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Erro ao retirar a data de expiração" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Erro ao aplicar a data de expiração" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "A Enviar..." -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "E-mail enviado" @@ -465,7 +465,7 @@ msgstr "Ajuda" msgid "Access forbidden" msgstr "Acesso interdito" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Cloud nao encontrada" diff --git a/l10n/pt_PT/files.po b/l10n/pt_PT/files.po index 480cb0feb4..f9a45e1db2 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-29 01:55-0400\n" -"PO-Revision-Date: 2013-07-28 10:30+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 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" @@ -122,7 +122,7 @@ msgstr "Partilhar" msgid "Delete permanently" msgstr "Eliminar permanentemente" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Eliminar" @@ -130,7 +130,7 @@ msgstr "Eliminar" msgid "Rename" msgstr "Renomear" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Pendente" @@ -162,11 +162,11 @@ msgstr "desfazer" msgid "perform delete operation" msgstr "Executar a tarefa de apagar" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "A enviar 1 ficheiro" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "A enviar os ficheiros" @@ -202,15 +202,15 @@ msgstr "O seu download está a ser preparado. Este processo pode demorar algum t msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nome de pasta inválido. O Uso de 'shared' é reservado para o ownCloud" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Nome" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Tamanho" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Modificado" @@ -287,45 +287,45 @@ msgstr "Pasta" msgid "From link" msgstr "Da ligação" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "Ficheiros eliminados" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Cancelar envio" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "Não tem permissões de escrita aqui." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Vazio. Envie alguma coisa!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Transferir" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Deixar de partilhar" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "Upload muito grande" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Os ficheiro que está a tentar enviar excedem o tamanho máximo de envio neste servidor." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Os ficheiros estão a ser analisados, por favor aguarde." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Análise actual" diff --git a/l10n/pt_PT/files_encryption.po b/l10n/pt_PT/files_encryption.po index b9a5089858..375dee2ebe 100644 --- a/l10n/pt_PT/files_encryption.po +++ b/l10n/pt_PT/files_encryption.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-22 15:30+0000\n" -"Last-Translator: moura232 \n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 10:10+0000\n" +"Last-Translator: Helder Meneses \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -54,7 +54,7 @@ msgstr "" msgid "" "Could not update the private key password. Maybe the old password was not " "correct." -msgstr "" +msgstr "Não foi possível alterar a chave. Possivelmente a password antiga não está correcta." #: files/error.php:7 msgid "" @@ -66,7 +66,7 @@ msgstr "Chave privada não é válida! Provavelmente senha foi alterada fora do #: hooks/hooks.php:44 msgid "Missing requirements." -msgstr "" +msgstr "Faltam alguns requisitos." #: hooks/hooks.php:45 msgid "" @@ -100,11 +100,11 @@ msgstr "Encriptação" #: templates/settings-admin.php:10 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" -msgstr "" +msgstr "Active a chave de recuperação (permite recuperar os ficheiros no caso de perda da password):" #: templates/settings-admin.php:14 msgid "Recovery key password" -msgstr "" +msgstr "Chave de recuperação da conta" #: templates/settings-admin.php:21 templates/settings-personal.php:54 msgid "Enabled" @@ -116,15 +116,15 @@ msgstr "Desactivado" #: templates/settings-admin.php:34 msgid "Change recovery key password:" -msgstr "" +msgstr "Alterar a chave de recuperação:" #: templates/settings-admin.php:41 msgid "Old Recovery key password" -msgstr "" +msgstr "Chave anterior de recuperação da conta" #: templates/settings-admin.php:48 msgid "New Recovery key password" -msgstr "" +msgstr "Nova chave de recuperação da conta" #: templates/settings-admin.php:53 msgid "Change Password" @@ -146,11 +146,11 @@ msgstr "" #: templates/settings-personal.php:24 msgid "Old log-in password" -msgstr "" +msgstr "Password anterior da conta" #: templates/settings-personal.php:30 msgid "Current log-in password" -msgstr "" +msgstr "Password actual da conta" #: templates/settings-personal.php:35 msgid "Update Private Key Password" @@ -164,7 +164,7 @@ msgstr "ativar recuperação do password:" msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" -msgstr "" +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:63 msgid "File recovery settings updated" diff --git a/l10n/pt_PT/files_sharing.po b/l10n/pt_PT/files_sharing.po index efa7e06de1..6cb410e6e1 100644 --- a/l10n/pt_PT/files_sharing.po +++ b/l10n/pt_PT/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" -"Last-Translator: moliveira \n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,28 +30,52 @@ msgstr "Password" msgid "Submit" msgstr "Submeter" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s partilhou a pasta %s consigo" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s partilhou o ficheiro %s consigo" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Transferir" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Carregar" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Cancelar envio" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Não há pré-visualização para" diff --git a/l10n/pt_PT/lib.po b/l10n/pt_PT/lib.po index 9cba8216b2..1a3939583a 100644 --- a/l10n/pt_PT/lib.po +++ b/l10n/pt_PT/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 13:00+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: Helder Meneses \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/user_ldap.po b/l10n/pt_PT/user_ldap.po index ed8da9741b..48979e5e80 100644 --- a/l10n/pt_PT/user_ldap.po +++ b/l10n/pt_PT/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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 9107eae919..1537c13dd9 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-29 08:10+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: corneliu.e \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -230,7 +230,7 @@ msgstr "Tipul obiectului nu este specificat." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Eroare" @@ -250,7 +250,7 @@ msgstr "Partajat" msgid "Share" msgstr "Partajează" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Eroare la partajare" @@ -350,23 +350,23 @@ msgstr "ștergere" msgid "share" msgstr "partajare" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Protejare cu parolă" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Eroare la anularea datei de expirare" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Eroare la specificarea datei de expirare" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "Se expediază..." -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "Mesajul a fost expediat" @@ -465,7 +465,7 @@ msgstr "Ajutor" msgid "Access forbidden" msgstr "Acces restricționat" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Nu s-a găsit" diff --git a/l10n/ro/files.po b/l10n/ro/files.po index 29b550b041..766d472d73 100644 --- a/l10n/ro/files.po +++ b/l10n/ro/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 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" @@ -123,7 +123,7 @@ msgstr "Partajează" msgid "Delete permanently" msgstr "Stergere permanenta" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Șterge" @@ -131,7 +131,7 @@ msgstr "Șterge" msgid "Rename" msgstr "Redenumire" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "În așteptare" @@ -163,11 +163,11 @@ msgstr "Anulează ultima acțiune" msgid "perform delete operation" msgstr "efectueaza operatiunea de stergere" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "un fișier se încarcă" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "fișiere se încarcă" @@ -203,15 +203,15 @@ msgstr "Se pregătește descărcarea. Aceasta poate să dureze ceva timp dacă f msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Invalid folder name. Usage of 'Shared' is reserved by Ownclou" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Nume" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Dimensiune" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Modificat" @@ -288,45 +288,45 @@ msgstr "Dosar" msgid "From link" msgstr "de la adresa" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "Sterge fisierele" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Anulează încărcarea" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "Nu ai permisiunea de a sterge fisiere aici." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Nimic aici. Încarcă ceva!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Descarcă" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Anulare partajare" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "Fișierul încărcat este prea mare" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Fișierul care l-ai încărcat a depășită limita maximă admisă la încărcare pe acest server." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Fișierele sunt scanate, te rog așteptă." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "În curs de scanare" diff --git a/l10n/ro/files_sharing.po b/l10n/ro/files_sharing.po index 16ec0309ae..49b2267a3f 100644 --- a/l10n/ro/files_sharing.po +++ b/l10n/ro/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" -"Last-Translator: sergiu_sechel \n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,28 +30,52 @@ msgstr "Parolă" msgid "Submit" msgstr "Trimite" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s a partajat directorul %s cu tine" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s a partajat fișierul %s cu tine" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Descarcă" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Încărcare" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Anulează încărcarea" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Nici o previzualizare disponibilă pentru " diff --git a/l10n/ro/lib.po b/l10n/ro/lib.po index 3e46872e4b..c2f89f171d 100644 --- a/l10n/ro/lib.po +++ b/l10n/ro/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-29 08:00+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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 a8544e419c..f56facba0d 100644 --- a/l10n/ro/user_ldap.po +++ b/l10n/ro/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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 4ac59f4bd0..12a8bcb2a5 100644 --- a/l10n/ru/core.po +++ b/l10n/ru/core.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -232,7 +232,7 @@ msgstr "Тип объекта не указан" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Ошибка" @@ -252,7 +252,7 @@ msgstr "Общие" msgid "Share" msgstr "Открыть доступ" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Ошибка при открытии доступа" @@ -352,23 +352,23 @@ msgstr "удалить" msgid "share" msgstr "открыть доступ" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Защищено паролем" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Ошибка при отмене срока доступа" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Ошибка при установке срока доступа" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "Отправляется ..." -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "Письмо отправлено" @@ -467,7 +467,7 @@ msgstr "Помощь" msgid "Access forbidden" msgstr "Доступ запрещён" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Облако не найдено" diff --git a/l10n/ru/files.po b/l10n/ru/files.po index 593ec76547..dbb38a0716 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 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" @@ -124,7 +124,7 @@ msgstr "Открыть доступ" msgid "Delete permanently" msgstr "Удалено навсегда" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Удалить" @@ -132,7 +132,7 @@ msgstr "Удалить" msgid "Rename" msgstr "Переименовать" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Ожидание" @@ -164,11 +164,11 @@ msgstr "отмена" msgid "perform delete operation" msgstr "выполнить операцию удаления" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "загружается 1 файл" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "файлы загружаются" @@ -204,15 +204,15 @@ msgstr "Загрузка началась. Это может потребова msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Неправильное имя каталога. Имя 'Shared' зарезервировано." -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Имя" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Размер" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Изменён" @@ -289,45 +289,45 @@ msgstr "Папка" msgid "From link" msgstr "Из ссылки" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "Удалённые файлы" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Отмена загрузки" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "У вас нет разрешений на запись здесь." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Здесь ничего нет. Загрузите что-нибудь!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Скачать" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Закрыть общий доступ" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "Файл слишком велик" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Файлы, которые вы пытаетесь загрузить, превышают лимит для файлов на этом сервере." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Подождите, файлы сканируются." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Текущее сканирование" diff --git a/l10n/ru/files_sharing.po b/l10n/ru/files_sharing.po index c55ea5d249..2c518ea20c 100644 --- a/l10n/ru/files_sharing.po +++ b/l10n/ru/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" -"Last-Translator: Victor Bravo <>\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,28 +30,52 @@ msgstr "Пароль" msgid "Submit" msgstr "Отправить" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s открыл доступ к папке %s для Вас" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s открыл доступ к файлу %s для Вас" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Скачать" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Загрузка" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Отмена загрузки" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Предпросмотр недоступен для" diff --git a/l10n/ru/lib.po b/l10n/ru/lib.po index 9a6c71a342..2aab4fee2d 100644 --- a/l10n/ru/lib.po +++ b/l10n/ru/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-29 12:40+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: Alexander Shashkevych \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 0e5f3faf89..7558860d48 100644 --- a/l10n/ru/user_ldap.po +++ b/l10n/ru/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-29 10:50+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: Alexander Shashkevych \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 f0c6023799..d891de9308 100644 --- a/l10n/si_LK/core.po +++ b/l10n/si_LK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -226,7 +226,7 @@ msgstr "" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "දෝෂයක්" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "බෙදා හදා ගන්න" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "" @@ -346,23 +346,23 @@ msgstr "මකන්න" msgid "share" msgstr "බෙදාහදාගන්න" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "මුර පදයකින් ආරක්ශාකර ඇත" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "කල් ඉකුත් දිනය ඉවත් කිරීමේ දෝෂයක්" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "කල් ඉකුත් දිනය ස්ථාපනය කිරීමේ දෝෂයක්" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "" -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "" @@ -461,7 +461,7 @@ msgstr "උදව්" msgid "Access forbidden" msgstr "ඇතුල් වීම තහනම්" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "සොයා ගත නොහැක" diff --git a/l10n/si_LK/files.po b/l10n/si_LK/files.po index acc9d59500..8271038a66 100644 --- a/l10n/si_LK/files.po +++ b/l10n/si_LK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 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" @@ -120,7 +120,7 @@ msgstr "බෙදා හදා ගන්න" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "මකා දමන්න" @@ -128,7 +128,7 @@ msgstr "මකා දමන්න" msgid "Rename" msgstr "නැවත නම් කරන්න" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "" @@ -160,11 +160,11 @@ msgstr "නිෂ්ප්‍රභ කරන්න" msgid "perform delete operation" msgstr "" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 ගොනුවක් උඩගත කෙරේ" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "" @@ -200,15 +200,15 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "නම" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "ප්‍රමාණය" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "වෙනස් කළ" @@ -285,45 +285,45 @@ msgstr "ෆෝල්ඩරය" msgid "From link" msgstr "යොමුවෙන්" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "උඩුගත කිරීම අත් හරින්න" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "මෙහි කිසිවක් නොමැත. යමක් උඩුගත කරන්න" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "බාන්න" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "නොබෙදු" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "උඩුගත කිරීම විශාල වැඩිය" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "ඔබ උඩුගත කිරීමට තැත් කරන ගොනු මෙම සේවාදායකයා උඩුගත කිරීමට ඉඩදී ඇති උපරිම ගොනු විශාලත්වයට වඩා වැඩිය" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "ගොනු පරික්ෂා කෙරේ. මඳක් රැඳී සිටින්න" -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "වර්තමාන පරික්ෂාව" diff --git a/l10n/si_LK/files_sharing.po b/l10n/si_LK/files_sharing.po index 40540cda0d..fb8e0b2e44 100644 --- a/l10n/si_LK/files_sharing.po +++ b/l10n/si_LK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -29,28 +29,52 @@ msgstr "මුර පදය" msgid "Submit" msgstr "යොමු කරන්න" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s ඔබව %s ෆෝල්ඩරයට හවුල් කරගත්තේය" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s ඔබ සමඟ %s ගොනුව බෙදාහදාගත්තේය" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "බාන්න" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "උඩුගත කරන්න" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "උඩුගත කිරීම අත් හරින්න" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "පූර්වදර්ශනයක් නොමැත" diff --git a/l10n/si_LK/lib.po b/l10n/si_LK/lib.po index f6c17bac2d..6b8ff4aca1 100644 --- a/l10n/si_LK/lib.po +++ b/l10n/si_LK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -46,7 +46,7 @@ msgstr "පරිපාලක" msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "ඔබට පාලනය කළ හැකි වෙබ් සේවාවන්" @@ -257,7 +257,7 @@ msgstr "පෙර අවුරුද්දේ" msgid "years ago" msgstr "අවුරුදු කීපයකට පෙර" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/si_LK/user_ldap.po b/l10n/si_LK/user_ldap.po index 6b2384d0b7..6ef80e04cb 100644 --- a/l10n/si_LK/user_ldap.po +++ b/l10n/si_LK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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/files_sharing.po b/l10n/sk/files_sharing.po index 0045481454..42e2cda81b 100644 --- a/l10n/sk/files_sharing.po +++ b/l10n/sk/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -29,28 +29,52 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "" -#: templates/public.php:44 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "" -#: templates/public.php:54 +#: templates/public.php:56 msgid "Cancel upload" msgstr "" -#: templates/public.php:83 +#: templates/public.php:85 msgid "No preview available for" msgstr "" diff --git a/l10n/sk_SK/core.po b/l10n/sk_SK/core.po index 8f5745242d..2b3692aad6 100644 --- a/l10n/sk_SK/core.po +++ b/l10n/sk_SK/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -227,7 +227,7 @@ msgstr "Nešpecifikovaný typ objektu." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Chyba" @@ -247,7 +247,7 @@ msgstr "Zdieľané" msgid "Share" msgstr "Zdieľať" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Chyba počas zdieľania" @@ -347,23 +347,23 @@ msgstr "vymazať" msgid "share" msgstr "zdieľať" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Chránené heslom" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Chyba pri odstraňovaní dátumu expirácie" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Chyba pri nastavení dátumu expirácie" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "Odosielam ..." -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "Email odoslaný" @@ -462,7 +462,7 @@ msgstr "Pomoc" msgid "Access forbidden" msgstr "Prístup odmietnutý" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Nenájdené" diff --git a/l10n/sk_SK/files.po b/l10n/sk_SK/files.po index 85a9aa852a..864a10d1d2 100644 --- a/l10n/sk_SK/files.po +++ b/l10n/sk_SK/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 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" @@ -121,7 +121,7 @@ msgstr "Zdieľať" msgid "Delete permanently" msgstr "Zmazať trvalo" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Zmazať" @@ -129,7 +129,7 @@ msgstr "Zmazať" msgid "Rename" msgstr "Premenovať" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Prebieha" @@ -161,11 +161,11 @@ msgstr "vrátiť" msgid "perform delete operation" msgstr "vykonať zmazanie" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 súbor sa posiela " -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "nahrávanie súborov" @@ -201,15 +201,15 @@ msgstr "Vaše sťahovanie sa pripravuje. Ak sú sťahované súbory veľké, mô msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Neplatné meno priečinka. Používanie mena 'Shared' je vyhradené len pre Owncloud" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Názov" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Veľkosť" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Upravené" @@ -286,45 +286,45 @@ msgstr "Priečinok" msgid "From link" msgstr "Z odkazu" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "Zmazané súbory" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Zrušiť odosielanie" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "Nemáte oprávnenie na zápis." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Žiadny súbor. Nahrajte niečo!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Sťahovanie" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Zrušiť zdieľanie" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "Nahrávanie je príliš veľké" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Súbory, ktoré sa snažíte nahrať, presahujú maximálnu veľkosť pre nahratie súborov na tento server." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Čakajte, súbory sú prehľadávané." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Práve prezerané" diff --git a/l10n/sk_SK/files_sharing.po b/l10n/sk_SK/files_sharing.po index f48e3f693e..a904512e69 100644 --- a/l10n/sk_SK/files_sharing.po +++ b/l10n/sk_SK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -29,28 +29,52 @@ msgstr "Heslo" msgid "Submit" msgstr "Odoslať" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s zdieľa s vami priečinok %s" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s zdieľa s vami súbor %s" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Sťahovanie" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Odoslať" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Zrušiť odosielanie" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Žiaden náhľad k dispozícii pre" diff --git a/l10n/sk_SK/lib.po b/l10n/sk_SK/lib.po index 804de8e425..0d18fe3965 100644 --- a/l10n/sk_SK/lib.po +++ b/l10n/sk_SK/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -47,7 +47,7 @@ msgstr "Administrátor" msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "webové služby pod Vašou kontrolou" @@ -258,7 +258,7 @@ msgstr "minulý rok" msgid "years ago" msgstr "pred rokmi" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/sk_SK/user_ldap.po b/l10n/sk_SK/user_ldap.po index ee728d45d6..e1b6bb618f 100644 --- a/l10n/sk_SK/user_ldap.po +++ b/l10n/sk_SK/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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 551e7074e6..fd58388aa0 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:57+0000\n" +"Last-Translator: barbarak \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -228,7 +228,7 @@ msgstr "Vrsta predmeta ni podana." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Napaka" @@ -248,7 +248,7 @@ msgstr "V souporabi" msgid "Share" msgstr "Souporaba" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Napaka med souporabo" @@ -348,23 +348,23 @@ msgstr "izbriši" msgid "share" msgstr "določi souporabo" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Zaščiteno z geslom" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Napaka brisanja datuma preteka" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Napaka med nastavljanjem datuma preteka" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "Pošiljanje ..." -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "Elektronska pošta je poslana" @@ -463,7 +463,7 @@ msgstr "Pomoč" msgid "Access forbidden" msgstr "Dostop je prepovedan" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Oblaka ni mogoče najti" @@ -498,7 +498,7 @@ msgstr "Uporabljena različica PHP je ranljiva za napad NULL Byte (CVE-2006-7243 #: templates/installation.php:26 #, php-format msgid "Please update your PHP installation to use %s securely." -msgstr "" +msgstr "Za varno uporabo storitve %s posodobite PHP" #: templates/installation.php:32 msgid "" diff --git a/l10n/sl/files.po b/l10n/sl/files.po index a9c7afcf48..728a20867e 100644 --- a/l10n/sl/files.po +++ b/l10n/sl/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 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" @@ -121,7 +121,7 @@ msgstr "Souporaba" msgid "Delete permanently" msgstr "Izbriši dokončno" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Izbriši" @@ -129,7 +129,7 @@ msgstr "Izbriši" msgid "Rename" msgstr "Preimenuj" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "V čakanju ..." @@ -161,11 +161,11 @@ msgstr "razveljavi" msgid "perform delete operation" msgstr "izvedi opravilo brisanja" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "Pošiljanje 1 datoteke" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "poteka pošiljanje datotek" @@ -201,15 +201,15 @@ msgstr "Postopek priprave datoteke za prejem je lahko dolgotrajen, če je datote msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Neveljavno ime mape. Uporaba oznake \"Souporaba\" je zadržan za sistem ownCloud." -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Ime" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Velikost" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Spremenjeno" @@ -286,45 +286,45 @@ msgstr "Mapa" msgid "From link" msgstr "Iz povezave" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "Izbrisane datoteke" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Prekliči pošiljanje" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "Za to mesto ni ustreznih dovoljenj za pisanje." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Tukaj še ni ničesar. Najprej je treba kakšno datoteko poslati v oblak!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Prejmi" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Prekliči souporabo" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "Prekoračenje omejitve velikosti" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Datoteke, ki jih želite poslati, presegajo največjo dovoljeno velikost na strežniku." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Poteka preučevanje datotek, počakajte ..." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Trenutno poteka preučevanje" diff --git a/l10n/sl/files_sharing.po b/l10n/sl/files_sharing.po index 46312bd3d2..7df04bc173 100644 --- a/l10n/sl/files_sharing.po +++ b/l10n/sl/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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,28 +29,52 @@ msgstr "Geslo" msgid "Submit" msgstr "Pošlji" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "Oseba %s je določila mapo %s za souporabo" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "Oseba %s je določila datoteko %s za souporabo" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Prejmi" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Pošlji" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Prekliči pošiljanje" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Predogled ni na voljo za" diff --git a/l10n/sl/lib.po b/l10n/sl/lib.po index 1c5ae53da7..0aa12d196e 100644 --- a/l10n/sl/lib.po +++ b/l10n/sl/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -47,7 +47,7 @@ msgstr "Skrbništvo" msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "spletne storitve pod vašim nadzorom" @@ -258,7 +258,7 @@ msgstr "lansko leto" msgid "years ago" msgstr "let nazaj" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/sl/user_ldap.po b/l10n/sl/user_ldap.po index 63f47e94c8..89e0f26521 100644 --- a/l10n/sl/user_ldap.po +++ b/l10n/sl/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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 80f500cd41..f77dc77881 100644 --- a/l10n/sq/core.po +++ b/l10n/sq/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -227,7 +227,7 @@ msgstr "Nuk është specifikuar tipi i objektit." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Veprim i gabuar" @@ -247,7 +247,7 @@ msgstr "Ndarë" msgid "Share" msgstr "Nda" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Veprim i gabuar gjatë ndarjes" @@ -347,23 +347,23 @@ msgstr "elimino" msgid "share" msgstr "nda" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Mbrojtur me kod" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Veprim i gabuar gjatë heqjes së datës së përfundimit" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Veprim i gabuar gjatë caktimit të datës së përfundimit" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "Duke dërguar..." -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "Email-i u dërgua" @@ -462,7 +462,7 @@ msgstr "Ndihmë" msgid "Access forbidden" msgstr "Ndalohet hyrja" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Cloud-i nuk u gjet" diff --git a/l10n/sq/files.po b/l10n/sq/files.po index 1df65fed8f..5b7dc62337 100644 --- a/l10n/sq/files.po +++ b/l10n/sq/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 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" @@ -120,7 +120,7 @@ msgstr "Nda" msgid "Delete permanently" msgstr "Elimino përfundimisht" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Elimino" @@ -128,7 +128,7 @@ msgstr "Elimino" msgid "Rename" msgstr "Riemërto" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Pezulluar" @@ -160,11 +160,11 @@ msgstr "anulo" msgid "perform delete operation" msgstr "ekzekuto operacionin e eliminimit" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "Po ngarkohet 1 skedar" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "po ngarkoj skedarët" @@ -200,15 +200,15 @@ msgstr "Shkarkimi juaj po përgatitet. Mund të duhet pak kohë nqse skedarët j msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Emri i dosjes është i pavlefshëm. Përdorimi i \"Shared\" është i rezervuar nga Owncloud-i." -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Emri" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Dimensioni" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Modifikuar" @@ -285,45 +285,45 @@ msgstr "Dosje" msgid "From link" msgstr "Nga lidhja" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "Skedarë të eliminuar" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Anulo ngarkimin" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "Nuk keni të drejta për të shkruar këtu." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Këtu nuk ka asgjë. Ngarkoni diçka!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Shkarko" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Hiq ndarjen" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "Ngarkimi është shumë i madh" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Skedarët që doni të ngarkoni tejkalojnë dimensionet maksimale për ngarkimet në këtë server." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Skedarët po analizohen, ju lutemi pritni." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Analizimi aktual" diff --git a/l10n/sq/files_sharing.po b/l10n/sq/files_sharing.po index 4e79b13e39..1dce2e65bc 100644 --- a/l10n/sq/files_sharing.po +++ b/l10n/sq/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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,28 +29,52 @@ msgstr "Kodi" msgid "Submit" msgstr "Parashtro" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s ndau me ju dosjen %s" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s ndau me ju skedarin %s" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Shkarko" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Ngarko" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Anulo ngarkimin" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Shikimi paraprak nuk është i mundur për" diff --git a/l10n/sq/lib.po b/l10n/sq/lib.po index 35759acbd8..6c1b4ba5b5 100644 --- a/l10n/sq/lib.po +++ b/l10n/sq/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -46,7 +46,7 @@ msgstr "Admin" msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "shërbime web nën kontrollin tënd" @@ -257,7 +257,7 @@ msgstr "vitin e shkuar" msgid "years ago" msgstr "vite më parë" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/sq/user_ldap.po b/l10n/sq/user_ldap.po index 5cfd44d84b..b1fcde92cd 100644 --- a/l10n/sq/user_ldap.po +++ b/l10n/sq/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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 1c9c62a203..462d4016e2 100644 --- a/l10n/sr/core.po +++ b/l10n/sr/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -226,7 +226,7 @@ msgstr "Врста објекта није подешена." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Грешка" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "Дели" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Грешка у дељењу" @@ -346,23 +346,23 @@ msgstr "обриши" msgid "share" msgstr "подели" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Заштићено лозинком" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Грешка код поништавања датума истека" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Грешка код постављања датума истека" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "Шаљем..." -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "Порука је послата" @@ -461,7 +461,7 @@ msgstr "Помоћ" msgid "Access forbidden" msgstr "Забрањен приступ" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Облак није нађен" diff --git a/l10n/sr/files.po b/l10n/sr/files.po index 75b75067cb..49bcc63644 100644 --- a/l10n/sr/files.po +++ b/l10n/sr/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 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" @@ -120,7 +120,7 @@ msgstr "Дели" msgid "Delete permanently" msgstr "Обриши за стално" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Обриши" @@ -128,7 +128,7 @@ msgstr "Обриши" msgid "Rename" msgstr "Преименуј" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "На чекању" @@ -160,11 +160,11 @@ msgstr "опозови" msgid "perform delete operation" msgstr "обриши" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "Отпремам 1 датотеку" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "датотеке се отпремају" @@ -200,15 +200,15 @@ msgstr "Припремам преузимање. Ово може да потра msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Неисправно име фасцикле. Фасцикла „Shared“ је резервисана за ownCloud." -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Име" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Величина" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Измењено" @@ -285,45 +285,45 @@ msgstr "фасцикла" msgid "From link" msgstr "Са везе" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "Обрисане датотеке" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Прекини отпремање" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "Овде немате дозволу за писање." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Овде нема ничег. Отпремите нешто!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Преузми" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Укини дељење" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "Датотека је превелика" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Датотеке које желите да отпремите прелазе ограничење у величини." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Скенирам датотеке…" -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Тренутно скенирање" diff --git a/l10n/sr/files_sharing.po b/l10n/sr/files_sharing.po index 8ecabd78e6..93140c0942 100644 --- a/l10n/sr/files_sharing.po +++ b/l10n/sr/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -29,28 +29,52 @@ msgstr "Лозинка" msgid "Submit" msgstr "Пошаљи" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Преузми" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Отпреми" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Прекини отпремање" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "" diff --git a/l10n/sr/lib.po b/l10n/sr/lib.po index bd9dcab7ec..e5b62d888b 100644 --- a/l10n/sr/lib.po +++ b/l10n/sr/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -46,7 +46,7 @@ msgstr "Администратор" msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "веб сервиси под контролом" @@ -257,7 +257,7 @@ msgstr "прошле године" msgid "years ago" msgstr "година раније" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/sr/user_ldap.po b/l10n/sr/user_ldap.po index 8b184dba59..4e15ea5bd4 100644 --- a/l10n/sr/user_ldap.po +++ b/l10n/sr/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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 cebbf84433..7657df7e8a 100644 --- a/l10n/sr@latin/core.po +++ b/l10n/sr@latin/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -226,7 +226,7 @@ msgstr "" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "" @@ -346,23 +346,23 @@ msgstr "" msgid "share" msgstr "" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "" -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "" @@ -461,7 +461,7 @@ msgstr "Pomoć" msgid "Access forbidden" msgstr "" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Oblak nije nađen" diff --git a/l10n/sr@latin/files.po b/l10n/sr@latin/files.po index 3e56d5a8ed..7905ba199a 100644 --- a/l10n/sr@latin/files.po +++ b/l10n/sr@latin/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 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" @@ -120,7 +120,7 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Obriši" @@ -128,7 +128,7 @@ msgstr "Obriši" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "" @@ -160,11 +160,11 @@ msgstr "" msgid "perform delete operation" msgstr "" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "" @@ -200,15 +200,15 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Ime" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Veličina" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Zadnja izmena" @@ -285,45 +285,45 @@ msgstr "" msgid "From link" msgstr "" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Ovde nema ničeg. Pošaljite nešto!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Preuzmi" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "Pošiljka je prevelika" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Fajlovi koje želite da pošaljete prevazilaze ograničenje maksimalne veličine pošiljke na ovom serveru." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "" diff --git a/l10n/sr@latin/files_sharing.po b/l10n/sr@latin/files_sharing.po index e0cc5d3671..62dd8a318b 100644 --- a/l10n/sr@latin/files_sharing.po +++ b/l10n/sr@latin/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -29,28 +29,52 @@ msgstr "Lozinka" msgid "Submit" msgstr "Pošalji" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Preuzmi" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Pošalji" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "" diff --git a/l10n/sr@latin/lib.po b/l10n/sr@latin/lib.po index f2a53ab59e..9ec9e7fac6 100644 --- a/l10n/sr@latin/lib.po +++ b/l10n/sr@latin/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -46,7 +46,7 @@ msgstr "Adninistracija" msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "" @@ -257,7 +257,7 @@ msgstr "" msgid "years ago" msgstr "" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/sr@latin/user_ldap.po b/l10n/sr@latin/user_ldap.po index e72d94938e..2b5d1f15a8 100644 --- a/l10n/sr@latin/user_ldap.po +++ b/l10n/sr@latin/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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 3e6da0bdb3..035b2dc707 100644 --- a/l10n/sv/core.po +++ b/l10n/sv/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -230,7 +230,7 @@ msgstr "Objekttypen är inte specificerad." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Fel" @@ -250,7 +250,7 @@ msgstr "Delad" msgid "Share" msgstr "Dela" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Fel vid delning" @@ -350,23 +350,23 @@ msgstr "radera" msgid "share" msgstr "dela" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Lösenordsskyddad" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Fel vid borttagning av utgångsdatum" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Fel vid sättning av utgångsdatum" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "Skickar ..." -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "E-post skickat" @@ -465,7 +465,7 @@ msgstr "Hjälp" msgid "Access forbidden" msgstr "Åtkomst förbjuden" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Hittade inget moln" diff --git a/l10n/sv/files.po b/l10n/sv/files.po index 9fa27187a4..b689f93909 100644 --- a/l10n/sv/files.po +++ b/l10n/sv/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 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" @@ -124,7 +124,7 @@ msgstr "Dela" msgid "Delete permanently" msgstr "Radera permanent" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Radera" @@ -132,7 +132,7 @@ msgstr "Radera" msgid "Rename" msgstr "Byt namn" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Väntar" @@ -164,11 +164,11 @@ msgstr "ångra" msgid "perform delete operation" msgstr "utför raderingen" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 filuppladdning" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "filer laddas upp" @@ -204,15 +204,15 @@ msgstr "Din nedladdning förbereds. Det kan ta tid om det är stora filer." msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Ogiltigt mappnamn. Användande av 'Shared' är reserverat av ownCloud" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Namn" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Storlek" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Ändrad" @@ -289,45 +289,45 @@ msgstr "Mapp" msgid "From link" msgstr "Från länk" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "Raderade filer" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Avbryt uppladdning" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "Du saknar skrivbehörighet här." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Ingenting här. Ladda upp något!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Ladda ner" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Sluta dela" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "För stor uppladdning" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Filerna du försöker ladda upp överstiger den maximala storleken för filöverföringar på servern." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Filer skannas, var god vänta" -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Aktuell skanning" diff --git a/l10n/sv/files_sharing.po b/l10n/sv/files_sharing.po index 85deb24c85..3658d3cedd 100644 --- a/l10n/sv/files_sharing.po +++ b/l10n/sv/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" -"Last-Translator: Stefan Gagner \n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -30,28 +30,52 @@ msgstr "Lösenord" msgid "Submit" msgstr "Skicka" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s delade mappen %s med dig" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s delade filen %s med dig" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Ladda ner" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Ladda upp" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Avbryt uppladdning" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Ingen förhandsgranskning tillgänglig för" diff --git a/l10n/sv/lib.po b/l10n/sv/lib.po index 8e2de52c4f..414bb52415 100644 --- a/l10n/sv/lib.po +++ b/l10n/sv/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-24 15:40+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: medialabs\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/user_ldap.po b/l10n/sv/user_ldap.po index cbc9a0fe21..f963b8165b 100644 --- a/l10n/sv/user_ldap.po +++ b/l10n/sv/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sw_KE/files_sharing.po b/l10n/sw_KE/files_sharing.po index 5e4f08ccb5..0cf4663cb9 100644 --- a/l10n/sw_KE/files_sharing.po +++ b/l10n/sw_KE/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -29,28 +29,52 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "" -#: templates/public.php:44 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "" -#: templates/public.php:54 +#: templates/public.php:56 msgid "Cancel upload" msgstr "" -#: templates/public.php:83 +#: templates/public.php:85 msgid "No preview available for" msgstr "" diff --git a/l10n/ta_LK/core.po b/l10n/ta_LK/core.po index 97e92571b5..57b84bb5dc 100644 --- a/l10n/ta_LK/core.po +++ b/l10n/ta_LK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -226,7 +226,7 @@ msgstr "பொருள் வகை குறிப்பிடப்படவ #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "வழு" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "பகிர்வு" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "பகிரும் போதான வழு" @@ -346,23 +346,23 @@ msgstr "நீக்குக" msgid "share" msgstr "பகிர்தல்" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "கடவுச்சொல் பாதுகாக்கப்பட்டது" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "காலாவதியாகும் திகதியை குறிப்பிடாமைக்கான வழு" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "காலாவதியாகும் திகதியை குறிப்பிடுவதில் வழு" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "" -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "" @@ -461,7 +461,7 @@ msgstr "உதவி" msgid "Access forbidden" msgstr "அணுக தடை" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Cloud காணப்படவில்லை" diff --git a/l10n/ta_LK/files.po b/l10n/ta_LK/files.po index c89bc46dcf..6dc52aac12 100644 --- a/l10n/ta_LK/files.po +++ b/l10n/ta_LK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 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" @@ -120,7 +120,7 @@ msgstr "பகிர்வு" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "நீக்குக" @@ -128,7 +128,7 @@ msgstr "நீக்குக" msgid "Rename" msgstr "பெயர்மாற்றம்" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "நிலுவையிலுள்ள" @@ -160,11 +160,11 @@ msgstr "முன் செயல் நீக்கம் " msgid "perform delete operation" msgstr "" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 கோப்பு பதிவேற்றப்படுகிறது" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "" @@ -200,15 +200,15 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "பெயர்" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "அளவு" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "மாற்றப்பட்டது" @@ -285,45 +285,45 @@ msgstr "கோப்புறை" msgid "From link" msgstr "இணைப்பிலிருந்து" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "பதிவேற்றலை இரத்து செய்க" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "இங்கு ஒன்றும் இல்லை. ஏதாவது பதிவேற்றுக!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "பதிவிறக்குக" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "பகிரப்படாதது" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "பதிவேற்றல் மிகப்பெரியது" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "நீங்கள் பதிவேற்ற முயற்சிக்கும் கோப்புகளானது இந்த சேவையகத்தில் கோப்பு பதிவேற்றக்கூடிய ஆகக்கூடிய அளவிலும் கூடியது." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "கோப்புகள் வருடப்படுகின்றன, தயவுசெய்து காத்திருங்கள்." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "தற்போது வருடப்படுபவை" diff --git a/l10n/ta_LK/files_sharing.po b/l10n/ta_LK/files_sharing.po index 4349314170..7c8041c6cc 100644 --- a/l10n/ta_LK/files_sharing.po +++ b/l10n/ta_LK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -29,28 +29,52 @@ msgstr "கடவுச்சொல்" msgid "Submit" msgstr "சமர்ப்பிக்குக" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s கோப்புறையானது %s உடன் பகிரப்பட்டது" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s கோப்பானது %s உடன் பகிரப்பட்டது" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "பதிவிறக்குக" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "பதிவேற்றுக" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "பதிவேற்றலை இரத்து செய்க" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "அதற்கு முன்னோக்கு ஒன்றும் இல்லை" diff --git a/l10n/ta_LK/lib.po b/l10n/ta_LK/lib.po index b4f5cc473a..3aac60962c 100644 --- a/l10n/ta_LK/lib.po +++ b/l10n/ta_LK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -46,7 +46,7 @@ msgstr "நிர்வாகம்" msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "வலைய சேவைகள் உங்களுடைய கட்டுப்பாட்டின் கீழ் உள்ளது" @@ -257,7 +257,7 @@ msgstr "கடந்த வருடம்" msgid "years ago" msgstr "வருடங்களுக்கு முன்" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/ta_LK/user_ldap.po b/l10n/ta_LK/user_ldap.po index 1c0ba580a0..2e0ab2843a 100644 --- a/l10n/ta_LK/user_ldap.po +++ b/l10n/ta_LK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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 8dbec109d1..0678e40d64 100644 --- a/l10n/te/core.po +++ b/l10n/te/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -226,7 +226,7 @@ msgstr "" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "పొరపాటు" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "" @@ -346,23 +346,23 @@ msgstr "తొలగించు" msgid "share" msgstr "" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "" -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "" @@ -461,7 +461,7 @@ msgstr "సహాయం" msgid "Access forbidden" msgstr "" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "" diff --git a/l10n/te/files_sharing.po b/l10n/te/files_sharing.po index 1016563e1e..3b3743c975 100644 --- a/l10n/te/files_sharing.po +++ b/l10n/te/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -29,28 +29,52 @@ msgstr "సంకేతపదం" msgid "Submit" msgstr "" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "" -#: templates/public.php:44 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "" -#: templates/public.php:54 +#: templates/public.php:56 msgid "Cancel upload" msgstr "" -#: templates/public.php:83 +#: templates/public.php:85 msgid "No preview available for" msgstr "" diff --git a/l10n/te/lib.po b/l10n/te/lib.po index 5cb1c2bfb6..7d9db7511f 100644 --- a/l10n/te/lib.po +++ b/l10n/te/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -46,7 +46,7 @@ msgstr "" msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "" @@ -257,7 +257,7 @@ msgstr "పోయిన సంవత్సరం" msgid "years ago" msgstr "సంవత్సరాల క్రితం" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/te/user_ldap.po b/l10n/te/user_ldap.po index dd4df36550..cf534a3c9b 100644 --- a/l10n/te/user_ldap.po +++ b/l10n/te/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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 7f756aac51..9a7e80efbc 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -226,7 +226,7 @@ msgstr "" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "" @@ -346,23 +346,23 @@ msgstr "" msgid "share" msgstr "" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "" -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "" @@ -461,7 +461,7 @@ msgstr "" msgid "Access forbidden" msgstr "" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index b04d02db84..72fb94356f 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index febbe2b91f..10ab40b017 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index 1ca2a5ac43..5687422471 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index 4a1f2dcf11..0db9df6294 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,13 +8,13 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "Language: \n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: templates/authenticate.php:4 @@ -29,6 +29,30 @@ msgstr "" msgid "Submit" 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:15 #, php-format msgid "%s shared the folder %s with you" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index 974b929fdc..a9bb63b4d7 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 68871834c2..6c2f5fd0e0 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index 6131869d26..4adb20d654 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 755649250a..9861cd9141 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 719cadb612..75c32132d7 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index aca067586e..8f83935cbe 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/th_TH/core.po b/l10n/th_TH/core.po index 739c9d4137..63ae34e1a7 100644 --- a/l10n/th_TH/core.po +++ b/l10n/th_TH/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -226,7 +226,7 @@ msgstr "ชนิดของวัตถุยังไม่ได้รับ #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "ข้อผิดพลาด" @@ -246,7 +246,7 @@ msgstr "แชร์แล้ว" msgid "Share" msgstr "แชร์" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "เกิดข้อผิดพลาดในระหว่างการแชร์ข้อมูล" @@ -346,23 +346,23 @@ msgstr "ลบ" msgid "share" msgstr "แชร์" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "ใส่รหัสผ่านไว้" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "เกิดข้อผิดพลาดในการยกเลิกการตั้งค่าวันที่หมดอายุ" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "เกิดข้อผิดพลาดในการตั้งค่าวันที่หมดอายุ" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "กำลังส่ง..." -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "ส่งอีเมล์แล้ว" @@ -461,7 +461,7 @@ msgstr "ช่วยเหลือ" msgid "Access forbidden" msgstr "การเข้าถึงถูกหวงห้าม" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "ไม่พบ Cloud" diff --git a/l10n/th_TH/files.po b/l10n/th_TH/files.po index f58238d474..5b14df3941 100644 --- a/l10n/th_TH/files.po +++ b/l10n/th_TH/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 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" @@ -120,7 +120,7 @@ msgstr "แชร์" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "ลบ" @@ -128,7 +128,7 @@ msgstr "ลบ" msgid "Rename" msgstr "เปลี่ยนชื่อ" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "อยู่ระหว่างดำเนินการ" @@ -160,11 +160,11 @@ msgstr "เลิกทำ" msgid "perform delete operation" msgstr "ดำเนินการตามคำสั่งลบ" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "กำลังอัพโหลดไฟล์ 1 ไฟล์" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "การอัพโหลดไฟล์" @@ -200,15 +200,15 @@ msgstr "กำลังเตรียมดาวน์โหลดข้อม msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "ชื่อโฟลเดอร์ไม่ถูกต้อง การใช้งาน 'แชร์' สงวนไว้สำหรับ Owncloud เท่านั้น" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "ชื่อ" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "ขนาด" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "แก้ไขแล้ว" @@ -285,45 +285,45 @@ msgstr "แฟ้มเอกสาร" msgid "From link" msgstr "จากลิงก์" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "ยกเลิกการอัพโหลด" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "ยังไม่มีไฟล์ใดๆอยู่ที่นี่ กรุณาอัพโหลดไฟล์!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "ดาวน์โหลด" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "ยกเลิกการแชร์" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "ไฟล์ที่อัพโหลดมีขนาดใหญ่เกินไป" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "ไฟล์ที่คุณพยายามที่จะอัพโหลดมีขนาดเกินกว่าขนาดสูงสุดที่กำหนดไว้ให้อัพโหลดได้สำหรับเซิร์ฟเวอร์นี้" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "ไฟล์กำลังอยู่ระหว่างการสแกน, กรุณารอสักครู่." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "ไฟล์ที่กำลังสแกนอยู่ขณะนี้" diff --git a/l10n/th_TH/files_sharing.po b/l10n/th_TH/files_sharing.po index 74b76cfb8c..8699fb3840 100644 --- a/l10n/th_TH/files_sharing.po +++ b/l10n/th_TH/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -29,28 +29,52 @@ msgstr "รหัสผ่าน" msgid "Submit" msgstr "ส่ง" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s ได้แชร์โฟลเดอร์ %s ให้กับคุณ" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s ได้แชร์ไฟล์ %s ให้กับคุณ" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "ดาวน์โหลด" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "อัพโหลด" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "ยกเลิกการอัพโหลด" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "ไม่สามารถดูตัวอย่างได้สำหรับ" diff --git a/l10n/th_TH/lib.po b/l10n/th_TH/lib.po index a12613c722..c8a3eecf40 100644 --- a/l10n/th_TH/lib.po +++ b/l10n/th_TH/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -46,7 +46,7 @@ msgstr "ผู้ดูแล" msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "เว็บเซอร์วิสที่คุณควบคุมการใช้งานได้" @@ -257,7 +257,7 @@ msgstr "ปีที่แล้ว" msgid "years ago" msgstr "ปี ที่ผ่านมา" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/th_TH/user_ldap.po b/l10n/th_TH/user_ldap.po index c7bf8e3f6d..bdaa854871 100644 --- a/l10n/th_TH/user_ldap.po +++ b/l10n/th_TH/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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 62f5a82fb7..5f98732ac0 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -227,7 +227,7 @@ msgstr "Nesne türü belirtilmemiş." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Hata" @@ -247,7 +247,7 @@ msgstr "Paylaşılan" msgid "Share" msgstr "Paylaş" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Paylaşım sırasında hata " @@ -347,23 +347,23 @@ msgstr "sil" msgid "share" msgstr "paylaş" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Paralo korumalı" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Geçerlilik tarihi tanımlama kaldırma hatası" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Geçerlilik tarihi tanımlama hatası" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "Gönderiliyor..." -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "Eposta gönderildi" @@ -462,7 +462,7 @@ msgstr "Yardım" msgid "Access forbidden" msgstr "Erişim yasaklı" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Bulut bulunamadı" diff --git a/l10n/tr/files.po b/l10n/tr/files.po index e83270b90a..4684d344ee 100644 --- a/l10n/tr/files.po +++ b/l10n/tr/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:41+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" @@ -121,7 +121,7 @@ msgstr "Paylaş" msgid "Delete permanently" msgstr "Kalıcı olarak sil" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Sil" @@ -129,7 +129,7 @@ msgstr "Sil" msgid "Rename" msgstr "İsim değiştir." -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Bekliyor" @@ -161,11 +161,11 @@ msgstr "geri al" msgid "perform delete operation" msgstr "Silme işlemini gerçekleştir" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 dosya yüklendi" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "Dosyalar yükleniyor" @@ -201,15 +201,15 @@ msgstr "İndirmeniz hazırlanıyor. Dosya büyük ise biraz zaman alabilir." msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Geçersiz dizin adı. Shared isminin kullanımı Owncloud tarafından rezerver edilmiştir." -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "İsim" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Boyut" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Değiştirilme" @@ -286,45 +286,45 @@ msgstr "Klasör" msgid "From link" msgstr "Bağlantıdan" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "Dosyalar silindi" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Yüklemeyi iptal et" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "Buraya erişim hakkınız yok." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Burada hiçbir şey yok. Birşeyler yükleyin!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "İndir" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Paylaşılmayan" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "Yükleme çok büyük" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Yüklemeye çalıştığınız dosyalar bu sunucudaki maksimum yükleme boyutunu aşıyor." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Dosyalar taranıyor, lütfen bekleyin." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Güncel tarama" diff --git a/l10n/tr/files_sharing.po b/l10n/tr/files_sharing.po index 2b7db48119..498486086d 100644 --- a/l10n/tr/files_sharing.po +++ b/l10n/tr/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -29,28 +29,52 @@ msgstr "Parola" msgid "Submit" msgstr "Gönder" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s sizinle paylaşılan %s klasör" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s sizinle paylaşılan %s klasör" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "İndir" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Yükle" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Yüklemeyi iptal et" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Kullanılabilir önizleme yok" diff --git a/l10n/tr/lib.po b/l10n/tr/lib.po index f87d09b341..31eca3fff5 100644 --- a/l10n/tr/lib.po +++ b/l10n/tr/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -47,7 +47,7 @@ msgstr "Yönetici" msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "Bilgileriniz güvenli ve şifreli" @@ -258,7 +258,7 @@ msgstr "geçen yıl" msgid "years ago" msgstr "yıl önce" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/tr/user_ldap.po b/l10n/tr/user_ldap.po index 55a5f89cd0..b92f0ef35e 100644 --- a/l10n/tr/user_ldap.po +++ b/l10n/tr/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/core.po b/l10n/ug/core.po index 3978157b54..9a6950f93c 100644 --- a/l10n/ug/core.po +++ b/l10n/ug/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" @@ -226,7 +226,7 @@ msgstr "" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "خاتالىق" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "ھەمبەھىر" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "" @@ -346,23 +346,23 @@ msgstr "ئۆچۈر" msgid "share" msgstr "ھەمبەھىر" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "" -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "" @@ -461,7 +461,7 @@ msgstr "ياردەم" msgid "Access forbidden" msgstr "" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "" diff --git a/l10n/ug/files.po b/l10n/ug/files.po index 4881ae7162..d312f8badd 100644 --- a/l10n/ug/files.po +++ b/l10n/ug/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" @@ -120,7 +120,7 @@ msgstr "ھەمبەھىر" msgid "Delete permanently" msgstr "مەڭگۈلۈك ئۆچۈر" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "ئۆچۈر" @@ -128,7 +128,7 @@ msgstr "ئۆچۈر" msgid "Rename" msgstr "ئات ئۆزگەرت" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "كۈتۈۋاتىدۇ" @@ -160,11 +160,11 @@ msgstr "يېنىۋال" msgid "perform delete operation" msgstr "" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 ھۆججەت يۈكلىنىۋاتىدۇ" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "ھۆججەت يۈكلىنىۋاتىدۇ" @@ -200,15 +200,15 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "ئاتى" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "چوڭلۇقى" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "ئۆزگەرتكەن" @@ -285,45 +285,45 @@ msgstr "قىسقۇچ" msgid "From link" msgstr "" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "ئۆچۈرۈلگەن ھۆججەتلەر" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "يۈكلەشتىن ۋاز كەچ" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "بۇ جايدا ھېچنېمە يوق. Upload something!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "چۈشۈر" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "ھەمبەھىرلىمە" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "يۈكلەندىغىنى بەك چوڭ" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "" diff --git a/l10n/ug/files_sharing.po b/l10n/ug/files_sharing.po index 309e31e9e0..af6816a97b 100644 --- a/l10n/ug/files_sharing.po +++ b/l10n/ug/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" @@ -30,28 +30,52 @@ msgstr "ئىم" msgid "Submit" msgstr "تاپشۇر" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "چۈشۈر" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "يۈكلە" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "يۈكلەشتىن ۋاز كەچ" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "" diff --git a/l10n/ug/lib.po b/l10n/ug/lib.po index bba5b72f53..8cfb7be324 100644 --- a/l10n/ug/lib.po +++ b/l10n/ug/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" @@ -46,7 +46,7 @@ msgstr "" msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "" @@ -257,7 +257,7 @@ msgstr "" msgid "years ago" msgstr "" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/ug/user_ldap.po b/l10n/ug/user_ldap.po index e533669f2c..f1f2c40e5c 100644 --- a/l10n/ug/user_ldap.po +++ b/l10n/ug/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/core.po b/l10n/uk/core.po index 8a8af16600..e0d6c3e123 100644 --- a/l10n/uk/core.po +++ b/l10n/uk/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -226,7 +226,7 @@ msgstr "Не визначено тип об'єкту." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Помилка" @@ -246,7 +246,7 @@ msgstr "Опубліковано" msgid "Share" msgstr "Поділитися" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Помилка під час публікації" @@ -346,23 +346,23 @@ msgstr "видалити" msgid "share" msgstr "опублікувати" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Захищено паролем" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Помилка при відміні терміна дії" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Помилка при встановленні терміна дії" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "Надсилання..." -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "Ел. пошта надіслана" @@ -461,7 +461,7 @@ msgstr "Допомога" msgid "Access forbidden" msgstr "Доступ заборонено" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Cloud не знайдено" diff --git a/l10n/uk/files.po b/l10n/uk/files.po index 9da6d91c88..0928802b6a 100644 --- a/l10n/uk/files.po +++ b/l10n/uk/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 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" @@ -120,7 +120,7 @@ msgstr "Поділитися" msgid "Delete permanently" msgstr "Видалити назавжди" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Видалити" @@ -128,7 +128,7 @@ msgstr "Видалити" msgid "Rename" msgstr "Перейменувати" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Очікування" @@ -160,11 +160,11 @@ msgstr "відмінити" msgid "perform delete operation" msgstr "виконати операцію видалення" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 файл завантажується" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "файли завантажуються" @@ -200,15 +200,15 @@ msgstr "Ваше завантаження готується. Це може за msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Невірне ім'я теки. Використання \"Shared\" зарезервовано Owncloud" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Ім'я" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Розмір" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Змінено" @@ -285,45 +285,45 @@ msgstr "Папка" msgid "From link" msgstr "З посилання" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "Видалено файлів" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Перервати завантаження" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "У вас тут немає прав на запис." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Тут нічого немає. Відвантажте що-небудь!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Завантажити" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Закрити доступ" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "Файл занадто великий" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Файли,що ви намагаєтесь відвантажити перевищують максимальний дозволений розмір файлів на цьому сервері." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Файли скануються, зачекайте, будь-ласка." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Поточне сканування" diff --git a/l10n/uk/files_sharing.po b/l10n/uk/files_sharing.po index a2aca19d51..8b42f1750c 100644 --- a/l10n/uk/files_sharing.po +++ b/l10n/uk/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -29,28 +29,52 @@ msgstr "Пароль" msgid "Submit" msgstr "Передати" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s опублікував каталог %s для Вас" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s опублікував файл %s для Вас" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Завантажити" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Вивантажити" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Перервати завантаження" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Попередній перегляд недоступний для" diff --git a/l10n/uk/lib.po b/l10n/uk/lib.po index 950fef2e26..ef6c69e342 100644 --- a/l10n/uk/lib.po +++ b/l10n/uk/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -46,7 +46,7 @@ msgstr "Адмін" msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "підконтрольні Вам веб-сервіси" @@ -257,7 +257,7 @@ msgstr "минулого року" msgid "years ago" msgstr "роки тому" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/uk/user_ldap.po b/l10n/uk/user_ldap.po index 04fdad38c9..9c8fb92aee 100644 --- a/l10n/uk/user_ldap.po +++ b/l10n/uk/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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 0ca3c451c1..6028892d2a 100644 --- a/l10n/ur_PK/core.po +++ b/l10n/ur_PK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -226,7 +226,7 @@ msgstr "" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "ایرر" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "شئیرنگ کے دوران ایرر" @@ -346,23 +346,23 @@ msgstr "ختم کریں" msgid "share" msgstr "شئیر کریں" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "پاسورڈ سے محفوظ کیا گیا ہے" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "" -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "" @@ -461,7 +461,7 @@ msgstr "مدد" msgid "Access forbidden" msgstr "پہنچ کی اجازت نہیں" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "نہیں مل سکا" diff --git a/l10n/ur_PK/files_sharing.po b/l10n/ur_PK/files_sharing.po index 119e4cb853..bdb1bd4bf0 100644 --- a/l10n/ur_PK/files_sharing.po +++ b/l10n/ur_PK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -29,28 +29,52 @@ msgstr "پاسورڈ" msgid "Submit" msgstr "" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "" -#: templates/public.php:44 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "" -#: templates/public.php:54 +#: templates/public.php:56 msgid "Cancel upload" msgstr "" -#: templates/public.php:83 +#: templates/public.php:85 msgid "No preview available for" msgstr "" diff --git a/l10n/ur_PK/lib.po b/l10n/ur_PK/lib.po index 6c94b885fd..b6fb2fe245 100644 --- a/l10n/ur_PK/lib.po +++ b/l10n/ur_PK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -46,7 +46,7 @@ msgstr "ایڈمن" msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "آپ کے اختیار میں ویب سروسیز" @@ -257,7 +257,7 @@ msgstr "" msgid "years ago" msgstr "" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/ur_PK/user_ldap.po b/l10n/ur_PK/user_ldap.po index 32adb4b635..68f284014e 100644 --- a/l10n/ur_PK/user_ldap.po +++ b/l10n/ur_PK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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 cc90423755..10cc991123 100644 --- a/l10n/vi/core.po +++ b/l10n/vi/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -227,7 +227,7 @@ msgstr "Loại đối tượng không được chỉ định." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Lỗi" @@ -247,7 +247,7 @@ msgstr "Được chia sẻ" msgid "Share" msgstr "Chia sẻ" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Lỗi trong quá trình chia sẻ" @@ -347,23 +347,23 @@ msgstr "xóa" msgid "share" msgstr "chia sẻ" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Mật khẩu bảo vệ" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Lỗi không thiết lập ngày kết thúc" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Lỗi cấu hình ngày kết thúc" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "Đang gởi ..." -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "Email đã được gửi" @@ -462,7 +462,7 @@ msgstr "Giúp đỡ" msgid "Access forbidden" msgstr "Truy cập bị cấm" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Không tìm thấy Clound" diff --git a/l10n/vi/files.po b/l10n/vi/files.po index f7d88926a6..990c1c729a 100644 --- a/l10n/vi/files.po +++ b/l10n/vi/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 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" @@ -121,7 +121,7 @@ msgstr "Chia sẻ" msgid "Delete permanently" msgstr "Xóa vĩnh vễn" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Xóa" @@ -129,7 +129,7 @@ msgstr "Xóa" msgid "Rename" msgstr "Sửa tên" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Đang chờ" @@ -161,11 +161,11 @@ msgstr "lùi lại" msgid "perform delete operation" msgstr "thực hiện việc xóa" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 tệp tin đang được tải lên" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "tệp tin đang được tải lên" @@ -201,15 +201,15 @@ msgstr "Your download is being prepared. This might take some time if the files msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Tên" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Kích cỡ" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Thay đổi" @@ -286,45 +286,45 @@ msgstr "Thư mục" msgid "From link" msgstr "Từ liên kết" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "File đã bị xóa" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Hủy upload" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "Bạn không có quyền ghi vào đây." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Không có gì ở đây .Hãy tải lên một cái gì đó !" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Tải về" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Bỏ chia sẻ" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "Tập tin tải lên quá lớn" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Các tập tin bạn đang tải lên vượt quá kích thước tối đa cho phép trên máy chủ ." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Tập tin đang được quét ,vui lòng chờ." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Hiện tại đang quét" diff --git a/l10n/vi/files_sharing.po b/l10n/vi/files_sharing.po index 4bcdd783ac..790f1962b0 100644 --- a/l10n/vi/files_sharing.po +++ b/l10n/vi/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -29,28 +29,52 @@ msgstr "Mật khẩu" msgid "Submit" msgstr "Xác nhận" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s đã chia sẻ thư mục %s với bạn" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s đã chia sẻ tập tin %s với bạn" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Tải về" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Tải lên" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Hủy upload" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Không có xem trước cho" diff --git a/l10n/vi/lib.po b/l10n/vi/lib.po index 83319251fa..a36030ee8e 100644 --- a/l10n/vi/lib.po +++ b/l10n/vi/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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 @@ msgstr "Quản trị" msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "dịch vụ web dưới sự kiểm soát của bạn" @@ -257,7 +257,7 @@ msgstr "năm trước" msgid "years ago" msgstr "năm trước" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/vi/user_ldap.po b/l10n/vi/user_ldap.po index 9ca92f2b61..f9e4d85ee6 100644 --- a/l10n/vi/user_ldap.po +++ b/l10n/vi/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/core.po b/l10n/zh_CN.GB2312/core.po index a6beec56ef..f39018da43 100644 --- a/l10n/zh_CN.GB2312/core.po +++ b/l10n/zh_CN.GB2312/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -228,7 +228,7 @@ msgstr "未指定对象类型。" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "出错" @@ -248,7 +248,7 @@ msgstr "已分享" msgid "Share" msgstr "分享" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "分享出错" @@ -348,23 +348,23 @@ msgstr "删除" msgid "share" msgstr "分享" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "密码保护" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "取消设置失效日期出错" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "设置失效日期出错" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "发送中……" -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "电子邮件已发送" @@ -463,7 +463,7 @@ msgstr "帮助" msgid "Access forbidden" msgstr "禁止访问" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "云 没有被找到" diff --git a/l10n/zh_CN.GB2312/files.po b/l10n/zh_CN.GB2312/files.po index f04f187b9f..0110f62f0f 100644 --- a/l10n/zh_CN.GB2312/files.po +++ b/l10n/zh_CN.GB2312/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:41+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -121,7 +121,7 @@ msgstr "分享" msgid "Delete permanently" msgstr "永久删除" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "删除" @@ -129,7 +129,7 @@ msgstr "删除" msgid "Rename" msgstr "重命名" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "等待中" @@ -161,11 +161,11 @@ msgstr "撤销" msgid "perform delete operation" msgstr "执行删除" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 个文件正在上传" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "个文件正在上传" @@ -201,15 +201,15 @@ msgstr "正在下载,可能会花点时间,跟文件大小有关" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "不正确文件夹名。Shared是保留名,不能使用。" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "名称" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "大小" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "修改日期" @@ -286,45 +286,45 @@ msgstr "文件夹" msgid "From link" msgstr "来自链接" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "已删除的文件" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "取消上传" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "您没有写入权限。" -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "这里没有东西.上传点什么!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "下载" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "取消分享" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "上传过大" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "你正在试图上传的文件超过了此服务器支持的最大的文件大小." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "正在扫描文件,请稍候." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "正在扫描" diff --git a/l10n/zh_CN.GB2312/files_sharing.po b/l10n/zh_CN.GB2312/files_sharing.po index 9894200717..8ee0a2a54c 100644 --- a/l10n/zh_CN.GB2312/files_sharing.po +++ b/l10n/zh_CN.GB2312/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -29,28 +29,52 @@ msgstr "密码" msgid "Submit" msgstr "提交" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s 与您分享了文件夹 %s" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s 与您分享了文件 %s" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "下载" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "上传" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "取消上传" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "没有预览可用于" diff --git a/l10n/zh_CN.GB2312/lib.po b/l10n/zh_CN.GB2312/lib.po index 63fdc2e17b..e948c4e021 100644 --- a/l10n/zh_CN.GB2312/lib.po +++ b/l10n/zh_CN.GB2312/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -46,7 +46,7 @@ msgstr "管理员" msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "您控制的网络服务" @@ -257,7 +257,7 @@ msgstr "去年" msgid "years ago" msgstr "年前" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/zh_CN.GB2312/user_ldap.po b/l10n/zh_CN.GB2312/user_ldap.po index d65a51203b..ce8958d3f6 100644 --- a/l10n/zh_CN.GB2312/user_ldap.po +++ b/l10n/zh_CN.GB2312/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/core.po b/l10n/zh_CN/core.po index d3c2a4dfcb..fed020d0c9 100644 --- a/l10n/zh_CN/core.po +++ b/l10n/zh_CN/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -228,7 +228,7 @@ msgstr "未指定对象类型。" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "错误" @@ -248,7 +248,7 @@ msgstr "已共享" msgid "Share" msgstr "分享" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "共享时出错" @@ -348,23 +348,23 @@ msgstr "删除" msgid "share" msgstr "共享" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "密码已受保护" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "取消设置过期日期时出错" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "设置过期日期时出错" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "正在发送..." -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "邮件已发送" @@ -463,7 +463,7 @@ msgstr "帮助" msgid "Access forbidden" msgstr "访问禁止" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "未找到云" diff --git a/l10n/zh_CN/files.po b/l10n/zh_CN/files.po index 458dbf1fc9..c43db5b90c 100644 --- a/l10n/zh_CN/files.po +++ b/l10n/zh_CN/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 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" @@ -123,7 +123,7 @@ msgstr "分享" msgid "Delete permanently" msgstr "永久删除" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "删除" @@ -131,7 +131,7 @@ msgstr "删除" msgid "Rename" msgstr "重命名" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "等待" @@ -163,11 +163,11 @@ msgstr "撤销" msgid "perform delete operation" msgstr "进行删除操作" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1个文件上传中" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "文件上传中" @@ -203,15 +203,15 @@ msgstr "下载正在准备中。如果文件较大可能会花费一些时间。 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "无效文件夹名。'共享' 是 Owncloud 预留的文件夹名。" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "名称" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "大小" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "修改日期" @@ -288,45 +288,45 @@ msgstr "文件夹" msgid "From link" msgstr "来自链接" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "已删除文件" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "取消上传" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "您没有写权限" -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "这里还什么都没有。上传些东西吧!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "下载" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "取消共享" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "上传文件过大" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "您正尝试上传的文件超过了此服务器可以上传的最大容量限制" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "文件正在被扫描,请稍候。" -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "当前扫描" diff --git a/l10n/zh_CN/files_sharing.po b/l10n/zh_CN/files_sharing.po index 8b9f31ec90..e8e975b5a5 100644 --- a/l10n/zh_CN/files_sharing.po +++ b/l10n/zh_CN/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -29,28 +29,52 @@ msgstr "密码" msgid "Submit" msgstr "提交" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s与您共享了%s文件夹" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s与您共享了%s文件" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "下载" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "上传" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "取消上传" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "没有预览" diff --git a/l10n/zh_CN/lib.po b/l10n/zh_CN/lib.po index 35a0efd7f0..8c8e37a86c 100644 --- a/l10n/zh_CN/lib.po +++ b/l10n/zh_CN/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -47,7 +47,7 @@ msgstr "管理" msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "您控制的web服务" @@ -258,7 +258,7 @@ msgstr "去年" msgid "years ago" msgstr "年前" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/zh_CN/user_ldap.po b/l10n/zh_CN/user_ldap.po index a30c746064..18f7612955 100644 --- a/l10n/zh_CN/user_ldap.po +++ b/l10n/zh_CN/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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 bf8744fdda..8313b4096d 100644 --- a/l10n/zh_HK/core.po +++ b/l10n/zh_HK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -226,7 +226,7 @@ msgstr "" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "錯誤" @@ -246,7 +246,7 @@ msgstr "已分享" msgid "Share" msgstr "分享" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "分享時發生錯誤" @@ -346,23 +346,23 @@ msgstr "刪除" msgid "share" msgstr "分享" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "密碼保護" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "傳送中" -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "郵件已傳" @@ -461,7 +461,7 @@ msgstr "幫助" msgid "Access forbidden" msgstr "" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "未找到Cloud" diff --git a/l10n/zh_HK/files.po b/l10n/zh_HK/files.po index 4381c2c2e4..5fd010d872 100644 --- a/l10n/zh_HK/files.po +++ b/l10n/zh_HK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 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" @@ -120,7 +120,7 @@ msgstr "分享" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "刪除" @@ -128,7 +128,7 @@ msgstr "刪除" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "" @@ -160,11 +160,11 @@ msgstr "" msgid "perform delete operation" msgstr "" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "" @@ -200,15 +200,15 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "名稱" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "" @@ -285,45 +285,45 @@ msgstr "" msgid "From link" msgstr "" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "下載" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "取消分享" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "" diff --git a/l10n/zh_HK/files_sharing.po b/l10n/zh_HK/files_sharing.po index 71a63b6ac2..2ef6877052 100644 --- a/l10n/zh_HK/files_sharing.po +++ b/l10n/zh_HK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -29,28 +29,52 @@ msgstr "密碼" msgid "Submit" msgstr "" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "下載" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "上傳" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "" diff --git a/l10n/zh_HK/lib.po b/l10n/zh_HK/lib.po index e6c8651e5c..a479e19912 100644 --- a/l10n/zh_HK/lib.po +++ b/l10n/zh_HK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -46,7 +46,7 @@ msgstr "管理" msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "" @@ -257,7 +257,7 @@ msgstr "" msgid "years ago" msgstr "" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/zh_HK/user_ldap.po b/l10n/zh_HK/user_ldap.po index 4d504c112d..6f2ed6501b 100644 --- a/l10n/zh_HK/user_ldap.po +++ b/l10n/zh_HK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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 c590f48a35..44c5ff8811 100644 --- a/l10n/zh_TW/core.po +++ b/l10n/zh_TW/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -228,7 +228,7 @@ msgstr "未指定物件類型。" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "錯誤" @@ -248,7 +248,7 @@ msgstr "已分享" msgid "Share" msgstr "分享" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "分享時發生錯誤" @@ -348,23 +348,23 @@ msgstr "刪除" msgid "share" msgstr "分享" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "受密碼保護" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "解除過期日設定失敗" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "錯誤的到期日設定" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "正在傳送..." -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "Email 已寄出" @@ -463,7 +463,7 @@ msgstr "說明" msgid "Access forbidden" msgstr "存取被拒" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "未發現雲端" diff --git a/l10n/zh_TW/files.po b/l10n/zh_TW/files.po index 26b717450a..d50a170ed9 100644 --- a/l10n/zh_TW/files.po +++ b/l10n/zh_TW/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 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" @@ -121,7 +121,7 @@ msgstr "分享" msgid "Delete permanently" msgstr "永久刪除" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "刪除" @@ -129,7 +129,7 @@ msgstr "刪除" msgid "Rename" msgstr "重新命名" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "等候中" @@ -161,11 +161,11 @@ msgstr "復原" msgid "perform delete operation" msgstr "進行刪除動作" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 個檔案正在上傳" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "檔案正在上傳中" @@ -201,15 +201,15 @@ msgstr "正在準備您的下載,若您的檔案較大,將會需要更多時 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "無效的資料夾名稱,'Shared' 的使用被 ownCloud 保留" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "名稱" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "大小" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "修改" @@ -286,45 +286,45 @@ msgstr "資料夾" msgid "From link" msgstr "從連結" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "已刪除的檔案" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "取消上傳" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "您在這裡沒有編輯權。" -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "這裡什麼也沒有,上傳一些東西吧!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "下載" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "取消共享" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "上傳過大" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "您試圖上傳的檔案已超過伺服器的最大檔案大小限制。" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "正在掃描檔案,請稍等。" -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "目前掃描" diff --git a/l10n/zh_TW/files_sharing.po b/l10n/zh_TW/files_sharing.po index 7c2b7e2051..265c05f109 100644 --- a/l10n/zh_TW/files_sharing.po +++ b/l10n/zh_TW/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -30,28 +30,52 @@ msgstr "密碼" msgid "Submit" msgstr "送出" -#: templates/public.php:17 +#: 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:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s 和您分享了資料夾 %s " -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s 和您分享了檔案 %s" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "下載" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "上傳" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "取消上傳" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "無法預覽" diff --git a/l10n/zh_TW/lib.po b/l10n/zh_TW/lib.po index 813363fd04..7b06ffdf18 100644 --- a/l10n/zh_TW/lib.po +++ b/l10n/zh_TW/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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" @@ -47,7 +47,7 @@ msgstr "管理" msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "由您控制的網路服務" @@ -258,7 +258,7 @@ msgstr "去年" msgid "years ago" msgstr "幾年前" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/zh_TW/user_ldap.po b/l10n/zh_TW/user_ldap.po index c8a612eeb6..51ad7117fb 100644 --- a/l10n/zh_TW/user_ldap.po +++ b/l10n/zh_TW/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-30 12:13+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/cs_CZ.php b/lib/l10n/cs_CZ.php index 917f383bb8..7390c5f432 100644 --- a/lib/l10n/cs_CZ.php +++ b/lib/l10n/cs_CZ.php @@ -5,11 +5,14 @@ "Users" => "Uživatelé", "Apps" => "Aplikace", "Admin" => "Administrace", +"Failed to upgrade \"%s\"." => "Selhalo povýšení verze \"%s\".", "web services under your control" => "služby webu pod Vaší kontrolou", +"cannot open \"%s\"" => "nelze otevřít \"%s\"", "ZIP download is turned off." => "Stahování ZIPu je vypnuto.", "Files need to be downloaded one by one." => "Soubory musí být stahovány jednotlivě.", "Back to Files" => "Zpět k souborům", "Selected files too large to generate zip file." => "Vybrané soubory jsou příliš velké pro vytvoření zip souboru.", +"Download the files in smaller chunks, seperately or kindly ask your administrator." => "Stáhněte soubory po menších částech, samostatně, nebo se obraťte na správce.", "couldn't be determined" => "nelze zjistit", "Application is not enabled" => "Aplikace není povolena", "Authentication error" => "Chyba ověření", @@ -49,5 +52,6 @@ "%d months ago" => "Před %d měsíci", "last year" => "minulý rok", "years ago" => "před lety", +"Caused by:" => "Příčina:", "Could not find category \"%s\"" => "Nelze nalézt kategorii \"%s\"" ); diff --git a/settings/l10n/cs_CZ.php b/settings/l10n/cs_CZ.php index 8f6263d634..c962c6a179 100644 --- a/settings/l10n/cs_CZ.php +++ b/settings/l10n/cs_CZ.php @@ -37,15 +37,19 @@ "A valid password must be provided" => "Musíte zadat platné heslo", "__language_name__" => "Česky", "Security Warning" => "Bezpečnostní upozornění", +"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." => "Váš datový adresář i vaše soubory jsou pravděpodobně přístupné z internetu. Soubor .htaccess nefunguje. Důrazně doporučujeme nakonfigurovat webový server, aby datový adresář nebyl nadále přístupný nebo přesunout datový adresář mimo adresář zpřístupňovaný webovým serverem.", "Setup Warning" => "Upozornění nastavení", "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, protože rozhraní WebDAV je rozbité.", "Please double check the
installation guides." => "Zkontrolujte prosím znovu instalační příručku.", "Module 'fileinfo' missing" => "Schází modul 'fileinfo'", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Schází modul PHP 'fileinfo'. Doporučujeme jej povolit pro nejlepší výsledky detekce typů MIME.", "Locale not working" => "Locale nefunguje", +"System locale can't be set to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "Systémové nastavení lokalizace nemohlo být nastaveno na %s. Mohou se tedy vyskytnout problémy s některými znaky v názvech souborů. Důrazně doporučujeme nainstalovat balíčky potřebné pro podporu %s ve vašem systému.", "Internet connection not working" => "Spojení s internetem nefujguje", +"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í připojení k internetu. Některé moduly jako externí úložiště, oznámení o dostupných aktualizacích nebo instalace aplikací třetích stran nebudou fungovat. Přístup k souborům z jiných míst a odesílání oznamovacích e-mailů také nemusí fungovat. Pokud si přejete využívat všech vlastností ownCloud, doporučujeme povolit připojení k internetu tomuto serveru.", "Cron" => "Cron", "Execute one task with each page loaded" => "Spustit jednu úlohu s každou načtenou stránkou", +"cron.php is registered at a webcron service to call cron.php once a minute over http." => "cron.php je registrován u služby webcron pro zavolání stránky cron.php jednou za minutu po http.", "Use systems cron service to call the cron.php file once a minute." => "Použijte systémovou službu cron pro spouštění souboru cron.php jednou za minutu.", "Sharing" => "Sdílení", "Enable Share API" => "Povolit API sdílení", From 627fd8ba8dc9c7711a6015207d4e8beaaa5529fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Wed, 31 Jul 2013 16:52:53 +0200 Subject: [PATCH 30/64] add overflow-y scroll and clean up indents --- search/css/results.css | 113 +++++++++++++++++++++-------------------- 1 file changed, 57 insertions(+), 56 deletions(-) diff --git a/search/css/results.css b/search/css/results.css index 2f092f3789..0e1db12e90 100644 --- a/search/css/results.css +++ b/search/css/results.css @@ -2,67 +2,68 @@ This file is licensed under the Affero General Public License version 3 or later. See the COPYING-README file. */ - #searchresults { - background-color:#fff; - border-bottom-left-radius:1em; - box-shadow:0 0 10px #000; - list-style:none; - max-height:80%; - overflow:hidden; - padding-bottom:1em; - position:fixed; - right:0; - text-overflow:ellipsis; - top:3.5em; - width:26.5em; - z-index:75; - } - - .ie8 #searchresults { - border: 1px solid #666 !important; - } +#searchresults { + background-color:#fff; + border-bottom-left-radius:1em; + box-shadow:0 0 10px #000; + list-style:none; + max-height:80%; + overflow-x:hidden; + overflow-y: scroll; + padding-bottom:1em; + position:fixed; + right:0; + text-overflow:ellipsis; + top:3.5em; + width:26.5em; + z-index:75; +} - #searchresults li.resultHeader { - background-color:#eee; - border-bottom:solid 1px #CCC; - font-size:1.2em; - font-weight:700; - padding:.2em; - } +.ie8 #searchresults { + border: 1px solid #666 !important; +} - #searchresults li.result { - margin-left:2em; - } +#searchresults li.resultHeader { + background-color:#eee; + border-bottom:solid 1px #CCC; + font-size:1.2em; + font-weight:700; + padding:.2em; +} - #searchresults table { - border-spacing:0; - table-layout:fixed; - top:0; - width:100%; - } +#searchresults li.result { + margin-left:2em; +} - #searchresults td { - vertical-align:top; - padding:0 .3em; - } +#searchresults table { + border-spacing:0; + table-layout:fixed; + top:0; + width:100%; +} - #searchresults td.result div.text { - padding-left:1em; - white-space:nowrap; - } +#searchresults td { + vertical-align:top; + padding:0 .3em; +} - #searchresults td.result * { - cursor:pointer; - } +#searchresults td.result div.text { + padding-left:1em; + white-space:nowrap; +} - #searchresults td.type { - border-bottom:none; - border-right:1px solid #aaa; - font-weight:700; - text-align:right; - width:3.5em; - } +#searchresults td.result * { + cursor:pointer; +} - #searchresults tr.current { - background-color:#ddd; - } \ No newline at end of file +#searchresults td.type { + border-bottom:none; + border-right:1px solid #aaa; + font-weight:700; + text-align:right; + width:3.5em; +} + +#searchresults tr.current { + background-color:#ddd; +} \ No newline at end of file From cbf17617b01060853f69e094c8b6dd9c6f6f885f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Wed, 31 Jul 2013 17:05:24 +0200 Subject: [PATCH 31/64] update css properties with px based values --- search/css/results.css | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/search/css/results.css b/search/css/results.css index 0e1db12e90..30cc352fd7 100644 --- a/search/css/results.css +++ b/search/css/results.css @@ -4,18 +4,18 @@ #searchresults { background-color:#fff; - border-bottom-left-radius:1em; + border-bottom-left-radius:11px; box-shadow:0 0 10px #000; list-style:none; max-height:80%; overflow-x:hidden; overflow-y: scroll; - padding-bottom:1em; + padding-bottom:6px; position:fixed; right:0; text-overflow:ellipsis; - top:3.5em; - width:26.5em; + top:20px; + width:380px; z-index:75; } From b037f2dc6e333482d0c0fba663769049bc275446 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Thu, 1 Aug 2013 01:57:04 -0400 Subject: [PATCH 32/64] [tx-robot] updated from transifex --- apps/files_encryption/l10n/sl.php | 2 ++ apps/files_external/l10n/uk.php | 1 + apps/files_sharing/l10n/ca.php | 6 ++++++ apps/files_sharing/l10n/da.php | 6 ++++++ apps/files_sharing/l10n/de.php | 6 ++++++ apps/files_sharing/l10n/de_DE.php | 6 ++++++ apps/files_sharing/l10n/es.php | 6 ++++++ apps/files_sharing/l10n/fi_FI.php | 6 ++++++ apps/files_sharing/l10n/gl.php | 6 ++++++ apps/files_sharing/l10n/it.php | 6 ++++++ apps/files_sharing/l10n/pl.php | 7 +++++++ apps/files_sharing/l10n/pt_BR.php | 6 ++++++ apps/files_trashbin/l10n/ca.php | 1 + apps/files_trashbin/l10n/da.php | 1 + apps/files_trashbin/l10n/gl.php | 1 + apps/files_trashbin/l10n/pl.php | 1 + apps/files_trashbin/l10n/uk.php | 1 + apps/files_versions/l10n/ca.php | 3 +++ apps/files_versions/l10n/pl.php | 3 +++ apps/user_ldap/l10n/ca.php | 8 ++++++++ apps/user_webdavauth/l10n/ca.php | 4 +++- apps/user_webdavauth/l10n/de_DE.php | 2 +- apps/user_webdavauth/l10n/pl.php | 4 +++- core/l10n/pl.php | 5 +++++ core/l10n/sl.php | 1 + core/l10n/sq.php | 4 ++++ l10n/ca/files_sharing.po | 18 +++++++++--------- l10n/ca/files_trashbin.po | 9 +++++---- l10n/ca/files_versions.po | 13 +++++++------ l10n/ca/user_ldap.po | 22 +++++++++++----------- l10n/ca/user_webdavauth.po | 10 +++++----- l10n/da/files_sharing.po | 18 +++++++++--------- l10n/da/files_trashbin.po | 9 +++++---- l10n/de/files_sharing.po | 19 ++++++++++--------- l10n/de_DE/files_sharing.po | 19 ++++++++++--------- l10n/de_DE/files_versions.po | 6 +++--- l10n/de_DE/user_webdavauth.po | 9 +++++---- l10n/es/files_sharing.po | 19 ++++++++++--------- l10n/fi_FI/files_sharing.po | 18 +++++++++--------- l10n/gl/files_sharing.po | 18 +++++++++--------- l10n/gl/files_trashbin.po | 9 +++++---- l10n/it/files_sharing.po | 18 +++++++++--------- l10n/pl/core.po | 16 ++++++++-------- l10n/pl/files_sharing.po | 21 +++++++++++---------- l10n/pl/files_trashbin.po | 9 +++++---- l10n/pl/files_versions.po | 13 +++++++------ l10n/pl/lib.po | 14 +++++++------- l10n/pl/settings.po | 8 ++++---- l10n/pl/user_webdavauth.po | 10 +++++----- l10n/pt_BR/files_sharing.po | 18 +++++++++--------- l10n/sl/core.po | 6 +++--- l10n/sl/files_encryption.po | 10 +++++----- l10n/sq/core.po | 15 ++++++++------- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/uk/files_external.po | 21 +++++++++++---------- l10n/uk/files_trashbin.po | 9 +++++---- lib/l10n/pl.php | 4 ++++ settings/l10n/pl.php | 1 + 68 files changed, 325 insertions(+), 209 deletions(-) diff --git a/apps/files_encryption/l10n/sl.php b/apps/files_encryption/l10n/sl.php index 8b28ba0115..016937c141 100644 --- a/apps/files_encryption/l10n/sl.php +++ b/apps/files_encryption/l10n/sl.php @@ -8,6 +8,8 @@ "Private key password successfully updated." => "Zasebni ključ za geslo je bil uspešno posodobljen.", "Could not update the private key password. Maybe the old password was not correct." => "Zasebnega ključa za geslo ni bilo mogoče posodobiti. Morda vnos starega gesla ni bil pravilen.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Vaš zasebni ključ ni veljaven. Morda je bilo vaše geslo spremenjeno zunaj sistema ownCloud (npr. v skupnem imeniku). Svoj zasebni ključ, ki vam bo omogočil dostop do šifriranih dokumentov, lahko posodobite v osebnih nastavitvah.", +"Missing requirements." => "Manjkajoče zahteve", +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Preverite, da imate na strežniku nameščen PHP 5.3.3 ali novejši in da je omogočen in pravilno nastavljen PHP OpenSSL . Zaenkrat je šifriranje onemogočeno.", "Saving..." => "Poteka shranjevanje ...", "Your private key is not valid! Maybe the your password was changed from outside." => "Vaš zasebni ključ ni veljaven. Morda je bilo vaše geslo spremenjeno.", "You can unlock your private key in your " => "Svoj zasebni ključ lahko odklenite v", diff --git a/apps/files_external/l10n/uk.php b/apps/files_external/l10n/uk.php index 34d19af0ee..8783896d28 100644 --- a/apps/files_external/l10n/uk.php +++ b/apps/files_external/l10n/uk.php @@ -6,6 +6,7 @@ "Error configuring Google Drive storage" => "Помилка при налаштуванні сховища Google Drive", "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "Попередження: Клієнт \"smbclient\" не встановлено. Під'єднанатися до CIFS/SMB тек неможливо. Попрохайте системного адміністратора встановити його.", "Warning: The FTP support in PHP is not enabled or installed. Mounting of FTP shares is not possible. Please ask your system administrator to install it." => "Попередження: Підтримка FTP в PHP не увімкнута чи не встановлена. Під'єднанатися до FTP тек неможливо. Попрохайте системного адміністратора встановити її.", +"Warning: The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "Попередження: Підтримка CURL в PHP не увімкнута чи не встановлена. Під'єднанатися OwnCloud / WebDav або Google Drive неможливе. Попрохайте системного адміністратора встановити її.", "External Storage" => "Зовнішні сховища", "Folder name" => "Ім'я теки", "External storage" => "Зовнішнє сховище", diff --git a/apps/files_sharing/l10n/ca.php b/apps/files_sharing/l10n/ca.php index 9d2ab5031c..ccf7fc28ec 100644 --- a/apps/files_sharing/l10n/ca.php +++ b/apps/files_sharing/l10n/ca.php @@ -2,6 +2,12 @@ "The password is wrong. Try again." => "la contrasenya és incorrecta. Intenteu-ho de nou.", "Password" => "Contrasenya", "Submit" => "Envia", +"Sorry, this link doesn’t seem to work anymore." => "Aquest enllaç sembla que no funciona.", +"Reasons might be:" => "Les raons podrien ser:", +"the item was removed" => "l'element ha estat eliminat", +"the link expired" => "l'enllaç ha vençut", +"sharing is disabled" => "s'ha desactivat la compartició", +"For more info, please ask the person who sent this link." => "Per més informació contacteu amb qui us ha enviat l'enllaç.", "%s shared the folder %s with you" => "%s ha compartit la carpeta %s amb vós", "%s shared the file %s with you" => "%s ha compartit el fitxer %s amb vós", "Download" => "Baixa", diff --git a/apps/files_sharing/l10n/da.php b/apps/files_sharing/l10n/da.php index cf82e93d4a..f9ee949484 100644 --- a/apps/files_sharing/l10n/da.php +++ b/apps/files_sharing/l10n/da.php @@ -2,6 +2,12 @@ "The password is wrong. Try again." => "Kodeordet er forkert. Prøv igen.", "Password" => "Kodeord", "Submit" => "Send", +"Sorry, this link doesn’t seem to work anymore." => "Desværre, dette link ser ikke ud til at fungerer længere.", +"Reasons might be:" => "Årsagen kan være:", +"the item was removed" => "Filen blev fjernet", +"the link expired" => "linket udløb", +"sharing is disabled" => "deling er deaktiveret", +"For more info, please ask the person who sent this link." => "For yderligere information, kontakt venligst personen der sendte linket. ", "%s shared the folder %s with you" => "%s delte mappen %s med dig", "%s shared the file %s with you" => "%s delte filen %s med dig", "Download" => "Download", diff --git a/apps/files_sharing/l10n/de.php b/apps/files_sharing/l10n/de.php index ad2d171aa9..9b0184f310 100644 --- a/apps/files_sharing/l10n/de.php +++ b/apps/files_sharing/l10n/de.php @@ -2,6 +2,12 @@ "The password is wrong. Try again." => "Bitte überprüfen sie Ihr Passwort und versuchen Sie es erneut.", "Password" => "Passwort", "Submit" => "Absenden", +"Sorry, this link doesn’t seem to work anymore." => "Entschuldigung, dieser Link scheint nicht mehr zu funktionieren.", +"Reasons might be:" => "Gründe könnten sein:", +"the item was removed" => "Die Elemente wurden entfernt", +"the link expired" => "Der Link ist abgelaufen", +"sharing is disabled" => "Teilen ist deaktiviert", +"For more info, please ask the person who sent this link." => "Für mehr Informationen, frage bitte die Person, die dir diesen Link geschickt hat.", "%s shared the folder %s with you" => "%s hat den Ordner %s mit Dir geteilt", "%s shared the file %s with you" => "%s hat die Datei %s mit Dir geteilt", "Download" => "Download", diff --git a/apps/files_sharing/l10n/de_DE.php b/apps/files_sharing/l10n/de_DE.php index cac7b7591d..8661e3ee94 100644 --- a/apps/files_sharing/l10n/de_DE.php +++ b/apps/files_sharing/l10n/de_DE.php @@ -2,6 +2,12 @@ "The password is wrong. Try again." => "Das Passwort ist falsch. Bitte versuchen Sie es erneut.", "Password" => "Passwort", "Submit" => "Bestätigen", +"Sorry, this link doesn’t seem to work anymore." => "Entschuldigung, dieser Link scheint nicht mehr zu funktionieren.", +"Reasons might be:" => "Gründe könnten sein:", +"the item was removed" => "Das Element wurde entfernt", +"the link expired" => "Der Link ist abgelaufen", +"sharing is disabled" => "Teilen ist deaktiviert", +"For more info, please ask the person who sent this link." => "Für mehr Informationen, fragen Sie bitte die Person, die Ihnen diesen Link geschickt hat.", "%s shared the folder %s with you" => "%s hat den Ordner %s mit Ihnen geteilt", "%s shared the file %s with you" => "%s hat die Datei %s mit Ihnen geteilt", "Download" => "Herunterladen", diff --git a/apps/files_sharing/l10n/es.php b/apps/files_sharing/l10n/es.php index 1b65cf0c19..2a006630ab 100644 --- a/apps/files_sharing/l10n/es.php +++ b/apps/files_sharing/l10n/es.php @@ -2,6 +2,12 @@ "The password is wrong. Try again." => "La contraseña introducida es errónea. Inténtelo de nuevo.", "Password" => "Contraseña", "Submit" => "Enviar", +"Sorry, this link doesn’t seem to work anymore." => "Este enlace parece no funcionar más.", +"Reasons might be:" => "Las causas podrían ser:", +"the item was removed" => "el elemento fue eliminado", +"the link expired" => "el enlace expiró", +"sharing is disabled" => "compartir está desactivado", +"For more info, please ask the person who sent this link." => "Para mayor información, contacte a la persona que le envió el enlace.", "%s shared the folder %s with you" => "%s compartió la carpeta %s contigo", "%s shared the file %s with you" => "%s compartió el fichero %s contigo", "Download" => "Descargar", diff --git a/apps/files_sharing/l10n/fi_FI.php b/apps/files_sharing/l10n/fi_FI.php index 370cbd9874..59c951b724 100644 --- a/apps/files_sharing/l10n/fi_FI.php +++ b/apps/files_sharing/l10n/fi_FI.php @@ -2,6 +2,12 @@ "The password is wrong. Try again." => "Väärä salasana. Yritä uudelleen.", "Password" => "Salasana", "Submit" => "Lähetä", +"Sorry, this link doesn’t seem to work anymore." => "Valitettavasti linkki ei vaikuta enää toimivan.", +"Reasons might be:" => "Mahdollisia syitä:", +"the item was removed" => "kohde poistettiin", +"the link expired" => "linkki vanheni", +"sharing is disabled" => "jakaminen on poistettu käytöstä", +"For more info, please ask the person who sent this link." => "Kysy lisätietoja henkilöltä, jolta sait linkin.", "%s shared the folder %s with you" => "%s jakoi kansion %s kanssasi", "%s shared the file %s with you" => "%s jakoi tiedoston %s kanssasi", "Download" => "Lataa", diff --git a/apps/files_sharing/l10n/gl.php b/apps/files_sharing/l10n/gl.php index 2d8de8e101..c90f5b0760 100644 --- a/apps/files_sharing/l10n/gl.php +++ b/apps/files_sharing/l10n/gl.php @@ -2,6 +2,12 @@ "The password is wrong. Try again." => "O contrasinal é incorrecto. Ténteo de novo.", "Password" => "Contrasinal", "Submit" => "Enviar", +"Sorry, this link doesn’t seem to work anymore." => "Semella que esta ligazón non funciona.", +"Reasons might be:" => "As razóns poderían ser:", +"the item was removed" => "o elemento foi retirado", +"the link expired" => "a ligazón caducou", +"sharing is disabled" => "foi desactivada a compartición", +"For more info, please ask the person who sent this link." => "Para obter máis información, pregúntelle á persoa que lle enviou a ligazón.", "%s shared the folder %s with you" => "%s compartiu o cartafol %s con vostede", "%s shared the file %s with you" => "%s compartiu o ficheiro %s con vostede", "Download" => "Descargar", diff --git a/apps/files_sharing/l10n/it.php b/apps/files_sharing/l10n/it.php index cf25c53ca3..5bd1879571 100644 --- a/apps/files_sharing/l10n/it.php +++ b/apps/files_sharing/l10n/it.php @@ -2,6 +2,12 @@ "The password is wrong. Try again." => "La password è errata. Prova ancora.", "Password" => "Password", "Submit" => "Invia", +"Sorry, this link doesn’t seem to work anymore." => "Spiacenti, questo collegamento sembra non essere più attivo.", +"Reasons might be:" => "I motivi potrebbero essere:", +"the item was removed" => "l'elemento è stato rimosso", +"the link expired" => "il collegamento è scaduto", +"sharing is disabled" => "la condivisione è disabilitata", +"For more info, please ask the person who sent this link." => "Per ulteriori informazioni, chiedi alla persona che ti ha inviato il collegamento.", "%s shared the folder %s with you" => "%s ha condiviso la cartella %s con te", "%s shared the file %s with you" => "%s ha condiviso il file %s con te", "Download" => "Scarica", diff --git a/apps/files_sharing/l10n/pl.php b/apps/files_sharing/l10n/pl.php index 39039da77b..3f72403116 100644 --- a/apps/files_sharing/l10n/pl.php +++ b/apps/files_sharing/l10n/pl.php @@ -1,6 +1,13 @@ "To hasło jest niewłaściwe. Spróbuj ponownie.", "Password" => "Hasło", "Submit" => "Wyślij", +"Sorry, this link doesn’t seem to work anymore." => "Przepraszamy ale wygląda na to, że ten link już nie działa.", +"Reasons might be:" => "Możliwe powody:", +"the item was removed" => "element został usunięty", +"the link expired" => "link wygasł", +"sharing is disabled" => "Udostępnianie jest wyłączone", +"For more info, please ask the person who sent this link." => "Aby uzyskać więcej informacji proszę poprosić osobę, która wysłał ten link.", "%s shared the folder %s with you" => "%s współdzieli folder z tobą %s", "%s shared the file %s with you" => "%s współdzieli z tobą plik %s", "Download" => "Pobierz", diff --git a/apps/files_sharing/l10n/pt_BR.php b/apps/files_sharing/l10n/pt_BR.php index c82989857a..ffd068f4fc 100644 --- a/apps/files_sharing/l10n/pt_BR.php +++ b/apps/files_sharing/l10n/pt_BR.php @@ -2,6 +2,12 @@ "The password is wrong. Try again." => "Senha incorreta. Tente novamente.", "Password" => "Senha", "Submit" => "Submeter", +"Sorry, this link doesn’t seem to work anymore." => "Desculpe, este link parece não mais funcionar.", +"Reasons might be:" => "As razões podem ser:", +"the item was removed" => "o item foi removido", +"the link expired" => "o link expirou", +"sharing is disabled" => "compartilhamento está desativada", +"For more info, please ask the person who sent this link." => "Para mais informações, por favor, pergunte a pessoa que enviou este link.", "%s shared the folder %s with you" => "%s compartilhou a pasta %s com você", "%s shared the file %s with you" => "%s compartilhou o arquivo %s com você", "Download" => "Baixar", diff --git a/apps/files_trashbin/l10n/ca.php b/apps/files_trashbin/l10n/ca.php index b7540f653d..2f15068cb5 100644 --- a/apps/files_trashbin/l10n/ca.php +++ b/apps/files_trashbin/l10n/ca.php @@ -11,6 +11,7 @@ "{count} folders" => "{count} carpetes", "1 file" => "1 fitxer", "{count} files" => "{count} fitxers", +"restored" => "restaurat", "Nothing in here. Your trash bin is empty!" => "La paperera està buida!", "Restore" => "Recupera", "Delete" => "Esborra", diff --git a/apps/files_trashbin/l10n/da.php b/apps/files_trashbin/l10n/da.php index 16f98baed7..ff114a10e7 100644 --- a/apps/files_trashbin/l10n/da.php +++ b/apps/files_trashbin/l10n/da.php @@ -11,6 +11,7 @@ "{count} folders" => "{count} mapper", "1 file" => "1 fil", "{count} files" => "{count} filer", +"restored" => "Gendannet", "Nothing in here. Your trash bin is empty!" => "Intet at se her. Din papirkurv er tom!", "Restore" => "Gendan", "Delete" => "Slet", diff --git a/apps/files_trashbin/l10n/gl.php b/apps/files_trashbin/l10n/gl.php index b9b3c8a1e5..d22277c28f 100644 --- a/apps/files_trashbin/l10n/gl.php +++ b/apps/files_trashbin/l10n/gl.php @@ -11,6 +11,7 @@ "{count} folders" => "{count} cartafoles", "1 file" => "1 ficheiro", "{count} files" => "{count} ficheiros", +"restored" => "restaurado", "Nothing in here. Your trash bin is empty!" => "Aquí non hai nada. O cesto do lixo está baleiro!", "Restore" => "Restablecer", "Delete" => "Eliminar", diff --git a/apps/files_trashbin/l10n/pl.php b/apps/files_trashbin/l10n/pl.php index 5c9f558f11..2b9ace19c4 100644 --- a/apps/files_trashbin/l10n/pl.php +++ b/apps/files_trashbin/l10n/pl.php @@ -11,6 +11,7 @@ "{count} folders" => "Ilość folderów: {count}", "1 file" => "1 plik", "{count} files" => "Ilość plików: {count}", +"restored" => "przywrócony", "Nothing in here. Your trash bin is empty!" => "Nic tu nie ma. Twój kosz jest pusty!", "Restore" => "Przywróć", "Delete" => "Usuń", diff --git a/apps/files_trashbin/l10n/uk.php b/apps/files_trashbin/l10n/uk.php index ffc9ab02f4..b2f1076021 100644 --- a/apps/files_trashbin/l10n/uk.php +++ b/apps/files_trashbin/l10n/uk.php @@ -11,6 +11,7 @@ "{count} folders" => "{count} папок", "1 file" => "1 файл", "{count} files" => "{count} файлів", +"restored" => "відновлено", "Nothing in here. Your trash bin is empty!" => "Нічого немає. Ваший кошик для сміття пустий!", "Restore" => "Відновити", "Delete" => "Видалити", diff --git a/apps/files_versions/l10n/ca.php b/apps/files_versions/l10n/ca.php index 4f92c34120..7fd168e1cc 100644 --- a/apps/files_versions/l10n/ca.php +++ b/apps/files_versions/l10n/ca.php @@ -1,5 +1,8 @@ "No s'ha pogut revertir: %s", "Versions" => "Versions", +"Failed to revert {file} to revision {timestamp}." => "Ha fallat en retornar {file} a la revisió {timestamp}", +"More versions..." => "Més versions...", +"No other versions available" => "No hi ha altres versions disponibles", "Restore" => "Recupera" ); diff --git a/apps/files_versions/l10n/pl.php b/apps/files_versions/l10n/pl.php index 3f4f61ec9e..00f4ac3f76 100644 --- a/apps/files_versions/l10n/pl.php +++ b/apps/files_versions/l10n/pl.php @@ -1,5 +1,8 @@ "Nie można było przywrócić: %s", "Versions" => "Wersje", +"Failed to revert {file} to revision {timestamp}." => "Nie udało się przywrócić zmiany {sygnatura czasowa} {plik}.", +"More versions..." => "Więcej wersji...", +"No other versions available" => "Nie są dostępne żadne inne wersje", "Restore" => "Przywróć" ); diff --git a/apps/user_ldap/l10n/ca.php b/apps/user_ldap/l10n/ca.php index af5efbcb54..8cf51f537b 100644 --- a/apps/user_ldap/l10n/ca.php +++ b/apps/user_ldap/l10n/ca.php @@ -15,6 +15,7 @@ "Connection test failed" => "La prova de connexió ha fallat", "Do you really want to delete the current Server Configuration?" => "Voleu eliminar la configuració actual del servidor?", "Confirm Deletion" => "Confirma l'eliminació", +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." => "Avís: Les aplicacions user_ldap i user_webdavauth són incompatibles. Podeu experimentar comportaments inesperats. Demaneu a l'administrador del sistema que en desactivi una.", "Warning: The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." => "Avís: El mòdul PHP LDAP no està instal·lat, el dorsal no funcionarà. Demaneu a l'administrador del sistema que l'instal·li.", "Server configuration" => "Configuració del servidor", "Add Server Configuration" => "Afegeix la configuració del servidor", @@ -44,20 +45,24 @@ "Give an optional backup host. It must be a replica of the main LDAP/AD server." => "Afegiu una màquina de còpia de seguretat opcional. Ha de ser una rèplica del servidor LDAP/AD principal.", "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.", "Use TLS" => "Usa TLS", "Do not use it additionally for LDAPS connections, it will fail." => "No ho useu adicionalment per a conexions LDAPS, fallarà.", "Case insensitve 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.", +"If connection only works with this option, import the LDAP server's SSL certificate in your %s server." => "Si la connexió només funciona amb aquesta opció, importeu el certificat SSL del servidor LDAP en el vostre servidor %s.", "Not recommended, use for testing only." => "No recomanat, ús només per proves.", "Cache Time-To-Live" => "Memòria de cau Time-To-Live", "in seconds. A change empties the cache." => "en segons. Un canvi buidarà la memòria de cau.", "Directory Settings" => "Arranjaments de carpetes", "User Display Name Field" => "Camp per mostrar el nom d'usuari", +"The LDAP attribute to use to generate the user's display name." => "Atribut LDAP a usar per generar el nom a mostrar de l'usuari.", "Base User Tree" => "Arbre base d'usuaris", "One User Base DN per line" => "Una DN Base d'Usuari per línia", "User Search Attributes" => "Atributs de cerca d'usuari", "Optional; one attribute per line" => "Opcional; Un atribut per línia", "Group Display Name Field" => "Camp per mostrar el nom del grup", +"The LDAP attribute to use to generate the groups's display name." => "Atribut LDAP a usar per generar el nom a mostrar del grup.", "Base Group Tree" => "Arbre base de grups", "One Group Base DN per line" => "Una DN Base de Grup per línia", "Group Search Attributes" => "Atributs de cerca de grup", @@ -70,10 +75,13 @@ "User Home Folder Naming Rule" => "Norma per anomenar la carpeta arrel d'usuari", "Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Deixeu-ho buit pel nom d'usuari (per defecte). Altrament, especifiqueu un atribut LDAP/AD.", "Internal Username" => "Nom d'usuari intern", +"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." => "Per defecte el nom d'usuari intern es crearà a partir de l'atribut UUID. Això assegura que el nom d'usuari és únic i que els caràcters no s'han de convertir. El nom d'usuari intern té la restricció que només estan permesos els caràcters: [ a-zA-Z0-9_.@- ]. Els altres caràcters es substitueixen pel seu corresponent ASCII o simplement s'ometen. En cas de col·lisió s'incrementa/decrementa en un. El nom d'usuari intern s'utilitza per identificar un usuari internament. També és el nom per defecte de la carpeta home d'usuari. És també un port de URLs remotes, per exemple tots els serveis *DAV. Amb aquest arranjament es pot variar el comportament per defecte. Per obtenir un comportament similar al d'abans de ownCloud 5, escriviu el nom d'usuari a mostrar en el camp següent. Deixei-lo en blanc si preferiu el comportament per defecte. Els canvis tindran efecte només en els nous usuaris LDAP mapats (afegits).", "Internal Username Attribute:" => "Atribut nom d'usuari intern:", "Override UUID detection" => "Sobrescriu la detecció UUID", +"By default, the UUID attribute is automatically detected. The UUID attribute is used to doubtlessly identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." => "Per defecte, owncloud autodetecta l'atribut UUID. L'atribut UUID s'utilitza per identificar usuaris i grups de forma indubtable. També el nom d'usuari intern es crearà en base a la UUIS, si no heu especificat res diferent a dalt. Podeu sobreescriure l'arranjament i passar l'atribut que desitgeu. Heu d'assegurar-vos que l'atribut que escolliu pot ser recollit tant pels usuaris com pels grups i que és únic. Deixeu-ho en blanc si preferiu el comportament per defecte. els canvis s'aplicaran als usuaris i grups LDAP mapats de nou (afegits).", "UUID Attribute:" => "Atribut UUID:", "Username-LDAP User Mapping" => "Mapatge d'usuari Nom d'usuari-LDAP", +"Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have a internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." => "Els noms d'usuari s'usen per desar i assignar (meta)dades. Per tal d'identificar amb precisió i reconèixer els usuaris, cada usuari LDAP tindrà un nom d'usuari intern. Això requereix mapatge del nom d'usuari a l'usuari LDAP. El nom d'usuari creat es mapa a la UUID de l'usuari LDAP. A més, la DN es posa a la memòria de cau per reduir la interacció LDAP, però no s'usa per identificació. En cas que la DN canvïi, els canvis es trobaran. El nom d'usuari intern s'usa a tot arreu. Si esborreu els mapatges quedaran sobrants a tot arreu. Esborrar els mapatges no és sensible a la configuració, afecta a totes les configuracions LDAP! No esborreu mai els mapatges en un entorn de producció, només en un estadi de prova o experimental.", "Clear Username-LDAP User Mapping" => "Elimina el mapatge d'usuari Nom d'usuari-LDAP", "Clear Groupname-LDAP Group Mapping" => "Elimina el mapatge de grup Nom de grup-LDAP", "Test Configuration" => "Comprovació de la configuració", diff --git a/apps/user_webdavauth/l10n/ca.php b/apps/user_webdavauth/l10n/ca.php index 71a4f0832c..b046e58cee 100644 --- a/apps/user_webdavauth/l10n/ca.php +++ b/apps/user_webdavauth/l10n/ca.php @@ -1,3 +1,5 @@ "Autenticació WebDAV" +"WebDAV Authentication" => "Autenticació WebDAV", +"Address: " => "Adreça:", +"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." => "Les credencials d'usuari s'enviaran a aquesta adreça. Aquest connector comprova la resposta i interpreta els codis d'estat 401 i 403 com a credencials no vàlides, i qualsevol altra resposta com a credencials vàlides." ); diff --git a/apps/user_webdavauth/l10n/de_DE.php b/apps/user_webdavauth/l10n/de_DE.php index 04ab22e9c5..ff55a5d895 100644 --- a/apps/user_webdavauth/l10n/de_DE.php +++ b/apps/user_webdavauth/l10n/de_DE.php @@ -1,5 +1,5 @@ "WebDAV-Authentifizierung", -"Address: " => "Addresse: ", +"Address: " => "Adresse:", "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." => "Die Benutzerdaten werden an diese Adresse gesendet. Dieses Plugin prüft die Antwort und wird die HTTP-Statuscodes 401 und 403 als ungültige Daten interpretieren und alle anderen Antworten als gültige Daten." ); diff --git a/apps/user_webdavauth/l10n/pl.php b/apps/user_webdavauth/l10n/pl.php index 3ed826098d..5dc99eb0c2 100644 --- a/apps/user_webdavauth/l10n/pl.php +++ b/apps/user_webdavauth/l10n/pl.php @@ -1,3 +1,5 @@ "Uwierzytelnienie WebDAV" +"WebDAV Authentication" => "Uwierzytelnienie WebDAV", +"Address: " => "Adres:", +"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." => "Dane uwierzytelniające użytkownika zostaną wysłane na ten adres. Wtyczka sprawdza odpowiedź i będzie interpretował status HTTP 401 i 403 jako nieprawidłowe dane uwierzytelniające i wszystkie inne odpowiedzi jako prawidłowe uwierzytelnienie." ); diff --git a/core/l10n/pl.php b/core/l10n/pl.php index af3bb0bf35..6e5b4327c4 100644 --- a/core/l10n/pl.php +++ b/core/l10n/pl.php @@ -91,6 +91,7 @@ "Request failed!
Did you make sure your email/username was right?" => "Żądanie niepowiodło się!
Czy Twój email/nazwa użytkownika są poprawne?", "You will receive a link to reset your password via Email." => "Odnośnik służący do resetowania hasła zostanie wysłany na adres e-mail.", "Username" => "Nazwa użytkownika", +"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?" => "Pliki są szyfrowane. Jeśli nie włączono klucza odzyskiwania, nie będzie możliwe odzyskać dane z powrotem po zresetowaniu hasła. Jeśli nie masz pewności, co zrobić, prosimy o kontakt z administratorem, przed kontynuowaniem. Czy chcesz kontynuować?", "Yes, I really want to reset my password now" => "Tak, naprawdę chcę zresetować hasło teraz", "Request reset" => "Żądanie resetowania", "Your password was reset" => "Zresetowano hasło", @@ -104,13 +105,16 @@ "Help" => "Pomoc", "Access forbidden" => "Dostęp zabroniony", "Cloud not found" => "Nie odnaleziono chmury", +"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Cześć,\n\nInformuję cię że %s udostępnia ci %s.\nZobacz na: %s\n\nPozdrawiam!", "Edit categories" => "Edytuj kategorie", "Add" => "Dodaj", "Security Warning" => "Ostrzeżenie o zabezpieczeniach", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Twója wersja PHP jest narażona na NULL Byte attack (CVE-2006-7243)", +"Please update your PHP installation to use %s securely." => "Proszę uaktualnij swoją instalacje PHP aby używać %s bezpiecznie.", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Bezpieczny generator liczb losowych jest niedostępny. Włącz rozszerzenie OpenSSL w PHP.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Bez bezpiecznego generatora liczb losowych, osoba atakująca może przewidzieć token resetujący hasło i przejąć kontrolę nad twoim kontem.", "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Twój katalog danych i pliki są prawdopodobnie dostępne z poziomu internetu, ponieważ plik .htaccess nie działa.", +"For information how to properly configure your server, please see the documentation." => "Aby uzyskać informacje jak poprawnie skonfigurować swój serwer, zapoznaj się z dokumentacją.", "Create an admin account" => "Utwórz konta administratora", "Advanced" => "Zaawansowane", "Data folder" => "Katalog danych", @@ -131,6 +135,7 @@ "remember" => "pamiętaj", "Log in" => "Zaloguj", "Alternative Logins" => "Alternatywne loginy", +"Hey there,

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

Cheers!" => "Cześć,

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

Pozdrawiam!", "prev" => "wstecz", "next" => "naprzód", "Updating ownCloud to version %s, this may take a while." => "Aktualizowanie ownCloud do wersji %s. Może to trochę potrwać." diff --git a/core/l10n/sl.php b/core/l10n/sl.php index 37194c3905..e7b88316ec 100644 --- a/core/l10n/sl.php +++ b/core/l10n/sl.php @@ -114,6 +114,7 @@ "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Na voljo ni nobenega varnega ustvarjalnika naključnih števil. Omogočiti je treba razširitev PHP OpenSSL.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Brez varnega ustvarjalnika naključnih števil je mogoče napovedati žetone za ponastavitev gesla, s čimer je mogoče prevzeti nadzor nad računom.", "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Podatkovna mapa in datoteke so najverjetneje javno dostopni preko interneta, saj datoteka .htaccess ni ustrezno nastavljena.", +"For information how to properly configure your server, please see the documentation." => "Za navodila, kako pravilno nastaviti vaš strežnik, kliknite na povezavo do dokumentacije.", "Create an admin account" => "Ustvari skrbniški račun", "Advanced" => "Napredne možnosti", "Data folder" => "Podatkovna mapa", diff --git a/core/l10n/sq.php b/core/l10n/sq.php index 25e8d6a4b6..0daeccc481 100644 --- a/core/l10n/sq.php +++ b/core/l10n/sq.php @@ -42,6 +42,7 @@ "years ago" => "vite më parë", "Choose" => "Zgjidh", "Cancel" => "Anulo", +"Error loading file picker template" => "Veprim i gabuar gjatë ngarkimit të modelit të zgjedhësit të skedarëve", "Yes" => "Po", "No" => "Jo", "Ok" => "Në rregull", @@ -60,6 +61,7 @@ "Share with link" => "Nda me lidhje", "Password protect" => "Mbro me kod", "Password" => "Kodi", +"Allow Public Upload" => "Lejo Ngarkimin Publik", "Email link to person" => "Dërgo email me lidhjen", "Send" => "Dërgo", "Set expiration date" => "Cakto datën e përfundimit", @@ -88,6 +90,7 @@ "Request failed!
Did you make sure your email/username was right?" => "Kërkesa dështoi!
A u siguruat që email-i/përdoruesi juaj ishte i saktë?", "You will receive a link to reset your password via Email." => "Do t'iu vijë një email që përmban një lidhje për ta rivendosur kodin.", "Username" => "Përdoruesi", +"Yes, I really want to reset my password now" => "Po, dua ta rivendos kodin tani", "Request reset" => "Bëj kërkesë për rivendosjen", "Your password was reset" => "Kodi yt u rivendos", "To login page" => "Tek faqja e hyrjes", @@ -100,6 +103,7 @@ "Help" => "Ndihmë", "Access forbidden" => "Ndalohet hyrja", "Cloud not found" => "Cloud-i nuk u gjet", +"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Tungjatjeta,\n\nju njoftojmë që %s ka ndarë %s me ju.\nShikojeni: %s\n\nPëshëndetje!", "Edit categories" => "Ndrysho kategoritë", "Add" => "Shto", "Security Warning" => "Paralajmërim sigurie", diff --git a/l10n/ca/files_sharing.po b/l10n/ca/files_sharing.po index f160ac69fb..116523992a 100644 --- a/l10n/ca/files_sharing.po +++ b/l10n/ca/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-01 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 07:50+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" @@ -32,27 +32,27 @@ msgstr "Envia" #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." -msgstr "" +msgstr "Aquest enllaç sembla que no funciona." #: templates/part.404.php:4 msgid "Reasons might be:" -msgstr "" +msgstr "Les raons podrien ser:" #: templates/part.404.php:6 msgid "the item was removed" -msgstr "" +msgstr "l'element ha estat eliminat" #: templates/part.404.php:7 msgid "the link expired" -msgstr "" +msgstr "l'enllaç ha vençut" #: templates/part.404.php:8 msgid "sharing is disabled" -msgstr "" +msgstr "s'ha desactivat la compartició" #: templates/part.404.php:10 msgid "For more info, please ask the person who sent this link." -msgstr "" +msgstr "Per més informació contacteu amb qui us ha enviat l'enllaç." #: templates/public.php:15 #, php-format diff --git a/l10n/ca/files_trashbin.po b/l10n/ca/files_trashbin.po index dde5919a29..0acc94e33c 100644 --- a/l10n/ca/files_trashbin.po +++ b/l10n/ca/files_trashbin.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# rogerc, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-01 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 07:38+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" @@ -69,7 +70,7 @@ msgstr "{count} fitxers" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" -msgstr "" +msgstr "restaurat" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" diff --git a/l10n/ca/files_versions.po b/l10n/ca/files_versions.po index 65f8218347..0ded7de3c6 100644 --- a/l10n/ca/files_versions.po +++ b/l10n/ca/files_versions.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# rogerc, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-28 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 06:10+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-01 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 07:50+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" @@ -28,15 +29,15 @@ msgstr "Versions" #: js/versions.js:53 msgid "Failed to revert {file} to revision {timestamp}." -msgstr "" +msgstr "Ha fallat en retornar {file} a la revisió {timestamp}" #: js/versions.js:79 msgid "More versions..." -msgstr "" +msgstr "Més versions..." #: js/versions.js:116 msgid "No other versions available" -msgstr "" +msgstr "No hi ha altres versions disponibles" #: js/versions.js:149 msgid "Restore" diff --git a/l10n/ca/user_ldap.po b/l10n/ca/user_ldap.po index cc362ad68d..4002118c40 100644 --- a/l10n/ca/user_ldap.po +++ b/l10n/ca/user_ldap.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-01 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 07:50+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" @@ -91,7 +91,7 @@ msgid "" "Warning: Apps user_ldap and user_webdavauth are incompatible. You may" " experience unexpected behavior. Please ask your system administrator to " "disable one of them." -msgstr "" +msgstr "Avís: Les aplicacions user_ldap i user_webdavauth són incompatibles. Podeu experimentar comportaments inesperats. Demaneu a l'administrador del sistema que en desactivi una." #: templates/settings.php:12 msgid "" @@ -223,7 +223,7 @@ msgstr "Desactiva el servidor principal" #: templates/settings.php:75 msgid "Only connect to the replica server." -msgstr "" +msgstr "Connecta només al servidor rèplica." #: templates/settings.php:76 msgid "Use TLS" @@ -246,7 +246,7 @@ msgstr "Desactiva la validació de certificat SSL." msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your %s server." -msgstr "" +msgstr "Si la connexió només funciona amb aquesta opció, importeu el certificat SSL del servidor LDAP en el vostre servidor %s." #: templates/settings.php:78 msgid "Not recommended, use for testing only." @@ -270,7 +270,7 @@ msgstr "Camp per mostrar el nom d'usuari" #: templates/settings.php:83 msgid "The LDAP attribute to use to generate the user's display name." -msgstr "" +msgstr "Atribut LDAP a usar per generar el nom a mostrar de l'usuari." #: templates/settings.php:84 msgid "Base User Tree" @@ -294,7 +294,7 @@ msgstr "Camp per mostrar el nom del grup" #: templates/settings.php:86 msgid "The LDAP attribute to use to generate the groups's display name." -msgstr "" +msgstr "Atribut LDAP a usar per generar el nom a mostrar del grup." #: templates/settings.php:87 msgid "Base Group Tree" @@ -360,7 +360,7 @@ msgid "" "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 "" +msgstr "Per defecte el nom d'usuari intern es crearà a partir de l'atribut UUID. Això assegura que el nom d'usuari és únic i que els caràcters no s'han de convertir. El nom d'usuari intern té la restricció que només estan permesos els caràcters: [ a-zA-Z0-9_.@- ]. Els altres caràcters es substitueixen pel seu corresponent ASCII o simplement s'ometen. En cas de col·lisió s'incrementa/decrementa en un. El nom d'usuari intern s'utilitza per identificar un usuari internament. També és el nom per defecte de la carpeta home d'usuari. És també un port de URLs remotes, per exemple tots els serveis *DAV. Amb aquest arranjament es pot variar el comportament per defecte. Per obtenir un comportament similar al d'abans de ownCloud 5, escriviu el nom d'usuari a mostrar en el camp següent. Deixei-lo en blanc si preferiu el comportament per defecte. Els canvis tindran efecte només en els nous usuaris LDAP mapats (afegits)." #: templates/settings.php:103 msgid "Internal Username Attribute:" @@ -379,7 +379,7 @@ msgid "" "You must make sure that the attribute of your choice can be fetched for both" " users and groups and it is unique. Leave it empty for default behavior. " "Changes will have effect only on newly mapped (added) LDAP users and groups." -msgstr "" +msgstr "Per defecte, owncloud autodetecta l'atribut UUID. L'atribut UUID s'utilitza per identificar usuaris i grups de forma indubtable. També el nom d'usuari intern es crearà en base a la UUIS, si no heu especificat res diferent a dalt. Podeu sobreescriure l'arranjament i passar l'atribut que desitgeu. Heu d'assegurar-vos que l'atribut que escolliu pot ser recollit tant pels usuaris com pels grups i que és únic. Deixeu-ho en blanc si preferiu el comportament per defecte. els canvis s'aplicaran als usuaris i grups LDAP mapats de nou (afegits)." #: templates/settings.php:106 msgid "UUID Attribute:" @@ -401,7 +401,7 @@ msgid "" " 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 "" +msgstr "Els noms d'usuari s'usen per desar i assignar (meta)dades. Per tal d'identificar amb precisió i reconèixer els usuaris, cada usuari LDAP tindrà un nom d'usuari intern. Això requereix mapatge del nom d'usuari a l'usuari LDAP. El nom d'usuari creat es mapa a la UUID de l'usuari LDAP. A més, la DN es posa a la memòria de cau per reduir la interacció LDAP, però no s'usa per identificació. En cas que la DN canvïi, els canvis es trobaran. El nom d'usuari intern s'usa a tot arreu. Si esborreu els mapatges quedaran sobrants a tot arreu. Esborrar els mapatges no és sensible a la configuració, afecta a totes les configuracions LDAP! No esborreu mai els mapatges en un entorn de producció, només en un estadi de prova o experimental." #: templates/settings.php:109 msgid "Clear Username-LDAP User Mapping" diff --git a/l10n/ca/user_webdavauth.po b/l10n/ca/user_webdavauth.po index 24f6f89a3b..ce6c920112 100644 --- a/l10n/ca/user_webdavauth.po +++ b/l10n/ca/user_webdavauth.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:57+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-01 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 08:00+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" @@ -25,11 +25,11 @@ msgstr "Autenticació WebDAV" #: templates/settings.php:4 msgid "Address: " -msgstr "" +msgstr "Adreça:" #: templates/settings.php:7 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 "" +msgstr "Les credencials d'usuari s'enviaran a aquesta adreça. Aquest connector comprova la resposta i interpreta els codis d'estat 401 i 403 com a credencials no vàlides, i qualsevol altra resposta com a credencials vàlides." diff --git a/l10n/da/files_sharing.po b/l10n/da/files_sharing.po index a849b738d7..7ebea150ec 100644 --- a/l10n/da/files_sharing.po +++ b/l10n/da/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-01 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 10:51+0000\n" +"Last-Translator: Sappe\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -32,27 +32,27 @@ msgstr "Send" #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." -msgstr "" +msgstr "Desværre, dette link ser ikke ud til at fungerer længere." #: templates/part.404.php:4 msgid "Reasons might be:" -msgstr "" +msgstr "Årsagen kan være:" #: templates/part.404.php:6 msgid "the item was removed" -msgstr "" +msgstr "Filen blev fjernet" #: templates/part.404.php:7 msgid "the link expired" -msgstr "" +msgstr "linket udløb" #: templates/part.404.php:8 msgid "sharing is disabled" -msgstr "" +msgstr "deling er deaktiveret" #: templates/part.404.php:10 msgid "For more info, please ask the person who sent this link." -msgstr "" +msgstr "For yderligere information, kontakt venligst personen der sendte linket. " #: templates/public.php:15 #, php-format diff --git a/l10n/da/files_trashbin.po b/l10n/da/files_trashbin.po index 40f196359c..1306af5b49 100644 --- a/l10n/da/files_trashbin.po +++ b/l10n/da/files_trashbin.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Sappe, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-01 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 10:51+0000\n" +"Last-Translator: Sappe\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -69,7 +70,7 @@ msgstr "{count} filer" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" -msgstr "" +msgstr "Gendannet" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" diff --git a/l10n/de/files_sharing.po b/l10n/de/files_sharing.po index 5c73909052..f187349142 100644 --- a/l10n/de/files_sharing.po +++ b/l10n/de/files_sharing.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Mario Siegmann , 2013 # Pwnicorn , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-01 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 10:20+0000\n" +"Last-Translator: Mario Siegmann \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -32,27 +33,27 @@ msgstr "Absenden" #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." -msgstr "" +msgstr "Entschuldigung, dieser Link scheint nicht mehr zu funktionieren." #: templates/part.404.php:4 msgid "Reasons might be:" -msgstr "" +msgstr "Gründe könnten sein:" #: templates/part.404.php:6 msgid "the item was removed" -msgstr "" +msgstr "Die Elemente wurden entfernt" #: templates/part.404.php:7 msgid "the link expired" -msgstr "" +msgstr "Der Link ist abgelaufen" #: templates/part.404.php:8 msgid "sharing is disabled" -msgstr "" +msgstr "Teilen ist deaktiviert" #: templates/part.404.php:10 msgid "For more info, please ask the person who sent this link." -msgstr "" +msgstr "Für mehr Informationen, frage bitte die Person, die dir diesen Link geschickt hat." #: templates/public.php:15 #, php-format diff --git a/l10n/de_DE/files_sharing.po b/l10n/de_DE/files_sharing.po index 533360cd7f..1f56b59086 100644 --- a/l10n/de_DE/files_sharing.po +++ b/l10n/de_DE/files_sharing.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Mario Siegmann , 2013 # JamFX , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-01 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 10:20+0000\n" +"Last-Translator: Mario Siegmann \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -32,27 +33,27 @@ msgstr "Bestätigen" #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." -msgstr "" +msgstr "Entschuldigung, dieser Link scheint nicht mehr zu funktionieren." #: templates/part.404.php:4 msgid "Reasons might be:" -msgstr "" +msgstr "Gründe könnten sein:" #: templates/part.404.php:6 msgid "the item was removed" -msgstr "" +msgstr "Das Element wurde entfernt" #: templates/part.404.php:7 msgid "the link expired" -msgstr "" +msgstr "Der Link ist abgelaufen" #: templates/part.404.php:8 msgid "sharing is disabled" -msgstr "" +msgstr "Teilen ist deaktiviert" #: templates/part.404.php:10 msgid "For more info, please ask the person who sent this link." -msgstr "" +msgstr "Für mehr Informationen, fragen Sie bitte die Person, die Ihnen diesen Link geschickt hat." #: templates/public.php:15 #, php-format diff --git a/l10n/de_DE/files_versions.po b/l10n/de_DE/files_versions.po index df04974b28..56dd696d6d 100644 --- a/l10n/de_DE/files_versions.po +++ b/l10n/de_DE/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-29 01:56-0400\n" -"PO-Revision-Date: 2013-07-28 16:00+0000\n" -"Last-Translator: Mario Siegmann \n" +"POT-Creation-Date: 2013-08-01 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 21:33+0000\n" +"Last-Translator: a.tangemann \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/de_DE/user_webdavauth.po b/l10n/de_DE/user_webdavauth.po index 5e2fbb3ee7..e282ff5473 100644 --- a/l10n/de_DE/user_webdavauth.po +++ b/l10n/de_DE/user_webdavauth.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# a.tangemann , 2013 # a.tangemann , 2012-2013 # Marcel Kühlhorn , 2013 # Mario Siegmann , 2013 @@ -13,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-29 01:56-0400\n" -"PO-Revision-Date: 2013-07-28 16:10+0000\n" -"Last-Translator: Mario Siegmann \n" +"POT-Creation-Date: 2013-08-01 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 21:30+0000\n" +"Last-Translator: a.tangemann \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,7 +30,7 @@ msgstr "WebDAV-Authentifizierung" #: templates/settings.php:4 msgid "Address: " -msgstr "Addresse: " +msgstr "Adresse:" #: templates/settings.php:7 msgid "" diff --git a/l10n/es/files_sharing.po b/l10n/es/files_sharing.po index d9673bd20f..08305cb687 100644 --- a/l10n/es/files_sharing.po +++ b/l10n/es/files_sharing.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Art O. Pal , 2013 # Korrosivo , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-01 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 16:30+0000\n" +"Last-Translator: Art O. Pal \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -32,27 +33,27 @@ msgstr "Enviar" #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." -msgstr "" +msgstr "Este enlace parece no funcionar más." #: templates/part.404.php:4 msgid "Reasons might be:" -msgstr "" +msgstr "Las causas podrían ser:" #: templates/part.404.php:6 msgid "the item was removed" -msgstr "" +msgstr "el elemento fue eliminado" #: templates/part.404.php:7 msgid "the link expired" -msgstr "" +msgstr "el enlace expiró" #: templates/part.404.php:8 msgid "sharing is disabled" -msgstr "" +msgstr "compartir está desactivado" #: templates/part.404.php:10 msgid "For more info, please ask the person who sent this link." -msgstr "" +msgstr "Para mayor información, contacte a la persona que le envió el enlace." #: templates/public.php:15 #, php-format diff --git a/l10n/fi_FI/files_sharing.po b/l10n/fi_FI/files_sharing.po index 64ef882ea6..6f5c0b268f 100644 --- a/l10n/fi_FI/files_sharing.po +++ b/l10n/fi_FI/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-01 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 07:38+0000\n" +"Last-Translator: Jiri Grönroos \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -32,27 +32,27 @@ msgstr "Lähetä" #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." -msgstr "" +msgstr "Valitettavasti linkki ei vaikuta enää toimivan." #: templates/part.404.php:4 msgid "Reasons might be:" -msgstr "" +msgstr "Mahdollisia syitä:" #: templates/part.404.php:6 msgid "the item was removed" -msgstr "" +msgstr "kohde poistettiin" #: templates/part.404.php:7 msgid "the link expired" -msgstr "" +msgstr "linkki vanheni" #: templates/part.404.php:8 msgid "sharing is disabled" -msgstr "" +msgstr "jakaminen on poistettu käytöstä" #: templates/part.404.php:10 msgid "For more info, please ask the person who sent this link." -msgstr "" +msgstr "Kysy lisätietoja henkilöltä, jolta sait linkin." #: templates/public.php:15 #, php-format diff --git a/l10n/gl/files_sharing.po b/l10n/gl/files_sharing.po index 3a02212cd6..23b10c46bb 100644 --- a/l10n/gl/files_sharing.po +++ b/l10n/gl/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-01 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 09:30+0000\n" +"Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -32,27 +32,27 @@ msgstr "Enviar" #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." -msgstr "" +msgstr "Semella que esta ligazón non funciona." #: templates/part.404.php:4 msgid "Reasons might be:" -msgstr "" +msgstr "As razóns poderían ser:" #: templates/part.404.php:6 msgid "the item was removed" -msgstr "" +msgstr "o elemento foi retirado" #: templates/part.404.php:7 msgid "the link expired" -msgstr "" +msgstr "a ligazón caducou" #: templates/part.404.php:8 msgid "sharing is disabled" -msgstr "" +msgstr "foi desactivada a compartición" #: templates/part.404.php:10 msgid "For more info, please ask the person who sent this link." -msgstr "" +msgstr "Para obter máis información, pregúntelle á persoa que lle enviou a ligazón." #: templates/public.php:15 #, php-format diff --git a/l10n/gl/files_trashbin.po b/l10n/gl/files_trashbin.po index a3eefc4ece..5766c76f56 100644 --- a/l10n/gl/files_trashbin.po +++ b/l10n/gl/files_trashbin.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# mbouzada , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-01 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 09:20+0000\n" +"Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -69,7 +70,7 @@ msgstr "{count} ficheiros" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" -msgstr "" +msgstr "restaurado" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" diff --git a/l10n/it/files_sharing.po b/l10n/it/files_sharing.po index f0c9490e2c..784e96175f 100644 --- a/l10n/it/files_sharing.po +++ b/l10n/it/files_sharing.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-01 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 07:38+0000\n" +"Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -33,27 +33,27 @@ msgstr "Invia" #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." -msgstr "" +msgstr "Spiacenti, questo collegamento sembra non essere più attivo." #: templates/part.404.php:4 msgid "Reasons might be:" -msgstr "" +msgstr "I motivi potrebbero essere:" #: templates/part.404.php:6 msgid "the item was removed" -msgstr "" +msgstr "l'elemento è stato rimosso" #: templates/part.404.php:7 msgid "the link expired" -msgstr "" +msgstr "il collegamento è scaduto" #: templates/part.404.php:8 msgid "sharing is disabled" -msgstr "" +msgstr "la condivisione è disabilitata" #: templates/part.404.php:10 msgid "For more info, please ask the person who sent this link." -msgstr "" +msgstr "Per ulteriori informazioni, chiedi alla persona che ti ha inviato il collegamento." #: templates/public.php:15 #, php-format diff --git a/l10n/pl/core.po b/l10n/pl/core.po index 7f493d24ba..a5822793cf 100644 --- a/l10n/pl/core.po +++ b/l10n/pl/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-01 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 07:38+0000\n" +"Last-Translator: Cyryl Sochacki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -413,7 +413,7 @@ msgid "" "will be no way to get your data back after your password is reset. If you " "are not sure what to do, please contact your administrator before you " "continue. Do you really want to continue?" -msgstr "" +msgstr "Pliki są szyfrowane. Jeśli nie włączono klucza odzyskiwania, nie będzie możliwe odzyskać dane z powrotem po zresetowaniu hasła. Jeśli nie masz pewności, co zrobić, prosimy o kontakt z administratorem, przed kontynuowaniem. Czy chcesz kontynuować?" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" @@ -476,7 +476,7 @@ msgid "" "View it: %s\n" "\n" "Cheers!" -msgstr "" +msgstr "Cześć,\n\nInformuję cię że %s udostępnia ci %s.\nZobacz na: %s\n\nPozdrawiam!" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" @@ -498,7 +498,7 @@ msgstr "Twója wersja PHP jest narażona na NULL Byte attack (CVE-2006-7243)" #: templates/installation.php:26 #, php-format msgid "Please update your PHP installation to use %s securely." -msgstr "" +msgstr "Proszę uaktualnij swoją instalacje PHP aby używać %s bezpiecznie." #: templates/installation.php:32 msgid "" @@ -523,7 +523,7 @@ msgstr "Twój katalog danych i pliki są prawdopodobnie dostępne z poziomu inte msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "" +msgstr "Aby uzyskać informacje jak poprawnie skonfigurować swój serwer, zapoznaj się z dokumentacją." #: templates/installation.php:47 msgid "Create an admin account" @@ -615,7 +615,7 @@ msgstr "Alternatywne loginy" msgid "" "Hey there,

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

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

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

Pozdrawiam!" #: templates/part.pagenavi.php:3 msgid "prev" diff --git a/l10n/pl/files_sharing.po b/l10n/pl/files_sharing.po index 9ca97e1602..f49a08df8a 100644 --- a/l10n/pl/files_sharing.po +++ b/l10n/pl/files_sharing.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Cyryl Sochacki , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-01 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 06:10+0000\n" +"Last-Translator: Cyryl Sochacki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +20,7 @@ msgstr "" #: templates/authenticate.php:4 msgid "The password is wrong. Try again." -msgstr "" +msgstr "To hasło jest niewłaściwe. Spróbuj ponownie." #: templates/authenticate.php:7 msgid "Password" @@ -31,27 +32,27 @@ msgstr "Wyślij" #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." -msgstr "" +msgstr "Przepraszamy ale wygląda na to, że ten link już nie działa." #: templates/part.404.php:4 msgid "Reasons might be:" -msgstr "" +msgstr "Możliwe powody:" #: templates/part.404.php:6 msgid "the item was removed" -msgstr "" +msgstr "element został usunięty" #: templates/part.404.php:7 msgid "the link expired" -msgstr "" +msgstr "link wygasł" #: templates/part.404.php:8 msgid "sharing is disabled" -msgstr "" +msgstr "Udostępnianie jest wyłączone" #: templates/part.404.php:10 msgid "For more info, please ask the person who sent this link." -msgstr "" +msgstr "Aby uzyskać więcej informacji proszę poprosić osobę, która wysłał ten link." #: templates/public.php:15 #, php-format diff --git a/l10n/pl/files_trashbin.po b/l10n/pl/files_trashbin.po index 70345423d2..eec8378c1b 100644 --- a/l10n/pl/files_trashbin.po +++ b/l10n/pl/files_trashbin.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Cyryl Sochacki , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-01 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 07:37+0000\n" +"Last-Translator: Cyryl Sochacki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -69,7 +70,7 @@ msgstr "Ilość plików: {count}" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" -msgstr "" +msgstr "przywrócony" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" diff --git a/l10n/pl/files_versions.po b/l10n/pl/files_versions.po index 6a4a6de114..d9898916d8 100644 --- a/l10n/pl/files_versions.po +++ b/l10n/pl/files_versions.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Cyryl Sochacki , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-28 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 06:10+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-01 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 07:38+0000\n" +"Last-Translator: Cyryl Sochacki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,15 +29,15 @@ msgstr "Wersje" #: js/versions.js:53 msgid "Failed to revert {file} to revision {timestamp}." -msgstr "" +msgstr "Nie udało się przywrócić zmiany {sygnatura czasowa} {plik}." #: js/versions.js:79 msgid "More versions..." -msgstr "" +msgstr "Więcej wersji..." #: js/versions.js:116 msgid "No other versions available" -msgstr "" +msgstr "Nie są dostępne żadne inne wersje" #: js/versions.js:149 msgid "Restore" diff --git a/l10n/pl/lib.po b/l10n/pl/lib.po index e4a600dd10..e90fe749bc 100644 --- a/l10n/pl/lib.po +++ b/l10n/pl/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-01 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 07:38+0000\n" +"Last-Translator: Cyryl Sochacki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -45,7 +45,7 @@ msgstr "Administrator" #: app.php:844 #, php-format msgid "Failed to upgrade \"%s\"." -msgstr "" +msgstr "Błąd przy aktualizacji \"%s\"." #: defaults.php:35 msgid "web services under your control" @@ -54,7 +54,7 @@ msgstr "Kontrolowane serwisy" #: files.php:66 files.php:98 #, php-format msgid "cannot open \"%s\"" -msgstr "" +msgstr "Nie można otworzyć \"%s\"" #: files.php:226 msgid "ZIP download is turned off." @@ -76,7 +76,7 @@ msgstr "Wybrane pliki są zbyt duże, aby wygenerować plik zip." msgid "" "Download the files in smaller chunks, seperately or kindly ask your " "administrator." -msgstr "" +msgstr "Pobierz pliki w mniejszy kawałkach, oddzielnie lub poproś administratora o zwiększenie limitu." #: helper.php:235 msgid "couldn't be determined" @@ -260,7 +260,7 @@ msgstr "lat temu" #: template.php:297 msgid "Caused by:" -msgstr "" +msgstr "Spowodowane przez:" #: vcategories.php:188 vcategories.php:249 #, php-format diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index 1dac979b4b..61dd2280e5 100644 --- a/l10n/pl/settings.po +++ b/l10n/pl/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-01 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 07:38+0000\n" +"Last-Translator: Cyryl Sochacki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -274,7 +274,7 @@ msgstr "Zezwalaj użytkownikom na publiczne współdzielenie zasobów za pomocą #: templates/admin.php:151 msgid "Allow public uploads" -msgstr "" +msgstr "Pozwól na publiczne wczytywanie" #: templates/admin.php:152 msgid "" diff --git a/l10n/pl/user_webdavauth.po b/l10n/pl/user_webdavauth.po index ced5b2d9f8..7c11b63e14 100644 --- a/l10n/pl/user_webdavauth.po +++ b/l10n/pl/user_webdavauth.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:57+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-01 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 07:38+0000\n" +"Last-Translator: Cyryl Sochacki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,11 +26,11 @@ msgstr "Uwierzytelnienie WebDAV" #: templates/settings.php:4 msgid "Address: " -msgstr "" +msgstr "Adres:" #: templates/settings.php:7 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 "" +msgstr "Dane uwierzytelniające użytkownika zostaną wysłane na ten adres. Wtyczka sprawdza odpowiedź i będzie interpretował status HTTP 401 i 403 jako nieprawidłowe dane uwierzytelniające i wszystkie inne odpowiedzi jako prawidłowe uwierzytelnienie." diff --git a/l10n/pt_BR/files_sharing.po b/l10n/pt_BR/files_sharing.po index 17ff5ba482..d382f7570b 100644 --- a/l10n/pt_BR/files_sharing.po +++ b/l10n/pt_BR/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-01 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 10:30+0000\n" +"Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -32,27 +32,27 @@ msgstr "Submeter" #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." -msgstr "" +msgstr "Desculpe, este link parece não mais funcionar." #: templates/part.404.php:4 msgid "Reasons might be:" -msgstr "" +msgstr "As razões podem ser:" #: templates/part.404.php:6 msgid "the item was removed" -msgstr "" +msgstr "o item foi removido" #: templates/part.404.php:7 msgid "the link expired" -msgstr "" +msgstr "o link expirou" #: templates/part.404.php:8 msgid "sharing is disabled" -msgstr "" +msgstr "compartilhamento está desativada" #: templates/part.404.php:10 msgid "For more info, please ask the person who sent this link." -msgstr "" +msgstr "Para mais informações, por favor, pergunte a pessoa que enviou este link." #: templates/public.php:15 #, php-format diff --git a/l10n/sl/core.po b/l10n/sl/core.po index fd58388aa0..55df77f349 100644 --- a/l10n/sl/core.po +++ b/l10n/sl/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:57+0000\n" +"POT-Creation-Date: 2013-08-01 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 06:10+0000\n" "Last-Translator: barbarak \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -523,7 +523,7 @@ msgstr "Podatkovna mapa in datoteke so najverjetneje javno dostopni preko intern msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "" +msgstr "Za navodila, kako pravilno nastaviti vaš strežnik, kliknite na povezavo do dokumentacije." #: templates/installation.php:47 msgid "Create an admin account" diff --git a/l10n/sl/files_encryption.po b/l10n/sl/files_encryption.po index 0386afaca3..b9ee63d408 100644 --- a/l10n/sl/files_encryption.po +++ b/l10n/sl/files_encryption.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-01 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 08:10+0000\n" +"Last-Translator: barbarak \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -64,14 +64,14 @@ msgstr "Vaš zasebni ključ ni veljaven. Morda je bilo vaše geslo spremenjeno z #: hooks/hooks.php:44 msgid "Missing requirements." -msgstr "" +msgstr "Manjkajoče zahteve" #: hooks/hooks.php:45 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " "PHP extension is enabled and configured properly. For now, the encryption " "app has been disabled." -msgstr "" +msgstr "Preverite, da imate na strežniku nameščen PHP 5.3.3 ali novejši in da je omogočen in pravilno nastavljen PHP OpenSSL . Zaenkrat je šifriranje onemogočeno." #: js/settings-admin.js:11 msgid "Saving..." diff --git a/l10n/sq/core.po b/l10n/sq/core.po index f77dc77881..2c882917c0 100644 --- a/l10n/sq/core.po +++ b/l10n/sq/core.po @@ -4,13 +4,14 @@ # # Translators: # Odeen , 2013 +# Odeen , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-01 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 23:10+0000\n" +"Last-Translator: Odeen \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -204,7 +205,7 @@ msgstr "Anulo" #: js/oc-dialogs.js:141 js/oc-dialogs.js:200 msgid "Error loading file picker template" -msgstr "" +msgstr "Veprim i gabuar gjatë ngarkimit të modelit të zgjedhësit të skedarëve" #: js/oc-dialogs.js:164 msgid "Yes" @@ -285,7 +286,7 @@ msgstr "Kodi" #: js/share.js:198 msgid "Allow Public Upload" -msgstr "" +msgstr "Lejo Ngarkimin Publik" #: js/share.js:202 msgid "Email link to person" @@ -416,7 +417,7 @@ msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" -msgstr "" +msgstr "Po, dua ta rivendos kodin tani" #: lostpassword/templates/lostpassword.php:27 msgid "Request reset" @@ -475,7 +476,7 @@ msgid "" "View it: %s\n" "\n" "Cheers!" -msgstr "" +msgstr "Tungjatjeta,\n\nju njoftojmë që %s ka ndarë %s me ju.\nShikojeni: %s\n\nPëshëndetje!" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 9a7e80efbc..a17c203493 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"POT-Creation-Date: 2013-08-01 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 72fb94356f..385fca6c68 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"POT-Creation-Date: 2013-08-01 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 10ab40b017..1ae308d9e9 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"POT-Creation-Date: 2013-08-01 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index 5687422471..2b215ef21c 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"POT-Creation-Date: 2013-08-01 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index 0db9df6294..4da92b8c63 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"POT-Creation-Date: 2013-08-01 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index a9bb63b4d7..917bb63291 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"POT-Creation-Date: 2013-08-01 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 6c2f5fd0e0..fabfff67cf 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"POT-Creation-Date: 2013-08-01 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index 4adb20d654..71ad60bd0f 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"POT-Creation-Date: 2013-08-01 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 9861cd9141..eafa3a8fa5 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"POT-Creation-Date: 2013-08-01 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 75c32132d7..2145532de8 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"POT-Creation-Date: 2013-08-01 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index 8f83935cbe..20e34edb44 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"POT-Creation-Date: 2013-08-01 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/uk/files_external.po b/l10n/uk/files_external.po index 6ed509717b..e5332acadb 100644 --- a/l10n/uk/files_external.po +++ b/l10n/uk/files_external.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Soul Kim , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-01 01:55-0400\n" +"PO-Revision-Date: 2013-08-01 03:10+0000\n" +"Last-Translator: Soul Kim \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" @@ -17,7 +18,7 @@ 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" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 msgid "Access granted" msgstr "Доступ дозволено" @@ -25,7 +26,7 @@ msgstr "Доступ дозволено" msgid "Error configuring Dropbox storage" msgstr "Помилка при налаштуванні сховища Dropbox" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "Дозволити доступ" @@ -33,29 +34,29 @@ msgstr "Дозволити доступ" msgid "Please provide a valid Dropbox app key and secret." msgstr "Будь ласка, надайте дійсний ключ та пароль Dropbox." -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "Помилка при налаштуванні сховища Google Drive" -#: lib/config.php:447 +#: lib/config.php:448 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Попередження: Клієнт \"smbclient\" не встановлено. Під'єднанатися до CIFS/SMB тек неможливо. Попрохайте системного адміністратора встановити його." -#: lib/config.php:450 +#: lib/config.php:451 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "Попередження: Підтримка FTP в PHP не увімкнута чи не встановлена. Під'єднанатися до FTP тек неможливо. Попрохайте системного адміністратора встановити її." -#: lib/config.php:453 +#: lib/config.php:454 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " "your system administrator to install it." -msgstr "" +msgstr "Попередження: Підтримка CURL в PHP не увімкнута чи не встановлена. Під'єднанатися OwnCloud / WebDav або Google Drive неможливе. Попрохайте системного адміністратора встановити її." #: templates/settings.php:3 msgid "External Storage" diff --git a/l10n/uk/files_trashbin.po b/l10n/uk/files_trashbin.po index 74cd523fa5..5bc455917f 100644 --- a/l10n/uk/files_trashbin.po +++ b/l10n/uk/files_trashbin.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Soul Kim , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-01 01:55-0400\n" +"PO-Revision-Date: 2013-08-01 03:10+0000\n" +"Last-Translator: Soul Kim \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" @@ -69,7 +70,7 @@ msgstr "{count} файлів" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" -msgstr "" +msgstr "відновлено" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" diff --git a/lib/l10n/pl.php b/lib/l10n/pl.php index bbca1913b7..d06d5ba8a3 100644 --- a/lib/l10n/pl.php +++ b/lib/l10n/pl.php @@ -5,11 +5,14 @@ "Users" => "Użytkownicy", "Apps" => "Aplikacje", "Admin" => "Administrator", +"Failed to upgrade \"%s\"." => "Błąd przy aktualizacji \"%s\".", "web services under your control" => "Kontrolowane serwisy", +"cannot open \"%s\"" => "Nie można otworzyć \"%s\"", "ZIP download is turned off." => "Pobieranie ZIP jest wyłączone.", "Files need to be downloaded one by one." => "Pliki muszą zostać pobrane pojedynczo.", "Back to Files" => "Wróć do plików", "Selected files too large to generate zip file." => "Wybrane pliki są zbyt duże, aby wygenerować plik zip.", +"Download the files in smaller chunks, seperately or kindly ask your administrator." => "Pobierz pliki w mniejszy kawałkach, oddzielnie lub poproś administratora o zwiększenie limitu.", "couldn't be determined" => "nie może zostać znaleziony", "Application is not enabled" => "Aplikacja nie jest włączona", "Authentication error" => "Błąd uwierzytelniania", @@ -49,5 +52,6 @@ "%d months ago" => "%d miesiecy temu", "last year" => "w zeszłym roku", "years ago" => "lat temu", +"Caused by:" => "Spowodowane przez:", "Could not find category \"%s\"" => "Nie można odnaleźć kategorii \"%s\"" ); diff --git a/settings/l10n/pl.php b/settings/l10n/pl.php index 19b84faddd..7b3d44975b 100644 --- a/settings/l10n/pl.php +++ b/settings/l10n/pl.php @@ -50,6 +50,7 @@ "Allow apps to use the Share API" => "Zezwalaj aplikacjom na korzystanie z API udostępniania", "Allow links" => "Zezwalaj na odnośniki", "Allow users to share items to the public with links" => "Zezwalaj użytkownikom na publiczne współdzielenie zasobów za pomocą odnośników", +"Allow public uploads" => "Pozwól na publiczne wczytywanie", "Allow resharing" => "Zezwalaj na ponowne udostępnianie", "Allow users to share items shared with them again" => "Zezwalaj użytkownikom na ponowne współdzielenie zasobów już z nimi współdzielonych", "Allow users to share with anyone" => "Zezwalaj użytkownikom na współdzielenie z kimkolwiek", From 3e53e25cd17704eeb529d0869ecdeccc2a699364 Mon Sep 17 00:00:00 2001 From: Christian Berendt Date: Thu, 1 Aug 2013 10:05:01 +0200 Subject: [PATCH 33/64] added @var tags --- apps/files_external/lib/amazons3.php | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/apps/files_external/lib/amazons3.php b/apps/files_external/lib/amazons3.php index f2dd6108b1..99ca261284 100644 --- a/apps/files_external/lib/amazons3.php +++ b/apps/files_external/lib/amazons3.php @@ -33,10 +33,25 @@ use Aws\S3\Exception\S3Exception; class AmazonS3 extends \OC\Files\Storage\Common { + /** + * @var \Aws\S3\S3Client + */ private $connection; + /** + * @var string + */ private $bucket; + /** + * @var array + */ private static $tmpFiles = array(); + /** + * @var bool + */ private $test = false; + /** + * @var int + */ private $timeout = 15; private function normalizePath($path) { From 5a4c39207e11062ce042cf73ea332221abd4661f Mon Sep 17 00:00:00 2001 From: Christian Berendt Date: Thu, 1 Aug 2013 10:08:41 +0200 Subject: [PATCH 34/64] write all catched exception messages to the log --- apps/files_external/lib/amazons3.php | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/apps/files_external/lib/amazons3.php b/apps/files_external/lib/amazons3.php index f2dd6108b1..b8544cf62b 100644 --- a/apps/files_external/lib/amazons3.php +++ b/apps/files_external/lib/amazons3.php @@ -96,6 +96,7 @@ class AmazonS3 extends \OC\Files\Storage\Common { )); $this->testTimeout(); } catch (S3Exception $e) { + \OCP\Util::writeLog('files_external', $e->getMessage(), \OCP\Util::ERROR); throw new \Exception("Creation of bucket failed."); } } @@ -129,6 +130,7 @@ class AmazonS3 extends \OC\Files\Storage\Common { )); $this->testTimeout(); } catch (S3Exception $e) { + \OCP\Util::writeLog('files_external', $e->getMessage(), \OCP\Util::ERROR); return false; } @@ -150,6 +152,7 @@ class AmazonS3 extends \OC\Files\Storage\Common { $path ); } catch (S3Exception $e) { + \OCP\Util::writeLog('files_external', $e->getMessage(), \OCP\Util::ERROR); return false; } @@ -184,6 +187,7 @@ class AmazonS3 extends \OC\Files\Storage\Common { )); $this->testTimeout(); } catch (S3Exception $e) { + \OCP\Util::writeLog('files_external', $e->getMessage(), \OCP\Util::ERROR); return false; } @@ -221,6 +225,7 @@ class AmazonS3 extends \OC\Files\Storage\Common { return opendir('fakedir://amazons3' . $path); } catch (S3Exception $e) { + \OCP\Util::writeLog('files_external', $e->getMessage(), \OCP\Util::ERROR); return false; } } @@ -249,6 +254,7 @@ class AmazonS3 extends \OC\Files\Storage\Common { return $stat; } catch(S3Exception $e) { + \OCP\Util::writeLog('files_external', $e->getMessage(), \OCP\Util::ERROR); return false; } } @@ -269,6 +275,7 @@ class AmazonS3 extends \OC\Files\Storage\Common { return 'dir'; } } catch (S3Exception $e) { + \OCP\Util::writeLog('files_external', $e->getMessage(), \OCP\Util::ERROR); return false; } @@ -293,6 +300,7 @@ class AmazonS3 extends \OC\Files\Storage\Common { )); $this->testTimeout(); } catch (S3Exception $e) { + \OCP\Util::writeLog('files_external', $e->getMessage(), \OCP\Util::ERROR); return false; } @@ -315,6 +323,7 @@ class AmazonS3 extends \OC\Files\Storage\Common { 'SaveAs' => $tmpFile )); } catch (S3Exception $e) { + \OCP\Util::writeLog('files_external', $e->getMessage(), \OCP\Util::ERROR); return false; } @@ -361,6 +370,7 @@ class AmazonS3 extends \OC\Files\Storage\Common { 'Key' => $path )); } catch (S3Exception $e) { + \OCP\Util::writeLog('files_external', $e->getMessage(), \OCP\Util::ERROR); return false; } @@ -398,6 +408,7 @@ class AmazonS3 extends \OC\Files\Storage\Common { $this->testTimeout(); } } catch (S3Exception $e) { + \OCP\Util::writeLog('files_external', $e->getMessage(), \OCP\Util::ERROR); return false; } @@ -417,6 +428,7 @@ class AmazonS3 extends \OC\Files\Storage\Common { )); $this->testTimeout(); } catch (S3Exception $e) { + \OCP\Util::writeLog('files_external', $e->getMessage(), \OCP\Util::ERROR); return false; } } else { @@ -432,6 +444,7 @@ class AmazonS3 extends \OC\Files\Storage\Common { )); $this->testTimeout(); } catch (S3Exception $e) { + \OCP\Util::writeLog('files_external', $e->getMessage(), \OCP\Util::ERROR); return false; } @@ -514,6 +527,7 @@ class AmazonS3 extends \OC\Files\Storage\Common { unlink($tmpFile); } catch (S3Exception $e) { + \OCP\Util::writeLog('files_external', $e->getMessage(), \OCP\Util::ERROR); return false; } } From 9253627327a35c9446f413bc487c2d7b0f63f9af Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Thu, 1 Aug 2013 13:04:55 +0200 Subject: [PATCH 35/64] cancel sharing if some users doesn't have a working encryption set-up. --- apps/files_encryption/hooks/hooks.php | 15 ++++++--------- lib/public/share.php | 22 ++++++++++++++++++++-- 2 files changed, 26 insertions(+), 11 deletions(-) diff --git a/apps/files_encryption/hooks/hooks.php b/apps/files_encryption/hooks/hooks.php index b2a17f6bca..be95037784 100644 --- a/apps/files_encryption/hooks/hooks.php +++ b/apps/files_encryption/hooks/hooks.php @@ -250,21 +250,18 @@ class Hooks { break; } - $error = false; + $notConfigured = array(); foreach ($users as $user) { if (!$view->file_exists($user . '.public.key')) { - $error = true; - break; + $notConfigured[] = $user; } } - if ($error) // Set flag var 'run' to notify emitting - // script that hook execution failed - { - $params['run']->run = false; + if (count($notConfigured) > 0) { + $params['run'] = false; + $params['error'] = 'Following users are not set up for encryption: ' . join(', ' , $notConfigured); } - // TODO: Make sure files_sharing provides user - // feedback on failed share + } /** diff --git a/lib/public/share.php b/lib/public/share.php index b349dd4877..63645e6fa3 100644 --- a/lib/public/share.php +++ b/lib/public/share.php @@ -1288,6 +1288,8 @@ class Share { if ($shareType == self::SHARE_TYPE_GROUP) { $groupItemTarget = self::generateTarget($itemType, $itemSource, $shareType, $shareWith['group'], $uidOwner, $suggestedItemTarget); + $run = true; + $error = ''; \OC_Hook::emit('OCP\Share', 'pre_shared', array( 'itemType' => $itemType, 'itemSource' => $itemSource, @@ -1297,8 +1299,15 @@ class Share { 'uidOwner' => $uidOwner, 'permissions' => $permissions, 'fileSource' => $fileSource, - 'token' => $token + 'token' => $token, + 'run' => &$run, + 'error' => &$error )); + + if ($run === false) { + throw new \Exception($error); + } + if (isset($fileSource)) { if ($parentFolder) { if ($parentFolder === true) { @@ -1374,6 +1383,8 @@ class Share { } else { $itemTarget = self::generateTarget($itemType, $itemSource, $shareType, $shareWith, $uidOwner, $suggestedItemTarget); + $run = true; + $error = ''; \OC_Hook::emit('OCP\Share', 'pre_shared', array( 'itemType' => $itemType, 'itemSource' => $itemSource, @@ -1383,8 +1394,15 @@ class Share { 'uidOwner' => $uidOwner, 'permissions' => $permissions, 'fileSource' => $fileSource, - 'token' => $token + 'token' => $token, + 'run' => &$run, + 'error' => &$error )); + + if ($run === false) { + throw new \Exception($error); + } + if (isset($fileSource)) { if ($parentFolder) { if ($parentFolder === true) { From 69173c2a6bad0646efcebe9815fbd18c57665ebd Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Thu, 1 Aug 2013 14:19:33 +0200 Subject: [PATCH 36/64] fix test and make warning translatable --- apps/files_encryption/hooks/hooks.php | 3 ++- apps/files_encryption/tests/share.php | 9 +++++++-- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/apps/files_encryption/hooks/hooks.php b/apps/files_encryption/hooks/hooks.php index be95037784..741df166b7 100644 --- a/apps/files_encryption/hooks/hooks.php +++ b/apps/files_encryption/hooks/hooks.php @@ -238,6 +238,7 @@ class Hooks { */ public static function preShared($params) { + $l = new \OC_L10N('files_encryption'); $users = array(); $view = new \OC\Files\View('/public-keys/'); @@ -259,7 +260,7 @@ class Hooks { if (count($notConfigured) > 0) { $params['run'] = false; - $params['error'] = 'Following users are not set up for encryption: ' . join(', ' , $notConfigured); + $params['error'] = $l->t('Following users are not set up for encryption:') . ' ' . join(', ' , $notConfigured); } } diff --git a/apps/files_encryption/tests/share.php b/apps/files_encryption/tests/share.php index ebf678da78..5f3d500509 100755 --- a/apps/files_encryption/tests/share.php +++ b/apps/files_encryption/tests/share.php @@ -881,8 +881,13 @@ class Test_Encryption_Share extends \PHPUnit_Framework_TestCase { \OC_FileProxy::$enabled = $proxyStatus; // share the file - \OCP\Share::shareItem('file', $fileInfo['fileid'], \OCP\Share::SHARE_TYPE_GROUP, \Test_Encryption_Share::TEST_ENCRYPTION_SHARE_GROUP1, OCP\PERMISSION_ALL); - + try { + \OCP\Share::shareItem('file', $fileInfo['fileid'], \OCP\Share::SHARE_TYPE_GROUP, \Test_Encryption_Share::TEST_ENCRYPTION_SHARE_GROUP1, OCP\PERMISSION_ALL); + } catch (Exception $e) { + $this->assertEquals(0, strpos($e->getMessage(), "Following users are not set up for encryption")); + } + + // login as admin \Test_Encryption_Util::loginHelper(\Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER1); From 44594fb41cb8883d77e0c375a734b3f4a2ce54d9 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Thu, 1 Aug 2013 16:46:01 +0200 Subject: [PATCH 37/64] make sure the first breadcrumb item is inserted before any other elements in the topbar --- core/js/js.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/js/js.js b/core/js/js.js index cf4e72324d..a92d41f236 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -387,7 +387,7 @@ OC.Breadcrumb={ existing.removeClass('last'); existing.last().after(crumb); }else{ - OC.Breadcrumb.container.append(crumb); + OC.Breadcrumb.container.prepend(crumb); } OC.Breadcrumb.crumbs.push(crumb); return crumb; From 0c1008bb69b3ae68b2ffd51be3f0028890ea94f8 Mon Sep 17 00:00:00 2001 From: Victor Dubiniuk Date: Fri, 12 Jul 2013 17:29:08 +0300 Subject: [PATCH 38/64] Some styling to user list --- settings/css/settings.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/settings/css/settings.css b/settings/css/settings.css index 3c406109a1..67aab4a461 100644 --- a/settings/css/settings.css +++ b/settings/css/settings.css @@ -57,6 +57,8 @@ select.quota.active { background: #fff; } #newuser .multiselect { top:1px; } #headerGroups, #headerSubAdmins, #headerQuota { padding-left:18px; } +.ie8 table.hascontrols{border-collapse:collapse;width: 100%;} +.ie8 table.hascontrols tbody tr{border-collapse:collapse;border: 1px solid #ddd !important;} /* APPS */ .appinfo { margin: 1em; } From 71f43c5fa1f2a498501ad3009b49c2e84f71847c Mon Sep 17 00:00:00 2001 From: kondou Date: Thu, 1 Aug 2013 16:24:29 +0200 Subject: [PATCH 39/64] Add OC_Image Unit Test data() somehow does not return, what file_get_contents() returns, so I skipped related tests. --- tests/data/testimage.gif | Bin 0 -> 362 bytes tests/data/testimage.jpg | Bin 0 -> 25392 bytes tests/data/testimage.png | Bin 0 -> 5391 bytes tests/lib/image.php | 220 +++++++++++++++++++++++++++++++++++++++ 4 files changed, 220 insertions(+) create mode 100644 tests/data/testimage.gif create mode 100644 tests/data/testimage.jpg create mode 100644 tests/data/testimage.png create mode 100644 tests/lib/image.php diff --git a/tests/data/testimage.gif b/tests/data/testimage.gif new file mode 100644 index 0000000000000000000000000000000000000000..3026395c5e652cb617d6124df386683edf4166e5 GIT binary patch literal 362 zcmZ?wbhEHbbYO5`IK;*P1dNP~OiWD7%*-q-EUc`o|G_}&B zy7x8jkFS!?6A{_wa)R&F^cvTe{$^3ea5U=vllN} zJh^**<-El#%q;6StY5d5m4(%;b<)&@OZUz$YU^w|eB|h{!kzvOr&`UI%S`K=@4Mst zwc@bl^Q(839>1T+3Gx&pny1_|cHQ}BaLRM_UW?affu7RnOUaywQR``hQ?S cfrpM%|A{3}hME2es6p@yUgsg^{EwagoY-MJbnY}Xq zulqj7s865w`}_U={zs4FocrAO>-D;>>v>(T>$>iv&GyYch+OX6#d8o24i0ny{6L#s zkPJk+hj=eB5$Rsyz5Di&l2I~KQ|{kSd7R-84KvpX9&WA^oE&^-D)W;MBI0Y2{*N@FIh=K_3Ai)z{92N*g zfrCqdv-uICgO>`gcISbEkB5r_A031b60g9|$V)WJAL4+ZXowg`Hx_e*7)Or{yhjdduz}M!FlV1Iz#fFi*>;u! zUWpQVXMy3OF_%F2{xRT0>;wn2;IrYmh(j>LLu~lL*tv;OuaV*5=^-c)^D7$K``hTa zC64scXo&sw)}ZXKC9&6oNfIGc34C$%0b=Zo(K!FB)sx}$nZeh?g2E%<+>8gqZ;29u z#>2csz1~s@>a`^N5Ck0_R|)31RtExg_i=4|5xP`L;sOI5u<$~}(U{f2JZ(R~@+YzQ?W`a6 zEvzp87x=)}BNFWLE!+~V# zaNzn|D$qnugGJmGM8TrBgDBPuc6Jybz+@ln+kZ-M!T`%1tTF&U^7;Qkf_+wV`Cjlo zftlc6Z2d(Xb=KM}Q-PBmb46 zVJ4AWWOu|)07qRI5{P&^68-51m{I@P55N!@KR`?X5rh2=VFstca>SB%cq(sD>Lowj zpj1?J*KGfC!OBes2vV;VnVcRWw5~zpLy+q5xL;Dz)Ddm;4K&OaRzkuDOt-7PMQ15N z;2b50vcflic^-eqKtypwbri7$f!}98KZC%ST@d{TrR$}U^h1P=p zGpM8=JgctjY)X*u3eCQKGxr7k)Mhl+_dbC*)NsT#){ERzASjx4m3Dc0!NGD#yEIg~ z2A_#Q;^q*9_e+2A*Gd-6AdLx)dRWR-|J3`un-j5U-15hlAE6r@an64d_wu{?YyI^B z^kE%vNh9j+$-z-Jut6vFA8*gXl7rFeFq3dDH~>dYN!VV5Ot%kR@4lvyFKnai`-(bh zW~m{w;^)A^&v5I>RC=--1!n5%(N*~(Q?*kPMXeBPYPmmePYY#Q!gdNpT#&4aV!OwXYuhsHuQ4xg=4ge#@~r18ha=Ds_V3sr5k zIS-nt2-F|FGb}#j=CW`-Gk>GddUQpYcg%8aWPFbAnn~u#^Us2Px(25#66V5}8j|Xk z!w=>3yG_`9cKiBs-fC@rj(>R*a(Lgy+3}&ry<@?RWW@{py0Qx^oQjxB~=Vcv3o%o}sx=h!GxyGS6zVP>Axt%u{Xvcev?I|+7@+mO|--Z@PaCyFC#M*~n2bW|{srqHs%G12Ai~X@w zMO{@}>~Aa0tsChWu@e`c?K!Y^^XJX6If248u|)@;Yc#b3CL=b_ zVunXUT*F>CMQmK19$hGyu}`;kDqLS%r+2{>>kt>G9HOcos<>A~e<_cOop^XK>%7kLGy)4z8J97|z?*U?t? zGs3^@W(6kE4l}dk49`;@Ih+!IBxJ(X%6CTm_S1!_HVca*so!66J+cp&`%vkg zi*v~>z}3+?KiB15Uu|5~aeXG8(59uSFAlf)Lk&$XUXL`qHq2zqEBapCatJb+Db&!?5dP^aqj+XROWh-`qI1O(;Y~A36~&Ext8-mVKW5w(g_dTffyKTrwR~>r zDD*D$^LbZDQg}IB#zOvx4&`~8b1w~FYOd)`>6tYB93Snq{%o9M_SyK+p*h38225~+ zkdOxB3hNd`JtFw`4zADtL$wiW?oE%=!-{ERqy~HBJk;=-V#q2o)y{PC84r zQw{tau$dhnGWmup{3W)3QNM9|MtI%H_N9kpQLYkQXsKg=%rs>PcLNHuz)qV@xwf{@*0nQ zdiREX*BOhSqn{QE*2FuVUbrzPM_O=Xe(L-V|I z-uMt2ar``CNF0}FNV<=MMNFZA1$3gWS--T0$7+$YcDYTMSB$^5q47qvA*A{^tu64Y z!u5@*Bxk-4g`cITh;i5kXPboQKCJuGS=j>NxE>|9sAH#ErL|&Kxg#day-5ny+^*@=cX`XhKNI`^Uq1V1IEL9tkV# z39ut@$;-7r_$%E_;F*rEgp1gkn~$cCrt8cSPg~e%PnAxk!aJ@)#t)*AF3z~-o6sZD zV+YgUw5W?qigZPDJ%gRlVgGFutV$=Kp|JKc^jAl6vkU6 zWGptjXWOp8k)8(J+yPVnmRt*0)lKf?ev-(_{%C-Jk6{r(0kzd0GT5r1aSSj@1)swi zH#T$J)u7>k5D73doB-EhQ^)Nd#-F(`g>y_0^$?B1c;O*0F>MX_O3+Hc905w)ZY6-aW4o1b08}7|;(u!; zfUX9nFadt{qY+GivB`lyB>>kZ?sn!_G!~<+UK&JJS8a0yC=Hhc6JS;W z?DThzu+VKabN+!N*w^6EV2F)%?EJU+%GaKlg%GxPtroB7We0Z0)OV62RE41f1!AXvigI+G0>Pf!d$f7&w-nlh^E2Qf0Y1MHC$c741vf0e>T`{!)*bu za$zZgPl?`I^#4mge3t+iKVbhCKlocy@IU+j(H+JQ^0qAShbMzmkOt+BCnFdA-IFm* zL7;*^JQ*w*AhcxxL`8oIr$AY|!zpp})|R6i3(pRS{--+B*i5exsP1lv8af9)${ zDS~I))mH``Vm1ggp)g(yCi$xk5XJ0{MSruwu9g(=gYA7E_Jd(2F~o~uAu!DBP=q)Q za!?}?6FlH0;uvi0Na&q>MH7&L@qU<*t+W7imH|VHSSP@$Xjd%S)tTLH3xZMp(FTa~ z?z$_qTL8phNV);<2S7Fda~tfsv+}zQ07E+h?2=Iu(LBQO|CU;(=v8HQ*}fRo@>#EyQp{21(V z*xlw|8S=;Oyhv9Qqs-m6Cy@JC+snr~8GQc>JO2NrxvvW>j7=Od_p$yQ9|-7)(bSF; zYZ~o1G1$T|X=OANiy;DpPjGh#1KqB>Lw~Fu<6&^u7IQf$e-L89Q#{Zq@-eWq|294# z1IM`HZ`udez+`OTKJrO&2!(?1@lZH;;I1+Jz(GN{c;x$;`6wv4d8rQbut+ND9YcNvU;D=F9TyL{E-oZ#0<%MgI8nrv`N7oJ47?m8XV3 zo?Tj>$;MH?x}LtmIM#RA*O#(tJ+}3f2q*l*NNmtyjQp6UF1>wLvT(pTiLJ*)sX$9Z zXez3gboKUp(2S#*^!QBIs^Jm0jrm!F1lP#3t(mD&@suj{ai0=yE4f-s`Apx@jAvYz zeDT$eo~c>2VwF*jnfd3}B2syQQ@&cu*&MCKjp_7LOK$^fouw~U9}3KOp2)tR5hy=2 zNzRvPdd}?H)X}qsZBGx&bk?QuP`I~QiBYH6q?;Pt@2^}kY{OwOF;01n7gSUGLAoOI z8l8bXAsr9#p&w?R_a7`i9!c%igbW=W|AqomtN0lR#@cKecZLpUb*M_W$azyii~FBA+9%aT99f0m~$O^)6%j zs+W6^>YtmDw^7SR&qwIDZABDzbTWhu6$x1zx zejXRQA#=r(RV_}vU_lWsNs~>ANKVy~f8lR5hN$F9yUCm{eA~iC|9%1XeCSIjZ z9bJt!$Xb`{(lT%v)l`#^#34?Sztgm5oVzD9)xI2hx*1gnME$C(Tl!vR}*E8Y!id|@JO@&uNts6Z)<*l=d z-e5R?$fAmSJY%N0* zbN!X#mme*Pd){4sJmp(IDJM3YZJT?P!u3E5dSQBi#pS#6(0gvL@1CAB0{&?|x1EOV zhV5p{S1iB^YQ>X+yJFnW{-PXGe9D+D$kcO_hPCi6O)|;8DuAJ3eWJ^k`URW9>*`l) zDXPL}YEEZxbUt|~(?_+W3aY&9FKg{}wzW2zla(DY{wLU|>BXTJ}8=i?@`o%X? z%XCe-7SYIpwW)`zxC8Kyr#Rj!dROUio7Ek>DJXjdV-I#4hCIa?6Vh6_%E@tCSD~!F z?7Q!L&&IM@sFiF&m0_J=(=?$*4_wSeXUX0fv#7ZndU0@ZfhJU!| zK2K%XoLu35wSnM}t6dZ$>x0+R-C_Oq-@w8ikM55h94uI#5*KNBG&flAE<}C9g`x;J zZl0h-5tB$B+ft|6rHpr8SDf4O!OD!G%2#yD&uxn4HssD<_Dg2Fg$8xh$&K2A)Tiy?hw?IL46v8He<`cVisE^>=P30hKpCn4W7aS)i|r zC(5SXgaq#QdK6v{XX+)3><)4n%Hb__jBJe@dTbs~s1heP3B0SO@}yCbL!g6-z%P{- z>UQI;vf!P-%$5905^q-97EZ7ONcO+~%9@bO6dw}gH6JG#E5<+ixf?6uhvKSJ#r8Y!UfHPo5T%9%-9H|LmAj z&4^MG^$~KtkNiqs1-#|^^LWz*l1`|EPN z8p`<>Rla_3r(F`{5J$*2|mPHaR1(uEQzjhp$&C zxGp`2`?S+cr~N^;k^B@m8VfS24`!vIz(A@$;bY^p$`5so ziv}DGYO?gaxCG@5j~ev`;*~AF+k|xUjWm53 zDc3{ZrvZJA^?&4W;4+b(Ae7puJ#8QP_QfIl?uzo~iBujPAz%aJqkwSmAY4Ke9zH&H z1B1X9p~xxrQ!yXr;pLN}WI4jG?1|4UDXpiZa`S1LF0zqzHb$`A|B=W*%Qg?EUsnKjvZcSoI|72D})NG+} z^6Fz&*7KDD>^7mR+TPdg9~bSf`4trtuOu$laa6DFt#uobf9yr$I>qB}>MlOLsNXHu zF7fHA-%KE5o?b>Sx*{!#OELAR_>W*M3$+5LNe#b=fq}TxBVFNgUVCUKx~~Khb;YMX zxRrulSG^TTXzXxwpQ~C}#PEulwBM}qo5dMpO-A7pv9`Cn!?jd!@YV0lL|Jv`3>+;R zJzRd2^cp~%a9hExY^r=91&r%#Fo1^3eAT@7!wIOIrs?8&NsyGIZstHUi-g_!4x zj{0`g5g`mYNBR|gh^L4kPPddIE69xz0 z*8aMlmQ?1NX7PD_TEB3Q^*dM@#7`DP{6 zr6s{*RqNH{j`wWx?oCD~y}zVS_gy4Zwg1evpyxc(V78q|E!K5H$-4}In@U4G>NVbvv&?Il&Yr$7iv@D0H#V5Z{ zK1p2kq46!CrZ(y+`JVnU=X8*j4~bXcu}`g$XWg44I!*>ty^O;Ro{WzD`F_udaVvWh z-A#y7j3UT9{BbE&UV(2MfreMYV zJiEM10j=7DbzGNT3Prq7i!VGk{Ub?Ze*N8zERQRz%I|ATviYgA`IL>pdo^?W0^>W$ zW$h*Gb56oC#-3s6C9|1exburdw$N^ny*qcVTd>K z2DL)x3kl^gHUsYbr|PELUiS_-od_@?xZE9hteV%l{n~=EWc4q$@eID_-|Q|tzQ<^P&W84)cA(9* zz3vHFaSV-gBwlV8y5YBpXVNnt;o+9VsT}D)kE=i09hiT}=JZ9}TVs;9cuU$0QydSm zpQfX$%e|=fSUBe5OF3H-&gSPOrB6y{c-Eze)5(Yj(Kw!0&6NX=-UH)Py2q;q*hmrt zAcP<${58Ewk@7~rnr&Qc^2_n{2oDf9*(o3t4lW8G7k~Rpq&O&C5H@)znGf?yv2aV` zQ7I|wVZ$W~6E11KaWvO)H0xFk*wmfq-%wYjq%Tbf6LsyN=<13;Z?2BFUNAcxdUBel zJ9v$rj)}`{jh1rA=%OFram|Ayxt)ro(TzWkHbz%hyps#>Oc)D2d*;%;OXfFK$K>{j z$yv9i#9DXvd0eUqr>yQdps04vl4&C7^+S%hPN93x_!1l5Z}_Xcn*KO9H<))a<=x`@ z$M>GG3_WE`In4j?!m~?{%10_#o$uP`C?{yWSxl6&&AgGUIicKBZ)|QAd*wyo3H#t) zY5)1o53|ZY#bcIFC{XxS`c9;r{$$H0q1fsRo!J^q{tD$q4pC|gBD zbE#uOx%DxMZHr#rF%0=!;tG^w;?d|;%>0kX>W;4{n zy+%~RU)27Jw-BnEGwnL&wswsn_Z(-y3sUw@n7Q+c# zAVT=KxG2J1oRCu-=3(ZwV&V4Gd%9mzN=aEa#&3WU+9$0$+Oolx`rql zW=-B$e^}j}FA`d8!q#0Z4X&ZOTac{6x$j}9#X-IpowWFh*10noU$rd;Uac;EG&8i!nf`M8JY{3I;+R=*lZM!9%_f7I^wk5hO=@0)1NODS z`imS7V$)m>oLpMATV_+04;M8u$=gH5=W(<(^d{GZtQ=P@t%J`dWIu))+r)Am9cZkf zQnmI?Yi#X}&QekI%P4-xN$R%2=#Kw-R#wn4idEU}q`ltZA0AYxHq)Am69Hj-r^N2( zu{3^{qxX2zJNkabY$KRy|MF{>(Dd72ye#ERtK4qeJT6<=k0FmyO*H#e^O^&~A695A zH_m?)KiVCcXtojV@up!kbLDCfO>ci&pVrMGf76*We6KzP`^!$X-}Q}TJa*hAHc2PB znBY<-*9{j6YuT8ZL?7iK7!UP}^UotE{S(0O_bTtd$^$cK(ZKVlBwW=fIHwuH?^}64 zD}9D7H&~4%j;)3_AVx^BxIDEatKt(?$Dmr1h70$Txx|sttQV6)SWy(dHMJNEu;m8+ zM3#N8Bun;VP#~MKk^X=g)!L}3tC7jPhTZak=XosQqV}%icYR-$Gac-S@&RijyG*7q z&a~gH0ya`(?g8)|#NsS=YdPxUmBdK#cZzwUQ@1ipIO^`>H5>lFOLU~e2!03 zrfLIbu{CJTu&w#!ym7*g?#%7s^ciZ|e!)#huKC96h8hV1`D0pT&*IJm!ROe-=v&Np zty6y8CG)HJ$$*f&F(p@pfH;mD`)dM?$^07QIK39m$zRF#)%iRyq~mghH(O0fq4QeW zxZs3Zv%Mi{a%XM(dp#wEmPGhZGE8dy_-bajHzN=^ z<+IYe8xKP6*YMuWZlY5)s@d<%9)D~!CXVf5ed6cR>?rS6Go_?A{(P^)&a1NB_l+Hv zPsk3}Nzcl^@Tx13(smP)PEPu@30*3z{X)l)cs)jOzE(N>a%y{L{TpSEj!>{8agsw| zL&76K;cRV5I1mL7`C(=$<#cX6E66s?bjC$I?9cyqT4sSvg101DxY*Zyxsdz!9 zhvGA-8#lbj8RZB#Br=!DX&{D8DCk4=-tqEp;L+aV@SgB?M$|l+^>kD!Gr>&tTl$A9 zH}Tl^_TiIImu?u+NM5^6|Dn3yjc0Q5V|ZciF~55U_LEvP>fo3uL#C%zHlfpnOmF6b zdZ)@Lm>pbFvo|y+s`i^N#xP&hvGgR^J6%1**w!6QKqP9zj4oQhEjhHtD;Zeyov3uG zeC|P02}{(3G)4X(H_lgoLNABX;Sbn;0<>JzM9haF__UWmjU4P*B6XRVIlxt#(9Ktp$iDT8Wx`~q>~aQy;U zTP@}MgeLvFb39cp-3TH&{E=!^gr8;T;;^)Wu2)l9{a!vuQ@$!8LB5pmRPo+SaRX`_ z%KEzu_eGz@bV}YweI*P$jw`^xq?D*Ls<|5bA?58dVJ5=`X{VES?`XYEJifN)ttOQ5tepc~0Kg|L&2ptsXJH?s3%%x{F$`@*sNJC(TmQ*L$Db z@Kj;dio3(?iR!O({DiU)ts$pH%Ng>WiU^(yd|p--Fh>%-hvR6>rhfXTvc^JR3u#I0k)t#`%6$eOIuy^G@tO$zj69rgcy$v3 z8Y!WRA!5FQmeh@<^|_yHWRlsTs2oJ9UrgCuz-nKOnkaYojYLJ_n-fOd2p}kJy6_`{ zrKTKbA8pxpDaBFw7Nfgdp9Lj^FK?_F%~6GoaNAM0Xc%e|SrX4vk0|6>(#P8ss;|rl zknD}XIb3@7G)Vw7U9EBQ!>O{yv-jG7dwDGC`<*KP#X9n?!9Yy*SSa2AZJdeCUVig< zXoyUKEYDHyWoct`HHmEPD-B0g)_PAG^06Z3B1@WjeAYhEfq7ja(S#R5ZNwLav!ht| zd$l_s)WDDL{zMaT$U1y|TC;jy2Rhk@?+U#Qe^^W9oj99Tc z;p*MvEW}5qX}|*O{3-I@v%FEvHXVb`T3S`eQRG?Q&C7g2S9N){Q@+HhVx)9>A-d_g zosM(Sg4@{Ym!AgFDb>0`HFp%Vj;QrVbJOY9);-Mz9HyU0c=(h@hg^D zhZxwLV-#)5n4c0z_sWWX7h0W(`>g6wME>ok_h(gyLfS7>E%6x;GcAMbG~u;p=VN@s z&PDGdl@{c9U))#p+3MIPWGb%gd=l^zP$g>Vkmsm?YZhG?z*( zIgw^v1zbAE@L}k$5lUW>Q_oLc5~~S(r%|qJz`pnHF}ZpQhgR_RSpw3XV(@}dJ+NEzn-|%8oUGBIA+K2e5 zM?VGLiYfCpLqoIHYiGE2*N(SMb@Mlp-{Dq&_wUi&t`A+P>(SsvR9JG?S zR(7`d^YO77$}!AeJuX)SLcic}6M0XcN|h{rAow}yEC zO$C_|N*uaKa)?}F)aw(TaDpCvZa~dJyh;s^iP}wQ>n{}{TyWQkyloR&Pv%BJP}bbk z9uo3$Jc;#9Xi9t;@+91Z+%}=!DLiI0(NXca+EP4jDN>zHXtobc#4K~ZcYSFSGA4pT z=B5fjz;s*c-TAk`&Dy^L`3ef)VsbhElmV@$xMkBkOMKkz_V}>L1;XFSl=FtPtbcT z#8(@NcZ)xdh+#$odBIYQi22EC!zrL}JON;# zTJRo+6eyy1JsGj^+|>H6rAi@Ubjbh%?>QyDQUYVs+v_nm6;H&i4&+;3nw13e;aU_d zr^x^@fEHcZAQXZDkYl3}4V@BQZ4lozq#NK8mV*Q46i5McijU!R8sQYI>Mxu|qlq9a zrzTiVcS%3bT?&L)Y%BrLAeaJZ8~~=P+nBm-W6A+z3L6K^|4*1U;$p=>Fa=_i$N*@5 z!xZRui_=+{({i8_m{W-S3(y3Zqqz*j=`Q&t0nPx^EN&DQQ-BS?bV_`S(%%1ov}_lo zKQZQA-32McT>5uN*RYTRZEvIjO3_$Kxe-d)cTt*#p>)Sd=b1tKA9l7aO2@!^n9|k1 zKsvAmDeR%;;36!fc)+~kJCHV`iMSC+=eHom+lEwhr38hKg)|w4lnMhW2@Gis0;vuR zDF+tPZ5O>m1eI<<$_z`fg2q7Vz6;Xn|9}*@EFL$;Cl;}g7Hu18ni&Ob3CqDjj)4@o zCPZ9~(C)Tr=A$br=r?#ymN(6atF$yk&U9AMLjW9abkc@XVt zJENQhyL{ArHX8jqqbI;y45Q0vZ$dbd_Ilt!VB-LR4Fpmt5J=}r;C+Ow7l}A#M9_W^ zNVgeXZ9r`^3N{jWLzo8P7YU?mbK~I4{vNQhF^sChkrYU=!>9moBrx!N8hWqAuAOA6 zApTECYv7H9&;#rvMa&?Qf^DR?6l`2XWJPm;QF0JS*MM!e8SRpWenZq9mI5G(Oa@^b z4TN889Q_?p;F1WUK#t!Kg`r_ab?w?lR;PfcfoSWtL@Pr?Ub4r6X7&j%u5uT=iQFgR z261W=YJ(B=!nG)#PLsjch2tnN?rubJP61_aBU&)c3?sSJ(hWbO5NVYUybsjA~+%IK5J8|!4#|B zRXdj^L?NMv z(OlaPB8Z1UQhT+*g;duApIl-#I@{Zl;BBXxg@@Z+z$8d+khs|ff-?*yFrI|*QX>e` zXqkHMG44_#3i<|*wdoVp^Hd(MH=%L!=?kK*r5)=9$<*HS6fX0(>QUm8*HQ+rBk0Rn#yJ(a-59kCqLI{pP7?9P#K85fIr(Fn;@W#2mgk&|i zQw3{JfKS02f%q1WAgO6YBRCd=h)Kc-oUC9OgCkHY3FvggQXml%NoqjEL?RLxe;m$g z@Wtn9;0*)Ly5O`1g0nj$6w7ThInUh$Lkgfo!$DKW1I}v@w|WH!O;|8EYGU#`5H-OD zfnJ@GfU_Dn?`i<=;iw4&L4sxx95frt33Yb31gn9w8X(6C5;H-tm}`iKnBn9O4w)su z{o#-ar!{cCvK9~08f04s`fc`t(^fdGks;v+@3-LuSrojlgTRl(OiWs{jP^v*I}kLP zF+mgFp}p~Z1Rop39FF16if&J1setc6q9`e??SR~ZcO$KVT028S{l4#fS{SY zEBi*{ZD-%um^sf~PRax`D$0g13TxK{PC$W^mBCSy3~+>mO-%aT1#cN}+=SB_kgs5} zZ+K4x>P6xvl6^OplW_l?R3!c0BGr3~R3!Zdq$XiVU4kmP zK*7I}DgzY$H&WsJdz(~#KolVL36@kaB!<-7KS_nt?{a($so3-zT#4l0fK(*^Cey*> z-`k*q;0fp7%V1C}sB>6QHz5qEEe!=nVN#L(uwbiAqn_yRN(|1i|Q*(Zqo+_ zEe9$8(iEs8;1CLyvz>s0_fi;CF$p*re-?}C$`-0f22Q>Jn;59B(F;kzabXQ0tQG*L zg99nhI07rCR+QOQE5gd?wZOnS*MNa_t5j433qwl9KqMN0wZfZ~+bWO)$-yzDA{N%a zmx?Wal#07yg);+KemI@lf)$Yj11q*x#KQVptw^+0D*|->tQGNr1>jLJux@~&_xG^6 z8`eK+MgBiv{jFB?M#hA*{`J)cQ1zA~qF`WE6i13hEUf51ip4b;)-SM$fRVkBpoP#1 z5?IWbaB&KP9D*xS^umGlD7ISsJFcXE;@XCdtJ0v*!l;!5lUBLU0mtK(f@Rr-D~NPh zT#gx9~-j4-hO+S|YmiU13?WGt|tXap%D0xa;?|5h|2(G{NMkKP6mLMs?~ z7qD;-1c|OlMh>Fuzf_H|D`Kif#LytxNkhz7#gZUJ0G3#!Yy=x7=+Yzu5B~4n4J5n* zBke96*NLDlwQ`q&8NvPn6Z?DRNRG|QL3sUJdt*B(-zGK*dRhZU4D#sEy)WPkIhJR>p0C;!W z8{Rw8Q^R=>5?cS>-T;y9_sS95hWov81X7snjLBV!1aX8_Dd2V64UVnS@wW!YPVESG z37A!o8EiK=vUXHjj*sL)a3X*~b*sTq2Cl;vkH7cfaLE3w9kHY~?&x%j)IW>IEmC(k zI6(3ETNkbj$%EjKzX|OgahuaWI~*V{+NmCqbntH-4q)M}KHM&yViTeNtR8o@IN<6L zggNgURJeRxp9TpmrZup(OQ9s(Y6zzP^YRhw`bhZ*91bZTfj)3RnhWFyH*q;A z!2dl5zK)59LT&v$0R+A*B1O)uXZ18DUAeTW-*cK+>c7HzN z{Hp;m*7vb`oykI$->*iM#D=Q1~K8_;Cv^y#=g(}!oH>-G7)@wi8jTVOrzR}^P( z>VC^Rg~K@GoQ0~Dv$6?Z`#M=>ZnSEt5Pi?BW%YTJ;!m4){h15@9h{Hfrfx@l@2*G^ zqE;ypHvM_q$no2kjUNIxs`dnmJkK`#p;RN1o9)r(s&jNvY|*O_x7m=mX|$zBnbh}< zrEChXqiNaCBq#f8-Mr$O@*S(5i##oaR!OIwSYrzea#DmV83>amWWO>-Svi)aRgqSi zKeY88^s8B~HsluLe&ln`L&X0ke)$1LW>FnKdB3{l0Dk6I2Su28;z(SJez@|>ehjh}SLY?z&JPZY8;@s7HTajR~~bV8S;wJ4v|ndulrB}q9_b+5d;!)MU> zEWe9u`C(JLO(>ni*y^zg_%C46PWz7Q*;1YgrzOZOx1|wf@>{7IpyxW@^jJRjHUyznr2ChgnZYwMR7%ga~4;xNj0_5C_-lOF!DKlB1;DuGJ&BlS1m zwfgv7%B?sD@vijq=7~g3%&p~9K3UQ)`zdyN&-iIF&6s8Cy^of3zmEGoJ6$TG*?CCt z*0E)`hUTL0tdm9NhO>h9d_ba^f^ZRn+ty1*a9(98&} zpG&;I(m972-@6Wzj-R&Bj1%32Fxq}!Icruu+&3{-kWXA;F2P4I+WLID&Bec7?|td4 z!jC;C4@A>az9b))ucgy`u9bg}`s+#!bHudIkJHE0k6T?bDv?*?x#A>2;YP_OR69e+ zRjAvp*?+o>OydyBU+O`s3ZDF%Nkg89D;ybq)Q2@)&+V@n&I_;ZXs>Ua$*i0;ouG@X z?S2qZ#Pg8b2j4i@(;IhbhWA&-+>MCA*m4zS?L|XAHvUURrX_UGpOSM=mvV^db>_)H zYE@QH|(h%RJaKA|N0ei-96k*yRw5rKtQhU?hU zcqY~9m2pM^fpQXjJc$1?-7xqXTPcMC>(c6@eUD_8cpI(i(D+P~mLNVIgX0ql{IwH^ zPspD;LEuX!VX?8mJ7F*6o<+A0gY=da|vj(Oo_ z9KX()n+uWPbM&3v*y4q;YE;qd%+N5MbUipxbvOlMOGiXL*c! z<-)5|HXAf2#`EmlqI6;%hlX)AY&VF#OMjw+E-xEDbM%^%Wb@2Y^kGpLFuklX!R3}q z(f-0ceLc5Ba9w^mBaQ67*7NgnCr`U6M(AgwIAV$lnnZbR9?0pckfR zzJ=P2wUEbaU5GEL=^r7o?a$s>=ViOa8een8{0S;Z>`dw)yACr|VCs49h8UM({rt!3HkaF_~SMld?I+`!hF>chXOjxqpUYg&MXD*T}_@d+@+Gb{YtyOegw9z zff>1Hl#p`819WP?Bc0>Z1eKe*Onp*aOOlsKWHq3!bz-H={pi#b52LJ{?$Z84<6}&A z3uGTwe80KLOcuo~=_swH#=Et(ih~baMASpF!ix7jV|7S9J}n@AQl;wG^!c;$Z(r-N zgzrBdH4{XOe;t)2rdG!G{BcFQt3;D^_FK*>yMg0p`L%RG##TPMebSzg= zbKOjT_GmR5t{wNqBd#mGcbGZ#rufx92_X%jI?u2narZjz=YPODBkdA`WZK8LI_{ntT(^h{%(&(s!>hG}6bHBT#8@w%5FwnXO{3 ztJZd{o(XLVLH5@!+)u12xO1nsNZMpdZ7EUxf}d(hC)zvR;n3*lr>phhSC0LVy~sgR zAXs+ru9xLKle*VeuU=m)oH6jX{ElDYZ*ZSnzV?Llg}c{9h@M?%qh3l}{lZ&uA?0WI zCS=JU}erwMx$7h zJ*WzXC+%0lglI1e=+#}~CG_-u(|Y#YNrfQ1!wip4jU0@kU(c^qb%wk@`%7Ok%gs|x z$A9=?ACuQ1wva0~l#~NMCJcHBKm2ehxThdo?P}>VG1VRqhU;wc%O{;%Dae%<3kD8l zy|VlgqrZ&6dgoDlZTO{ImnZQ-M}-q2$B{lSNJ@}VlQnvw`NXU0Uh-Q^!r8kZ4(pkypL~+b(HAlk+I6W#jEFd-s2CW(yeB>DL~6lFuKo$liA#pfn=l!OSd2SS%Bm zj`L*Wuza>WosVKIeEL8s+LA(H57!9`Eon6hvvGpAStZAxG9^xlUydg&;nlzTj=fbl zF)NQ@L_>l(rmq06>27E$M@o9{n*E(jcdnNH?k{Qf z45+5>`nf#!_k8himhYDKF`^ZWeAzyanIr}^2c%aoZP zJkbA|yYcy1wyg)f2X*)y-zAMr=vYv0#6y#nB%Lqm3M$j?q$dw#6*(L+Ei`SXT}z4j za%bgg>T8pgtHrN%nF@If#BXZXJ(6Lzwlq?HdN)>*@IY0Hl|b0>J0m{?Cyg~gJbO+<9EceJx#)&KUBFWr}JD&#ZYwW57R z$eEVcHhl+HPb&%~c%(8+u18%fC`jL=f`$7@W84u^@gtE=bIOhTMaE?Mhw20GC*3J9 z;x}`kkrTEU!guo=D|$M9+ha>xq86lRLRP;h>ZMe*UH`7Ef9m9O3b_WMkK7bBw*C3t zE@96(asRV=hhxs2+yD4Tq|J|*=vVd_wTW1S+9(d+HlCim18)oOMaV+3G~WxDGQKeF z;^L&a*{^z58yA(F{>k6h+=~@&8`%NZzTWc>3H7-~!EQ!& zYR*G-Ae+O%-)r_V^LejJ59utQ1XcgM_qcc5Egb#0ck&*I|D$Vnmnb@V*OxC{O&r&LN@834@`0*_Ou5pI_`2nMB%*XA*5$RkX2;g$ zCFxEy8Mc>QublyZ3i!RX$qEN27ysMs*HN&?=iv>85)08c{vBJA@!-ILQ4p&=%|bamhSkJDEa?&aLYC+a*t zWa9NKnewvN;qHYD(gN)qqHeu$iQ)dU{U95Ac9Mrimzu+ou&QU42W8XjK|rV!dDY3kkFP-j)LyUf~*TmeVW{q`O!2Ep7+a$4F6IH2K_&kde6k@EDbe1v|b zSh`O@**1#0?EZbe@{OLim79?H?AJ`e$(VV9*C|}Dne?(J8K%8skKVtSfAxU=Q|l*|wd?*@^#v&qKl zS_(BXyb)$oIxBy+Uzy#PcoXtZ3$u<&6h7vxLv8keqZpSlauX_DCZ!JGpj?ZWAwFSb zK>TI?-Ts^dxrY`>+l%#sPu)Cx@MMaRwNdz@^~{CPsHjBtrV(Wl#@kxAh;u^2^-+)Z zR#p+~`q_BA2^iZ53cKkfaYas}n29A=R_#XCX9}a|45aa~^96EB6$QCQ%DQ!+RChwRE*@ zefYyDD8b>n0vYdJt>>kak^8%^s_i}b+L1Qfp-i|PJ}amC8oK$`z6C029lH%B`zrdQ zKd(A07@XA-jgD;$urL;U%N{al9`!&gxp#45E35oE6OEH)WnCY2@FITrGt$Nu2Duq0 zwf8wU756M<%|v@@=5oKqqcIvV2I?c=~F6MXn)`s)?sAG+P=k>C04K#$xxU z!9xkItsY$fEpVI%?Z8gHKLQtt>iLh5t+Qwy`k>FI}4mEHx2g^TPhfYpc1b-! zQ+Rjgn+Jh#Sjqk5dDA=##G5yM7ddOyIy0&$9tbDUYF2(Dsj^XgGI;6>sZ&n_t@8I$ zlwk??+eZpbVb3_;AHvV&55A(?;QYSd#!Z>1Mz_j2KwR+D8Sc|EF-(b3#0sgu^2|i9 z&j|C6_3tH1w5Rwa&Sv5KF5?H804YUqqPEymEAOw3_vzU6oK);;Sqz)F!JV=fDrJ?Y zP*0oHPAd4Bg&tAdc+L#z>wkTi78Yoqw09*Vw&zw_QsLeQ{#0z7WlBeIa6&i2EQe3u fS#`gC_0+HalbZ z>TA#N$;aTe-NFWo>t_p8wfm!Taz{(zPNO4PQ10YGKJt`P-RW+dJRzIQX$S+JaT1;y z=A@0-{{t?NFctM!--W=&W#56U75o&wrfO{@0EQcOpL$x?IHSnA#}~`))H0rfvGnt8 z2FaxEc+-)%z)rpvkl=2%I-VRJ0^4jHO<<$jS~F88MhbM-BB&(nqMonUUL_KwIy*_? z7X(3qcv+V}23InaUS@$G0<(4s>Vy7T-)Q9@RiH>Bu76TT#k6`>VK1hVIRAEqU0~kL`9k|g?>LnYF5T8DL5bm3)@~e{&I!zjxU>!)tN$_vZA1gMFTj$? z&31pKyhtW>bO`ZCz;_8=Ob~MHtW=;kqQj+1=l->DaF8e~--W|DKzJ%3@H-HJEA7_Q zA!Mos%24vs%6Vak{=s`9O$z3`ii+n3-U5fDgKGVKJ{JjcKU%NvmKm8B5^~hnZa=CJ zw(cu~GFU3I>Xw|ImLechZ(KH+vM|TQa%VSRjt=-#K*mVFDt9y4Fj?05M!|`7l#C3E z%;9~DE+u7EyLt|Id9PElMuWqmM6aDbdRSXW+jjm3^2ZV7-K_4R_~K$B3(U(e;};Xi z@e2^q<%!o)3t|NyM*=S0skFWb*Ot{bG<^SUn|`8QgI5KFL~hb(h}nHi-eP_xXxA?d zxhO@Tmhp|aVZN~1hNeEv0zGGcTF(5$BFupQIx~)5DoeJ}icq!&IoEdD)6DQ<+O#Ae%@Ttb+lv3>Qcqhcdb!MD8OWE;IOX=%# zS5r0L|ITjnOHrusCgZ2U*Y8cQE{uF(u&5Y4ZedPD-p9vRY{ZF~k7x+;`23ou$*k|+ zPbGo(=G_p#F1=bALf7D%#0f42i172o4bOOZ{SL!;9aZN(CZLV1u9k`u`bNv39GnB9 zpgUkNLga^rTvT#2VS_GDP8dZ85cW7}AOG)x^RtpP1P6+)Gvz0vmKg5w@uT`|R~Oe% zY(%+LJ3XkTp+35EG~dTUmupC0`Z*Vp>SeaD?zWFXmKC4PApFvqt@c~&e!2o#J5;V$c-`L znc&sBgZYBwYOZx#;>A`I2fPJ+_BhYxCO0`V=B&wrB z>4cT|c_Iu6gjWd?QO{Vw?;E-qSxhS9{vQ9MrCu;(7rh=`qSl}}IvHfx~tN$?wm z?)7PWldB-&?D@GPEexBQTHknH&dair_nkq$UtV8Wrc^E(@Dm=WsD5^}6XmL7EHjG! zFEk_z=UWJ1rw!)*KBBKZBRKIeX<9*}z#7BW5_*f8^#&qyN69xysGaKLp%_h_soMP@ zi%S{5{9OAP)kPeRB$#=K(1TsrAGf^CZp6VsE^gnUxBJx4uyAteqT#~r$r(;k1?2Ia zXibMTW>_hLVVer1lW|SA2w-OYmp%p0v+qQ27EkQc7o@7p(U|B;G3 z67?bt#w=yy?>T+cMm0L0-dpl8*L@l@o?V^*(fr~yFi9PmM|LZ^#UyEFJSNR5S;Vfi zXQ}bMdY3MGuQMPyZsyPZj=|Bsx}g5Ii$U4QuLa0Vvrb#-va-!srnQkAp+`*1ldP|I z=l@i@v0AaRu*!<HA zl!i64yQuEHS=WJhc;tto-$t^>OcrIQ3`S{$*slpc z=bH}5Ngi@b6ucsQr^a<}={g9Z3c>8#?~Ra}rZF9Dqal`u=$--oqr(%bU+jg%UI&pL z*a{0Tgzn;^{3Ra;V=DU5z))Zz*6Gp0kX^VboX5wCQSNH>FD3idmV}GL=%6@*Ou!n~ zAis+ai#TJ8W9|cb=v6^+Mh5d}2nz{i!rFXX5O+!OM2pipwNh&4qt%1M2FZT#6W=$( z?x}U!{KI4U_MeTa-TJ31&Bbu0I>(9stsjC( zD{lNdnuSr-bS6kyd$@DsCj)E(dk0=qqr@EUrz=r>c2CljMP18l?FYk{;wZ87*#7^% z1Hja_Iq(7JDr$TnDPy6T~#um(JWXZP10bN>e19N(KNAIyQ85Vicp4>05BurC)#f}eMuC?DLeM}o^U15i| zjS_EQi+S*~0zF5!1@QYu*33+~4a#T}HPu>lUwis)M4`~6^so9PB&1cK(9GD>^xm($ z_h?ePLomGl0ZYsIVH}PjSsti*(5qtg9|!WKpX!s63^z9JmBPgltYZiy=T+q4T4}&JHd^9}@A;H=~Frc;g-ZwvH=Bd1R+ChOO?%$*?~P~_-qCM7#iCyQ)e#nIk-bs$#3*!Fhs(P=Fo?V7&vp0P{`zdwviy6okBkz_17XtT z4o1HR-RpRS(xs~=i)Ti9qZ*GX#9pR^t@a$%Y66BLEt64y>anyWmyG1|O}1bQ z+*&OEdRw$Acw?#ke(rNNtIG?F)?)SCRY>R`P8psm8&{*Lftm(^jZb8 z!U=7r2EY}4^p3(W?6B~ccUVbcqSj8YHU5-a{*;vk8H)wjhh`fG6xW6AzZqhHi-Cm; zBW3YDuO`F2k%iEfI|nm$mE~%|gd};-juM8f)bpD_j#-%Pg$5eH5Qud;) zX#`q>Uf%6#z><97veVSnT7B;4hin2}I5G1G(89&CR#m}|MaB5S^0&4G)5OzJ+gyfNyFEhs?5BQyXv7#IjM@=Lfvj;%>OpS?V> zD;j6H0>3*9Vj0QCC6LjtY4d=9fI%7UO^o3mcKBvjD88KwS|$*G7$@la4Tw~o+?J&C z4-WtEJkTFMJ2!9R$X7Kh6akE{a{J=VjAdx0%naqElbwQ%

(Mz?qx+kxRuJ{4+7A~qo?Ny+q17FuLw3I^Q2_npcTYI2j953{gR|aG z`P;LG+>kDXIxzJRpQ>0rk0VbFCcx|H9}|3&tYZ%mziEKcwYAMhlPb^U59i|t9_?m? zJ2*LsPr+nL6hv0re!IPNa;&pC3$_18quLJLp!I~fuo`khJnvCsCK{SR8`!K`8skjPI=4A+4yEImWgcd zfJvc6TSxJ?1aS5d4CIn*ha@d4vA}X#z*E>V7 zlaqNtsm)|o)|0PtR22?zNG0QxqiWdjtKVyD|4uu@1_YuK5|d0)wIU+o)^(0&|7kyh zQ!bn)W($3V^_`!^qldoS4jL8|tZs~V(aDmry>EF`@Qs|5LzF+fo$A`yV6!&L+1tl) zR)$fn*G98mlouI?CcLMm0d;4@wL^5GP0g95 zM=ZL6Y42LDi2>)mc*7cD0ABAGiWS%`LAU1Z$abo$&FM1AVTMtoi)+B8F8`i`m}X=? z4(){-giN1#)&2tevz*6<4@>hm{iQEf|3_+1Hq6lDMegS9B!>2+Kt$V2U0SjCQad<7 z%o@FE_Aogm`Qa|%StfT9Vpkdn-Coed%>6obENdvS?(~9s;eq`910PLon?Ru@ZxeJK z96MLkWg^l51|Va}2#M4c^O_zfJ0S%`mP!0Ir-oi282h8RZm9DHkY*j2m5S>;d6)U) z!bz$@`Hj#BVEqtY5L~D|%w(&^J>{zRU>vqEl%+Zaxb0Ev%fjV-H|aew=O0RR=GO-5 z2ae0FGC$C_Q2W4_SNIGwbOI34`%J9;2Z$pQGE$Vrj9+W8Y{z6u&ugEt9+WD--5yS1 zrON{pe}{GWdYRzC(~wdBmn#AOv;fFfHn4R@xq7kkgy@GT&bJcGOHC z@h!X5&Ghy0dT-2{)uZMbo898oWpX^J@8=F=#4R=Wt)A_hrdX!O0zYr%miq&sD1bHx zdj##zzonh|YE6@Sa6>8SI7DS*$8CF_*LCc(qrIK-Jce?smzVnphrGWti-UYdfBu3; z=GNRAf&kd1026C8V6cBid8JVK zjnV~?o|hPSmbfA8T6xRihAWSdA=xVdv!b9+8M= zdv8phJm$;MFBn&W-SBJOObLnp$=!2(AyyFUqGh!{OCG1=;6QOO}?ZtAhV zYNl(PZ%=t5VP6DM8Y9ySy&7RH{xaapX>!v>IwKQg_IC|e^haF}&;9XuG{A%ecqBmf z=Ko3G{O^OjOA?N!&JoOz2*xP-`TRa=Arc_f!vW6_h6kz2O`7f@@Tl@xT?N^G0m(2M z4rS*UW({Q^$>bTzviu3lCK+#d;RS;4Di>oPN=E1ebM@oQ2U-1N~De(m0~>=3zGk0ZRr+gun#bJdbr4@03T*5l0N-8t)b)vAH_9>`Rc% zl4^cvuJm5K$-*RDkeR``Se`yYCw;Kd|HEsz2sPn>b*a)XdrWuJdJ;x}zJ)he8xaij zU+!M0usyqrJVE>YZ;}wYL5@sPS!9d9no;O}+Eog5y`h@!OOf?pW4Z(6GeKI + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +class Test_Image extends PHPUnit_Framework_TestCase { + + public function testGetMimeTypeForFile() { + $mimetype = \OC_Image::getMimeTypeForFile(OC::$SERVERROOT.'/tests/data/testimage.png'); + $this->assertEquals('image/png', $mimetype); + + $mimetype = \OC_Image::getMimeTypeForFile(OC::$SERVERROOT.'/tests/data/testimage.jpg'); + $this->assertEquals('image/jpeg', $mimetype); + + $mimetype = \OC_Image::getMimeTypeForFile(OC::$SERVERROOT.'/tests/data/testimage.gif'); + $this->assertEquals('image/gif', $mimetype); + + $mimetype = \OC_Image::getMimeTypeForFile(null); + $this->assertEquals('', $mimetype); + } + + public function testConstructDestruct() { + $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.png'); + $this->assertInstanceOf('\OC_Image', $img); + unset($img); + + $imgcreate = imagecreatefromjpeg(OC::$SERVERROOT.'/tests/data/testimage.jpg'); + $img = new \OC_Image($imgcreate); + $this->assertInstanceOf('\OC_Image', $img); + unset($img); + + $base64 = base64_encode(file_get_contents(OC::$SERVERROOT.'/tests/data/testimage.gif')); + $img = new \OC_Image($base64); + $this->assertInstanceOf('\OC_Image', $img); + unset($img); + + $img = new \OC_Image(null); + $this->assertInstanceOf('\OC_Image', $img); + unset($img); + } + + public function testValid() { + $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.png'); + $this->assertTrue($img->valid()); + + $text = base64_encode("Lorem ipsum dolor sir amet …"); + $img = new \OC_Image($text); + $this->assertFalse($img->valid()); + + $img = new \OC_Image(null); + $this->assertFalse($img->valid()); + } + + public function testMimeType() { + $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.png'); + $this->assertEquals('image/png', $img->mimeType()); + + $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.jpg'); + $this->assertEquals('image/jpeg', $img->mimeType()); + + $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.gif'); + $this->assertEquals('image/gif', $img->mimeType()); + + $img = new \OC_Image(null); + $this->assertEquals('', $img->mimeType()); + } + + public function testWidth() { + $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.png'); + $this->assertEquals(128, $img->width()); + + $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.jpg'); + $this->assertEquals(1680, $img->width()); + + $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.gif'); + $this->assertEquals(64, $img->width()); + + $img = new \OC_Image(null); + $this->assertEquals(-1, $img->width()); + } + + public function testHeight() { + $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.png'); + $this->assertEquals(128, $img->height()); + + $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.jpg'); + $this->assertEquals(1050, $img->height()); + + $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.gif'); + $this->assertEquals(64, $img->height()); + + $img = new \OC_Image(null); + $this->assertEquals(-1, $img->height()); + } + + public function testSave() { + $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.png'); + $img->resize(16); + $img->save(OC::$SERVERROOT.'/tests/data/testimage2.png'); + $this->assertEquals(file_get_contents(OC::$SERVERROOT.'/tests/data/testimage2.png'), $img->data()); + } + + public function testData() { + $this->markTestSkipped("Somehow data() doesn't equal file_get_contents's data"); + $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.png'); + $expected = file_get_contents(OC::$SERVERROOT.'/tests/data/testimage.png'); + $this->assertEquals($expected, $img->data()); + + $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.jpg'); + $expected = file_get_contents(OC::$SERVERROOT.'/tests/data/testimage.jpg'); + $this->assertEquals($expected, $img->data()); + + $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.gif'); + $expected = file_get_contents(OC::$SERVERROOT.'/tests/data/testimage.gif'); + $this->assertEquals($expected, $img->data()); + } + + public function testToString() { + $this->markTestSkipped("Somehow data() doesn't equal file_get_contents's data"); + $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.png'); + $expected = base64_encode(file_get_contents(OC::$SERVERROOT.'/tests/data/testimage.png')); + $this->assertEquals($expected, (string)$img); + + $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.jpg'); + $expected = base64_encode(file_get_contents(OC::$SERVERROOT.'/tests/data/testimage.jpg')); + $this->assertEquals($expected, (string)$img); + + $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.gif'); + $expected = base64_encode(file_get_contents(OC::$SERVERROOT.'/tests/data/testimage.gif')); + $this->assertEquals($expected, (string)$img); + } + + public function testResize() { + $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.png'); + $this->assertTrue($img->resize(32)); + $this->assertEquals(32, $img->width()); + $this->assertEquals(32, $img->height()); + + $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.jpg'); + $this->assertTrue($img->resize(840)); + $this->assertEquals(840, $img->width()); + $this->assertEquals(525, $img->height()); + + $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.gif'); + $this->assertTrue($img->resize(100)); + $this->assertEquals(100, $img->width()); + $this->assertEquals(100, $img->height()); + } + + public function testPreciseResize() { + $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.png'); + $this->assertTrue($img->preciseResize(128, 512)); + $this->assertEquals(128, $img->width()); + $this->assertEquals(512, $img->height()); + + $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.jpg'); + $this->assertTrue($img->preciseResize(64, 840)); + $this->assertEquals(64, $img->width()); + $this->assertEquals(840, $img->height()); + + $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.gif'); + $this->assertTrue($img->preciseResize(1000, 1337)); + $this->assertEquals(1000, $img->width()); + $this->assertEquals(1337, $img->height()); + } + + public function testCenterCrop() { + $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.png'); + $img->centerCrop(); + $this->assertEquals(128, $img->width()); + $this->assertEquals(128, $img->height()); + + $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.jpg'); + $img->centerCrop(); + $this->assertEquals(1050, $img->width()); + $this->assertEquals(1050, $img->height()); + + $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.gif'); + $img->centerCrop(512); + $this->assertEquals(512, $img->width()); + $this->assertEquals(512, $img->height()); + } + + public function testCrop() { + $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.png'); + $this->assertTrue($img->crop(0, 0, 50, 20)); + $this->assertEquals(50, $img->width()); + $this->assertEquals(20, $img->height()); + + $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.jpg'); + $this->assertTrue($img->crop(500, 700, 550, 300)); + $this->assertEquals(550, $img->width()); + $this->assertEquals(300, $img->height()); + + $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.gif'); + $this->assertTrue($img->crop(10, 10, 15, 15)); + $this->assertEquals(15, $img->width()); + $this->assertEquals(15, $img->height()); + } + + public function testFitIn() { + $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.png'); + $this->assertTrue($img->fitIn(200, 100)); + $this->assertEquals(100, $img->width()); + $this->assertEquals(100, $img->height()); + + $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.jpg'); + $this->assertTrue($img->fitIn(840, 840)); + $this->assertEquals(840, $img->width()); + $this->assertEquals(525, $img->height()); + + $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.gif'); + $this->assertTrue($img->fitIn(200, 250)); + $this->assertEquals(200, $img->width()); + $this->assertEquals(200, $img->height()); + } +} From 415e38fc505412b5c9f4b4905a1a9db3fedf110d Mon Sep 17 00:00:00 2001 From: kondou Date: Thu, 1 Aug 2013 17:18:02 +0200 Subject: [PATCH 40/64] Cover more cases Use file_get_contents() and base64_encode(file_get_contents()), to load from data and base64, to cover more cases --- tests/lib/image.php | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/tests/lib/image.php b/tests/lib/image.php index a0e9278b29..e9d614f566 100644 --- a/tests/lib/image.php +++ b/tests/lib/image.php @@ -58,10 +58,10 @@ class Test_Image extends PHPUnit_Framework_TestCase { $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.png'); $this->assertEquals('image/png', $img->mimeType()); - $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.jpg'); + $img = new \OC_Image(file_get_contents(OC::$SERVERROOT.'/tests/data/testimage.jpg')); $this->assertEquals('image/jpeg', $img->mimeType()); - $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.gif'); + $img = new \OC_Image(base64_encode(file_get_contents(OC::$SERVERROOT.'/tests/data/testimage.gif'))); $this->assertEquals('image/gif', $img->mimeType()); $img = new \OC_Image(null); @@ -72,10 +72,10 @@ class Test_Image extends PHPUnit_Framework_TestCase { $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.png'); $this->assertEquals(128, $img->width()); - $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.jpg'); + $img = new \OC_Image(file_get_contents(OC::$SERVERROOT.'/tests/data/testimage.jpg')); $this->assertEquals(1680, $img->width()); - $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.gif'); + $img = new \OC_Image(base64_encode(file_get_contents(OC::$SERVERROOT.'/tests/data/testimage.gif'))); $this->assertEquals(64, $img->width()); $img = new \OC_Image(null); @@ -86,10 +86,10 @@ class Test_Image extends PHPUnit_Framework_TestCase { $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.png'); $this->assertEquals(128, $img->height()); - $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.jpg'); + $img = new \OC_Image(file_get_contents(OC::$SERVERROOT.'/tests/data/testimage.jpg')); $this->assertEquals(1050, $img->height()); - $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.gif'); + $img = new \OC_Image(base64_encode(file_get_contents(OC::$SERVERROOT.'/tests/data/testimage.gif'))); $this->assertEquals(64, $img->height()); $img = new \OC_Image(null); @@ -124,7 +124,7 @@ class Test_Image extends PHPUnit_Framework_TestCase { $expected = base64_encode(file_get_contents(OC::$SERVERROOT.'/tests/data/testimage.png')); $this->assertEquals($expected, (string)$img); - $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.jpg'); + $img = new \OC_Image(file_get_contents(OC::$SERVERROOT.'/tests/data/testimage.jpg')); $expected = base64_encode(file_get_contents(OC::$SERVERROOT.'/tests/data/testimage.jpg')); $this->assertEquals($expected, (string)$img); @@ -139,12 +139,12 @@ class Test_Image extends PHPUnit_Framework_TestCase { $this->assertEquals(32, $img->width()); $this->assertEquals(32, $img->height()); - $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.jpg'); + $img = new \OC_Image(file_get_contents(OC::$SERVERROOT.'/tests/data/testimage.jpg')); $this->assertTrue($img->resize(840)); $this->assertEquals(840, $img->width()); $this->assertEquals(525, $img->height()); - $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.gif'); + $img = new \OC_Image(base64_encode(file_get_contents(OC::$SERVERROOT.'/tests/data/testimage.gif'))); $this->assertTrue($img->resize(100)); $this->assertEquals(100, $img->width()); $this->assertEquals(100, $img->height()); @@ -156,12 +156,12 @@ class Test_Image extends PHPUnit_Framework_TestCase { $this->assertEquals(128, $img->width()); $this->assertEquals(512, $img->height()); - $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.jpg'); + $img = new \OC_Image(file_get_contents(OC::$SERVERROOT.'/tests/data/testimage.jpg')); $this->assertTrue($img->preciseResize(64, 840)); $this->assertEquals(64, $img->width()); $this->assertEquals(840, $img->height()); - $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.gif'); + $img = new \OC_Image(base64_encode(file_get_contents(OC::$SERVERROOT.'/tests/data/testimage.gif'))); $this->assertTrue($img->preciseResize(1000, 1337)); $this->assertEquals(1000, $img->width()); $this->assertEquals(1337, $img->height()); @@ -173,12 +173,12 @@ class Test_Image extends PHPUnit_Framework_TestCase { $this->assertEquals(128, $img->width()); $this->assertEquals(128, $img->height()); - $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.jpg'); + $img = new \OC_Image(file_get_contents(OC::$SERVERROOT.'/tests/data/testimage.jpg')); $img->centerCrop(); $this->assertEquals(1050, $img->width()); $this->assertEquals(1050, $img->height()); - $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.gif'); + $img = new \OC_Image(base64_encode(file_get_contents(OC::$SERVERROOT.'/tests/data/testimage.gif'))); $img->centerCrop(512); $this->assertEquals(512, $img->width()); $this->assertEquals(512, $img->height()); @@ -190,12 +190,12 @@ class Test_Image extends PHPUnit_Framework_TestCase { $this->assertEquals(50, $img->width()); $this->assertEquals(20, $img->height()); - $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.jpg'); + $img = new \OC_Image(file_get_contents(OC::$SERVERROOT.'/tests/data/testimage.jpg')); $this->assertTrue($img->crop(500, 700, 550, 300)); $this->assertEquals(550, $img->width()); $this->assertEquals(300, $img->height()); - $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.gif'); + $img = new \OC_Image(base64_encode(file_get_contents(OC::$SERVERROOT.'/tests/data/testimage.gif'))); $this->assertTrue($img->crop(10, 10, 15, 15)); $this->assertEquals(15, $img->width()); $this->assertEquals(15, $img->height()); @@ -207,12 +207,12 @@ class Test_Image extends PHPUnit_Framework_TestCase { $this->assertEquals(100, $img->width()); $this->assertEquals(100, $img->height()); - $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.jpg'); + $img = new \OC_Image(file_get_contents(OC::$SERVERROOT.'/tests/data/testimage.jpg')); $this->assertTrue($img->fitIn(840, 840)); $this->assertEquals(840, $img->width()); $this->assertEquals(525, $img->height()); - $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.gif'); + $img = new \OC_Image(base64_encode(file_get_contents(OC::$SERVERROOT.'/tests/data/testimage.gif'))); $this->assertTrue($img->fitIn(200, 250)); $this->assertEquals(200, $img->width()); $this->assertEquals(200, $img->height()); From 20b688d4be7651b2e71fe4256101417d882fb3b1 Mon Sep 17 00:00:00 2001 From: kondou Date: Thu, 1 Aug 2013 20:16:50 +0200 Subject: [PATCH 41/64] Optimize image and skip mimetype test --- tests/data/testimage.png | Bin 5391 -> 3670 bytes tests/lib/image.php | 1 + 2 files changed, 1 insertion(+) diff --git a/tests/data/testimage.png b/tests/data/testimage.png index 6c4ba94911d9453ac22a4077d5b4cbe14fbaad2d..257598f04f5e8fd0dc795136c16fde2b6ec0c17e 100644 GIT binary patch delta 3653 zcmV-L4!ZG=D%Kp3BoYa5NLh0L01eOp01eOq5NtgMks%a+4faVyK~#9!?OkVg6h{^v zK6Cg3I%k7-SDS4duno5HVoZ(#ER%CGIf!I}2oi{#lfeWVL^L@^kuxk&AaV{OBSePU zzD1X|8BM6}uAbEIp7TEFsJo};)$OWRFO7#W=CLBbd%sk?CP|v4Ym%W!mL@rxFcL>4 zN7r?Ru6xXXLA=#@G&|{WnxtuxNfQxqlBv&4oN@wa4=togswTOl=!lnGeXa^AA%OOv zL`||uu~8?OvqZ}T&~7fEGl`TL-GVtRV2S|R4Fxq>O3I5F!CV%UB7pwp)8xk{2@1#% zfR_Cj-VOp1KsWeEQL!zFJ_(>7^~lmNAX`|F(*4 z+_Ia09XX!G&Rx91_8mILR<7I1ru?#y)oIb4z4uW$B0wyCnI`S}u$_DV%U->H&1CT4 zVGf(WWG(x;VnZT8G)qFg_WbR(ikGimv03w1u#dm_o(K?aGH}Ec_WJc3rUJL`++$Vi zwj%;WgZ%lE@@&zHjZ8J3KYzhG{Fp`rh;;dXZTWiU6tJQ+Y}1Pf5UDa?*ktB3a&mIn zH&vSu0YWMNELN4(Y}$pj?~%r;)M?B9^+iIyYbw@iEp6r7#p$yb*?S+BB?34pzyF{# zOCCIdUAT0Oy?OH{-%`9{?G{!p@rS(Ycke&KLWv(!MiT*?lA>kn@^gDI;2K=txNUEL z7HZ&R@b}Lv69Js?)@9$mD>Vr{Q^xRnw(UB=!htTy!-)W@W%-&6X^Z@$5{cYCc=_^W zSO~B_V;2!Xr8Mu@S6cZ8k7V+D+H@Vr!iA^Lp0U4vT9F8#N|vtPEUo;-D>w3ceww+E zg%db^U>xJ8&S5j>E@MN+OkXcjNcWS+rV>i}!IZ_wa4qd4SDZyoN1Ux{j|d*p{9=^*^pwT~hcs&YZg>{aG8f z>}G%atP&BxTa3;hxOJhZmYoN%Qq`LIRapO_lPpd6)oVAo9RXtv+mDQY0`BNv<}Kq+ zAc1NPI`IDoB8e|-+Pa7Rv2YoGB7jkTNE*PMKx3z*v!Z3{{NFw(T7^}v-Ig_NpUhpb zL&r|%#K8aRw(KsgbQopR)0gl>5#ut9&#K;_BWv9?l@n_6j0J4cjQMh5WEp09}i9*Om@bOeeA`H{EnV~M>&t#pFS?f zCq^c-2l;*=l9<4R`W@KB>GOPA@BVP=%mq$PtQtlFeNnC+&lj+QmYw<&0lZHGI8z6+ z2Y?2xdh&a2W&3v>!#c+ng6sZLqyouv%dwhk|vS=_t-kiUVD%U5r_le8h6FU2c1U?)$XclIs#zX zT(^0r?SKr7Fc@}l#*|EG%Abu;F^s=Z!N|dPFIB(ex$D8jBy!kjTVob}{Y?fNdA}M<4 zaeC=LmU&v4vXLKui06J;zCO1BA_X|&!BGVN19BUUK;Y~6$+NtMVbI8_tYPb(5#b_<}9`Kocj+Rab2PYGU5mT%N_<9mN0LC^|%J{b`^l74+9Ht z7VLmX2i(wqSjH0@cUJN|G`BEDD8otsc;2vI1p+#A;975M*eVbu#PiV6BU&I5MO6f& z0EEt+DqEK(0G3~wTt1x7WwL%`f$as)vl2rH7hup~%)icGuI!o6r*M6TlmIxcm`US? z@$>I56O?^%!Tf7CvZICo$S1&scQFZnNB}HjW_|d`x=}@d+$T?Y^bCIg zXoH;$qCh~dq)JCpKms6L$}DO$d>fwiWgwcx@snrxvyc!HZ9qC2#%?u(C=j~$ALTp& znsw-FD>#B>&@NC6if5rXGuqIiQ$Id-B$B8Gd|{+NGM|+b05NO3K-5b`K(m-xD8HG z!CKqoBY;ZJ6+)v(Y=|#XF<*Z_gp)XkS4&@>$j8+68k!y3lfOt3K%$l{ssYpWzu3r!m$!IL9{@02(eN_XvGHbRWfG; z=G0$ZVm<;KIDA6+Kv4{V00uIM&>pT_VoUy6sN0tT8aLx!kxLiJK*}1nEaU|`4bebr zoVMZwgQ%|zN&uPMcB@A^VPtS+{!+9?eUdgvBZg^bLTKi26d6MyhI{a1|>R!oZB`oRZe z$YP28Po+i?l_896N%Rbm?SX6u@R4BYM|zlbSjj)QiTg#e3KaW$dAz-V^p!XPmksYHV5j7alB+A&_QV24at$rUFqpx)J=B68F8dnZ~KYJrx z8H5j3(Ubv15?wyff6pw?Uamxy#(o=6cJDVbU_U{tK$S0yuR!J7ux-p%0|x^lqi`%4 z6L!s{>*J*m9Q5$5KAOt0%+%E>>vW~lCBYK`tbrwg;UeMu20p^6FqDJ0OVz&W~UoJxp5q!j;@X z;_rDCYPMooXDPM^J)FQc+RVJpJW@SR)j=K~`Zd$rl7l}N`& zJtT-ELv&OjV=i!i#Digo&qPDZq5<@+v_S+CI&db3MLc}`OdbTmQi(!FGp$j~vZ#n)(w{+zB%dBqn)3GE(01_eq2@!yV2tY!A1Rx;-kPrb#hyWx+01_eq z2@!yV2tYyvAdx3P4k^O5k^=%{ks@3xSs*|LDZ;gq0Rp6xB3vu!AV3l+!nKkF0>qOd zTr2S&#`sAfla%2)$;8|X0;G{bTqkKp0>o*OOG^scDFS$rAzlw9r|U^5C0UeS7Me6JUDp}9?lA}PR_F15 X7YMMt;_S>R00000NkvXXu0mjfQ!k!< literal 5391 zcmZu#Wmr_t+g_F~Q5vKL2?=TG5UE9wTvA$6$wiv|sl<{3F5R$n_fm_3w77IBAxft- zOT5Q#{}1nVt~qmEb7s!WIdebveb0kC_0+HalbZ z>TA#N$;aTe-NFWo>t_p8wfm!Taz{(zPNO4PQ10YGKJt`P-RW+dJRzIQX$S+JaT1;y z=A@0-{{t?NFctM!--W=&W#56U75o&wrfO{@0EQcOpL$x?IHSnA#}~`))H0rfvGnt8 z2FaxEc+-)%z)rpvkl=2%I-VRJ0^4jHO<<$jS~F88MhbM-BB&(nqMonUUL_KwIy*_? z7X(3qcv+V}23InaUS@$G0<(4s>Vy7T-)Q9@RiH>Bu76TT#k6`>VK1hVIRAEqU0~kL`9k|g?>LnYF5T8DL5bm3)@~e{&I!zjxU>!)tN$_vZA1gMFTj$? z&31pKyhtW>bO`ZCz;_8=Ob~MHtW=;kqQj+1=l->DaF8e~--W|DKzJ%3@H-HJEA7_Q zA!Mos%24vs%6Vak{=s`9O$z3`ii+n3-U5fDgKGVKJ{JjcKU%NvmKm8B5^~hnZa=CJ zw(cu~GFU3I>Xw|ImLechZ(KH+vM|TQa%VSRjt=-#K*mVFDt9y4Fj?05M!|`7l#C3E z%;9~DE+u7EyLt|Id9PElMuWqmM6aDbdRSXW+jjm3^2ZV7-K_4R_~K$B3(U(e;};Xi z@e2^q<%!o)3t|NyM*=S0skFWb*Ot{bG<^SUn|`8QgI5KFL~hb(h}nHi-eP_xXxA?d zxhO@Tmhp|aVZN~1hNeEv0zGGcTF(5$BFupQIx~)5DoeJ}icq!&IoEdD)6DQ<+O#Ae%@Ttb+lv3>Qcqhcdb!MD8OWE;IOX=%# zS5r0L|ITjnOHrusCgZ2U*Y8cQE{uF(u&5Y4ZedPD-p9vRY{ZF~k7x+;`23ou$*k|+ zPbGo(=G_p#F1=bALf7D%#0f42i172o4bOOZ{SL!;9aZN(CZLV1u9k`u`bNv39GnB9 zpgUkNLga^rTvT#2VS_GDP8dZ85cW7}AOG)x^RtpP1P6+)Gvz0vmKg5w@uT`|R~Oe% zY(%+LJ3XkTp+35EG~dTUmupC0`Z*Vp>SeaD?zWFXmKC4PApFvqt@c~&e!2o#J5;V$c-`L znc&sBgZYBwYOZx#;>A`I2fPJ+_BhYxCO0`V=B&wrB z>4cT|c_Iu6gjWd?QO{Vw?;E-qSxhS9{vQ9MrCu;(7rh=`qSl}}IvHfx~tN$?wm z?)7PWldB-&?D@GPEexBQTHknH&dair_nkq$UtV8Wrc^E(@Dm=WsD5^}6XmL7EHjG! zFEk_z=UWJ1rw!)*KBBKZBRKIeX<9*}z#7BW5_*f8^#&qyN69xysGaKLp%_h_soMP@ zi%S{5{9OAP)kPeRB$#=K(1TsrAGf^CZp6VsE^gnUxBJx4uyAteqT#~r$r(;k1?2Ia zXibMTW>_hLVVer1lW|SA2w-OYmp%p0v+qQ27EkQc7o@7p(U|B;G3 z67?bt#w=yy?>T+cMm0L0-dpl8*L@l@o?V^*(fr~yFi9PmM|LZ^#UyEFJSNR5S;Vfi zXQ}bMdY3MGuQMPyZsyPZj=|Bsx}g5Ii$U4QuLa0Vvrb#-va-!srnQkAp+`*1ldP|I z=l@i@v0AaRu*!<HA zl!i64yQuEHS=WJhc;tto-$t^>OcrIQ3`S{$*slpc z=bH}5Ngi@b6ucsQr^a<}={g9Z3c>8#?~Ra}rZF9Dqal`u=$--oqr(%bU+jg%UI&pL z*a{0Tgzn;^{3Ra;V=DU5z))Zz*6Gp0kX^VboX5wCQSNH>FD3idmV}GL=%6@*Ou!n~ zAis+ai#TJ8W9|cb=v6^+Mh5d}2nz{i!rFXX5O+!OM2pipwNh&4qt%1M2FZT#6W=$( z?x}U!{KI4U_MeTa-TJ31&Bbu0I>(9stsjC( zD{lNdnuSr-bS6kyd$@DsCj)E(dk0=qqr@EUrz=r>c2CljMP18l?FYk{;wZ87*#7^% z1Hja_Iq(7JDr$TnDPy6T~#um(JWXZP10bN>e19N(KNAIyQ85Vicp4>05BurC)#f}eMuC?DLeM}o^U15i| zjS_EQi+S*~0zF5!1@QYu*33+~4a#T}HPu>lUwis)M4`~6^so9PB&1cK(9GD>^xm($ z_h?ePLomGl0ZYsIVH}PjSsti*(5qtg9|!WKpX!s63^z9JmBPgltYZiy=T+q4T4}&JHd^9}@A;H=~Frc;g-ZwvH=Bd1R+ChOO?%$*?~P~_-qCM7#iCyQ)e#nIk-bs$#3*!Fhs(P=Fo?V7&vp0P{`zdwviy6okBkz_17XtT z4o1HR-RpRS(xs~=i)Ti9qZ*GX#9pR^t@a$%Y66BLEt64y>anyWmyG1|O}1bQ z+*&OEdRw$Acw?#ke(rNNtIG?F)?)SCRY>R`P8psm8&{*Lftm(^jZb8 z!U=7r2EY}4^p3(W?6B~ccUVbcqSj8YHU5-a{*;vk8H)wjhh`fG6xW6AzZqhHi-Cm; zBW3YDuO`F2k%iEfI|nm$mE~%|gd};-juM8f)bpD_j#-%Pg$5eH5Qud;) zX#`q>Uf%6#z><97veVSnT7B;4hin2}I5G1G(89&CR#m}|MaB5S^0&4G)5OzJ+gyfNyFEhs?5BQyXv7#IjM@=Lfvj;%>OpS?V> zD;j6H0>3*9Vj0QCC6LjtY4d=9fI%7UO^o3mcKBvjD88KwS|$*G7$@la4Tw~o+?J&C z4-WtEJkTFMJ2!9R$X7Kh6akE{a{J=VjAdx0%naqElbwQ%

(Mz?qx+kxRuJ{4+7A~qo?Ny+q17FuLw3I^Q2_npcTYI2j953{gR|aG z`P;LG+>kDXIxzJRpQ>0rk0VbFCcx|H9}|3&tYZ%mziEKcwYAMhlPb^U59i|t9_?m? zJ2*LsPr+nL6hv0re!IPNa;&pC3$_18quLJLp!I~fuo`khJnvCsCK{SR8`!K`8skjPI=4A+4yEImWgcd zfJvc6TSxJ?1aS5d4CIn*ha@d4vA}X#z*E>V7 zlaqNtsm)|o)|0PtR22?zNG0QxqiWdjtKVyD|4uu@1_YuK5|d0)wIU+o)^(0&|7kyh zQ!bn)W($3V^_`!^qldoS4jL8|tZs~V(aDmry>EF`@Qs|5LzF+fo$A`yV6!&L+1tl) zR)$fn*G98mlouI?CcLMm0d;4@wL^5GP0g95 zM=ZL6Y42LDi2>)mc*7cD0ABAGiWS%`LAU1Z$abo$&FM1AVTMtoi)+B8F8`i`m}X=? z4(){-giN1#)&2tevz*6<4@>hm{iQEf|3_+1Hq6lDMegS9B!>2+Kt$V2U0SjCQad<7 z%o@FE_Aogm`Qa|%StfT9Vpkdn-Coed%>6obENdvS?(~9s;eq`910PLon?Ru@ZxeJK z96MLkWg^l51|Va}2#M4c^O_zfJ0S%`mP!0Ir-oi282h8RZm9DHkY*j2m5S>;d6)U) z!bz$@`Hj#BVEqtY5L~D|%w(&^J>{zRU>vqEl%+Zaxb0Ev%fjV-H|aew=O0RR=GO-5 z2ae0FGC$C_Q2W4_SNIGwbOI34`%J9;2Z$pQGE$Vrj9+W8Y{z6u&ugEt9+WD--5yS1 zrON{pe}{GWdYRzC(~wdBmn#AOv;fFfHn4R@xq7kkgy@GT&bJcGOHC z@h!X5&Ghy0dT-2{)uZMbo898oWpX^J@8=F=#4R=Wt)A_hrdX!O0zYr%miq&sD1bHx zdj##zzonh|YE6@Sa6>8SI7DS*$8CF_*LCc(qrIK-Jce?smzVnphrGWti-UYdfBu3; z=GNRAf&kd1026C8V6cBid8JVK zjnV~?o|hPSmbfA8T6xRihAWSdA=xVdv!b9+8M= zdv8phJm$;MFBn&W-SBJOObLnp$=!2(AyyFUqGh!{OCG1=;6QOO}?ZtAhV zYNl(PZ%=t5VP6DM8Y9ySy&7RH{xaapX>!v>IwKQg_IC|e^haF}&;9XuG{A%ecqBmf z=Ko3G{O^OjOA?N!&JoOz2*xP-`TRa=Arc_f!vW6_h6kz2O`7f@@Tl@xT?N^G0m(2M z4rS*UW({Q^$>bTzviu3lCK+#d;RS;4Di>oPN=E1ebM@oQ2U-1N~De(m0~>=3zGk0ZRr+gun#bJdbr4@03T*5l0N-8t)b)vAH_9>`Rc% zl4^cvuJm5K$-*RDkeR``Se`yYCw;Kd|HEsz2sPn>b*a)XdrWuJdJ;x}zJ)he8xaij zU+!M0usyqrJVE>YZ;}wYL5@sPS!9d9no;O}+Eog5y`h@!OOf?pW4Z(6GeKImarkTestSkipped("When loading an image from anything, but a file, the imagetype is always png"); $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.png'); $this->assertEquals('image/png', $img->mimeType()); From 1b567b2ad1835d0c724309e68d3fad5dcc1b8bda Mon Sep 17 00:00:00 2001 From: kondou Date: Thu, 1 Aug 2013 21:01:26 +0200 Subject: [PATCH 42/64] Don't throw a fatal, if is_file() parameter isn't a 'valid path', but only a data/base64-string. Related to #4283 --- lib/image.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/image.php b/lib/image.php index c1b187608a..4bc38e20e5 100644 --- a/lib/image.php +++ b/lib/image.php @@ -392,7 +392,7 @@ class OC_Image { */ public function loadFromFile($imagepath=false) { // exif_imagetype throws "read error!" if file is less than 12 byte - if(!is_file($imagepath) || !file_exists($imagepath) || filesize($imagepath) < 12 || !is_readable($imagepath)) { + if(!@is_file($imagepath) || !file_exists($imagepath) || filesize($imagepath) < 12 || !is_readable($imagepath)) { // Debug output disabled because this method is tried before loadFromBase64? OC_Log::write('core', 'OC_Image->loadFromFile, couldn\'t load: '.$imagepath, OC_Log::DEBUG); return false; From 3500c39567617655710a5790485558e3731dae50 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Thu, 1 Aug 2013 22:49:43 +0200 Subject: [PATCH 43/64] adding new cli script to rescan files --- scanFiles.php | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 scanFiles.php diff --git a/scanFiles.php b/scanFiles.php new file mode 100644 index 0000000000..2144fce5d5 --- /dev/null +++ b/scanFiles.php @@ -0,0 +1,37 @@ +" . PHP_EOL; + echo " will rescan all files of the given user" . PHP_EOL; + echo " php scanFiles.php --all" . PHP_EOL; + echo " will rescan all files of all known users" . PHP_EOL; + return; +} + +function scanFiles($user) { + $scanner = new \OC\Files\Utils\Scanner($user); + $scanner->listen('\OC\Files\Utils\Scanner', 'scanFile', function($path) { + echo "Scanning $path" . PHP_EOL; + }); + $scanner->listen('\OC\Files\Utils\Scanner', 'scanFolder', function($path) { + echo "Scanning $path" . PHP_EOL; + }); + $scanner->scan(''); +} + +if ($argv[1] === '--all') { + $users = OC_User::getUsers(); +} else { + $users = array($argv[1]); +} + +foreach ($users as $user) { + scanFiles($user); +} From 16726ab79380067a6083bc42d6c51e2214ec54a3 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Fri, 2 Aug 2013 02:00:45 -0400 Subject: [PATCH 44/64] [tx-robot] updated from transifex --- apps/files/l10n/cs_CZ.php | 24 +++++++------- apps/files_sharing/l10n/cs_CZ.php | 6 ++++ apps/files_sharing/l10n/ru.php | 6 ++++ apps/files_trashbin/l10n/nl.php | 1 + apps/files_trashbin/l10n/ru.php | 1 + core/l10n/cs_CZ.php | 20 ++++++------ core/l10n/ru.php | 2 ++ l10n/af_ZA/files_encryption.po | 8 +++-- l10n/ar/files.po | 4 +-- l10n/ar/files_encryption.po | 8 +++-- l10n/be/files_encryption.po | 8 +++-- l10n/bg_BG/files.po | 4 +-- l10n/bg_BG/files_encryption.po | 8 +++-- l10n/bn_BD/files.po | 4 +-- l10n/bn_BD/files_encryption.po | 8 +++-- l10n/bs/files.po | 38 +++++++++++----------- l10n/bs/files_encryption.po | 8 +++-- l10n/ca/files.po | 4 +-- l10n/ca/files_encryption.po | 10 ++++-- l10n/cs_CZ/core.po | 27 +++++++-------- l10n/cs_CZ/files.po | 31 +++++++++--------- l10n/cs_CZ/files_encryption.po | 10 ++++-- l10n/cs_CZ/files_sharing.po | 18 +++++----- l10n/cs_CZ/files_trashbin.po | 4 +-- l10n/cs_CZ/lib.po | 4 +-- l10n/cs_CZ/settings.po | 47 ++++++++++++++------------- l10n/cs_CZ/user_webdavauth.po | 6 ++-- l10n/cy_GB/files.po | 4 +-- l10n/cy_GB/files_encryption.po | 8 +++-- l10n/da/files.po | 4 +-- l10n/da/files_encryption.po | 10 ++++-- l10n/de/files.po | 4 +-- l10n/de/files_encryption.po | 10 ++++-- l10n/de_DE/files.po | 4 +-- l10n/de_DE/files_encryption.po | 10 ++++-- l10n/el/files.po | 4 +-- l10n/el/files_encryption.po | 8 +++-- l10n/en@pirate/files_encryption.po | 8 +++-- l10n/eo/files.po | 4 +-- l10n/eo/files_encryption.po | 8 +++-- l10n/es/files.po | 4 +-- l10n/es/files_encryption.po | 10 ++++-- l10n/es_AR/files.po | 4 +-- l10n/es_AR/files_encryption.po | 10 ++++-- l10n/et_EE/files.po | 4 +-- l10n/et_EE/files_encryption.po | 10 ++++-- l10n/eu/files.po | 4 +-- l10n/eu/files_encryption.po | 10 ++++-- l10n/fa/files.po | 4 +-- l10n/fa/files_encryption.po | 10 ++++-- l10n/fi_FI/files.po | 4 +-- l10n/fi_FI/files_encryption.po | 8 +++-- l10n/fr/files.po | 4 +-- l10n/fr/files_encryption.po | 10 ++++-- l10n/gl/files.po | 4 +-- l10n/gl/files_encryption.po | 10 ++++-- l10n/he/files.po | 4 +-- l10n/he/files_encryption.po | 8 +++-- l10n/hi/files_encryption.po | 8 +++-- l10n/hr/files.po | 4 +-- l10n/hr/files_encryption.po | 8 +++-- l10n/hu_HU/files.po | 4 +-- l10n/hu_HU/files_encryption.po | 8 +++-- l10n/hy/files_encryption.po | 8 +++-- l10n/ia/files.po | 4 +-- l10n/ia/files_encryption.po | 8 +++-- l10n/id/files.po | 4 +-- l10n/id/files_encryption.po | 8 +++-- l10n/is/files.po | 4 +-- l10n/is/files_encryption.po | 8 +++-- l10n/it/files.po | 4 +-- l10n/it/files_encryption.po | 10 ++++-- l10n/ja_JP/files.po | 4 +-- l10n/ja_JP/files_encryption.po | 10 ++++-- l10n/ka/files_encryption.po | 8 +++-- l10n/ka_GE/files.po | 4 +-- l10n/ka_GE/files_encryption.po | 8 +++-- l10n/kn/files_encryption.po | 8 +++-- l10n/ko/files.po | 4 +-- l10n/ko/files_encryption.po | 10 ++++-- l10n/ku_IQ/files_encryption.po | 8 +++-- l10n/lb/files.po | 4 +-- l10n/lb/files_encryption.po | 8 +++-- l10n/lt_LT/files.po | 4 +-- l10n/lt_LT/files_encryption.po | 8 +++-- l10n/lv/files.po | 4 +-- l10n/lv/files_encryption.po | 8 +++-- l10n/mk/files.po | 4 +-- l10n/mk/files_encryption.po | 8 +++-- l10n/ml_IN/files_encryption.po | 8 +++-- l10n/ms_MY/files.po | 4 +-- l10n/ms_MY/files_encryption.po | 8 +++-- l10n/my_MM/files_encryption.po | 8 +++-- l10n/nb_NO/files.po | 4 +-- l10n/nb_NO/files_encryption.po | 8 +++-- l10n/ne/files_encryption.po | 8 +++-- l10n/nl/files.po | 4 +-- l10n/nl/files_encryption.po | 10 ++++-- l10n/nl/files_trashbin.po | 9 ++--- l10n/nn_NO/files.po | 4 +-- l10n/nn_NO/files_encryption.po | 8 +++-- l10n/oc/files.po | 4 +-- l10n/oc/files_encryption.po | 8 +++-- l10n/pl/files.po | 4 +-- l10n/pl/files_encryption.po | 8 +++-- l10n/pt_BR/files.po | 4 +-- l10n/pt_BR/files_encryption.po | 10 ++++-- l10n/pt_PT/files.po | 4 +-- l10n/pt_PT/files_encryption.po | 10 ++++-- l10n/ro/files.po | 4 +-- l10n/ro/files_encryption.po | 8 +++-- l10n/ru/core.po | 11 ++++--- l10n/ru/files.po | 4 +-- l10n/ru/files_encryption.po | 10 ++++-- l10n/ru/files_sharing.po | 19 ++++++----- l10n/ru/files_trashbin.po | 9 ++--- l10n/si_LK/files.po | 4 +-- l10n/si_LK/files_encryption.po | 8 +++-- l10n/sk/files_encryption.po | 8 +++-- l10n/sk_SK/files.po | 4 +-- l10n/sk_SK/files_encryption.po | 8 +++-- l10n/sl/files.po | 4 +-- l10n/sl/files_encryption.po | 10 ++++-- l10n/sq/files.po | 4 +-- l10n/sq/files_encryption.po | 8 +++-- l10n/sr/files.po | 4 +-- l10n/sr/files_encryption.po | 8 +++-- l10n/sr@latin/files.po | 4 +-- l10n/sr@latin/files_encryption.po | 8 +++-- l10n/sv/files.po | 4 +-- l10n/sv/files_encryption.po | 10 ++++-- l10n/sw_KE/files_encryption.po | 8 +++-- l10n/ta_LK/files.po | 4 +-- l10n/ta_LK/files_encryption.po | 8 +++-- l10n/te/files.po | 38 +++++++++++----------- l10n/te/files_encryption.po | 8 +++-- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 6 +++- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/th_TH/files.po | 4 +-- l10n/th_TH/files_encryption.po | 8 +++-- l10n/tr/files.po | 4 +-- l10n/tr/files_encryption.po | 8 +++-- l10n/ug/files.po | 4 +-- l10n/ug/files_encryption.po | 8 +++-- l10n/uk/files.po | 4 +-- l10n/uk/files_encryption.po | 8 +++-- l10n/ur_PK/files_encryption.po | 8 +++-- l10n/vi/files.po | 4 +-- l10n/vi/files_encryption.po | 8 +++-- l10n/zh_CN.GB2312/files.po | 4 +-- l10n/zh_CN.GB2312/files_encryption.po | 8 +++-- l10n/zh_CN/files.po | 4 +-- l10n/zh_CN/files_encryption.po | 8 +++-- l10n/zh_HK/files_encryption.po | 8 +++-- l10n/zh_TW/files.po | 4 +-- l10n/zh_TW/files_encryption.po | 10 ++++-- settings/l10n/cs_CZ.php | 40 +++++++++++------------ 166 files changed, 801 insertions(+), 470 deletions(-) diff --git a/apps/files/l10n/cs_CZ.php b/apps/files/l10n/cs_CZ.php index 3f626d9564..e87872a4a0 100644 --- a/apps/files/l10n/cs_CZ.php +++ b/apps/files/l10n/cs_CZ.php @@ -1,12 +1,12 @@ "Nelze přesunout %s - existuje soubor se stejným názvem", +"Could not move %s - File with this name already exists" => "Nelze přesunout %s - již existuje soubor se stejným názvem", "Could not move %s" => "Nelze přesunout %s", "Unable to set upload directory." => "Nelze nastavit adresář pro nahrané soubory.", "Invalid Token" => "Neplatný token", -"No file was uploaded. Unknown error" => "Soubor nebyl odeslán. Neznámá chyba", +"No file was uploaded. Unknown error" => "Žádný soubor nebyl odeslán. Neznámá chyba", "There is no error, the file uploaded with success" => "Soubor byl odeslán úspěšně", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Odesílaný soubor přesahuje velikost upload_max_filesize povolenou v php.ini:", -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Odeslaný soubor přesáhl svou velikostí parametr MAX_FILE_SIZE specifikovaný v formuláři HTML", +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Odeslaný soubor přesáhl svou velikostí parametr MAX_FILE_SIZE specifikovaný ve formuláři HTML", "The uploaded file was only partially uploaded" => "Soubor byl odeslán pouze částečně", "No file was uploaded" => "Žádný soubor nebyl odeslán", "Missing a temporary folder" => "Chybí adresář pro dočasné soubory", @@ -14,11 +14,11 @@ "Not enough storage available" => "Nedostatek dostupného úložného prostoru", "Invalid directory." => "Neplatný adresář", "Files" => "Soubory", -"Unable to upload your file as it is a directory or has 0 bytes" => "Nelze odeslat Váš soubor, protože je to adresář, nebo je jeho velikost 0 bajtů", -"Not enough space available" => "Nedostatek dostupného místa", +"Unable to upload your file as it is a directory or has 0 bytes" => "Nelze odeslat Váš soubor, protože je to adresář nebo jeho velikost je 0 bajtů", +"Not enough space available" => "Nedostatek volného místa", "Upload cancelled." => "Odesílání zrušeno.", -"File upload is in progress. Leaving the page now will cancel the upload." => "Probíhá odesílání souboru. Opuštění stránky vyústí ve zrušení nahrávání.", -"URL cannot be empty." => "URL nemůže být prázdná", +"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 být prázdná.", "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" => "Název složky nelze použít. Použití názvu 'Shared' je ownCloudem rezervováno", "Error" => "Chyba", "Share" => "Sdílet", @@ -31,7 +31,7 @@ "suggest name" => "navrhnout název", "cancel" => "zrušit", "replaced {new_name} with {old_name}" => "nahrazeno {new_name} s {old_name}", -"undo" => "zpět", +"undo" => "vrátit zpět", "perform delete operation" => "provést smazání", "1 file uploading" => "odesílá se 1 soubor", "files uploading" => "soubory se odesílají", @@ -40,15 +40,15 @@ "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Neplatný název, znaky '\\', '/', '<', '>', ':', '\"', '|', '?' a '*' nejsou povoleny.", "Your storage is full, files can not be updated or synced anymore!" => "Vaše úložiště je plné, nelze aktualizovat ani synchronizovat soubory.", "Your storage is almost full ({usedSpacePercent}%)" => "Vaše úložiště je téměř plné ({usedSpacePercent}%)", -"Your download is being prepared. This might take some time if the files are big." => "Vaše soubory ke stažení se připravují. Pokud jsou velké může to chvíli trvat.", -"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Neplatný název složky. Použití 'Shared' je rezervováno pro vnitřní potřeby Owncloud", +"Your download is being prepared. This might take some time if the files are big." => "Vaše soubory ke stažení se připravují. Pokud jsou velké, může to chvíli trvat.", +"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Neplatný název složky. Pojmenování 'Shared' je rezervováno pro vnitřní potřeby ownCloud", "Name" => "Název", "Size" => "Velikost", "Modified" => "Upraveno", "1 folder" => "1 složka", -"{count} folders" => "{count} složky", +"{count} folders" => "{count} složek", "1 file" => "1 soubor", -"{count} files" => "{count} soubory", +"{count} files" => "{count} souborů", "%s could not be renamed" => "%s nemůže být přejmenován", "Upload" => "Odeslat", "File handling" => "Zacházení se soubory", diff --git a/apps/files_sharing/l10n/cs_CZ.php b/apps/files_sharing/l10n/cs_CZ.php index cf041726ab..3eebb39e7e 100644 --- a/apps/files_sharing/l10n/cs_CZ.php +++ b/apps/files_sharing/l10n/cs_CZ.php @@ -2,6 +2,12 @@ "The password is wrong. Try again." => "Heslo není správné. Zkuste to znovu.", "Password" => "Heslo", "Submit" => "Odeslat", +"Sorry, this link doesn’t seem to work anymore." => "Je nám líto, ale tento odkaz již není funkční.", +"Reasons might be:" => "Možné důvody:", +"the item was removed" => "položka byla odebrána", +"the link expired" => "odkazu vypršela platnost", +"sharing is disabled" => "sdílení je zakázané", +"For more info, please ask the person who sent this link." => "Pro více informací kontaktujte osobu, která vám zaslala tento odkaz.", "%s shared the folder %s with you" => "%s s Vámi sdílí složku %s", "%s shared the file %s with you" => "%s s Vámi sdílí soubor %s", "Download" => "Stáhnout", diff --git a/apps/files_sharing/l10n/ru.php b/apps/files_sharing/l10n/ru.php index 77332c183f..601518e705 100644 --- a/apps/files_sharing/l10n/ru.php +++ b/apps/files_sharing/l10n/ru.php @@ -2,6 +2,12 @@ "The password is wrong. Try again." => "Неверный пароль. Попробуйте еще раз.", "Password" => "Пароль", "Submit" => "Отправить", +"Sorry, this link doesn’t seem to work anymore." => "К сожалению, эта ссылка, похоже не будет работать больше.", +"Reasons might be:" => "Причиной может быть:", +"the item was removed" => "объект был удалён", +"the link expired" => "срок ссылки истёк", +"sharing is disabled" => "обмен отключен", +"For more info, please ask the person who sent this link." => "Для получения дополнительной информации, пожалуйста, спросите того кто отослал данную ссылку.", "%s shared the folder %s with you" => "%s открыл доступ к папке %s для Вас", "%s shared the file %s with you" => "%s открыл доступ к файлу %s для Вас", "Download" => "Скачать", diff --git a/apps/files_trashbin/l10n/nl.php b/apps/files_trashbin/l10n/nl.php index 91844a14b6..a0a55eced8 100644 --- a/apps/files_trashbin/l10n/nl.php +++ b/apps/files_trashbin/l10n/nl.php @@ -11,6 +11,7 @@ "{count} folders" => "{count} mappen", "1 file" => "1 bestand", "{count} files" => "{count} bestanden", +"restored" => "hersteld", "Nothing in here. Your trash bin is empty!" => "Niets te vinden. Uw prullenbak is leeg!", "Restore" => "Herstellen", "Delete" => "Verwijder", diff --git a/apps/files_trashbin/l10n/ru.php b/apps/files_trashbin/l10n/ru.php index 0d55703cdc..f77d82c710 100644 --- a/apps/files_trashbin/l10n/ru.php +++ b/apps/files_trashbin/l10n/ru.php @@ -11,6 +11,7 @@ "{count} folders" => "{count} папок", "1 file" => "1 файл", "{count} files" => "{count} файлов", +"restored" => "восстановлен", "Nothing in here. Your trash bin is empty!" => "Здесь ничего нет. Ваша корзина пуста!", "Restore" => "Восстановить", "Delete" => "Удалить", diff --git a/core/l10n/cs_CZ.php b/core/l10n/cs_CZ.php index 0a44415602..1f7d4370d2 100644 --- a/core/l10n/cs_CZ.php +++ b/core/l10n/cs_CZ.php @@ -50,7 +50,7 @@ "The object type is not specified." => "Není určen typ objektu.", "Error" => "Chyba", "The app name is not specified." => "Není určen název aplikace.", -"The required file {file} is not installed!" => "Požadovaný soubor {file} není nainstalován.", +"The required file {file} is not installed!" => "Požadovaný soubor {file} není nainstalován!", "Shared" => "Sdílené", "Share" => "Sdílet", "Error while sharing" => "Chyba při sdílení", @@ -88,11 +88,11 @@ "ownCloud password reset" => "Obnovení hesla pro ownCloud", "Use the following link to reset your password: {link}" => "Heslo obnovíte použitím následujícího odkazu: {link}", "The link to reset your password has been sent to your email.
If you do not receive it within a reasonable amount of time, check your spam/junk folders.
If it is not there ask your local administrator ." => "Odkaz na obnovení hesla byl odeslán na vaši e-mailovou adresu.
Pokud jej v krátké době neobdržíte, zkontrolujte váš koš a složku spam.
Pokud jej nenaleznete, kontaktujte svého správce.", -"Request failed!
Did you make sure your email/username was right?" => "Požadavek selhal.
Ujistili jste se, že vaše uživatelské jméno a e-mail jsou správně?", -"You will receive a link to reset your password via Email." => "Bude Vám e-mailem zaslán odkaz pro obnovu hesla.", +"Request failed!
Did you make sure your email/username was right?" => "Požadavek selhal!
Ujistili jste se, že vaše uživatelské jméno a e-mail jsou správně?", +"You will receive a link to reset your password via Email." => "E-mailem Vám bude zaslán odkaz pro obnovu hesla.", "Username" => "Uživatelské jméno", -"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?" => "Vaše soubory jsou šifrovány. Pokud nemáte povolen klíč obnovy, neexistuje způsob jak získat po obnově hesla vaše data. Pokud si nejste jisti co dělat, kontaktujte nejprve svého správce. Opravdu si přejete pokračovat?", -"Yes, I really want to reset my password now" => "Ano, opravdu si nyní přeji obnovit své heslo", +"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?" => "Vaše soubory jsou šifrovány. Pokud nemáte povolen klíč pro obnovu, neexistuje způsob jak získat po změně hesla vaše data. Pokud si nejste jisti co dělat, kontaktujte nejprve svého správce. Opravdu si přejete pokračovat?", +"Yes, I really want to reset my password now" => "Ano, opravdu si nyní přeji obnovit mé heslo", "Request reset" => "Vyžádat obnovu", "Your password was reset" => "Vaše heslo bylo obnoveno", "To login page" => "Na stránku přihlášení", @@ -105,7 +105,7 @@ "Help" => "Nápověda", "Access forbidden" => "Přístup zakázán", "Cloud not found" => "Cloud nebyl nalezen", -"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Ahoj,\n\njenom vám chci oznámit že %s s vámi sdílí %s.\nPodívat se můžete zde: %s\n\nDíky", +"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Ahoj,\n\njenom vám chci oznámit, že %s s vámi sdílí %s.\nPodívat se můžete zde: %s\n\nDíky", "Edit categories" => "Upravit kategorie", "Add" => "Přidat", "Security Warning" => "Bezpečnostní upozornění", @@ -114,7 +114,7 @@ "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Není dostupný žádný bezpečný generátor náhodných čísel. Povolte, prosím, rozšíření OpenSSL v PHP.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Bez bezpečného generátoru náhodných čísel může útočník předpovědět token pro obnovu hesla a převzít kontrolu nad Vaším účtem.", "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Váš adresář s daty a soubory jsou dostupné z internetu, protože soubor .htaccess nefunguje.", -"For information how to properly configure your server, please see the documentation." => "Pro informace jak správně nastavit váš server se podívejte do dokumentace.", +"For information how to properly configure your server, please see the documentation." => "Pro informace, jak správně nastavit váš server, se podívejte do dokumentace.", "Create an admin account" => "Vytvořit účet správce", "Advanced" => "Pokročilé", "Data folder" => "Složka s daty", @@ -128,14 +128,14 @@ "Finish setup" => "Dokončit nastavení", "%s is available. Get more information on how to update." => "%s je dostupná. Získejte více informací k postupu aktualizace.", "Log out" => "Odhlásit se", -"Automatic logon rejected!" => "Automatické přihlášení odmítnuto.", -"If you did not change your password recently, your account may be compromised!" => "V nedávné době jste nezměnili své heslo, Váš účet může být kompromitován.", +"Automatic logon rejected!" => "Automatické přihlášení odmítnuto!", +"If you did not change your password recently, your account may be compromised!" => "Pokud jste v nedávné době neměnili své heslo, Váš účet může být kompromitován!", "Please change your password to secure your account again." => "Změňte, prosím, své heslo pro opětovné zabezpečení Vašeho účtu.", "Lost your password?" => "Ztratili jste své heslo?", "remember" => "zapamatovat", "Log in" => "Přihlásit", "Alternative Logins" => "Alternativní přihlášení", -"Hey there,

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

Cheers!" => "Ahoj,

jenom vám chci oznámit že %s s vámi sdílí %s.\nPodívat se můžete
zde.

Díky", +"Hey there,

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

Cheers!" => "Ahoj,

jenom vám chci oznámit, že %s s vámi sdílí %s.\nPodívat se můžete
zde.

Díky", "prev" => "předchozí", "next" => "následující", "Updating ownCloud to version %s, this may take a while." => "Aktualizuji ownCloud na verzi %s, bude to chvíli trvat." diff --git a/core/l10n/ru.php b/core/l10n/ru.php index 27af45212d..f9c293de9b 100644 --- a/core/l10n/ru.php +++ b/core/l10n/ru.php @@ -110,9 +110,11 @@ "Add" => "Добавить", "Security Warning" => "Предупреждение безопасности", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Ваша версия PHP уязвима к атаке NULL Byte (CVE-2006-7243)", +"Please update your PHP installation to use %s securely." => "Пожалуйста обновите Вашу PHP конфигурацию для безопасного использования %s.", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Отсутствует защищенный генератор случайных чисел, пожалуйста, включите расширение PHP OpenSSL.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Без защищенного генератора случайных чисел злоумышленник может предугадать токены сброса пароля и завладеть Вашей учетной записью.", "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Ваша папка с данными и файлы возможно доступны из интернета потому что файл .htaccess не работает.", +"For information how to properly configure your server, please see the documentation." => "Для информации, как правильно настроить Ваш сервер, пожалуйста загляните в документацию.", "Create an admin account" => "Создать учётную запись администратора", "Advanced" => "Дополнительно", "Data folder" => "Директория с данными", diff --git a/l10n/af_ZA/files_encryption.po b/l10n/af_ZA/files_encryption.po index 920cb21898..fef8a84bfe 100644 --- a/l10n/af_ZA/files_encryption.po +++ b/l10n/af_ZA/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -72,6 +72,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "" diff --git a/l10n/ar/files.po b/l10n/ar/files.po index 2c0edd0e62..d9758262cf 100644 --- a/l10n/ar/files.po +++ b/l10n/ar/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 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/files_encryption.po b/l10n/ar/files_encryption.po index b364ef0b1a..874f4ded56 100644 --- a/l10n/ar/files_encryption.po +++ b/l10n/ar/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -72,6 +72,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "جاري الحفظ..." diff --git a/l10n/be/files_encryption.po b/l10n/be/files_encryption.po index 3fc7cf1938..8d0154992e 100644 --- a/l10n/be/files_encryption.po +++ b/l10n/be/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -72,6 +72,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "" diff --git a/l10n/bg_BG/files.po b/l10n/bg_BG/files.po index c5b052986f..6789bd0d8a 100644 --- a/l10n/bg_BG/files.po +++ b/l10n/bg_BG/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 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/files_encryption.po b/l10n/bg_BG/files_encryption.po index 6fda53b831..211d08a65e 100644 --- a/l10n/bg_BG/files_encryption.po +++ b/l10n/bg_BG/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -72,6 +72,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "Записване..." diff --git a/l10n/bn_BD/files.po b/l10n/bn_BD/files.po index c651dce787..b6af75f431 100644 --- a/l10n/bn_BD/files.po +++ b/l10n/bn_BD/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 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/files_encryption.po b/l10n/bn_BD/files_encryption.po index 6b42829178..76ebb7103c 100644 --- a/l10n/bn_BD/files_encryption.po +++ b/l10n/bn_BD/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -72,6 +72,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "সংরক্ষণ করা হচ্ছে.." diff --git a/l10n/bs/files.po b/l10n/bs/files.po index 8dc6dc0de2..40526578de 100644 --- a/l10n/bs/files.po +++ b/l10n/bs/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:40+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" @@ -120,7 +120,7 @@ msgstr "Podijeli" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "" @@ -128,7 +128,7 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "" @@ -160,11 +160,11 @@ msgstr "" msgid "perform delete operation" msgstr "" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "" @@ -200,15 +200,15 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Ime" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Veličina" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "" @@ -285,45 +285,45 @@ msgstr "Fasikla" msgid "From link" msgstr "" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "" diff --git a/l10n/bs/files_encryption.po b/l10n/bs/files_encryption.po index 15de964f5c..f0ae33236a 100644 --- a/l10n/bs/files_encryption.po +++ b/l10n/bs/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -72,6 +72,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "Spašavam..." diff --git a/l10n/ca/files.po b/l10n/ca/files.po index 8bb421127f..b4cb4f1bc4 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 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" diff --git a/l10n/ca/files_encryption.po b/l10n/ca/files_encryption.po index 7e7d5f535e..89a390134f 100644 --- a/l10n/ca/files_encryption.po +++ b/l10n/ca/files_encryption.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 15:50+0000\n" -"Last-Translator: Josep Tomàs \n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -75,6 +75,10 @@ msgid "" "app has been disabled." msgstr "Assegureu-vos que teniu instal·lada la versió de PHP 5.3.3 o posterior, i que teniu l'extensió OpenSSL PHP activada i configurada correctament. Per ara, l'aplicació de xifrat esta desactivada." +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "Desant..." diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po index 395269681d..258670029d 100644 --- a/l10n/cs_CZ/core.po +++ b/l10n/cs_CZ/core.po @@ -4,14 +4,15 @@ # # Translators: # Honza K. , 2013 +# pstast , 2013 # Tomáš Chvátal , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" -"Last-Translator: Honza K. \n" +"POT-Creation-Date: 2013-08-02 01:57-0400\n" +"PO-Revision-Date: 2013-08-01 18:00+0000\n" +"Last-Translator: pstast \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" @@ -238,7 +239,7 @@ msgstr "Není určen název aplikace." #: js/oc-vcategories.js:194 msgid "The required file {file} is not installed!" -msgstr "Požadovaný soubor {file} není nainstalován." +msgstr "Požadovaný soubor {file} není nainstalován!" #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" @@ -396,11 +397,11 @@ msgstr "Odkaz na obnovení hesla byl odeslán na vaši e-mailovou adresu.
Pok #: lostpassword/templates/lostpassword.php:12 msgid "Request failed!
Did you make sure your email/username was right?" -msgstr "Požadavek selhal.
Ujistili jste se, že vaše uživatelské jméno a e-mail jsou správně?" +msgstr "Požadavek selhal!
Ujistili jste se, že vaše uživatelské jméno a e-mail jsou správně?" #: lostpassword/templates/lostpassword.php:15 msgid "You will receive a link to reset your password via Email." -msgstr "Bude Vám e-mailem zaslán odkaz pro obnovu hesla." +msgstr "E-mailem Vám bude zaslán odkaz pro obnovu hesla." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 #: templates/login.php:19 @@ -413,11 +414,11 @@ msgid "" "will be no way to get your data back after your password is reset. If you " "are not sure what to do, please contact your administrator before you " "continue. Do you really want to continue?" -msgstr "Vaše soubory jsou šifrovány. Pokud nemáte povolen klíč obnovy, neexistuje způsob jak získat po obnově hesla vaše data. Pokud si nejste jisti co dělat, kontaktujte nejprve svého správce. Opravdu si přejete pokračovat?" +msgstr "Vaše soubory jsou šifrovány. Pokud nemáte povolen klíč pro obnovu, neexistuje způsob jak získat po změně hesla vaše data. Pokud si nejste jisti co dělat, kontaktujte nejprve svého správce. Opravdu si přejete pokračovat?" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" -msgstr "Ano, opravdu si nyní přeji obnovit své heslo" +msgstr "Ano, opravdu si nyní přeji obnovit mé heslo" #: lostpassword/templates/lostpassword.php:27 msgid "Request reset" @@ -476,7 +477,7 @@ msgid "" "View it: %s\n" "\n" "Cheers!" -msgstr "Ahoj,\n\njenom vám chci oznámit že %s s vámi sdílí %s.\nPodívat se můžete zde: %s\n\nDíky" +msgstr "Ahoj,\n\njenom vám chci oznámit, že %s s vámi sdílí %s.\nPodívat se můžete zde: %s\n\nDíky" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" @@ -523,7 +524,7 @@ msgstr "Váš adresář s daty a soubory jsou dostupné z internetu, protože so msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "Pro informace jak správně nastavit váš server se podívejte do dokumentace." +msgstr "Pro informace, jak správně nastavit váš server, se podívejte do dokumentace." #: templates/installation.php:47 msgid "Create an admin account" @@ -582,13 +583,13 @@ msgstr "Odhlásit se" #: templates/login.php:9 msgid "Automatic logon rejected!" -msgstr "Automatické přihlášení odmítnuto." +msgstr "Automatické přihlášení odmítnuto!" #: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" -msgstr "V nedávné době jste nezměnili své heslo, Váš účet může být kompromitován." +msgstr "Pokud jste v nedávné době neměnili své heslo, Váš účet může být kompromitován!" #: templates/login.php:12 msgid "Please change your password to secure your account again." @@ -615,7 +616,7 @@ msgstr "Alternativní přihlášení" msgid "" "Hey there,

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

Cheers!" -msgstr "Ahoj,

jenom vám chci oznámit že %s s vámi sdílí %s.\nPodívat se můžete
zde.

Díky" +msgstr "Ahoj,

jenom vám chci oznámit, že %s s vámi sdílí %s.\nPodívat se můžete
zde.

Díky" #: templates/part.pagenavi.php:3 msgid "prev" diff --git a/l10n/cs_CZ/files.po b/l10n/cs_CZ/files.po index 36b9af89c6..f692cb6aab 100644 --- a/l10n/cs_CZ/files.po +++ b/l10n/cs_CZ/files.po @@ -4,14 +4,15 @@ # # Translators: # Honza K. , 2013 +# pstast , 2013 # Tomáš Chvátal , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" -"Last-Translator: Honza K. \n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:40+0000\n" +"Last-Translator: pstast \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" @@ -22,7 +23,7 @@ msgstr "" #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "Nelze přesunout %s - existuje soubor se stejným názvem" +msgstr "Nelze přesunout %s - již existuje soubor se stejným názvem" #: ajax/move.php:27 ajax/move.php:30 #, php-format @@ -39,7 +40,7 @@ msgstr "Neplatný token" #: ajax/upload.php:59 msgid "No file was uploaded. Unknown error" -msgstr "Soubor nebyl odeslán. Neznámá chyba" +msgstr "Žádný soubor nebyl odeslán. Neznámá chyba" #: ajax/upload.php:66 msgid "There is no error, the file uploaded with success" @@ -54,7 +55,7 @@ msgstr "Odesílaný soubor přesahuje velikost upload_max_filesize povolenou v p msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" -msgstr "Odeslaný soubor přesáhl svou velikostí parametr MAX_FILE_SIZE specifikovaný v formuláři HTML" +msgstr "Odeslaný soubor přesáhl svou velikostí parametr MAX_FILE_SIZE specifikovaný ve formuláři HTML" #: ajax/upload.php:70 msgid "The uploaded file was only partially uploaded" @@ -86,11 +87,11 @@ msgstr "Soubory" #: js/file-upload.js:11 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "Nelze odeslat Váš soubor, protože je to adresář, nebo je jeho velikost 0 bajtů" +msgstr "Nelze odeslat Váš soubor, protože je to adresář nebo jeho velikost je 0 bajtů" #: js/file-upload.js:24 msgid "Not enough space available" -msgstr "Nedostatek dostupného místa" +msgstr "Nedostatek volného místa" #: js/file-upload.js:64 msgid "Upload cancelled." @@ -99,11 +100,11 @@ msgstr "Odesílání zrušeno." #: js/file-upload.js:167 js/files.js:266 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 vyústí ve zrušení nahrávání." +msgstr "Probíhá odesílání souboru. Opuštění stránky způsobí zrušení nahrávání." #: js/file-upload.js:233 js/files.js:339 msgid "URL cannot be empty." -msgstr "URL nemůže být prázdná" +msgstr "URL nemůže být prázdná." #: js/file-upload.js:238 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" @@ -156,7 +157,7 @@ msgstr "nahrazeno {new_name} s {old_name}" #: js/filelist.js:350 msgid "undo" -msgstr "zpět" +msgstr "vrátit zpět" #: js/filelist.js:375 msgid "perform delete operation" @@ -196,11 +197,11 @@ msgstr "Vaše úložiště je téměř plné ({usedSpacePercent}%)" 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." +msgstr "Vaše soubory ke stažení se připravují. Pokud jsou velké, může to chvíli trvat." #: js/files.js:344 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "Neplatný název složky. Použití 'Shared' je rezervováno pro vnitřní potřeby Owncloud" +msgstr "Neplatný název složky. Pojmenování 'Shared' je rezervováno pro vnitřní potřeby ownCloud" #: js/files.js:744 templates/index.php:67 msgid "Name" @@ -220,7 +221,7 @@ msgstr "1 složka" #: js/files.js:765 msgid "{count} folders" -msgstr "{count} složky" +msgstr "{count} složek" #: js/files.js:773 msgid "1 file" @@ -228,7 +229,7 @@ msgstr "1 soubor" #: js/files.js:775 msgid "{count} files" -msgstr "{count} soubory" +msgstr "{count} souborů" #: lib/app.php:73 #, php-format diff --git a/l10n/cs_CZ/files_encryption.po b/l10n/cs_CZ/files_encryption.po index f2c52d1e49..22f7b62bf9 100644 --- a/l10n/cs_CZ/files_encryption.po +++ b/l10n/cs_CZ/files_encryption.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-29 18:40+0000\n" -"Last-Translator: Honza K. \n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -74,6 +74,10 @@ msgid "" "app has been disabled." msgstr "Ujistěte se prosím, že máte nainstalované PHP verze PHP 5.3.3 s nainstalovaným a správně nastaveným rozšířením OpenSSL. Prozatím byla šifrovací aplikace zablokována." +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "Ukládám..." diff --git a/l10n/cs_CZ/files_sharing.po b/l10n/cs_CZ/files_sharing.po index 89b4d45ab8..4e1ae51035 100644 --- a/l10n/cs_CZ/files_sharing.po +++ b/l10n/cs_CZ/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-02 01:56-0400\n" +"PO-Revision-Date: 2013-08-01 18:30+0000\n" +"Last-Translator: pstast \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" @@ -32,27 +32,27 @@ msgstr "Odeslat" #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." -msgstr "" +msgstr "Je nám líto, ale tento odkaz již není funkční." #: templates/part.404.php:4 msgid "Reasons might be:" -msgstr "" +msgstr "Možné důvody:" #: templates/part.404.php:6 msgid "the item was removed" -msgstr "" +msgstr "položka byla odebrána" #: templates/part.404.php:7 msgid "the link expired" -msgstr "" +msgstr "odkazu vypršela platnost" #: templates/part.404.php:8 msgid "sharing is disabled" -msgstr "" +msgstr "sdílení je zakázané" #: templates/part.404.php:10 msgid "For more info, please ask the person who sent this link." -msgstr "" +msgstr "Pro více informací kontaktujte osobu, která vám zaslala tento odkaz." #: templates/public.php:15 #, php-format diff --git a/l10n/cs_CZ/files_trashbin.po b/l10n/cs_CZ/files_trashbin.po index c6dfd407a5..54d822655f 100644 --- a/l10n/cs_CZ/files_trashbin.po +++ b/l10n/cs_CZ/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 21:10+0000\n" +"POT-Creation-Date: 2013-08-02 01:56-0400\n" +"PO-Revision-Date: 2013-08-01 18:20+0000\n" "Last-Translator: Honza K. \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/lib.po b/l10n/cs_CZ/lib.po index 602c1e4dd8..3a5a462265 100644 --- a/l10n/cs_CZ/lib.po +++ b/l10n/cs_CZ/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 21:21+0000\n" +"POT-Creation-Date: 2013-08-02 01:57-0400\n" +"PO-Revision-Date: 2013-08-01 19:40+0000\n" "Last-Translator: Honza K. \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po index fbc9ea3099..7fb0e844a2 100644 --- a/l10n/cs_CZ/settings.po +++ b/l10n/cs_CZ/settings.po @@ -4,14 +4,15 @@ # # Translators: # Honza K. , 2013 +# pstast , 2013 # Tomáš Chvátal , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 21:10+0000\n" -"Last-Translator: Honza K. \n" +"POT-Creation-Date: 2013-08-02 01:57-0400\n" +"PO-Revision-Date: 2013-08-01 20:00+0000\n" +"Last-Translator: pstast \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" @@ -26,7 +27,7 @@ msgstr "Nelze načíst seznam z App Store" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" -msgstr "Chyba ověření" +msgstr "Chyba přihlášení" #: ajax/changedisplayname.php:31 msgid "Your display name has been changed." @@ -84,7 +85,7 @@ msgstr "Nelze přidat uživatele do skupiny %s" #: ajax/togglegroups.php:36 #, php-format msgid "Unable to remove user from group %s" -msgstr "Nelze odstranit uživatele ze skupiny %s" +msgstr "Nelze odebrat uživatele ze skupiny %s" #: ajax/updateapp.php:14 msgid "Couldn't update app." @@ -132,7 +133,7 @@ msgstr "smazáno" #: js/users.js:47 msgid "undo" -msgstr "zpět" +msgstr "vrátit zpět" #: js/users.js:79 msgid "Unable to remove user" @@ -182,7 +183,7 @@ msgid "" "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 "Váš datový adresář i vaše soubory jsou pravděpodobně přístupné z internetu. Soubor .htaccess nefunguje. Důrazně doporučujeme nakonfigurovat webový server, aby datový adresář nebyl nadále přístupný nebo přesunout datový adresář mimo adresář zpřístupňovaný webovým serverem." +msgstr "Váš datový adresář i vaše soubory jsou pravděpodobně přístupné z internetu. Soubor .htaccess nefunguje. Důrazně doporučujeme nakonfigurovat webový server tak, aby datový adresář nebyl nadále přístupný, nebo přesunout datový adresář mimo prostor zpřístupňovaný webovým serverem." #: templates/admin.php:29 msgid "Setup Warning" @@ -192,7 +193,7 @@ msgstr "Upozornění nastavení" msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "Váš webový server není správně nastaven pro umožnění synchronizace, protože rozhraní WebDAV je rozbité." +msgstr "Váš webový server není správně nastaven pro umožnění synchronizace, protože rozhraní WebDAV se zdá nefunkční." #: templates/admin.php:33 #, php-format @@ -207,11 +208,11 @@ msgstr "Schází modul 'fileinfo'" msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." -msgstr "Schází modul PHP 'fileinfo'. Doporučujeme jej povolit pro nejlepší výsledky detekce typů MIME." +msgstr "Schází PHP modul 'fileinfo'. Doporučujeme jej povolit pro nejlepší výsledky detekce typů MIME." #: templates/admin.php:58 msgid "Locale not working" -msgstr "Locale nefunguje" +msgstr "Lokalizace nefunguje" #: templates/admin.php:63 #, php-format @@ -219,11 +220,11 @@ msgid "" "System locale can't be set to %s. This means that there might be problems " "with certain characters in file names. We strongly suggest to install the " "required packages on your system to support %s." -msgstr "Systémové nastavení lokalizace nemohlo být nastaveno na %s. Mohou se tedy vyskytnout problémy s některými znaky v názvech souborů. Důrazně doporučujeme nainstalovat balíčky potřebné pro podporu %s ve vašem systému." +msgstr "Systémové nastavení lokalizace nemohlo být nastaveno na %s. To znamená, že se mohou vyskytnout problémy s některými znaky v názvech souborů. Důrazně doporučujeme nainstalovat do vašeho systému balíčky potřebné pro podporu %s." #: templates/admin.php:75 msgid "Internet connection not working" -msgstr "Spojení s internetem nefujguje" +msgstr "Připojení k internetu nefunguje" #: templates/admin.php:78 msgid "" @@ -232,7 +233,7 @@ msgid "" "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 "Server nemá funkční připojení k internetu. Některé moduly jako externí úložiště, oznámení o dostupných aktualizacích nebo instalace aplikací třetích stran nebudou fungovat. Přístup k souborům z jiných míst a odesílání oznamovacích e-mailů také nemusí fungovat. Pokud si přejete využívat všech vlastností ownCloud, doporučujeme povolit připojení k internetu tomuto serveru." +msgstr "Server nemá funkční připojení k internetu. Některé moduly jako např. externí úložiště, oznámení o dostupných aktualizacích nebo instalace aplikací třetích stran nebudou fungovat. Přístup k souborům z jiných míst a odesílání oznamovacích e-mailů také nemusí fungovat. Pokud si přejete využívat všech vlastností ownCloud, doporučujeme povolit připojení k internetu tomuto serveru." #: templates/admin.php:92 msgid "Cron" @@ -240,17 +241,17 @@ msgstr "Cron" #: templates/admin.php:101 msgid "Execute one task with each page loaded" -msgstr "Spustit jednu úlohu s každou načtenou stránkou" +msgstr "Spustit jednu úlohu s každým načtením stránky" #: templates/admin.php:111 msgid "" "cron.php is registered at a webcron service to call cron.php once a minute " "over http." -msgstr "cron.php je registrován u služby webcron pro zavolání stránky cron.php jednou za minutu po http." +msgstr "cron.php je registrován u služby webcron pro zavolání stránky cron.php jednou za minutu přes HTTP." #: templates/admin.php:121 msgid "Use systems cron service to call the cron.php file once a minute." -msgstr "Použijte systémovou službu cron pro spouštění souboru cron.php jednou za minutu." +msgstr "Použít systémovou službu cron pro spouštění souboru cron.php jednou za minutu." #: templates/admin.php:128 msgid "Sharing" @@ -270,16 +271,16 @@ msgstr "Povolit odkazy" #: templates/admin.php:143 msgid "Allow users to share items to the public with links" -msgstr "Povolit uživatelům sdílet položky s veřejností pomocí odkazů" +msgstr "Povolit uživatelům sdílet položky veřejně pomocí odkazů" #: templates/admin.php:151 msgid "Allow public uploads" -msgstr "Povolit veřejné soubory" +msgstr "Povolit veřejné nahrávání souborů" #: templates/admin.php:152 msgid "" "Allow users to enable others to upload into their publicly shared folders" -msgstr "Povolit uživatelům umožnit ostatním nahrávat do jejich veřejně sdílené složky" +msgstr "Povolit uživatelům, aby mohli ostatním umožnit nahrávat do jejich veřejně sdílené složky" #: templates/admin.php:160 msgid "Allow resharing" @@ -323,7 +324,7 @@ msgstr "Záznam" #: templates/admin.php:212 msgid "Log level" -msgstr "Úroveň záznamu" +msgstr "Úroveň zaznamenávání" #: templates/admin.php:243 msgid "More" @@ -349,7 +350,7 @@ msgstr "Vyvinuto komun #: templates/apps.php:13 msgid "Add your App" -msgstr "Přidat Vaší aplikaci" +msgstr "Přidat Vaši aplikaci" #: templates/apps.php:28 msgid "More Apps" @@ -418,7 +419,7 @@ msgstr "Vaše heslo bylo změněno" #: templates/personal.php:41 msgid "Unable to change your password" -msgstr "Vaše heslo nelze změnit" +msgstr "Změna vašeho hesla se nezdařila" #: templates/personal.php:42 msgid "Current password" @@ -446,7 +447,7 @@ msgstr "Vaše e-mailová adresa" #: templates/personal.php:76 msgid "Fill in an email address to enable password recovery" -msgstr "Pro povolení změny hesla vyplňte adresu e-mailu" +msgstr "Pro povolení obnovy hesla vyplňte e-mailovou adresu" #: templates/personal.php:85 templates/personal.php:86 msgid "Language" diff --git a/l10n/cs_CZ/user_webdavauth.po b/l10n/cs_CZ/user_webdavauth.po index 74eaf816df..27661055ff 100644 --- a/l10n/cs_CZ/user_webdavauth.po +++ b/l10n/cs_CZ/user_webdavauth.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 21:21+0000\n" -"Last-Translator: Honza K. \n" +"POT-Creation-Date: 2013-08-02 01:56-0400\n" +"PO-Revision-Date: 2013-08-01 19:28+0000\n" +"Last-Translator: pstast \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" diff --git a/l10n/cy_GB/files.po b/l10n/cy_GB/files.po index 13f8ec20f6..1254ad5c41 100644 --- a/l10n/cy_GB/files.po +++ b/l10n/cy_GB/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 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/files_encryption.po b/l10n/cy_GB/files_encryption.po index 580563b10a..1883952f1c 100644 --- a/l10n/cy_GB/files_encryption.po +++ b/l10n/cy_GB/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -73,6 +73,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "Yn cadw..." diff --git a/l10n/da/files.po b/l10n/da/files.po index 957c1b4118..2c33ac99d7 100644 --- a/l10n/da/files.po +++ b/l10n/da/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:40+0000\n" "Last-Translator: Sappe\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/files_encryption.po b/l10n/da/files_encryption.po index 984b44645a..f9c1880e0e 100644 --- a/l10n/da/files_encryption.po +++ b/l10n/da/files_encryption.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-29 16:20+0000\n" -"Last-Translator: Sappe\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -73,6 +73,10 @@ msgid "" "app has been disabled." msgstr "Sikker dig venligst at PHP 5.3.3 eller nyere er installeret og at OpenSSL PHP udvidelsen er aktiveret og konfigureret korrekt. Indtil videre er krypterings app'en deaktiveret. " +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "Gemmer..." diff --git a/l10n/de/files.po b/l10n/de/files.po index f4ddfb57c1..03ee774915 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:40+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files_encryption.po b/l10n/de/files_encryption.po index aa7ff7b7d9..96854973d2 100644 --- a/l10n/de/files_encryption.po +++ b/l10n/de/files_encryption.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 12:50+0000\n" -"Last-Translator: kabum \n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -77,6 +77,10 @@ msgid "" "app has been disabled." msgstr "Bitte stellen Sie sicher, dass PHP 5.3.3 oder neuer installiert ist und die OpenSSL-PHP-Erweiterung aktiviert und richtig konfiguriert ist. Die Verschlüsselungsanwendung wurde vorerst deaktiviert." +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "Speichern..." diff --git a/l10n/de_DE/files.po b/l10n/de_DE/files.po index bf0b8666ab..2e308e619b 100644 --- a/l10n/de_DE/files.po +++ b/l10n/de_DE/files.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:40+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files_encryption.po b/l10n/de_DE/files_encryption.po index ca88a9a239..0a059904d4 100644 --- a/l10n/de_DE/files_encryption.po +++ b/l10n/de_DE/files_encryption.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-17 09:20+0000\n" -"Last-Translator: traductor \n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -75,6 +75,10 @@ msgid "" "app has been disabled." msgstr "Bitte stellen Sie sicher, dass PHP 5.3.3 oder neuer installiert und die PHP-Erweiterung OpenSSL aktiviert und richtig konfiguriert ist. Zur Zeit ist die Verschlüsselungs-App deaktiviert." +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "Speichern..." diff --git a/l10n/el/files.po b/l10n/el/files.po index c1b8a30a17..483392c611 100644 --- a/l10n/el/files.po +++ b/l10n/el/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 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" diff --git a/l10n/el/files_encryption.po b/l10n/el/files_encryption.po index 684d9d810e..48205a8c2e 100644 --- a/l10n/el/files_encryption.po +++ b/l10n/el/files_encryption.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -75,6 +75,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "Γίνεται αποθήκευση..." diff --git a/l10n/en@pirate/files_encryption.po b/l10n/en@pirate/files_encryption.po index c0cec032f0..90fdf44019 100644 --- a/l10n/en@pirate/files_encryption.po +++ b/l10n/en@pirate/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -72,6 +72,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "" diff --git a/l10n/eo/files.po b/l10n/eo/files.po index 3d476702c3..335b02a961 100644 --- a/l10n/eo/files.po +++ b/l10n/eo/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 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/files_encryption.po b/l10n/eo/files_encryption.po index c5864c36b1..ab2a604eb0 100644 --- a/l10n/eo/files_encryption.po +++ b/l10n/eo/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -73,6 +73,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "Konservante..." diff --git a/l10n/es/files.po b/l10n/es/files.po index 66676ffbc8..4a03957640 100644 --- a/l10n/es/files.po +++ b/l10n/es/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 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" diff --git a/l10n/es/files_encryption.po b/l10n/es/files_encryption.po index fbcbc4e2fe..19f7520469 100644 --- a/l10n/es/files_encryption.po +++ b/l10n/es/files_encryption.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-08 02:02+0200\n" -"PO-Revision-Date: 2013-07-07 07:50+0000\n" -"Last-Translator: Korrosivo \n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -79,6 +79,10 @@ msgid "" "app has been disabled." msgstr "Por favor, asegúrese de que PHP 5.3.3 o posterior está instalado y que la extensión OpenSSL de PHP está habilitada y configurada correctamente. Por el momento, la aplicación de cifrado ha sido deshabilitada." +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "Guardando..." diff --git a/l10n/es_AR/files.po b/l10n/es_AR/files.po index 0353e62077..a27e177c48 100644 --- a/l10n/es_AR/files.po +++ b/l10n/es_AR/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 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/files_encryption.po b/l10n/es_AR/files_encryption.po index 68fee9017f..b44892489e 100644 --- a/l10n/es_AR/files_encryption.po +++ b/l10n/es_AR/files_encryption.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-18 12:20+0000\n" -"Last-Translator: cjtess \n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -73,6 +73,10 @@ msgid "" "app has been disabled." msgstr "Por favor, asegurate que PHP 5.3.3 o posterior esté instalado y que la extensión OpenSSL de PHP esté habilitada y configurada correctamente. Por el momento, la aplicación de encriptación está deshabilitada." +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "Guardando..." diff --git a/l10n/et_EE/files.po b/l10n/et_EE/files.po index f516fc66a0..cac6450a0f 100644 --- a/l10n/et_EE/files.po +++ b/l10n/et_EE/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 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" diff --git a/l10n/et_EE/files_encryption.po b/l10n/et_EE/files_encryption.po index b5851a1bb9..048a22c020 100644 --- a/l10n/et_EE/files_encryption.po +++ b/l10n/et_EE/files_encryption.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 09:30+0000\n" -"Last-Translator: pisike.sipelgas \n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -74,6 +74,10 @@ msgid "" "app has been disabled." msgstr "Veendu, et kasutusel oleks PHP 5.3.3 või uuem versioon ning kasutusel oleks OpenSSL PHP laiendus ja see on korrektselt seadistatud. Hetkel on krüpteerimise rakenduse kasutamine peatatud." +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "Salvestamine..." diff --git a/l10n/eu/files.po b/l10n/eu/files.po index beb0bcad9f..e62535539f 100644 --- a/l10n/eu/files.po +++ b/l10n/eu/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 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" diff --git a/l10n/eu/files_encryption.po b/l10n/eu/files_encryption.po index 4eb3080f3f..cde99dedab 100644 --- a/l10n/eu/files_encryption.po +++ b/l10n/eu/files_encryption.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-28 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 07:50+0000\n" -"Last-Translator: asieriko \n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -75,6 +75,10 @@ msgid "" "app has been disabled." msgstr "Ziurtatu PHP 5.3.3 edo berriagoa instalatuta dagoela eta PHPren OpenSSL gehigarria gaituta eta ongi konfiguratuta dagoela. Oraingoz enkriptazio programa ez dago gaituta." +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "Gordetzen..." diff --git a/l10n/fa/files.po b/l10n/fa/files.po index c852569485..78eab8b175 100644 --- a/l10n/fa/files.po +++ b/l10n/fa/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 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" diff --git a/l10n/fa/files_encryption.po b/l10n/fa/files_encryption.po index 1693b267f7..ac77efb766 100644 --- a/l10n/fa/files_encryption.po +++ b/l10n/fa/files_encryption.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-11 02:16+0200\n" -"PO-Revision-Date: 2013-07-10 09:30+0000\n" -"Last-Translator: miki_mika1362 \n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -73,6 +73,10 @@ msgid "" "app has been disabled." msgstr "لطفا مطمئن شوید که PHP 5.3.3 یا جدیدتر نصب شده و پسوند OpenSSL PHP فعال است و به درستی پیکربندی شده است. در حال حاضر، برنامه رمزگذاری غیر فعال شده است." +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "در حال ذخیره سازی..." diff --git a/l10n/fi_FI/files.po b/l10n/fi_FI/files.po index 72d5809a58..c6e4b9ee9d 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_FI/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 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" diff --git a/l10n/fi_FI/files_encryption.po b/l10n/fi_FI/files_encryption.po index 0f8f958a2d..732087d4ef 100644 --- a/l10n/fi_FI/files_encryption.po +++ b/l10n/fi_FI/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -73,6 +73,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "Tallennetaan..." diff --git a/l10n/fr/files.po b/l10n/fr/files.po index c4babaecdd..d90f42f46c 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 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" diff --git a/l10n/fr/files_encryption.po b/l10n/fr/files_encryption.po index 0a8751ee9c..379e785e9e 100644 --- a/l10n/fr/files_encryption.po +++ b/l10n/fr/files_encryption.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-11 02:16+0200\n" -"PO-Revision-Date: 2013-07-10 18:30+0000\n" -"Last-Translator: Adalberto Rodrigues \n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -76,6 +76,10 @@ msgid "" "app has been disabled." msgstr "Veuillez vous assurer qu'une version de PHP 5.3.3 ou plus récente est installée et que l'extension OpenSSL de PHP est activée et configurée correctement. En attendant, l'application de cryptage a été désactivée." +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "Enregistrement..." diff --git a/l10n/gl/files.po b/l10n/gl/files.po index 79c63c3869..012454459c 100644 --- a/l10n/gl/files.po +++ b/l10n/gl/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 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" diff --git a/l10n/gl/files_encryption.po b/l10n/gl/files_encryption.po index a8f83b07bb..92948d143c 100644 --- a/l10n/gl/files_encryption.po +++ b/l10n/gl/files_encryption.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:58+0200\n" -"PO-Revision-Date: 2013-07-06 09:11+0000\n" -"Last-Translator: mbouzada \n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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,6 +75,10 @@ msgid "" "app has been disabled." msgstr "Asegúrese de que está instalado o PHP 5.3.3 ou posterior e de que a extensión OpenSSL PHP estea activada e configurada correctamente. Polo de agora foi desactivado o aplicativo de cifrado." +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "Gardando..." diff --git a/l10n/he/files.po b/l10n/he/files.po index 83a9b3df42..24c1a5d53c 100644 --- a/l10n/he/files.po +++ b/l10n/he/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 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/files_encryption.po b/l10n/he/files_encryption.po index 8b805ef221..c7d690a787 100644 --- a/l10n/he/files_encryption.po +++ b/l10n/he/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -72,6 +72,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "שמירה…" diff --git a/l10n/hi/files_encryption.po b/l10n/hi/files_encryption.po index 94ad25dcd1..cea31a0a3e 100644 --- a/l10n/hi/files_encryption.po +++ b/l10n/hi/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -72,6 +72,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "" diff --git a/l10n/hr/files.po b/l10n/hr/files.po index d14de3d50e..b86b527c73 100644 --- a/l10n/hr/files.po +++ b/l10n/hr/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 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" diff --git a/l10n/hr/files_encryption.po b/l10n/hr/files_encryption.po index 41ffd91c1b..348a47b40d 100644 --- a/l10n/hr/files_encryption.po +++ b/l10n/hr/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -72,6 +72,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "Spremanje..." diff --git a/l10n/hu_HU/files.po b/l10n/hu_HU/files.po index 2fa09f0b3c..35dad9d514 100644 --- a/l10n/hu_HU/files.po +++ b/l10n/hu_HU/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 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/files_encryption.po b/l10n/hu_HU/files_encryption.po index cac07fdabb..4454bdef40 100644 --- a/l10n/hu_HU/files_encryption.po +++ b/l10n/hu_HU/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -72,6 +72,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "Mentés..." diff --git a/l10n/hy/files_encryption.po b/l10n/hy/files_encryption.po index aac4b4707b..ad6527023c 100644 --- a/l10n/hy/files_encryption.po +++ b/l10n/hy/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -72,6 +72,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "" diff --git a/l10n/ia/files.po b/l10n/ia/files.po index 9573d287a0..9e70cb518a 100644 --- a/l10n/ia/files.po +++ b/l10n/ia/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 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" diff --git a/l10n/ia/files_encryption.po b/l10n/ia/files_encryption.po index 3dc0de9950..e4f044f7d2 100644 --- a/l10n/ia/files_encryption.po +++ b/l10n/ia/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -72,6 +72,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "" diff --git a/l10n/id/files.po b/l10n/id/files.po index 6403ada6b7..d67cff2dde 100644 --- a/l10n/id/files.po +++ b/l10n/id/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 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" diff --git a/l10n/id/files_encryption.po b/l10n/id/files_encryption.po index 754fd8ebf9..e65b75b2ca 100644 --- a/l10n/id/files_encryption.po +++ b/l10n/id/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -72,6 +72,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "Menyimpan..." diff --git a/l10n/is/files.po b/l10n/is/files.po index 86b12e0fd2..57067a3de7 100644 --- a/l10n/is/files.po +++ b/l10n/is/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 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/files_encryption.po b/l10n/is/files_encryption.po index 4cc867c7a6..441753b069 100644 --- a/l10n/is/files_encryption.po +++ b/l10n/is/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -72,6 +72,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "Er að vista ..." diff --git a/l10n/it/files.po b/l10n/it/files.po index 2c86ca8c3c..5df5b08ecf 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 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" diff --git a/l10n/it/files_encryption.po b/l10n/it/files_encryption.po index 9e43d8c52d..a97ce2655b 100644 --- a/l10n/it/files_encryption.po +++ b/l10n/it/files_encryption.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-09 02:03+0200\n" -"PO-Revision-Date: 2013-07-08 13:30+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -75,6 +75,10 @@ msgid "" "app has been disabled." msgstr "Assicurati che sia installato PHP 5.3.3 o versioni successive e che l'estensione OpenSSL di PHP sia abilitata e configurata correttamente. Per ora, l'applicazione di cifratura è disabilitata." +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "Salvataggio in corso..." diff --git a/l10n/ja_JP/files.po b/l10n/ja_JP/files.po index 99861df793..cbafdbe58f 100644 --- a/l10n/ja_JP/files.po +++ b/l10n/ja_JP/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 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" diff --git a/l10n/ja_JP/files_encryption.po b/l10n/ja_JP/files_encryption.po index 1697707c7f..abf03aaf89 100644 --- a/l10n/ja_JP/files_encryption.po +++ b/l10n/ja_JP/files_encryption.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:58+0200\n" -"PO-Revision-Date: 2013-07-06 01:30+0000\n" -"Last-Translator: tt yn \n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -75,6 +75,10 @@ msgid "" "app has been disabled." msgstr "必ず、PHP 5.3.3以上をインストールし、OpenSSLのPHP拡張を有効にして適切に設定してください。現時点では暗号化アプリは無効になっています。" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "保存中..." diff --git a/l10n/ka/files_encryption.po b/l10n/ka/files_encryption.po index 30ae56a19d..c2da272465 100644 --- a/l10n/ka/files_encryption.po +++ b/l10n/ka/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -72,6 +72,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "" diff --git a/l10n/ka_GE/files.po b/l10n/ka_GE/files.po index 918d7d6d17..313e5241c3 100644 --- a/l10n/ka_GE/files.po +++ b/l10n/ka_GE/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 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" diff --git a/l10n/ka_GE/files_encryption.po b/l10n/ka_GE/files_encryption.po index 39799227c6..2b1948e660 100644 --- a/l10n/ka_GE/files_encryption.po +++ b/l10n/ka_GE/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -72,6 +72,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "შენახვა..." diff --git a/l10n/kn/files_encryption.po b/l10n/kn/files_encryption.po index 227f1e73e3..e02a0220c2 100644 --- a/l10n/kn/files_encryption.po +++ b/l10n/kn/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -72,6 +72,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "" diff --git a/l10n/ko/files.po b/l10n/ko/files.po index 634e6e3dc2..8c03bf34b9 100644 --- a/l10n/ko/files.po +++ b/l10n/ko/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 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/files_encryption.po b/l10n/ko/files_encryption.po index 70a042b639..848bb1530c 100644 --- a/l10n/ko/files_encryption.po +++ b/l10n/ko/files_encryption.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-22 09:20+0000\n" -"Last-Translator: smallsnail \n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -73,6 +73,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "저장 중..." diff --git a/l10n/ku_IQ/files_encryption.po b/l10n/ku_IQ/files_encryption.po index 0adc093d2f..7cfa02f06a 100644 --- a/l10n/ku_IQ/files_encryption.po +++ b/l10n/ku_IQ/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -72,6 +72,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "پاشکه‌وتده‌کات..." diff --git a/l10n/lb/files.po b/l10n/lb/files.po index 1c581ddf78..48678354f4 100644 --- a/l10n/lb/files.po +++ b/l10n/lb/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 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/files_encryption.po b/l10n/lb/files_encryption.po index cecd9c3343..d845e6353d 100644 --- a/l10n/lb/files_encryption.po +++ b/l10n/lb/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -72,6 +72,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "Speicheren..." diff --git a/l10n/lt_LT/files.po b/l10n/lt_LT/files.po index 6396841d21..2690fe2d97 100644 --- a/l10n/lt_LT/files.po +++ b/l10n/lt_LT/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 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/files_encryption.po b/l10n/lt_LT/files_encryption.po index a17364ca8e..22f3b98d90 100644 --- a/l10n/lt_LT/files_encryption.po +++ b/l10n/lt_LT/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -73,6 +73,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "Saugoma..." diff --git a/l10n/lv/files.po b/l10n/lv/files.po index b1698a93e0..0a7605a3f0 100644 --- a/l10n/lv/files.po +++ b/l10n/lv/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 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" diff --git a/l10n/lv/files_encryption.po b/l10n/lv/files_encryption.po index f75bfcbdf5..db6b8fd142 100644 --- a/l10n/lv/files_encryption.po +++ b/l10n/lv/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -72,6 +72,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "Saglabā..." diff --git a/l10n/mk/files.po b/l10n/mk/files.po index 33f61785d3..c2b25dd28d 100644 --- a/l10n/mk/files.po +++ b/l10n/mk/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 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/files_encryption.po b/l10n/mk/files_encryption.po index 377a5a1046..e7309b2e08 100644 --- a/l10n/mk/files_encryption.po +++ b/l10n/mk/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -72,6 +72,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "Снимам..." diff --git a/l10n/ml_IN/files_encryption.po b/l10n/ml_IN/files_encryption.po index 788f7259d4..e97dc7732a 100644 --- a/l10n/ml_IN/files_encryption.po +++ b/l10n/ml_IN/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 08:25+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -72,6 +72,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "" diff --git a/l10n/ms_MY/files.po b/l10n/ms_MY/files.po index 1cad5bda69..38aeb8e210 100644 --- a/l10n/ms_MY/files.po +++ b/l10n/ms_MY/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 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" diff --git a/l10n/ms_MY/files_encryption.po b/l10n/ms_MY/files_encryption.po index 80ba103e3d..0508639aea 100644 --- a/l10n/ms_MY/files_encryption.po +++ b/l10n/ms_MY/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -72,6 +72,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "Simpan..." diff --git a/l10n/my_MM/files_encryption.po b/l10n/my_MM/files_encryption.po index 3465eb2405..ee3d359263 100644 --- a/l10n/my_MM/files_encryption.po +++ b/l10n/my_MM/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -72,6 +72,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "" diff --git a/l10n/nb_NO/files.po b/l10n/nb_NO/files.po index e5b14ff8f8..9890ffba4c 100644 --- a/l10n/nb_NO/files.po +++ b/l10n/nb_NO/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 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/files_encryption.po b/l10n/nb_NO/files_encryption.po index 0daabad1ea..063a792c55 100644 --- a/l10n/nb_NO/files_encryption.po +++ b/l10n/nb_NO/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -72,6 +72,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "Lagrer..." diff --git a/l10n/ne/files_encryption.po b/l10n/ne/files_encryption.po index 53e5a46e00..268adc60bd 100644 --- a/l10n/ne/files_encryption.po +++ b/l10n/ne/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -72,6 +72,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "" diff --git a/l10n/nl/files.po b/l10n/nl/files.po index 02a39f9a88..d611330ffc 100644 --- a/l10n/nl/files.po +++ b/l10n/nl/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 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" diff --git a/l10n/nl/files_encryption.po b/l10n/nl/files_encryption.po index e0fd1bf827..d76778bb10 100644 --- a/l10n/nl/files_encryption.po +++ b/l10n/nl/files_encryption.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-28 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 14:50+0000\n" -"Last-Translator: Len \n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -74,6 +74,10 @@ msgid "" "app has been disabled." msgstr "Wees er zeker van dat PHP5.3.3 of nieuwer is geïstalleerd en dat de OpenSSL PHP extensie is ingeschakeld en correct geconfigureerd. De versleutel-app is voorlopig uitgeschakeld." +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "Opslaan" diff --git a/l10n/nl/files_trashbin.po b/l10n/nl/files_trashbin.po index 5c01a77ff9..bea50408d8 100644 --- a/l10n/nl/files_trashbin.po +++ b/l10n/nl/files_trashbin.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# André Koot , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-02 01:56-0400\n" +"PO-Revision-Date: 2013-08-01 13:40+0000\n" +"Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -69,7 +70,7 @@ msgstr "{count} bestanden" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" -msgstr "" +msgstr "hersteld" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" diff --git a/l10n/nn_NO/files.po b/l10n/nn_NO/files.po index 1508b5b0a5..d36ccd2115 100644 --- a/l10n/nn_NO/files.po +++ b/l10n/nn_NO/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 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/files_encryption.po b/l10n/nn_NO/files_encryption.po index c8ba72ef42..467bce6276 100644 --- a/l10n/nn_NO/files_encryption.po +++ b/l10n/nn_NO/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -72,6 +72,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "Lagrar …" diff --git a/l10n/oc/files.po b/l10n/oc/files.po index 950eb920b5..46d00b8043 100644 --- a/l10n/oc/files.po +++ b/l10n/oc/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 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/files_encryption.po b/l10n/oc/files_encryption.po index a9474224b7..6d4d0593d9 100644 --- a/l10n/oc/files_encryption.po +++ b/l10n/oc/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -72,6 +72,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "Enregistra..." diff --git a/l10n/pl/files.po b/l10n/pl/files.po index 4b137554e6..f256b1fec3 100644 --- a/l10n/pl/files.po +++ b/l10n/pl/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 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" diff --git a/l10n/pl/files_encryption.po b/l10n/pl/files_encryption.po index 8342d627db..6a5f9f21dc 100644 --- a/l10n/pl/files_encryption.po +++ b/l10n/pl/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -73,6 +73,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "Zapisywanie..." diff --git a/l10n/pt_BR/files.po b/l10n/pt_BR/files.po index 90375a93ab..cb38b400e0 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 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" diff --git a/l10n/pt_BR/files_encryption.po b/l10n/pt_BR/files_encryption.po index 907be4d30a..486433e9b1 100644 --- a/l10n/pt_BR/files_encryption.po +++ b/l10n/pt_BR/files_encryption.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:10+0000\n" -"Last-Translator: Flávio Veras \n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -74,6 +74,10 @@ msgid "" "app has been disabled." msgstr "Por favor, certifique-se que o PHP 5.3.3 ou mais recente está instalado e que a extensão PHP OpenSSL está habilitado e configurado corretamente. Por enquanto, o aplicativo de criptografia foi desativado." +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "Salvando..." diff --git a/l10n/pt_PT/files.po b/l10n/pt_PT/files.po index f9a45e1db2..3a0d7a3dfe 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 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/files_encryption.po b/l10n/pt_PT/files_encryption.po index 375dee2ebe..7ab5107cbf 100644 --- a/l10n/pt_PT/files_encryption.po +++ b/l10n/pt_PT/files_encryption.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 10:10+0000\n" -"Last-Translator: Helder Meneses \n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -75,6 +75,10 @@ msgid "" "app has been disabled." msgstr "Por favor, certifique-se que PHP 5.3.3 ou mais recente está instalado e que a extensão PHP OpenSSL está ativada e corretamente configurada. Por agora, a encripitação está desativado." +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "A guardar..." diff --git a/l10n/ro/files.po b/l10n/ro/files.po index 766d472d73..6837c350ae 100644 --- a/l10n/ro/files.po +++ b/l10n/ro/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 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" diff --git a/l10n/ro/files_encryption.po b/l10n/ro/files_encryption.po index d499ad94c5..db393386ef 100644 --- a/l10n/ro/files_encryption.po +++ b/l10n/ro/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -72,6 +72,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "Se salvează..." diff --git a/l10n/ru/core.po b/l10n/ru/core.po index 12a8bcb2a5..bb252af722 100644 --- a/l10n/ru/core.po +++ b/l10n/ru/core.po @@ -8,14 +8,15 @@ # foool , 2013 # Victor Bravo <>, 2013 # Vyacheslav Muranov , 2013 +# Den4md , 2013 # Langaru , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-02 01:57-0400\n" +"PO-Revision-Date: 2013-08-01 17:50+0000\n" +"Last-Translator: Den4md \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" @@ -502,7 +503,7 @@ msgstr "Ваша версия PHP уязвима к атаке NULL Byte (CVE-20 #: templates/installation.php:26 #, php-format msgid "Please update your PHP installation to use %s securely." -msgstr "" +msgstr "Пожалуйста обновите Вашу PHP конфигурацию для безопасного использования %s." #: templates/installation.php:32 msgid "" @@ -527,7 +528,7 @@ msgstr "Ваша папка с данными и файлы возможно д msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "" +msgstr "Для информации, как правильно настроить Ваш сервер, пожалуйста загляните в документацию." #: templates/installation.php:47 msgid "Create an admin account" diff --git a/l10n/ru/files.po b/l10n/ru/files.po index dbb38a0716..f47de17a51 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 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/files_encryption.po b/l10n/ru/files_encryption.po index d206ebc812..a7b8d2431f 100644 --- a/l10n/ru/files_encryption.po +++ b/l10n/ru/files_encryption.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-09 02:03+0200\n" -"PO-Revision-Date: 2013-07-08 10:40+0000\n" -"Last-Translator: Victor Bravo <>\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -77,6 +77,10 @@ msgid "" "app has been disabled." msgstr "Пожалуйста, убедитесь, что PHP 5.3.3 или новее установлен и что расширение OpenSSL PHP включен и настроен. В настоящее время, шифрование для приложения было отключено." +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "Сохранение..." diff --git a/l10n/ru/files_sharing.po b/l10n/ru/files_sharing.po index 2c518ea20c..16ded2bfe6 100644 --- a/l10n/ru/files_sharing.po +++ b/l10n/ru/files_sharing.po @@ -4,13 +4,14 @@ # # Translators: # Victor Bravo <>, 2013 +# Den4md , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-02 01:56-0400\n" +"PO-Revision-Date: 2013-08-01 17:40+0000\n" +"Last-Translator: Den4md \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" @@ -32,27 +33,27 @@ msgstr "Отправить" #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." -msgstr "" +msgstr "К сожалению, эта ссылка, похоже не будет работать больше." #: templates/part.404.php:4 msgid "Reasons might be:" -msgstr "" +msgstr "Причиной может быть:" #: templates/part.404.php:6 msgid "the item was removed" -msgstr "" +msgstr "объект был удалён" #: templates/part.404.php:7 msgid "the link expired" -msgstr "" +msgstr "срок ссылки истёк" #: templates/part.404.php:8 msgid "sharing is disabled" -msgstr "" +msgstr "обмен отключен" #: templates/part.404.php:10 msgid "For more info, please ask the person who sent this link." -msgstr "" +msgstr "Для получения дополнительной информации, пожалуйста, спросите того кто отослал данную ссылку." #: templates/public.php:15 #, php-format diff --git a/l10n/ru/files_trashbin.po b/l10n/ru/files_trashbin.po index 20136ac7c1..7dbe2f005c 100644 --- a/l10n/ru/files_trashbin.po +++ b/l10n/ru/files_trashbin.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Den4md , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-02 01:56-0400\n" +"PO-Revision-Date: 2013-08-01 18:00+0000\n" +"Last-Translator: Den4md \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" @@ -69,7 +70,7 @@ msgstr "{count} файлов" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" -msgstr "" +msgstr "восстановлен" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" diff --git a/l10n/si_LK/files.po b/l10n/si_LK/files.po index 8271038a66..934b1e022f 100644 --- a/l10n/si_LK/files.po +++ b/l10n/si_LK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 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/files_encryption.po b/l10n/si_LK/files_encryption.po index fee22ab537..e44e8bf121 100644 --- a/l10n/si_LK/files_encryption.po +++ b/l10n/si_LK/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -72,6 +72,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "සුරැකෙමින් පවතී..." diff --git a/l10n/sk/files_encryption.po b/l10n/sk/files_encryption.po index f4a23c5980..534e069a0a 100644 --- a/l10n/sk/files_encryption.po +++ b/l10n/sk/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -72,6 +72,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "" diff --git a/l10n/sk_SK/files.po b/l10n/sk_SK/files.po index 864a10d1d2..9cb1d0c639 100644 --- a/l10n/sk_SK/files.po +++ b/l10n/sk_SK/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 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/files_encryption.po b/l10n/sk_SK/files_encryption.po index f32ee0daed..18ec2cbea2 100644 --- a/l10n/sk_SK/files_encryption.po +++ b/l10n/sk_SK/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -73,6 +73,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "Ukladám..." diff --git a/l10n/sl/files.po b/l10n/sl/files.po index 728a20867e..0983be14b8 100644 --- a/l10n/sl/files.po +++ b/l10n/sl/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 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/files_encryption.po b/l10n/sl/files_encryption.po index b9ee63d408..ebfcc9ce53 100644 --- a/l10n/sl/files_encryption.po +++ b/l10n/sl/files_encryption.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-01 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 08:10+0000\n" -"Last-Translator: barbarak \n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -73,6 +73,10 @@ msgid "" "app has been disabled." msgstr "Preverite, da imate na strežniku nameščen PHP 5.3.3 ali novejši in da je omogočen in pravilno nastavljen PHP OpenSSL . Zaenkrat je šifriranje onemogočeno." +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "Poteka shranjevanje ..." diff --git a/l10n/sq/files.po b/l10n/sq/files.po index 5b7dc62337..4937d145aa 100644 --- a/l10n/sq/files.po +++ b/l10n/sq/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 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/files_encryption.po b/l10n/sq/files_encryption.po index 1642b96a82..3aeb952347 100644 --- a/l10n/sq/files_encryption.po +++ b/l10n/sq/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -72,6 +72,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "" diff --git a/l10n/sr/files.po b/l10n/sr/files.po index 49bcc63644..741113a8e7 100644 --- a/l10n/sr/files.po +++ b/l10n/sr/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 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/files_encryption.po b/l10n/sr/files_encryption.po index 081f03f53f..04ed7d5cf2 100644 --- a/l10n/sr/files_encryption.po +++ b/l10n/sr/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -72,6 +72,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "Чување у току..." diff --git a/l10n/sr@latin/files.po b/l10n/sr@latin/files.po index 7905ba199a..3cd21eb3ef 100644 --- a/l10n/sr@latin/files.po +++ b/l10n/sr@latin/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 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/files_encryption.po b/l10n/sr@latin/files_encryption.po index a85e29f4eb..9fb01330ab 100644 --- a/l10n/sr@latin/files_encryption.po +++ b/l10n/sr@latin/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -72,6 +72,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "" diff --git a/l10n/sv/files.po b/l10n/sv/files.po index b689f93909..370cb2dd67 100644 --- a/l10n/sv/files.po +++ b/l10n/sv/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:40+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/files_encryption.po b/l10n/sv/files_encryption.po index cfb13426d4..5edf9c93ba 100644 --- a/l10n/sv/files_encryption.po +++ b/l10n/sv/files_encryption.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-22 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 14:20+0000\n" -"Last-Translator: Stefan Gagner \n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -76,6 +76,10 @@ msgid "" "app has been disabled." msgstr "Kontrollera att PHP 5.3.3 eller senare är installerad och att tillägget OpenSSL PHP är aktiverad och rätt inställd. Kryperingsappen är därför tillsvidare inaktiverad." +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "Sparar..." diff --git a/l10n/sw_KE/files_encryption.po b/l10n/sw_KE/files_encryption.po index 50c13bf25e..2e880b9ae9 100644 --- a/l10n/sw_KE/files_encryption.po +++ b/l10n/sw_KE/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -72,6 +72,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "" diff --git a/l10n/ta_LK/files.po b/l10n/ta_LK/files.po index 6dc52aac12..a98cdc44aa 100644 --- a/l10n/ta_LK/files.po +++ b/l10n/ta_LK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 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/files_encryption.po b/l10n/ta_LK/files_encryption.po index fc2389171d..85a61d043e 100644 --- a/l10n/ta_LK/files_encryption.po +++ b/l10n/ta_LK/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -72,6 +72,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "சேமிக்கப்படுகிறது..." diff --git a/l10n/te/files.po b/l10n/te/files.po index c2af073ef3..ef08c1f10d 100644 --- a/l10n/te/files.po +++ b/l10n/te/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 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" @@ -120,7 +120,7 @@ msgstr "" msgid "Delete permanently" msgstr "శాశ్వతంగా తొలగించు" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "తొలగించు" @@ -128,7 +128,7 @@ msgstr "తొలగించు" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "" @@ -160,11 +160,11 @@ msgstr "" msgid "perform delete operation" msgstr "" -#: js/filelist.js:457 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "" @@ -200,15 +200,15 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "పేరు" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "పరిమాణం" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "" @@ -285,45 +285,45 @@ msgstr "సంచయం" msgid "From link" msgstr "" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Upload too large" msgstr "" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "" diff --git a/l10n/te/files_encryption.po b/l10n/te/files_encryption.po index 20a34b874a..8dbcbdbcb7 100644 --- a/l10n/te/files_encryption.po +++ b/l10n/te/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -73,6 +73,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index a17c203493..38f45d3131 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-01 01:55-0400\n" +"POT-Creation-Date: 2013-08-02 01:57-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 385fca6c68..b1d3cd06b8 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-01 01:55-0400\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 1ae308d9e9..8437368401 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-01 01:55-0400\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -71,6 +71,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index 2b215ef21c..b02077817c 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-01 01:55-0400\n" +"POT-Creation-Date: 2013-08-02 01:56-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index 4da92b8c63..659a2efda8 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-01 01:55-0400\n" +"POT-Creation-Date: 2013-08-02 01:56-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index 917bb63291..e5715a1710 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-01 01:55-0400\n" +"POT-Creation-Date: 2013-08-02 01:56-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index fabfff67cf..60a03da00b 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-01 01:55-0400\n" +"POT-Creation-Date: 2013-08-02 01:56-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index 71ad60bd0f..90919c9cfd 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-01 01:55-0400\n" +"POT-Creation-Date: 2013-08-02 01:57-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index eafa3a8fa5..440917eb07 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-01 01:55-0400\n" +"POT-Creation-Date: 2013-08-02 01:57-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 2145532de8..7b20dd62de 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-01 01:55-0400\n" +"POT-Creation-Date: 2013-08-02 01:56-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index 20e34edb44..9ef6b6c05c 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-01 01:55-0400\n" +"POT-Creation-Date: 2013-08-02 01:56-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/th_TH/files.po b/l10n/th_TH/files.po index 5b14df3941..3107408129 100644 --- a/l10n/th_TH/files.po +++ b/l10n/th_TH/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 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" diff --git a/l10n/th_TH/files_encryption.po b/l10n/th_TH/files_encryption.po index ad469023b1..5408793a7c 100644 --- a/l10n/th_TH/files_encryption.po +++ b/l10n/th_TH/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -72,6 +72,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "กำลังบันทึกข้อมูล..." diff --git a/l10n/tr/files.po b/l10n/tr/files.po index 4684d344ee..a6f545c65e 100644 --- a/l10n/tr/files.po +++ b/l10n/tr/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:40+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/files_encryption.po b/l10n/tr/files_encryption.po index 5948a3dedb..b14691c609 100644 --- a/l10n/tr/files_encryption.po +++ b/l10n/tr/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -73,6 +73,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "Kaydediliyor..." diff --git a/l10n/ug/files.po b/l10n/ug/files.po index d312f8badd..5b7a57f3fe 100644 --- a/l10n/ug/files.po +++ b/l10n/ug/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:40+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files_encryption.po b/l10n/ug/files_encryption.po index 896e7bb478..aae8deada3 100644 --- a/l10n/ug/files_encryption.po +++ b/l10n/ug/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" @@ -72,6 +72,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "ساقلاۋاتىدۇ…" diff --git a/l10n/uk/files.po b/l10n/uk/files.po index 0928802b6a..5f9e6441d6 100644 --- a/l10n/uk/files.po +++ b/l10n/uk/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 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" diff --git a/l10n/uk/files_encryption.po b/l10n/uk/files_encryption.po index 4899683a17..ec9f68aed1 100644 --- a/l10n/uk/files_encryption.po +++ b/l10n/uk/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -72,6 +72,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "Зберігаю..." diff --git a/l10n/ur_PK/files_encryption.po b/l10n/ur_PK/files_encryption.po index b082d1236b..52723eb59e 100644 --- a/l10n/ur_PK/files_encryption.po +++ b/l10n/ur_PK/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -72,6 +72,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "" diff --git a/l10n/vi/files.po b/l10n/vi/files.po index 990c1c729a..ca43703fa1 100644 --- a/l10n/vi/files.po +++ b/l10n/vi/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 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/files_encryption.po b/l10n/vi/files_encryption.po index d075fbbae3..ed0dda9104 100644 --- a/l10n/vi/files_encryption.po +++ b/l10n/vi/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -73,6 +73,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "Đang lưu..." diff --git a/l10n/zh_CN.GB2312/files.po b/l10n/zh_CN.GB2312/files.po index 0110f62f0f..bbcfe2019c 100644 --- a/l10n/zh_CN.GB2312/files.po +++ b/l10n/zh_CN.GB2312/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:40+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/files_encryption.po b/l10n/zh_CN.GB2312/files_encryption.po index ea02882e9b..7fab6e1ae7 100644 --- a/l10n/zh_CN.GB2312/files_encryption.po +++ b/l10n/zh_CN.GB2312/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -72,6 +72,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "保存中..." diff --git a/l10n/zh_CN/files.po b/l10n/zh_CN/files.po index c43db5b90c..02d055c5c5 100644 --- a/l10n/zh_CN/files.po +++ b/l10n/zh_CN/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 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/files_encryption.po b/l10n/zh_CN/files_encryption.po index 08588336e1..61e263ad2a 100644 --- a/l10n/zh_CN/files_encryption.po +++ b/l10n/zh_CN/files_encryption.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -75,6 +75,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "保存中" diff --git a/l10n/zh_HK/files_encryption.po b/l10n/zh_HK/files_encryption.po index 7a7dd9fef9..7cba2f446a 100644 --- a/l10n/zh_HK/files_encryption.po +++ b/l10n/zh_HK/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+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" @@ -72,6 +72,10 @@ msgid "" "app has been disabled." msgstr "" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "" diff --git a/l10n/zh_TW/files.po b/l10n/zh_TW/files.po index d50a170ed9..ad4babbbca 100644 --- a/l10n/zh_TW/files.po +++ b/l10n/zh_TW/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:41+0000\n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 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" diff --git a/l10n/zh_TW/files_encryption.po b/l10n/zh_TW/files_encryption.po index 9f2eb99c36..d3b22dc0e5 100644 --- a/l10n/zh_TW/files_encryption.po +++ b/l10n/zh_TW/files_encryption.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-26 12:40+0000\n" -"Last-Translator: Flymok \n" +"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 05:57+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -74,6 +74,10 @@ msgid "" "app has been disabled." msgstr "請確認已安裝 PHP 5.3.3 或更新的版本並啟用 OpenSSL PHP 且正確設定。目前 encryption app 不可使用。" +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "儲存中..." diff --git a/settings/l10n/cs_CZ.php b/settings/l10n/cs_CZ.php index c962c6a179..350a77a09f 100644 --- a/settings/l10n/cs_CZ.php +++ b/settings/l10n/cs_CZ.php @@ -1,6 +1,6 @@ "Nelze načíst seznam z App Store", -"Authentication error" => "Chyba ověření", +"Authentication error" => "Chyba přihlášení", "Your display name has been changed." => "Vaše zobrazované jméno bylo změněno.", "Unable to change display name" => "Nelze změnit zobrazované jméno", "Group already exists" => "Skupina již existuje", @@ -14,7 +14,7 @@ "Invalid request" => "Neplatný požadavek", "Admins can't remove themself from the admin group" => "Správci se nemohou odebrat sami ze skupiny správců", "Unable to add user to group %s" => "Nelze přidat uživatele do skupiny %s", -"Unable to remove user from group %s" => "Nelze odstranit uživatele ze skupiny %s", +"Unable to remove user from group %s" => "Nelze odebrat uživatele ze skupiny %s", "Couldn't update app." => "Nelze aktualizovat aplikaci.", "Update to {appversion}" => "Aktualizovat na {appversion}", "Disable" => "Zakázat", @@ -26,7 +26,7 @@ "Updated" => "Aktualizováno", "Saving..." => "Ukládám...", "deleted" => "smazáno", -"undo" => "zpět", +"undo" => "vrátit zpět", "Unable to remove user" => "Nelze odebrat uživatele", "Groups" => "Skupiny", "Group Admin" => "Správa skupiny", @@ -37,27 +37,27 @@ "A valid password must be provided" => "Musíte zadat platné heslo", "__language_name__" => "Česky", "Security Warning" => "Bezpečnostní upozornění", -"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." => "Váš datový adresář i vaše soubory jsou pravděpodobně přístupné z internetu. Soubor .htaccess nefunguje. Důrazně doporučujeme nakonfigurovat webový server, aby datový adresář nebyl nadále přístupný nebo přesunout datový adresář mimo adresář zpřístupňovaný webovým serverem.", +"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." => "Váš datový adresář i vaše soubory jsou pravděpodobně přístupné z internetu. Soubor .htaccess nefunguje. Důrazně doporučujeme nakonfigurovat webový server tak, aby datový adresář nebyl nadále přístupný, nebo přesunout datový adresář mimo prostor zpřístupňovaný webovým serverem.", "Setup Warning" => "Upozornění nastavení", -"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, protože rozhraní WebDAV je rozbité.", +"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, protože rozhraní WebDAV se zdá nefunkční.", "Please double check the installation guides." => "Zkontrolujte prosím znovu instalační příručku.", "Module 'fileinfo' missing" => "Schází modul 'fileinfo'", -"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Schází modul PHP 'fileinfo'. Doporučujeme jej povolit pro nejlepší výsledky detekce typů MIME.", -"Locale not working" => "Locale nefunguje", -"System locale can't be set to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "Systémové nastavení lokalizace nemohlo být nastaveno na %s. Mohou se tedy vyskytnout problémy s některými znaky v názvech souborů. Důrazně doporučujeme nainstalovat balíčky potřebné pro podporu %s ve vašem systému.", -"Internet connection not working" => "Spojení s internetem nefujguje", -"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í připojení k internetu. Některé moduly jako externí úložiště, oznámení o dostupných aktualizacích nebo instalace aplikací třetích stran nebudou fungovat. Přístup k souborům z jiných míst a odesílání oznamovacích e-mailů také nemusí fungovat. Pokud si přejete využívat všech vlastností ownCloud, doporučujeme povolit připojení k internetu tomuto serveru.", +"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Schází PHP modul 'fileinfo'. Doporučujeme jej povolit pro nejlepší výsledky detekce typů MIME.", +"Locale not working" => "Lokalizace nefunguje", +"System locale can't be set to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "Systémové nastavení lokalizace nemohlo být nastaveno na %s. To znamená, že se mohou vyskytnout problémy s některými znaky v názvech souborů. Důrazně doporučujeme nainstalovat do vašeho systému balíčky potřebné pro podporu %s.", +"Internet connection not working" => "Připojení k internetu 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í připojení k internetu. Některé moduly jako např. externí úložiště, oznámení o dostupných aktualizacích nebo instalace aplikací třetích stran nebudou fungovat. Přístup k souborům z jiných míst a odesílání oznamovacích e-mailů také nemusí fungovat. Pokud si přejete využívat všech vlastností ownCloud, doporučujeme povolit připojení k internetu tomuto serveru.", "Cron" => "Cron", -"Execute one task with each page loaded" => "Spustit jednu úlohu s každou načtenou stránkou", -"cron.php is registered at a webcron service to call cron.php once a minute over http." => "cron.php je registrován u služby webcron pro zavolání stránky cron.php jednou za minutu po http.", -"Use systems cron service to call the cron.php file once a minute." => "Použijte systémovou službu cron pro spouštění souboru cron.php jednou za minutu.", +"Execute one task with each page loaded" => "Spustit jednu úlohu s každým načtením stránky", +"cron.php is registered at a webcron service to call cron.php once a minute over http." => "cron.php je registrován u služby webcron pro zavolání stránky cron.php jednou za minutu přes HTTP.", +"Use systems cron service to call the cron.php file once a minute." => "Použít systémovou službu cron pro spouštění souboru cron.php jednou za minutu.", "Sharing" => "Sdílení", "Enable Share API" => "Povolit API sdílení", "Allow apps to use the Share API" => "Povolit aplikacím používat API sdílení", "Allow links" => "Povolit odkazy", -"Allow users to share items to the public with links" => "Povolit uživatelům sdílet položky s veřejností pomocí odkazů", -"Allow public uploads" => "Povolit veřejné soubory", -"Allow users to enable others to upload into their publicly shared folders" => "Povolit uživatelům umožnit ostatním nahrávat do jejich veřejně sdílené složky", +"Allow users to share items to the public with links" => "Povolit uživatelům sdílet položky veřejně pomocí odkazů", +"Allow public uploads" => "Povolit veřejné nahrávání souborů", +"Allow users to enable others to upload into their publicly shared folders" => "Povolit uživatelům, aby mohli ostatním umožnit nahrávat do jejich veřejně sdílené složky", "Allow resharing" => "Povolit znovu-sdílení", "Allow users to share items shared with them again" => "Povolit uživatelům znovu sdílet položky, které jsou pro ně sdíleny", "Allow users to share with anyone" => "Povolit uživatelům sdílet s kýmkoliv", @@ -67,12 +67,12 @@ "Forces the clients to connect to %s via an encrypted connection." => "Vynutí připojování klientů k %s šifrovaným spojením.", "Please connect to your %s via HTTPS to enable or disable the SSL enforcement." => "Připojte se k %s skrze HTTPS pro povolení nebo zakázání vynucování SSL.", "Log" => "Záznam", -"Log level" => "Úroveň záznamu", +"Log level" => "Úroveň zaznamenávání", "More" => "Více", "Less" => "Méně", "Version" => "Verze", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Vyvinuto komunitou ownCloud, zdrojový kód je licencován pod AGPL.", -"Add your App" => "Přidat Vaší aplikaci", +"Add your App" => "Přidat Vaši aplikaci", "More Apps" => "Více aplikací", "Select an App" => "Vyberte aplikaci", "See application page at apps.owncloud.com" => "Více na stránce s aplikacemi na apps.owncloud.com", @@ -89,14 +89,14 @@ "You have used %s of the available %s" => "Používáte %s z %s dostupných", "Password" => "Heslo", "Your password was changed" => "Vaše heslo bylo změněno", -"Unable to change your password" => "Vaše heslo nelze změnit", +"Unable to change your password" => "Změna vašeho hesla se nezdařila", "Current password" => "Současné heslo", "New password" => "Nové heslo", "Change password" => "Změnit heslo", "Display Name" => "Zobrazované jméno", "Email" => "E-mail", "Your email address" => "Vaše e-mailová adresa", -"Fill in an email address to enable password recovery" => "Pro povolení změny hesla vyplňte adresu e-mailu", +"Fill in an email address to enable password recovery" => "Pro povolení obnovy hesla vyplňte e-mailovou adresu", "Language" => "Jazyk", "Help translate" => "Pomoci s překladem", "WebDAV" => "WebDAV", From 79351d064f5471862c652f61eef1f221ad6cb59f Mon Sep 17 00:00:00 2001 From: Lennart Rosam Date: Fri, 2 Aug 2013 09:41:31 +0200 Subject: [PATCH 45/64] Make default language configurable via config.php --- config/config.sample.php | 5 ++++- lib/l10n.php | 6 ++++++ 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/config/config.sample.php b/config/config.sample.php index 8d978ea6ee..bcf8ebdedb 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -56,6 +56,9 @@ $CONFIG = array( /* Theme to use for ownCloud */ "theme" => "", +/* Optional ownCLoud default language - overrides automatic language detection on public pages like login or shared items. This has no effect on the users's language preference configured under "personal -> language" once they have logged in */ +"default_language" => "en", + /* Path to the parent directory of the 3rdparty directory */ "3rdpartyroot" => "", @@ -154,7 +157,7 @@ $CONFIG = array( /* Enable/disable X-Frame-Restriction */ /* HIGH SECURITY RISK IF DISABLED*/ "xframe_restriction" => true, - + /* The directory where the user data is stored, default to data in the owncloud * directory. The sqlite database is also stored here, when sqlite is used. */ diff --git a/lib/l10n.php b/lib/l10n.php index d35ce5fed1..a28aa89c5f 100644 --- a/lib/l10n.php +++ b/lib/l10n.php @@ -298,6 +298,12 @@ class OC_L10N{ } } + $default_language = OC_Config::getValue('default_language', false); + + if($default_language !== false) { + return $default_language; + } + if(isset($_SERVER['HTTP_ACCEPT_LANGUAGE'])) { $accepted_languages = preg_split('/,\s*/', strtolower($_SERVER['HTTP_ACCEPT_LANGUAGE'])); if(is_array($app)) { From 504beb6cfd95543c4826f00df4f27730e3655314 Mon Sep 17 00:00:00 2001 From: Lennart Rosam Date: Fri, 2 Aug 2013 10:01:34 +0200 Subject: [PATCH 46/64] Fix typo (again >.<).. gnah --- config/config.sample.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/config.sample.php b/config/config.sample.php index bcf8ebdedb..32d748cf4b 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -56,7 +56,7 @@ $CONFIG = array( /* Theme to use for ownCloud */ "theme" => "", -/* Optional ownCLoud default language - overrides automatic language detection on public pages like login or shared items. This has no effect on the users's language preference configured under "personal -> language" once they have logged in */ +/* Optional ownCloud default language - overrides automatic language detection on public pages like login or shared items. This has no effect on the users's language preference configured under "personal -> language" once they have logged in */ "default_language" => "en", /* Path to the parent directory of the 3rdparty directory */ From ad329f541bc3acf923ee06c9547669b464268679 Mon Sep 17 00:00:00 2001 From: Lennart Rosam Date: Fri, 2 Aug 2013 11:19:33 +0200 Subject: [PATCH 47/64] users's -> user's --- config/config.sample.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/config.sample.php b/config/config.sample.php index 32d748cf4b..c6d7fa0d05 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -56,7 +56,7 @@ $CONFIG = array( /* Theme to use for ownCloud */ "theme" => "", -/* Optional ownCloud default language - overrides automatic language detection on public pages like login or shared items. This has no effect on the users's language preference configured under "personal -> language" once they have logged in */ +/* Optional ownCloud default language - overrides automatic language detection on public pages like login or shared items. This has no effect on the user's language preference configured under "personal -> language" once they have logged in */ "default_language" => "en", /* Path to the parent directory of the 3rdparty directory */ From b12c1cb32521f643bcb3e2c4238fa2b9cf0fda55 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Thu, 1 Aug 2013 14:38:06 +0200 Subject: [PATCH 48/64] add OC.Breadcrumb.show(dir, filename, link) --- core/js/js.js | 62 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) diff --git a/core/js/js.js b/core/js/js.js index a92d41f236..17a24dd4bc 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -370,6 +370,68 @@ OC.Notification={ OC.Breadcrumb={ container:null, crumbs:[], + show:function(dir, filename, link){ + OC.Breadcrumb.clear(); + var path = dir.split('/'); + + //add home + var link = OC.linkTo('files','index.php'); + + var crumb=$('

'); + crumb.addClass('crumb'); + + var crumbLink=$(''); + crumbLink.attr('href',link); + + var crumbImg=$(''); + crumbImg.attr('src',OC.imagePath('core','places/home')); + crumbLink.append(crumbImg); + crumb.append(crumbLink); + OC.Breadcrumb.crumbs.push(crumb); + + //add path parts + var pathurl = ''; + jQuery.each(path, function(i,name) { + if (name !== '') { + pathurl = pathurl+'/'+name; + var link = OC.linkTo('files','index.php')+'?dir='+encodeURIComponent(pathurl); + + var crumb=$('
'); + crumb.addClass('crumb'); + + var crumbLink=$(''); + crumbLink.attr('href',link); + crumbLink.text(name); + crumb.append(crumbLink); + OC.Breadcrumb.crumbs.push(crumb); + } + }); + + //add filename (optional) + if (filename && link) { + pathurl = pathurl+'/'+filename; + + var crumb=$('
'); + crumb.addClass('crumb'); + + var crumbLink=$(''); + crumbLink.attr('href',link); + crumbLink.text(filename); + crumb.append(crumbLink); + OC.Breadcrumb.crumbs.push(crumb); + } + + // update crumb array + var lastCrumb = OC.Breadcrumb.crumbs.pop(); + lastCrumb = jQuery(lastCrumb).addClass('last'); + OC.Breadcrumb.crumbs.push(lastCrumb); + var crumbs = OC.Breadcrumb.crumbs; + crumbs.reverse(); + jQuery.each(crumbs, function(i,crumb){ + OC.Breadcrumb.container.prepend(crumb); + }); + + }, push:function(name, link){ if(!OC.Breadcrumb.container){//default OC.Breadcrumb.container=$('#controls'); From f8bb4e10ae5378122328f8e105494fd7af3db260 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Fri, 2 Aug 2013 11:44:53 +0200 Subject: [PATCH 49/64] use fixed OC.Breadcrumb.push() --- core/js/js.js | 84 ++++++++++++++++++--------------------------------- 1 file changed, 30 insertions(+), 54 deletions(-) diff --git a/core/js/js.js b/core/js/js.js index 17a24dd4bc..03f660be62 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -370,67 +370,43 @@ OC.Notification={ OC.Breadcrumb={ container:null, crumbs:[], - show:function(dir, filename, link){ + show:function(dir, leafname, leaflink){ OC.Breadcrumb.clear(); - var path = dir.split('/'); - //add home - var link = OC.linkTo('files','index.php'); - - var crumb=$('
'); - crumb.addClass('crumb'); + // show home + path in subdirectories + if (dir && dir !== '/') { + //add home + var link = OC.linkTo('files','index.php'); - var crumbLink=$(''); - crumbLink.attr('href',link); - - var crumbImg=$(''); - crumbImg.attr('src',OC.imagePath('core','places/home')); - crumbLink.append(crumbImg); - crumb.append(crumbLink); - OC.Breadcrumb.crumbs.push(crumb); - - //add path parts - var pathurl = ''; - jQuery.each(path, function(i,name) { - if (name !== '') { - pathurl = pathurl+'/'+name; - var link = OC.linkTo('files','index.php')+'?dir='+encodeURIComponent(pathurl); - - var crumb=$('
'); - crumb.addClass('crumb'); + var crumb=$('
'); + crumb.addClass('crumb'); - var crumbLink=$(''); - crumbLink.attr('href',link); - crumbLink.text(name); - crumb.append(crumbLink); - OC.Breadcrumb.crumbs.push(crumb); - } - }); - - //add filename (optional) - if (filename && link) { - pathurl = pathurl+'/'+filename; - - var crumb=$('
'); - crumb.addClass('crumb'); + var crumbLink=$(''); + crumbLink.attr('href',link); - var crumbLink=$(''); - crumbLink.attr('href',link); - crumbLink.text(filename); - crumb.append(crumbLink); - OC.Breadcrumb.crumbs.push(crumb); + var crumbImg=$(''); + crumbImg.attr('src',OC.imagePath('core','places/home')); + crumbLink.append(crumbImg); + crumb.append(crumbLink); + OC.Breadcrumb.container.prepend(crumb); + OC.Breadcrumb.crumbs.push(crumb); + + //add path parts + var segments = dir.split('/'); + var pathurl = ''; + jQuery.each(segments, function(i,name) { + if (name !== '') { + pathurl = pathurl+'/'+name; + var link = OC.linkTo('files','index.php')+'?dir='+encodeURIComponent(pathurl); + OC.Breadcrumb.push(name, link); + } + }); } - // update crumb array - var lastCrumb = OC.Breadcrumb.crumbs.pop(); - lastCrumb = jQuery(lastCrumb).addClass('last'); - OC.Breadcrumb.crumbs.push(lastCrumb); - var crumbs = OC.Breadcrumb.crumbs; - crumbs.reverse(); - jQuery.each(crumbs, function(i,crumb){ - OC.Breadcrumb.container.prepend(crumb); - }); - + //add leafname + if (leafname && leaflink) { + OC.Breadcrumb.push(leafname, leaflink); + } }, push:function(name, link){ if(!OC.Breadcrumb.container){//default From f5c3a346b00b7c8e4926b898f6e6ade86de74c73 Mon Sep 17 00:00:00 2001 From: Bernhard Posselt Date: Fri, 2 Aug 2013 13:34:20 +0200 Subject: [PATCH 50/64] make log date configurable, default to iso 8601 --- lib/log/owncloud.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/log/owncloud.php b/lib/log/owncloud.php index 7a11a58833..e7246726d4 100644 --- a/lib/log/owncloud.php +++ b/lib/log/owncloud.php @@ -49,7 +49,9 @@ class OC_Log_Owncloud { public static function write($app, $message, $level) { $minLevel=min(OC_Config::getValue( "loglevel", OC_Log::WARN ), OC_Log::ERROR); if($level>=$minLevel) { - $time = date("F d, Y H:i:s", time()); + // default to ISO8601 + $format = OC_Config::getValue('logdateformat', 'c'); + $time = date($format, time()); $entry=array('app'=>$app, 'message'=>$message, 'level'=>$level, 'time'=> $time); $handle = @fopen(self::$logFile, 'a'); if ($handle) { From de0dc30d8925f43ddec0e8bb5d2986ab3609919a Mon Sep 17 00:00:00 2001 From: kondou Date: Fri, 2 Aug 2013 15:00:12 +0200 Subject: [PATCH 51/64] Update skipped tests messages --- tests/lib/image.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/lib/image.php b/tests/lib/image.php index a04fe662c1..0583c30007 100644 --- a/tests/lib/image.php +++ b/tests/lib/image.php @@ -55,7 +55,7 @@ class Test_Image extends PHPUnit_Framework_TestCase { } public function testMimeType() { - $this->markTestSkipped("When loading an image from anything, but a file, the imagetype is always png"); + $this->markTestSkipped("When loading from data or base64, imagetype is always image/png, see #4258."); $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.png'); $this->assertEquals('image/png', $img->mimeType()); @@ -105,7 +105,7 @@ class Test_Image extends PHPUnit_Framework_TestCase { } public function testData() { - $this->markTestSkipped("Somehow data() doesn't equal file_get_contents's data"); + $this->markTestSkipped("\OC_Image->data() converts to png before outputting data, see #4258."); $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.png'); $expected = file_get_contents(OC::$SERVERROOT.'/tests/data/testimage.png'); $this->assertEquals($expected, $img->data()); @@ -120,7 +120,7 @@ class Test_Image extends PHPUnit_Framework_TestCase { } public function testToString() { - $this->markTestSkipped("Somehow data() doesn't equal file_get_contents's data"); + $this->markTestSkipped("\OC_Image->data() converts to png before outputting data, see #4258."); $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.png'); $expected = base64_encode(file_get_contents(OC::$SERVERROOT.'/tests/data/testimage.png')); $this->assertEquals($expected, (string)$img); From a7a05b321afd0085bd0e8c068c95e654d229e27c Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Fri, 2 Aug 2013 15:36:54 +0200 Subject: [PATCH 52/64] Use console.php entry point for file scanning from console --- scanFiles.php => apps/files/console/scan.php | 2 -- console.php | 25 ++++++++++++++++++++ 2 files changed, 25 insertions(+), 2 deletions(-) rename scanFiles.php => apps/files/console/scan.php (95%) create mode 100644 console.php diff --git a/scanFiles.php b/apps/files/console/scan.php similarity index 95% rename from scanFiles.php rename to apps/files/console/scan.php index 2144fce5d5..118e586aea 100644 --- a/scanFiles.php +++ b/apps/files/console/scan.php @@ -1,7 +1,5 @@ + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +$RUNTIME_NOAPPS = true; +require_once 'lib/base.php'; + +// Don't do anything if ownCloud has not been installed yet +if (!OC_Config::getValue('installed', false)) { + exit(0); +} + +if (OC::$CLI) { + if ($argc > 1 && $argv[1] === 'files:scan') { + require_once 'apps/files/console/scan.php'; + } +} +else +{ + echo "This script can be run from the command line only\n"; +} From fd317f599bd1d5fe2ae0260f3dec476a6efd5fdd Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Mon, 25 Feb 2013 22:59:06 +0100 Subject: [PATCH 53/64] Simplify OC_DB transaction functions --- lib/db.php | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/lib/db.php b/lib/db.php index dd48c32949..311cdcfecf 100644 --- a/lib/db.php +++ b/lib/db.php @@ -56,7 +56,6 @@ class OC_DB { */ static private $DOCTRINE=null; - static private $inTransaction=false; static private $prefix=null; static private $type=null; @@ -624,27 +623,18 @@ class OC_DB { /** * Start a transaction - * @return bool */ public static function beginTransaction() { self::connect(); self::$connection->beginTransaction(); - self::$inTransaction=true; - return true; } /** * Commit the database changes done during a transaction that is in progress - * @return bool */ public static function commit() { self::connect(); - if(!self::$inTransaction) { - return false; - } self::$connection->commit(); - self::$inTransaction=false; - return true; } /** From 5e1a775016ef9eca6d05c0503996650688e39575 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Fri, 2 Aug 2013 21:23:26 +0200 Subject: [PATCH 54/64] adjust usage text --- apps/files/console/scan.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/files/console/scan.php b/apps/files/console/scan.php index 118e586aea..b9eccfb993 100644 --- a/apps/files/console/scan.php +++ b/apps/files/console/scan.php @@ -6,9 +6,9 @@ if (!OC::$CLI) { } if (count($argv) !== 2) { echo "Usage:" . PHP_EOL; - echo " php scanFiles.php " . PHP_EOL; + echo " files:scan " . PHP_EOL; echo " will rescan all files of the given user" . PHP_EOL; - echo " php scanFiles.php --all" . PHP_EOL; + echo " files:scan --all" . PHP_EOL; echo " will rescan all files of all known users" . PHP_EOL; return; } From 58f369d0290feed5c2bc026b22e9ce74d8e85c09 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Fri, 2 Aug 2013 21:23:50 +0200 Subject: [PATCH 55/64] more verbose printouts - fixing execution --- console.php | 25 ++++++++++++++++++------- 1 file changed, 18 insertions(+), 7 deletions(-) diff --git a/console.php b/console.php index a3b1357a28..538837a04b 100644 --- a/console.php +++ b/console.php @@ -11,15 +11,26 @@ require_once 'lib/base.php'; // Don't do anything if ownCloud has not been installed yet if (!OC_Config::getValue('installed', false)) { + echo "Console can only be used once ownCloud has been installed" . PHP_EOL; exit(0); } -if (OC::$CLI) { - if ($argc > 1 && $argv[1] === 'files:scan') { - require_once 'apps/files/console/scan.php'; - } +if (!OC::$CLI) { + echo "This script can be run from the command line only" . PHP_EOL; + exit(0); } -else -{ - echo "This script can be run from the command line only\n"; + +if ($argc < 1) { + echo "Usage:" . PHP_EOL; + echo " php console.php " . PHP_EOL; + exit(0); +} + +$command = $argv[1]; +array_shift($argv); + +if ($command === 'files:scan') { + require_once 'apps/files/console/scan.php'; +} else { + echo "Unknown command '$command'" . PHP_EOL; } From 010c4e0b833409e233b60c2a833485d2f1a34989 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Fri, 2 Aug 2013 21:28:04 +0200 Subject: [PATCH 56/64] remove cli check --- apps/files/console/scan.php | 4 ---- 1 file changed, 4 deletions(-) diff --git a/apps/files/console/scan.php b/apps/files/console/scan.php index b9eccfb993..70183fc888 100644 --- a/apps/files/console/scan.php +++ b/apps/files/console/scan.php @@ -1,9 +1,5 @@ " . PHP_EOL; From 17fe748abc68f016f8bf894a2d0079f0f2ed5c66 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Sat, 3 Aug 2013 01:56:46 -0400 Subject: [PATCH 57/64] [tx-robot] updated from transifex --- apps/files_encryption/l10n/gl.php | 1 + apps/files_encryption/l10n/it.php | 1 + apps/files_encryption/l10n/sv.php | 1 + apps/files_sharing/l10n/sv.php | 6 +++ apps/files_trashbin/l10n/pt_PT.php | 1 + apps/files_trashbin/l10n/sv.php | 1 + apps/user_ldap/l10n/sv.php | 8 ++++ apps/user_webdavauth/l10n/sv.php | 4 +- core/l10n/sv.php | 2 + core/l10n/zh_CN.GB2312.php | 14 +++++++ l10n/gl/files_encryption.po | 8 ++-- l10n/it/files_encryption.po | 8 ++-- l10n/pt_PT/files_trashbin.po | 9 +++-- l10n/sv/core.po | 36 ++++++++--------- l10n/sv/files_encryption.po | 8 ++-- l10n/sv/files_sharing.po | 19 ++++----- l10n/sv/files_trashbin.po | 9 +++-- l10n/sv/settings.po | 19 ++++----- l10n/sv/user_ldap.po | 23 +++++------ l10n/sv/user_webdavauth.po | 10 ++--- l10n/templates/core.pot | 28 ++++++------- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/zh_CN.GB2312/core.po | 61 +++++++++++++++-------------- l10n/zh_CN.GB2312/settings.po | 27 +++++++------ settings/l10n/sv.php | 6 +++ settings/l10n/zh_CN.GB2312.php | 10 +++++ 35 files changed, 200 insertions(+), 140 deletions(-) diff --git a/apps/files_encryption/l10n/gl.php b/apps/files_encryption/l10n/gl.php index db6f57bb36..7b3ad52673 100644 --- a/apps/files_encryption/l10n/gl.php +++ b/apps/files_encryption/l10n/gl.php @@ -10,6 +10,7 @@ "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "A chave privada non é correcta! É probábel que o seu contrasinal teña sido cambiado desde o exterior (p.ex. o seu directorio corporativo). Vostede pode actualizar o contrasinal da súa chave privada nos seus axustes persoais para recuperar o acceso aos seus ficheiros", "Missing requirements." => "Non se cumpren os requisitos.", "Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Asegúrese de que está instalado o PHP 5.3.3 ou posterior e de que a extensión OpenSSL PHP estea activada e configurada correctamente. Polo de agora foi desactivado o aplicativo de cifrado.", +"Following users are not set up for encryption:" => "Os seguintes usuarios non teñen configuración para o cifrado:", "Saving..." => "Gardando...", "Your private key is not valid! Maybe the your password was changed from outside." => "A chave privada non é correcta! É probábel que o seu contrasinal teña sido cambiado desde o exterior. ", "You can unlock your private key in your " => "Pode desbloquear a chave privada nos seus", diff --git a/apps/files_encryption/l10n/it.php b/apps/files_encryption/l10n/it.php index 8d15d1ced3..db1a1b1709 100644 --- a/apps/files_encryption/l10n/it.php +++ b/apps/files_encryption/l10n/it.php @@ -10,6 +10,7 @@ "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "La chiave privata non è valida! Forse la password è stata cambiata esternamente al sistema di ownCloud (ad es. la directory aziendale). Puoi aggiornare la password della chiave privata nelle impostazioni personali per ottenere nuovamente l'accesso ai file.", "Missing requirements." => "Requisiti mancanti.", "Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Assicurati che sia installato PHP 5.3.3 o versioni successive e che l'estensione OpenSSL di PHP sia abilitata e configurata correttamente. Per ora, l'applicazione di cifratura è disabilitata.", +"Following users are not set up for encryption:" => "I seguenti utenti non sono configurati per la cifratura:", "Saving..." => "Salvataggio in corso...", "Your private key is not valid! Maybe the your password was changed from outside." => "La tua chiave privata non è valida! Forse è stata modifica dall'esterno.", "You can unlock your private key in your " => "Puoi sbloccare la chiave privata nelle tue", diff --git a/apps/files_encryption/l10n/sv.php b/apps/files_encryption/l10n/sv.php index 2cef6686fc..785d46cdc7 100644 --- a/apps/files_encryption/l10n/sv.php +++ b/apps/files_encryption/l10n/sv.php @@ -10,6 +10,7 @@ "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Din privata lösenordsnyckel är inte giltig! Troligen har ditt lösenord ändrats utanför ownCloud (t.ex. i företagets katalogtjänst). Du kan uppdatera den privata lösenordsnyckeln under dina personliga inställningar för att återfå tillgång till dina filer.", "Missing requirements." => "Krav som saknas", "Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Kontrollera att PHP 5.3.3 eller senare är installerad och att tillägget OpenSSL PHP är aktiverad och rätt inställd. Kryperingsappen är därför tillsvidare inaktiverad.", +"Following users are not set up for encryption:" => "Följande användare har inte aktiverat kryptering:", "Saving..." => "Sparar...", "Your private key is not valid! Maybe the your password was changed from outside." => "Din privata lösenordsnyckel är inte giltig! Kanske byttes ditt lösenord från utsidan.", "You can unlock your private key in your " => "Du kan låsa upp din privata nyckel i dina", diff --git a/apps/files_sharing/l10n/sv.php b/apps/files_sharing/l10n/sv.php index dac5e33ec5..434a81ac28 100644 --- a/apps/files_sharing/l10n/sv.php +++ b/apps/files_sharing/l10n/sv.php @@ -2,6 +2,12 @@ "The password is wrong. Try again." => "Lösenordet är fel. Försök igen.", "Password" => "Lösenord", "Submit" => "Skicka", +"Sorry, this link doesn’t seem to work anymore." => "Tyvärr, denna länk verkar inte fungera längre.", +"Reasons might be:" => "Orsaker kan vara:", +"the item was removed" => "objektet togs bort", +"the link expired" => "giltighet för länken har gått ut", +"sharing is disabled" => "delning är inaktiverat", +"For more info, please ask the person who sent this link." => "För mer information, kontakta den person som skickade den här länken.", "%s shared the folder %s with you" => "%s delade mappen %s med dig", "%s shared the file %s with you" => "%s delade filen %s med dig", "Download" => "Ladda ner", diff --git a/apps/files_trashbin/l10n/pt_PT.php b/apps/files_trashbin/l10n/pt_PT.php index ba85158b70..044d324c5a 100644 --- a/apps/files_trashbin/l10n/pt_PT.php +++ b/apps/files_trashbin/l10n/pt_PT.php @@ -11,6 +11,7 @@ "{count} folders" => "{count} pastas", "1 file" => "1 ficheiro", "{count} files" => "{count} ficheiros", +"restored" => "Restaurado", "Nothing in here. Your trash bin is empty!" => "Não hà ficheiros. O lixo está vazio!", "Restore" => "Restaurar", "Delete" => "Eliminar", diff --git a/apps/files_trashbin/l10n/sv.php b/apps/files_trashbin/l10n/sv.php index d56d8946f3..2e4a5b4261 100644 --- a/apps/files_trashbin/l10n/sv.php +++ b/apps/files_trashbin/l10n/sv.php @@ -11,6 +11,7 @@ "{count} folders" => "{count} mappar", "1 file" => "1 fil", "{count} files" => "{count} filer", +"restored" => "återställd", "Nothing in here. Your trash bin is empty!" => "Ingenting här. Din papperskorg är tom!", "Restore" => "Återskapa", "Delete" => "Radera", diff --git a/apps/user_ldap/l10n/sv.php b/apps/user_ldap/l10n/sv.php index 60bfd7829e..2617ca414a 100644 --- a/apps/user_ldap/l10n/sv.php +++ b/apps/user_ldap/l10n/sv.php @@ -15,6 +15,7 @@ "Connection test failed" => "Anslutningstestet misslyckades", "Do you really want to delete the current Server Configuration?" => "Vill du verkligen radera den nuvarande serverinställningen?", "Confirm Deletion" => "Bekräfta radering", +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." => "Varning: Apps user_ldap och user_webdavauth är inkompatibla. Oväntade problem kan uppstå. Be din systemadministratör att inaktivera en av dom.", "Warning: The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." => "Varning: PHP LDAP - modulen är inte installerad, serversidan kommer inte att fungera. Kontakta din systemadministratör för installation.", "Server configuration" => "Serverinställning", "Add Server Configuration" => "Lägg till serverinställning", @@ -44,20 +45,24 @@ "Give an optional backup host. It must be a replica of the main LDAP/AD server." => "Ange en valfri värd för säkerhetskopiering. Den måste vara en replika av den huvudsakliga LDAP/AD-servern", "Backup (Replica) Port" => "Säkerhetskopierins-port (Replika)", "Disable Main Server" => "Inaktivera huvudserver", +"Only connect to the replica server." => "Anslut endast till replikaservern.", "Use TLS" => "Använd TLS", "Do not use it additionally for LDAPS connections, it will fail." => "Använd inte för LDAPS-anslutningar, det kommer inte att fungera.", "Case insensitve LDAP server (Windows)" => "LDAP-servern är okänslig för gemener och versaler (Windows)", "Turn off SSL certificate validation." => "Stäng av verifiering av SSL-certifikat.", +"If connection only works with this option, import the LDAP server's SSL certificate in your %s server." => "Om anslutningen bara fungerar med detta alternativ, importera LDAP-serverns SSL-certifikat i din% s server.", "Not recommended, use for testing only." => "Rekommenderas inte, använd bara för test. ", "Cache Time-To-Live" => "Cache Time-To-Live", "in seconds. A change empties the cache." => "i sekunder. En förändring tömmer cache.", "Directory Settings" => "Mappinställningar", "User Display Name Field" => "Attribut för användarnamn", +"The LDAP attribute to use to generate the user's display name." => "LDAP-attributet som ska användas för att generera användarens visningsnamn.", "Base User Tree" => "Bas för användare i katalogtjänst", "One User Base DN per line" => "En Användare start DN per rad", "User Search Attributes" => "Användarsökningsattribut", "Optional; one attribute per line" => "Valfritt; ett attribut per rad", "Group Display Name Field" => "Attribut för gruppnamn", +"The LDAP attribute to use to generate the groups's display name." => "LDAP-attributet som ska användas för att generera gruppens visningsnamn.", "Base Group Tree" => "Bas för grupper i katalogtjänst", "One Group Base DN per line" => "En Grupp start DN per rad", "Group Search Attributes" => "Gruppsökningsattribut", @@ -70,10 +75,13 @@ "User Home Folder Naming Rule" => "Namnregel för hemkatalog", "Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Lämnas tomt för användarnamn (standard). Ange annars ett LDAP/AD-attribut.", "Internal Username" => "Internt Användarnamn", +"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." => "Som standard skapas det interna användarnamnet från UUID-attributet. Det säkerställer att användarnamnet är unikt och tecken inte behöver konverteras. Det interna användarnamnet har restriktionerna att endast följande tecken är tillåtna: [ a-zA-Z0-9_.@- ]. Andra tecken blir ersatta av deras motsvarighet i ASCII eller utelämnas helt. En siffra kommer att läggas till eller ökas på vid en kollision. Det interna användarnamnet används för att identifiera användaren internt. Det är även förvalt som användarens användarnamn i ownCloud. Det är även en port för fjärråtkomst, t.ex. för alla *DAV-tjänster. Med denna inställning kan det förvalda beteendet åsidosättas. För att uppnå ett liknande beteende som innan ownCloud 5, ange attributet för användarens visningsnamn i detta fält. Lämna det tomt för förvalt beteende. Ändringarna kommer endast att påverka nyligen mappade (tillagda) LDAP-användare", "Internal Username Attribute:" => "Internt Användarnamn Attribut:", "Override UUID detection" => "Åsidosätt UUID detektion", +"By default, the UUID attribute is automatically detected. The UUID attribute is used to doubtlessly identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." => "Som standard upptäcker ownCloud automatiskt UUID-attributet. Det UUID-attributet används för att utan tvivel identifiera LDAP-användare och grupper. Dessutom kommer interna användarnamn skapas baserat på detta UUID, om inte annat anges ovan. Du kan åsidosätta inställningen och passera ett attribut som du själv väljer. Du måste se till att attributet som du väljer kan hämtas för både användare och grupper och att det är unikt. Lämna det tomt för standard beteende. Förändringar kommer endast att påverka nyligen mappade (tillagda) LDAP-användare och grupper.", "UUID Attribute:" => "UUID Attribut:", "Username-LDAP User Mapping" => "Användarnamn-LDAP User Mapping", +"Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have a internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." => "ownCloud använder sig av användarnamn för att lagra och tilldela (meta) data. För att exakt kunna identifiera och känna igen användare, kommer varje LDAP-användare ha ett internt användarnamn. Detta kräver en mappning från ownCloud-användarnamn till LDAP-användare. Det skapade användarnamnet mappas till UUID för LDAP-användaren. Dessutom cachas DN samt minska LDAP-interaktionen, men den används inte för identifiering. Om DN förändras, kommer förändringarna hittas av ownCloud. Det interna ownCloud-namnet används överallt i ownCloud. Om du rensar/raderar mappningarna kommer att lämna referenser överallt i systemet. Men den är inte konfigurationskänslig, den påverkar alla LDAP-konfigurationer! Rensa/radera aldrig mappningarna i en produktionsmiljö. Utan gör detta endast på i testmiljö!", "Clear Username-LDAP User Mapping" => "Rensa Användarnamn-LDAP User Mapping", "Clear Groupname-LDAP Group Mapping" => "Rensa Gruppnamn-LDAP Group Mapping", "Test Configuration" => "Testa konfigurationen", diff --git a/apps/user_webdavauth/l10n/sv.php b/apps/user_webdavauth/l10n/sv.php index 95096ce7e9..6aae1c2e1a 100644 --- a/apps/user_webdavauth/l10n/sv.php +++ b/apps/user_webdavauth/l10n/sv.php @@ -1,3 +1,5 @@ "WebDAV Autentisering" +"WebDAV Authentication" => "WebDAV Autentisering", +"Address: " => "Adress: ", +"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." => "ownCloud kommer skicka användaruppgifterna till denna URL. Denna plugin kontrollerar svaret och tolkar HTTP-statuskoderna 401 och 403 som felaktiga uppgifter, och alla andra svar som giltiga uppgifter." ); diff --git a/core/l10n/sv.php b/core/l10n/sv.php index 9fdebe6377..091ae9e2fa 100644 --- a/core/l10n/sv.php +++ b/core/l10n/sv.php @@ -110,9 +110,11 @@ "Add" => "Lägg till", "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.", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Ingen säker slumptalsgenerator finns tillgänglig. Du bör aktivera PHP OpenSSL-tillägget.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Utan en säker slumptalsgenerator kan angripare få möjlighet att förutsäga lösenordsåterställningar och ta över ditt konto.", "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Din datakatalog och filer är förmodligen tillgängliga från Internet, eftersom .htaccess-filen inte fungerar.", +"For information how to properly configure your server, please see the documentation." => "För information hur du korrekt konfigurerar din servern, se ownCloud dokumentationen.", "Create an admin account" => "Skapa ett administratörskonto", "Advanced" => "Avancerad", "Data folder" => "Datamapp", diff --git a/core/l10n/zh_CN.GB2312.php b/core/l10n/zh_CN.GB2312.php index 26e524d016..fce45b3c98 100644 --- a/core/l10n/zh_CN.GB2312.php +++ b/core/l10n/zh_CN.GB2312.php @@ -1,8 +1,10 @@ "%s 与您共享了 »%s« ", "Category type not provided." => "未选择分类类型。", "No category to add?" => "没有分类添加了?", "This category already exists: %s" => "此分类已存在:%s", "Object type not provided." => "未选择对象类型。", +"%s ID not provided." => "%s 没有提供 ID", "Error adding %s to favorites." => "在添加 %s 到收藏夹时发生错误。", "No categories selected for deletion." => "没有选中要删除的分类。", "Error removing %s from favorites." => "在移除收藏夹中的 %s 时发生错误。", @@ -41,6 +43,7 @@ "years ago" => "年前", "Choose" => "选择", "Cancel" => "取消", +"Error loading file picker template" => "加载文件选取模板出错", "Yes" => "是", "No" => "否", "Ok" => "好的", @@ -59,6 +62,7 @@ "Share with link" => "分享链接", "Password protect" => "密码保护", "Password" => "密码", +"Allow Public Upload" => "允许公众上传", "Email link to person" => "面向个人的电子邮件链接", "Send" => "发送", "Set expiration date" => "设置失效日期", @@ -83,8 +87,12 @@ "The update was successful. Redirecting you to ownCloud now." => "升级成功。现在为您跳转到ownCloud。", "ownCloud password reset" => "私有云密码重置", "Use the following link to reset your password: {link}" => "使用下面的链接来重置你的密码:{link}", +"The link to reset your password has been sent to your email.
If you do not receive it within a reasonable amount of time, check your spam/junk folders.
If it is not there ask your local administrator ." => "重置密码的连接已经通过邮件到您的邮箱。
如果你没有收到邮件,可能是由于要再等一下,或者检查一下您的垃圾邮件夹。
如果还是没有收到,请联系您的系统管理员。", +"Request failed!
Did you make sure your email/username was right?" => "请求失败!
你确定你的邮件地址/用户名是正确的?", "You will receive a link to reset your password via Email." => "你将会收到一个重置密码的链接", "Username" => "用户名", +"Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset. If you are not sure what to do, please contact your administrator before you continue. Do you really want to continue?" => "您的文件是加密的。如果您还没有启用恢复密钥,在重置了密码后,您的数据讲无法恢复回来。如果您不确定是否这么做,请联系您的管理员在继续这个操作。你却是想继续么?", +"Yes, I really want to reset my password now" => "是的,我想现在重置密码。", "Request reset" => "要求重置", "Your password was reset" => "你的密码已经被重置了", "To login page" => "转至登陆页面", @@ -97,12 +105,16 @@ "Help" => "帮助", "Access forbidden" => "禁止访问", "Cloud not found" => "云 没有被找到", +"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "你好!⏎\n⏎\n温馨提示: %s 与您共享了 %s 。⏎\n查看: %s⏎\n⏎\n祝顺利!", "Edit categories" => "编辑分类", "Add" => "添加", "Security Warning" => "安全警告", +"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "您的PHP版本是会受到NULL字节漏洞攻击的(CVE-2006-7243)", +"Please update your PHP installation to use %s securely." => "请安全地升级您的PHP版本到 %s 。", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "没有安全随机码生成器,请启用 PHP OpenSSL 扩展。", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "没有安全随机码生成器,黑客可以预测密码重置令牌并接管你的账户。", "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "因为.htaccess文件无效,您的数据文件夹及文件可能可以在互联网上访问。", +"For information how to properly configure your server, please see the documentation." => "有关如何正确地配置您的服务器,请查看 文档。", "Create an admin account" => "建立一个 管理帐户", "Advanced" => "进阶", "Data folder" => "数据存放文件夹", @@ -114,6 +126,7 @@ "Database tablespace" => "数据库表格空间", "Database host" => "数据库主机", "Finish setup" => "完成安装", +"%s is available. Get more information on how to update." => "%s 是可用的。获取更多关于升级的信息。", "Log out" => "注销", "Automatic logon rejected!" => "自动登录被拒绝!", "If you did not change your password recently, your account may be compromised!" => "如果您最近没有修改您的密码,那您的帐号可能被攻击了!", @@ -122,6 +135,7 @@ "remember" => "记住登录", "Log in" => "登陆", "Alternative Logins" => "备选登录", +"Hey there,

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

Cheers!" => "你好!

温馨提示: %s 与您共享了 %s 。

\n查看: %s

祝顺利!", "prev" => "后退", "next" => "前进", "Updating ownCloud to version %s, this may take a while." => "ownCloud正在升级至 %s 版,这可能需要一点时间。" diff --git a/l10n/gl/files_encryption.po b/l10n/gl/files_encryption.po index 92948d143c..a9de5bfcc7 100644 --- a/l10n/gl/files_encryption.po +++ b/l10n/gl/files_encryption.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:57+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-03 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 10:20+0000\n" +"Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -77,7 +77,7 @@ msgstr "Asegúrese de que está instalado o PHP 5.3.3 ou posterior e de que a e #: hooks/hooks.php:263 msgid "Following users are not set up for encryption:" -msgstr "" +msgstr "Os seguintes usuarios non teñen configuración para o cifrado:" #: js/settings-admin.js:11 msgid "Saving..." diff --git a/l10n/it/files_encryption.po b/l10n/it/files_encryption.po index a97ce2655b..d550f72c04 100644 --- a/l10n/it/files_encryption.po +++ b/l10n/it/files_encryption.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:57+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-03 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 07:00+0000\n" +"Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -77,7 +77,7 @@ msgstr "Assicurati che sia installato PHP 5.3.3 o versioni successive e che l'es #: hooks/hooks.php:263 msgid "Following users are not set up for encryption:" -msgstr "" +msgstr "I seguenti utenti non sono configurati per la cifratura:" #: js/settings-admin.js:11 msgid "Saving..." diff --git a/l10n/pt_PT/files_trashbin.po b/l10n/pt_PT/files_trashbin.po index 91fb52f83b..b64a08b08e 100644 --- a/l10n/pt_PT/files_trashbin.po +++ b/l10n/pt_PT/files_trashbin.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Helder Meneses , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-03 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 14:30+0000\n" +"Last-Translator: Helder Meneses \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -69,7 +70,7 @@ msgstr "{count} ficheiros" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" -msgstr "" +msgstr "Restaurado" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" diff --git a/l10n/sv/core.po b/l10n/sv/core.po index 035b2dc707..5ba113d3c7 100644 --- a/l10n/sv/core.po +++ b/l10n/sv/core.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-03 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 10:10+0000\n" +"Last-Translator: Magnus Höglund \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" @@ -145,55 +145,55 @@ msgstr "December" msgid "Settings" msgstr "Inställningar" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "sekunder sedan" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "1 minut sedan" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "{minutes} minuter sedan" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "1 timme sedan" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "{hours} timmar sedan" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "i dag" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "i går" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "{days} dagar sedan" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "förra månaden" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "{months} månader sedan" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "månader sedan" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "förra året" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "år sedan" @@ -500,7 +500,7 @@ msgstr "Din version av PHP är sårbar för NULL byte attack (CVE-2006-7243)" #: templates/installation.php:26 #, php-format msgid "Please update your PHP installation to use %s securely." -msgstr "" +msgstr "Var god uppdatera din PHP-installation för att använda %s säkert." #: templates/installation.php:32 msgid "" @@ -525,7 +525,7 @@ msgstr "Din datakatalog och filer är förmodligen tillgängliga från Internet, msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "" +msgstr "För information hur du korrekt konfigurerar din servern, se ownCloud dokumentationen." #: templates/installation.php:47 msgid "Create an admin account" diff --git a/l10n/sv/files_encryption.po b/l10n/sv/files_encryption.po index 5edf9c93ba..bf274e5e5a 100644 --- a/l10n/sv/files_encryption.po +++ b/l10n/sv/files_encryption.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:57+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-03 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 10:10+0000\n" +"Last-Translator: Magnus Höglund \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" @@ -78,7 +78,7 @@ msgstr "Kontrollera att PHP 5.3.3 eller senare är installerad och att tillägge #: hooks/hooks.php:263 msgid "Following users are not set up for encryption:" -msgstr "" +msgstr "Följande användare har inte aktiverat kryptering:" #: js/settings-admin.js:11 msgid "Saving..." diff --git a/l10n/sv/files_sharing.po b/l10n/sv/files_sharing.po index 3658d3cedd..e8c04f5f3d 100644 --- a/l10n/sv/files_sharing.po +++ b/l10n/sv/files_sharing.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Magnus Höglund , 2013 # Stefan Gagner , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-03 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 10:50+0000\n" +"Last-Translator: Magnus Höglund \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" @@ -32,27 +33,27 @@ msgstr "Skicka" #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." -msgstr "" +msgstr "Tyvärr, denna länk verkar inte fungera längre." #: templates/part.404.php:4 msgid "Reasons might be:" -msgstr "" +msgstr "Orsaker kan vara:" #: templates/part.404.php:6 msgid "the item was removed" -msgstr "" +msgstr "objektet togs bort" #: templates/part.404.php:7 msgid "the link expired" -msgstr "" +msgstr "giltighet för länken har gått ut" #: templates/part.404.php:8 msgid "sharing is disabled" -msgstr "" +msgstr "delning är inaktiverat" #: templates/part.404.php:10 msgid "For more info, please ask the person who sent this link." -msgstr "" +msgstr "För mer information, kontakta den person som skickade den här länken." #: templates/public.php:15 #, php-format diff --git a/l10n/sv/files_trashbin.po b/l10n/sv/files_trashbin.po index 8a28bd5429..2bf5591f7a 100644 --- a/l10n/sv/files_trashbin.po +++ b/l10n/sv/files_trashbin.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Magnus Höglund , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-03 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 10:30+0000\n" +"Last-Translator: Magnus Höglund \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" @@ -69,7 +70,7 @@ msgstr "{count} filer" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" -msgstr "" +msgstr "återställd" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index 95d9e82bbd..f765a1c04f 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/settings.po @@ -7,14 +7,15 @@ # Jan Busk, 2013 # Jan Busk, 2013 # medialabs, 2013 +# Magnus Höglund , 2013 # medialabs, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-28 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 22:00+0000\n" -"Last-Translator: medialabs\n" +"POT-Creation-Date: 2013-08-03 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 10:30+0000\n" +"Last-Translator: Magnus Höglund \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" @@ -185,7 +186,7 @@ msgid "" "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 "" +msgstr "Din datakatalog och dina filer är förmodligen åtkomliga från internet. Filen .htaccess fungerar inte. Vi rekommenderar starkt att du konfigurerar din webbserver så att datakatalogen inte längre är åtkomlig eller du flyttar datakatalogen utanför webbserverns rotkatalog." #: templates/admin.php:29 msgid "Setup Warning" @@ -222,7 +223,7 @@ msgid "" "System locale can't be set to %s. This means that there might be problems " "with certain characters in file names. We strongly suggest to install the " "required packages on your system to support %s." -msgstr "" +msgstr "Systemets språk kan inte sättas till %s. Detta innebär att det kan vara problem med vissa tecken i filnamn. Det är starkt rekommenderat att installera nödvändiga paket så att systemet får stöd för %s." #: templates/admin.php:75 msgid "Internet connection not working" @@ -235,7 +236,7 @@ msgid "" "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 "" +msgstr "Servern har ingen fungerande internetanslutning. Detta innebär att en del av de funktioner som montering av extern lagring, notifieringar om uppdateringar eller installation av 3: e part appar inte fungerar. Åtkomst till filer och skicka e-postmeddelanden fungerar troligen inte heller. Vi rekommenderar starkt att aktivera en internetuppkoppling för denna server om du vill ha alla funktioner." #: templates/admin.php:92 msgid "Cron" @@ -249,11 +250,11 @@ msgstr "Exekvera en uppgift vid varje sidladdning" msgid "" "cron.php is registered at a webcron service to call cron.php once a minute " "over http." -msgstr "" +msgstr "cron.php är registrerad som en webcron-tjänst för att anropa cron.php varje minut över http." #: templates/admin.php:121 msgid "Use systems cron service to call the cron.php file once a minute." -msgstr "" +msgstr "Använd system-tjänsten cron för att anropa cron.php varje minut." #: templates/admin.php:128 msgid "Sharing" @@ -318,7 +319,7 @@ msgstr "Tvingar klienterna att ansluta till %s via en krypterad anslutning." msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." -msgstr "" +msgstr "Anslut till din %s via HTTPS för att aktivera/deaktivera SSL" #: templates/admin.php:211 msgid "Log" diff --git a/l10n/sv/user_ldap.po b/l10n/sv/user_ldap.po index f963b8165b..e379fcecef 100644 --- a/l10n/sv/user_ldap.po +++ b/l10n/sv/user_ldap.po @@ -4,14 +4,15 @@ # # Translators: # Jan Busk, 2013 +# Magnus Höglund , 2013 # medialabs, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-03 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 10:40+0000\n" +"Last-Translator: Magnus Höglund \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" @@ -92,7 +93,7 @@ msgid "" "Warning: Apps user_ldap and user_webdavauth are incompatible. You may" " experience unexpected behavior. Please ask your system administrator to " "disable one of them." -msgstr "" +msgstr "Varning: Apps user_ldap och user_webdavauth är inkompatibla. Oväntade problem kan uppstå. Be din systemadministratör att inaktivera en av dom." #: templates/settings.php:12 msgid "" @@ -224,7 +225,7 @@ msgstr "Inaktivera huvudserver" #: templates/settings.php:75 msgid "Only connect to the replica server." -msgstr "" +msgstr "Anslut endast till replikaservern." #: templates/settings.php:76 msgid "Use TLS" @@ -247,7 +248,7 @@ msgstr "Stäng av verifiering av SSL-certifikat." msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your %s server." -msgstr "" +msgstr "Om anslutningen bara fungerar med detta alternativ, importera LDAP-serverns SSL-certifikat i din% s server." #: templates/settings.php:78 msgid "Not recommended, use for testing only." @@ -271,7 +272,7 @@ msgstr "Attribut för användarnamn" #: templates/settings.php:83 msgid "The LDAP attribute to use to generate the user's display name." -msgstr "" +msgstr "LDAP-attributet som ska användas för att generera användarens visningsnamn." #: templates/settings.php:84 msgid "Base User Tree" @@ -295,7 +296,7 @@ msgstr "Attribut för gruppnamn" #: templates/settings.php:86 msgid "The LDAP attribute to use to generate the groups's display name." -msgstr "" +msgstr "LDAP-attributet som ska användas för att generera gruppens visningsnamn." #: templates/settings.php:87 msgid "Base Group Tree" @@ -361,7 +362,7 @@ msgid "" "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 "" +msgstr "Som standard skapas det interna användarnamnet från UUID-attributet. Det säkerställer att användarnamnet är unikt och tecken inte behöver konverteras. Det interna användarnamnet har restriktionerna att endast följande tecken är tillåtna: [ a-zA-Z0-9_.@- ]. Andra tecken blir ersatta av deras motsvarighet i ASCII eller utelämnas helt. En siffra kommer att läggas till eller ökas på vid en kollision. Det interna användarnamnet används för att identifiera användaren internt. Det är även förvalt som användarens användarnamn i ownCloud. Det är även en port för fjärråtkomst, t.ex. för alla *DAV-tjänster. Med denna inställning kan det förvalda beteendet åsidosättas. För att uppnå ett liknande beteende som innan ownCloud 5, ange attributet för användarens visningsnamn i detta fält. Lämna det tomt för förvalt beteende. Ändringarna kommer endast att påverka nyligen mappade (tillagda) LDAP-användare" #: templates/settings.php:103 msgid "Internal Username Attribute:" @@ -380,7 +381,7 @@ msgid "" "You must make sure that the attribute of your choice can be fetched for both" " users and groups and it is unique. Leave it empty for default behavior. " "Changes will have effect only on newly mapped (added) LDAP users and groups." -msgstr "" +msgstr "Som standard upptäcker ownCloud automatiskt UUID-attributet. Det UUID-attributet används för att utan tvivel identifiera LDAP-användare och grupper. Dessutom kommer interna användarnamn skapas baserat på detta UUID, om inte annat anges ovan. Du kan åsidosätta inställningen och passera ett attribut som du själv väljer. Du måste se till att attributet som du väljer kan hämtas för både användare och grupper och att det är unikt. Lämna det tomt för standard beteende. Förändringar kommer endast att påverka nyligen mappade (tillagda) LDAP-användare och grupper." #: templates/settings.php:106 msgid "UUID Attribute:" @@ -402,7 +403,7 @@ msgid "" " 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 "" +msgstr "ownCloud använder sig av användarnamn för att lagra och tilldela (meta) data. För att exakt kunna identifiera och känna igen användare, kommer varje LDAP-användare ha ett internt användarnamn. Detta kräver en mappning från ownCloud-användarnamn till LDAP-användare. Det skapade användarnamnet mappas till UUID för LDAP-användaren. Dessutom cachas DN samt minska LDAP-interaktionen, men den används inte för identifiering. Om DN förändras, kommer förändringarna hittas av ownCloud. Det interna ownCloud-namnet används överallt i ownCloud. Om du rensar/raderar mappningarna kommer att lämna referenser överallt i systemet. Men den är inte konfigurationskänslig, den påverkar alla LDAP-konfigurationer! Rensa/radera aldrig mappningarna i en produktionsmiljö. Utan gör detta endast på i testmiljö!" #: templates/settings.php:109 msgid "Clear Username-LDAP User Mapping" diff --git a/l10n/sv/user_webdavauth.po b/l10n/sv/user_webdavauth.po index dc9a523c43..fe31213d10 100644 --- a/l10n/sv/user_webdavauth.po +++ b/l10n/sv/user_webdavauth.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:57+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-03 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 10:50+0000\n" +"Last-Translator: Magnus Höglund \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" @@ -25,11 +25,11 @@ msgstr "WebDAV Autentisering" #: templates/settings.php:4 msgid "Address: " -msgstr "" +msgstr "Adress: " #: templates/settings.php:7 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 "" +msgstr "ownCloud kommer skicka användaruppgifterna till denna URL. Denna plugin kontrollerar svaret och tolkar HTTP-statuskoderna 401 och 403 som felaktiga uppgifter, och alla andra svar som giltiga uppgifter." diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 38f45d3131..34c057e60e 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-02 01:57-0400\n" +"POT-Creation-Date: 2013-08-03 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -141,55 +141,55 @@ msgstr "" msgid "Settings" msgstr "" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index b1d3cd06b8..e246ef91b1 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"POT-Creation-Date: 2013-08-03 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 8437368401..910a360b10 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" +"POT-Creation-Date: 2013-08-03 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index b02077817c..aafb20f57d 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-02 01:56-0400\n" +"POT-Creation-Date: 2013-08-03 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index 659a2efda8..e99ea89aca 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-02 01:56-0400\n" +"POT-Creation-Date: 2013-08-03 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index e5715a1710..454a43fae7 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-02 01:56-0400\n" +"POT-Creation-Date: 2013-08-03 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 60a03da00b..d2995c94a3 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-02 01:56-0400\n" +"POT-Creation-Date: 2013-08-03 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index 90919c9cfd..e0a2511e1c 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-02 01:57-0400\n" +"POT-Creation-Date: 2013-08-03 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 440917eb07..70e56ee894 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-02 01:57-0400\n" +"POT-Creation-Date: 2013-08-03 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 7b20dd62de..9fdcbc5a29 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-02 01:56-0400\n" +"POT-Creation-Date: 2013-08-03 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index 9ef6b6c05c..95e6a6ad41 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-02 01:56-0400\n" +"POT-Creation-Date: 2013-08-03 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/zh_CN.GB2312/core.po b/l10n/zh_CN.GB2312/core.po index f39018da43..7828ac9a31 100644 --- a/l10n/zh_CN.GB2312/core.po +++ b/l10n/zh_CN.GB2312/core.po @@ -4,14 +4,15 @@ # # Translators: # fkj , 2013 +# Martin Liu , 2013 # hyy0591 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-03 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 12:20+0000\n" +"Last-Translator: Martin Liu \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,7 +23,7 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "%s shared »%s« with you" -msgstr "" +msgstr "%s 与您共享了 »%s« " #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -47,7 +48,7 @@ msgstr "未选择对象类型。" #: ajax/vcategories/removeFromFavorites.php:30 #, php-format msgid "%s ID not provided." -msgstr "" +msgstr "%s 没有提供 ID" #: ajax/vcategories/addToFavorites.php:35 #, php-format @@ -143,55 +144,55 @@ msgstr "十二月" msgid "Settings" msgstr "设置" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "秒前" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "1 分钟前" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "{minutes} 分钟前" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "1小时前" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "{hours}小时前" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "今天" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "昨天" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "{days} 天前" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "上个月" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "{months}月前" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "月前" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "去年" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "年前" @@ -205,7 +206,7 @@ msgstr "取消" #: js/oc-dialogs.js:141 js/oc-dialogs.js:200 msgid "Error loading file picker template" -msgstr "" +msgstr "加载文件选取模板出错" #: js/oc-dialogs.js:164 msgid "Yes" @@ -286,7 +287,7 @@ msgstr "密码" #: js/share.js:198 msgid "Allow Public Upload" -msgstr "" +msgstr "允许公众上传" #: js/share.js:202 msgid "Email link to person" @@ -392,11 +393,11 @@ msgid "" "The link to reset your password has been sent to your email.
If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
If it is not there ask your local administrator ." -msgstr "" +msgstr "重置密码的连接已经通过邮件到您的邮箱。
如果你没有收到邮件,可能是由于要再等一下,或者检查一下您的垃圾邮件夹。
如果还是没有收到,请联系您的系统管理员。" #: lostpassword/templates/lostpassword.php:12 msgid "Request failed!
Did you make sure your email/username was right?" -msgstr "" +msgstr "请求失败!
你确定你的邮件地址/用户名是正确的?" #: lostpassword/templates/lostpassword.php:15 msgid "You will receive a link to reset your password via Email." @@ -413,11 +414,11 @@ msgid "" "will be no way to get your data back after your password is reset. If you " "are not sure what to do, please contact your administrator before you " "continue. Do you really want to continue?" -msgstr "" +msgstr "您的文件是加密的。如果您还没有启用恢复密钥,在重置了密码后,您的数据讲无法恢复回来。如果您不确定是否这么做,请联系您的管理员在继续这个操作。你却是想继续么?" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" -msgstr "" +msgstr "是的,我想现在重置密码。" #: lostpassword/templates/lostpassword.php:27 msgid "Request reset" @@ -476,7 +477,7 @@ msgid "" "View it: %s\n" "\n" "Cheers!" -msgstr "" +msgstr "你好!⏎\n⏎\n温馨提示: %s 与您共享了 %s 。⏎\n查看: %s⏎\n⏎\n祝顺利!" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" @@ -493,12 +494,12 @@ msgstr "安全警告" #: templates/installation.php:25 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" -msgstr "" +msgstr "您的PHP版本是会受到NULL字节漏洞攻击的(CVE-2006-7243)" #: templates/installation.php:26 #, php-format msgid "Please update your PHP installation to use %s securely." -msgstr "" +msgstr "请安全地升级您的PHP版本到 %s 。" #: templates/installation.php:32 msgid "" @@ -523,7 +524,7 @@ msgstr "因为.htaccess文件无效,您的数据文件夹及文件可能可以 msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "" +msgstr "有关如何正确地配置您的服务器,请查看 文档。" #: templates/installation.php:47 msgid "Create an admin account" @@ -574,7 +575,7 @@ msgstr "完成安装" #: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." -msgstr "" +msgstr "%s 是可用的。获取更多关于升级的信息。" #: templates/layout.user.php:66 msgid "Log out" @@ -615,7 +616,7 @@ msgstr "备选登录" msgid "" "Hey there,

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

Cheers!" -msgstr "" +msgstr "你好!

温馨提示: %s 与您共享了 %s 。

\n查看: %s

祝顺利!" #: templates/part.pagenavi.php:3 msgid "prev" diff --git a/l10n/zh_CN.GB2312/settings.po b/l10n/zh_CN.GB2312/settings.po index fd86486473..092a305f34 100644 --- a/l10n/zh_CN.GB2312/settings.po +++ b/l10n/zh_CN.GB2312/settings.po @@ -4,14 +4,15 @@ # # Translators: # hlx98007 , 2013 +# Martin Liu , 2013 # hyy0591 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-03 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 12:00+0000\n" +"Last-Translator: Martin Liu \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -182,7 +183,7 @@ msgid "" "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 "" +msgstr "您的数据文件夹和您的文件或许能够从互联网访问。ownCloud 提供的 .htaccesss 文件未其作用。我们强烈建议您配置网络服务器以使数据文件夹不能从互联网访问,或将移动数据文件夹移出网络服务器文档根目录。" #: templates/admin.php:29 msgid "Setup Warning" @@ -197,7 +198,7 @@ msgstr "因WebDAV接口故障,您的网络服务器好像并未允许文件同 #: templates/admin.php:33 #, php-format msgid "Please double check the installation guides." -msgstr "" +msgstr "请双击安装向导。" #: templates/admin.php:44 msgid "Module 'fileinfo' missing" @@ -219,7 +220,7 @@ msgid "" "System locale can't be set to %s. This means that there might be problems " "with certain characters in file names. We strongly suggest to install the " "required packages on your system to support %s." -msgstr "" +msgstr "ownCloud 服务器不能把系统区域设置为 %s。这意味着文件名可内可能含有某些引起问题的字符。我们强烈建议在您的系统上安装必要的区域/语言支持包来支持 “%s” 。" #: templates/admin.php:75 msgid "Internet connection not working" @@ -232,7 +233,7 @@ msgid "" "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 "" +msgstr "服务器没有可用的Internet连接。这意味着像挂载外部储存、版本更新提示和安装第三方插件等功能会失效。远程访问文件和发送邮件提醒也可能会失效。如果您需要这些功能,建议开启服务器的英特网连接。" #: templates/admin.php:92 msgid "Cron" @@ -246,11 +247,11 @@ msgstr "在每个页面载入时执行一项任务" msgid "" "cron.php is registered at a webcron service to call cron.php once a minute " "over http." -msgstr "" +msgstr "cron.php 已作为 webcron 服务注册。owncloud 将通过 http 协议每分钟调用一次 cron.php。" #: templates/admin.php:121 msgid "Use systems cron service to call the cron.php file once a minute." -msgstr "" +msgstr "使用系统 cron 服务。通过系统 cronjob 每分钟调用一次 owncloud 文件夹下的 cron.php" #: templates/admin.php:128 msgid "Sharing" @@ -274,12 +275,12 @@ msgstr "允许用户通过链接共享内容" #: templates/admin.php:151 msgid "Allow public uploads" -msgstr "" +msgstr "允许公众账户上传" #: templates/admin.php:152 msgid "" "Allow users to enable others to upload into their publicly shared folders" -msgstr "" +msgstr "允许其它人向用户的公众共享文件夹里上传文件" #: templates/admin.php:160 msgid "Allow resharing" @@ -308,14 +309,14 @@ msgstr "强制HTTPS" #: templates/admin.php:193 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." -msgstr "" +msgstr "强制客户端通过加密连接与%s连接" #: templates/admin.php:199 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." -msgstr "" +msgstr "请通过HTTPS协议连接到 %s,需要启用或者禁止强制SSL的开关。" #: templates/admin.php:211 msgid "Log" diff --git a/settings/l10n/sv.php b/settings/l10n/sv.php index eea0f39976..3ab574bd44 100644 --- a/settings/l10n/sv.php +++ b/settings/l10n/sv.php @@ -37,15 +37,20 @@ "A valid password must be provided" => "Ett giltigt lösenord måste anges", "__language_name__" => "__language_name__", "Security Warning" => "Säkerhetsvarning", +"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." => "Din datakatalog och dina filer är förmodligen åtkomliga från internet. Filen .htaccess fungerar inte. Vi rekommenderar starkt att du konfigurerar din webbserver så att datakatalogen inte längre är åtkomlig eller du flyttar datakatalogen utanför webbserverns rotkatalog.", "Setup Warning" => "Installationsvarning", "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 installation guides." => "Vänligen dubbelkolla igenom installationsguiden.", "Module 'fileinfo' missing" => "Modulen \"fileinfo\" saknas", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "PHP-modulen 'fileinfo' saknas. Vi rekommenderar starkt att aktivera den här modulen för att kunna upptäcka korrekt mime-typ.", "Locale not working" => "Locale fungerar inte", +"System locale can't be set to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "Systemets språk kan inte sättas till %s. Detta innebär att det kan vara problem med vissa tecken i filnamn. Det är starkt rekommenderat att installera nödvändiga paket så att systemet får stöd för %s.", "Internet connection not working" => "Internetförbindelsen fungerar inte", +"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." => "Servern har ingen fungerande internetanslutning. Detta innebär att en del av de funktioner som montering av extern lagring, notifieringar om uppdateringar eller installation av 3: e part appar inte fungerar. Åtkomst till filer och skicka e-postmeddelanden fungerar troligen inte heller. Vi rekommenderar starkt att aktivera en internetuppkoppling för denna server om du vill ha alla funktioner.", "Cron" => "Cron", "Execute one task with each page loaded" => "Exekvera en uppgift vid varje sidladdning", +"cron.php is registered at a webcron service to call cron.php once a minute over http." => "cron.php är registrerad som en webcron-tjänst för att anropa cron.php varje minut över http.", +"Use systems cron service to call the cron.php file once a minute." => "Använd system-tjänsten cron för att anropa cron.php varje minut.", "Sharing" => "Dela", "Enable Share API" => "Aktivera delat API", "Allow apps to use the Share API" => "Tillåt applikationer att använda delat API", @@ -60,6 +65,7 @@ "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.", +"Please connect to your %s via HTTPS to enable or disable the SSL enforcement." => "Anslut till din %s via HTTPS för att aktivera/deaktivera SSL", "Log" => "Logg", "Log level" => "Nivå på loggning", "More" => "Mer", diff --git a/settings/l10n/zh_CN.GB2312.php b/settings/l10n/zh_CN.GB2312.php index 756fd2f33e..1853bae920 100644 --- a/settings/l10n/zh_CN.GB2312.php +++ b/settings/l10n/zh_CN.GB2312.php @@ -37,25 +37,35 @@ "A valid password must be provided" => "请填写有效密码", "__language_name__" => "Chinese", "Security Warning" => "安全警告", +"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." => "您的数据文件夹和您的文件或许能够从互联网访问。ownCloud 提供的 .htaccesss 文件未其作用。我们强烈建议您配置网络服务器以使数据文件夹不能从互联网访问,或将移动数据文件夹移出网络服务器文档根目录。", "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 installation guides." => "请双击安装向导。", "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”丢失。我们强烈建议打开此模块来获得 mine 类型检测的最佳结果。", "Locale not working" => "区域设置未运作", +"System locale can't be set to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "ownCloud 服务器不能把系统区域设置为 %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." => "服务器没有可用的Internet连接。这意味着像挂载外部储存、版本更新提示和安装第三方插件等功能会失效。远程访问文件和发送邮件提醒也可能会失效。如果您需要这些功能,建议开启服务器的英特网连接。", "Cron" => "Cron", "Execute one task with each page loaded" => "在每个页面载入时执行一项任务", +"cron.php is registered at a webcron service to call cron.php once a minute over http." => "cron.php 已作为 webcron 服务注册。owncloud 将通过 http 协议每分钟调用一次 cron.php。", +"Use systems cron service to call the cron.php file once a minute." => "使用系统 cron 服务。通过系统 cronjob 每分钟调用一次 owncloud 文件夹下的 cron.php", "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" => "只允许用户向所在群组中的其他用户分享", "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的开关。", "Log" => "日志", "Log level" => "日志等级", "More" => "更多", From 3534c3b3735242afa5c991417027a8c8e41e6465 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Sat, 3 Aug 2013 21:59:32 +0200 Subject: [PATCH 58/64] add reveal mimetype --- lib/mimetypes.list.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/mimetypes.list.php b/lib/mimetypes.list.php index 2aac3bbfd2..8ab8ac81bd 100644 --- a/lib/mimetypes.list.php +++ b/lib/mimetypes.list.php @@ -102,5 +102,6 @@ return array( 'md' => 'text/markdown', 'markdown' => 'text/markdown', 'mdown' => 'text/markdown', - 'mdwn' => 'text/markdown' + 'mdwn' => 'text/markdown', + 'reveal' => 'text/reveal' ); From e03d9e3aa07300aaee5ccad0d8e2b5352d107aee Mon Sep 17 00:00:00 2001 From: Andreas Fischer Date: Sun, 4 Aug 2013 02:48:00 +0200 Subject: [PATCH 59/64] Port log level filtering from OC_Log_Owncloud to OC_Log_Syslog. --- lib/log/syslog.php | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/lib/log/syslog.php b/lib/log/syslog.php index d1fb28d8b0..a28255ed10 100644 --- a/lib/log/syslog.php +++ b/lib/log/syslog.php @@ -31,7 +31,10 @@ class OC_Log_Syslog { * @param int level */ public static function write($app, $message, $level) { - $syslog_level = self::$levels[$level]; - syslog($syslog_level, '{'.$app.'} '.$message); + $minLevel = min(OC_Config::getValue("loglevel", OC_Log::WARN), OC_Log::ERROR); + if ($level >= $minLevel) { + $syslog_level = self::$levels[$level]; + syslog($syslog_level, '{'.$app.'} '.$message); + } } } From 9923fe655bf32a2551ac0f1fd863a6a50af20157 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Sun, 4 Aug 2013 02:01:28 -0400 Subject: [PATCH 60/64] [tx-robot] updated from transifex --- apps/files_encryption/l10n/cs_CZ.php | 1 + apps/files_encryption/l10n/pt_BR.php | 1 + apps/files_versions/l10n/ja_JP.php | 3 ++ apps/user_webdavauth/l10n/ja_JP.php | 4 ++- core/l10n/cs_CZ.php | 2 +- l10n/af_ZA/core.po | 30 +++++++++--------- l10n/af_ZA/files_sharing.po | 4 +-- l10n/af_ZA/lib.po | 4 +-- l10n/af_ZA/settings.po | 4 +-- l10n/af_ZA/user_ldap.po | 4 +-- l10n/ar/core.po | 30 +++++++++--------- l10n/ar/files_sharing.po | 4 +-- l10n/ar/lib.po | 4 +-- l10n/ar/settings.po | 4 +-- l10n/ar/user_ldap.po | 4 +-- l10n/bg_BG/core.po | 30 +++++++++--------- l10n/bg_BG/files_sharing.po | 4 +-- l10n/bg_BG/lib.po | 4 +-- l10n/bg_BG/settings.po | 4 +-- l10n/bg_BG/user_ldap.po | 4 +-- l10n/bn_BD/core.po | 30 +++++++++--------- l10n/bn_BD/files_sharing.po | 4 +-- l10n/bn_BD/lib.po | 4 +-- l10n/bn_BD/settings.po | 4 +-- l10n/bn_BD/user_ldap.po | 4 +-- l10n/ca/core.po | 30 +++++++++--------- l10n/ca/files_sharing.po | 4 +-- l10n/ca/lib.po | 4 +-- l10n/ca/settings.po | 4 +-- l10n/ca/user_ldap.po | 4 +-- l10n/cs_CZ/core.po | 35 +++++++++++---------- l10n/cs_CZ/files_encryption.po | 9 +++--- l10n/cs_CZ/files_sharing.po | 4 +-- l10n/cs_CZ/lib.po | 4 +-- l10n/cs_CZ/settings.po | 4 +-- l10n/cs_CZ/user_ldap.po | 4 +-- l10n/cy_GB/core.po | 30 +++++++++--------- l10n/cy_GB/files_sharing.po | 4 +-- l10n/cy_GB/lib.po | 4 +-- l10n/cy_GB/settings.po | 4 +-- l10n/cy_GB/user_ldap.po | 4 +-- l10n/da/core.po | 30 +++++++++--------- l10n/da/files_sharing.po | 4 +-- l10n/da/lib.po | 4 +-- l10n/da/settings.po | 4 +-- l10n/da/user_ldap.po | 4 +-- l10n/de/core.po | 30 +++++++++--------- l10n/de/files_sharing.po | 4 +-- l10n/de/lib.po | 4 +-- l10n/de/settings.po | 4 +-- l10n/de/user_ldap.po | 4 +-- l10n/de_DE/core.po | 30 +++++++++--------- l10n/de_DE/files_sharing.po | 4 +-- l10n/de_DE/lib.po | 4 +-- l10n/de_DE/settings.po | 4 +-- l10n/de_DE/user_ldap.po | 4 +-- l10n/el/core.po | 30 +++++++++--------- l10n/el/files_sharing.po | 4 +-- l10n/el/lib.po | 4 +-- l10n/el/settings.po | 4 +-- l10n/el/user_ldap.po | 4 +-- l10n/en@pirate/core.po | 46 ++++++++++++++-------------- l10n/en@pirate/files_sharing.po | 4 +-- l10n/en@pirate/settings.po | 4 +-- l10n/en@pirate/user_ldap.po | 4 +-- l10n/eo/core.po | 30 +++++++++--------- l10n/eo/files_sharing.po | 4 +-- l10n/eo/lib.po | 4 +-- l10n/eo/settings.po | 4 +-- l10n/eo/user_ldap.po | 4 +-- l10n/es/core.po | 30 +++++++++--------- l10n/es/files_sharing.po | 4 +-- l10n/es/lib.po | 4 +-- l10n/es/settings.po | 4 +-- l10n/es/user_ldap.po | 4 +-- l10n/es_AR/core.po | 30 +++++++++--------- l10n/es_AR/files_sharing.po | 4 +-- l10n/es_AR/lib.po | 4 +-- l10n/es_AR/settings.po | 4 +-- l10n/es_AR/user_ldap.po | 4 +-- l10n/et_EE/core.po | 30 +++++++++--------- l10n/et_EE/files_sharing.po | 4 +-- l10n/et_EE/lib.po | 4 +-- l10n/et_EE/settings.po | 4 +-- l10n/et_EE/user_ldap.po | 4 +-- l10n/eu/core.po | 30 +++++++++--------- l10n/eu/files_sharing.po | 4 +-- l10n/eu/lib.po | 4 +-- l10n/eu/settings.po | 4 +-- l10n/eu/user_ldap.po | 4 +-- l10n/fa/core.po | 30 +++++++++--------- l10n/fa/files_sharing.po | 4 +-- l10n/fa/lib.po | 4 +-- l10n/fa/settings.po | 4 +-- l10n/fa/user_ldap.po | 4 +-- l10n/fi_FI/core.po | 30 +++++++++--------- l10n/fi_FI/files_sharing.po | 4 +-- l10n/fi_FI/lib.po | 4 +-- l10n/fi_FI/settings.po | 4 +-- l10n/fi_FI/user_ldap.po | 4 +-- l10n/fr/core.po | 30 +++++++++--------- l10n/fr/files_sharing.po | 4 +-- l10n/fr/lib.po | 4 +-- l10n/fr/settings.po | 4 +-- l10n/fr/user_ldap.po | 4 +-- l10n/gl/core.po | 30 +++++++++--------- l10n/gl/files_sharing.po | 4 +-- l10n/gl/lib.po | 4 +-- l10n/gl/settings.po | 4 +-- l10n/gl/user_ldap.po | 4 +-- l10n/he/core.po | 30 +++++++++--------- l10n/he/files_sharing.po | 4 +-- l10n/he/lib.po | 4 +-- l10n/he/settings.po | 4 +-- l10n/he/user_ldap.po | 4 +-- l10n/hi/core.po | 30 +++++++++--------- l10n/hi/files_sharing.po | 4 +-- l10n/hi/lib.po | 4 +-- l10n/hi/settings.po | 4 +-- l10n/hi/user_ldap.po | 4 +-- l10n/hr/core.po | 30 +++++++++--------- l10n/hr/files_sharing.po | 4 +-- l10n/hr/lib.po | 4 +-- l10n/hr/settings.po | 4 +-- l10n/hr/user_ldap.po | 4 +-- l10n/hu_HU/core.po | 30 +++++++++--------- l10n/hu_HU/files_sharing.po | 4 +-- l10n/hu_HU/lib.po | 4 +-- l10n/hu_HU/settings.po | 4 +-- l10n/hu_HU/user_ldap.po | 4 +-- l10n/ia/core.po | 30 +++++++++--------- l10n/ia/files_sharing.po | 4 +-- l10n/ia/lib.po | 4 +-- l10n/ia/settings.po | 4 +-- l10n/ia/user_ldap.po | 4 +-- l10n/id/core.po | 30 +++++++++--------- l10n/id/files_sharing.po | 4 +-- l10n/id/lib.po | 4 +-- l10n/id/settings.po | 4 +-- l10n/id/user_ldap.po | 4 +-- l10n/is/core.po | 30 +++++++++--------- l10n/is/files_sharing.po | 4 +-- l10n/is/lib.po | 4 +-- l10n/is/settings.po | 4 +-- l10n/is/user_ldap.po | 4 +-- l10n/it/core.po | 30 +++++++++--------- l10n/it/files_sharing.po | 4 +-- l10n/it/lib.po | 4 +-- l10n/it/settings.po | 4 +-- l10n/it/user_ldap.po | 4 +-- l10n/ja_JP/core.po | 30 +++++++++--------- l10n/ja_JP/files_sharing.po | 4 +-- l10n/ja_JP/files_versions.po | 13 ++++---- l10n/ja_JP/lib.po | 4 +-- l10n/ja_JP/settings.po | 26 ++++++++-------- l10n/ja_JP/user_ldap.po | 4 +-- l10n/ja_JP/user_webdavauth.po | 11 ++++--- l10n/ka/core.po | 30 +++++++++--------- l10n/ka/files_sharing.po | 4 +-- l10n/ka/lib.po | 4 +-- l10n/ka/settings.po | 4 +-- l10n/ka/user_ldap.po | 4 +-- l10n/ka_GE/core.po | 30 +++++++++--------- l10n/ka_GE/files_sharing.po | 4 +-- l10n/ka_GE/lib.po | 4 +-- l10n/ka_GE/settings.po | 4 +-- l10n/ka_GE/user_ldap.po | 4 +-- l10n/ko/core.po | 30 +++++++++--------- l10n/ko/files_sharing.po | 4 +-- l10n/ko/lib.po | 4 +-- l10n/ko/settings.po | 4 +-- l10n/ko/user_ldap.po | 4 +-- l10n/ku_IQ/core.po | 30 +++++++++--------- l10n/ku_IQ/files_sharing.po | 4 +-- l10n/ku_IQ/lib.po | 4 +-- l10n/ku_IQ/settings.po | 4 +-- l10n/ku_IQ/user_ldap.po | 4 +-- l10n/lb/core.po | 30 +++++++++--------- l10n/lb/files_sharing.po | 4 +-- l10n/lb/lib.po | 4 +-- l10n/lb/settings.po | 4 +-- l10n/lb/user_ldap.po | 4 +-- l10n/lt_LT/core.po | 30 +++++++++--------- l10n/lt_LT/files_sharing.po | 4 +-- l10n/lt_LT/lib.po | 4 +-- l10n/lt_LT/settings.po | 4 +-- l10n/lt_LT/user_ldap.po | 4 +-- l10n/lv/core.po | 30 +++++++++--------- l10n/lv/files_sharing.po | 4 +-- l10n/lv/lib.po | 4 +-- l10n/lv/settings.po | 4 +-- l10n/lv/user_ldap.po | 4 +-- l10n/mk/core.po | 30 +++++++++--------- l10n/mk/files_sharing.po | 4 +-- l10n/mk/lib.po | 4 +-- l10n/mk/settings.po | 4 +-- l10n/mk/user_ldap.po | 4 +-- l10n/ms_MY/core.po | 30 +++++++++--------- l10n/ms_MY/files_sharing.po | 4 +-- l10n/ms_MY/lib.po | 4 +-- l10n/ms_MY/settings.po | 4 +-- l10n/ms_MY/user_ldap.po | 4 +-- l10n/my_MM/core.po | 30 +++++++++--------- l10n/my_MM/files_sharing.po | 4 +-- l10n/my_MM/lib.po | 4 +-- l10n/my_MM/settings.po | 4 +-- l10n/my_MM/user_ldap.po | 4 +-- l10n/nb_NO/core.po | 30 +++++++++--------- l10n/nb_NO/files_sharing.po | 4 +-- l10n/nb_NO/lib.po | 4 +-- l10n/nb_NO/settings.po | 4 +-- l10n/nb_NO/user_ldap.po | 4 +-- l10n/nl/core.po | 30 +++++++++--------- l10n/nl/files_sharing.po | 4 +-- l10n/nl/lib.po | 4 +-- l10n/nl/settings.po | 4 +-- l10n/nl/user_ldap.po | 4 +-- l10n/nn_NO/core.po | 30 +++++++++--------- l10n/nn_NO/files_sharing.po | 4 +-- l10n/nn_NO/lib.po | 4 +-- l10n/nn_NO/settings.po | 4 +-- l10n/nn_NO/user_ldap.po | 4 +-- l10n/oc/core.po | 30 +++++++++--------- l10n/oc/files_sharing.po | 4 +-- l10n/oc/lib.po | 4 +-- l10n/oc/settings.po | 4 +-- l10n/oc/user_ldap.po | 4 +-- l10n/pl/core.po | 30 +++++++++--------- l10n/pl/files_sharing.po | 4 +-- l10n/pl/lib.po | 4 +-- l10n/pl/settings.po | 4 +-- l10n/pl/user_ldap.po | 4 +-- l10n/pt_BR/core.po | 30 +++++++++--------- l10n/pt_BR/files_encryption.po | 8 ++--- l10n/pt_BR/files_sharing.po | 4 +-- l10n/pt_BR/lib.po | 4 +-- l10n/pt_BR/settings.po | 4 +-- l10n/pt_BR/user_ldap.po | 4 +-- l10n/pt_PT/core.po | 30 +++++++++--------- l10n/pt_PT/files_sharing.po | 4 +-- l10n/pt_PT/lib.po | 4 +-- l10n/pt_PT/settings.po | 4 +-- l10n/pt_PT/user_ldap.po | 4 +-- l10n/ro/core.po | 30 +++++++++--------- l10n/ro/files_sharing.po | 4 +-- l10n/ro/lib.po | 4 +-- l10n/ro/settings.po | 4 +-- l10n/ro/user_ldap.po | 4 +-- l10n/ru/core.po | 30 +++++++++--------- l10n/ru/files_sharing.po | 4 +-- l10n/ru/lib.po | 4 +-- l10n/ru/settings.po | 4 +-- l10n/ru/user_ldap.po | 4 +-- l10n/si_LK/core.po | 30 +++++++++--------- l10n/si_LK/files_sharing.po | 4 +-- l10n/si_LK/lib.po | 4 +-- l10n/si_LK/settings.po | 4 +-- l10n/si_LK/user_ldap.po | 4 +-- l10n/sk_SK/core.po | 30 +++++++++--------- l10n/sk_SK/files_sharing.po | 4 +-- l10n/sk_SK/lib.po | 4 +-- l10n/sk_SK/settings.po | 4 +-- l10n/sk_SK/user_ldap.po | 4 +-- l10n/sl/core.po | 30 +++++++++--------- l10n/sl/files_sharing.po | 4 +-- l10n/sl/lib.po | 4 +-- l10n/sl/settings.po | 4 +-- l10n/sl/user_ldap.po | 4 +-- l10n/sq/core.po | 30 +++++++++--------- l10n/sq/files_sharing.po | 4 +-- l10n/sq/lib.po | 4 +-- l10n/sq/settings.po | 4 +-- l10n/sq/user_ldap.po | 4 +-- l10n/sr/core.po | 30 +++++++++--------- l10n/sr/files_sharing.po | 4 +-- l10n/sr/lib.po | 4 +-- l10n/sr/settings.po | 4 +-- l10n/sr/user_ldap.po | 4 +-- l10n/sr@latin/core.po | 30 +++++++++--------- l10n/sr@latin/files_sharing.po | 4 +-- l10n/sr@latin/lib.po | 4 +-- l10n/sr@latin/settings.po | 4 +-- l10n/sr@latin/user_ldap.po | 4 +-- l10n/sv/core.po | 4 +-- l10n/sv/files_sharing.po | 4 +-- l10n/sv/lib.po | 4 +-- l10n/sv/settings.po | 4 +-- l10n/sv/user_ldap.po | 4 +-- l10n/ta_LK/core.po | 30 +++++++++--------- l10n/ta_LK/files_sharing.po | 4 +-- l10n/ta_LK/lib.po | 4 +-- l10n/ta_LK/settings.po | 4 +-- l10n/ta_LK/user_ldap.po | 4 +-- l10n/te/core.po | 30 +++++++++--------- l10n/te/files_sharing.po | 4 +-- l10n/te/lib.po | 4 +-- l10n/te/settings.po | 4 +-- l10n/te/user_ldap.po | 4 +-- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/th_TH/core.po | 30 +++++++++--------- l10n/th_TH/files_sharing.po | 4 +-- l10n/th_TH/lib.po | 4 +-- l10n/th_TH/settings.po | 4 +-- l10n/th_TH/user_ldap.po | 4 +-- l10n/tr/core.po | 30 +++++++++--------- l10n/tr/files_sharing.po | 4 +-- l10n/tr/lib.po | 4 +-- l10n/tr/settings.po | 4 +-- l10n/tr/user_ldap.po | 4 +-- l10n/ug/core.po | 30 +++++++++--------- l10n/ug/files_sharing.po | 4 +-- l10n/ug/lib.po | 4 +-- l10n/ug/settings.po | 4 +-- l10n/ug/user_ldap.po | 4 +-- l10n/uk/core.po | 30 +++++++++--------- l10n/uk/files_sharing.po | 4 +-- l10n/uk/lib.po | 4 +-- l10n/uk/settings.po | 4 +-- l10n/uk/user_ldap.po | 4 +-- l10n/ur_PK/core.po | 30 +++++++++--------- l10n/ur_PK/files_sharing.po | 4 +-- l10n/ur_PK/lib.po | 4 +-- l10n/ur_PK/settings.po | 4 +-- l10n/ur_PK/user_ldap.po | 4 +-- l10n/vi/core.po | 30 +++++++++--------- l10n/vi/files_sharing.po | 4 +-- l10n/vi/lib.po | 4 +-- l10n/vi/settings.po | 4 +-- l10n/vi/user_ldap.po | 4 +-- l10n/zh_CN.GB2312/core.po | 4 +-- l10n/zh_CN.GB2312/files_sharing.po | 4 +-- l10n/zh_CN.GB2312/lib.po | 4 +-- l10n/zh_CN.GB2312/settings.po | 4 +-- l10n/zh_CN.GB2312/user_ldap.po | 4 +-- l10n/zh_CN/core.po | 30 +++++++++--------- l10n/zh_CN/files_sharing.po | 4 +-- l10n/zh_CN/lib.po | 4 +-- l10n/zh_CN/settings.po | 4 +-- l10n/zh_CN/user_ldap.po | 4 +-- l10n/zh_HK/core.po | 30 +++++++++--------- l10n/zh_HK/files_sharing.po | 4 +-- l10n/zh_HK/lib.po | 4 +-- l10n/zh_HK/settings.po | 4 +-- l10n/zh_HK/user_ldap.po | 4 +-- l10n/zh_TW/core.po | 30 +++++++++--------- l10n/zh_TW/files_sharing.po | 4 +-- l10n/zh_TW/lib.po | 4 +-- l10n/zh_TW/settings.po | 4 +-- l10n/zh_TW/user_ldap.po | 4 +-- settings/l10n/ja_JP.php | 10 ++++++ 360 files changed, 1610 insertions(+), 1589 deletions(-) diff --git a/apps/files_encryption/l10n/cs_CZ.php b/apps/files_encryption/l10n/cs_CZ.php index 7b2ce2d65c..4dd06280d8 100644 --- a/apps/files_encryption/l10n/cs_CZ.php +++ b/apps/files_encryption/l10n/cs_CZ.php @@ -10,6 +10,7 @@ "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Váš soukromý klíč není platný! Pravděpodobně bylo heslo změněno zvně systému ownCloud (např. ve vašem firemním adresáři). Můžete opravit vaše heslo soukromého klíče ve svém osobním nastavení pro obnovení přístupu k vašim zašifrovaným souborům.", "Missing requirements." => "Nesplněné závislosti.", "Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Ujistěte se prosím, že máte nainstalované PHP verze PHP 5.3.3 s nainstalovaným a správně nastaveným rozšířením OpenSSL. Prozatím byla šifrovací aplikace zablokována.", +"Following users are not set up for encryption:" => "Následující uživatelé nejsou připraveni k zakódování:", "Saving..." => "Ukládám...", "Your private key is not valid! Maybe the your password was changed from outside." => "Váš soukromý klíč není platný! Pravděpodobně bylo vaše heslo změněno zvenčí.", "You can unlock your private key in your " => "Můžete odemknout váš soukromý klíč ve vašem", diff --git a/apps/files_encryption/l10n/pt_BR.php b/apps/files_encryption/l10n/pt_BR.php index 1563243c99..3404ce4a54 100644 --- a/apps/files_encryption/l10n/pt_BR.php +++ b/apps/files_encryption/l10n/pt_BR.php @@ -10,6 +10,7 @@ "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Sua chave privada não é válida! Provavelmente sua senha foi alterada fora do sistema ownCloud (por exemplo, seu diretório corporativo). Você pode atualizar sua senha de chave privada em suas configurações pessoais para recuperar o acesso a seus arquivos criptografados.", "Missing requirements." => "Requisitos em falta.", "Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Por favor, certifique-se que o PHP 5.3.3 ou mais recente está instalado e que a extensão PHP OpenSSL está habilitado e configurado corretamente. Por enquanto, o aplicativo de criptografia foi desativado.", +"Following users are not set up for encryption:" => "Seguintes usuários não estão configurados para criptografia:", "Saving..." => "Salvando...", "Your private key is not valid! Maybe the your password was changed from outside." => "Sua chave privada não é válida! Talvez sua senha tenha sido mudada.", "You can unlock your private key in your " => "Você pode desbloquear sua chave privada nas suas", diff --git a/apps/files_versions/l10n/ja_JP.php b/apps/files_versions/l10n/ja_JP.php index d8a99c4980..8846d58e49 100644 --- a/apps/files_versions/l10n/ja_JP.php +++ b/apps/files_versions/l10n/ja_JP.php @@ -1,5 +1,8 @@ "元に戻せませんでした: %s", "Versions" => "バージョン", +"Failed to revert {file} to revision {timestamp}." => "{file} を {timestamp} のリヴィジョンに戻すことができません。", +"More versions..." => "もっと他のバージョン...", +"No other versions available" => "利用可能な他のバージョンはありません", "Restore" => "復元" ); diff --git a/apps/user_webdavauth/l10n/ja_JP.php b/apps/user_webdavauth/l10n/ja_JP.php index 047bb14833..6dbbc8ce85 100644 --- a/apps/user_webdavauth/l10n/ja_JP.php +++ b/apps/user_webdavauth/l10n/ja_JP.php @@ -1,3 +1,5 @@ "WebDAV 認証" +"WebDAV Authentication" => "WebDAV 認証", +"Address: " => "アドレス:", +"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." => "ユーザーの権限情報をこのアドレスに送信します。このプラグインは応答をチェックし、HTTP状態コードが 401 と 403 の場合は無効な資格情報とし、他の応答はすべて有効な資格情報として処理します。" ); diff --git a/core/l10n/cs_CZ.php b/core/l10n/cs_CZ.php index 1f7d4370d2..8974840994 100644 --- a/core/l10n/cs_CZ.php +++ b/core/l10n/cs_CZ.php @@ -91,7 +91,7 @@ "Request failed!
Did you make sure your email/username was right?" => "Požadavek selhal!
Ujistili jste se, že vaše uživatelské jméno a e-mail jsou správně?", "You will receive a link to reset your password via Email." => "E-mailem Vám bude zaslán odkaz pro obnovu hesla.", "Username" => "Uživatelské jméno", -"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?" => "Vaše soubory jsou šifrovány. Pokud nemáte povolen klíč pro obnovu, neexistuje způsob jak získat po změně hesla vaše data. Pokud si nejste jisti co dělat, kontaktujte nejprve svého správce. Opravdu si přejete pokračovat?", +"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?" => "Vaše soubory jsou šifrovány. Pokud nemáte povolen klíč pro obnovu, neexistuje způsob jak získat, po změně hesla, vaše data. Pokud si nejste jisti co dělat, kontaktujte nejprve svého správce. Opravdu si přejete pokračovat?", "Yes, I really want to reset my password now" => "Ano, opravdu si nyní přeji obnovit mé heslo", "Request reset" => "Vyžádat obnovu", "Your password was reset" => "Vaše heslo bylo obnoveno", diff --git a/l10n/af_ZA/core.po b/l10n/af_ZA/core.po index f310e68c56..9172c1dafc 100644 --- a/l10n/af_ZA/core.po +++ b/l10n/af_ZA/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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" @@ -141,55 +141,55 @@ msgstr "" msgid "Settings" msgstr "Instellings" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "" diff --git a/l10n/af_ZA/files_sharing.po b/l10n/af_ZA/files_sharing.po index 3bdda43428..a51530f213 100644 --- a/l10n/af_ZA/files_sharing.po +++ b/l10n/af_ZA/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/af_ZA/lib.po b/l10n/af_ZA/lib.po index c77f882d7b..6d1d757e27 100644 --- a/l10n/af_ZA/lib.po +++ b/l10n/af_ZA/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/af_ZA/settings.po b/l10n/af_ZA/settings.po index bf413a9039..64a38fbef8 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/af_ZA/user_ldap.po b/l10n/af_ZA/user_ldap.po index 233404f30f..1d1d4695a7 100644 --- a/l10n/af_ZA/user_ldap.po +++ b/l10n/af_ZA/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/core.po b/l10n/ar/core.po index 07652940cf..7fb684e257 100644 --- a/l10n/ar/core.po +++ b/l10n/ar/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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" @@ -141,55 +141,55 @@ msgstr "كانون الاول" msgid "Settings" msgstr "إعدادات" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "منذ ثواني" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "منذ دقيقة" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "{minutes} منذ دقائق" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "قبل ساعة مضت" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "{hours} ساعة مضت" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "اليوم" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "يوم أمس" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "{days} يوم سابق" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "الشهر الماضي" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "{months} شهر مضت" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "شهر مضى" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "السنةالماضية" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "سنة مضت" diff --git a/l10n/ar/files_sharing.po b/l10n/ar/files_sharing.po index 34d8af4fdc..c50d07e6b7 100644 --- a/l10n/ar/files_sharing.po +++ b/l10n/ar/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/lib.po b/l10n/ar/lib.po index 60c4df45eb..145239687f 100644 --- a/l10n/ar/lib.po +++ b/l10n/ar/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/settings.po b/l10n/ar/settings.po index 38f425ffe3..ae94f10fb3 100644 --- a/l10n/ar/settings.po +++ b/l10n/ar/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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 34874b7994..dea73584f4 100644 --- a/l10n/ar/user_ldap.po +++ b/l10n/ar/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/core.po b/l10n/bg_BG/core.po index 36a3615845..97e0522b4b 100644 --- a/l10n/bg_BG/core.po +++ b/l10n/bg_BG/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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" @@ -141,55 +141,55 @@ msgstr "Декември" msgid "Settings" msgstr "Настройки" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "преди секунди" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "преди 1 минута" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "преди 1 час" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "днес" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "вчера" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "последният месец" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "последната година" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "последните години" diff --git a/l10n/bg_BG/files_sharing.po b/l10n/bg_BG/files_sharing.po index 88a230e986..e65aa2dab5 100644 --- a/l10n/bg_BG/files_sharing.po +++ b/l10n/bg_BG/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/lib.po b/l10n/bg_BG/lib.po index 13a54296f9..468be09e1a 100644 --- a/l10n/bg_BG/lib.po +++ b/l10n/bg_BG/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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/settings.po b/l10n/bg_BG/settings.po index 862c9dce4c..35ea92f04d 100644 --- a/l10n/bg_BG/settings.po +++ b/l10n/bg_BG/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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 9895f4aa47..aa39d255b0 100644 --- a/l10n/bg_BG/user_ldap.po +++ b/l10n/bg_BG/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/core.po b/l10n/bn_BD/core.po index 408ffa0ef1..3f45e338fe 100644 --- a/l10n/bn_BD/core.po +++ b/l10n/bn_BD/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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" @@ -141,55 +141,55 @@ msgstr "ডিসেম্বর" msgid "Settings" msgstr "নিয়ামকসমূহ" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "সেকেন্ড পূর্বে" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "১ মিনিট পূর্বে" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "{minutes} মিনিট পূর্বে" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "1 ঘন্টা পূর্বে" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "{hours} ঘন্টা পূর্বে" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "আজ" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "গতকাল" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "{days} দিন পূর্বে" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "গত মাস" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "{months} মাস পূর্বে" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "মাস পূর্বে" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "গত বছর" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "বছর পূর্বে" diff --git a/l10n/bn_BD/files_sharing.po b/l10n/bn_BD/files_sharing.po index e16292014d..4f1f1e4f23 100644 --- a/l10n/bn_BD/files_sharing.po +++ b/l10n/bn_BD/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/lib.po b/l10n/bn_BD/lib.po index 9b7083e574..2dc3f5e31f 100644 --- a/l10n/bn_BD/lib.po +++ b/l10n/bn_BD/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/settings.po b/l10n/bn_BD/settings.po index 26adca72d8..88489c1aef 100644 --- a/l10n/bn_BD/settings.po +++ b/l10n/bn_BD/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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 72447d825b..5fe4d57ad4 100644 --- a/l10n/bn_BD/user_ldap.po +++ b/l10n/bn_BD/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/core.po b/l10n/ca/core.po index 59973b4c64..45151e69e6 100644 --- a/l10n/ca/core.po +++ b/l10n/ca/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -143,55 +143,55 @@ msgstr "Desembre" msgid "Settings" msgstr "Configuració" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "segons enrere" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "fa 1 minut" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "fa {minutes} minuts" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "fa 1 hora" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "fa {hours} hores" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "avui" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "ahir" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "fa {days} dies" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "el mes passat" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "fa {months} mesos" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "mesos enrere" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "l'any passat" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "anys enrere" diff --git a/l10n/ca/files_sharing.po b/l10n/ca/files_sharing.po index 116523992a..4360823305 100644 --- a/l10n/ca/files_sharing.po +++ b/l10n/ca/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-01 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 07:50+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/lib.po b/l10n/ca/lib.po index 6f79f8dd10..375cbe8cb5 100644 --- a/l10n/ca/lib.po +++ b/l10n/ca/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index 73bc843ac0..2a233c2183 100644 --- a/l10n/ca/settings.po +++ b/l10n/ca/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-26 20:40+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/user_ldap.po b/l10n/ca/user_ldap.po index 4002118c40..3e800ac655 100644 --- a/l10n/ca/user_ldap.po +++ b/l10n/ca/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-01 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 07:50+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po index 258670029d..753949b210 100644 --- a/l10n/cs_CZ/core.po +++ b/l10n/cs_CZ/core.po @@ -4,15 +4,16 @@ # # Translators: # Honza K. , 2013 +# Martin , 2013 # pstast , 2013 # Tomáš Chvátal , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:57-0400\n" -"PO-Revision-Date: 2013-08-01 18:00+0000\n" -"Last-Translator: pstast \n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"Last-Translator: Martin \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" @@ -144,55 +145,55 @@ msgstr "Prosinec" msgid "Settings" msgstr "Nastavení" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "před pár vteřinami" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "před minutou" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "před {minutes} minutami" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "před hodinou" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "před {hours} hodinami" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "dnes" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "včera" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "před {days} dny" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "minulý měsíc" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "před {months} měsíci" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "před měsíci" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "minulý rok" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "před lety" @@ -414,7 +415,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 "Vaše soubory jsou šifrovány. Pokud nemáte povolen klíč pro obnovu, neexistuje způsob jak získat po změně hesla vaše data. Pokud si nejste jisti co dělat, kontaktujte nejprve svého správce. Opravdu si přejete pokračovat?" +msgstr "Vaše soubory jsou šifrovány. Pokud nemáte povolen klíč pro obnovu, neexistuje způsob jak získat, po změně hesla, vaše data. Pokud si nejste jisti co dělat, kontaktujte nejprve svého správce. Opravdu si přejete pokračovat?" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" diff --git a/l10n/cs_CZ/files_encryption.po b/l10n/cs_CZ/files_encryption.po index 22f7b62bf9..eedc7bbdb2 100644 --- a/l10n/cs_CZ/files_encryption.po +++ b/l10n/cs_CZ/files_encryption.po @@ -4,14 +4,15 @@ # # Translators: # Honza K. , 2013 +# Martin , 2013 # Tomáš Chvátal , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:57+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-03 23:30+0000\n" +"Last-Translator: Martin \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" @@ -76,7 +77,7 @@ msgstr "Ujistěte se prosím, že máte nainstalované PHP verze PHP 5.3.3 s nai #: hooks/hooks.php:263 msgid "Following users are not set up for encryption:" -msgstr "" +msgstr "Následující uživatelé nejsou připraveni k zakódování:" #: js/settings-admin.js:11 msgid "Saving..." diff --git a/l10n/cs_CZ/files_sharing.po b/l10n/cs_CZ/files_sharing.po index 4e1ae51035..cbf65e02fb 100644 --- a/l10n/cs_CZ/files_sharing.po +++ b/l10n/cs_CZ/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:56-0400\n" -"PO-Revision-Date: 2013-08-01 18:30+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: pstast \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/lib.po b/l10n/cs_CZ/lib.po index 3a5a462265..b08c1e5116 100644 --- a/l10n/cs_CZ/lib.po +++ b/l10n/cs_CZ/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:57-0400\n" -"PO-Revision-Date: 2013-08-01 19:40+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: Honza K. \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po index 7fb0e844a2..a2a1071280 100644 --- a/l10n/cs_CZ/settings.po +++ b/l10n/cs_CZ/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:57-0400\n" -"PO-Revision-Date: 2013-08-01 20:00+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: pstast \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 0e9b72d3e8..4d59267bf1 100644 --- a/l10n/cs_CZ/user_ldap.po +++ b/l10n/cs_CZ/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: Honza K. \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 fdf6b56cf7..10570bb3a9 100644 --- a/l10n/cy_GB/core.po +++ b/l10n/cy_GB/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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" @@ -142,55 +142,55 @@ msgstr "Rhagfyr" msgid "Settings" msgstr "Gosodiadau" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "eiliad yn ôl" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "1 munud yn ôl" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "{minutes} munud yn ôl" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "1 awr yn ôl" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "{hours} awr yn ôl" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "heddiw" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "ddoe" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "{days} diwrnod yn ôl" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "mis diwethaf" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "{months} mis yn ôl" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "misoedd yn ôl" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "y llynedd" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "blwyddyn yn ôl" diff --git a/l10n/cy_GB/files_sharing.po b/l10n/cy_GB/files_sharing.po index c9edfb2a4b..36b441fb9a 100644 --- a/l10n/cy_GB/files_sharing.po +++ b/l10n/cy_GB/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/lib.po b/l10n/cy_GB/lib.po index 580ccc2902..3a0c1d2692 100644 --- a/l10n/cy_GB/lib.po +++ b/l10n/cy_GB/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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/settings.po b/l10n/cy_GB/settings.po index 25820b1996..51945aaba6 100644 --- a/l10n/cy_GB/settings.po +++ b/l10n/cy_GB/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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 d71262f1e3..1ba76b9843 100644 --- a/l10n/cy_GB/user_ldap.po +++ b/l10n/cy_GB/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/core.po b/l10n/da/core.po index a1a9cdeb1c..d69592d284 100644 --- a/l10n/da/core.po +++ b/l10n/da/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: Sappe\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -144,55 +144,55 @@ msgstr "December" msgid "Settings" msgstr "Indstillinger" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "sekunder siden" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "1 minut siden" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "{minutes} minutter siden" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "1 time siden" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "{hours} timer siden" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "i dag" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "i går" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "{days} dage siden" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "sidste måned" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "{months} måneder siden" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "måneder siden" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "sidste år" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "år siden" diff --git a/l10n/da/files_sharing.po b/l10n/da/files_sharing.po index 7ebea150ec..6e390fdcb3 100644 --- a/l10n/da/files_sharing.po +++ b/l10n/da/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-01 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 10:51+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: Sappe\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/lib.po b/l10n/da/lib.po index aefbe04217..2f0661d944 100644 --- a/l10n/da/lib.po +++ b/l10n/da/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: Sappe\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/settings.po b/l10n/da/settings.po index da7be3d4cb..f7dd400e80 100644 --- a/l10n/da/settings.po +++ b/l10n/da/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-29 01:56-0400\n" -"PO-Revision-Date: 2013-07-28 17:30+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: Sappe\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 123e7bf007..e9b0f6b6c0 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 16:31+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: Sappe\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 be3e99d64e..7f2bc3ce5f 100644 --- a/l10n/de/core.po +++ b/l10n/de/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: Mario Siegmann \n" "Language-Team: German \n" "MIME-Version: 1.0\n" @@ -148,55 +148,55 @@ msgstr "Dezember" msgid "Settings" msgstr "Einstellungen" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "Gerade eben" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "vor einer Minute" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "Vor {minutes} Minuten" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "Vor einer Stunde" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "Vor {hours} Stunden" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "Heute" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "Gestern" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "Vor {days} Tag(en)" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "Letzten Monat" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "Vor {months} Monaten" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "Vor Monaten" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "Letztes Jahr" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "Vor Jahren" diff --git a/l10n/de/files_sharing.po b/l10n/de/files_sharing.po index f187349142..5984d3c31d 100644 --- a/l10n/de/files_sharing.po +++ b/l10n/de/files_sharing.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-01 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 10:20+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: Mario Siegmann \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/lib.po b/l10n/de/lib.po index 21052b6f83..109207a62f 100644 --- a/l10n/de/lib.po +++ b/l10n/de/lib.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: Mario Siegmann \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/settings.po b/l10n/de/settings.po index ecc5a27ab0..00536ea92f 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 09:31+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: Mario Siegmann \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/user_ldap.po b/l10n/de/user_ldap.po index 849befa1d9..a845eb3066 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: Mario Siegmann \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/core.po b/l10n/de_DE/core.po index 620585599a..dd51b3b8a6 100644 --- a/l10n/de_DE/core.po +++ b/l10n/de_DE/core.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: Mario Siegmann \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" @@ -147,55 +147,55 @@ msgstr "Dezember" msgid "Settings" msgstr "Einstellungen" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "Gerade eben" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "Vor 1 Minute" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "Vor {minutes} Minuten" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "Vor einer Stunde" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "Vor {hours} Stunden" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "Heute" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "Gestern" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "Vor {days} Tag(en)" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "Letzten Monat" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "Vor {months} Monaten" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "Vor Monaten" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "Letztes Jahr" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "Vor Jahren" diff --git a/l10n/de_DE/files_sharing.po b/l10n/de_DE/files_sharing.po index 1f56b59086..c9d6f21c1a 100644 --- a/l10n/de_DE/files_sharing.po +++ b/l10n/de_DE/files_sharing.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-01 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 10:20+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: Mario Siegmann \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/lib.po b/l10n/de_DE/lib.po index 484c8ff3ab..9e998d3694 100644 --- a/l10n/de_DE/lib.po +++ b/l10n/de_DE/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: Mario Siegmann \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po index 155dac105d..374f7c904a 100644 --- a/l10n/de_DE/settings.po +++ b/l10n/de_DE/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 09:31+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: Mario Siegmann \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/user_ldap.po b/l10n/de_DE/user_ldap.po index c5b9e86c3a..09a7657264 100644 --- a/l10n/de_DE/user_ldap.po +++ b/l10n/de_DE/user_ldap.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: Mario Siegmann \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/el/core.po b/l10n/el/core.po index 7269021fb8..35365a40c5 100644 --- a/l10n/el/core.po +++ b/l10n/el/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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" @@ -148,55 +148,55 @@ msgstr "Δεκέμβριος" msgid "Settings" msgstr "Ρυθμίσεις" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "δευτερόλεπτα πριν" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "1 λεπτό πριν" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "{minutes} λεπτά πριν" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "1 ώρα πριν" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "{hours} ώρες πριν" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "σήμερα" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "χτες" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "{days} ημέρες πριν" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "τελευταίο μήνα" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "{months} μήνες πριν" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "μήνες πριν" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "τελευταίο χρόνο" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "χρόνια πριν" diff --git a/l10n/el/files_sharing.po b/l10n/el/files_sharing.po index 69db46394c..de0401891f 100644 --- a/l10n/el/files_sharing.po +++ b/l10n/el/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/lib.po b/l10n/el/lib.po index d323798d0e..bb7c7370a7 100644 --- a/l10n/el/lib.po +++ b/l10n/el/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/settings.po b/l10n/el/settings.po index d2ce711459..30c072d4c4 100644 --- a/l10n/el/settings.po +++ b/l10n/el/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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 9b8fe33a4b..cfdde9bef5 100644 --- a/l10n/el/user_ldap.po +++ b/l10n/el/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/en@pirate/core.po b/l10n/en@pirate/core.po index c4982d7819..a58c1135ed 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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" @@ -142,55 +142,55 @@ msgstr "" msgid "Settings" msgstr "" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "" @@ -227,7 +227,7 @@ msgstr "" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "" @@ -247,7 +247,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "" @@ -347,23 +347,23 @@ msgstr "" msgid "share" msgstr "" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "" -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "" @@ -462,7 +462,7 @@ msgstr "" msgid "Access forbidden" msgstr "" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "" diff --git a/l10n/en@pirate/files_sharing.po b/l10n/en@pirate/files_sharing.po index 0c43f6a051..e1ab35afff 100644 --- a/l10n/en@pirate/files_sharing.po +++ b/l10n/en@pirate/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/en@pirate/settings.po b/l10n/en@pirate/settings.po index 878079dfda..79163dfbd8 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/en@pirate/user_ldap.po b/l10n/en@pirate/user_ldap.po index 8c4039b04d..3f36998584 100644 --- a/l10n/en@pirate/user_ldap.po +++ b/l10n/en@pirate/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/core.po b/l10n/eo/core.po index 3cdd5ac74b..5d4bafb72e 100644 --- a/l10n/eo/core.po +++ b/l10n/eo/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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" @@ -143,55 +143,55 @@ msgstr "Decembro" msgid "Settings" msgstr "Agordo" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "sekundoj antaŭe" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "antaŭ 1 minuto" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "antaŭ {minutes} minutoj" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "antaŭ 1 horo" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "antaŭ {hours} horoj" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "hodiaŭ" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "hieraŭ" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "antaŭ {days} tagoj" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "lastamonate" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "antaŭ {months} monatoj" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "monatoj antaŭe" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "lastajare" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "jaroj antaŭe" diff --git a/l10n/eo/files_sharing.po b/l10n/eo/files_sharing.po index c66399b2a6..df90223eb6 100644 --- a/l10n/eo/files_sharing.po +++ b/l10n/eo/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/lib.po b/l10n/eo/lib.po index 72bd41c450..3fd499750c 100644 --- a/l10n/eo/lib.po +++ b/l10n/eo/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/settings.po b/l10n/eo/settings.po index b682094171..28fc2ebbc5 100644 --- a/l10n/eo/settings.po +++ b/l10n/eo/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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 68d47eba35..27bae0873e 100644 --- a/l10n/eo/user_ldap.po +++ b/l10n/eo/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/core.po b/l10n/es/core.po index f121edd4a2..48669cf204 100644 --- a/l10n/es/core.po +++ b/l10n/es/core.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: pablomillaquen \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" @@ -149,55 +149,55 @@ msgstr "Diciembre" msgid "Settings" msgstr "Ajustes" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "hace segundos" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "hace 1 minuto" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "hace {minutes} minutos" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "Hace 1 hora" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "Hace {hours} horas" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "hoy" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "ayer" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "hace {days} días" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "el mes pasado" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "Hace {months} meses" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "hace meses" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "el año pasado" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "hace años" diff --git a/l10n/es/files_sharing.po b/l10n/es/files_sharing.po index 08305cb687..383bd74c39 100644 --- a/l10n/es/files_sharing.po +++ b/l10n/es/files_sharing.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-01 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 16:30+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: Art O. Pal \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/lib.po b/l10n/es/lib.po index 1c79d179b6..0ac1ec2a97 100644 --- a/l10n/es/lib.po +++ b/l10n/es/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: pablomillaquen \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/settings.po b/l10n/es/settings.po index b480ded933..5b984e3f55 100644 --- a/l10n/es/settings.po +++ b/l10n/es/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 18:10+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: pablomillaquen \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 4dec487073..27fe83e9fa 100644 --- a/l10n/es/user_ldap.po +++ b/l10n/es/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/core.po b/l10n/es_AR/core.po index 94bf304700..6000db04ff 100644 --- a/l10n/es_AR/core.po +++ b/l10n/es_AR/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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" @@ -142,55 +142,55 @@ msgstr "diciembre" msgid "Settings" msgstr "Configuración" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "segundos atrás" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "hace 1 minuto" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "hace {minutes} minutos" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "1 hora atrás" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "hace {hours} horas" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "hoy" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "ayer" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "hace {days} días" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "el mes pasado" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "{months} meses atrás" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "meses atrás" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "el año pasado" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "años atrás" diff --git a/l10n/es_AR/files_sharing.po b/l10n/es_AR/files_sharing.po index 3c16c14114..bbe39b87e5 100644 --- a/l10n/es_AR/files_sharing.po +++ b/l10n/es_AR/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/lib.po b/l10n/es_AR/lib.po index 06e8c040a6..97230b87fe 100644 --- a/l10n/es_AR/lib.po +++ b/l10n/es_AR/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: cjtess \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/settings.po b/l10n/es_AR/settings.po index 9f2565ee63..7ab3a92fc1 100644 --- a/l10n/es_AR/settings.po +++ b/l10n/es_AR/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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 82d48a7e1b..2dc8066249 100644 --- a/l10n/es_AR/user_ldap.po +++ b/l10n/es_AR/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/core.po b/l10n/et_EE/core.po index 1a87d829d2..05f8b83ac0 100644 --- a/l10n/et_EE/core.po +++ b/l10n/et_EE/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: pisike.sipelgas \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -143,55 +143,55 @@ msgstr "Detsember" msgid "Settings" msgstr "Seaded" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "sekundit tagasi" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "1 minut tagasi" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "{minutes} minutit tagasi" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "1 tund tagasi" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "{hours} tundi tagasi" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "täna" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "eile" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "{days} päeva tagasi" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "viimasel kuul" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "{months} kuud tagasi" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "kuu tagasi" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "viimasel aastal" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "aastat tagasi" diff --git a/l10n/et_EE/files_sharing.po b/l10n/et_EE/files_sharing.po index fce075d224..3c6979735f 100644 --- a/l10n/et_EE/files_sharing.po +++ b/l10n/et_EE/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/lib.po b/l10n/et_EE/lib.po index 99e2c16249..e54afea757 100644 --- a/l10n/et_EE/lib.po +++ b/l10n/et_EE/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: pisike.sipelgas \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/settings.po b/l10n/et_EE/settings.po index acd28ee252..eea3af7654 100644 --- a/l10n/et_EE/settings.po +++ b/l10n/et_EE/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 08:40+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: pisike.sipelgas \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/user_ldap.po b/l10n/et_EE/user_ldap.po index 7a5b2570f2..9a4e6f7aa1 100644 --- a/l10n/et_EE/user_ldap.po +++ b/l10n/et_EE/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/core.po b/l10n/eu/core.po index 1f660f0642..c81ffc06bf 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: asieriko \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -143,55 +143,55 @@ msgstr "Abendua" msgid "Settings" msgstr "Ezarpenak" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "segundu" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "orain dela minutu 1" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "orain dela {minutes} minutu" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "orain dela ordu bat" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "orain dela {hours} ordu" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "gaur" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "atzo" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "orain dela {days} egun" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "joan den hilabetean" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "orain dela {months} hilabete" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "hilabete" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "joan den urtean" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "urte" diff --git a/l10n/eu/files_sharing.po b/l10n/eu/files_sharing.po index 9629a3e461..903a0b24aa 100644 --- a/l10n/eu/files_sharing.po +++ b/l10n/eu/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/lib.po b/l10n/eu/lib.po index 06423f2d25..3cfce3b6f4 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: asieriko \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/settings.po b/l10n/eu/settings.po index 2c34f899fe..5accc90b9d 100644 --- a/l10n/eu/settings.po +++ b/l10n/eu/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-28 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 15:30+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: asieriko \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 002bc4dfdb..2627732cb8 100644 --- a/l10n/eu/user_ldap.po +++ b/l10n/eu/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: asieriko \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 9cfd8ce084..b6e1472a3e 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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" @@ -142,55 +142,55 @@ msgstr "دسامبر" msgid "Settings" msgstr "تنظیمات" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "ثانیه‌ها پیش" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "1 دقیقه پیش" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "{دقیقه ها} دقیقه های پیش" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "1 ساعت پیش" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "{ساعت ها} ساعت ها پیش" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "امروز" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "دیروز" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "{روزها} روزهای پیش" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "ماه قبل" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "{ماه ها} ماه ها پیش" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "ماه‌های قبل" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "سال قبل" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "سال‌های قبل" diff --git a/l10n/fa/files_sharing.po b/l10n/fa/files_sharing.po index a7d90d416c..77ae948e11 100644 --- a/l10n/fa/files_sharing.po +++ b/l10n/fa/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/lib.po b/l10n/fa/lib.po index 3c8ebb5e49..a547252a6b 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/settings.po b/l10n/fa/settings.po index df8ab0bbd5..fd9ecf6660 100644 --- a/l10n/fa/settings.po +++ b/l10n/fa/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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 4d5bfef0de..138ed1e8fa 100644 --- a/l10n/fa/user_ldap.po +++ b/l10n/fa/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/core.po b/l10n/fi_FI/core.po index 09db5dddc5..65c06b520b 100644 --- a/l10n/fi_FI/core.po +++ b/l10n/fi_FI/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: Jiri Grönroos \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -142,55 +142,55 @@ msgstr "joulukuu" msgid "Settings" msgstr "Asetukset" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "sekuntia sitten" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "1 minuutti sitten" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "{minutes} minuuttia sitten" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "1 tunti sitten" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "{hours} tuntia sitten" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "tänään" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "eilen" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "{days} päivää sitten" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "viime kuussa" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "{months} kuukautta sitten" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "kuukautta sitten" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "viime vuonna" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "vuotta sitten" diff --git a/l10n/fi_FI/files_sharing.po b/l10n/fi_FI/files_sharing.po index 6f5c0b268f..e78e822651 100644 --- a/l10n/fi_FI/files_sharing.po +++ b/l10n/fi_FI/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-01 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 07:38+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: Jiri Grönroos \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/lib.po b/l10n/fi_FI/lib.po index e84f005d6a..ba476ca2d4 100644 --- a/l10n/fi_FI/lib.po +++ b/l10n/fi_FI/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po index 1658f4d7d0..e80ac811fb 100644 --- a/l10n/fi_FI/settings.po +++ b/l10n/fi_FI/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/user_ldap.po b/l10n/fi_FI/user_ldap.po index 8dbf5fe894..358ee7001d 100644 --- a/l10n/fi_FI/user_ldap.po +++ b/l10n/fi_FI/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+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 5ea8804ed8..57e4125227 100644 --- a/l10n/fr/core.po +++ b/l10n/fr/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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" @@ -146,55 +146,55 @@ msgstr "décembre" msgid "Settings" msgstr "Paramètres" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "il y a quelques secondes" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "il y a une minute" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "il y a {minutes} minutes" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "Il y a une heure" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "Il y a {hours} heures" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "aujourd'hui" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "hier" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "il y a {days} jours" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "le mois dernier" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "Il y a {months} mois" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "il y a plusieurs mois" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "l'année dernière" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "il y a plusieurs années" diff --git a/l10n/fr/files_sharing.po b/l10n/fr/files_sharing.po index 4c41bc8d54..f89822b341 100644 --- a/l10n/fr/files_sharing.po +++ b/l10n/fr/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/lib.po b/l10n/fr/lib.po index 1bd46de75e..a16420a728 100644 --- a/l10n/fr/lib.po +++ b/l10n/fr/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index 8e95507a94..371ea39073 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/user_ldap.po b/l10n/fr/user_ldap.po index bcfe7e3e19..52e8f7e72e 100644 --- a/l10n/fr/user_ldap.po +++ b/l10n/fr/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/core.po b/l10n/gl/core.po index 6ad071c401..f118195831 100644 --- a/l10n/gl/core.po +++ b/l10n/gl/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -142,55 +142,55 @@ msgstr "decembro" msgid "Settings" msgstr "Axustes" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "segundos atrás" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "hai 1 minuto" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "hai {minutes} minutos" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "Vai 1 hora" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "hai {hours} horas" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "hoxe" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "onte" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "hai {days} días" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "último mes" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "hai {months} meses" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "meses atrás" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "último ano" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "anos atrás" diff --git a/l10n/gl/files_sharing.po b/l10n/gl/files_sharing.po index 23b10c46bb..ff946e4f69 100644 --- a/l10n/gl/files_sharing.po +++ b/l10n/gl/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-01 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 09:30+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/lib.po b/l10n/gl/lib.po index f3fe2b82a1..e166c0d1ad 100644 --- a/l10n/gl/lib.po +++ b/l10n/gl/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po index 49fcaffcd5..45fbad9013 100644 --- a/l10n/gl/settings.po +++ b/l10n/gl/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 09:00+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/user_ldap.po b/l10n/gl/user_ldap.po index 37342000f6..06ecfaeb68 100644 --- a/l10n/gl/user_ldap.po +++ b/l10n/gl/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/core.po b/l10n/he/core.po index e67ba8ad75..4c5600aa55 100644 --- a/l10n/he/core.po +++ b/l10n/he/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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" @@ -142,55 +142,55 @@ msgstr "דצמבר" msgid "Settings" msgstr "הגדרות" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "שניות" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "לפני דקה אחת" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "לפני {minutes} דקות" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "לפני שעה" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "לפני {hours} שעות" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "היום" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "אתמול" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "לפני {days} ימים" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "חודש שעבר" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "לפני {months} חודשים" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "חודשים" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "שנה שעברה" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "שנים" diff --git a/l10n/he/files_sharing.po b/l10n/he/files_sharing.po index aa4b887ee2..9f1ce229c7 100644 --- a/l10n/he/files_sharing.po +++ b/l10n/he/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/lib.po b/l10n/he/lib.po index 2830a8eab8..3596f6929c 100644 --- a/l10n/he/lib.po +++ b/l10n/he/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/settings.po b/l10n/he/settings.po index 1af965a096..0ecf0382d4 100644 --- a/l10n/he/settings.po +++ b/l10n/he/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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 f868583576..92412a3acf 100644 --- a/l10n/he/user_ldap.po +++ b/l10n/he/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/core.po b/l10n/hi/core.po index 4a16892033..da414f326b 100644 --- a/l10n/hi/core.po +++ b/l10n/hi/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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" @@ -142,55 +142,55 @@ msgstr "दिसम्बर" msgid "Settings" msgstr "सेटिंग्स" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "" diff --git a/l10n/hi/files_sharing.po b/l10n/hi/files_sharing.po index d2f33421d8..1b0fd22ba8 100644 --- a/l10n/hi/files_sharing.po +++ b/l10n/hi/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/lib.po b/l10n/hi/lib.po index ab9714261e..82f9745909 100644 --- a/l10n/hi/lib.po +++ b/l10n/hi/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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/settings.po b/l10n/hi/settings.po index f522a760cf..1cbce12652 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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 cc861519d2..dba9ae3b02 100644 --- a/l10n/hi/user_ldap.po +++ b/l10n/hi/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/core.po b/l10n/hr/core.po index 3a61a6b864..beaf2aeae5 100644 --- a/l10n/hr/core.po +++ b/l10n/hr/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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" @@ -141,55 +141,55 @@ msgstr "Prosinac" msgid "Settings" msgstr "Postavke" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "sekundi prije" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "danas" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "jučer" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "prošli mjesec" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "mjeseci" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "prošlu godinu" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "godina" diff --git a/l10n/hr/files_sharing.po b/l10n/hr/files_sharing.po index 3b41ad7c0f..1accb3a66a 100644 --- a/l10n/hr/files_sharing.po +++ b/l10n/hr/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/lib.po b/l10n/hr/lib.po index c866a1a202..04da1356f0 100644 --- a/l10n/hr/lib.po +++ b/l10n/hr/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/settings.po b/l10n/hr/settings.po index b7d80dba4f..f49d42a60a 100644 --- a/l10n/hr/settings.po +++ b/l10n/hr/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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 74a0ad121a..724cb66407 100644 --- a/l10n/hr/user_ldap.po +++ b/l10n/hr/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/core.po b/l10n/hu_HU/core.po index ce7f4a8f03..07535df580 100644 --- a/l10n/hu_HU/core.po +++ b/l10n/hu_HU/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: ebela \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -143,55 +143,55 @@ msgstr "december" msgid "Settings" msgstr "Beállítások" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "pár másodperce" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "1 perce" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "{minutes} perce" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "1 órája" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "{hours} órája" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "ma" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "tegnap" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "{days} napja" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "múlt hónapban" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "{months} hónapja" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "több hónapja" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "tavaly" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "több éve" diff --git a/l10n/hu_HU/files_sharing.po b/l10n/hu_HU/files_sharing.po index 0d018aba9b..d5cd26bf87 100644 --- a/l10n/hu_HU/files_sharing.po +++ b/l10n/hu_HU/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/lib.po b/l10n/hu_HU/lib.po index f103a4224d..40fca00f72 100644 --- a/l10n/hu_HU/lib.po +++ b/l10n/hu_HU/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: ebela \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/settings.po b/l10n/hu_HU/settings.po index 55cb8bceb3..7de382a917 100644 --- a/l10n/hu_HU/settings.po +++ b/l10n/hu_HU/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-26 19:30+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: ebela \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 28f951cefb..a3a8d807eb 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/core.po b/l10n/ia/core.po index a552d39009..16f83c98df 100644 --- a/l10n/ia/core.po +++ b/l10n/ia/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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" @@ -141,55 +141,55 @@ msgstr "Decembre" msgid "Settings" msgstr "Configurationes" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "" diff --git a/l10n/ia/files_sharing.po b/l10n/ia/files_sharing.po index 940bd354de..68d91a2991 100644 --- a/l10n/ia/files_sharing.po +++ b/l10n/ia/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/lib.po b/l10n/ia/lib.po index 6e47ee9dae..5a15ebc1e9 100644 --- a/l10n/ia/lib.po +++ b/l10n/ia/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/settings.po b/l10n/ia/settings.po index d13f934dd3..b490b5b054 100644 --- a/l10n/ia/settings.po +++ b/l10n/ia/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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 901092e5e3..8dd885a062 100644 --- a/l10n/ia/user_ldap.po +++ b/l10n/ia/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/core.po b/l10n/id/core.po index 092d01d17e..a373e07894 100644 --- a/l10n/id/core.po +++ b/l10n/id/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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" @@ -141,55 +141,55 @@ msgstr "Desember" msgid "Settings" msgstr "Setelan" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "beberapa detik yang lalu" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "1 menit yang lalu" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "{minutes} menit yang lalu" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "1 jam yang lalu" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "{hours} jam yang lalu" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "hari ini" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "kemarin" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "{days} hari yang lalu" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "bulan kemarin" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "{months} bulan yang lalu" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "beberapa bulan lalu" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "tahun kemarin" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "beberapa tahun lalu" diff --git a/l10n/id/files_sharing.po b/l10n/id/files_sharing.po index 793bcb2e75..7130233a66 100644 --- a/l10n/id/files_sharing.po +++ b/l10n/id/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/lib.po b/l10n/id/lib.po index 1866b3b798..808d582a7d 100644 --- a/l10n/id/lib.po +++ b/l10n/id/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/settings.po b/l10n/id/settings.po index edfbd93638..8ab6e79e37 100644 --- a/l10n/id/settings.po +++ b/l10n/id/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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 da1981e766..acb31ed65e 100644 --- a/l10n/id/user_ldap.po +++ b/l10n/id/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/core.po b/l10n/is/core.po index a02b8f3fae..9fe09adf63 100644 --- a/l10n/is/core.po +++ b/l10n/is/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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" @@ -142,55 +142,55 @@ msgstr "Desember" msgid "Settings" msgstr "Stillingar" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "sek." -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "Fyrir 1 mínútu" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "{minutes} min síðan" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "Fyrir 1 klst." -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "fyrir {hours} klst." -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "í dag" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "í gær" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "{days} dagar síðan" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "síðasta mánuði" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "fyrir {months} mánuðum" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "mánuðir síðan" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "síðasta ári" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "einhverjum árum" diff --git a/l10n/is/files_sharing.po b/l10n/is/files_sharing.po index e01d766773..3db22086b2 100644 --- a/l10n/is/files_sharing.po +++ b/l10n/is/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/lib.po b/l10n/is/lib.po index 4df8009d67..32295e15e8 100644 --- a/l10n/is/lib.po +++ b/l10n/is/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/settings.po b/l10n/is/settings.po index c9bd7610fa..a839a7a070 100644 --- a/l10n/is/settings.po +++ b/l10n/is/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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 7c34f34cd0..be713f10c0 100644 --- a/l10n/is/user_ldap.po +++ b/l10n/is/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/core.po b/l10n/it/core.po index 7980040fb4..abaf413f68 100644 --- a/l10n/it/core.po +++ b/l10n/it/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -144,55 +144,55 @@ msgstr "Dicembre" msgid "Settings" msgstr "Impostazioni" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "secondi fa" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "Un minuto fa" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "{minutes} minuti fa" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "1 ora fa" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "{hours} ore fa" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "oggi" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "ieri" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "{days} giorni fa" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "mese scorso" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "{months} mesi fa" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "mesi fa" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "anno scorso" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "anni fa" diff --git a/l10n/it/files_sharing.po b/l10n/it/files_sharing.po index 784e96175f..217df78381 100644 --- a/l10n/it/files_sharing.po +++ b/l10n/it/files_sharing.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-01 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 07:38+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/lib.po b/l10n/it/lib.po index 8562c1b2df..ef7fe07c14 100644 --- a/l10n/it/lib.po +++ b/l10n/it/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/settings.po b/l10n/it/settings.po index 5180fdb53f..ec7d961247 100644 --- a/l10n/it/settings.po +++ b/l10n/it/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-26 16:50+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/user_ldap.po b/l10n/it/user_ldap.po index e42ed7790d..b71bd28689 100644 --- a/l10n/it/user_ldap.po +++ b/l10n/it/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/core.po b/l10n/ja_JP/core.po index 1b26070dc6..feeca3cbaf 100644 --- a/l10n/ja_JP/core.po +++ b/l10n/ja_JP/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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" @@ -143,55 +143,55 @@ msgstr "12月" msgid "Settings" msgstr "設定" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "数秒前" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "1 分前" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "{minutes} 分前" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "1 時間前" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "{hours} 時間前" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "今日" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "昨日" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "{days} 日前" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "一月前" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "{months} 月前" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "月前" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "一年前" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "年前" diff --git a/l10n/ja_JP/files_sharing.po b/l10n/ja_JP/files_sharing.po index 73d3652d5a..4980cae888 100644 --- a/l10n/ja_JP/files_sharing.po +++ b/l10n/ja_JP/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/files_versions.po b/l10n/ja_JP/files_versions.po index 685cc2abee..a160c897a2 100644 --- a/l10n/ja_JP/files_versions.po +++ b/l10n/ja_JP/files_versions.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# tt yn , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-28 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 06:10+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 01:10+0000\n" +"Last-Translator: tt yn \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,15 +29,15 @@ msgstr "バージョン" #: js/versions.js:53 msgid "Failed to revert {file} to revision {timestamp}." -msgstr "" +msgstr "{file} を {timestamp} のリヴィジョンに戻すことができません。" #: js/versions.js:79 msgid "More versions..." -msgstr "" +msgstr "もっと他のバージョン..." #: js/versions.js:116 msgid "No other versions available" -msgstr "" +msgstr "利用可能な他のバージョンはありません" #: js/versions.js:149 msgid "Restore" diff --git a/l10n/ja_JP/lib.po b/l10n/ja_JP/lib.po index 63e44f1469..3946f049c5 100644 --- a/l10n/ja_JP/lib.po +++ b/l10n/ja_JP/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/settings.po b/l10n/ja_JP/settings.po index b539811238..c1e900940c 100644 --- a/l10n/ja_JP/settings.po +++ b/l10n/ja_JP/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"Last-Translator: tt yn \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -183,7 +183,7 @@ msgid "" "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 "" +msgstr "データディレクトリとファイルがインターネットからアクセス可能になっている可能性があります。.htaccessファイルが機能していません。データディレクトリがアクセスされないようにウェブサーバーを設定するか、ウェブサーバーのドキュメントルートからデータディレクトリを移動するように強くお勧めします。" #: templates/admin.php:29 msgid "Setup Warning" @@ -198,7 +198,7 @@ msgstr "WebDAVインタフェースが動作していないと考えられるた #: templates/admin.php:33 #, php-format msgid "Please double check the installation guides." -msgstr "" +msgstr "installation guidesをもう一度チェックするようにお願いいたします。" #: templates/admin.php:44 msgid "Module 'fileinfo' missing" @@ -220,7 +220,7 @@ msgid "" "System locale can't be set to %s. This means that there might be problems " "with certain characters in file names. We strongly suggest to install the " "required packages on your system to support %s." -msgstr "" +msgstr "システムロケールが %s に設定出来ません。この場合、ファイル名にそのロケールの文字が入っていたときに問題になる可能性があります。必要なパッケージをシステムにインストールして、%s をサポートすることを強くお勧めします。" #: templates/admin.php:75 msgid "Internet connection not working" @@ -233,7 +233,7 @@ msgid "" "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 "" +msgstr "このサーバーはインターネットに接続していません。この場合、外部ストレージのマウント、更新の通知やサードパーティアプリといったいくつかの機能が使えません。また、リモート接続でのファイルアクセス、通知メールの送信と言った機能も利用できないかもしれません。全ての機能を利用したいのであれば、このサーバーからインターネットに接続できるようにすることをお勧めします。" #: templates/admin.php:92 msgid "Cron" @@ -247,11 +247,11 @@ msgstr "各ページの読み込み時にタスクを実行する" msgid "" "cron.php is registered at a webcron service to call cron.php once a minute " "over http." -msgstr "" +msgstr "http経由で1分間に1回cron.phpを呼び出すように cron.phpがwebcron サービスに登録されています。" #: templates/admin.php:121 msgid "Use systems cron service to call the cron.php file once a minute." -msgstr "" +msgstr "cron.phpファイルを1分間に1回実行する為にサーバーのcronサービスを利用する。" #: templates/admin.php:128 msgid "Sharing" @@ -275,12 +275,12 @@ msgstr "リンクによりアイテムを公開することを許可する" #: templates/admin.php:151 msgid "Allow public uploads" -msgstr "" +msgstr "パブリックなアップロードを許可" #: templates/admin.php:152 msgid "" "Allow users to enable others to upload into their publicly shared folders" -msgstr "" +msgstr "公開している共有フォルダへのアップロードを共有しているメンバーにも許可" #: templates/admin.php:160 msgid "Allow resharing" @@ -309,14 +309,14 @@ msgstr "常にHTTPSを使用する" #: templates/admin.php:193 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." -msgstr "" +msgstr "クライアントから %sへの接続を常に暗号化する。" #: templates/admin.php:199 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." -msgstr "" +msgstr "強制的なSSL接続を有効/無効にするために、HTTPS経由で %s へ接続してください。" #: templates/admin.php:211 msgid "Log" diff --git a/l10n/ja_JP/user_ldap.po b/l10n/ja_JP/user_ldap.po index 1c8c1b407c..cdb3a32b0b 100644 --- a/l10n/ja_JP/user_ldap.po +++ b/l10n/ja_JP/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/user_webdavauth.po b/l10n/ja_JP/user_webdavauth.po index 504eff3ee0..c24eb2a95d 100644 --- a/l10n/ja_JP/user_webdavauth.po +++ b/l10n/ja_JP/user_webdavauth.po @@ -6,13 +6,14 @@ # Daisuke Deguchi , 2012 # Daisuke Deguchi , 2012-2013 # plazmism , 2013 +# tt yn , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:57+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 01:10+0000\n" +"Last-Translator: tt yn \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,11 +27,11 @@ msgstr "WebDAV 認証" #: templates/settings.php:4 msgid "Address: " -msgstr "" +msgstr "アドレス:" #: templates/settings.php:7 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 "" +msgstr "ユーザーの権限情報をこのアドレスに送信します。このプラグインは応答をチェックし、HTTP状態コードが 401 と 403 の場合は無効な資格情報とし、他の応答はすべて有効な資格情報として処理します。" diff --git a/l10n/ka/core.po b/l10n/ka/core.po index 7bfb35fbc7..a6e96b91fe 100644 --- a/l10n/ka/core.po +++ b/l10n/ka/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -141,55 +141,55 @@ msgstr "" msgid "Settings" msgstr "" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "წამის წინ" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "1 წუთის წინ" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "1 საათის წინ" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "დღეს" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "გუშინ" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "" diff --git a/l10n/ka/files_sharing.po b/l10n/ka/files_sharing.po index d03fb2074c..c66af7f136 100644 --- a/l10n/ka/files_sharing.po +++ b/l10n/ka/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka/lib.po b/l10n/ka/lib.po index be614d19be..9c181af82e 100644 --- a/l10n/ka/lib.po +++ b/l10n/ka/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka/settings.po b/l10n/ka/settings.po index 6408e9c065..82c0600bc8 100644 --- a/l10n/ka/settings.po +++ b/l10n/ka/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka/user_ldap.po b/l10n/ka/user_ldap.po index f2b7389faa..2ed240f9a6 100644 --- a/l10n/ka/user_ldap.po +++ b/l10n/ka/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/core.po b/l10n/ka_GE/core.po index e74124b1f2..b1be2067a3 100644 --- a/l10n/ka_GE/core.po +++ b/l10n/ka_GE/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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" @@ -141,55 +141,55 @@ msgstr "დეკემბერი" msgid "Settings" msgstr "პარამეტრები" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "წამის წინ" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "1 წუთის წინ" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "{minutes} წუთის წინ" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "1 საათის წინ" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "{hours} საათის წინ" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "დღეს" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "გუშინ" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "{days} დღის წინ" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "გასულ თვეში" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "{months} თვის წინ" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "თვის წინ" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "ბოლო წელს" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "წლის წინ" diff --git a/l10n/ka_GE/files_sharing.po b/l10n/ka_GE/files_sharing.po index 349d781cc9..81868d1a0e 100644 --- a/l10n/ka_GE/files_sharing.po +++ b/l10n/ka_GE/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/lib.po b/l10n/ka_GE/lib.po index 90083f3cfd..cbc529f589 100644 --- a/l10n/ka_GE/lib.po +++ b/l10n/ka_GE/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/settings.po b/l10n/ka_GE/settings.po index 373cecbae3..306c771ecd 100644 --- a/l10n/ka_GE/settings.po +++ b/l10n/ka_GE/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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 04c7538f51..a0beedfcc2 100644 --- a/l10n/ka_GE/user_ldap.po +++ b/l10n/ka_GE/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/core.po b/l10n/ko/core.po index 15b5a44259..de8a2f445d 100644 --- a/l10n/ko/core.po +++ b/l10n/ko/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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" @@ -143,55 +143,55 @@ msgstr "12월" msgid "Settings" msgstr "설정" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "초 전" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "1분 전" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "{minutes}분 전" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "1시간 전" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "{hours}시간 전" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "오늘" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "어제" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "{days}일 전" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "지난 달" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "{months}개월 전" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "개월 전" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "작년" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "년 전" diff --git a/l10n/ko/files_sharing.po b/l10n/ko/files_sharing.po index 98a35975c0..36a7cc9c72 100644 --- a/l10n/ko/files_sharing.po +++ b/l10n/ko/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/lib.po b/l10n/ko/lib.po index e94791c18e..a603bde297 100644 --- a/l10n/ko/lib.po +++ b/l10n/ko/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/settings.po b/l10n/ko/settings.po index d2fb6add9c..fb077e66db 100644 --- a/l10n/ko/settings.po +++ b/l10n/ko/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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 ad8ee3ed2a..547021c910 100644 --- a/l10n/ko/user_ldap.po +++ b/l10n/ko/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/core.po b/l10n/ku_IQ/core.po index 7a4da67564..2c8de7bc54 100644 --- a/l10n/ku_IQ/core.po +++ b/l10n/ku_IQ/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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" @@ -141,55 +141,55 @@ msgstr "" msgid "Settings" msgstr "ده‌ستكاری" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "" diff --git a/l10n/ku_IQ/files_sharing.po b/l10n/ku_IQ/files_sharing.po index b7314e7946..d4546d92d4 100644 --- a/l10n/ku_IQ/files_sharing.po +++ b/l10n/ku_IQ/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/lib.po b/l10n/ku_IQ/lib.po index 9274ba255a..84017f953c 100644 --- a/l10n/ku_IQ/lib.po +++ b/l10n/ku_IQ/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/settings.po b/l10n/ku_IQ/settings.po index 61f6673717..7285c3da28 100644 --- a/l10n/ku_IQ/settings.po +++ b/l10n/ku_IQ/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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 1ff6172211..7d971996c5 100644 --- a/l10n/ku_IQ/user_ldap.po +++ b/l10n/ku_IQ/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/core.po b/l10n/lb/core.po index 24120db971..890293257c 100644 --- a/l10n/lb/core.po +++ b/l10n/lb/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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" @@ -142,55 +142,55 @@ msgstr "Dezember" msgid "Settings" msgstr "Astellungen" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "Sekonnen hir" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "1 Minutt hir" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "virun {minutes} Minutten" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "virun 1 Stonn" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "virun {hours} Stonnen" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "haut" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "gëschter" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "virun {days} Deeg" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "leschte Mount" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "virun {months} Méint" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "Méint hir" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "Lescht Joer" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "Joren hir" diff --git a/l10n/lb/files_sharing.po b/l10n/lb/files_sharing.po index 1b02b6939f..b99907df26 100644 --- a/l10n/lb/files_sharing.po +++ b/l10n/lb/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/lib.po b/l10n/lb/lib.po index 3a82a7edf7..ede1c573d7 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/settings.po b/l10n/lb/settings.po index 35610d9727..0a6840bf29 100644 --- a/l10n/lb/settings.po +++ b/l10n/lb/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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 b67486d75b..ff308c5e0e 100644 --- a/l10n/lb/user_ldap.po +++ b/l10n/lb/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/core.po b/l10n/lt_LT/core.po index 0ff3d16d68..a6e89dddd3 100644 --- a/l10n/lt_LT/core.po +++ b/l10n/lt_LT/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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" @@ -143,55 +143,55 @@ msgstr "Gruodis" msgid "Settings" msgstr "Nustatymai" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "prieš sekundę" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "Prieš 1 minutę" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "Prieš {count} minutes" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "prieš 1 valandą" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "prieš {hours} valandas" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "šiandien" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "vakar" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "Prieš {days} dienas" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "praeitą mėnesį" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "prieš {months} mėnesių" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "prieš mėnesį" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "praeitais metais" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "prieš metus" diff --git a/l10n/lt_LT/files_sharing.po b/l10n/lt_LT/files_sharing.po index ac8a368754..924cfe1f38 100644 --- a/l10n/lt_LT/files_sharing.po +++ b/l10n/lt_LT/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/lib.po b/l10n/lt_LT/lib.po index 352a441e3c..a3da13549d 100644 --- a/l10n/lt_LT/lib.po +++ b/l10n/lt_LT/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/settings.po b/l10n/lt_LT/settings.po index 60dc7deb39..b4c8931325 100644 --- a/l10n/lt_LT/settings.po +++ b/l10n/lt_LT/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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 cc4485baa5..254827f3a8 100644 --- a/l10n/lt_LT/user_ldap.po +++ b/l10n/lt_LT/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/core.po b/l10n/lv/core.po index 4ee5542d59..40c38fda75 100644 --- a/l10n/lv/core.po +++ b/l10n/lv/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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" @@ -141,55 +141,55 @@ msgstr "Decembris" msgid "Settings" msgstr "Iestatījumi" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "sekundes atpakaļ" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "pirms 1 minūtes" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "pirms {minutes} minūtēm" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "pirms 1 stundas" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "pirms {hours} stundām" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "šodien" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "vakar" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "pirms {days} dienām" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "pagājušajā mēnesī" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "pirms {months} mēnešiem" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "mēnešus atpakaļ" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "gājušajā gadā" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "gadus atpakaļ" diff --git a/l10n/lv/files_sharing.po b/l10n/lv/files_sharing.po index 8a2763ec51..a920f0276d 100644 --- a/l10n/lv/files_sharing.po +++ b/l10n/lv/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/lib.po b/l10n/lv/lib.po index 5c952891c4..276da094bc 100644 --- a/l10n/lv/lib.po +++ b/l10n/lv/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/settings.po b/l10n/lv/settings.po index 46c574e7af..a12f48a2b5 100644 --- a/l10n/lv/settings.po +++ b/l10n/lv/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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 2bd8f6842d..556a293a7c 100644 --- a/l10n/lv/user_ldap.po +++ b/l10n/lv/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/core.po b/l10n/mk/core.po index 3dc2cdcab4..b16e146c11 100644 --- a/l10n/mk/core.po +++ b/l10n/mk/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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" @@ -141,55 +141,55 @@ msgstr "Декември" msgid "Settings" msgstr "Подесувања" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "пред секунди" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "пред 1 минута" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "пред {minutes} минути" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "пред 1 час" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "пред {hours} часови" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "денеска" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "вчера" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "пред {days} денови" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "минатиот месец" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "пред {months} месеци" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "пред месеци" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "минатата година" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "пред години" diff --git a/l10n/mk/files_sharing.po b/l10n/mk/files_sharing.po index ac0efb09ea..b7d397e48d 100644 --- a/l10n/mk/files_sharing.po +++ b/l10n/mk/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/lib.po b/l10n/mk/lib.po index dbe4359e4c..d874bda2e5 100644 --- a/l10n/mk/lib.po +++ b/l10n/mk/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/settings.po b/l10n/mk/settings.po index 0018282afe..e11d8a822c 100644 --- a/l10n/mk/settings.po +++ b/l10n/mk/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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 b85bbf1e56..d1883cd979 100644 --- a/l10n/mk/user_ldap.po +++ b/l10n/mk/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/core.po b/l10n/ms_MY/core.po index 2c377e673d..cd60d15f45 100644 --- a/l10n/ms_MY/core.po +++ b/l10n/ms_MY/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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" @@ -141,55 +141,55 @@ msgstr "Disember" msgid "Settings" msgstr "Tetapan" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "" diff --git a/l10n/ms_MY/files_sharing.po b/l10n/ms_MY/files_sharing.po index ca3a8ca1f2..5b81ab15ac 100644 --- a/l10n/ms_MY/files_sharing.po +++ b/l10n/ms_MY/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/lib.po b/l10n/ms_MY/lib.po index 7e64969eb0..1c115a0327 100644 --- a/l10n/ms_MY/lib.po +++ b/l10n/ms_MY/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/settings.po b/l10n/ms_MY/settings.po index ef2595222e..9947d57cbe 100644 --- a/l10n/ms_MY/settings.po +++ b/l10n/ms_MY/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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 ac60e6d8b9..351df3db37 100644 --- a/l10n/ms_MY/user_ldap.po +++ b/l10n/ms_MY/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/my_MM/core.po b/l10n/my_MM/core.po index 3b725afd1b..70b6fef3f6 100644 --- a/l10n/my_MM/core.po +++ b/l10n/my_MM/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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" @@ -141,55 +141,55 @@ msgstr "ဒီဇင်ဘာ" msgid "Settings" msgstr "" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "စက္ကန့်အနည်းငယ်က" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "၁ မိနစ်အရင်က" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "၁ နာရီ အရင်က" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "ယနေ့" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "မနေ့က" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "ပြီးခဲ့သောလ" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "မနှစ်က" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "နှစ် အရင်က" diff --git a/l10n/my_MM/files_sharing.po b/l10n/my_MM/files_sharing.po index 640fd07c17..7727161307 100644 --- a/l10n/my_MM/files_sharing.po +++ b/l10n/my_MM/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/my_MM/lib.po b/l10n/my_MM/lib.po index cd8ea13538..2dc174649a 100644 --- a/l10n/my_MM/lib.po +++ b/l10n/my_MM/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/my_MM/settings.po b/l10n/my_MM/settings.po index 4eda2c15be..903834397b 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/my_MM/user_ldap.po b/l10n/my_MM/user_ldap.po index 1d0a51d4a3..f9f369565a 100644 --- a/l10n/my_MM/user_ldap.po +++ b/l10n/my_MM/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/core.po b/l10n/nb_NO/core.po index d65bf7c168..e6c777862c 100644 --- a/l10n/nb_NO/core.po +++ b/l10n/nb_NO/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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" @@ -142,55 +142,55 @@ msgstr "Desember" msgid "Settings" msgstr "Innstillinger" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "sekunder siden" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "1 minutt siden" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "{minutes} minutter siden" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "1 time siden" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "{hours} timer siden" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "i dag" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "i går" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "{days} dager siden" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "forrige måned" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "{months} måneder siden" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "måneder siden" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "forrige år" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "år siden" diff --git a/l10n/nb_NO/files_sharing.po b/l10n/nb_NO/files_sharing.po index ed32d42f6c..ffdb64e606 100644 --- a/l10n/nb_NO/files_sharing.po +++ b/l10n/nb_NO/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/lib.po b/l10n/nb_NO/lib.po index 71ab9aec2b..9ddd3f5c57 100644 --- a/l10n/nb_NO/lib.po +++ b/l10n/nb_NO/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/settings.po b/l10n/nb_NO/settings.po index feb3576e2d..b5762962ac 100644 --- a/l10n/nb_NO/settings.po +++ b/l10n/nb_NO/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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 c4942645d3..853b63433c 100644 --- a/l10n/nb_NO/user_ldap.po +++ b/l10n/nb_NO/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/core.po b/l10n/nl/core.po index 2041e32605..e1de8e6f85 100644 --- a/l10n/nl/core.po +++ b/l10n/nl/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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" @@ -143,55 +143,55 @@ msgstr "december" msgid "Settings" msgstr "Instellingen" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "seconden geleden" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "1 minuut geleden" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "{minutes} minuten geleden" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "1 uur geleden" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "{hours} uren geleden" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "vandaag" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "gisteren" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "{days} dagen geleden" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "vorige maand" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "{months} maanden geleden" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "maanden geleden" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "vorig jaar" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "jaar geleden" diff --git a/l10n/nl/files_sharing.po b/l10n/nl/files_sharing.po index 8223ec70b1..6b1ff94026 100644 --- a/l10n/nl/files_sharing.po +++ b/l10n/nl/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/lib.po b/l10n/nl/lib.po index 242adb3fe1..cdb43a7072 100644 --- a/l10n/nl/lib.po +++ b/l10n/nl/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: Len \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index a2ed8c51e6..cdd7df2f87 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-28 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 14:50+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: Len \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 1fbf3553a8..a0aed2817d 100644 --- a/l10n/nl/user_ldap.po +++ b/l10n/nl/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: Len \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 181d16dc83..78ca5c6dad 100644 --- a/l10n/nn_NO/core.po +++ b/l10n/nn_NO/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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" @@ -143,55 +143,55 @@ msgstr "Desember" msgid "Settings" msgstr "Innstillingar" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "sekund sidan" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "1 minutt sidan" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "{minutes} minutt sidan" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "1 time sidan" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "{hours} timar sidan" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "i dag" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "i går" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "{days} dagar sidan" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "førre månad" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "{months} månadar sidan" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "månadar sidan" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "i fjor" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "år sidan" diff --git a/l10n/nn_NO/files_sharing.po b/l10n/nn_NO/files_sharing.po index 8ae98be0ca..03c071a0dd 100644 --- a/l10n/nn_NO/files_sharing.po +++ b/l10n/nn_NO/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/lib.po b/l10n/nn_NO/lib.po index 72832d2013..bcd30436ad 100644 --- a/l10n/nn_NO/lib.po +++ b/l10n/nn_NO/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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/settings.po b/l10n/nn_NO/settings.po index aeaadb95a3..0754a6783c 100644 --- a/l10n/nn_NO/settings.po +++ b/l10n/nn_NO/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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 b70768d7de..5a41293008 100644 --- a/l10n/nn_NO/user_ldap.po +++ b/l10n/nn_NO/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/core.po b/l10n/oc/core.po index 309f87a709..feeec48278 100644 --- a/l10n/oc/core.po +++ b/l10n/oc/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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" @@ -141,55 +141,55 @@ msgstr "Decembre" msgid "Settings" msgstr "Configuracion" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "segonda a" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "1 minuta a" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "uèi" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "ièr" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "mes passat" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "meses a" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "an passat" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "ans a" diff --git a/l10n/oc/files_sharing.po b/l10n/oc/files_sharing.po index d8f6bb9a86..b8303b01f1 100644 --- a/l10n/oc/files_sharing.po +++ b/l10n/oc/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/lib.po b/l10n/oc/lib.po index 758bf58b23..95eaa629e8 100644 --- a/l10n/oc/lib.po +++ b/l10n/oc/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/settings.po b/l10n/oc/settings.po index ad508f9068..e0d324ca4b 100644 --- a/l10n/oc/settings.po +++ b/l10n/oc/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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 a28bd120b8..e247b03464 100644 --- a/l10n/oc/user_ldap.po +++ b/l10n/oc/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/core.po b/l10n/pl/core.po index a5822793cf..0c61635fb8 100644 --- a/l10n/pl/core.po +++ b/l10n/pl/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-01 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 07:38+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: Cyryl Sochacki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -143,55 +143,55 @@ msgstr "Grudzień" msgid "Settings" msgstr "Ustawienia" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "sekund temu" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "1 minutę temu" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "{minutes} minut temu" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "1 godzinę temu" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "{hours} godzin temu" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "dziś" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "wczoraj" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "{days} dni temu" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "w zeszłym miesiącu" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "{months} miesięcy temu" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "miesięcy temu" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "w zeszłym roku" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "lat temu" diff --git a/l10n/pl/files_sharing.po b/l10n/pl/files_sharing.po index f49a08df8a..dc022a82a2 100644 --- a/l10n/pl/files_sharing.po +++ b/l10n/pl/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-01 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 06:10+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: Cyryl Sochacki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/lib.po b/l10n/pl/lib.po index e90fe749bc..54c16bb62d 100644 --- a/l10n/pl/lib.po +++ b/l10n/pl/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-01 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 07:38+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: Cyryl Sochacki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index 61dd2280e5..aa11a574cc 100644 --- a/l10n/pl/settings.po +++ b/l10n/pl/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-01 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 07:38+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: Cyryl Sochacki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/user_ldap.po b/l10n/pl/user_ldap.po index dcd7013f69..59a900ea6c 100644 --- a/l10n/pl/user_ldap.po +++ b/l10n/pl/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/core.po b/l10n/pt_BR/core.po index 35b7103dc3..ef82485587 100644 --- a/l10n/pt_BR/core.po +++ b/l10n/pt_BR/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -143,55 +143,55 @@ msgstr "dezembro" msgid "Settings" msgstr "Ajustes" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "segundos atrás" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "1 minuto atrás" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "{minutes} minutos atrás" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "1 hora atrás" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "{hours} horas atrás" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "hoje" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "ontem" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "{days} dias atrás" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "último mês" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "{months} meses atrás" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "meses atrás" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "último ano" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "anos atrás" diff --git a/l10n/pt_BR/files_encryption.po b/l10n/pt_BR/files_encryption.po index 486433e9b1..bebc61f2fb 100644 --- a/l10n/pt_BR/files_encryption.po +++ b/l10n/pt_BR/files_encryption.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:57+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 01:20+0000\n" +"Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -76,7 +76,7 @@ msgstr "Por favor, certifique-se que o PHP 5.3.3 ou mais recente está instalado #: hooks/hooks.php:263 msgid "Following users are not set up for encryption:" -msgstr "" +msgstr "Seguintes usuários não estão configurados para criptografia:" #: js/settings-admin.js:11 msgid "Saving..." diff --git a/l10n/pt_BR/files_sharing.po b/l10n/pt_BR/files_sharing.po index d382f7570b..7b87279704 100644 --- a/l10n/pt_BR/files_sharing.po +++ b/l10n/pt_BR/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-01 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 10:30+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/lib.po b/l10n/pt_BR/lib.po index b5dc7ad4e4..63261adbfd 100644 --- a/l10n/pt_BR/lib.po +++ b/l10n/pt_BR/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/settings.po b/l10n/pt_BR/settings.po index 08e1098056..9de3873ade 100644 --- a/l10n/pt_BR/settings.po +++ b/l10n/pt_BR/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 12:30+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/user_ldap.po b/l10n/pt_BR/user_ldap.po index ddc3d7e66e..34ce87b54d 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: tuliouel\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 42c0929b11..abba963f8b 100644 --- a/l10n/pt_PT/core.po +++ b/l10n/pt_PT/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: Helder Meneses \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -145,55 +145,55 @@ msgstr "Dezembro" msgid "Settings" msgstr "Configurações" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "Minutos atrás" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "Há 1 minuto" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "{minutes} minutos atrás" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "Há 1 horas" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "Há {hours} horas atrás" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "hoje" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "ontem" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "{days} dias atrás" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "ultímo mês" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "Há {months} meses atrás" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "meses atrás" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "ano passado" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "anos atrás" diff --git a/l10n/pt_PT/files_sharing.po b/l10n/pt_PT/files_sharing.po index 6cb410e6e1..468e3d0884 100644 --- a/l10n/pt_PT/files_sharing.po +++ b/l10n/pt_PT/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/lib.po b/l10n/pt_PT/lib.po index 1a3939583a..df6290845f 100644 --- a/l10n/pt_PT/lib.po +++ b/l10n/pt_PT/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: Helder Meneses \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/settings.po b/l10n/pt_PT/settings.po index 341c7e882f..ce430296f2 100644 --- a/l10n/pt_PT/settings.po +++ b/l10n/pt_PT/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-26 11:00+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: Helder Meneses \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/user_ldap.po b/l10n/pt_PT/user_ldap.po index 48979e5e80..4fbf0d1bc2 100644 --- a/l10n/pt_PT/user_ldap.po +++ b/l10n/pt_PT/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/core.po b/l10n/ro/core.po index 1537c13dd9..888968365e 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: corneliu.e \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -145,55 +145,55 @@ msgstr "Decembrie" msgid "Settings" msgstr "Setări" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "secunde în urmă" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "1 minut în urmă" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "{minutes} minute in urmă" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "Acum o oră" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "{hours} ore în urmă" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "astăzi" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "ieri" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "{days} zile in urmă" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "ultima lună" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "{months} luni în urmă" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "luni în urmă" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "ultimul an" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "ani în urmă" diff --git a/l10n/ro/files_sharing.po b/l10n/ro/files_sharing.po index 49b2267a3f..29f0f95e2d 100644 --- a/l10n/ro/files_sharing.po +++ b/l10n/ro/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/lib.po b/l10n/ro/lib.po index c2f89f171d..42f5f30ea3 100644 --- a/l10n/ro/lib.po +++ b/l10n/ro/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/settings.po b/l10n/ro/settings.po index eeb631665c..a54dd4e952 100644 --- a/l10n/ro/settings.po +++ b/l10n/ro/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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 f56facba0d..678d29975a 100644 --- a/l10n/ro/user_ldap.po +++ b/l10n/ro/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/core.po b/l10n/ru/core.po index bb252af722..f94be423de 100644 --- a/l10n/ru/core.po +++ b/l10n/ru/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:57-0400\n" -"PO-Revision-Date: 2013-08-01 17:50+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: Den4md \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -148,55 +148,55 @@ msgstr "Декабрь" msgid "Settings" msgstr "Конфигурация" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "несколько секунд назад" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "1 минуту назад" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "{minutes} минут назад" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "час назад" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "{hours} часов назад" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "сегодня" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "вчера" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "{days} дней назад" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "в прошлом месяце" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "{months} месяцев назад" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "несколько месяцев назад" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "в прошлом году" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "несколько лет назад" diff --git a/l10n/ru/files_sharing.po b/l10n/ru/files_sharing.po index 16ded2bfe6..698ff11358 100644 --- a/l10n/ru/files_sharing.po +++ b/l10n/ru/files_sharing.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:56-0400\n" -"PO-Revision-Date: 2013-08-01 17:40+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: Den4md \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/lib.po b/l10n/ru/lib.po index 2aab4fee2d..5280cba75e 100644 --- a/l10n/ru/lib.po +++ b/l10n/ru/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: Alexander Shashkevych \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/settings.po b/l10n/ru/settings.po index a4d1e3ae37..0a648270bd 100644 --- a/l10n/ru/settings.po +++ b/l10n/ru/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-29 11:40+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: Alexander Shashkevych \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 7558860d48..cdd1f344bf 100644 --- a/l10n/ru/user_ldap.po +++ b/l10n/ru/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: Alexander Shashkevych \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 d891de9308..13b71cf063 100644 --- a/l10n/si_LK/core.po +++ b/l10n/si_LK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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" @@ -141,55 +141,55 @@ msgstr "දෙසැම්බර්" msgid "Settings" msgstr "සිටුවම්" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "තත්පරයන්ට පෙර" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "1 මිනිත්තුවකට පෙර" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "අද" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "ඊයේ" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "පෙර මාසයේ" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "මාස කීපයකට පෙර" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "පෙර අවුරුද්දේ" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "අවුරුදු කීපයකට පෙර" diff --git a/l10n/si_LK/files_sharing.po b/l10n/si_LK/files_sharing.po index fb8e0b2e44..4eabc2ac66 100644 --- a/l10n/si_LK/files_sharing.po +++ b/l10n/si_LK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/lib.po b/l10n/si_LK/lib.po index 6b8ff4aca1..59d4f49d1f 100644 --- a/l10n/si_LK/lib.po +++ b/l10n/si_LK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/settings.po b/l10n/si_LK/settings.po index 83a432ea14..2dd2b45595 100644 --- a/l10n/si_LK/settings.po +++ b/l10n/si_LK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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 6ef80e04cb..a1f7b85078 100644 --- a/l10n/si_LK/user_ldap.po +++ b/l10n/si_LK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/core.po b/l10n/sk_SK/core.po index 2b3692aad6..5df52e2878 100644 --- a/l10n/sk_SK/core.po +++ b/l10n/sk_SK/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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" @@ -142,55 +142,55 @@ msgstr "December" msgid "Settings" msgstr "Nastavenia" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "pred sekundami" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "pred minútou" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "pred {minutes} minútami" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "Pred 1 hodinou" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "Pred {hours} hodinami." -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "dnes" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "včera" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "pred {days} dňami" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "minulý mesiac" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "Pred {months} mesiacmi." -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "pred mesiacmi" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "minulý rok" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "pred rokmi" diff --git a/l10n/sk_SK/files_sharing.po b/l10n/sk_SK/files_sharing.po index a904512e69..988e088929 100644 --- a/l10n/sk_SK/files_sharing.po +++ b/l10n/sk_SK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/lib.po b/l10n/sk_SK/lib.po index 0d18fe3965..aa82aa3ee2 100644 --- a/l10n/sk_SK/lib.po +++ b/l10n/sk_SK/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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/settings.po b/l10n/sk_SK/settings.po index b441612eae..f2f4836cac 100644 --- a/l10n/sk_SK/settings.po +++ b/l10n/sk_SK/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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 e1b6bb618f..856ca50856 100644 --- a/l10n/sk_SK/user_ldap.po +++ b/l10n/sk_SK/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+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 55df77f349..d0c6971b5f 100644 --- a/l10n/sl/core.po +++ b/l10n/sl/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-01 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 06:10+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: barbarak \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -143,55 +143,55 @@ msgstr "december" msgid "Settings" msgstr "Nastavitve" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "pred nekaj sekundami" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "pred minuto" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "pred {minutes} minutami" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "Pred 1 uro" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "pred {hours} urami" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "danes" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "včeraj" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "pred {days} dnevi" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "zadnji mesec" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "pred {months} meseci" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "mesecev nazaj" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "lansko leto" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "let nazaj" diff --git a/l10n/sl/files_sharing.po b/l10n/sl/files_sharing.po index 7df04bc173..baea63065a 100644 --- a/l10n/sl/files_sharing.po +++ b/l10n/sl/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/lib.po b/l10n/sl/lib.po index 0aa12d196e..ce4d702109 100644 --- a/l10n/sl/lib.po +++ b/l10n/sl/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index c79736efda..1f3e9e7bbf 100644 --- a/l10n/sl/settings.po +++ b/l10n/sl/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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 89e0f26521..d0c3f5765d 100644 --- a/l10n/sl/user_ldap.po +++ b/l10n/sl/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/core.po b/l10n/sq/core.po index 2c882917c0..64a19a9f10 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-01 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 23:10+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: Odeen \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -143,55 +143,55 @@ msgstr "Dhjetor" msgid "Settings" msgstr "Parametra" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "sekonda më parë" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "1 minutë më parë" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "{minutes} minuta më parë" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "1 orë më parë" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "{hours} orë më parë" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "sot" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "dje" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "{days} ditë më parë" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "muajin e shkuar" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "{months} muaj më parë" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "muaj më parë" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "vitin e shkuar" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "vite më parë" diff --git a/l10n/sq/files_sharing.po b/l10n/sq/files_sharing.po index 1dce2e65bc..3599e09b98 100644 --- a/l10n/sq/files_sharing.po +++ b/l10n/sq/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/lib.po b/l10n/sq/lib.po index 6c1b4ba5b5..2a56dcbd7f 100644 --- a/l10n/sq/lib.po +++ b/l10n/sq/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/settings.po b/l10n/sq/settings.po index 7591212a54..975c838ad7 100644 --- a/l10n/sq/settings.po +++ b/l10n/sq/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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 b1fcde92cd..2ed99287af 100644 --- a/l10n/sq/user_ldap.po +++ b/l10n/sq/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/core.po b/l10n/sr/core.po index 462d4016e2..48259183d3 100644 --- a/l10n/sr/core.po +++ b/l10n/sr/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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" @@ -141,55 +141,55 @@ msgstr "Децембар" msgid "Settings" msgstr "Поставке" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "пре неколико секунди" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "пре 1 минут" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "пре {minutes} минута" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "Пре једног сата" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "Пре {hours} сата (сати)" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "данас" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "јуче" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "пре {days} дана" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "прошлог месеца" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "Пре {months} месеца (месеци)" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "месеци раније" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "прошле године" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "година раније" diff --git a/l10n/sr/files_sharing.po b/l10n/sr/files_sharing.po index 93140c0942..2f7332e85c 100644 --- a/l10n/sr/files_sharing.po +++ b/l10n/sr/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/lib.po b/l10n/sr/lib.po index e5b62d888b..3f9b8db253 100644 --- a/l10n/sr/lib.po +++ b/l10n/sr/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/settings.po b/l10n/sr/settings.po index 785e8f1cb8..f1ba85f6d5 100644 --- a/l10n/sr/settings.po +++ b/l10n/sr/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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 4e15ea5bd4..31f3cbf8af 100644 --- a/l10n/sr/user_ldap.po +++ b/l10n/sr/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/core.po b/l10n/sr@latin/core.po index 7657df7e8a..49ce87eb10 100644 --- a/l10n/sr@latin/core.po +++ b/l10n/sr@latin/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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" @@ -141,55 +141,55 @@ msgstr "Decembar" msgid "Settings" msgstr "Podešavanja" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "" diff --git a/l10n/sr@latin/files_sharing.po b/l10n/sr@latin/files_sharing.po index 62dd8a318b..0d103e9386 100644 --- a/l10n/sr@latin/files_sharing.po +++ b/l10n/sr@latin/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/lib.po b/l10n/sr@latin/lib.po index 9ec9e7fac6..2218d64277 100644 --- a/l10n/sr@latin/lib.po +++ b/l10n/sr@latin/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/settings.po b/l10n/sr@latin/settings.po index 473e8b4f08..95200220f7 100644 --- a/l10n/sr@latin/settings.po +++ b/l10n/sr@latin/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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 2b5d1f15a8..cab46e6a8d 100644 --- a/l10n/sr@latin/user_ldap.po +++ b/l10n/sr@latin/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/core.po b/l10n/sv/core.po index 5ba113d3c7..f141fb768e 100644 --- a/l10n/sv/core.po +++ b/l10n/sv/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-03 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 10:10+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: Magnus Höglund \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/files_sharing.po b/l10n/sv/files_sharing.po index e8c04f5f3d..707b478f94 100644 --- a/l10n/sv/files_sharing.po +++ b/l10n/sv/files_sharing.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-03 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 10:50+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: Magnus Höglund \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/lib.po b/l10n/sv/lib.po index 414bb52415..e889ebc259 100644 --- a/l10n/sv/lib.po +++ b/l10n/sv/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: medialabs\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index f765a1c04f..303881a972 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-03 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 10:30+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: Magnus Höglund \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 e379fcecef..28b7941b8e 100644 --- a/l10n/sv/user_ldap.po +++ b/l10n/sv/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-03 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 10:40+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: Magnus Höglund \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 57b84bb5dc..67e28fc37e 100644 --- a/l10n/ta_LK/core.po +++ b/l10n/ta_LK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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" @@ -141,55 +141,55 @@ msgstr "மார்கழி" msgid "Settings" msgstr "அமைப்புகள்" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "செக்கன்களுக்கு முன்" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "1 நிமிடத்திற்கு முன் " -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "{நிமிடங்கள்} நிமிடங்களுக்கு முன் " -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "1 மணித்தியாலத்திற்கு முன்" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "{மணித்தியாலங்கள்} மணித்தியாலங்களிற்கு முன்" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "இன்று" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "நேற்று" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "{நாட்கள்} நாட்களுக்கு முன்" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "கடந்த மாதம்" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "{மாதங்கள்} மாதங்களிற்கு முன்" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "மாதங்களுக்கு முன்" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "கடந்த வருடம்" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "வருடங்களுக்கு முன்" diff --git a/l10n/ta_LK/files_sharing.po b/l10n/ta_LK/files_sharing.po index 7c8041c6cc..4880d98b43 100644 --- a/l10n/ta_LK/files_sharing.po +++ b/l10n/ta_LK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/lib.po b/l10n/ta_LK/lib.po index 3aac60962c..bf7c398a45 100644 --- a/l10n/ta_LK/lib.po +++ b/l10n/ta_LK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/settings.po b/l10n/ta_LK/settings.po index 17f5009f77..e0551bda04 100644 --- a/l10n/ta_LK/settings.po +++ b/l10n/ta_LK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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 2e0ab2843a..dbf4b8ed81 100644 --- a/l10n/ta_LK/user_ldap.po +++ b/l10n/ta_LK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/core.po b/l10n/te/core.po index 0678e40d64..918b7289fa 100644 --- a/l10n/te/core.po +++ b/l10n/te/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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" @@ -141,55 +141,55 @@ msgstr "డిసెంబర్" msgid "Settings" msgstr "అమరికలు" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "క్షణాల క్రితం" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "1 నిమిషం క్రితం" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "{minutes} నిమిషాల క్రితం" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "1 గంట క్రితం" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "{hours} గంటల క్రితం" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "ఈరోజు" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "నిన్న" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "{days} రోజుల క్రితం" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "పోయిన నెల" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "{months} నెలల క్రితం" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "నెలల క్రితం" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "పోయిన సంవత్సరం" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "సంవత్సరాల క్రితం" diff --git a/l10n/te/files_sharing.po b/l10n/te/files_sharing.po index 3b3743c975..ed863a3da3 100644 --- a/l10n/te/files_sharing.po +++ b/l10n/te/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/lib.po b/l10n/te/lib.po index 7d9db7511f..370f405c28 100644 --- a/l10n/te/lib.po +++ b/l10n/te/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/settings.po b/l10n/te/settings.po index 7eb9f85c79..efbf9806a1 100644 --- a/l10n/te/settings.po +++ b/l10n/te/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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 cf534a3c9b..6e7b216db1 100644 --- a/l10n/te/user_ldap.po +++ b/l10n/te/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 34c057e60e..01e2b671bf 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-03 01:55-0400\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index e246ef91b1..283b962a17 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-03 01:55-0400\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 910a360b10..ce75f89cee 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-03 01:55-0400\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index aafb20f57d..b92d0599f4 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-03 01:55-0400\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index e99ea89aca..5640ea739a 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-03 01:55-0400\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index 454a43fae7..64bf4b543d 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-03 01:55-0400\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index d2995c94a3..cfdc502ad6 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-03 01:55-0400\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index e0a2511e1c..2a73cba667 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-03 01:55-0400\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 70e56ee894..37bf47748e 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-03 01:55-0400\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 9fdcbc5a29..142948b6a9 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-03 01:55-0400\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index 95e6a6ad41..f8ea3cc89d 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-03 01:55-0400\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/th_TH/core.po b/l10n/th_TH/core.po index 63ae34e1a7..06a3412e2a 100644 --- a/l10n/th_TH/core.po +++ b/l10n/th_TH/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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" @@ -141,55 +141,55 @@ msgstr "ธันวาคม" msgid "Settings" msgstr "ตั้งค่า" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "วินาที ก่อนหน้านี้" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "1 นาทีก่อนหน้านี้" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "{minutes} นาทีก่อนหน้านี้" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "1 ชั่วโมงก่อนหน้านี้" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "{hours} ชั่วโมงก่อนหน้านี้" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "วันนี้" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "เมื่อวานนี้" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "{day} วันก่อนหน้านี้" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "เดือนที่แล้ว" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "{months} เดือนก่อนหน้านี้" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "เดือน ที่ผ่านมา" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "ปีที่แล้ว" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "ปี ที่ผ่านมา" diff --git a/l10n/th_TH/files_sharing.po b/l10n/th_TH/files_sharing.po index 8699fb3840..1e6b0998b0 100644 --- a/l10n/th_TH/files_sharing.po +++ b/l10n/th_TH/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/lib.po b/l10n/th_TH/lib.po index c8a3eecf40..314f740f6b 100644 --- a/l10n/th_TH/lib.po +++ b/l10n/th_TH/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/settings.po b/l10n/th_TH/settings.po index 635e9f9471..5d3eb1828b 100644 --- a/l10n/th_TH/settings.po +++ b/l10n/th_TH/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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 bdaa854871..2e5cecd064 100644 --- a/l10n/th_TH/user_ldap.po +++ b/l10n/th_TH/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/core.po b/l10n/tr/core.po index 5f98732ac0..7164783ff8 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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" @@ -142,55 +142,55 @@ msgstr "Aralık" msgid "Settings" msgstr "Ayarlar" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "saniye önce" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "1 dakika önce" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "{minutes} dakika önce" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "1 saat önce" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "{hours} saat önce" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "bugün" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "dün" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "{days} gün önce" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "geçen ay" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "{months} ay önce" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "ay önce" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "geçen yıl" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "yıl önce" diff --git a/l10n/tr/files_sharing.po b/l10n/tr/files_sharing.po index 498486086d..3c85443524 100644 --- a/l10n/tr/files_sharing.po +++ b/l10n/tr/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/lib.po b/l10n/tr/lib.po index 31eca3fff5..8b7f4d190f 100644 --- a/l10n/tr/lib.po +++ b/l10n/tr/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index f11f04b70e..0d0d1f3f7a 100644 --- a/l10n/tr/settings.po +++ b/l10n/tr/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/user_ldap.po b/l10n/tr/user_ldap.po index b92f0ef35e..a86abc4929 100644 --- a/l10n/tr/user_ldap.po +++ b/l10n/tr/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/core.po b/l10n/ug/core.po index 9a6950f93c..1cd2900cda 100644 --- a/l10n/ug/core.po +++ b/l10n/ug/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" @@ -141,55 +141,55 @@ msgstr "كۆنەك" msgid "Settings" msgstr "تەڭشەكلەر" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "1 مىنۇت ئىلگىرى" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "1 سائەت ئىلگىرى" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "بۈگۈن" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "تۈنۈگۈن" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "" diff --git a/l10n/ug/files_sharing.po b/l10n/ug/files_sharing.po index af6816a97b..97bd1eb5b7 100644 --- a/l10n/ug/files_sharing.po +++ b/l10n/ug/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/lib.po b/l10n/ug/lib.po index 8cfb7be324..018931a3d7 100644 --- a/l10n/ug/lib.po +++ b/l10n/ug/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/settings.po b/l10n/ug/settings.po index 7743eec059..d8a8331649 100644 --- a/l10n/ug/settings.po +++ b/l10n/ug/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/user_ldap.po b/l10n/ug/user_ldap.po index f1f2c40e5c..49daddeb2a 100644 --- a/l10n/ug/user_ldap.po +++ b/l10n/ug/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/core.po b/l10n/uk/core.po index e0d6c3e123..97c36a7343 100644 --- a/l10n/uk/core.po +++ b/l10n/uk/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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" @@ -141,55 +141,55 @@ msgstr "Грудень" msgid "Settings" msgstr "Налаштування" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "секунди тому" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "1 хвилину тому" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "{minutes} хвилин тому" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "1 годину тому" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "{hours} години тому" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "сьогодні" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "вчора" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "{days} днів тому" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "минулого місяця" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "{months} місяців тому" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "місяці тому" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "минулого року" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "роки тому" diff --git a/l10n/uk/files_sharing.po b/l10n/uk/files_sharing.po index 8b42f1750c..a44d48e4b0 100644 --- a/l10n/uk/files_sharing.po +++ b/l10n/uk/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/lib.po b/l10n/uk/lib.po index ef6c69e342..89913155b8 100644 --- a/l10n/uk/lib.po +++ b/l10n/uk/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/settings.po b/l10n/uk/settings.po index 6d73628bd5..305f6e4bff 100644 --- a/l10n/uk/settings.po +++ b/l10n/uk/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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 9c8fb92aee..fac9e7b6da 100644 --- a/l10n/uk/user_ldap.po +++ b/l10n/uk/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/core.po b/l10n/ur_PK/core.po index 6028892d2a..601d15beb1 100644 --- a/l10n/ur_PK/core.po +++ b/l10n/ur_PK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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" @@ -141,55 +141,55 @@ msgstr "دسمبر" msgid "Settings" msgstr "سیٹینگز" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "" diff --git a/l10n/ur_PK/files_sharing.po b/l10n/ur_PK/files_sharing.po index bdb1bd4bf0..6880222c4c 100644 --- a/l10n/ur_PK/files_sharing.po +++ b/l10n/ur_PK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/lib.po b/l10n/ur_PK/lib.po index b6fb2fe245..4347d7f1fa 100644 --- a/l10n/ur_PK/lib.po +++ b/l10n/ur_PK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/settings.po b/l10n/ur_PK/settings.po index 72bc49405e..3eef889f52 100644 --- a/l10n/ur_PK/settings.po +++ b/l10n/ur_PK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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 68f284014e..9b9987041e 100644 --- a/l10n/ur_PK/user_ldap.po +++ b/l10n/ur_PK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/core.po b/l10n/vi/core.po index 10cc991123..e4c1b0b1c4 100644 --- a/l10n/vi/core.po +++ b/l10n/vi/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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" @@ -142,55 +142,55 @@ msgstr "Tháng 12" msgid "Settings" msgstr "Cài đặt" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "vài giây trước" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "1 phút trước" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "{minutes} phút trước" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "1 giờ trước" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "{hours} giờ trước" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "hôm nay" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "hôm qua" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "{days} ngày trước" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "tháng trước" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "{months} tháng trước" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "tháng trước" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "năm trước" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "năm trước" diff --git a/l10n/vi/files_sharing.po b/l10n/vi/files_sharing.po index 790f1962b0..4c5fff60a8 100644 --- a/l10n/vi/files_sharing.po +++ b/l10n/vi/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/lib.po b/l10n/vi/lib.po index a36030ee8e..8caf92f1aa 100644 --- a/l10n/vi/lib.po +++ b/l10n/vi/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/settings.po b/l10n/vi/settings.po index 10d1857188..cce44da5fe 100644 --- a/l10n/vi/settings.po +++ b/l10n/vi/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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 f9e4d85ee6..8de7ed160e 100644 --- a/l10n/vi/user_ldap.po +++ b/l10n/vi/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/core.po b/l10n/zh_CN.GB2312/core.po index 7828ac9a31..bedd18c3cb 100644 --- a/l10n/zh_CN.GB2312/core.po +++ b/l10n/zh_CN.GB2312/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-03 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 12:20+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: Martin Liu \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/files_sharing.po b/l10n/zh_CN.GB2312/files_sharing.po index 8ee0a2a54c..8e31402793 100644 --- a/l10n/zh_CN.GB2312/files_sharing.po +++ b/l10n/zh_CN.GB2312/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/lib.po b/l10n/zh_CN.GB2312/lib.po index e948c4e021..c540254d9e 100644 --- a/l10n/zh_CN.GB2312/lib.po +++ b/l10n/zh_CN.GB2312/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/settings.po b/l10n/zh_CN.GB2312/settings.po index 092a305f34..10f058e419 100644 --- a/l10n/zh_CN.GB2312/settings.po +++ b/l10n/zh_CN.GB2312/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-03 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 12:00+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+0000\n" "Last-Translator: Martin Liu \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/user_ldap.po b/l10n/zh_CN.GB2312/user_ldap.po index ce8958d3f6..2bc58acb88 100644 --- a/l10n/zh_CN.GB2312/user_ldap.po +++ b/l10n/zh_CN.GB2312/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/core.po b/l10n/zh_CN/core.po index fed020d0c9..6b64060f1e 100644 --- a/l10n/zh_CN/core.po +++ b/l10n/zh_CN/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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" @@ -143,55 +143,55 @@ msgstr "十二月" msgid "Settings" msgstr "设置" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "秒前" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "一分钟前" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "{minutes} 分钟前" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "1小时前" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "{hours} 小时前" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "今天" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "昨天" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "{days} 天前" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "上月" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "{months} 月前" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "月前" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "去年" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "年前" diff --git a/l10n/zh_CN/files_sharing.po b/l10n/zh_CN/files_sharing.po index e8e975b5a5..a07f1801cf 100644 --- a/l10n/zh_CN/files_sharing.po +++ b/l10n/zh_CN/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/lib.po b/l10n/zh_CN/lib.po index 8c8e37a86c..880725f9d9 100644 --- a/l10n/zh_CN/lib.po +++ b/l10n/zh_CN/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/settings.po b/l10n/zh_CN/settings.po index 954789e09a..19f7e07200 100644 --- a/l10n/zh_CN/settings.po +++ b/l10n/zh_CN/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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 18f7612955..795269be23 100644 --- a/l10n/zh_CN/user_ldap.po +++ b/l10n/zh_CN/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/core.po b/l10n/zh_HK/core.po index 8313b4096d..52055ca3cc 100644 --- a/l10n/zh_HK/core.po +++ b/l10n/zh_HK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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" @@ -141,55 +141,55 @@ msgstr "十二月" msgid "Settings" msgstr "設定" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "今日" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "昨日" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "前一月" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "個月之前" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "" diff --git a/l10n/zh_HK/files_sharing.po b/l10n/zh_HK/files_sharing.po index 2ef6877052..551e3adda0 100644 --- a/l10n/zh_HK/files_sharing.po +++ b/l10n/zh_HK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/lib.po b/l10n/zh_HK/lib.po index a479e19912..a8ac7fdbd8 100644 --- a/l10n/zh_HK/lib.po +++ b/l10n/zh_HK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/settings.po b/l10n/zh_HK/settings.po index 282acfbd73..63950a02de 100644 --- a/l10n/zh_HK/settings.po +++ b/l10n/zh_HK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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 6f2ed6501b..d72c1e0b0d 100644 --- a/l10n/zh_HK/user_ldap.po +++ b/l10n/zh_HK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/core.po b/l10n/zh_TW/core.po index 44c5ff8811..0979fce272 100644 --- a/l10n/zh_TW/core.po +++ b/l10n/zh_TW/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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" @@ -143,55 +143,55 @@ msgstr "十二月" msgid "Settings" msgstr "設定" -#: js/js.js:715 +#: js/js.js:753 msgid "seconds ago" msgstr "幾秒前" -#: js/js.js:716 +#: js/js.js:754 msgid "1 minute ago" msgstr "1 分鐘前" -#: js/js.js:717 +#: js/js.js:755 msgid "{minutes} minutes ago" msgstr "{minutes} 分鐘前" -#: js/js.js:718 +#: js/js.js:756 msgid "1 hour ago" msgstr "1 小時之前" -#: js/js.js:719 +#: js/js.js:757 msgid "{hours} hours ago" msgstr "{hours} 小時前" -#: js/js.js:720 +#: js/js.js:758 msgid "today" msgstr "今天" -#: js/js.js:721 +#: js/js.js:759 msgid "yesterday" msgstr "昨天" -#: js/js.js:722 +#: js/js.js:760 msgid "{days} days ago" msgstr "{days} 天前" -#: js/js.js:723 +#: js/js.js:761 msgid "last month" msgstr "上個月" -#: js/js.js:724 +#: js/js.js:762 msgid "{months} months ago" msgstr "{months} 個月前" -#: js/js.js:725 +#: js/js.js:763 msgid "months ago" msgstr "幾個月前" -#: js/js.js:726 +#: js/js.js:764 msgid "last year" msgstr "去年" -#: js/js.js:727 +#: js/js.js:765 msgid "years ago" msgstr "幾年前" diff --git a/l10n/zh_TW/files_sharing.po b/l10n/zh_TW/files_sharing.po index 265c05f109..280428331a 100644 --- a/l10n/zh_TW/files_sharing.po +++ b/l10n/zh_TW/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-31 05:56+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/lib.po b/l10n/zh_TW/lib.po index 7b06ffdf18..adb5dfb4f9 100644 --- a/l10n/zh_TW/lib.po +++ b/l10n/zh_TW/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/settings.po b/l10n/zh_TW/settings.po index d3be39b8ed..c816bcc347 100644 --- a/l10n/zh_TW/settings.po +++ b/l10n/zh_TW/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:57+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:01+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 51ad7117fb..06d5cc0639 100644 --- a/l10n/zh_TW/user_ldap.po +++ b/l10n/zh_TW/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 05:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/settings/l10n/ja_JP.php b/settings/l10n/ja_JP.php index f30331038b..7d327ebc24 100644 --- a/settings/l10n/ja_JP.php +++ b/settings/l10n/ja_JP.php @@ -37,25 +37,35 @@ "A valid password must be provided" => "有効なパスワードを指定する必要があります", "__language_name__" => "Japanese (日本語)", "Security Warning" => "セキュリティ警告", +"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ファイルが機能していません。データディレクトリがアクセスされないようにウェブサーバーを設定するか、ウェブサーバーのドキュメントルートからデータディレクトリを移動するように強くお勧めします。", "Setup Warning" => "セットアップ警告", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "WebDAVインタフェースが動作していないと考えられるため、あなたのWEBサーバはまだファイルの同期を許可するように適切な設定がされていません。", +"Please double check the installation guides." => "installation guidesをもう一度チェックするようにお願いいたします。", "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タイプの検出を精度良く行うために、このモジュールを有効にすることを強くお勧めします。", "Locale not working" => "ロケールが動作していません", +"System locale can't be set to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "システムロケールが %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." => "このサーバーはインターネットに接続していません。この場合、外部ストレージのマウント、更新の通知やサードパーティアプリといったいくつかの機能が使えません。また、リモート接続でのファイルアクセス、通知メールの送信と言った機能も利用できないかもしれません。全ての機能を利用したいのであれば、このサーバーからインターネットに接続できるようにすることをお勧めします。", "Cron" => "Cron", "Execute one task with each page loaded" => "各ページの読み込み時にタスクを実行する", +"cron.php is registered at a webcron service to call cron.php once a minute over http." => "http経由で1分間に1回cron.phpを呼び出すように cron.phpがwebcron サービスに登録されています。", +"Use systems cron service to call the cron.php file once a minute." => "cron.phpファイルを1分間に1回実行する為にサーバーのcronサービスを利用する。", "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" => "ユーザにグループ内のユーザとのみ共有を許可する", "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." => "強制的なSSL接続を有効/無効にするために、HTTPS経由で %s へ接続してください。", "Log" => "ログ", "Log level" => "ログレベル", "More" => "もっと見る", From b716d035c32f5b04bfc398598ddf687a19a21c7d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Sun, 4 Aug 2013 22:58:40 +0200 Subject: [PATCH 61/64] fixing PHPDoc --- lib/log/syslog.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/log/syslog.php b/lib/log/syslog.php index a28255ed10..c98deab710 100644 --- a/lib/log/syslog.php +++ b/lib/log/syslog.php @@ -28,7 +28,7 @@ class OC_Log_Syslog { * write a message in the log * @param string $app * @param string $message - * @param int level + * @param int $level */ public static function write($app, $message, $level) { $minLevel = min(OC_Config::getValue("loglevel", OC_Log::WARN), OC_Log::ERROR); From ad952f215d18f3f06ac54118ee55eb4f2d5da777 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Sun, 4 Aug 2013 23:13:19 +0200 Subject: [PATCH 62/64] add 'logdateformat' to config.sample.php --- config/config.sample.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/config/config.sample.php b/config/config.sample.php index 8d978ea6ee..75c600a7c3 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -185,5 +185,8 @@ $CONFIG = array( //links to custom clients 'customclient_desktop' => '', //http://owncloud.org/sync-clients/ 'customclient_android' => '', //https://play.google.com/store/apps/details?id=com.owncloud.android -'customclient_ios' => '' //https://itunes.apple.com/us/app/owncloud/id543672169?mt=8 +'customclient_ios' => '', //https://itunes.apple.com/us/app/owncloud/id543672169?mt=8 + +// date format to be used while writing to the owncloud logfile +'logdateformat' => 'F d, Y H:i:s' ); From 33d78ab9c719ac0677651cfe76bf6a2aa3073241 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Sun, 4 Aug 2013 23:13:34 +0200 Subject: [PATCH 63/64] fixing PHPDoc --- lib/log/owncloud.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/log/owncloud.php b/lib/log/owncloud.php index e7246726d4..d16b9537a1 100644 --- a/lib/log/owncloud.php +++ b/lib/log/owncloud.php @@ -44,7 +44,7 @@ class OC_Log_Owncloud { * write a message in the log * @param string $app * @param string $message - * @param int level + * @param int $level */ public static function write($app, $message, $level) { $minLevel=min(OC_Config::getValue( "loglevel", OC_Log::WARN ), OC_Log::ERROR); @@ -63,8 +63,8 @@ class OC_Log_Owncloud { /** * get entries from the log in reverse chronological order - * @param int limit - * @param int offset + * @param int $limit + * @param int $offset * @return array */ public static function getEntries($limit=50, $offset=0) { From 0fce89308e2fbcb44a2091ca67f373ba89ee068e Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Mon, 5 Aug 2013 07:54:38 -0400 Subject: [PATCH 64/64] [tx-robot] updated from transifex --- apps/files_encryption/l10n/de.php | 1 + apps/user_webdavauth/l10n/fi_FI.php | 3 ++- l10n/ar/settings.po | 4 ++-- l10n/bg_BG/settings.po | 4 ++-- l10n/ca/settings.po | 4 ++-- l10n/cs_CZ/settings.po | 4 ++-- l10n/da/settings.po | 4 ++-- l10n/de/files_encryption.po | 9 +++++---- l10n/de/settings.po | 4 ++-- l10n/de_DE/settings.po | 4 ++-- l10n/el/settings.po | 4 ++-- l10n/eo/settings.po | 4 ++-- l10n/es/settings.po | 4 ++-- l10n/es_AR/settings.po | 4 ++-- l10n/et_EE/settings.po | 4 ++-- l10n/eu/settings.po | 4 ++-- l10n/fa/settings.po | 4 ++-- l10n/fi_FI/settings.po | 4 ++-- l10n/fi_FI/user_webdavauth.po | 6 +++--- l10n/fr/settings.po | 4 ++-- l10n/gl/settings.po | 4 ++-- l10n/he/settings.po | 4 ++-- l10n/hr/settings.po | 4 ++-- l10n/hu_HU/settings.po | 4 ++-- l10n/id/settings.po | 4 ++-- l10n/is/settings.po | 4 ++-- l10n/it/settings.po | 4 ++-- l10n/ja_JP/settings.po | 4 ++-- l10n/ka_GE/settings.po | 4 ++-- l10n/ko/settings.po | 4 ++-- l10n/lb/settings.po | 4 ++-- l10n/lt_LT/settings.po | 4 ++-- l10n/lv/settings.po | 4 ++-- l10n/ms_MY/settings.po | 4 ++-- l10n/nb_NO/settings.po | 4 ++-- l10n/nl/settings.po | 4 ++-- l10n/nn_NO/settings.po | 4 ++-- l10n/oc/settings.po | 4 ++-- l10n/pl/settings.po | 4 ++-- l10n/pt_BR/settings.po | 4 ++-- l10n/pt_PT/settings.po | 4 ++-- l10n/ro/settings.po | 4 ++-- l10n/ru/settings.po | 4 ++-- l10n/sk_SK/settings.po | 4 ++-- l10n/sl/settings.po | 4 ++-- l10n/sr/settings.po | 4 ++-- l10n/sv/settings.po | 4 ++-- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/th_TH/settings.po | 4 ++-- l10n/tr/settings.po | 4 ++-- l10n/ug/settings.po | 4 ++-- l10n/uk/settings.po | 4 ++-- l10n/vi/settings.po | 4 ++-- l10n/zh_CN.GB2312/settings.po | 4 ++-- l10n/zh_CN/settings.po | 4 ++-- l10n/zh_TW/settings.po | 4 ++-- 66 files changed, 124 insertions(+), 121 deletions(-) diff --git a/apps/files_encryption/l10n/de.php b/apps/files_encryption/l10n/de.php index d8265906db..69b15aa00a 100644 --- a/apps/files_encryption/l10n/de.php +++ b/apps/files_encryption/l10n/de.php @@ -10,6 +10,7 @@ "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Dein privater Schlüssel ist ungültig. Möglicher Weise wurde von außerhalb Dein Passwort geändert (z.B. in deinem gemeinsamen Verzeichnis). Du kannst das Passwort deines privaten Schlüssels in den persönlichen Einstellungen aktualisieren, um wieder an deine Dateien zu gelangen.", "Missing requirements." => "Fehlende Vorraussetzungen", "Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Bitte stellen Sie sicher, dass PHP 5.3.3 oder neuer installiert ist und die OpenSSL-PHP-Erweiterung aktiviert und richtig konfiguriert ist. Die Verschlüsselungsanwendung wurde vorerst deaktiviert.", +"Following users are not set up for encryption:" => "Für folgende Nutzer ist keine Verschlüsselung eingerichtet:", "Saving..." => "Speichern...", "Your private key is not valid! Maybe the your password was changed from outside." => "Ihr privater Schlüssel ist ungültig! Eventuell wurde Ihr Passwort von außerhalb geändert.", "You can unlock your private key in your " => "Du kannst den privaten Schlüssel ändern und zwar in deinem", diff --git a/apps/user_webdavauth/l10n/fi_FI.php b/apps/user_webdavauth/l10n/fi_FI.php index 40a3a06909..ed5085f7f0 100644 --- a/apps/user_webdavauth/l10n/fi_FI.php +++ b/apps/user_webdavauth/l10n/fi_FI.php @@ -1,4 +1,5 @@ "WebDAV-todennus", -"Address: " => "Osoite:" +"Address: " => "Osoite:", +"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." => "Käyttäjätiedot lähetetään tähän osoitteeseen. Liitännäinen tarkistaa vastauksen, ja tulkitsee HTTP-tilakoodit 401 ja 403 vääriksi käyttäjätiedoiksi. Kaikki muut vastaukset tulkitaan kelvollisiksi käyttäjätiedoiksi." ); diff --git a/l10n/ar/settings.po b/l10n/ar/settings.po index ae94f10fb3..33845793c7 100644 --- a/l10n/ar/settings.po +++ b/l10n/ar/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/settings.po b/l10n/bg_BG/settings.po index 35ea92f04d..c400409cb1 100644 --- a/l10n/bg_BG/settings.po +++ b/l10n/bg_BG/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:10+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/ca/settings.po b/l10n/ca/settings.po index 2a233c2183..7c7dd8f5c2 100644 --- a/l10n/ca/settings.po +++ b/l10n/ca/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:10+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po index a2a1071280..da8c0b6502 100644 --- a/l10n/cs_CZ/settings.po +++ b/l10n/cs_CZ/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:10+0000\n" "Last-Translator: pstast \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/da/settings.po b/l10n/da/settings.po index f7dd400e80..c56fa461d3 100644 --- a/l10n/da/settings.po +++ b/l10n/da/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:10+0000\n" "Last-Translator: Sappe\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files_encryption.po b/l10n/de/files_encryption.po index 96854973d2..2162f98581 100644 --- a/l10n/de/files_encryption.po +++ b/l10n/de/files_encryption.po @@ -7,14 +7,15 @@ # Stephan Köninger , 2013 # ninov , 2013 # Pwnicorn , 2013 +# thillux, 2013 # kabum , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:57+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-04 18:40+0000\n" +"Last-Translator: thillux\n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -79,7 +80,7 @@ msgstr "Bitte stellen Sie sicher, dass PHP 5.3.3 oder neuer installiert ist und #: hooks/hooks.php:263 msgid "Following users are not set up for encryption:" -msgstr "" +msgstr "Für folgende Nutzer ist keine Verschlüsselung eingerichtet:" #: js/settings-admin.js:11 msgid "Saving..." diff --git a/l10n/de/settings.po b/l10n/de/settings.po index 00536ea92f..73764b744a 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:10+0000\n" "Last-Translator: Mario Siegmann \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po index 374f7c904a..4d2788b68e 100644 --- a/l10n/de_DE/settings.po +++ b/l10n/de_DE/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:10+0000\n" "Last-Translator: Mario Siegmann \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/el/settings.po b/l10n/el/settings.po index 30c072d4c4..0ac7c75c24 100644 --- a/l10n/el/settings.po +++ b/l10n/el/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:10+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/eo/settings.po b/l10n/eo/settings.po index 28fc2ebbc5..693963c282 100644 --- a/l10n/eo/settings.po +++ b/l10n/eo/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:10+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/settings.po b/l10n/es/settings.po index 5b984e3f55..9f8ce5e7e2 100644 --- a/l10n/es/settings.po +++ b/l10n/es/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:10+0000\n" "Last-Translator: pablomillaquen \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/settings.po b/l10n/es_AR/settings.po index 7ab3a92fc1..32f1d08a5a 100644 --- a/l10n/es_AR/settings.po +++ b/l10n/es_AR/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11: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" diff --git a/l10n/et_EE/settings.po b/l10n/et_EE/settings.po index eea3af7654..71801ca740 100644 --- a/l10n/et_EE/settings.po +++ b/l10n/et_EE/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:10+0000\n" "Last-Translator: pisike.sipelgas \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/settings.po b/l10n/eu/settings.po index 5accc90b9d..1bcb0d1390 100644 --- a/l10n/eu/settings.po +++ b/l10n/eu/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:10+0000\n" "Last-Translator: asieriko \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/settings.po b/l10n/fa/settings.po index fd9ecf6660..6c0c4eb1e4 100644 --- a/l10n/fa/settings.po +++ b/l10n/fa/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:10+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/settings.po b/l10n/fi_FI/settings.po index e80ac811fb..381015dd21 100644 --- a/l10n/fi_FI/settings.po +++ b/l10n/fi_FI/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/user_webdavauth.po b/l10n/fi_FI/user_webdavauth.po index d12fc9eddf..ca7c9cc8f3 100644 --- a/l10n/fi_FI/user_webdavauth.po +++ b/l10n/fi_FI/user_webdavauth.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 06:00+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:20+0000\n" "Last-Translator: Jiri Grönroos \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -31,4 +31,4 @@ 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 "" +msgstr "Käyttäjätiedot lähetetään tähän osoitteeseen. Liitännäinen tarkistaa vastauksen, ja tulkitsee HTTP-tilakoodit 401 ja 403 vääriksi käyttäjätiedoiksi. Kaikki muut vastaukset tulkitaan kelvollisiksi käyttäjätiedoiksi." diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index 371ea39073..a17f6cb330 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po index 45fbad9013..4003cde32b 100644 --- a/l10n/gl/settings.po +++ b/l10n/gl/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:10+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/settings.po b/l10n/he/settings.po index 0ecf0382d4..468f47334f 100644 --- a/l10n/he/settings.po +++ b/l10n/he/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:10+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/hr/settings.po b/l10n/hr/settings.po index f49d42a60a..e3c59e31c9 100644 --- a/l10n/hr/settings.po +++ b/l10n/hr/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:10+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/settings.po b/l10n/hu_HU/settings.po index 7de382a917..28ad2b6ab1 100644 --- a/l10n/hu_HU/settings.po +++ b/l10n/hu_HU/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:10+0000\n" "Last-Translator: ebela \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/id/settings.po b/l10n/id/settings.po index 8ab6e79e37..d3e8034ef1 100644 --- a/l10n/id/settings.po +++ b/l10n/id/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:10+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/settings.po b/l10n/is/settings.po index a839a7a070..85dc87ad7d 100644 --- a/l10n/is/settings.po +++ b/l10n/is/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:10+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/settings.po b/l10n/it/settings.po index ec7d961247..11753861f8 100644 --- a/l10n/it/settings.po +++ b/l10n/it/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:10+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/settings.po b/l10n/ja_JP/settings.po index c1e900940c..d7754992c9 100644 --- a/l10n/ja_JP/settings.po +++ b/l10n/ja_JP/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:10+0000\n" "Last-Translator: tt yn \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/settings.po b/l10n/ka_GE/settings.po index 306c771ecd..9d20dea82b 100644 --- a/l10n/ka_GE/settings.po +++ b/l10n/ka_GE/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/settings.po b/l10n/ko/settings.po index fb077e66db..43a6a72242 100644 --- a/l10n/ko/settings.po +++ b/l10n/ko/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:10+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/lb/settings.po b/l10n/lb/settings.po index 0a6840bf29..b2aaad004c 100644 --- a/l10n/lb/settings.po +++ b/l10n/lb/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:10+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/settings.po b/l10n/lt_LT/settings.po index b4c8931325..239d969d0f 100644 --- a/l10n/lt_LT/settings.po +++ b/l10n/lt_LT/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:10+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/settings.po b/l10n/lv/settings.po index a12f48a2b5..0b9ff593b0 100644 --- a/l10n/lv/settings.po +++ b/l10n/lv/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:10+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/ms_MY/settings.po b/l10n/ms_MY/settings.po index 9947d57cbe..0504ad67a5 100644 --- a/l10n/ms_MY/settings.po +++ b/l10n/ms_MY/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:10+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/settings.po b/l10n/nb_NO/settings.po index b5762962ac..4240547121 100644 --- a/l10n/nb_NO/settings.po +++ b/l10n/nb_NO/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:10+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/settings.po b/l10n/nl/settings.po index cdd7df2f87..69ba192c0e 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:10+0000\n" "Last-Translator: Len \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/settings.po b/l10n/nn_NO/settings.po index 0754a6783c..b3df4c9a0b 100644 --- a/l10n/nn_NO/settings.po +++ b/l10n/nn_NO/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:10+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/settings.po b/l10n/oc/settings.po index e0d324ca4b..37881368c6 100644 --- a/l10n/oc/settings.po +++ b/l10n/oc/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index aa11a574cc..2771def0e4 100644 --- a/l10n/pl/settings.po +++ b/l10n/pl/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:10+0000\n" "Last-Translator: Cyryl Sochacki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/settings.po b/l10n/pt_BR/settings.po index 9de3873ade..a14d1d4ac3 100644 --- a/l10n/pt_BR/settings.po +++ b/l10n/pt_BR/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:10+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/settings.po b/l10n/pt_PT/settings.po index ce430296f2..8c05bf433c 100644 --- a/l10n/pt_PT/settings.po +++ b/l10n/pt_PT/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:10+0000\n" "Last-Translator: Helder Meneses \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/settings.po b/l10n/ro/settings.po index a54dd4e952..c26932adf9 100644 --- a/l10n/ro/settings.po +++ b/l10n/ro/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:10+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/settings.po b/l10n/ru/settings.po index 0a648270bd..4879d2b0d4 100644 --- a/l10n/ru/settings.po +++ b/l10n/ru/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:10+0000\n" "Last-Translator: Alexander Shashkevych \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/settings.po b/l10n/sk_SK/settings.po index f2f4836cac..b72f378e14 100644 --- a/l10n/sk_SK/settings.po +++ b/l10n/sk_SK/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:10+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/settings.po b/l10n/sl/settings.po index 1f3e9e7bbf..71dd13c7f0 100644 --- a/l10n/sl/settings.po +++ b/l10n/sl/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:10+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/sr/settings.po b/l10n/sr/settings.po index f1ba85f6d5..d4b836e8a1 100644 --- a/l10n/sr/settings.po +++ b/l10n/sr/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:10+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/sv/settings.po b/l10n/sv/settings.po index 303881a972..916754ad16 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:10+0000\n" "Last-Translator: Magnus Höglund \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 01e2b671bf..db8f2b3888 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 283b962a17..aa5dffefa1 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index ce75f89cee..0ac83fd87a 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index b92d0599f4..b88ddd2500 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index 5640ea739a..4567e455d1 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index 64bf4b543d..792ddf2bc7 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index cfdc502ad6..9bd404365d 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index 2a73cba667..1d115ab600 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 37bf47748e..118417261f 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 142948b6a9..e457060053 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index f8ea3cc89d..7ee42ea4f8 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/th_TH/settings.po b/l10n/th_TH/settings.po index 5d3eb1828b..749b6eeee0 100644 --- a/l10n/th_TH/settings.po +++ b/l10n/th_TH/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:10+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/settings.po b/l10n/tr/settings.po index 0d0d1f3f7a..f17b1b51c6 100644 --- a/l10n/tr/settings.po +++ b/l10n/tr/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/settings.po b/l10n/ug/settings.po index d8a8331649..49e5d53ddb 100644 --- a/l10n/ug/settings.po +++ b/l10n/ug/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/settings.po b/l10n/uk/settings.po index 305f6e4bff..7bbf607811 100644 --- a/l10n/uk/settings.po +++ b/l10n/uk/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:10+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/vi/settings.po b/l10n/vi/settings.po index cce44da5fe..55da60efbb 100644 --- a/l10n/vi/settings.po +++ b/l10n/vi/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/settings.po b/l10n/zh_CN.GB2312/settings.po index 10f058e419..be3894e160 100644 --- a/l10n/zh_CN.GB2312/settings.po +++ b/l10n/zh_CN.GB2312/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:10+0000\n" "Last-Translator: Martin Liu \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/settings.po b/l10n/zh_CN/settings.po index 19f7e07200..4a2a1d76d8 100644 --- a/l10n/zh_CN/settings.po +++ b/l10n/zh_CN/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:10+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_TW/settings.po b/l10n/zh_TW/settings.po index c816bcc347..c7b6216ecf 100644 --- a/l10n/zh_TW/settings.po +++ b/l10n/zh_TW/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:10+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"