From bbf8bb0bb3f33c92933dfd499b571f56edda4a59 Mon Sep 17 00:00:00 2001 From: Victor Dubiniuk Date: Wed, 12 Sep 2012 22:30:04 +0300 Subject: [PATCH 001/489] Log PHP errors to the OC log --- lib/base.php | 3 +++ lib/log.php | 17 +++++++++++++++++ 2 files changed, 20 insertions(+) diff --git a/lib/base.php b/lib/base.php index 6b4dd789b2f..4ff5a43bd24 100644 --- a/lib/base.php +++ b/lib/base.php @@ -317,6 +317,9 @@ class OC{ self::initPaths(); + register_shutdown_function(array('OC_Log', 'onShutdown')); + set_error_handler(array('OC_Log', 'onError' )); + // set debug mode if an xdebug session is active if (!defined('DEBUG') || !DEBUG) { if(isset($_COOKIE['XDEBUG_SESSION'])) { diff --git a/lib/log.php b/lib/log.php index 8bb2839be66..9c754cf60ce 100644 --- a/lib/log.php +++ b/lib/log.php @@ -36,4 +36,21 @@ class OC_Log { $log_class=self::$class; $log_class::write($app, $message, $level); } + + //Fatal errors handler + public static function onShutdown(){ + $error = error_get_last(); + if($error) { + //ob_end_clean(); + self::write('PHP', $error['message'] . ' at ' . $error['file'] . '#' . $error['line'], self::FATAL); + } else { + return true; + } + } + + //Recoverable errors handler + public static function onError($number, $message, $file, $line){ + self::write('PHP', $message . ' at ' . $file . '#' . $line, self::WARN); + + } } -- GitLab From 9da150cd3b12208a0e6b26acd4156215a7df5f3e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Mon, 17 Sep 2012 16:32:24 +0200 Subject: [PATCH 002/489] use user name as db name for oracle connection made with service name --- lib/db.php | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/db.php b/lib/db.php index 4d8e5a1a868..9c10512350f 100644 --- a/lib/db.php +++ b/lib/db.php @@ -232,6 +232,7 @@ class OC_DB { $dsn['database'] = $name; } else { // use dbname for hostspec $dsn['hostspec'] = $name; + $dsn['database'] = $user; } break; } -- GitLab From c790a0c476a763383c49f43ceb1a366efe5d6a05 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Mon, 17 Sep 2012 16:35:31 +0200 Subject: [PATCH 003/489] fix default values: 1. remove whitespace, don't use emptystring for int, remove empty default for nullable columns to use NULL as default --- db_structure.xml | 36 +++++++++++------------------------- 1 file changed, 11 insertions(+), 25 deletions(-) diff --git a/db_structure.xml b/db_structure.xml index 2256dff943c..d04c838d7cd 100644 --- a/db_structure.xml +++ b/db_structure.xml @@ -76,8 +76,7 @@ parent integer - - + 0 true 8 @@ -85,8 +84,7 @@ name text - - + true 300 @@ -94,8 +92,7 @@ user text - - + true 64 @@ -103,7 +100,7 @@ size integer - + 0 true 8 @@ -111,8 +108,7 @@ ctime integer - - + 0 true 8 @@ -120,8 +116,7 @@ mtime integer - - + 0 true 8 @@ -129,8 +124,7 @@ mimetype text - - + true 96 @@ -138,8 +132,7 @@ mimepart text - - + true 32 @@ -322,7 +315,6 @@ timeout integer - false true 4 @@ -331,7 +323,6 @@ created integer - false 8 @@ -347,7 +338,6 @@ scope integer - false 1 @@ -355,7 +345,6 @@ depth integer - false 1 @@ -469,7 +458,7 @@ share_type integer - + 0 true 1 @@ -493,7 +482,6 @@ parent integer - false 4 @@ -525,7 +513,6 @@ file_source integer - false 4 @@ -541,7 +528,7 @@ permissions integer - + 0 true 1 @@ -549,7 +536,7 @@ stime integer - + 0 true 8 @@ -565,7 +552,6 @@ expiration timestamp - false -- GitLab From 1207ae1f99d86c5335602ebc51011b204aa0d5e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Mon, 17 Sep 2012 17:02:17 +0200 Subject: [PATCH 004/489] add leading '?' to parameter list (fixes bug #1732) --- lib/helper.php | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/lib/helper.php b/lib/helper.php index 70b2f78862b..dda5fcc5f0c 100644 --- a/lib/helper.php +++ b/lib/helper.php @@ -62,8 +62,11 @@ class OC_Helper { } } - foreach($args as $k => $v) { - $urlLinkTo .= '&'.$k.'='.$v; + if (!empty($args)) { + $urlLinkTo .= '?'; + foreach($args as $k => $v) { + $urlLinkTo .= '&'.$k.'='.$v; + } } return $urlLinkTo; -- GitLab From 597fed4fde9d1e3e39b8ca492dbfd324b17ffd58 Mon Sep 17 00:00:00 2001 From: Tom Needham Date: Mon, 17 Sep 2012 15:28:13 +0000 Subject: [PATCH 005/489] Fix oc-1726, cannot delete multiple files one by one without refresh --- apps/files/js/filelist.js | 1 - 1 file changed, 1 deletion(-) diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index 7ebfd4b68bb..f2b558496e0 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -260,7 +260,6 @@ var FileList={ FileList.prepareDeletion(files); } FileList.lastAction(); - return; } FileList.prepareDeletion(files); // NOTE: Temporary fix to change the text to unshared for files in root of Shared folder -- GitLab From 7811fa4fafae2f2be643a03ed6186a34a83ad059 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Mon, 17 Sep 2012 17:57:45 +0200 Subject: [PATCH 006/489] timestamp uses emptystring as NULL default --- db_structure.xml | 1 + 1 file changed, 1 insertion(+) diff --git a/db_structure.xml b/db_structure.xml index d04c838d7cd..74e2805308a 100644 --- a/db_structure.xml +++ b/db_structure.xml @@ -552,6 +552,7 @@ expiration timestamp + false -- GitLab From ab33578add88a94b94835741044b6dbfca4720af Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Fri, 14 Sep 2012 23:15:52 +0200 Subject: [PATCH 007/489] Normalize path before calling removeETagPropertyForPath This should also fix the dirname problem on windows --- lib/filesystem.php | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/filesystem.php b/lib/filesystem.php index 92eb4fa4778..ce4d3a0cf48 100644 --- a/lib/filesystem.php +++ b/lib/filesystem.php @@ -527,6 +527,7 @@ class OC_Filesystem{ } else { $path=$params['oldpath']; } + $path = self::normalizePath($path); OC_Connector_Sabre_Node::removeETagPropertyForPath($path); } -- GitLab From ce10e1c19a834d5bcec2a843904c13ee0ffcf4c3 Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Mon, 17 Sep 2012 17:27:37 +0200 Subject: [PATCH 008/489] Fix return statement --- lib/app.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/app.php b/lib/app.php index 28f1f16ebaf..49e644c1f72 100755 --- a/lib/app.php +++ b/lib/app.php @@ -640,7 +640,7 @@ class OC_App{ } }else{ OC_Log::write('core', 'Can\'t get app storage, app '.$appid.' not enabled', OC_Log::ERROR); - false; + return false; } } } -- GitLab From b04c7175dc89cb53b4719f140d65df01bdce1301 Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Mon, 17 Sep 2012 17:29:34 +0200 Subject: [PATCH 009/489] Check if the versioned file exists before trying to do the versioning This didn't work with chunked uploading --- apps/files_versions/lib/versions.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/apps/files_versions/lib/versions.php b/apps/files_versions/lib/versions.php index e429782aed1..c517eb01ff5 100644 --- a/apps/files_versions/lib/versions.php +++ b/apps/files_versions/lib/versions.php @@ -77,6 +77,7 @@ class Storage { $versionsFolderName=\OCP\Config::getSystemValue('datadirectory') . $this->view->getAbsolutePath(''); //check if source file already exist as version to avoid recursions. + // todo does this check work? if ($users_view->file_exists($filename)) { return false; } @@ -96,6 +97,11 @@ class Storage { } } + // we should have a source file to work with + if (!$files_view->file_exists($filename)) { + return false; + } + // check filesize if($files_view->filesize($filename)>\OCP\Config::getSystemValue('files_versionsmaxfilesize', Storage::DEFAULTMAXFILESIZE)) { return false; -- GitLab From b1bab6d11345275f384eeda4d20b8b280d8bfb93 Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Mon, 17 Sep 2012 17:34:49 +0200 Subject: [PATCH 010/489] Check format of chunked filename --- lib/connector/sabre/directory.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/connector/sabre/directory.php b/lib/connector/sabre/directory.php index 39606577f6d..b5049d800c4 100644 --- a/lib/connector/sabre/directory.php +++ b/lib/connector/sabre/directory.php @@ -50,6 +50,9 @@ class OC_Connector_Sabre_Directory extends OC_Connector_Sabre_Node implements Sa public function createFile($name, $data = null) { if (isset($_SERVER['HTTP_OC_CHUNKED'])) { $info = OC_FileChunking::decodeName($name); + if (empty($info)) { + throw new Sabre_DAV_Exception_NotImplemented(); + } $chunk_handler = new OC_FileChunking($info); $chunk_handler->store($info['index'], $data); if ($chunk_handler->isComplete()) { -- GitLab From 7749875a0d9a90978467cae4a605dd6f1eaf939c Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Mon, 17 Sep 2012 18:00:54 +0200 Subject: [PATCH 011/489] Fix 'Search only shows the app name of the first app' Fixes: oc-1369 --- search/js/result.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/search/js/result.js b/search/js/result.js index 27a2383e2c3..aaecde08c6b 100644 --- a/search/js/result.js +++ b/search/js/result.js @@ -45,7 +45,7 @@ OC.search.showResults=function(results){ var row=$('#searchresults tr.template').clone(); row.removeClass('template'); row.addClass('result'); - if (index == 0){ + if (i == 0){ row.children('td.type').text(name); } row.find('td.result a').attr('href',type[i].link); -- GitLab From 82ffefb99b5a625e5ebb7dcdeb32c4ca910e8097 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Mon, 17 Sep 2012 22:12:17 +0200 Subject: [PATCH 012/489] dont trigger filesystem hooks when not using the default view --- lib/filesystemview.php | 156 ++++++++++++++++++++++------------------- 1 file changed, 84 insertions(+), 72 deletions(-) diff --git a/lib/filesystemview.php b/lib/filesystemview.php index 743f9403011..fcf419e864d 100644 --- a/lib/filesystemview.php +++ b/lib/filesystemview.php @@ -263,24 +263,26 @@ class OC_FilesystemView { $path = $this->getRelativePath($absolutePath); $exists = $this->file_exists($path); $run = true; - if(!$exists) { + if( $this->fakeRoot==OC_Filesystem::getRoot() ){ + if(!$exists) { + OC_Hook::emit( + OC_Filesystem::CLASSNAME, + OC_Filesystem::signal_create, + array( + OC_Filesystem::signal_param_path => $path, + OC_Filesystem::signal_param_run => &$run + ) + ); + } OC_Hook::emit( OC_Filesystem::CLASSNAME, - OC_Filesystem::signal_create, + OC_Filesystem::signal_write, array( OC_Filesystem::signal_param_path => $path, OC_Filesystem::signal_param_run => &$run ) ); } - OC_Hook::emit( - OC_Filesystem::CLASSNAME, - OC_Filesystem::signal_write, - array( - OC_Filesystem::signal_param_path => $path, - OC_Filesystem::signal_param_run => &$run - ) - ); if(!$run) { return false; } @@ -289,18 +291,20 @@ class OC_FilesystemView { $count=OC_Helper::streamCopy($data, $target); fclose($target); fclose($data); - if(!$exists) { + if( $this->fakeRoot==OC_Filesystem::getRoot() ){ + if(!$exists) { + OC_Hook::emit( + OC_Filesystem::CLASSNAME, + OC_Filesystem::signal_post_create, + array( OC_Filesystem::signal_param_path => $path) + ); + } OC_Hook::emit( OC_Filesystem::CLASSNAME, - OC_Filesystem::signal_post_create, + OC_Filesystem::signal_post_write, array( OC_Filesystem::signal_param_path => $path) ); } - OC_Hook::emit( - OC_Filesystem::CLASSNAME, - OC_Filesystem::signal_post_write, - array( OC_Filesystem::signal_param_path => $path) - ); OC_FileProxy::runPostProxies('file_put_contents', $absolutePath, $count); return $count > 0; }else{ @@ -330,14 +334,16 @@ class OC_FilesystemView { return false; } $run=true; - OC_Hook::emit( - OC_Filesystem::CLASSNAME, OC_Filesystem::signal_rename, - array( - OC_Filesystem::signal_param_oldpath => $path1, - OC_Filesystem::signal_param_newpath => $path2, - OC_Filesystem::signal_param_run => &$run - ) - ); + if( $this->fakeRoot==OC_Filesystem::getRoot() ){ + OC_Hook::emit( + OC_Filesystem::CLASSNAME, OC_Filesystem::signal_rename, + array( + OC_Filesystem::signal_param_oldpath => $path1, + OC_Filesystem::signal_param_newpath => $path2, + OC_Filesystem::signal_param_run => &$run + ) + ); + } if($run) { $mp1 = $this->getMountPoint($path1.$postFix1); $mp2 = $this->getMountPoint($path2.$postFix2); @@ -353,14 +359,16 @@ class OC_FilesystemView { $storage1->unlink($this->getInternalPath($path1.$postFix1)); $result = $count>0; } - OC_Hook::emit( - OC_Filesystem::CLASSNAME, - OC_Filesystem::signal_post_rename, - array( - OC_Filesystem::signal_param_oldpath => $path1, - OC_Filesystem::signal_param_newpath => $path2 - ) - ); + if( $this->fakeRoot==OC_Filesystem::getRoot() ){ + OC_Hook::emit( + OC_Filesystem::CLASSNAME, + OC_Filesystem::signal_post_rename, + array( + OC_Filesystem::signal_param_oldpath => $path1, + OC_Filesystem::signal_param_newpath => $path2 + ) + ); + } return $result; } } @@ -378,35 +386,37 @@ class OC_FilesystemView { return false; } $run=true; - OC_Hook::emit( - OC_Filesystem::CLASSNAME, - OC_Filesystem::signal_copy, - array( - OC_Filesystem::signal_param_oldpath => $path1, - OC_Filesystem::signal_param_newpath=>$path2, - OC_Filesystem::signal_param_run => &$run - ) - ); - $exists=$this->file_exists($path2); - if($run and !$exists) { + if( $this->fakeRoot==OC_Filesystem::getRoot() ){ OC_Hook::emit( OC_Filesystem::CLASSNAME, - OC_Filesystem::signal_create, + OC_Filesystem::signal_copy, array( - OC_Filesystem::signal_param_path => $path2, - OC_Filesystem::signal_param_run => &$run - ) - ); - } - if($run) { - OC_Hook::emit( - OC_Filesystem::CLASSNAME, - OC_Filesystem::signal_write, - array( - OC_Filesystem::signal_param_path => $path2, + OC_Filesystem::signal_param_oldpath => $path1, + OC_Filesystem::signal_param_newpath=>$path2, OC_Filesystem::signal_param_run => &$run ) ); + $exists=$this->file_exists($path2); + if($run and !$exists) { + OC_Hook::emit( + OC_Filesystem::CLASSNAME, + OC_Filesystem::signal_create, + array( + OC_Filesystem::signal_param_path => $path2, + OC_Filesystem::signal_param_run => &$run + ) + ); + } + if($run) { + OC_Hook::emit( + OC_Filesystem::CLASSNAME, + OC_Filesystem::signal_write, + array( + OC_Filesystem::signal_param_path => $path2, + OC_Filesystem::signal_param_run => &$run + ) + ); + } } if($run) { $mp1=$this->getMountPoint($path1.$postFix1); @@ -420,26 +430,28 @@ class OC_FilesystemView { $target = $this->fopen($path2.$postFix2, 'w'); $result = OC_Helper::streamCopy($source, $target); } - OC_Hook::emit( - OC_Filesystem::CLASSNAME, - OC_Filesystem::signal_post_copy, - array( - OC_Filesystem::signal_param_oldpath => $path1, - OC_Filesystem::signal_param_newpath=>$path2 - ) - ); - if(!$exists) { + if( $this->fakeRoot==OC_Filesystem::getRoot() ){ OC_Hook::emit( OC_Filesystem::CLASSNAME, - OC_Filesystem::signal_post_create, - array(OC_Filesystem::signal_param_path => $path2) + OC_Filesystem::signal_post_copy, + array( + OC_Filesystem::signal_param_oldpath => $path1, + OC_Filesystem::signal_param_newpath=>$path2 + ) + ); + if(!$exists) { + OC_Hook::emit( + OC_Filesystem::CLASSNAME, + OC_Filesystem::signal_post_create, + array(OC_Filesystem::signal_param_path => $path2) + ); + } + OC_Hook::emit( + OC_Filesystem::CLASSNAME, + OC_Filesystem::signal_post_write, + array( OC_Filesystem::signal_param_path => $path2) ); } - OC_Hook::emit( - OC_Filesystem::CLASSNAME, - OC_Filesystem::signal_post_write, - array( OC_Filesystem::signal_param_path => $path2) - ); return $result; } } -- GitLab From 2a8ff8a0d49f136f7b31fbaf1147396574f5683c Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Mon, 17 Sep 2012 22:15:45 +0200 Subject: [PATCH 013/489] fix problem with quota proxy when using copy --- lib/fileproxy/quota.php | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/lib/fileproxy/quota.php b/lib/fileproxy/quota.php index adbff3d301a..5a0dbdb6fe2 100644 --- a/lib/fileproxy/quota.php +++ b/lib/fileproxy/quota.php @@ -26,6 +26,7 @@ */ class OC_FileProxy_Quota extends OC_FileProxy{ + static $rootView; private $userQuota=-1; /** @@ -86,7 +87,10 @@ class OC_FileProxy_Quota extends OC_FileProxy{ } public function preCopy($path1,$path2) { - return (OC_Filesystem::filesize($path1)<$this->getFreeSpace() or $this->getFreeSpace()==0); + if(!self::$rootView){ + self::$rootView = new OC_FilesystemView(''); + } + return (self::$rootView->filesize($path1)<$this->getFreeSpace() or $this->getFreeSpace()==0); } public function preFromTmpFile($tmpfile,$path) { @@ -96,4 +100,4 @@ class OC_FileProxy_Quota extends OC_FileProxy{ public function preFromUploadedFile($tmpfile,$path) { return (filesize($tmpfile)<$this->getFreeSpace() or $this->getFreeSpace()==0); } -} \ No newline at end of file +} -- GitLab From 6444c27e6a5e47d24416d421ac2011ccffd4e3ed Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Mon, 17 Sep 2012 22:50:08 +0200 Subject: [PATCH 014/489] LDAP: fix MySQL-query with DUAL table by removing wrong backticks. Got broke when they were added to SQL queries. --- apps/user_ldap/lib/access.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/user_ldap/lib/access.php b/apps/user_ldap/lib/access.php index 089548a69ba..53619ab4c1d 100644 --- a/apps/user_ldap/lib/access.php +++ b/apps/user_ldap/lib/access.php @@ -385,7 +385,7 @@ abstract class Access { $sqlAdjustment = ''; $dbtype = \OCP\Config::getSystemValue('dbtype'); if($dbtype == 'mysql') { - $sqlAdjustment = 'FROM `dual`'; + $sqlAdjustment = 'FROM DUAL'; } $insert = \OCP\DB::prepare(' -- GitLab From 06e963c54f3067381784c976df75c250e43a95bd Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Tue, 18 Sep 2012 02:04:26 +0200 Subject: [PATCH 015/489] [tx-robot] updated from transifex --- apps/files/l10n/el.php | 5 ++ apps/files/l10n/zh_CN.GB2312.php | 5 ++ apps/files_encryption/l10n/zh_CN.GB2312.php | 6 ++ apps/files_external/l10n/el.php | 12 ++- apps/files_external/l10n/zh_CN.GB2312.php | 18 ++++ apps/files_sharing/l10n/el.php | 5 +- apps/files_sharing/l10n/zh_CN.GB2312.php | 7 ++ apps/files_versions/l10n/cs_CZ.php | 4 +- apps/files_versions/l10n/de.php | 4 +- apps/files_versions/l10n/el.php | 6 +- apps/files_versions/l10n/es.php | 4 +- apps/files_versions/l10n/it.php | 4 +- apps/files_versions/l10n/sl.php | 4 +- apps/files_versions/l10n/sv.php | 4 +- apps/files_versions/l10n/th_TH.php | 4 +- apps/files_versions/l10n/zh_CN.GB2312.php | 7 ++ apps/files_versions/l10n/zh_CN.php | 4 +- apps/user_ldap/l10n/de.php | 2 +- apps/user_ldap/l10n/zh_CN.GB2312.php | 37 ++++++++ core/l10n/de.php | 2 +- core/l10n/el.php | 1 + core/l10n/ro.php | 18 ++++ core/l10n/zh_CN.GB2312.php | 1 + l10n/af/files.po | 30 ++++--- l10n/ar/files.po | 30 ++++--- l10n/ar_SA/files.po | 30 ++++--- l10n/bg_BG/files.po | 30 ++++--- l10n/ca/files.po | 32 ++++--- l10n/cs_CZ/files.po | 32 ++++--- l10n/cs_CZ/files_versions.po | 10 +-- l10n/cs_CZ/settings.po | 14 ++-- l10n/da/files.po | 32 ++++--- l10n/de/core.po | 9 +- l10n/de/files.po | 20 +++-- l10n/de/files_versions.po | 11 +-- l10n/de/lib.po | 42 +++++----- l10n/de/settings.po | 16 ++-- l10n/de/user_ldap.po | 8 +- l10n/el/core.po | 39 ++++----- l10n/el/files.po | 41 +++++---- l10n/el/files_external.po | 27 +++--- l10n/el/files_sharing.po | 17 ++-- l10n/el/files_versions.po | 15 ++-- l10n/el/settings.po | 57 ++++++------- l10n/eo/files.po | 32 ++++--- l10n/es/files.po | 32 ++++--- l10n/es/files_versions.po | 10 +-- l10n/es/settings.po | 12 +-- l10n/et_EE/files.po | 32 ++++--- l10n/eu/files.po | 32 ++++--- l10n/eu_ES/files.po | 30 ++++--- l10n/fa/files.po | 30 ++++--- l10n/fi/files.po | 30 ++++--- l10n/fi_FI/files.po | 30 ++++--- l10n/fr/files.po | 32 ++++--- l10n/gl/files.po | 30 ++++--- l10n/he/files.po | 32 ++++--- l10n/hi/files.po | 30 ++++--- l10n/hr/files.po | 30 ++++--- l10n/hu_HU/files.po | 30 ++++--- l10n/hy/files.po | 30 ++++--- l10n/ia/files.po | 30 ++++--- l10n/id/files.po | 30 ++++--- l10n/id_ID/files.po | 30 ++++--- l10n/it/files.po | 32 ++++--- l10n/it/files_versions.po | 10 +-- l10n/it/settings.po | 14 ++-- l10n/ja_JP/files.po | 32 ++++--- l10n/ko/files.po | 30 ++++--- l10n/lb/files.po | 30 ++++--- l10n/lt_LT/files.po | 30 ++++--- l10n/lv/files.po | 30 ++++--- l10n/mk/files.po | 30 ++++--- l10n/ms_MY/files.po | 30 ++++--- l10n/nb_NO/files.po | 30 ++++--- l10n/nl/files.po | 32 ++++--- l10n/nn_NO/files.po | 30 ++++--- l10n/oc/files.po | 30 ++++--- l10n/pl/files.po | 32 ++++--- l10n/pl_PL/files.po | 30 ++++--- l10n/pt_BR/files.po | 30 ++++--- l10n/pt_PT/files.po | 30 ++++--- l10n/ro/core.po | 73 ++++++++-------- l10n/ro/files.po | 30 ++++--- l10n/ro/settings.po | 43 +++++----- l10n/ru/files.po | 32 ++++--- l10n/ru_RU/files.po | 32 ++++--- l10n/ru_RU/settings.po | 34 ++++---- l10n/sk_SK/files.po | 30 ++++--- l10n/sl/files.po | 32 ++++--- l10n/sl/files_versions.po | 10 +-- l10n/sl/settings.po | 14 ++-- l10n/so/files.po | 30 ++++--- l10n/sr/files.po | 30 ++++--- l10n/sr@latin/files.po | 30 ++++--- l10n/sv/files.po | 32 ++++--- l10n/sv/files_versions.po | 10 +-- l10n/sv/settings.po | 14 ++-- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 16 +++- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 4 +- l10n/templates/user_ldap.pot | 2 +- l10n/th_TH/files.po | 32 ++++--- l10n/th_TH/files_versions.po | 10 +-- l10n/th_TH/settings.po | 14 ++-- l10n/tr/files.po | 30 ++++--- l10n/uk/files.po | 30 ++++--- l10n/vi/files.po | 32 ++++--- l10n/zh_CN.GB2312/core.po | 39 ++++----- l10n/zh_CN.GB2312/files.po | 41 +++++---- l10n/zh_CN.GB2312/files_encryption.po | 17 ++-- l10n/zh_CN.GB2312/files_external.po | 41 ++++----- l10n/zh_CN.GB2312/files_sharing.po | 21 ++--- l10n/zh_CN.GB2312/files_versions.po | 17 ++-- l10n/zh_CN.GB2312/lib.po | 93 +++++++++++---------- l10n/zh_CN.GB2312/settings.po | 55 ++++++------ l10n/zh_CN.GB2312/user_ldap.po | 79 ++++++++--------- l10n/zh_CN/files.po | 32 ++++--- l10n/zh_CN/files_versions.po | 10 +-- l10n/zh_CN/settings.po | 14 ++-- l10n/zh_TW/files.po | 30 ++++--- lib/l10n/de.php | 4 +- lib/l10n/zh_CN.GB2312.php | 28 +++++++ settings/l10n/cs_CZ.php | 3 + settings/l10n/de.php | 5 +- settings/l10n/el.php | 24 +++++- settings/l10n/es.php | 2 + settings/l10n/it.php | 3 + settings/l10n/ro.php | 17 ++++ settings/l10n/ru_RU.php | 13 +++ settings/l10n/sl.php | 3 + settings/l10n/sv.php | 3 + settings/l10n/th_TH.php | 3 + settings/l10n/zh_CN.GB2312.php | 23 +++++ settings/l10n/zh_CN.php | 3 + 140 files changed, 1917 insertions(+), 1156 deletions(-) create mode 100644 apps/files_encryption/l10n/zh_CN.GB2312.php create mode 100644 apps/files_external/l10n/zh_CN.GB2312.php create mode 100644 apps/files_sharing/l10n/zh_CN.GB2312.php create mode 100644 apps/files_versions/l10n/zh_CN.GB2312.php create mode 100644 apps/user_ldap/l10n/zh_CN.GB2312.php create mode 100644 lib/l10n/zh_CN.GB2312.php diff --git a/apps/files/l10n/el.php b/apps/files/l10n/el.php index 9f311c6b28e..5b9f11814cf 100644 --- a/apps/files/l10n/el.php +++ b/apps/files/l10n/el.php @@ -7,19 +7,23 @@ "Missing a temporary folder" => "Λείπει ένας προσωρινός φάκελος", "Failed to write to disk" => "Η εγγραφή στο δίσκο απέτυχε", "Files" => "Αρχεία", +"Unshare" => "Διακοπή κοινής χρήσης", "Delete" => "Διαγραφή", "already exists" => "υπάρχει ήδη", "replace" => "αντικατέστησε", +"suggest name" => "συνιστώμενο όνομα", "cancel" => "ακύρωση", "replaced" => "αντικαταστάθηκε", "undo" => "αναίρεση", "with" => "με", +"unshared" => "Διακόπηκε η κοινή χρήση", "deleted" => "διαγράφηκε", "generating ZIP-file, it may take some time." => "παραγωγή αρχείου ZIP, ίσως διαρκέσει αρκετά.", "Unable to upload your file as it is a directory or has 0 bytes" => "Αδυναμία στην μεταφόρτωση του αρχείου σας αφού είναι φάκελος ή έχει 0 bytes", "Upload Error" => "Σφάλμα Μεταφόρτωσης", "Pending" => "Εν αναμονή", "Upload cancelled." => "Η μεταφόρτωση ακυρώθηκε.", +"File upload is in progress. Leaving the page now will cancel the upload." => "Η μεταφόρτωση του αρχείου βρίσκεται σε εξέλιξη. Έξοδος από την σελίδα τώρα θα ακυρώσει την μεταφόρτωση.", "Invalid name, '/' is not allowed." => "Μη έγκυρο όνομα, το '/' δεν επιτρέπεται.", "Size" => "Μέγεθος", "Modified" => "Τροποποιήθηκε", @@ -34,6 +38,7 @@ "Enable ZIP-download" => "Ενεργοποίηση κατεβάσματος ZIP", "0 is unlimited" => "0 για απεριόριστο", "Maximum input size for ZIP files" => "Μέγιστο μέγεθος για αρχεία ZIP", +"Save" => "Αποθήκευση", "New" => "Νέο", "Text file" => "Αρχείο κειμένου", "Folder" => "Φάκελος", diff --git a/apps/files/l10n/zh_CN.GB2312.php b/apps/files/l10n/zh_CN.GB2312.php index 42063712eac..846f4234de1 100644 --- a/apps/files/l10n/zh_CN.GB2312.php +++ b/apps/files/l10n/zh_CN.GB2312.php @@ -7,19 +7,23 @@ "Missing a temporary folder" => "丢失了一个临时文件夹", "Failed to write to disk" => "写磁盘失败", "Files" => "文件", +"Unshare" => "取消共享", "Delete" => "删除", "already exists" => "已经存在了", "replace" => "替换", +"suggest name" => "推荐名称", "cancel" => "取消", "replaced" => "替换过了", "undo" => "撤销", "with" => "随着", +"unshared" => "已取消共享", "deleted" => "删除", "generating ZIP-file, it may take some time." => "正在生成ZIP文件,这可能需要点时间", "Unable to upload your file as it is a directory or has 0 bytes" => "不能上传你指定的文件,可能因为它是个文件夹或者大小为0", "Upload Error" => "上传错误", "Pending" => "Pending", "Upload cancelled." => "上传取消了", +"File upload is in progress. Leaving the page now will cancel the upload." => "文件正在上传。关闭页面会取消上传。", "Invalid name, '/' is not allowed." => "非法文件名,\"/\"是不被许可的", "Size" => "大小", "Modified" => "修改日期", @@ -34,6 +38,7 @@ "Enable ZIP-download" => "支持ZIP下载", "0 is unlimited" => "0是无限的", "Maximum input size for ZIP files" => "最大的ZIP文件输入大小", +"Save" => "保存", "New" => "新建", "Text file" => "文本文档", "Folder" => "文件夹", diff --git a/apps/files_encryption/l10n/zh_CN.GB2312.php b/apps/files_encryption/l10n/zh_CN.GB2312.php new file mode 100644 index 00000000000..297444fcf55 --- /dev/null +++ b/apps/files_encryption/l10n/zh_CN.GB2312.php @@ -0,0 +1,6 @@ + "加密", +"Exclude the following file types from encryption" => "从加密中排除如下文件类型", +"None" => "无", +"Enable Encryption" => "启用加密" +); diff --git a/apps/files_external/l10n/el.php b/apps/files_external/l10n/el.php index 7dcf13b3972..3de151eb751 100644 --- a/apps/files_external/l10n/el.php +++ b/apps/files_external/l10n/el.php @@ -1,10 +1,18 @@ "Εξωτερική αποθήκευση", +"External Storage" => "Εξωτερικό Αποθηκευτικό Μέσο", "Mount point" => "Σημείο προσάρτησης", +"Backend" => "Σύστημα υποστήριξης", "Configuration" => "Ρυθμίσεις", "Options" => "Επιλογές", +"Applicable" => "Εφαρμόσιμο", +"Add mount point" => "Προσθήκη σημείου προσάρτησης", +"None set" => "Κανένα επιλεγμένο", "All Users" => "Όλοι οι χρήστες", "Groups" => "Ομάδες", "Users" => "Χρήστες", -"Delete" => "Διαγραφή" +"Delete" => "Διαγραφή", +"SSL root certificates" => "Πιστοποιητικά SSL root", +"Import Root Certificate" => "Εισαγωγή Πιστοποιητικού Root", +"Enable User External Storage" => "Ενεργοποίηση Εξωτερικού Αποθηκευτικού Χώρου Χρήστη", +"Allow users to mount their own external storage" => "Να επιτρέπεται στους χρήστες να προσαρτούν δικό τους εξωτερικό αποθηκευτικό χώρο" ); diff --git a/apps/files_external/l10n/zh_CN.GB2312.php b/apps/files_external/l10n/zh_CN.GB2312.php new file mode 100644 index 00000000000..6a6d1c6d12f --- /dev/null +++ b/apps/files_external/l10n/zh_CN.GB2312.php @@ -0,0 +1,18 @@ + "外部存储", +"Mount point" => "挂载点", +"Backend" => "后端", +"Configuration" => "配置", +"Options" => "选项", +"Applicable" => "可应用", +"Add mount point" => "添加挂载点", +"None set" => "未设置", +"All Users" => "所有用户", +"Groups" => "群组", +"Users" => "用户", +"Delete" => "删除", +"SSL root certificates" => "SSL 根证书", +"Import Root Certificate" => "导入根证书", +"Enable User External Storage" => "启用用户外部存储", +"Allow users to mount their own external storage" => "允许用户挂载他们的外部存储" +); diff --git a/apps/files_sharing/l10n/el.php b/apps/files_sharing/l10n/el.php index 123a008e554..3406c508e61 100644 --- a/apps/files_sharing/l10n/el.php +++ b/apps/files_sharing/l10n/el.php @@ -1,4 +1,7 @@ "Συνθηματικό", -"Submit" => "Καταχώρηση" +"Submit" => "Καταχώρηση", +"Download" => "Λήψη", +"No preview available for" => "Δεν υπάρχει διαθέσιμη προεπισκόπηση για", +"web services under your control" => "υπηρεσίες δικτύου υπό τον έλεγχό σας" ); diff --git a/apps/files_sharing/l10n/zh_CN.GB2312.php b/apps/files_sharing/l10n/zh_CN.GB2312.php new file mode 100644 index 00000000000..fdde2c641f6 --- /dev/null +++ b/apps/files_sharing/l10n/zh_CN.GB2312.php @@ -0,0 +1,7 @@ + "密码", +"Submit" => "提交", +"Download" => "下载", +"No preview available for" => "没有预览可用于", +"web services under your control" => "您控制的网络服务" +); diff --git a/apps/files_versions/l10n/cs_CZ.php b/apps/files_versions/l10n/cs_CZ.php index 5d19f59d706..c99c4a27e82 100644 --- a/apps/files_versions/l10n/cs_CZ.php +++ b/apps/files_versions/l10n/cs_CZ.php @@ -1,5 +1,7 @@ "Vypršet všechny verze", "Versions" => "Verze", -"This will delete all existing backup versions of your files" => "Odstraní všechny existující zálohované verze Vašich souborů" +"This will delete all existing backup versions of your files" => "Odstraní všechny existující zálohované verze Vašich souborů", +"Files Versioning" => "Verzování souborů", +"Enable" => "Povolit" ); diff --git a/apps/files_versions/l10n/de.php b/apps/files_versions/l10n/de.php index 079d96e679e..235e31aedfe 100644 --- a/apps/files_versions/l10n/de.php +++ b/apps/files_versions/l10n/de.php @@ -1,5 +1,7 @@ "Alle Versionen löschen", "Versions" => "Versionen", -"This will delete all existing backup versions of your files" => "Dies löscht alle vorhandenen Sicherungsversionen Ihrer Dateien." +"This will delete all existing backup versions of your files" => "Dies löscht alle vorhandenen Sicherungsversionen Ihrer Dateien.", +"Files Versioning" => "Dateiversionierung", +"Enable" => "Aktivieren" ); diff --git a/apps/files_versions/l10n/el.php b/apps/files_versions/l10n/el.php index c26ad806bbd..24511f37395 100644 --- a/apps/files_versions/l10n/el.php +++ b/apps/files_versions/l10n/el.php @@ -1,3 +1,7 @@ "Λήξη όλων των εκδόσεων" +"Expire all versions" => "Λήξη όλων των εκδόσεων", +"Versions" => "Εκδόσεις", +"This will delete all existing backup versions of your files" => "Αυτό θα διαγράψει όλες τις υπάρχουσες εκδόσεις των αντιγράφων ασφαλείας των αρχείων σας", +"Files Versioning" => "Εκδόσεις Αρχείων", +"Enable" => "Ενεργοποίηση" ); diff --git a/apps/files_versions/l10n/es.php b/apps/files_versions/l10n/es.php index 1acab15299f..cff15bce43a 100644 --- a/apps/files_versions/l10n/es.php +++ b/apps/files_versions/l10n/es.php @@ -1,5 +1,7 @@ "Expirar todas las versiones", "Versions" => "Versiones", -"This will delete all existing backup versions of your files" => "Esto eliminará todas las versiones guardadas como copia de seguridad de tus archivos" +"This will delete all existing backup versions of your files" => "Esto eliminará todas las versiones guardadas como copia de seguridad de tus archivos", +"Files Versioning" => "Versionado de archivos", +"Enable" => "Habilitar" ); diff --git a/apps/files_versions/l10n/it.php b/apps/files_versions/l10n/it.php index 2b7d2b5c139..59f7e759b19 100644 --- a/apps/files_versions/l10n/it.php +++ b/apps/files_versions/l10n/it.php @@ -1,5 +1,7 @@ "Scadenza di tutte le versioni", "Versions" => "Versioni", -"This will delete all existing backup versions of your files" => "Ciò eliminerà tutte le versioni esistenti dei tuoi file" +"This will delete all existing backup versions of your files" => "Ciò eliminerà tutte le versioni esistenti dei tuoi file", +"Files Versioning" => "Controllo di versione dei file", +"Enable" => "Abilita" ); diff --git a/apps/files_versions/l10n/sl.php b/apps/files_versions/l10n/sl.php index 8c67b568834..9984bcb5e80 100644 --- a/apps/files_versions/l10n/sl.php +++ b/apps/files_versions/l10n/sl.php @@ -1,5 +1,7 @@ "Zastaraj vse različice", "Versions" => "Različice", -"This will delete all existing backup versions of your files" => "To bo izbrisalo vse obstoječe različice varnostnih kopij vaših datotek" +"This will delete all existing backup versions of your files" => "To bo izbrisalo vse obstoječe različice varnostnih kopij vaših datotek", +"Files Versioning" => "Sledenje različicam", +"Enable" => "Omogoči" ); diff --git a/apps/files_versions/l10n/sv.php b/apps/files_versions/l10n/sv.php index 16fd9890bf9..218bd6ee2ea 100644 --- a/apps/files_versions/l10n/sv.php +++ b/apps/files_versions/l10n/sv.php @@ -1,5 +1,7 @@ "Upphör alla versioner", "Versions" => "Versioner", -"This will delete all existing backup versions of your files" => "Detta kommer att radera alla befintliga säkerhetskopior av dina filer" +"This will delete all existing backup versions of your files" => "Detta kommer att radera alla befintliga säkerhetskopior av dina filer", +"Files Versioning" => "Versionshantering av filer", +"Enable" => "Aktivera" ); diff --git a/apps/files_versions/l10n/th_TH.php b/apps/files_versions/l10n/th_TH.php index 5e075d54a75..62ab0548f4b 100644 --- a/apps/files_versions/l10n/th_TH.php +++ b/apps/files_versions/l10n/th_TH.php @@ -1,5 +1,7 @@ "หมดอายุทุกรุ่น", "Versions" => "รุ่น", -"This will delete all existing backup versions of your files" => "นี่จะเป็นลบทิ้งไฟล์รุ่นที่ทำการสำรองข้อมูลทั้งหมดที่มีอยู่ของคุณทิ้งไป" +"This will delete all existing backup versions of your files" => "นี่จะเป็นลบทิ้งไฟล์รุ่นที่ทำการสำรองข้อมูลทั้งหมดที่มีอยู่ของคุณทิ้งไป", +"Files Versioning" => "การกำหนดเวอร์ชั่นของไฟล์", +"Enable" => "เปิดใช้งาน" ); diff --git a/apps/files_versions/l10n/zh_CN.GB2312.php b/apps/files_versions/l10n/zh_CN.GB2312.php new file mode 100644 index 00000000000..43af097a21e --- /dev/null +++ b/apps/files_versions/l10n/zh_CN.GB2312.php @@ -0,0 +1,7 @@ + "作废所有版本", +"Versions" => "版本", +"This will delete all existing backup versions of your files" => "这将删除所有您现有文件的备份版本", +"Files Versioning" => "文件版本", +"Enable" => "启用" +); diff --git a/apps/files_versions/l10n/zh_CN.php b/apps/files_versions/l10n/zh_CN.php index ba2ea40df96..1a5caae7dfa 100644 --- a/apps/files_versions/l10n/zh_CN.php +++ b/apps/files_versions/l10n/zh_CN.php @@ -1,5 +1,7 @@ "过期所有版本", "Versions" => "版本", -"This will delete all existing backup versions of your files" => "将会删除您的文件的所有备份版本" +"This will delete all existing backup versions of your files" => "将会删除您的文件的所有备份版本", +"Files Versioning" => "文件版本", +"Enable" => "开启" ); diff --git a/apps/user_ldap/l10n/de.php b/apps/user_ldap/l10n/de.php index 2c178d0b4fd..df676711792 100644 --- a/apps/user_ldap/l10n/de.php +++ b/apps/user_ldap/l10n/de.php @@ -24,7 +24,7 @@ "Do not use it for SSL connections, it will fail." => "Verwenden Sie es nicht für SSL-Verbindungen, es wird fehlschlagen.", "Case insensitve LDAP server (Windows)" => "LDAP-Server (Windows: Groß- und Kleinschreibung bleibt unbeachtet)", "Turn off SSL certificate validation." => "Schalte die SSL-Zertifikatsprüfung aus.", -"If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Falls die Verbindung es erfordert, wird das SSL-Zertifikat des LDAP-Server importiert werden.", +"If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Falls die Verbindung es erfordert, muss das SSL-Zertifikat des LDAP-Server importiert werden.", "Not recommended, use for testing only." => "Nicht empfohlen, nur zu Testzwecken.", "User Display Name Field" => "Feld für den Anzeigenamen des Benutzers", "The LDAP attribute to use to generate the user`s ownCloud name." => "Das LDAP-Attribut für die Generierung des Benutzernamens in ownCloud. ", diff --git a/apps/user_ldap/l10n/zh_CN.GB2312.php b/apps/user_ldap/l10n/zh_CN.GB2312.php new file mode 100644 index 00000000000..8b906aea5ce --- /dev/null +++ b/apps/user_ldap/l10n/zh_CN.GB2312.php @@ -0,0 +1,37 @@ + "主机", +"You can omit the protocol, except you require SSL. Then start with ldaps://" => "您可以忽略协议,除非您需要 SSL。然后用 ldaps:// 开头", +"Base DN" => "基本判别名", +"You can specify Base DN for users and groups in the Advanced tab" => "您可以在高级选项卡中为用户和群组指定基本判别名", +"User DN" => "用户判别名", +"The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." => "客户机用户的判别名,将用于绑定,例如 uid=agent, dc=example, dc=com。匿名访问请留空判别名和密码。", +"Password" => "密码", +"For anonymous access, leave DN and Password empty." => "匿名访问请留空判别名和密码。", +"User Login Filter" => "用户登录过滤器", +"Defines the filter to apply, when login is attempted. %%uid replaces the username in the login action." => "定义尝试登录时要应用的过滤器。用 %%uid 替换登录操作中使用的用户名。", +"use %%uid placeholder, e.g. \"uid=%%uid\"" => "使用 %%uid 占位符,例如 \"uid=%%uid\"", +"User List Filter" => "用户列表过滤器", +"Defines the filter to apply, when retrieving users." => "定义撷取用户时要应用的过滤器。", +"without any placeholder, e.g. \"objectClass=person\"." => "不能使用占位符,例如 \"objectClass=person\"。", +"Group Filter" => "群组过滤器", +"Defines the filter to apply, when retrieving groups." => "定义撷取群组时要应用的过滤器", +"without any placeholder, e.g. \"objectClass=posixGroup\"." => "不能使用占位符,例如 \"objectClass=posixGroup\"。", +"Port" => "端口", +"Base User Tree" => "基本用户树", +"Base Group Tree" => "基本群组树", +"Group-Member association" => "群组-成员组合", +"Use TLS" => "使用 TLS", +"Do not use it for SSL connections, it will fail." => "不要使用它进行 SSL 连接,会失败的。", +"Case insensitve LDAP server (Windows)" => "大小写不敏感的 LDAP 服务器 (Windows)", +"Turn off SSL certificate validation." => "关闭 SSL 证书校验。", +"If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "如果只有使用此选项才能连接,请导入 LDAP 服务器的 SSL 证书到您的 ownCloud 服务器。", +"Not recommended, use for testing only." => "不推荐,仅供测试", +"User Display Name Field" => "用户显示名称字段", +"The LDAP attribute to use to generate the user`s ownCloud name." => "用于生成用户的 ownCloud 名称的 LDAP 属性。", +"Group Display Name Field" => "群组显示名称字段", +"The LDAP attribute to use to generate the groups`s ownCloud name." => "用于生成群组的 ownCloud 名称的 LDAP 属性。", +"in bytes" => "以字节计", +"in seconds. A change empties the cache." => "以秒计。修改会清空缓存。", +"Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "用户名请留空 (默认)。否则,请指定一个 LDAP/AD 属性。", +"Help" => "帮助" +); diff --git a/core/l10n/de.php b/core/l10n/de.php index 611c208fe4d..bcc04496405 100644 --- a/core/l10n/de.php +++ b/core/l10n/de.php @@ -1,5 +1,5 @@ "Applikationsname nicht angegeben", +"Application name not provided." => "Anwendungsname nicht angegeben", "No category to add?" => "Keine Kategorie hinzuzufügen?", "This category already exists: " => "Kategorie existiert bereits:", "Settings" => "Einstellungen", diff --git a/core/l10n/el.php b/core/l10n/el.php index 18a26f892c0..227e981f2b2 100644 --- a/core/l10n/el.php +++ b/core/l10n/el.php @@ -50,6 +50,7 @@ "Database user" => "Χρήστης της βάσης δεδομένων", "Database password" => "Κωδικός πρόσβασης βάσης δεδομένων", "Database name" => "Όνομα βάσης δεδομένων", +"Database tablespace" => "Κενά Πινάκων Βάσης Δεδομένων", "Database host" => "Διακομιστής βάσης δεδομένων", "Finish setup" => "Ολοκλήρωση εγκατάστασης", "web services under your control" => "Υπηρεσίες web υπό τον έλεγχό σας", diff --git a/core/l10n/ro.php b/core/l10n/ro.php index 484a47727dc..9ec6a048fcf 100644 --- a/core/l10n/ro.php +++ b/core/l10n/ro.php @@ -3,6 +3,24 @@ "No category to add?" => "Nici o categorie de adăugat?", "This category already exists: " => "Această categorie deja există:", "Settings" => "Configurări", +"January" => "Ianuarie", +"February" => "Februarie", +"March" => "Martie", +"April" => "Aprilie", +"May" => "Mai", +"June" => "Iunie", +"July" => "Iulie", +"August" => "August", +"September" => "Septembrie", +"October" => "Octombrie", +"November" => "Noiembrie", +"December" => "Decembrie", +"Cancel" => "Anulare", +"No" => "Nu", +"Yes" => "Da", +"Ok" => "Ok", +"No categories selected for deletion." => "Nici o categorie selectată pentru ștergere.", +"Error" => "Eroare", "ownCloud password reset" => "Resetarea parolei ownCloud ", "Use the following link to reset your password: {link}" => "Folosește următorul link pentru a reseta parola: {link}", "You will receive a link to reset your password via Email." => "Vei primi un mesaj prin care vei putea reseta parola via email", diff --git a/core/l10n/zh_CN.GB2312.php b/core/l10n/zh_CN.GB2312.php index 58104df3997..e59a935f394 100644 --- a/core/l10n/zh_CN.GB2312.php +++ b/core/l10n/zh_CN.GB2312.php @@ -50,6 +50,7 @@ "Database user" => "数据库用户", "Database password" => "数据库密码", "Database name" => "数据库用户名", +"Database tablespace" => "数据库表格空间", "Database host" => "数据库主机", "Finish setup" => "完成安装", "web services under your control" => "你控制下的网络服务", diff --git a/l10n/af/files.po b/l10n/af/files.po index 6cd6b21cefa..a16e059df3c 100644 --- a/l10n/af/files.po +++ b/l10n/af/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (http://www.transifex.com/projects/p/owncloud/language/af/)\n" "MIME-Version: 1.0\n" @@ -79,7 +79,7 @@ msgstr "" msgid "replaced" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "" @@ -87,11 +87,11 @@ msgstr "" msgid "with" msgstr "" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "" @@ -124,27 +124,35 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "" diff --git a/l10n/ar/files.po b/l10n/ar/files.po index 7221caf070d..18222f6892f 100644 --- a/l10n/ar/files.po +++ b/l10n/ar/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00: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" @@ -80,7 +80,7 @@ msgstr "" msgid "replaced" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "" @@ -88,11 +88,11 @@ msgstr "" msgid "with" msgstr "" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "" @@ -125,27 +125,35 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "حجم" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "معدل" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "" diff --git a/l10n/ar_SA/files.po b/l10n/ar_SA/files.po index 8651ddd072e..7e240be4fa6 100644 --- a/l10n/ar_SA/files.po +++ b/l10n/ar_SA/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (Saudi Arabia) (http://www.transifex.com/projects/p/owncloud/language/ar_SA/)\n" "MIME-Version: 1.0\n" @@ -79,7 +79,7 @@ msgstr "" msgid "replaced" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "" @@ -87,11 +87,11 @@ msgstr "" msgid "with" msgstr "" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "" @@ -124,27 +124,35 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "" diff --git a/l10n/bg_BG/files.po b/l10n/bg_BG/files.po index f1667a2327f..f6587e5c346 100644 --- a/l10n/bg_BG/files.po +++ b/l10n/bg_BG/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: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00: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" @@ -81,7 +81,7 @@ msgstr "" msgid "replaced" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "" @@ -89,11 +89,11 @@ msgstr "" msgid "with" msgstr "" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "" @@ -126,27 +126,35 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "Неправилно име – \"/\" не е позволено." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Размер" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Променено" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "папка" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "папки" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "файл" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "" diff --git a/l10n/ca/files.po b/l10n/ca/files.po index 09799489c82..214a4c9125e 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/files.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-11 02:02+0200\n" -"PO-Revision-Date: 2012-09-10 07:25+0000\n" -"Last-Translator: rogerc \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:01+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" @@ -82,7 +82,7 @@ msgstr "cancel·la" msgid "replaced" msgstr "substituït" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "desfés" @@ -90,11 +90,11 @@ msgstr "desfés" msgid "with" msgstr "per" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "No compartits" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "esborrat" @@ -127,27 +127,35 @@ msgstr "Hi ha una pujada en curs. Si abandoneu la pàgina la pujada es cancel·l msgid "Invalid name, '/' is not allowed." msgstr "El nom no és vàlid, no es permet '/'." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Mida" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Modificat" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "carpeta" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "carpetes" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "fitxer" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "fitxers" diff --git a/l10n/cs_CZ/files.po b/l10n/cs_CZ/files.po index 8da1d5687eb..fe8d0af8aa1 100644 --- a/l10n/cs_CZ/files.po +++ b/l10n/cs_CZ/files.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-10 02:02+0200\n" -"PO-Revision-Date: 2012-09-09 10:25+0000\n" -"Last-Translator: Tomáš Chvátal \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:01+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" @@ -82,7 +82,7 @@ msgstr "zrušit" msgid "replaced" msgstr "nahrazeno" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "zpět" @@ -90,11 +90,11 @@ msgstr "zpět" msgid "with" msgstr "s" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "sdílení zrušeno" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "smazáno" @@ -127,27 +127,35 @@ msgstr "Probíhá odesílání souboru. Opuštění stránky vyústí ve zrušen msgid "Invalid name, '/' is not allowed." msgstr "Neplatný název, znak '/' není povolen" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Velikost" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Změněno" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "složka" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "složky" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "soubor" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "soubory" diff --git a/l10n/cs_CZ/files_versions.po b/l10n/cs_CZ/files_versions.po index 62610aa8768..61b1531b7ef 100644 --- a/l10n/cs_CZ/files_versions.po +++ b/l10n/cs_CZ/files_versions.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" -"PO-Revision-Date: 2012-09-17 00:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 14:45+0000\n" +"Last-Translator: Tomáš Chvátal \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -33,8 +33,8 @@ msgstr "Odstraní všechny existující zálohované verze Vašich souborů" #: templates/settings.php:3 msgid "Files Versioning" -msgstr "" +msgstr "Verzování souborů" #: templates/settings.php:4 msgid "Enable" -msgstr "" +msgstr "Povolit" diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po index 4e8e8e7dcaf..eb866f05823 100644 --- a/l10n/cs_CZ/settings.po +++ b/l10n/cs_CZ/settings.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:03+0200\n" -"PO-Revision-Date: 2012-09-17 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 14:48+0000\n" +"Last-Translator: Tomáš Chvátal \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -40,7 +40,7 @@ msgstr "Skupina již existuje" msgid "Unable to add group" msgstr "Nelze přidat skupinu" -#: ajax/enableapp.php:13 +#: ajax/enableapp.php:14 msgid "Could not enable app. " msgstr "Nelze povolit aplikaci." @@ -121,7 +121,7 @@ msgstr "Cron" #: templates/admin.php:37 msgid "Execute one task with each page loaded" -msgstr "" +msgstr "Spustit jednu úlohu s každou načtenou stránkou" #: templates/admin.php:43 msgid "" @@ -133,11 +133,11 @@ msgstr "cron.php je registrován u služby webcron. Zavolá stránku cron.php v msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "" +msgstr "Použít systémovou službu cron. Zavolat soubor cron.php ze složky owncloud pomocí systémové úlohy cron každou minutu." #: templates/admin.php:56 msgid "Sharing" -msgstr "" +msgstr "Sdílení" #: templates/admin.php:61 msgid "Enable Share API" diff --git a/l10n/da/files.po b/l10n/da/files.po index 98943475b53..8059cf0e9e0 100644 --- a/l10n/da/files.po +++ b/l10n/da/files.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-14 02:01+0200\n" -"PO-Revision-Date: 2012-09-13 09:23+0000\n" -"Last-Translator: osos \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:01+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" @@ -85,7 +85,7 @@ msgstr "fortryd" msgid "replaced" msgstr "erstattet" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "fortryd" @@ -93,11 +93,11 @@ msgstr "fortryd" msgid "with" msgstr "med" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "udelt" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "Slettet" @@ -130,27 +130,35 @@ msgstr "Fil upload kører. Hvis du forlader siden nu, vil uploadet blive annuler msgid "Invalid name, '/' is not allowed." msgstr "Ugyldigt navn, '/' er ikke tilladt." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Størrelse" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Ændret" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "mappe" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "mapper" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "fil" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "filer" diff --git a/l10n/de/core.po b/l10n/de/core.po index ee93387e056..0f9a95fa25f 100644 --- a/l10n/de/core.po +++ b/l10n/de/core.po @@ -8,6 +8,7 @@ # , 2011. # I Robot , 2012. # Jan-Christoph Borchardt , 2011. +# , 2012. # Marcel Kühlhorn , 2012. # , 2012. # , 2012. @@ -18,9 +19,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" -"PO-Revision-Date: 2012-09-16 18:13+0000\n" -"Last-Translator: traductor \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 06:28+0000\n" +"Last-Translator: fmms \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,7 +31,7 @@ msgstr "" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." -msgstr "Applikationsname nicht angegeben" +msgstr "Anwendungsname nicht angegeben" #: ajax/vcategories/add.php:29 msgid "No category to add?" diff --git a/l10n/de/files.po b/l10n/de/files.po index 5a9037efcd9..89c0f6c40f3 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.po @@ -20,9 +20,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" -"PO-Revision-Date: 2012-09-16 23:04+0000\n" -"Last-Translator: fmms \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:01+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -92,7 +92,7 @@ msgstr "abbrechen" msgid "replaced" msgstr "ersetzt" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "rückgängig machen" @@ -100,11 +100,11 @@ msgstr "rückgängig machen" msgid "with" msgstr "mit" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "Nicht mehr teilen" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "gelöscht" @@ -137,6 +137,14 @@ msgstr "Dateiupload läuft. Wenn Sie die Seite jetzt verlassen, wird der Upload msgid "Invalid name, '/' is not allowed." msgstr "Ungültiger Name: \"/\" ist nicht erlaubt." +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + #: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Größe" diff --git a/l10n/de/files_versions.po b/l10n/de/files_versions.po index 2cfa07980be..acda1c165a6 100644 --- a/l10n/de/files_versions.po +++ b/l10n/de/files_versions.po @@ -4,15 +4,16 @@ # # Translators: # I Robot , 2012. +# , 2012. # , 2012. # , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" -"PO-Revision-Date: 2012-09-17 00:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 06:25+0000\n" +"Last-Translator: fmms \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -34,8 +35,8 @@ msgstr "Dies löscht alle vorhandenen Sicherungsversionen Ihrer Dateien." #: templates/settings.php:3 msgid "Files Versioning" -msgstr "" +msgstr "Dateiversionierung" #: templates/settings.php:4 msgid "Enable" -msgstr "" +msgstr "Aktivieren" diff --git a/l10n/de/lib.po b/l10n/de/lib.po index b43e2799fd9..e066695345d 100644 --- a/l10n/de/lib.po +++ b/l10n/de/lib.po @@ -10,37 +10,37 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 08:07+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 21:03+0000\n" "Last-Translator: traductor \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: de\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:288 +#: app.php:285 msgid "Help" msgstr "Hilfe" -#: app.php:295 +#: app.php:292 msgid "Personal" msgstr "Persönlich" -#: app.php:300 +#: app.php:297 msgid "Settings" msgstr "Einstellungen" -#: app.php:305 +#: app.php:302 msgid "Users" msgstr "Benutzer" -#: app.php:312 +#: app.php:309 msgid "Apps" msgstr "Apps" -#: app.php:314 +#: app.php:311 msgid "Admin" msgstr "Administrator" @@ -72,45 +72,45 @@ msgstr "Authentifizierungs-Fehler" msgid "Token expired. Please reload page." msgstr "Token abgelaufen. Bitte laden Sie die Seite neu." -#: template.php:86 +#: template.php:87 msgid "seconds ago" msgstr "Vor wenigen Sekunden" -#: template.php:87 +#: template.php:88 msgid "1 minute ago" msgstr "Vor einer Minute" -#: template.php:88 +#: template.php:89 #, php-format msgid "%d minutes ago" -msgstr "Vor %d Minuten" +msgstr "Vor %d Minute(n)" -#: template.php:91 +#: template.php:92 msgid "today" msgstr "Heute" -#: template.php:92 +#: template.php:93 msgid "yesterday" msgstr "Gestern" -#: template.php:93 +#: template.php:94 #, php-format msgid "%d days ago" -msgstr "Vor %d Tagen" +msgstr "Vor %d Tag(en)" -#: template.php:94 +#: template.php:95 msgid "last month" msgstr "Letzten Monat" -#: template.php:95 +#: template.php:96 msgid "months ago" msgstr "Vor Monaten" -#: template.php:96 +#: template.php:97 msgid "last year" msgstr "Letztes Jahr" -#: template.php:97 +#: template.php:98 msgid "years ago" msgstr "Vor Jahren" diff --git a/l10n/de/settings.po b/l10n/de/settings.po index 9aefe033b02..88ca1c44b7a 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -19,9 +19,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:03+0200\n" -"PO-Revision-Date: 2012-09-17 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 06:24+0000\n" +"Last-Translator: fmms \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -46,7 +46,7 @@ msgstr "Gruppe existiert bereits" msgid "Unable to add group" msgstr "Gruppe konnte nicht angelegt werden" -#: ajax/enableapp.php:13 +#: ajax/enableapp.php:14 msgid "Could not enable app. " msgstr "App konnte nicht aktiviert werden." @@ -127,7 +127,7 @@ msgstr "Cron" #: templates/admin.php:37 msgid "Execute one task with each page loaded" -msgstr "" +msgstr "Führe eine Aufgabe pro geladener Seite aus." #: templates/admin.php:43 msgid "" @@ -139,11 +139,11 @@ msgstr "cron.php ist bei einem Webcron-Dienst registriert. Rufen Sie die Seite c msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "" +msgstr "Benutzen Sie den System-Crondienst. Rufen Sie die cron.php im owncloud-Ordner über einen System-Cronjob minütlich auf." #: templates/admin.php:56 msgid "Sharing" -msgstr "" +msgstr "Freigabe" #: templates/admin.php:61 msgid "Enable Share API" @@ -245,7 +245,7 @@ msgstr "der verfügbaren" #: templates/personal.php:12 msgid "Desktop and Mobile Syncing Clients" -msgstr "Desktop- und mobile Synchronierungs-Clients" +msgstr "Desktop- und mobile Clients für die Synchronisation" #: templates/personal.php:13 msgid "Download" diff --git a/l10n/de/user_ldap.po b/l10n/de/user_ldap.po index c8b3a60d6a6..951faf6839a 100644 --- a/l10n/de/user_ldap.po +++ b/l10n/de/user_ldap.po @@ -12,15 +12,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-08-31 15:48+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 20:49+0000\n" "Last-Translator: traductor \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: de\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/settings.php:8 msgid "Host" @@ -134,7 +134,7 @@ msgstr "Schalte die SSL-Zertifikatsprüfung aus." msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." -msgstr "Falls die Verbindung es erfordert, wird das SSL-Zertifikat des LDAP-Server importiert werden." +msgstr "Falls die Verbindung es erfordert, muss das SSL-Zertifikat des LDAP-Server importiert werden." #: templates/settings.php:23 msgid "Not recommended, use for testing only." diff --git a/l10n/el/core.po b/l10n/el/core.po index 0a9a6e0388f..babcd9f4e81 100644 --- a/l10n/el/core.po +++ b/l10n/el/core.po @@ -4,6 +4,7 @@ # # Translators: # Dimitris M. , 2012. +# Efstathios Iosifidis , 2012. # Marios Bekatoros <>, 2012. # , 2011. # Petros Kyladitis , 2011, 2012. @@ -11,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 19:33+0000\n" +"Last-Translator: Efstathios Iosifidis \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -33,55 +34,55 @@ msgstr "Δεν έχετε να προστέσθέσεται μια κα" msgid "This category already exists: " msgstr "Αυτή η κατηγορία υπάρχει ήδη" -#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:214 templates/layout.user.php:54 templates/layout.user.php:55 msgid "Settings" msgstr "Ρυθμίσεις" -#: js/js.js:593 +#: js/js.js:642 msgid "January" msgstr "Ιανουάριος" -#: js/js.js:593 +#: js/js.js:642 msgid "February" msgstr "Φεβρουάριος" -#: js/js.js:593 +#: js/js.js:642 msgid "March" msgstr "Μάρτιος" -#: js/js.js:593 +#: js/js.js:642 msgid "April" msgstr "Απρίλιος" -#: js/js.js:593 +#: js/js.js:642 msgid "May" msgstr "Μάϊος" -#: js/js.js:593 +#: js/js.js:642 msgid "June" msgstr "Ιούνιος" -#: js/js.js:594 +#: js/js.js:643 msgid "July" msgstr "Ιούλιος" -#: js/js.js:594 +#: js/js.js:643 msgid "August" msgstr "Αύγουστος" -#: js/js.js:594 +#: js/js.js:643 msgid "September" msgstr "Σεπτέμβριος" -#: js/js.js:594 +#: js/js.js:643 msgid "October" msgstr "Οκτώβριος" -#: js/js.js:594 +#: js/js.js:643 msgid "November" msgstr "Νοέμβριος" -#: js/js.js:594 +#: js/js.js:643 msgid "December" msgstr "Δεκέμβριος" @@ -229,7 +230,7 @@ msgstr "Όνομα βάσης δεδομένων" #: templates/installation.php:109 msgid "Database tablespace" -msgstr "" +msgstr "Κενά Πινάκων Βάσης Δεδομένων" #: templates/installation.php:115 msgid "Database host" @@ -239,11 +240,11 @@ msgstr "Διακομιστής βάσης δεδομένων" msgid "Finish setup" msgstr "Ολοκλήρωση εγκατάστασης" -#: templates/layout.guest.php:42 +#: templates/layout.guest.php:36 msgid "web services under your control" msgstr "Υπηρεσίες web υπό τον έλεγχό σας" -#: templates/layout.user.php:45 +#: templates/layout.user.php:39 msgid "Log out" msgstr "Αποσύνδεση" diff --git a/l10n/el/files.po b/l10n/el/files.po index 0daee77ea7d..0912afaf796 100644 --- a/l10n/el/files.po +++ b/l10n/el/files.po @@ -4,14 +4,15 @@ # # Translators: # Dimitris M. , 2012. +# Efstathios Iosifidis , 2012. # Marios Bekatoros <>, 2012. # Petros Kyladitis , 2011, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00: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" @@ -56,7 +57,7 @@ msgstr "Αρχεία" #: js/fileactions.js:108 templates/index.php:62 msgid "Unshare" -msgstr "" +msgstr "Διακοπή κοινής χρήσης" #: js/fileactions.js:110 templates/index.php:64 msgid "Delete" @@ -72,7 +73,7 @@ msgstr "αντικατέστησε" #: js/filelist.js:186 msgid "suggest name" -msgstr "" +msgstr "συνιστώμενο όνομα" #: js/filelist.js:186 js/filelist.js:188 msgid "cancel" @@ -82,7 +83,7 @@ msgstr "ακύρωση" msgid "replaced" msgstr "αντικαταστάθηκε" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "αναίρεση" @@ -90,11 +91,11 @@ msgstr "αναίρεση" msgid "with" msgstr "με" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" -msgstr "" +msgstr "Διακόπηκε η κοινή χρήση" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "διαγράφηκε" @@ -121,33 +122,41 @@ msgstr "Η μεταφόρτωση ακυρώθηκε." #: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "" +msgstr "Η μεταφόρτωση του αρχείου βρίσκεται σε εξέλιξη. Έξοδος από την σελίδα τώρα θα ακυρώσει την μεταφόρτωση." #: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "Μη έγκυρο όνομα, το '/' δεν επιτρέπεται." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Μέγεθος" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Τροποποιήθηκε" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "φάκελος" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "φάκελοι" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "αρχείο" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "αρχεία" @@ -181,7 +190,7 @@ msgstr "Μέγιστο μέγεθος για αρχεία ZIP" #: templates/admin.php:14 msgid "Save" -msgstr "" +msgstr "Αποθήκευση" #: templates/index.php:7 msgid "New" diff --git a/l10n/el/files_external.po b/l10n/el/files_external.po index d11daf7f325..26acbf9da90 100644 --- a/l10n/el/files_external.po +++ b/l10n/el/files_external.po @@ -3,25 +3,26 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Efstathios Iosifidis , 2012. # Nisok Kosin , 2012. # Petros Kyladitis , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-27 02:01+0200\n" -"PO-Revision-Date: 2012-08-26 21:45+0000\n" -"Last-Translator: Petros Kyladitis \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 20:07+0000\n" +"Last-Translator: Efstathios Iosifidis \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: el\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/settings.php:3 msgid "External Storage" -msgstr "Εξωτερική αποθήκευση" +msgstr "Εξωτερικό Αποθηκευτικό Μέσο" #: templates/settings.php:7 templates/settings.php:19 msgid "Mount point" @@ -29,7 +30,7 @@ msgstr "Σημείο προσάρτησης" #: templates/settings.php:8 msgid "Backend" -msgstr "" +msgstr "Σύστημα υποστήριξης" #: templates/settings.php:9 msgid "Configuration" @@ -41,15 +42,15 @@ msgstr "Επιλογές" #: templates/settings.php:11 msgid "Applicable" -msgstr "" +msgstr "Εφαρμόσιμο" #: templates/settings.php:23 msgid "Add mount point" -msgstr "" +msgstr "Προσθήκη σημείου προσάρτησης" #: templates/settings.php:54 templates/settings.php:62 msgid "None set" -msgstr "" +msgstr "Κανένα επιλεγμένο" #: templates/settings.php:63 msgid "All Users" @@ -69,16 +70,16 @@ msgstr "Διαγραφή" #: templates/settings.php:88 msgid "SSL root certificates" -msgstr "" +msgstr "Πιστοποιητικά SSL root" #: templates/settings.php:102 msgid "Import Root Certificate" -msgstr "" +msgstr "Εισαγωγή Πιστοποιητικού Root" #: templates/settings.php:108 msgid "Enable User External Storage" -msgstr "" +msgstr "Ενεργοποίηση Εξωτερικού Αποθηκευτικού Χώρου Χρήστη" #: templates/settings.php:109 msgid "Allow users to mount their own external storage" -msgstr "" +msgstr "Να επιτρέπεται στους χρήστες να προσαρτούν δικό τους εξωτερικό αποθηκευτικό χώρο" diff --git a/l10n/el/files_sharing.po b/l10n/el/files_sharing.po index fafebf49441..01a1f99bd98 100644 --- a/l10n/el/files_sharing.po +++ b/l10n/el/files_sharing.po @@ -4,20 +4,21 @@ # # Translators: # Dimitris M. , 2012. +# Efstathios Iosifidis , 2012. # Nisok Kosin , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 19:13+0000\n" +"Last-Translator: Efstathios Iosifidis \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: el\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 msgid "Password" @@ -29,12 +30,12 @@ msgstr "Καταχώρηση" #: templates/public.php:9 templates/public.php:19 msgid "Download" -msgstr "" +msgstr "Λήψη" #: templates/public.php:18 msgid "No preview available for" -msgstr "" +msgstr "Δεν υπάρχει διαθέσιμη προεπισκόπηση για" -#: templates/public.php:23 +#: templates/public.php:25 msgid "web services under your control" -msgstr "" +msgstr "υπηρεσίες δικτύου υπό τον έλεγχό σας" diff --git a/l10n/el/files_versions.po b/l10n/el/files_versions.po index a68447d08c7..d6b4a6a230b 100644 --- a/l10n/el/files_versions.po +++ b/l10n/el/files_versions.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Efstathios Iosifidis , 2012. # Nisok Kosin , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" -"PO-Revision-Date: 2012-09-17 00:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 20:10+0000\n" +"Last-Translator: Efstathios Iosifidis \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,16 +25,16 @@ msgstr "Λήξη όλων των εκδόσεων" #: templates/settings-personal.php:4 msgid "Versions" -msgstr "" +msgstr "Εκδόσεις" #: templates/settings-personal.php:7 msgid "This will delete all existing backup versions of your files" -msgstr "" +msgstr "Αυτό θα διαγράψει όλες τις υπάρχουσες εκδόσεις των αντιγράφων ασφαλείας των αρχείων σας" #: templates/settings.php:3 msgid "Files Versioning" -msgstr "" +msgstr "Εκδόσεις Αρχείων" #: templates/settings.php:4 msgid "Enable" -msgstr "" +msgstr "Ενεργοποίηση" diff --git a/l10n/el/settings.po b/l10n/el/settings.po index fe7b0300c4b..ba761612ae3 100644 --- a/l10n/el/settings.po +++ b/l10n/el/settings.po @@ -4,19 +4,20 @@ # # Translators: # Dimitris M. , 2012. +# Efstathios Iosifidis , 2012. # Efstathios Iosifidis , 2012. # , 2012. # Marios Bekatoros <>, 2012. # Nisok Kosin , 2012. # , 2011. -# Petros Kyladitis , 2011, 2012. +# Petros Kyladitis , 2011-2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:03+0200\n" -"PO-Revision-Date: 2012-09-17 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 19:31+0000\n" +"Last-Translator: Efstathios Iosifidis \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -35,15 +36,15 @@ msgstr "Σφάλμα πιστοποίησης" #: ajax/creategroup.php:19 msgid "Group already exists" -msgstr "" +msgstr "Η ομάδα υπάρχει ήδη" #: ajax/creategroup.php:28 msgid "Unable to add group" -msgstr "" +msgstr "Αδυναμία προσθήκης ομάδας" -#: ajax/enableapp.php:13 +#: ajax/enableapp.php:14 msgid "Could not enable app. " -msgstr "" +msgstr "Αδυναμία ενεργοποίησης εφαρμογής " #: ajax/lostpassword.php:14 msgid "Email saved" @@ -63,11 +64,11 @@ msgstr "Μη έγκυρο αίτημα" #: ajax/removegroup.php:16 msgid "Unable to delete group" -msgstr "" +msgstr "Αδυναμία διαγραφής ομάδας" #: ajax/removeuser.php:22 msgid "Unable to delete user" -msgstr "" +msgstr "Αδυναμία διαγραφής χρήστη" #: ajax/setlanguage.php:18 msgid "Language changed" @@ -76,12 +77,12 @@ msgstr "Η γλώσσα άλλαξε" #: ajax/togglegroups.php:25 #, php-format msgid "Unable to add user to group %s" -msgstr "" +msgstr "Αδυναμία προσθήκη χρήστη στην ομάδα %s" #: ajax/togglegroups.php:31 #, php-format msgid "Unable to remove user from group %s" -msgstr "" +msgstr "Αδυναμία αφαίρεσης χρήστη από την ομάδα %s" #: js/apps.js:18 msgid "Error" @@ -114,7 +115,7 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "" +msgstr "Ο κατάλογος δεδομένων και τα αρχεία σας είναι πιθανότατα προσβάσιμα από το διαδίκτυο. Το αρχείο .htaccess που παρέχει το owncloud, δεν λειτουργεί. Σας συνιστούμε να ρυθμίσετε τον εξυπηρετητή σας έτσι ώστε ο κατάλογος δεδομένων να μην είναι πλεον προσβάσιμος ή μετακινήστε τον κατάλογο δεδομένων εκτός του καταλόγου document του εξυπηρετητή σας." #: templates/admin.php:31 msgid "Cron" @@ -122,55 +123,55 @@ msgstr "Cron" #: templates/admin.php:37 msgid "Execute one task with each page loaded" -msgstr "" +msgstr "Εκτέλεση μιας εργασίας με κάθε σελίδα που φορτώνεται" #: templates/admin.php:43 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." -msgstr "" +msgstr "Το cron.php είναι καταχωρημένο στην υπηρεσία webcron. Να καλείται μια φορά το λεπτό η σελίδα cron.php από τον root του owncloud μέσω http" #: templates/admin.php:49 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "" +msgstr "Χρήση υπηρεσίας συστήματος cron. Να καλείται μια φορά το λεπτό, το αρχείο cron.php από τον φάκελο του owncloud μέσω του cronjob του συστήματος." #: templates/admin.php:56 msgid "Sharing" -msgstr "" +msgstr "Διαμοιρασμός" #: templates/admin.php:61 msgid "Enable Share API" -msgstr "" +msgstr "Ενεργοποίηση API Διαμοιρασμού" #: templates/admin.php:62 msgid "Allow apps to use the Share API" -msgstr "" +msgstr "Να επιτρέπεται στις εφαρμογές να χρησιμοποιούν το API Διαμοιρασμού" #: templates/admin.php:67 msgid "Allow links" -msgstr "" +msgstr "Να επιτρέπονται σύνδεσμοι" #: templates/admin.php:68 msgid "Allow users to share items to the public with links" -msgstr "" +msgstr "Να επιτρέπεται στους χρήστες να διαμοιράζονται δημόσια με συνδέσμους" #: templates/admin.php:73 msgid "Allow resharing" -msgstr "" +msgstr "Να επιτρέπεται ο επαναδιαμοιρασμός" #: templates/admin.php:74 msgid "Allow users to share items shared with them again" -msgstr "" +msgstr "Να επιτρέπεται στους χρήστες να διαμοιράζουν ότι τους έχει διαμοιραστεί" #: templates/admin.php:79 msgid "Allow users to share with anyone" -msgstr "" +msgstr "Να επιτρέπεται ο διαμοιρασμός με οποιονδήποτε" #: templates/admin.php:81 msgid "Allow users to only share with users in their groups" -msgstr "" +msgstr "Να επιτρέπεται ο διαμοιρασμός μόνο με χρήστες της ίδιας ομάδας" #: templates/admin.php:88 msgid "Log" @@ -188,7 +189,7 @@ msgid "" "licensed under the AGPL." -msgstr "" +msgstr "Αναπτύχθηκε από την κοινότητα ownCloud, ο πηγαίος κώδικας είναι υπό άδεια χρήσης AGPL." #: templates/apps.php:10 msgid "Add your App" @@ -204,7 +205,7 @@ msgstr "Η σελίδα εφαρμογών στο apps.owncloud.com" #: templates/apps.php:30 msgid "-licensed by " -msgstr "" +msgstr "-άδεια από " #: templates/help.php:9 msgid "Documentation" @@ -320,7 +321,7 @@ msgstr "Άλλα" #: templates/users.php:80 templates/users.php:112 msgid "Group Admin" -msgstr "Διαχειρηστής ομάδας" +msgstr "Ομάδα Διαχειριστών" #: templates/users.php:82 msgid "Quota" diff --git a/l10n/eo/files.po b/l10n/eo/files.po index d62532d142c..9aa4aa30afb 100644 --- a/l10n/eo/files.po +++ b/l10n/eo/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: 2012-09-09 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 21:57+0000\n" -"Last-Translator: Mariano \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -81,7 +81,7 @@ msgstr "nuligi" msgid "replaced" msgstr "anstataŭigita" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "malfari" @@ -89,11 +89,11 @@ msgstr "malfari" msgid "with" msgstr "kun" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "malkunhavigita" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "forigita" @@ -126,27 +126,35 @@ msgstr "Dosieralŝuto plenumiĝas. Lasi la paĝon nun nuligus la alŝuton." msgid "Invalid name, '/' is not allowed." msgstr "Nevalida nomo, “/” ne estas permesata." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Grando" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Modifita" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "dosierujo" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "dosierujoj" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "dosiero" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "dosieroj" diff --git a/l10n/es/files.po b/l10n/es/files.po index a50f0e53fd3..5dffbb2efc7 100644 --- a/l10n/es/files.po +++ b/l10n/es/files.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-10 02:02+0200\n" -"PO-Revision-Date: 2012-09-09 03:24+0000\n" -"Last-Translator: juanman \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:01+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" @@ -83,7 +83,7 @@ msgstr "cancelar" msgid "replaced" msgstr "reemplazado" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "deshacer" @@ -91,11 +91,11 @@ msgstr "deshacer" msgid "with" msgstr "con" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "no compartido" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "borrado" @@ -128,27 +128,35 @@ msgstr "La subida del archivo está en proceso. Salir de la página ahora cancel msgid "Invalid name, '/' is not allowed." msgstr "Nombre no válido, '/' no está permitido." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Tamaño" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Modificado" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "carpeta" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "carpetas" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "archivo" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "archivos" diff --git a/l10n/es/files_versions.po b/l10n/es/files_versions.po index fa6563948b7..ff439b92792 100644 --- a/l10n/es/files_versions.po +++ b/l10n/es/files_versions.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" -"PO-Revision-Date: 2012-09-17 00:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 00:30+0000\n" +"Last-Translator: juanman \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" @@ -34,8 +34,8 @@ msgstr "Esto eliminará todas las versiones guardadas como copia de seguridad de #: templates/settings.php:3 msgid "Files Versioning" -msgstr "" +msgstr "Versionado de archivos" #: templates/settings.php:4 msgid "Enable" -msgstr "" +msgstr "Habilitar" diff --git a/l10n/es/settings.po b/l10n/es/settings.po index c8a6f5b67c8..6657754d3c8 100644 --- a/l10n/es/settings.po +++ b/l10n/es/settings.po @@ -17,9 +17,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:03+0200\n" -"PO-Revision-Date: 2012-09-17 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 00:32+0000\n" +"Last-Translator: juanman \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" @@ -44,7 +44,7 @@ msgstr "El grupo ya existe" msgid "Unable to add group" msgstr "No se pudo añadir el grupo" -#: ajax/enableapp.php:13 +#: ajax/enableapp.php:14 msgid "Could not enable app. " msgstr "No puedo habilitar la app." @@ -125,7 +125,7 @@ msgstr "Cron" #: templates/admin.php:37 msgid "Execute one task with each page loaded" -msgstr "" +msgstr "Ejecutar una tarea con cada página cargada" #: templates/admin.php:43 msgid "" @@ -141,7 +141,7 @@ msgstr "" #: templates/admin.php:56 msgid "Sharing" -msgstr "" +msgstr "Compartir" #: templates/admin.php:61 msgid "Enable Share API" diff --git a/l10n/et_EE/files.po b/l10n/et_EE/files.po index a2e851dd2f1..047952b5cf8 100644 --- a/l10n/et_EE/files.po +++ b/l10n/et_EE/files.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-12 02:01+0200\n" -"PO-Revision-Date: 2012-09-11 10:21+0000\n" -"Last-Translator: Rivo Zängov \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:01+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" @@ -80,7 +80,7 @@ msgstr "loobu" msgid "replaced" msgstr "asendatud" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "tagasi" @@ -88,11 +88,11 @@ msgstr "tagasi" msgid "with" msgstr "millega" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "jagamata" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "kustutatud" @@ -125,27 +125,35 @@ msgstr "Faili üleslaadimine on töös. Lehelt lahkumine katkestab selle ülesl msgid "Invalid name, '/' is not allowed." msgstr "Vigane nimi, '/' pole lubatud." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Suurus" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Muudetud" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "kaust" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "kausta" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "fail" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "faili" diff --git a/l10n/eu/files.po b/l10n/eu/files.po index 2cd338beb74..c90216557e3 100644 --- a/l10n/eu/files.po +++ b/l10n/eu/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: 2012-09-09 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 19:20+0000\n" -"Last-Translator: asieriko \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:01+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" @@ -81,7 +81,7 @@ msgstr "ezeztatu" msgid "replaced" msgstr "ordeztua" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "desegin" @@ -89,11 +89,11 @@ msgstr "desegin" msgid "with" msgstr "honekin" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "Ez partekatuta" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "ezabatuta" @@ -126,27 +126,35 @@ msgstr "Fitxategien igoera martxan da. Orria orain uzteak igoera ezeztatutko du. msgid "Invalid name, '/' is not allowed." msgstr "Baliogabeko izena, '/' ezin da erabili. " -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Tamaina" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Aldatuta" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "karpeta" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "Karpetak" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "fitxategia" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "fitxategiak" diff --git a/l10n/eu_ES/files.po b/l10n/eu_ES/files.po index 0b6110c70d7..24b986c0404 100644 --- a/l10n/eu_ES/files.po +++ b/l10n/eu_ES/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" "MIME-Version: 1.0\n" @@ -79,7 +79,7 @@ msgstr "" msgid "replaced" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "" @@ -87,11 +87,11 @@ msgstr "" msgid "with" msgstr "" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "" @@ -124,27 +124,35 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "" diff --git a/l10n/fa/files.po b/l10n/fa/files.po index 37b2cc70c39..d189e3addff 100644 --- a/l10n/fa/files.po +++ b/l10n/fa/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: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00: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" @@ -82,7 +82,7 @@ msgstr "لغو" msgid "replaced" msgstr "جایگزین‌شده" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "بازگشت" @@ -90,11 +90,11 @@ msgstr "بازگشت" msgid "with" msgstr "همراه" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "حذف شده" @@ -127,27 +127,35 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "نام نامناسب '/' غیرفعال است" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "اندازه" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "تغییر یافته" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "پوشه" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "پوشه ها" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "پرونده" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "پرونده ها" diff --git a/l10n/fi/files.po b/l10n/fi/files.po index 1d569839df6..6326b9d2c5b 100644 --- a/l10n/fi/files.po +++ b/l10n/fi/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (http://www.transifex.com/projects/p/owncloud/language/fi/)\n" "MIME-Version: 1.0\n" @@ -79,7 +79,7 @@ msgstr "" msgid "replaced" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "" @@ -87,11 +87,11 @@ msgstr "" msgid "with" msgstr "" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "" @@ -124,27 +124,35 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "" diff --git a/l10n/fi_FI/files.po b/l10n/fi_FI/files.po index c642c07ab82..3f9eec5f1ca 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_FI/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: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00: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" @@ -84,7 +84,7 @@ msgstr "peru" msgid "replaced" msgstr "korvattu" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "kumoa" @@ -92,11 +92,11 @@ msgstr "kumoa" msgid "with" msgstr "käyttäen" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "poistettu" @@ -129,27 +129,35 @@ msgstr "Tiedoston lähetys on meneillään. Sivulta poistuminen nyt peruu tiedos msgid "Invalid name, '/' is not allowed." msgstr "Virheellinen nimi, merkki '/' ei ole sallittu." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Koko" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Muutettu" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "kansio" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "kansiota" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "tiedosto" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "tiedostoa" diff --git a/l10n/fr/files.po b/l10n/fr/files.po index 07b87350021..6d8496dc833 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/files.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-13 02:01+0200\n" -"PO-Revision-Date: 2012-09-12 16:41+0000\n" -"Last-Translator: Romain DEP. \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -88,7 +88,7 @@ msgstr "annuler" msgid "replaced" msgstr "remplacé" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "annuler" @@ -96,11 +96,11 @@ msgstr "annuler" msgid "with" msgstr "avec" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "non partagée" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "supprimé" @@ -133,27 +133,35 @@ msgstr "L'envoi du fichier est en cours. Quitter cette page maintenant annulera msgid "Invalid name, '/' is not allowed." msgstr "Nom invalide, '/' n'est pas autorisé." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Taille" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Modifié" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "dossier" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "dossiers" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "fichier" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "fichiers" diff --git a/l10n/gl/files.po b/l10n/gl/files.po index f51ab64695b..cd392ff6bca 100644 --- a/l10n/gl/files.po +++ b/l10n/gl/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:01+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" @@ -81,7 +81,7 @@ msgstr "cancelar" msgid "replaced" msgstr "substituído" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "desfacer" @@ -89,11 +89,11 @@ msgstr "desfacer" msgid "with" msgstr "con" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "eliminado" @@ -126,27 +126,35 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "Nome non válido, '/' non está permitido." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Tamaño" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Modificado" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "cartafol" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "cartafoles" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "ficheiro" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "ficheiros" diff --git a/l10n/he/files.po b/l10n/he/files.po index 1c6d3f8f908..5a7931d12ad 100644 --- a/l10n/he/files.po +++ b/l10n/he/files.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-15 02:02+0200\n" -"PO-Revision-Date: 2012-09-14 03:53+0000\n" -"Last-Translator: Dovix Dovix \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -83,7 +83,7 @@ msgstr "" msgid "replaced" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "" @@ -91,11 +91,11 @@ msgstr "" msgid "with" msgstr "" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "" @@ -128,27 +128,35 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "שם לא חוקי, '/' אסור לשימוש." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "גודל" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "זמן שינוי" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "תקיה" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "תקיות" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "קובץ" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "קבצים" diff --git a/l10n/hi/files.po b/l10n/hi/files.po index 238575d5e47..276a0baded9 100644 --- a/l10n/hi/files.po +++ b/l10n/hi/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -79,7 +79,7 @@ msgstr "" msgid "replaced" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "" @@ -87,11 +87,11 @@ msgstr "" msgid "with" msgstr "" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "" @@ -124,27 +124,35 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "" diff --git a/l10n/hr/files.po b/l10n/hr/files.po index c7d3870a5a1..00012d604e9 100644 --- a/l10n/hr/files.po +++ b/l10n/hr/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: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00: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" @@ -82,7 +82,7 @@ msgstr "odustani" msgid "replaced" msgstr "zamjenjeno" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "vrati" @@ -90,11 +90,11 @@ msgstr "vrati" msgid "with" msgstr "sa" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "izbrisano" @@ -127,27 +127,35 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "Neispravan naziv, znak '/' nije dozvoljen." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Veličina" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Zadnja promjena" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "mapa" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "mape" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "datoteka" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "datoteke" diff --git a/l10n/hu_HU/files.po b/l10n/hu_HU/files.po index 09722e38713..b8ea72acba1 100644 --- a/l10n/hu_HU/files.po +++ b/l10n/hu_HU/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: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:01+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" @@ -82,7 +82,7 @@ msgstr "mégse" msgid "replaced" msgstr "kicserélve" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "visszavon" @@ -90,11 +90,11 @@ msgstr "visszavon" msgid "with" msgstr "-val/-vel" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "törölve" @@ -127,27 +127,35 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "Érvénytelen név, a '/' nem megengedett" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Méret" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Módosítva" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "mappa" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "mappák" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "fájl" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "fájlok" diff --git a/l10n/hy/files.po b/l10n/hy/files.po index 9a144a81309..38dddfc1bd2 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: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:01+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" @@ -79,7 +79,7 @@ msgstr "" msgid "replaced" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "" @@ -87,11 +87,11 @@ msgstr "" msgid "with" msgstr "" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "" @@ -124,27 +124,35 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "" diff --git a/l10n/ia/files.po b/l10n/ia/files.po index cdce2e1a66e..6b931f1c7d0 100644 --- a/l10n/ia/files.po +++ b/l10n/ia/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: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00: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" @@ -81,7 +81,7 @@ msgstr "" msgid "replaced" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "" @@ -89,11 +89,11 @@ msgstr "" msgid "with" msgstr "" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "" @@ -126,27 +126,35 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Dimension" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Modificate" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "" diff --git a/l10n/id/files.po b/l10n/id/files.po index 9479165468a..bde4915a6e5 100644 --- a/l10n/id/files.po +++ b/l10n/id/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: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00: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" @@ -82,7 +82,7 @@ msgstr "batalkan" msgid "replaced" msgstr "diganti" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "batal dikerjakan" @@ -90,11 +90,11 @@ msgstr "batal dikerjakan" msgid "with" msgstr "dengan" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "dihapus" @@ -127,27 +127,35 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "Kesalahan nama, '/' tidak diijinkan." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Ukuran" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Dimodifikasi" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "folder" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "folder-folder" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "berkas" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "berkas-berkas" diff --git a/l10n/id_ID/files.po b/l10n/id_ID/files.po index 813b83410c6..1ec81ead784 100644 --- a/l10n/id_ID/files.po +++ b/l10n/id_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: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (Indonesia) (http://www.transifex.com/projects/p/owncloud/language/id_ID/)\n" "MIME-Version: 1.0\n" @@ -79,7 +79,7 @@ msgstr "" msgid "replaced" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "" @@ -87,11 +87,11 @@ msgstr "" msgid "with" msgstr "" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "" @@ -124,27 +124,35 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "" diff --git a/l10n/it/files.po b/l10n/it/files.po index 0c00e3d9e91..1fbe4da1d43 100644 --- a/l10n/it/files.po +++ b/l10n/it/files.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-09 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 07:13+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:01+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" @@ -83,7 +83,7 @@ msgstr "annulla" msgid "replaced" msgstr "sostituito" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "annulla" @@ -91,11 +91,11 @@ msgstr "annulla" msgid "with" msgstr "con" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "condivisione rimossa" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "eliminati" @@ -128,27 +128,35 @@ msgstr "Caricamento del file in corso. La chiusura della pagina annullerà il ca msgid "Invalid name, '/' is not allowed." msgstr "Nome non valido" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Dimensione" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Modificato" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "cartella" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "cartelle" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "file" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "file" diff --git a/l10n/it/files_versions.po b/l10n/it/files_versions.po index 1b5c72695aa..054ddeffa7b 100644 --- a/l10n/it/files_versions.po +++ b/l10n/it/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: 2012-09-17 02:02+0200\n" -"PO-Revision-Date: 2012-09-17 00:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 05:42+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" @@ -32,8 +32,8 @@ msgstr "Ciò eliminerà tutte le versioni esistenti dei tuoi file" #: templates/settings.php:3 msgid "Files Versioning" -msgstr "" +msgstr "Controllo di versione dei file" #: templates/settings.php:4 msgid "Enable" -msgstr "" +msgstr "Abilita" diff --git a/l10n/it/settings.po b/l10n/it/settings.po index 65b4ad108b2..f63eb7de50c 100644 --- a/l10n/it/settings.po +++ b/l10n/it/settings.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:03+0200\n" -"PO-Revision-Date: 2012-09-17 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 15:51+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" @@ -41,7 +41,7 @@ msgstr "Il gruppo esiste già" msgid "Unable to add group" msgstr "Impossibile aggiungere il gruppo" -#: ajax/enableapp.php:13 +#: ajax/enableapp.php:14 msgid "Could not enable app. " msgstr "Impossibile abilitare l'applicazione." @@ -122,7 +122,7 @@ msgstr "Cron" #: templates/admin.php:37 msgid "Execute one task with each page loaded" -msgstr "" +msgstr "Esegui un'operazione per ogni pagina caricata" #: templates/admin.php:43 msgid "" @@ -134,11 +134,11 @@ msgstr "cron.php è registrato su un servizio webcron. Chiama la pagina cron.php msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "" +msgstr "Usa il servizio cron di sistema. Chiama il file cron.php nella cartella di owncloud tramite una pianificazione del cron di sistema ogni minuto." #: templates/admin.php:56 msgid "Sharing" -msgstr "" +msgstr "Condivisione" #: templates/admin.php:61 msgid "Enable Share API" diff --git a/l10n/ja_JP/files.po b/l10n/ja_JP/files.po index 6e3d70c125c..18748ab64d8 100644 --- a/l10n/ja_JP/files.po +++ b/l10n/ja_JP/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: 2012-09-10 02:02+0200\n" -"PO-Revision-Date: 2012-09-09 05:11+0000\n" -"Last-Translator: ttyn \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -81,7 +81,7 @@ msgstr "キャンセル" msgid "replaced" msgstr "置換:" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "元に戻す" @@ -89,11 +89,11 @@ msgstr "元に戻す" msgid "with" msgstr "←" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "未共有" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "削除" @@ -126,27 +126,35 @@ msgstr "ファイル転送を実行中です。今このページから移動す msgid "Invalid name, '/' is not allowed." msgstr "無効な名前、'/' は使用できません。" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "サイズ" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "更新日時" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "フォルダ" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "フォルダ" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "ファイル" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "ファイル" diff --git a/l10n/ko/files.po b/l10n/ko/files.po index 7167506ae48..7aff85c9a00 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: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00: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" @@ -81,7 +81,7 @@ msgstr "취소" msgid "replaced" msgstr "대체됨" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "복구" @@ -89,11 +89,11 @@ msgstr "복구" msgid "with" msgstr "와" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "삭제" @@ -126,27 +126,35 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "잘못된 이름, '/' 은 허용이 되지 않습니다." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "크기" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "수정됨" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "폴더" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "폴더" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "파일" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "파일" diff --git a/l10n/lb/files.po b/l10n/lb/files.po index 6e4157f7bef..d4497fcb9d2 100644 --- a/l10n/lb/files.po +++ b/l10n/lb/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: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00: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" @@ -80,7 +80,7 @@ msgstr "ofbriechen" msgid "replaced" msgstr "ersat" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "réckgängeg man" @@ -88,11 +88,11 @@ msgstr "réckgängeg man" msgid "with" msgstr "mat" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "geläscht" @@ -125,27 +125,35 @@ msgstr "File Upload am gaang. Wann's de des Säit verléiss gëtt den Upload ofg msgid "Invalid name, '/' is not allowed." msgstr "Ongültege Numm, '/' net erlaabt." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Gréisst" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Geännert" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "Dossier" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "Dossieren" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "Datei" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "Dateien" diff --git a/l10n/lt_LT/files.po b/l10n/lt_LT/files.po index d4a5701df70..8979c3ef0c8 100644 --- a/l10n/lt_LT/files.po +++ b/l10n/lt_LT/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: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00: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" @@ -81,7 +81,7 @@ msgstr "atšaukti" msgid "replaced" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "" @@ -89,11 +89,11 @@ msgstr "" msgid "with" msgstr "" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "" @@ -126,27 +126,35 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "Pavadinime negali būti naudojamas ženklas \"/\"." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Dydis" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Pakeista" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "katalogas" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "katalogai" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "failas" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "failai" diff --git a/l10n/lv/files.po b/l10n/lv/files.po index 4adbfa4bf09..71e8a9a6f0a 100644 --- a/l10n/lv/files.po +++ b/l10n/lv/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -80,7 +80,7 @@ msgstr "atcelt" msgid "replaced" msgstr "aizvietots" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "vienu soli atpakaļ" @@ -88,11 +88,11 @@ msgstr "vienu soli atpakaļ" msgid "with" msgstr "ar" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "izdzests" @@ -125,27 +125,35 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "Šis simbols '/', nav atļauts." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Izmērs" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Izmainīts" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "mape" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "mapes" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "fails" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "faili" diff --git a/l10n/mk/files.po b/l10n/mk/files.po index 7793167ca3e..6e73a80e850 100644 --- a/l10n/mk/files.po +++ b/l10n/mk/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: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -82,7 +82,7 @@ msgstr "" msgid "replaced" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "" @@ -90,11 +90,11 @@ msgstr "" msgid "with" msgstr "" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "" @@ -127,27 +127,35 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "неисправно име, '/' не е дозволено." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Големина" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Променето" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "фолдер" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "фолдери" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "датотека" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "датотеки" diff --git a/l10n/ms_MY/files.po b/l10n/ms_MY/files.po index e429d35b82f..a90cf2c2014 100644 --- a/l10n/ms_MY/files.po +++ b/l10n/ms_MY/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: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00: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" @@ -83,7 +83,7 @@ msgstr "Batal" msgid "replaced" msgstr "diganti" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "" @@ -91,11 +91,11 @@ msgstr "" msgid "with" msgstr "dengan" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "dihapus" @@ -128,27 +128,35 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "penggunaa nama tidak sah, '/' tidak dibenarkan." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Saiz" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Dimodifikasi" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "direktori" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "direktori" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "fail" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "fail" diff --git a/l10n/nb_NO/files.po b/l10n/nb_NO/files.po index 8366b5c7be0..43fafa1dd25 100644 --- a/l10n/nb_NO/files.po +++ b/l10n/nb_NO/files.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00: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" @@ -85,7 +85,7 @@ msgstr "avbryt" msgid "replaced" msgstr "erstattet" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "angre" @@ -93,11 +93,11 @@ msgstr "angre" msgid "with" msgstr "med" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "slettet" @@ -130,27 +130,35 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "Ugyldig navn, '/' er ikke tillatt. " -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Størrelse" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Endret" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "mappe" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "mapper" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "fil" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "filer" diff --git a/l10n/nl/files.po b/l10n/nl/files.po index 0a77bef2342..133873f11c4 100644 --- a/l10n/nl/files.po +++ b/l10n/nl/files.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-10 02:02+0200\n" -"PO-Revision-Date: 2012-09-09 07:08+0000\n" -"Last-Translator: Richard Bos \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -88,7 +88,7 @@ msgstr "annuleren" msgid "replaced" msgstr "vervangen" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "ongedaan maken" @@ -96,11 +96,11 @@ msgstr "ongedaan maken" msgid "with" msgstr "door" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "niet gedeeld" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "verwijderd" @@ -133,27 +133,35 @@ msgstr "Bestands upload is bezig. Wanneer de pagina nu verlaten wordt, stopt de msgid "Invalid name, '/' is not allowed." msgstr "Ongeldige naam, '/' is niet toegestaan." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Bestandsgrootte" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Laatst aangepast" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "map" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "mappen" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "bestand" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "bestanden" diff --git a/l10n/nn_NO/files.po b/l10n/nn_NO/files.po index f473b58ff41..1de3b2cbbe0 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: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00: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" @@ -81,7 +81,7 @@ msgstr "" msgid "replaced" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "" @@ -89,11 +89,11 @@ msgstr "" msgid "with" msgstr "" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "" @@ -126,27 +126,35 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Storleik" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Endra" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "" diff --git a/l10n/oc/files.po b/l10n/oc/files.po index a6f4c0b62c8..761048854ce 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: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -79,7 +79,7 @@ msgstr "" msgid "replaced" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "" @@ -87,11 +87,11 @@ msgstr "" msgid "with" msgstr "" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "" @@ -124,27 +124,35 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "" diff --git a/l10n/pl/files.po b/l10n/pl/files.po index bac8f89beef..823ad032e5b 100644 --- a/l10n/pl/files.po +++ b/l10n/pl/files.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-13 02:01+0200\n" -"PO-Revision-Date: 2012-09-12 12:39+0000\n" -"Last-Translator: Cyryl Sochacki \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:01+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -84,7 +84,7 @@ msgstr "anuluj" msgid "replaced" msgstr "zastąpione" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "wróć" @@ -92,11 +92,11 @@ msgstr "wróć" msgid "with" msgstr "z" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "Nie udostępnione" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "skasuj" @@ -129,27 +129,35 @@ msgstr "Wysyłanie pliku jest w toku. Teraz opuszczając stronę wysyłanie zost msgid "Invalid name, '/' is not allowed." msgstr "Nieprawidłowa nazwa '/' jest niedozwolone." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Rozmiar" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Czas modyfikacji" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "folder" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "foldery" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "plik" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "pliki" diff --git a/l10n/pl_PL/files.po b/l10n/pl_PL/files.po index 6b1c826da59..b8b8ccd3d0b 100644 --- a/l10n/pl_PL/files.po +++ b/l10n/pl_PL/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" @@ -79,7 +79,7 @@ msgstr "" msgid "replaced" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "" @@ -87,11 +87,11 @@ msgstr "" msgid "with" msgstr "" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "" @@ -124,27 +124,35 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "" diff --git a/l10n/pt_BR/files.po b/l10n/pt_BR/files.po index dba70ec6de2..4d5887bf525 100644 --- a/l10n/pt_BR/files.po +++ b/l10n/pt_BR/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: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:01+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" @@ -84,7 +84,7 @@ msgstr "cancelar" msgid "replaced" msgstr "substituido " -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "desfazer" @@ -92,11 +92,11 @@ msgstr "desfazer" msgid "with" msgstr "com" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "deletado" @@ -129,27 +129,35 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "Nome inválido, '/' não é permitido." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Tamanho" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Modificado" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "pasta" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "pastas" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "arquivo" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "arquivos" diff --git a/l10n/pt_PT/files.po b/l10n/pt_PT/files.po index 874fc55cb8e..adfb85dde45 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/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: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:01+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" @@ -82,7 +82,7 @@ msgstr "cancelar" msgid "replaced" msgstr "substituido" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "desfazer" @@ -90,11 +90,11 @@ msgstr "desfazer" msgid "with" msgstr "com" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "apagado" @@ -127,27 +127,35 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "nome inválido, '/' não permitido." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Tamanho" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Modificado" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "pasta" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "pastas" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "ficheiro" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "ficheiros" diff --git a/l10n/ro/core.po b/l10n/ro/core.po index 42e779595e1..a1c262c007e 100644 --- a/l10n/ro/core.po +++ b/l10n/ro/core.po @@ -6,13 +6,14 @@ # Claudiu , 2011, 2012. # Dimon Pockemon <>, 2012. # Eugen Mihalache , 2012. +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 08:30+0000\n" +"Last-Translator: g.ciprian \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" @@ -32,81 +33,81 @@ msgstr "Nici o categorie de adăugat?" msgid "This category already exists: " msgstr "Această categorie deja există:" -#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:214 templates/layout.user.php:54 templates/layout.user.php:55 msgid "Settings" msgstr "Configurări" -#: js/js.js:593 +#: js/js.js:642 msgid "January" -msgstr "" +msgstr "Ianuarie" -#: js/js.js:593 +#: js/js.js:642 msgid "February" -msgstr "" +msgstr "Februarie" -#: js/js.js:593 +#: js/js.js:642 msgid "March" -msgstr "" +msgstr "Martie" -#: js/js.js:593 +#: js/js.js:642 msgid "April" -msgstr "" +msgstr "Aprilie" -#: js/js.js:593 +#: js/js.js:642 msgid "May" -msgstr "" +msgstr "Mai" -#: js/js.js:593 +#: js/js.js:642 msgid "June" -msgstr "" +msgstr "Iunie" -#: js/js.js:594 +#: js/js.js:643 msgid "July" -msgstr "" +msgstr "Iulie" -#: js/js.js:594 +#: js/js.js:643 msgid "August" -msgstr "" +msgstr "August" -#: js/js.js:594 +#: js/js.js:643 msgid "September" -msgstr "" +msgstr "Septembrie" -#: js/js.js:594 +#: js/js.js:643 msgid "October" -msgstr "" +msgstr "Octombrie" -#: js/js.js:594 +#: js/js.js:643 msgid "November" -msgstr "" +msgstr "Noiembrie" -#: js/js.js:594 +#: js/js.js:643 msgid "December" -msgstr "" +msgstr "Decembrie" #: js/oc-dialogs.js:143 js/oc-dialogs.js:163 msgid "Cancel" -msgstr "" +msgstr "Anulare" #: js/oc-dialogs.js:159 msgid "No" -msgstr "" +msgstr "Nu" #: js/oc-dialogs.js:160 msgid "Yes" -msgstr "" +msgstr "Da" #: js/oc-dialogs.js:177 msgid "Ok" -msgstr "" +msgstr "Ok" #: js/oc-vcategories.js:68 msgid "No categories selected for deletion." -msgstr "" +msgstr "Nici o categorie selectată pentru ștergere." #: js/oc-vcategories.js:68 msgid "Error" -msgstr "" +msgstr "Eroare" #: lostpassword/index.php:26 msgid "ownCloud password reset" @@ -238,11 +239,11 @@ msgstr "Bază date" msgid "Finish setup" msgstr "Finalizează instalarea" -#: templates/layout.guest.php:42 +#: templates/layout.guest.php:36 msgid "web services under your control" msgstr "servicii web controlate de tine" -#: templates/layout.user.php:45 +#: templates/layout.user.php:39 msgid "Log out" msgstr "Ieșire" diff --git a/l10n/ro/files.po b/l10n/ro/files.po index a1551d7f5cd..bbdcca021cf 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: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00: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" @@ -82,7 +82,7 @@ msgstr "" msgid "replaced" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "" @@ -90,11 +90,11 @@ msgstr "" msgid "with" msgstr "" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "" @@ -127,27 +127,35 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Dimensiune" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Modificat" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "" diff --git a/l10n/ro/settings.po b/l10n/ro/settings.po index bf628a0ea6e..5e814151bf9 100644 --- a/l10n/ro/settings.po +++ b/l10n/ro/settings.po @@ -6,15 +6,16 @@ # Claudiu , 2011, 2012. # Dimon Pockemon <>, 2012. # Eugen Mihalache , 2012. +# , 2012. # , 2012. # , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:03+0200\n" -"PO-Revision-Date: 2012-09-17 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 08:42+0000\n" +"Last-Translator: g.ciprian \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" @@ -33,15 +34,15 @@ msgstr "Eroare de autentificare" #: ajax/creategroup.php:19 msgid "Group already exists" -msgstr "" +msgstr "Grupul există deja" #: ajax/creategroup.php:28 msgid "Unable to add group" -msgstr "" +msgstr "Nu s-a putut adăuga grupul" -#: ajax/enableapp.php:13 +#: ajax/enableapp.php:14 msgid "Could not enable app. " -msgstr "" +msgstr "Nu s-a putut activa aplicația." #: ajax/lostpassword.php:14 msgid "Email saved" @@ -61,11 +62,11 @@ msgstr "Cerere eronată" #: ajax/removegroup.php:16 msgid "Unable to delete group" -msgstr "" +msgstr "Nu s-a putut șterge grupul" #: ajax/removeuser.php:22 msgid "Unable to delete user" -msgstr "" +msgstr "Nu s-a putut șterge utilizatorul" #: ajax/setlanguage.php:18 msgid "Language changed" @@ -74,12 +75,12 @@ msgstr "Limba a fost schimbată" #: ajax/togglegroups.php:25 #, php-format msgid "Unable to add user to group %s" -msgstr "" +msgstr "Nu s-a putut adăuga utilizatorul la grupul %s" #: ajax/togglegroups.php:31 #, php-format msgid "Unable to remove user from group %s" -msgstr "" +msgstr "Nu s-a putut elimina utilizatorul din grupul %s" #: js/apps.js:18 msgid "Error" @@ -112,7 +113,7 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "" +msgstr "Directorul tău de date și fișierele tale probabil sunt accesibile prin internet. Fișierul .htaccess oferit de ownCloud nu funcționează. Îți recomandăm să configurezi server-ul tău web într-un mod în care directorul de date să nu mai fie accesibil sau mută directorul de date în afara directorului root al server-ului web." #: templates/admin.php:31 msgid "Cron" @@ -136,19 +137,19 @@ msgstr "" #: templates/admin.php:56 msgid "Sharing" -msgstr "" +msgstr "Partajare" #: templates/admin.php:61 msgid "Enable Share API" -msgstr "" +msgstr "Activare API partajare" #: templates/admin.php:62 msgid "Allow apps to use the Share API" -msgstr "" +msgstr "Permite aplicațiilor să folosească API-ul de partajare" #: templates/admin.php:67 msgid "Allow links" -msgstr "" +msgstr "Pemite legături" #: templates/admin.php:68 msgid "Allow users to share items to the public with links" @@ -156,7 +157,7 @@ msgstr "" #: templates/admin.php:73 msgid "Allow resharing" -msgstr "" +msgstr "Permite repartajarea" #: templates/admin.php:74 msgid "Allow users to share items shared with them again" @@ -164,11 +165,11 @@ msgstr "" #: templates/admin.php:79 msgid "Allow users to share with anyone" -msgstr "" +msgstr "Permite utilizatorilor să partajeze cu oricine" #: templates/admin.php:81 msgid "Allow users to only share with users in their groups" -msgstr "" +msgstr "Permite utilizatorilor să partajeze doar cu utilizatori din același grup" #: templates/admin.php:88 msgid "Log" @@ -186,7 +187,7 @@ msgid "" "licensed under the AGPL." -msgstr "" +msgstr "Dezvoltat de the comunitatea ownCloud, codul sursă este licențiat sub AGPL." #: templates/apps.php:10 msgid "Add your App" @@ -202,7 +203,7 @@ msgstr "Vizualizează pagina applicației pe apps.owncloud.com" #: templates/apps.php:30 msgid "-licensed by " -msgstr "" +msgstr "-licențiat " #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/ru/files.po b/l10n/ru/files.po index 234fbe404e5..120ca926c56 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-09 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 14:18+0000\n" -"Last-Translator: VicDeo \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:01+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" @@ -86,7 +86,7 @@ msgstr "отмена" msgid "replaced" msgstr "заменён" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "отмена" @@ -94,11 +94,11 @@ msgstr "отмена" msgid "with" msgstr "с" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "публикация отменена" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "удален" @@ -131,27 +131,35 @@ msgstr "Файл в процессе загрузки. Покинув стран msgid "Invalid name, '/' is not allowed." msgstr "Неверное имя, '/' не допускается." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Размер" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Изменён" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "папка" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "папки" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "файл" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "файлы" diff --git a/l10n/ru_RU/files.po b/l10n/ru_RU/files.po index a3844380e86..dc79d635c54 100644 --- a/l10n/ru_RU/files.po +++ b/l10n/ru_RU/files.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-14 02:01+0200\n" -"PO-Revision-Date: 2012-09-13 10:17+0000\n" -"Last-Translator: AnnaSch \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:02+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -80,7 +80,7 @@ msgstr "отменить" msgid "replaced" msgstr "заменено" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "отменить действие" @@ -88,11 +88,11 @@ msgstr "отменить действие" msgid "with" msgstr "с" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "скрытый" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "удалено" @@ -125,27 +125,35 @@ msgstr "Процесс загрузки файла. Если покинуть с msgid "Invalid name, '/' is not allowed." msgstr "Неправильное имя, '/' не допускается." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Размер" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Изменен" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "папка" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "папки" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "файл" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "файлы" diff --git a/l10n/ru_RU/settings.po b/l10n/ru_RU/settings.po index 851ca47160b..b8db3303818 100644 --- a/l10n/ru_RU/settings.po +++ b/l10n/ru_RU/settings.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:03+0200\n" -"PO-Revision-Date: 2012-09-17 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 11:10+0000\n" +"Last-Translator: AnnaSch \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -35,9 +35,9 @@ msgstr "Группа уже существует" msgid "Unable to add group" msgstr "Невозможно добавить группу" -#: ajax/enableapp.php:13 +#: ajax/enableapp.php:14 msgid "Could not enable app. " -msgstr "" +msgstr "Не удалось запустить приложение" #: ajax/lostpassword.php:14 msgid "Email saved" @@ -108,7 +108,7 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "" +msgstr "Ваш каталог данных и файлы возможно доступны из Интернета. Файл .htaccess, предоставляемый ownCloud, не работает. Мы настоятельно рекомендуем Вам настроить сервер таким образом, чтобы каталог данных был бы больше не доступен, или переместить каталог данных за пределы корневой папки веб-сервера." #: templates/admin.php:31 msgid "Cron" @@ -116,23 +116,23 @@ msgstr "Cron" #: templates/admin.php:37 msgid "Execute one task with each page loaded" -msgstr "" +msgstr "Выполняйте одну задачу на каждой загружаемой странице" #: templates/admin.php:43 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." -msgstr "" +msgstr "cron.php зарегистрирован в службе webcron. Обращайтесь к странице cron.php в корне owncloud раз в минуту по http." #: templates/admin.php:49 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "" +msgstr "Используйте системный сервис cron. Исполняйте файл cron.php в папке owncloud с помощью системы cronjob раз в минуту." #: templates/admin.php:56 msgid "Sharing" -msgstr "" +msgstr "Совместное использование" #: templates/admin.php:61 msgid "Enable Share API" @@ -140,7 +140,7 @@ msgstr "Включить разделяемые API" #: templates/admin.php:62 msgid "Allow apps to use the Share API" -msgstr "" +msgstr "Разрешить приложениям использовать Share API" #: templates/admin.php:67 msgid "Allow links" @@ -152,7 +152,7 @@ msgstr "" #: templates/admin.php:73 msgid "Allow resharing" -msgstr "" +msgstr "Разрешить повторное совместное использование" #: templates/admin.php:74 msgid "Allow users to share items shared with them again" @@ -160,11 +160,11 @@ msgstr "" #: templates/admin.php:79 msgid "Allow users to share with anyone" -msgstr "" +msgstr "Разрешить пользователям разделение с кем-либо" #: templates/admin.php:81 msgid "Allow users to only share with users in their groups" -msgstr "" +msgstr "Разрешить пользователям разделение только с пользователями в их группах" #: templates/admin.php:88 msgid "Log" @@ -182,7 +182,7 @@ msgid "" "licensed under the AGPL." -msgstr "" +msgstr "Разработанный ownCloud community, the source code is licensed under the AGPL." #: templates/apps.php:10 msgid "Add your App" @@ -214,7 +214,7 @@ msgstr "Задать вопрос" #: templates/help.php:23 msgid "Problems connecting to help database." -msgstr "" +msgstr "Проблемы, связанные с разделом Помощь базы данных" #: templates/help.php:24 msgid "Go there manually." @@ -314,7 +314,7 @@ msgstr "Другой" #: templates/users.php:80 templates/users.php:112 msgid "Group Admin" -msgstr "" +msgstr "Группа Admin" #: templates/users.php:82 msgid "Quota" diff --git a/l10n/sk_SK/files.po b/l10n/sk_SK/files.po index a9285f4547f..9730f5a8e99 100644 --- a/l10n/sk_SK/files.po +++ b/l10n/sk_SK/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: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00: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" @@ -81,7 +81,7 @@ msgstr "" msgid "replaced" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "" @@ -89,11 +89,11 @@ msgstr "" msgid "with" msgstr "" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "" @@ -126,27 +126,35 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "Chybný názov, \"/\" nie je povolené" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Veľkosť" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Upravené" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "priečinok" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "priečinky" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "súbor" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "súbory" diff --git a/l10n/sl/files.po b/l10n/sl/files.po index 4f9fad5d5fe..f6940902161 100644 --- a/l10n/sl/files.po +++ b/l10n/sl/files.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-09 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 07:24+0000\n" -"Last-Translator: Peter Peroša \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -82,7 +82,7 @@ msgstr "ekliči" msgid "replaced" msgstr "nadomeščen" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "razveljavi" @@ -90,11 +90,11 @@ msgstr "razveljavi" msgid "with" msgstr "z" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "odstranjeno iz souporabe" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "izbrisano" @@ -127,27 +127,35 @@ msgstr "Nalaganje datoteke je v teku. Če zapustite to stran zdaj, boste nalagan msgid "Invalid name, '/' is not allowed." msgstr "Neveljavno ime. Znak '/' ni dovoljen." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Velikost" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Spremenjeno" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "mapa" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "mape" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "datoteka" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "datoteke" diff --git a/l10n/sl/files_versions.po b/l10n/sl/files_versions.po index 80cae06ea86..716e97cbbd6 100644 --- a/l10n/sl/files_versions.po +++ b/l10n/sl/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: 2012-09-17 02:02+0200\n" -"PO-Revision-Date: 2012-09-17 00:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 11:09+0000\n" +"Last-Translator: Peter Peroša \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" @@ -32,8 +32,8 @@ msgstr "To bo izbrisalo vse obstoječe različice varnostnih kopij vaših datote #: templates/settings.php:3 msgid "Files Versioning" -msgstr "" +msgstr "Sledenje različicam" #: templates/settings.php:4 msgid "Enable" -msgstr "" +msgstr "Omogoči" diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index 1f1dabc9e67..729ff8c04dd 100644 --- a/l10n/sl/settings.po +++ b/l10n/sl/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: 2012-09-17 02:03+0200\n" -"PO-Revision-Date: 2012-09-17 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 11:14+0000\n" +"Last-Translator: Peter Peroša \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -37,7 +37,7 @@ msgstr "Skupina že obstaja" msgid "Unable to add group" msgstr "Ni mogoče dodati skupine" -#: ajax/enableapp.php:13 +#: ajax/enableapp.php:14 msgid "Could not enable app. " msgstr "Aplikacije ni bilo mogoče omogočiti." @@ -118,7 +118,7 @@ msgstr "Periodično opravilo" #: templates/admin.php:37 msgid "Execute one task with each page loaded" -msgstr "" +msgstr "Izvede eno opravilo z vsako naloženo stranjo." #: templates/admin.php:43 msgid "" @@ -130,11 +130,11 @@ msgstr "Datoteka cron.php je prijavljena pri enem od spletnih servisov za period msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "" +msgstr "Uporabi sistemski servis za periodična opravila. Preko sistemskega servisa pokličite datoteko cron.php, ki se nahaja v ownCloud korenski mapi, enkrat na minuto." #: templates/admin.php:56 msgid "Sharing" -msgstr "" +msgstr "Souporaba" #: templates/admin.php:61 msgid "Enable Share API" diff --git a/l10n/so/files.po b/l10n/so/files.po index f168f0b775a..331c5b9de89 100644 --- a/l10n/so/files.po +++ b/l10n/so/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Somali (http://www.transifex.com/projects/p/owncloud/language/so/)\n" "MIME-Version: 1.0\n" @@ -79,7 +79,7 @@ msgstr "" msgid "replaced" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "" @@ -87,11 +87,11 @@ msgstr "" msgid "with" msgstr "" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "" @@ -124,27 +124,35 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "" diff --git a/l10n/sr/files.po b/l10n/sr/files.po index 8874f6a4db5..f047ac6ad40 100644 --- a/l10n/sr/files.po +++ b/l10n/sr/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: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00: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" @@ -80,7 +80,7 @@ msgstr "" msgid "replaced" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "" @@ -88,11 +88,11 @@ msgstr "" msgid "with" msgstr "" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "" @@ -125,27 +125,35 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Величина" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Задња измена" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "" diff --git a/l10n/sr@latin/files.po b/l10n/sr@latin/files.po index 11f37da7d15..d99ba6a8803 100644 --- a/l10n/sr@latin/files.po +++ b/l10n/sr@latin/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: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00: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" @@ -80,7 +80,7 @@ msgstr "" msgid "replaced" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "" @@ -88,11 +88,11 @@ msgstr "" msgid "with" msgstr "" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "" @@ -125,27 +125,35 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Veličina" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Zadnja izmena" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "" diff --git a/l10n/sv/files.po b/l10n/sv/files.po index 53d2e5a81a9..510ec25e916 100644 --- a/l10n/sv/files.po +++ b/l10n/sv/files.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-09 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 12:05+0000\n" -"Last-Translator: Magnus Höglund \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:01+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" @@ -85,7 +85,7 @@ msgstr "avbryt" msgid "replaced" msgstr "ersatt" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "ångra" @@ -93,11 +93,11 @@ msgstr "ångra" msgid "with" msgstr "med" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "Ej delad" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "raderad" @@ -130,27 +130,35 @@ msgstr "Filuppladdning pågår. Lämnar du sidan så avbryts uppladdningen." msgid "Invalid name, '/' is not allowed." msgstr "Ogiltigt namn, '/' är inte tillåten." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Storlek" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Ändrad" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "mapp" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "mappar" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "fil" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "filer" diff --git a/l10n/sv/files_versions.po b/l10n/sv/files_versions.po index 0dab4ba976e..f78979b79a7 100644 --- a/l10n/sv/files_versions.po +++ b/l10n/sv/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: 2012-09-17 02:02+0200\n" -"PO-Revision-Date: 2012-09-17 00:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 07:33+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,8 +32,8 @@ msgstr "Detta kommer att radera alla befintliga säkerhetskopior av dina filer" #: templates/settings.php:3 msgid "Files Versioning" -msgstr "" +msgstr "Versionshantering av filer" #: templates/settings.php:4 msgid "Enable" -msgstr "" +msgstr "Aktivera" diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index b079b0d28f5..acbae422b28 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/settings.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:03+0200\n" -"PO-Revision-Date: 2012-09-17 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 07:31+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" @@ -41,7 +41,7 @@ msgstr "Gruppen finns redan" msgid "Unable to add group" msgstr "Kan inte lägga till grupp" -#: ajax/enableapp.php:13 +#: ajax/enableapp.php:14 msgid "Could not enable app. " msgstr "Kunde inte aktivera appen." @@ -122,7 +122,7 @@ msgstr "Cron" #: templates/admin.php:37 msgid "Execute one task with each page loaded" -msgstr "" +msgstr "Exekvera en uppgift vid varje sidladdning" #: templates/admin.php:43 msgid "" @@ -134,11 +134,11 @@ msgstr "cron.php är registrerad som en webcron-tjänst. Anropa cron.php sidan i msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "" +msgstr "Använd system-tjänsten cron. Anropa filen cron.php i ownCloud-mappen via ett cronjobb varje minut." #: templates/admin.php:56 msgid "Sharing" -msgstr "" +msgstr "Dela" #: templates/admin.php:61 msgid "Enable Share API" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index e33dd23fdef..a2ca834734a 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index b1aa09a252c..670af957c7e 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -79,7 +79,7 @@ msgstr "" msgid "replaced" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "" @@ -87,11 +87,11 @@ msgstr "" msgid "with" msgstr "" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "" @@ -124,6 +124,14 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "" +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + #: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 0df69855222..b2b36ec7a07 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index 8d42a6afa7f..17df827012e 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index 35dd588cbf5..ce17ba853f3 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index b1b3317462a..6c86a3725f6 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index 9ac5f5f69fd..3f9e5f57f24 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 98e8f618fd1..c0c8b14a7ed 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -34,7 +34,7 @@ msgstr "" msgid "Unable to add group" msgstr "" -#: ajax/enableapp.php:13 +#: ajax/enableapp.php:14 msgid "Could not enable app. " msgstr "" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 6c8fec9d6ab..97fbced0ff6 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/th_TH/files.po b/l10n/th_TH/files.po index 1ade0abea9b..81201d846b1 100644 --- a/l10n/th_TH/files.po +++ b/l10n/th_TH/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: 2012-09-09 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 03:31+0000\n" -"Last-Translator: AriesAnywhere Anywhere \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -81,7 +81,7 @@ msgstr "ยกเลิก" msgid "replaced" msgstr "แทนที่แล้ว" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "เลิกทำ" @@ -89,11 +89,11 @@ msgstr "เลิกทำ" msgid "with" msgstr "กับ" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "ยกเลิกการแชร์ข้อมูลแล้ว" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "ลบแล้ว" @@ -126,27 +126,35 @@ msgstr "การอัพโหลดไฟล์กำลังอยู่ใ msgid "Invalid name, '/' is not allowed." msgstr "ชื่อที่ใช้ไม่ถูกต้อง '/' ไม่อนุญาตให้ใช้งาน" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "ขนาด" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "ปรับปรุงล่าสุด" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "โฟลเดอร์" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "โฟลเดอร์" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "ไฟล์" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "ไฟล์" diff --git a/l10n/th_TH/files_versions.po b/l10n/th_TH/files_versions.po index 2c49fa9e76b..aa1ceaf1578 100644 --- a/l10n/th_TH/files_versions.po +++ b/l10n/th_TH/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: 2012-09-17 02:02+0200\n" -"PO-Revision-Date: 2012-09-17 00:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 05:39+0000\n" +"Last-Translator: AriesAnywhere Anywhere \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -32,8 +32,8 @@ msgstr "นี่จะเป็นลบทิ้งไฟล์รุ่นท #: templates/settings.php:3 msgid "Files Versioning" -msgstr "" +msgstr "การกำหนดเวอร์ชั่นของไฟล์" #: templates/settings.php:4 msgid "Enable" -msgstr "" +msgstr "เปิดใช้งาน" diff --git a/l10n/th_TH/settings.po b/l10n/th_TH/settings.po index 1abfb4ff29f..bc066883438 100644 --- a/l10n/th_TH/settings.po +++ b/l10n/th_TH/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: 2012-09-17 02:03+0200\n" -"PO-Revision-Date: 2012-09-17 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 05:37+0000\n" +"Last-Translator: AriesAnywhere Anywhere \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -37,7 +37,7 @@ msgstr "มีกลุ่มดังกล่าวอยู่ในระบ msgid "Unable to add group" msgstr "ไม่สามารถเพิ่มกลุ่มได้" -#: ajax/enableapp.php:13 +#: ajax/enableapp.php:14 msgid "Could not enable app. " msgstr "ไม่สามารถเปิดใช้งานแอปได้" @@ -118,7 +118,7 @@ msgstr "Cron" #: templates/admin.php:37 msgid "Execute one task with each page loaded" -msgstr "" +msgstr "ประมวลคำสั่งหนึ่งงานในแต่ละครั้งที่มีการโหลดหน้าเว็บ" #: templates/admin.php:43 msgid "" @@ -130,11 +130,11 @@ msgstr "cron.php ได้รับการลงทะเบียนแล้ msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "" +msgstr "ใช้บริการ cron จากระบบ เรียกไฟล์ cron.php ในโฟลเดอร์ owncloud ผ่านทาง cronjob ของระบบหลังจากนี้สักครู่" #: templates/admin.php:56 msgid "Sharing" -msgstr "" +msgstr "การแชร์ข้อมูล" #: templates/admin.php:61 msgid "Enable Share API" diff --git a/l10n/tr/files.po b/l10n/tr/files.po index c0a9c6b876b..5eba75eccb0 100644 --- a/l10n/tr/files.po +++ b/l10n/tr/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00: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" @@ -83,7 +83,7 @@ msgstr "iptal" msgid "replaced" msgstr "değiştirildi" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "geri al" @@ -91,11 +91,11 @@ msgstr "geri al" msgid "with" msgstr "ile" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "silindi" @@ -128,27 +128,35 @@ msgstr "Dosya yükleme işlemi sürüyor. Şimdi sayfadan ayrılırsanız işlem msgid "Invalid name, '/' is not allowed." msgstr "Geçersiz isim, '/' işaretine izin verilmiyor." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Boyut" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Değiştirilme" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "dizin" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "dizinler" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "dosya" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "dosyalar" diff --git a/l10n/uk/files.po b/l10n/uk/files.po index f81ff996742..a83100498ca 100644 --- a/l10n/uk/files.po +++ b/l10n/uk/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: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00: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" @@ -81,7 +81,7 @@ msgstr "" msgid "replaced" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "відмінити" @@ -89,11 +89,11 @@ msgstr "відмінити" msgid "with" msgstr "" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "видалені" @@ -126,27 +126,35 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "Некоректне ім'я, '/' не дозволено." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Розмір" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Змінено" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "тека" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "теки" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "файл" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "файли" diff --git a/l10n/vi/files.po b/l10n/vi/files.po index 451fc69587d..8c980541551 100644 --- a/l10n/vi/files.po +++ b/l10n/vi/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: 2012-09-11 02:02+0200\n" -"PO-Revision-Date: 2012-09-10 09:22+0000\n" -"Last-Translator: mattheu_9x \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:02+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -81,7 +81,7 @@ msgstr "hủy" msgid "replaced" msgstr "đã được thay thế" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "lùi lại" @@ -89,11 +89,11 @@ msgstr "lùi lại" msgid "with" msgstr "với" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "đã xóa" @@ -126,27 +126,35 @@ msgstr "Tập tin tải lên đang được xử lý. Nếu bạn rời khỏi t msgid "Invalid name, '/' is not allowed." msgstr "Tên không hợp lệ ,không được phép dùng '/'" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Kích cỡ" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Thay đổi" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "folder" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "folders" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "file" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "files" diff --git a/l10n/zh_CN.GB2312/core.po b/l10n/zh_CN.GB2312/core.po index 1993d8aed9a..b5a49cd5b24 100644 --- a/l10n/zh_CN.GB2312/core.po +++ b/l10n/zh_CN.GB2312/core.po @@ -4,13 +4,14 @@ # # Translators: # , 2012. +# marguerite su , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 15:26+0000\n" +"Last-Translator: marguerite su \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" @@ -30,55 +31,55 @@ msgstr "没有分类添加了?" msgid "This category already exists: " msgstr "这个分类已经存在了:" -#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:214 templates/layout.user.php:54 templates/layout.user.php:55 msgid "Settings" msgstr "设置" -#: js/js.js:593 +#: js/js.js:642 msgid "January" msgstr "一月" -#: js/js.js:593 +#: js/js.js:642 msgid "February" msgstr "二月" -#: js/js.js:593 +#: js/js.js:642 msgid "March" msgstr "三月" -#: js/js.js:593 +#: js/js.js:642 msgid "April" msgstr "四月" -#: js/js.js:593 +#: js/js.js:642 msgid "May" msgstr "五月" -#: js/js.js:593 +#: js/js.js:642 msgid "June" msgstr "六月" -#: js/js.js:594 +#: js/js.js:643 msgid "July" msgstr "七月" -#: js/js.js:594 +#: js/js.js:643 msgid "August" msgstr "八月" -#: js/js.js:594 +#: js/js.js:643 msgid "September" msgstr "九月" -#: js/js.js:594 +#: js/js.js:643 msgid "October" msgstr "十月" -#: js/js.js:594 +#: js/js.js:643 msgid "November" msgstr "十一月" -#: js/js.js:594 +#: js/js.js:643 msgid "December" msgstr "十二月" @@ -226,7 +227,7 @@ msgstr "数据库用户名" #: templates/installation.php:109 msgid "Database tablespace" -msgstr "" +msgstr "数据库表格空间" #: templates/installation.php:115 msgid "Database host" @@ -236,11 +237,11 @@ msgstr "数据库主机" msgid "Finish setup" msgstr "完成安装" -#: templates/layout.guest.php:42 +#: templates/layout.guest.php:36 msgid "web services under your control" msgstr "你控制下的网络服务" -#: templates/layout.user.php:45 +#: templates/layout.user.php:39 msgid "Log out" msgstr "注销" diff --git a/l10n/zh_CN.GB2312/files.po b/l10n/zh_CN.GB2312/files.po index 27fb4d0b39a..bbf13e6f0f2 100644 --- a/l10n/zh_CN.GB2312/files.po +++ b/l10n/zh_CN.GB2312/files.po @@ -4,12 +4,13 @@ # # Translators: # , 2012. +# marguerite su , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -54,7 +55,7 @@ msgstr "文件" #: js/fileactions.js:108 templates/index.php:62 msgid "Unshare" -msgstr "" +msgstr "取消共享" #: js/fileactions.js:110 templates/index.php:64 msgid "Delete" @@ -70,7 +71,7 @@ msgstr "替换" #: js/filelist.js:186 msgid "suggest name" -msgstr "" +msgstr "推荐名称" #: js/filelist.js:186 js/filelist.js:188 msgid "cancel" @@ -80,7 +81,7 @@ msgstr "取消" msgid "replaced" msgstr "替换过了" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "撤销" @@ -88,11 +89,11 @@ msgstr "撤销" msgid "with" msgstr "随着" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" -msgstr "" +msgstr "已取消共享" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "删除" @@ -119,33 +120,41 @@ msgstr "上传取消了" #: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "" +msgstr "文件正在上传。关闭页面会取消上传。" #: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "非法文件名,\"/\"是不被许可的" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "大小" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "修改日期" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "文件夹" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "文件夹" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "文件" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "文件" @@ -179,7 +188,7 @@ msgstr "最大的ZIP文件输入大小" #: templates/admin.php:14 msgid "Save" -msgstr "" +msgstr "保存" #: templates/index.php:7 msgid "New" diff --git a/l10n/zh_CN.GB2312/files_encryption.po b/l10n/zh_CN.GB2312/files_encryption.po index 2073826c24d..eb4ddd9c548 100644 --- a/l10n/zh_CN.GB2312/files_encryption.po +++ b/l10n/zh_CN.GB2312/files_encryption.po @@ -3,32 +3,33 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# marguerite su , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:33+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 10:51+0000\n" +"Last-Translator: marguerite su \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" "Content-Transfer-Encoding: 8bit\n" "Language: zh_CN.GB2312\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: templates/settings.php:3 msgid "Encryption" -msgstr "" +msgstr "加密" #: templates/settings.php:4 msgid "Exclude the following file types from encryption" -msgstr "" +msgstr "从加密中排除如下文件类型" #: templates/settings.php:5 msgid "None" -msgstr "" +msgstr "无" #: templates/settings.php:10 msgid "Enable Encryption" -msgstr "" +msgstr "启用加密" diff --git a/l10n/zh_CN.GB2312/files_external.po b/l10n/zh_CN.GB2312/files_external.po index 27dfa58801b..4573b7bbddf 100644 --- a/l10n/zh_CN.GB2312/files_external.po +++ b/l10n/zh_CN.GB2312/files_external.po @@ -3,80 +3,81 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# marguerite su , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:34+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 12:25+0000\n" +"Last-Translator: marguerite su \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" "Content-Transfer-Encoding: 8bit\n" "Language: zh_CN.GB2312\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: templates/settings.php:3 msgid "External Storage" -msgstr "" +msgstr "外部存储" #: templates/settings.php:7 templates/settings.php:19 msgid "Mount point" -msgstr "" +msgstr "挂载点" #: templates/settings.php:8 msgid "Backend" -msgstr "" +msgstr "后端" #: templates/settings.php:9 msgid "Configuration" -msgstr "" +msgstr "配置" #: templates/settings.php:10 msgid "Options" -msgstr "" +msgstr "选项" #: templates/settings.php:11 msgid "Applicable" -msgstr "" +msgstr "可应用" #: templates/settings.php:23 msgid "Add mount point" -msgstr "" +msgstr "添加挂载点" #: templates/settings.php:54 templates/settings.php:62 msgid "None set" -msgstr "" +msgstr "未设置" #: templates/settings.php:63 msgid "All Users" -msgstr "" +msgstr "所有用户" #: templates/settings.php:64 msgid "Groups" -msgstr "" +msgstr "群组" #: templates/settings.php:69 msgid "Users" -msgstr "" +msgstr "用户" #: templates/settings.php:77 templates/settings.php:96 msgid "Delete" -msgstr "" +msgstr "删除" #: templates/settings.php:88 msgid "SSL root certificates" -msgstr "" +msgstr "SSL 根证书" #: templates/settings.php:102 msgid "Import Root Certificate" -msgstr "" +msgstr "导入根证书" #: templates/settings.php:108 msgid "Enable User External Storage" -msgstr "" +msgstr "启用用户外部存储" #: templates/settings.php:109 msgid "Allow users to mount their own external storage" -msgstr "" +msgstr "允许用户挂载他们的外部存储" diff --git a/l10n/zh_CN.GB2312/files_sharing.po b/l10n/zh_CN.GB2312/files_sharing.po index 4fdcb4f36f6..e7446b30595 100644 --- a/l10n/zh_CN.GB2312/files_sharing.po +++ b/l10n/zh_CN.GB2312/files_sharing.po @@ -3,36 +3,37 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# marguerite su , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 10:46+0000\n" +"Last-Translator: marguerite su \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" "Content-Transfer-Encoding: 8bit\n" "Language: zh_CN.GB2312\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: templates/authenticate.php:4 msgid "Password" -msgstr "" +msgstr "密码" #: templates/authenticate.php:6 msgid "Submit" -msgstr "" +msgstr "提交" #: templates/public.php:9 templates/public.php:19 msgid "Download" -msgstr "" +msgstr "下载" #: templates/public.php:18 msgid "No preview available for" -msgstr "" +msgstr "没有预览可用于" -#: templates/public.php:23 +#: templates/public.php:25 msgid "web services under your control" -msgstr "" +msgstr "您控制的网络服务" diff --git a/l10n/zh_CN.GB2312/files_versions.po b/l10n/zh_CN.GB2312/files_versions.po index 82b317a32e1..e2016da8c6d 100644 --- a/l10n/zh_CN.GB2312/files_versions.po +++ b/l10n/zh_CN.GB2312/files_versions.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# marguerite su , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" -"PO-Revision-Date: 2012-09-17 00:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 10:51+0000\n" +"Last-Translator: marguerite su \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" @@ -19,20 +20,20 @@ msgstr "" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" -msgstr "" +msgstr "作废所有版本" #: templates/settings-personal.php:4 msgid "Versions" -msgstr "" +msgstr "版本" #: templates/settings-personal.php:7 msgid "This will delete all existing backup versions of your files" -msgstr "" +msgstr "这将删除所有您现有文件的备份版本" #: templates/settings.php:3 msgid "Files Versioning" -msgstr "" +msgstr "文件版本" #: templates/settings.php:4 msgid "Enable" -msgstr "" +msgstr "启用" diff --git a/l10n/zh_CN.GB2312/lib.po b/l10n/zh_CN.GB2312/lib.po index 541a462fb8a..4eac71c656e 100644 --- a/l10n/zh_CN.GB2312/lib.po +++ b/l10n/zh_CN.GB2312/lib.po @@ -3,123 +3,124 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# marguerite su , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-09-01 00:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 12:19+0000\n" +"Last-Translator: marguerite su \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" "Content-Transfer-Encoding: 8bit\n" "Language: zh_CN.GB2312\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:288 +#: app.php:285 msgid "Help" -msgstr "" +msgstr "帮助" -#: app.php:295 +#: app.php:292 msgid "Personal" -msgstr "" +msgstr "私人" -#: app.php:300 +#: app.php:297 msgid "Settings" -msgstr "" +msgstr "设置" -#: app.php:305 +#: app.php:302 msgid "Users" -msgstr "" +msgstr "用户" -#: app.php:312 +#: app.php:309 msgid "Apps" -msgstr "" +msgstr "程序" -#: app.php:314 +#: app.php:311 msgid "Admin" -msgstr "" +msgstr "管理员" #: files.php:280 msgid "ZIP download is turned off." -msgstr "" +msgstr "ZIP 下载已关闭" #: files.php:281 msgid "Files need to be downloaded one by one." -msgstr "" +msgstr "需要逐个下载文件。" #: files.php:281 files.php:306 msgid "Back to Files" -msgstr "" +msgstr "返回到文件" #: files.php:305 msgid "Selected files too large to generate zip file." -msgstr "" +msgstr "选择的文件太大而不能生成 zip 文件。" #: json.php:28 msgid "Application is not enabled" -msgstr "" +msgstr "应用未启用" #: json.php:39 json.php:63 json.php:75 msgid "Authentication error" -msgstr "" +msgstr "验证错误" #: json.php:51 msgid "Token expired. Please reload page." -msgstr "" +msgstr "会话过期。请刷新页面。" -#: template.php:86 +#: template.php:87 msgid "seconds ago" -msgstr "" +msgstr "秒前" -#: template.php:87 +#: template.php:88 msgid "1 minute ago" -msgstr "" +msgstr "1 分钟前" -#: template.php:88 +#: template.php:89 #, php-format msgid "%d minutes ago" -msgstr "" +msgstr "%d 分钟前" -#: template.php:91 +#: template.php:92 msgid "today" -msgstr "" +msgstr "今天" -#: template.php:92 +#: template.php:93 msgid "yesterday" -msgstr "" +msgstr "昨天" -#: template.php:93 +#: template.php:94 #, php-format msgid "%d days ago" -msgstr "" +msgstr "%d 天前" -#: template.php:94 +#: template.php:95 msgid "last month" -msgstr "" +msgstr "上个月" -#: template.php:95 +#: template.php:96 msgid "months ago" -msgstr "" +msgstr "月前" -#: template.php:96 +#: template.php:97 msgid "last year" -msgstr "" +msgstr "去年" -#: template.php:97 +#: template.php:98 msgid "years ago" -msgstr "" +msgstr "年前" #: updater.php:66 #, php-format msgid "%s is available. Get more information" -msgstr "" +msgstr "%s 不可用。获知 详情" #: updater.php:68 msgid "up to date" -msgstr "" +msgstr "最新" #: updater.php:71 msgid "updates check is disabled" -msgstr "" +msgstr "更新检测已禁用" diff --git a/l10n/zh_CN.GB2312/settings.po b/l10n/zh_CN.GB2312/settings.po index 247d5f6e3f8..d6d1b69b01e 100644 --- a/l10n/zh_CN.GB2312/settings.po +++ b/l10n/zh_CN.GB2312/settings.po @@ -4,13 +4,14 @@ # # Translators: # , 2012. +# marguerite su , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:03+0200\n" -"PO-Revision-Date: 2012-09-17 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 15:24+0000\n" +"Last-Translator: marguerite su \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" @@ -29,15 +30,15 @@ msgstr "认证错误" #: ajax/creategroup.php:19 msgid "Group already exists" -msgstr "" +msgstr "群组已存在" #: ajax/creategroup.php:28 msgid "Unable to add group" -msgstr "" +msgstr "未能添加群组" -#: ajax/enableapp.php:13 +#: ajax/enableapp.php:14 msgid "Could not enable app. " -msgstr "" +msgstr "未能启用应用" #: ajax/lostpassword.php:14 msgid "Email saved" @@ -57,11 +58,11 @@ msgstr "非法请求" #: ajax/removegroup.php:16 msgid "Unable to delete group" -msgstr "" +msgstr "未能删除群组" #: ajax/removeuser.php:22 msgid "Unable to delete user" -msgstr "" +msgstr "未能删除用户" #: ajax/setlanguage.php:18 msgid "Language changed" @@ -70,12 +71,12 @@ msgstr "语言改变了" #: ajax/togglegroups.php:25 #, php-format msgid "Unable to add user to group %s" -msgstr "" +msgstr "未能添加用户到群组 %s" #: ajax/togglegroups.php:31 #, php-format msgid "Unable to remove user from group %s" -msgstr "" +msgstr "未能将用户从群组 %s 移除" #: js/apps.js:18 msgid "Error" @@ -108,7 +109,7 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "" +msgstr "您的数据文件夹和您的文件可能可以从互联网访问。ownCloud 提供的 .htaccess 文件未工作。我们强烈建议您配置您的网络服务器,让数据文件夹不能访问,或将数据文件夹移出网络服务器文档根目录。" #: templates/admin.php:31 msgid "Cron" @@ -116,55 +117,55 @@ msgstr "定时" #: templates/admin.php:37 msgid "Execute one task with each page loaded" -msgstr "" +msgstr "在每个页面载入时执行一项任务" #: templates/admin.php:43 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." -msgstr "" +msgstr "cron.php 已作为 webcron 服务注册。owncloud 根用户将通过 http 协议每分钟调用一次 cron.php。" #: templates/admin.php:49 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "" +msgstr "使用系统 cron 服务。通过系统 cronjob 每分钟调用一次 owncloud 文件夹下的 cron.php" #: templates/admin.php:56 msgid "Sharing" -msgstr "" +msgstr "分享" #: templates/admin.php:61 msgid "Enable Share API" -msgstr "" +msgstr "启用分享 API" #: templates/admin.php:62 msgid "Allow apps to use the Share API" -msgstr "" +msgstr "允许应用使用分享 API" #: templates/admin.php:67 msgid "Allow links" -msgstr "" +msgstr "允许链接" #: templates/admin.php:68 msgid "Allow users to share items to the public with links" -msgstr "" +msgstr "允许用户使用链接与公众分享条目" #: templates/admin.php:73 msgid "Allow resharing" -msgstr "" +msgstr "允许重复分享" #: templates/admin.php:74 msgid "Allow users to share items shared with them again" -msgstr "" +msgstr "允许用户再次分享已经分享过的条目" #: templates/admin.php:79 msgid "Allow users to share with anyone" -msgstr "" +msgstr "允许用户与任何人分享" #: templates/admin.php:81 msgid "Allow users to only share with users in their groups" -msgstr "" +msgstr "只允许用户与群组内用户分享" #: templates/admin.php:88 msgid "Log" @@ -182,7 +183,7 @@ msgid "" "licensed under the AGPL." -msgstr "" +msgstr "由 ownCloud 社区开发,s源代码AGPL 许可协议发布。" #: templates/apps.php:10 msgid "Add your App" @@ -198,7 +199,7 @@ msgstr "在owncloud.com上查看应用程序" #: templates/apps.php:30 msgid "-licensed by " -msgstr "" +msgstr "授权协议 " #: templates/help.php:9 msgid "Documentation" @@ -314,7 +315,7 @@ msgstr "其他的" #: templates/users.php:80 templates/users.php:112 msgid "Group Admin" -msgstr "" +msgstr "群组管理员" #: templates/users.php:82 msgid "Quota" diff --git a/l10n/zh_CN.GB2312/user_ldap.po b/l10n/zh_CN.GB2312/user_ldap.po index 67a667a8eea..119c7188675 100644 --- a/l10n/zh_CN.GB2312/user_ldap.po +++ b/l10n/zh_CN.GB2312/user_ldap.po @@ -3,168 +3,169 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# marguerite su , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-29 02:01+0200\n" -"PO-Revision-Date: 2012-08-29 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 12:39+0000\n" +"Last-Translator: marguerite su \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" "Content-Transfer-Encoding: 8bit\n" "Language: zh_CN.GB2312\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: templates/settings.php:8 msgid "Host" -msgstr "" +msgstr "主机" #: templates/settings.php:8 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" -msgstr "" +msgstr "您可以忽略协议,除非您需要 SSL。然后用 ldaps:// 开头" #: templates/settings.php:9 msgid "Base DN" -msgstr "" +msgstr "基本判别名" #: templates/settings.php:9 msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "" +msgstr "您可以在高级选项卡中为用户和群组指定基本判别名" #: templates/settings.php:10 msgid "User DN" -msgstr "" +msgstr "用户判别名" #: templates/settings.php:10 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." -msgstr "" +msgstr "客户机用户的判别名,将用于绑定,例如 uid=agent, dc=example, dc=com。匿名访问请留空判别名和密码。" #: templates/settings.php:11 msgid "Password" -msgstr "" +msgstr "密码" #: templates/settings.php:11 msgid "For anonymous access, leave DN and Password empty." -msgstr "" +msgstr "匿名访问请留空判别名和密码。" #: templates/settings.php:12 msgid "User Login Filter" -msgstr "" +msgstr "用户登录过滤器" #: templates/settings.php:12 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." -msgstr "" +msgstr "定义尝试登录时要应用的过滤器。用 %%uid 替换登录操作中使用的用户名。" #: templates/settings.php:12 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" -msgstr "" +msgstr "使用 %%uid 占位符,例如 \"uid=%%uid\"" #: templates/settings.php:13 msgid "User List Filter" -msgstr "" +msgstr "用户列表过滤器" #: templates/settings.php:13 msgid "Defines the filter to apply, when retrieving users." -msgstr "" +msgstr "定义撷取用户时要应用的过滤器。" #: templates/settings.php:13 msgid "without any placeholder, e.g. \"objectClass=person\"." -msgstr "" +msgstr "不能使用占位符,例如 \"objectClass=person\"。" #: templates/settings.php:14 msgid "Group Filter" -msgstr "" +msgstr "群组过滤器" #: templates/settings.php:14 msgid "Defines the filter to apply, when retrieving groups." -msgstr "" +msgstr "定义撷取群组时要应用的过滤器" #: templates/settings.php:14 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." -msgstr "" +msgstr "不能使用占位符,例如 \"objectClass=posixGroup\"。" #: templates/settings.php:17 msgid "Port" -msgstr "" +msgstr "端口" #: templates/settings.php:18 msgid "Base User Tree" -msgstr "" +msgstr "基本用户树" #: templates/settings.php:19 msgid "Base Group Tree" -msgstr "" +msgstr "基本群组树" #: templates/settings.php:20 msgid "Group-Member association" -msgstr "" +msgstr "群组-成员组合" #: templates/settings.php:21 msgid "Use TLS" -msgstr "" +msgstr "使用 TLS" #: templates/settings.php:21 msgid "Do not use it for SSL connections, it will fail." -msgstr "" +msgstr "不要使用它进行 SSL 连接,会失败的。" #: templates/settings.php:22 msgid "Case insensitve LDAP server (Windows)" -msgstr "" +msgstr "大小写不敏感的 LDAP 服务器 (Windows)" #: templates/settings.php:23 msgid "Turn off SSL certificate validation." -msgstr "" +msgstr "关闭 SSL 证书校验。" #: templates/settings.php:23 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." -msgstr "" +msgstr "如果只有使用此选项才能连接,请导入 LDAP 服务器的 SSL 证书到您的 ownCloud 服务器。" #: templates/settings.php:23 msgid "Not recommended, use for testing only." -msgstr "" +msgstr "不推荐,仅供测试" #: templates/settings.php:24 msgid "User Display Name Field" -msgstr "" +msgstr "用户显示名称字段" #: templates/settings.php:24 msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "" +msgstr "用于生成用户的 ownCloud 名称的 LDAP 属性。" #: templates/settings.php:25 msgid "Group Display Name Field" -msgstr "" +msgstr "群组显示名称字段" #: templates/settings.php:25 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "" +msgstr "用于生成群组的 ownCloud 名称的 LDAP 属性。" #: templates/settings.php:27 msgid "in bytes" -msgstr "" +msgstr "以字节计" #: templates/settings.php:29 msgid "in seconds. A change empties the cache." -msgstr "" +msgstr "以秒计。修改会清空缓存。" #: templates/settings.php:30 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." -msgstr "" +msgstr "用户名请留空 (默认)。否则,请指定一个 LDAP/AD 属性。" #: templates/settings.php:32 msgid "Help" -msgstr "" +msgstr "帮助" diff --git a/l10n/zh_CN/files.po b/l10n/zh_CN/files.po index d1329bec33d..52e765ef101 100644 --- a/l10n/zh_CN/files.po +++ b/l10n/zh_CN/files.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-16 02:01+0200\n" -"PO-Revision-Date: 2012-09-15 14:55+0000\n" -"Last-Translator: hanfeng \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -82,7 +82,7 @@ msgstr "取消" msgid "replaced" msgstr "已经替换" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "撤销" @@ -90,11 +90,11 @@ msgstr "撤销" msgid "with" msgstr "随着" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "已取消分享" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "已经删除" @@ -127,27 +127,35 @@ msgstr "文件正在上传中。现在离开此页会导致上传动作被取消 msgid "Invalid name, '/' is not allowed." msgstr "非法的名称,不允许使用‘/’。" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "大小" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "修改日期" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "文件夹" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "文件夹" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "文件" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "文件" diff --git a/l10n/zh_CN/files_versions.po b/l10n/zh_CN/files_versions.po index d55e6f81120..157efc0c27b 100644 --- a/l10n/zh_CN/files_versions.po +++ b/l10n/zh_CN/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: 2012-09-17 02:02+0200\n" -"PO-Revision-Date: 2012-09-17 00:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 16:01+0000\n" +"Last-Translator: hanfeng \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -32,8 +32,8 @@ msgstr "将会删除您的文件的所有备份版本" #: templates/settings.php:3 msgid "Files Versioning" -msgstr "" +msgstr "文件版本" #: templates/settings.php:4 msgid "Enable" -msgstr "" +msgstr "开启" diff --git a/l10n/zh_CN/settings.po b/l10n/zh_CN/settings.po index 87198044279..84ab4991d17 100644 --- a/l10n/zh_CN/settings.po +++ b/l10n/zh_CN/settings.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:03+0200\n" -"PO-Revision-Date: 2012-09-17 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 15:59+0000\n" +"Last-Translator: hanfeng \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -38,7 +38,7 @@ msgstr "已存在组" msgid "Unable to add group" msgstr "不能添加组" -#: ajax/enableapp.php:13 +#: ajax/enableapp.php:14 msgid "Could not enable app. " msgstr "无法开启App" @@ -119,7 +119,7 @@ msgstr "计划任务" #: templates/admin.php:37 msgid "Execute one task with each page loaded" -msgstr "" +msgstr "每次页面加载完成后执行任务" #: templates/admin.php:43 msgid "" @@ -131,11 +131,11 @@ msgstr "cron.php已被注册到网络定时任务服务。通过http每分钟调 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "" +msgstr "使用系统定时任务服务。每分钟通过系统定时任务调用owncloud文件夹中的cron.php文件" #: templates/admin.php:56 msgid "Sharing" -msgstr "" +msgstr "分享" #: templates/admin.php:61 msgid "Enable Share API" diff --git a/l10n/zh_TW/files.po b/l10n/zh_TW/files.po index b4564768b78..de69e6ab161 100644 --- a/l10n/zh_TW/files.po +++ b/l10n/zh_TW/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: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00: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" @@ -82,7 +82,7 @@ msgstr "取消" msgid "replaced" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "" @@ -90,11 +90,11 @@ msgstr "" msgid "with" msgstr "" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "" @@ -127,27 +127,35 @@ msgstr "檔案上傳中. 離開此頁面將會取消上傳." msgid "Invalid name, '/' is not allowed." msgstr "無效的名稱, '/'是不被允許的" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "大小" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "修改" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "" diff --git a/lib/l10n/de.php b/lib/l10n/de.php index 4a567003de2..aea631aba28 100644 --- a/lib/l10n/de.php +++ b/lib/l10n/de.php @@ -14,10 +14,10 @@ "Token expired. Please reload page." => "Token abgelaufen. Bitte laden Sie die Seite neu.", "seconds ago" => "Vor wenigen Sekunden", "1 minute ago" => "Vor einer Minute", -"%d minutes ago" => "Vor %d Minuten", +"%d minutes ago" => "Vor %d Minute(n)", "today" => "Heute", "yesterday" => "Gestern", -"%d days ago" => "Vor %d Tagen", +"%d days ago" => "Vor %d Tag(en)", "last month" => "Letzten Monat", "months ago" => "Vor Monaten", "last year" => "Letztes Jahr", diff --git a/lib/l10n/zh_CN.GB2312.php b/lib/l10n/zh_CN.GB2312.php new file mode 100644 index 00000000000..4b0a5e9f4d2 --- /dev/null +++ b/lib/l10n/zh_CN.GB2312.php @@ -0,0 +1,28 @@ + "帮助", +"Personal" => "私人", +"Settings" => "设置", +"Users" => "用户", +"Apps" => "程序", +"Admin" => "管理员", +"ZIP download is turned off." => "ZIP 下载已关闭", +"Files need to be downloaded one by one." => "需要逐个下载文件。", +"Back to Files" => "返回到文件", +"Selected files too large to generate zip file." => "选择的文件太大而不能生成 zip 文件。", +"Application is not enabled" => "应用未启用", +"Authentication error" => "验证错误", +"Token expired. Please reload page." => "会话过期。请刷新页面。", +"seconds ago" => "秒前", +"1 minute ago" => "1 分钟前", +"%d minutes ago" => "%d 分钟前", +"today" => "今天", +"yesterday" => "昨天", +"%d days ago" => "%d 天前", +"last month" => "上个月", +"months ago" => "月前", +"last year" => "去年", +"years ago" => "年前", +"%s is available. Get more information" => "%s 不可用。获知 详情", +"up to date" => "最新", +"updates check is disabled" => "更新检测已禁用" +); diff --git a/settings/l10n/cs_CZ.php b/settings/l10n/cs_CZ.php index 382c2e75b3c..09859cd3c54 100644 --- a/settings/l10n/cs_CZ.php +++ b/settings/l10n/cs_CZ.php @@ -21,7 +21,10 @@ "Security Warning" => "Bezpečnostní varování", "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides 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áš adresář dat a soubory jsou pravděpodobně přístupné z internetu. Soubor .htacces, který ownCloud poskytuje nefunguje. Doporučujeme Vám abyste nastavili Váš webový server tak, aby nebylo možno přistupovat do adresáře s daty, nebo přesunuli adresář dat mimo kořenovou složku dokumentů webového 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. Call the cron.php page in the owncloud root once a minute over http." => "cron.php je registrován u služby webcron. Zavolá stránku cron.php v kořenovém adresáři owncloud každou minutu skrze http.", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Použít systémovou službu cron. Zavolat soubor cron.php ze složky owncloud pomocí systémové úlohy cron každou 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", diff --git a/settings/l10n/de.php b/settings/l10n/de.php index 83a57cc196a..a450b60b7b2 100644 --- a/settings/l10n/de.php +++ b/settings/l10n/de.php @@ -21,7 +21,10 @@ "Security Warning" => "Sicherheitshinweis", "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides 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." => "Ihr Datenverzeichnis ist möglicher Weise aus dem Internet erreichbar. Die .htaccess-Datei von OwnCloud funktioniert nicht. Wir raten Ihnen dringend, dass Sie Ihren Webserver dahingehend konfigurieren, dass Ihr Datenverzeichnis nicht länger aus dem Internet erreichbar ist, oder Sie verschieben das Datenverzeichnis außerhalb des Wurzelverzeichnisses des Webservers.", "Cron" => "Cron", +"Execute one task with each page loaded" => "Führe eine Aufgabe pro geladener Seite aus.", "cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php ist bei einem Webcron-Dienst registriert. Rufen Sie die Seite cron.php im owncloud Root minütlich per HTTP auf.", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Benutzen Sie den System-Crondienst. Rufen Sie die cron.php im owncloud-Ordner über einen System-Cronjob minütlich auf.", +"Sharing" => "Freigabe", "Enable Share API" => "Teilungs-API aktivieren", "Allow apps to use the Share API" => "Erlaubt Nutzern, die Teilungs-API zu nutzen", "Allow links" => "Links erlauben", @@ -45,7 +48,7 @@ "Answer" => "Antwort", "You use" => "Sie nutzen", "of the available" => "der verfügbaren", -"Desktop and Mobile Syncing Clients" => "Desktop- und mobile Synchronierungs-Clients", +"Desktop and Mobile Syncing Clients" => "Desktop- und mobile Clients für die Synchronisation", "Download" => "Download", "Your password got changed" => "Ihr Passwort wurde geändert.", "Unable to change your password" => "Passwort konnte nicht geändert werden", diff --git a/settings/l10n/el.php b/settings/l10n/el.php index 075734fb5f9..8dba78c8580 100644 --- a/settings/l10n/el.php +++ b/settings/l10n/el.php @@ -1,23 +1,45 @@ "Σφάλμα στην φόρτωση της λίστας από το App Store", "Authentication error" => "Σφάλμα πιστοποίησης", +"Group already exists" => "Η ομάδα υπάρχει ήδη", +"Unable to add group" => "Αδυναμία προσθήκης ομάδας", +"Could not enable app. " => "Αδυναμία ενεργοποίησης εφαρμογής ", "Email saved" => "Το Email αποθηκεύτηκε ", "Invalid email" => "Μη έγκυρο email", "OpenID Changed" => "Το OpenID άλλαξε", "Invalid request" => "Μη έγκυρο αίτημα", +"Unable to delete group" => "Αδυναμία διαγραφής ομάδας", +"Unable to delete user" => "Αδυναμία διαγραφής χρήστη", "Language changed" => "Η γλώσσα άλλαξε", +"Unable to add user to group %s" => "Αδυναμία προσθήκη χρήστη στην ομάδα %s", +"Unable to remove user from group %s" => "Αδυναμία αφαίρεσης χρήστη από την ομάδα %s", "Error" => "Σφάλμα", "Disable" => "Απενεργοποίηση", "Enable" => "Ενεργοποίηση", "Saving..." => "Αποθήκευση...", "__language_name__" => "__όνομα_γλώσσας__", "Security Warning" => "Προειδοποίηση Ασφαλείας", +"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides 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 που παρέχει το owncloud, δεν λειτουργεί. Σας συνιστούμε να ρυθμίσετε τον εξυπηρετητή σας έτσι ώστε ο κατάλογος δεδομένων να μην είναι πλεον προσβάσιμος ή μετακινήστε τον κατάλογο δεδομένων εκτός του καταλόγου document του εξυπηρετητή σας.", "Cron" => "Cron", +"Execute one task with each page loaded" => "Εκτέλεση μιας εργασίας με κάθε σελίδα που φορτώνεται", +"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "Το cron.php είναι καταχωρημένο στην υπηρεσία webcron. Να καλείται μια φορά το λεπτό η σελίδα cron.php από τον root του owncloud μέσω http", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Χρήση υπηρεσίας συστήματος cron. Να καλείται μια φορά το λεπτό, το αρχείο cron.php από τον φάκελο του owncloud μέσω του cronjob του συστήματος.", +"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 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" => "Να επιτρέπεται ο διαμοιρασμός μόνο με χρήστες της ίδιας ομάδας", "Log" => "Αρχείο καταγραφής", "More" => "Περισσότερο", +"Developed by the ownCloud community, the source code is licensed under the AGPL." => "Αναπτύχθηκε από την κοινότητα ownCloud, ο πηγαίος κώδικας είναι υπό άδεια χρήσης AGPL.", "Add your App" => "Πρόσθεσε τη δικιά σου εφαρμογή ", "Select an App" => "Επιλέξτε μια εφαρμογή", "See application page at apps.owncloud.com" => "Η σελίδα εφαρμογών στο apps.owncloud.com", +"-licensed by " => "-άδεια από ", "Documentation" => "Τεκμηρίωση", "Managing Big Files" => "Διαχείριση μεγάλων αρχείων", "Ask a question" => "Ρωτήστε μια ερώτηση", @@ -46,7 +68,7 @@ "Create" => "Δημιουργία", "Default Quota" => "Προεπιλεγμένο όριο", "Other" => "Άλλα", -"Group Admin" => "Διαχειρηστής ομάδας", +"Group Admin" => "Ομάδα Διαχειριστών", "Quota" => "Σύνολο χώρου", "Delete" => "Διαγραφή" ); diff --git a/settings/l10n/es.php b/settings/l10n/es.php index c9393994940..c71a6057b9b 100644 --- a/settings/l10n/es.php +++ b/settings/l10n/es.php @@ -21,7 +21,9 @@ "Security Warning" => "Advertencia de seguridad", "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "El directorio de datos -data- y sus archivos probablemente son accesibles desde internet. El archivo .htaccess que provee ownCloud no está funcionando. Recomendamos fuertemente que configure su servidor web de forma que el directorio de datos ya no sea accesible o mueva el directorio de datos fuera de la raíz de documentos del servidor web.", "Cron" => "Cron", +"Execute one task with each page loaded" => "Ejecutar una tarea con cada página cargada", "cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php está registrado como un servicio del webcron. Llama a la página de cron.php en la raíz de owncloud cada minuto sobre http.", +"Sharing" => "Compartir", "Enable Share API" => "Activar API de compartición", "Allow apps to use the Share API" => "Permitir a las aplicaciones usar la API de compartición", "Allow links" => "Permitir enlaces", diff --git a/settings/l10n/it.php b/settings/l10n/it.php index 6359655b55e..ae6999675be 100644 --- a/settings/l10n/it.php +++ b/settings/l10n/it.php @@ -21,7 +21,10 @@ "Security Warning" => "Avviso di sicurezza", "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides 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." => "La cartella dei dati e i tuoi file sono probabilmente accessibili da Internet.\nIl file .htaccess fornito da ownCloud non funziona. Ti consigliamo vivamente di configurare il server web in modo che la cartella dei dati non sia più accessibile e spostare la cartella fuori dalla radice del server web.", "Cron" => "Cron", +"Execute one task with each page loaded" => "Esegui un'operazione per ogni pagina caricata", "cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php è registrato su un servizio webcron. Chiama la pagina cron.php nella radice di owncloud ogni minuto su http.", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Usa il servizio cron di sistema. Chiama il file cron.php nella cartella di owncloud tramite una pianificazione del cron di sistema ogni minuto.", +"Sharing" => "Condivisione", "Enable Share API" => "Abilita API di condivisione", "Allow apps to use the Share API" => "Consenti alle applicazioni di utilizzare le API di condivisione", "Allow links" => "Consenti collegamenti", diff --git a/settings/l10n/ro.php b/settings/l10n/ro.php index e072daa9913..d4b8c1651c8 100644 --- a/settings/l10n/ro.php +++ b/settings/l10n/ro.php @@ -1,23 +1,40 @@ "Imposibil de încărcat lista din App Store", "Authentication error" => "Eroare de autentificare", +"Group already exists" => "Grupul există deja", +"Unable to add group" => "Nu s-a putut adăuga grupul", +"Could not enable app. " => "Nu s-a putut activa aplicația.", "Email saved" => "E-mail salvat", "Invalid email" => "E-mail nevalid", "OpenID Changed" => "OpenID schimbat", "Invalid request" => "Cerere eronată", +"Unable to delete group" => "Nu s-a putut șterge grupul", +"Unable to delete user" => "Nu s-a putut șterge utilizatorul", "Language changed" => "Limba a fost schimbată", +"Unable to add user to group %s" => "Nu s-a putut adăuga utilizatorul la grupul %s", +"Unable to remove user from group %s" => "Nu s-a putut elimina utilizatorul din grupul %s", "Error" => "Erroare", "Disable" => "Dezactivați", "Enable" => "Activați", "Saving..." => "Salvez...", "__language_name__" => "_language_name_", "Security Warning" => "Avertisment de securitate", +"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides 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." => "Directorul tău de date și fișierele tale probabil sunt accesibile prin internet. Fișierul .htaccess oferit de ownCloud nu funcționează. Îți recomandăm să configurezi server-ul tău web într-un mod în care directorul de date să nu mai fie accesibil sau mută directorul de date în afara directorului root al server-ului web.", "Cron" => "Cron", +"Sharing" => "Partajare", +"Enable Share API" => "Activare API partajare", +"Allow apps to use the Share API" => "Permite aplicațiilor să folosească API-ul de partajare", +"Allow links" => "Pemite legături", +"Allow resharing" => "Permite repartajarea", +"Allow users to share with anyone" => "Permite utilizatorilor să partajeze cu oricine", +"Allow users to only share with users in their groups" => "Permite utilizatorilor să partajeze doar cu utilizatori din același grup", "Log" => "Jurnal de activitate", "More" => "Mai mult", +"Developed by the ownCloud community, the source code is licensed under the AGPL." => "Dezvoltat de the comunitatea ownCloud, codul sursă este licențiat sub AGPL.", "Add your App" => "Adaugă aplicația ta", "Select an App" => "Selectează o aplicație", "See application page at apps.owncloud.com" => "Vizualizează pagina applicației pe apps.owncloud.com", +"-licensed by " => "-licențiat ", "Documentation" => "Documetație", "Managing Big Files" => "Gestionînd fișiere mari", "Ask a question" => "Întreabă", diff --git a/settings/l10n/ru_RU.php b/settings/l10n/ru_RU.php index 2b7400968a0..edf315db7cc 100644 --- a/settings/l10n/ru_RU.php +++ b/settings/l10n/ru_RU.php @@ -3,6 +3,7 @@ "Authentication error" => "Ошибка авторизации", "Group already exists" => "Группа уже существует", "Unable to add group" => "Невозможно добавить группу", +"Could not enable app. " => "Не удалось запустить приложение", "Email saved" => "Email сохранен", "Invalid email" => "Неверный email", "OpenID Changed" => "OpenID изменен", @@ -18,11 +19,21 @@ "Saving..." => "Сохранение", "__language_name__" => "__язык_имя__", "Security Warning" => "Предупреждение системы безопасности", +"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides 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, предоставляемый ownCloud, не работает. Мы настоятельно рекомендуем Вам настроить сервер таким образом, чтобы каталог данных был бы больше не доступен, или переместить каталог данных за пределы корневой папки веб-сервера.", "Cron" => "Cron", +"Execute one task with each page loaded" => "Выполняйте одну задачу на каждой загружаемой странице", +"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php зарегистрирован в службе webcron. Обращайтесь к странице cron.php в корне owncloud раз в минуту по http.", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Используйте системный сервис cron. Исполняйте файл cron.php в папке owncloud с помощью системы cronjob раз в минуту.", +"Sharing" => "Совместное использование", "Enable Share API" => "Включить разделяемые API", +"Allow apps to use the Share API" => "Разрешить приложениям использовать Share API", "Allow links" => "Предоставить ссылки", +"Allow resharing" => "Разрешить повторное совместное использование", +"Allow users to share with anyone" => "Разрешить пользователям разделение с кем-либо", +"Allow users to only share with users in their groups" => "Разрешить пользователям разделение только с пользователями в их группах", "Log" => "Вход", "More" => "Подробнее", +"Developed by the ownCloud community, the source code is licensed under the AGPL." => "Разработанный ownCloud community, the source code is licensed under the AGPL.", "Add your App" => "Добавить Ваше приложение", "Select an App" => "Выбрать приложение", "See application page at apps.owncloud.com" => "Обратитесь к странице приложений на apps.owncloud.com", @@ -30,6 +41,7 @@ "Documentation" => "Документация", "Managing Big Files" => "Управление большими файлами", "Ask a question" => "Задать вопрос", +"Problems connecting to help database." => "Проблемы, связанные с разделом Помощь базы данных", "Go there manually." => "Сделать вручную.", "Answer" => "Ответ", "You use" => "Вы используете", @@ -54,6 +66,7 @@ "Create" => "Создать", "Default Quota" => "Квота по умолчанию", "Other" => "Другой", +"Group Admin" => "Группа Admin", "Quota" => "квота", "Delete" => "Удалить" ); diff --git a/settings/l10n/sl.php b/settings/l10n/sl.php index b15a70aef1d..6e3cd22ce08 100644 --- a/settings/l10n/sl.php +++ b/settings/l10n/sl.php @@ -21,7 +21,10 @@ "Security Warning" => "Varnostno opozorilo", "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides 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." => "Vaša mapa data in vaše datoteke so verjetno vsem dostopne preko interneta. Datoteka .htaccess vključena v ownCloud ni omogočena. Močno vam priporočamo, da nastavite vaš spletni strežnik tako, da mapa data ne bo več na voljo vsem, ali pa jo preselite izven korenske mape spletnega strežnika.", "Cron" => "Periodično opravilo", +"Execute one task with each page loaded" => "Izvede eno opravilo z vsako naloženo stranjo.", "cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "Datoteka cron.php je prijavljena pri enem od spletnih servisov za periodična opravila. Preko protokola http pokličite datoteko cron.php, ki se nahaja v ownCloud korenski mapi, enkrat na minuto.", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Uporabi sistemski servis za periodična opravila. Preko sistemskega servisa pokličite datoteko cron.php, ki se nahaja v ownCloud korenski mapi, enkrat na minuto.", +"Sharing" => "Souporaba", "Enable Share API" => "Omogoči API souporabe", "Allow apps to use the Share API" => "Aplikacijam dovoli uporabo API-ja souporabe", "Allow links" => "Dovoli povezave", diff --git a/settings/l10n/sv.php b/settings/l10n/sv.php index 88865020444..c944cd09937 100644 --- a/settings/l10n/sv.php +++ b/settings/l10n/sv.php @@ -21,7 +21,10 @@ "Security Warning" => "Säkerhetsvarning", "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides 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 datamapp och dina filer kan möjligen vara nåbara från internet. Filen .htaccess som ownCloud tillhandahåller fungerar inte. Vi rekommenderar starkt att du ställer in din webbserver på ett sätt så att datamappen inte är nåbar. Alternativt att ni flyttar datamappen utanför webbservern.", "Cron" => "Cron", +"Execute one task with each page loaded" => "Exekvera en uppgift vid varje sidladdning", "cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php är registrerad som en webcron-tjänst. Anropa cron.php sidan i ownCloud en gång i minuten över HTTP.", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Använd system-tjänsten cron. Anropa filen cron.php i ownCloud-mappen via ett cronjobb 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", "Allow links" => "Tillåt länkar", diff --git a/settings/l10n/th_TH.php b/settings/l10n/th_TH.php index 074c8128b41..128e548cc9f 100644 --- a/settings/l10n/th_TH.php +++ b/settings/l10n/th_TH.php @@ -21,7 +21,10 @@ "Security Warning" => "คำเตือนเกี่ยวกับความปลอดภัย", "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides 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 ที่ ownCloud มีให้ไม่สามารถทำงานได้อย่างเหมาะสม เราขอแนะนำให้คุณกำหนดค่าเว็บเซิร์ฟเวอร์ใหม่ในรูปแบบที่ไดเร็กทอรี่เก็บข้อมูลไม่สามารถเข้าถึงได้อีกต่อไป หรือคุณได้ย้ายไดเร็กทอรี่ที่ใช้เก็บข้อมูลไปอยู่ภายนอกตำแหน่ง root ของเว็บเซิร์ฟเวอร์แล้ว", "Cron" => "Cron", +"Execute one task with each page loaded" => "ประมวลคำสั่งหนึ่งงานในแต่ละครั้งที่มีการโหลดหน้าเว็บ", "cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php ได้รับการลงทะเบียนแล้วกับเว็บผู้ให้บริการ webcron เรียกหน้าเว็บ cron.php ที่ตำแหน่ง root ของ owncloud หลังจากนี้สักครู่ผ่านทาง http", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "ใช้บริการ cron จากระบบ เรียกไฟล์ cron.php ในโฟลเดอร์ owncloud ผ่านทาง cronjob ของระบบหลังจากนี้สักครู่", +"Sharing" => "การแชร์ข้อมูล", "Enable Share API" => "เปิดใช้งาน API สำหรับคุณสมบัติแชร์ข้อมูล", "Allow apps to use the Share API" => "อนุญาตให้แอปฯสามารถใช้ API สำหรับแชร์ข้อมูลได้", "Allow links" => "อนุญาตให้ใช้งานลิงก์ได้", diff --git a/settings/l10n/zh_CN.GB2312.php b/settings/l10n/zh_CN.GB2312.php index 83111beb10e..760336c9323 100644 --- a/settings/l10n/zh_CN.GB2312.php +++ b/settings/l10n/zh_CN.GB2312.php @@ -1,23 +1,45 @@ "不能从App Store 中加载列表", "Authentication error" => "认证错误", +"Group already exists" => "群组已存在", +"Unable to add group" => "未能添加群组", +"Could not enable app. " => "未能启用应用", "Email saved" => "Email 保存了", "Invalid email" => "非法Email", "OpenID Changed" => "OpenID 改变了", "Invalid request" => "非法请求", +"Unable to delete group" => "未能删除群组", +"Unable to delete user" => "未能删除用户", "Language changed" => "语言改变了", +"Unable to add user to group %s" => "未能添加用户到群组 %s", +"Unable to remove user from group %s" => "未能将用户从群组 %s 移除", "Error" => "错误", "Disable" => "禁用", "Enable" => "启用", "Saving..." => "保存中...", "__language_name__" => "Chinese", "Security Warning" => "安全警告", +"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides 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 提供的 .htaccess 文件未工作。我们强烈建议您配置您的网络服务器,让数据文件夹不能访问,或将数据文件夹移出网络服务器文档根目录。", "Cron" => "定时", +"Execute one task with each page loaded" => "在每个页面载入时执行一项任务", +"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php 已作为 webcron 服务注册。owncloud 根用户将通过 http 协议每分钟调用一次 cron.php。", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob 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 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" => "只允许用户与群组内用户分享", "Log" => "日志", "More" => "更多", +"Developed by the ownCloud community, the source code is licensed under the AGPL." => "由 ownCloud 社区开发,s源代码AGPL 许可协议发布。", "Add your App" => "添加你的应用程序", "Select an App" => "选择一个程序", "See application page at apps.owncloud.com" => "在owncloud.com上查看应用程序", +"-licensed by " => "授权协议 ", "Documentation" => "文档", "Managing Big Files" => "管理大文件", "Ask a question" => "提一个问题", @@ -46,6 +68,7 @@ "Create" => "新建", "Default Quota" => "默认限额", "Other" => "其他的", +"Group Admin" => "群组管理员", "Quota" => "限额", "Delete" => "删除" ); diff --git a/settings/l10n/zh_CN.php b/settings/l10n/zh_CN.php index 89115f6c7c1..13f2f38925d 100644 --- a/settings/l10n/zh_CN.php +++ b/settings/l10n/zh_CN.php @@ -21,7 +21,10 @@ "Security Warning" => "安全警告", "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides 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提供的.htaccess文件未生效。我们强烈建议您配置服务器,以使数据文件夹不可被访问,或者将数据文件夹移到web服务器以外。", "Cron" => "计划任务", +"Execute one task with each page loaded" => "每次页面加载完成后执行任务", "cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php已被注册到网络定时任务服务。通过http每分钟调用owncloud根目录的cron.php网页。", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "使用系统定时任务服务。每分钟通过系统定时任务调用owncloud文件夹中的cron.php文件", +"Sharing" => "分享", "Enable Share API" => "开启共享API", "Allow apps to use the Share API" => "允许 应用 使用共享API", "Allow links" => "允许连接", -- GitLab From b765e883f32bf271c77e4bfa4a88249e5b371a1a Mon Sep 17 00:00:00 2001 From: Sam Tuke Date: Tue, 18 Sep 2012 14:35:27 +0100 Subject: [PATCH 016/489] Fixed bug with duplicate entries for installed 3rd party apps in settings->apps Added method getAppstoreApps to OC_App Added minor documentation --- lib/app.php | 72 ++++++++++++++++++++++++---- settings/ajax/apps/ocs.php | 5 +- settings/apps.php | 93 +++++++++++++++++++++++++++++++------ settings/js/apps.js | 14 ------ settings/templates/apps.php | 2 +- 5 files changed, 146 insertions(+), 40 deletions(-) diff --git a/lib/app.php b/lib/app.php index 28f1f16ebaf..328095a90d2 100755 --- a/lib/app.php +++ b/lib/app.php @@ -397,10 +397,11 @@ class OC_App{ } /** - * @brief Read app metadata from the info.xml file + * @brief Read all app metadata from the info.xml file * @param string $appid id of the app or the path of the info.xml file * @param boolean path (optional) * @returns array + * @note all data is read from info.xml, not just pre-defined fields */ public static function getAppInfo($appid,$path=false) { if($path) { @@ -442,6 +443,7 @@ class OC_App{ } } self::$appInfo[$appid]=$data; + return $data; } @@ -521,20 +523,74 @@ class OC_App{ } /** - * get a list of all apps in the apps folder + * @brief: get a list of all apps in the apps folder + * @return array or app names (string IDs) + * @todo: change the name of this method to getInstalledApps, which is more accurate */ public static function getAllApps() { + $apps=array(); - foreach(OC::$APPSROOTS as $apps_dir) { - $dh=opendir($apps_dir['path']); - while($file=readdir($dh)) { - if($file[0]!='.' and is_file($apps_dir['path'].'/'.$file.'/appinfo/app.php')) { - $apps[]=$file; + + foreach ( OC::$APPSROOTS as $apps_dir ) { + + $dh = opendir( $apps_dir['path'] ); + + while( $file = readdir( $dh ) ) { + + if ( + $file[0] != '.' + and is_file($apps_dir['path'].'/'.$file.'/appinfo/app.php' ) + ) { + + $apps[] = $file; + } + } + } + return $apps; } + + /** + * @brief: get a list of all apps on apps.owncloud.com + * @return multi-dimensional array of apps. Keys: id, name, type, typename, personid, license, detailpage, preview, changed, description + */ + public static function getAppstoreApps( $filter = 'approved' ) { + + $catagoryNames = OC_OCSClient::getCategories(); + + if ( is_array( $catagoryNames ) ) { + + $categories = array_keys( $catagoryNames ); + + $page = 0; + + $remoteApps = OC_OCSClient::getApplications( $categories, $page, $filter ); + + $app1 = array(); + + $i = 0; + + foreach ( $remoteApps as $app ) { + + $app1[$i] = $app; + + $app1[$i]['author'] = $app['personid']; + + $app1[$i]['ocs_id'] = $app['id']; + + $app1[$i]['internal'] = $app1[$i]['active'] = 0; + + $i++; + + } + + } + + return $app1; + } /** * check if the app need updating and update when needed @@ -640,7 +696,7 @@ class OC_App{ } }else{ OC_Log::write('core', 'Can\'t get app storage, app '.$appid.' not enabled', OC_Log::ERROR); - false; + return false; } } } diff --git a/settings/ajax/apps/ocs.php b/settings/ajax/apps/ocs.php index 71cb046fc8d..a15b21e1744 100644 --- a/settings/ajax/apps/ocs.php +++ b/settings/ajax/apps/ocs.php @@ -11,7 +11,7 @@ require_once '../../../lib/base.php'; OC_JSON::checkAdminUser(); -$l = OC_L10N::get('core'); +$l = OC_L10N::get('settings'); if(OC_Config::getValue('appstoreenabled', true)==false) { OCP\JSON::success(array('type' => 'external', 'data' => array())); @@ -62,5 +62,4 @@ if(is_array($catagoryNames)) { } } -OCP\JSON::success(array('type' => 'external', 'data' => $apps)); - +OCP\JSON::success(array('type' => 'external', 'data' => $apps)); \ No newline at end of file diff --git a/settings/apps.php b/settings/apps.php index e613814fe94..1481f6fc4ad 100644 --- a/settings/apps.php +++ b/settings/apps.php @@ -29,45 +29,110 @@ OC_Util::addStyle( "settings", "settings" ); OC_Util::addScript( "settings", "apps" ); OC_App::setActiveNavigationEntry( "core_apps" ); -$registeredApps=OC_App::getAllApps(); -$apps=array(); +$installedApps = OC_App::getAllApps(); -//TODO which apps do we want to blacklist and how do we integrate blacklisting with the multi apps folder feature -$blacklist=array('files');//we dont want to show configuration for these +$remoteApps = OC_App::getAppstoreApps(); -foreach($registeredApps as $app) { - if(array_search($app, $blacklist)===false) { +//$remoteApps = array(); + +//TODO which apps do we want to blacklist and how do we integrate blacklisting with the multi apps folder feature? + +$blacklist = array('files');//we dont want to show configuration for these + +$appList = array(); + +foreach ( $installedApps as $app ) { + + if ( array_search( $app, $blacklist ) === false ) { + $info=OC_App::getAppInfo($app); + if (!isset($info['name'])) { + OC_Log::write('core', 'App id "'.$app.'" has no name in appinfo', OC_Log::ERROR); + continue; + } - $active=(OC_Appconfig::getValue($app, 'enabled', 'no')=='yes')?true:false; - $info['active']=$active; + + if ( OC_Appconfig::getValue( $app, 'enabled', 'no') == 'yes' ) { + + $active = true; + + } else { + + $active = false; + + } + + $info['active'] = $active; + if(isset($info['shipped']) and ($info['shipped']=='true')) { + $info['internal']=true; + $info['internallabel']='Internal App'; + }else{ + $info['internal']=false; + $info['internallabel']='3rd Party App'; + } - $info['preview']='trans.png'; - $info['version']=OC_App::getAppVersion($app); - $apps[]=$info; + + $info['preview'] = 'trans.png'; + + $info['version'] = OC_App::getAppVersion($app); + + $appList[] = $info; + } } -function app_sort($a, $b) { +// Remove duplicates +foreach ( $appList as $app ) { + + foreach ( $remoteApps AS $key => $remote ) { + + if ( + $app['name'] == $remote['name'] + // To set duplicate detection to use OCS ID instead of string name, + // enable this code, remove the line of code above, + // and add [ID] to info.xml of each 3rd party app: + // OR $app['ocs_id'] == $remote['ocs_id'] + ) { + + unset( $remoteApps[$key]); + + } + + } + +} + +$combinedApps = array_merge( $appList, $remoteApps ); + +function app_sort( $a, $b ) { + if ($a['active'] != $b['active']) { + return $b['active'] - $a['active']; + } + return strcmp($a['name'], $b['name']); + } -usort($apps, 'app_sort'); + +usort( $combinedApps, 'app_sort' ); $tmpl = new OC_Template( "settings", "apps", "user" ); -$tmpl->assign('apps', $apps, false); + +$tmpl->assign('apps', $combinedApps, false); + $appid = (isset($_GET['appid'])?strip_tags($_GET['appid']):''); + $tmpl->assign('appid', $appid); $tmpl->printPage(); diff --git a/settings/js/apps.js b/settings/js/apps.js index bb931232763..4ffbc41f22c 100644 --- a/settings/js/apps.js +++ b/settings/js/apps.js @@ -7,18 +7,6 @@ OC.Settings = OC.Settings || {}; OC.Settings.Apps = OC.Settings.Apps || { - loadOCS:function() { - $.getJSON(OC.filePath('settings', 'ajax', 'apps/ocs.php'), function(jsondata) { - if(jsondata.status == 'success'){ - var apps = jsondata.data; - $.each(apps, function(b, appdata) { - OC.Settings.Apps.insertApp(appdata); - }); - } else { - OC.dialogs.alert(jsondata.data.message, t('core', 'Error')); - } - }); - }, loadApp:function(app) { var page = $('#rightcontent'); page.find('p.license').show(); @@ -137,6 +125,4 @@ $(document).ready(function(){ $('#leftcontent').animate({scrollTop: $(item).offset().top-70}, 'slow','swing'); } } - - OC.Settings.Apps.loadOCS(); }); diff --git a/settings/templates/apps.php b/settings/templates/apps.php index 30f919ac753..0662148ebf2 100644 --- a/settings/templates/apps.php +++ b/settings/templates/apps.php @@ -11,7 +11,7 @@
    -
  • data-id="" +
  • data-id="" data-type="" data-installed="1"> @@ -24,13 +26,6 @@ echo '/>'; ?> - diff --git a/lib/base.php b/lib/base.php index f6afc8fe2fe..5a2decc6f63 100644 --- a/lib/base.php +++ b/lib/base.php @@ -240,6 +240,8 @@ class OC{ OC_Util::addScript( "jquery-tipsy" ); OC_Util::addScript( "oc-dialogs" ); OC_Util::addScript( "js" ); + // request protection token MUST be defined after the jquery library but before any $('document').ready() + OC_Util::addScript( "requesttoken" ); OC_Util::addScript( "eventsource" ); OC_Util::addScript( "config" ); //OC_Util::addScript( "multiselect" ); diff --git a/lib/template.php b/lib/template.php index 0987d6f0d88..0033683b66f 100644 --- a/lib/template.php +++ b/lib/template.php @@ -155,9 +155,6 @@ class OC_Template{ $this->renderas = $renderas; $this->application = $app; $this->vars = array(); - if($renderas == 'user') { - $this->vars['requesttoken'] = OC_Util::callRegister(); - } $parts = explode('/', $app); // fix translation when app is something like core/lostpassword $this->l10n = OC_L10N::get($parts[0]); header('X-Frame-Options: Sameorigin'); @@ -372,9 +369,6 @@ class OC_Template{ if( $this->renderas ) { $page = new OC_TemplateLayout($this->renderas); - if($this->renderas == 'user') { - $page->assign('requesttoken', $this->vars['requesttoken']); - } // Add custom headers $page->assign('headers',$this->headers, false); diff --git a/lib/util.php b/lib/util.php index 08412464254..b14664c9d1e 100755 --- a/lib/util.php +++ b/lib/util.php @@ -416,14 +416,29 @@ class OC_Util { } /** - * @brief Register an get/post call. This is important to prevent CSRF attacks - * Todo: Write howto + * @brief Static lifespan (in seconds) when a request token expires. + * @see OC_Util::callRegister() + * @see OC_Util::isCallRegistered() + * @description + * Also required for the client side to compute the piont in time when to + * request a fresh token. The client will do so when nearly 97% of the + * timespan coded here has expired. + */ + public static $callLifespan = 3600; // 3600 secs = 1 hour + + /** + * @brief Register an get/post call. Important to prevent CSRF attacks. + * @todo Write howto: CSRF protection guide * @return $token Generated token. + * @description + * Creates a 'request token' (random) and stores it inside the session. + * Ever subsequent (ajax) request must use such a valid token to succeed, + * otherwise the request will be denied as a protection against CSRF. + * The tokens expire after a fixed lifespan. + * @see OC_Util::$callLifespan + * @see OC_Util::isCallRegistered() */ public static function callRegister() { - //mamimum time before token exires - $maxtime=(60*60); // 1 hour - // generate a random token. $token=mt_rand(1000,9000).mt_rand(1000,9000).mt_rand(1000,9000); @@ -436,7 +451,8 @@ class OC_Util { foreach($_SESSION as $key=>$value) { // search all tokens in the session if(substr($key,0,12)=='requesttoken') { - if($value+$maxtime Date: Fri, 28 Sep 2012 16:38:25 +0200 Subject: [PATCH 122/489] Added name to AUTHORS file, since mentioned in file headers. --- AUTHORS | 1 + 1 file changed, 1 insertion(+) diff --git a/AUTHORS b/AUTHORS index b701c768d3e..2404174e328 100644 --- a/AUTHORS +++ b/AUTHORS @@ -17,6 +17,7 @@ ownCloud is written by: Sam Tuke Simon Birnbach Lukas Reschke + Christian Reiner … With help from many libraries and frameworks including: -- GitLab From f8f73e267550a46dc4cee5b025e83d786cddb1bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Fri, 28 Sep 2012 17:44:46 +0200 Subject: [PATCH 123/489] move back to "lastmodified" property since "getlastmodified" is protected by webdav --- lib/connector/sabre/node.php | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/lib/connector/sabre/node.php b/lib/connector/sabre/node.php index 55fa0dfde66..bdedc030c88 100644 --- a/lib/connector/sabre/node.php +++ b/lib/connector/sabre/node.php @@ -23,8 +23,7 @@ abstract class OC_Connector_Sabre_Node implements Sabre_DAV_INode, Sabre_DAV_IProperties { const GETETAG_PROPERTYNAME = '{DAV:}getetag'; - const LASTMODIFIED_PROPERTYNAME_DEPRECIATED = '{DAV:}lastmodified'; // FIXME: keept for the transition period, can be removed for OC 4.5.1 if the sync client update too - const GETLASTMODIFIED_PROPERTYNAME = '{DAV:}getlastmodified'; + const LASTMODIFIED_PROPERTYNAME = '{DAV:}lastmodified'; /** * The path to the current node @@ -151,9 +150,8 @@ abstract class OC_Connector_Sabre_Node implements Sabre_DAV_INode, Sabre_DAV_IPr $query->execute( array( OC_User::getUser(), $this->path, $propertyName )); } } - else { //FIXME: first part of if statement can be removed together with the LASTMODIFIED_PROPERTYNAME_DEPRECIATED const for oc4.5.1 if the sync client was updated too - if( strcmp( $propertyName, self::LASTMODIFIED_PROPERTYNAME_DEPRECIATED) === 0 || - strcmp( $propertyName, self::GETLASTMODIFIED_PROPERTYNAME) === 0 ) { + else { + if( strcmp( $propertyName, self::LASTMODIFIED_PROPERTYNAME) === 0 ) { $this->touch($propertyValue); } else { if(!array_key_exists( $propertyName, $existing )) { -- GitLab From 35357f3afb90dec1d0a9755ab0e0504a916c5e5a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Fri, 28 Sep 2012 18:47:54 +0200 Subject: [PATCH 124/489] etag has to be removed after version rollback to enable the sync client to detect the changes (bug #1829) --- lib/filesystem.php | 9 ++++++++- lib/filesystemview.php | 3 ++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/lib/filesystem.php b/lib/filesystem.php index f5c10923b32..5516aae3976 100644 --- a/lib/filesystem.php +++ b/lib/filesystem.php @@ -521,12 +521,19 @@ class OC_Filesystem{ return self::$defaultInstance->hasUpdated($path,$time); } - static public function removeETagHook($params) { + static public function removeETagHook($params, $root = false) { if (isset($params['path'])) { $path=$params['path']; } else { $path=$params['oldpath']; } + + if (root) { // reduce path to the required part of it (no 'username/files') + $fakeRootView = new OC_FilesystemView($root); + $count = 1; + $path=str_replace(OC_App::getStorage("files")->getAbsolutePath(), "", $fakeRootView->getAbsolutePath($path), $count); + } + $path = self::normalizePath($path); OC_Connector_Sabre_Node::removeETagPropertyForPath($path); } diff --git a/lib/filesystemview.php b/lib/filesystemview.php index 02a0b521053..2950ced5f9e 100644 --- a/lib/filesystemview.php +++ b/lib/filesystemview.php @@ -451,8 +451,9 @@ class OC_FilesystemView { OC_Filesystem::signal_post_write, array( OC_Filesystem::signal_param_path => $path2) ); - } else { // no real copy, file comes from somewhere else, e.g. version rollback -> just update the file cache without all the other post_write actions + } else { // no real copy, file comes from somewhere else, e.g. version rollback -> just update the file cache and the webdav properties without all the other post_write actions OC_FileCache_Update::update($path2, $this->fakeRoot); + OC_Filesystem::removeETagHook(array("path" => $path2), $this->fakeRoot); } return $result; } -- GitLab From 71454b1bca0accd1ab5d7628169d4714bb682030 Mon Sep 17 00:00:00 2001 From: Christian Reiner Date: Fri, 28 Sep 2012 18:57:20 +0200 Subject: [PATCH 125/489] Fix to preserve backward compatibility for apps creating static links containing the request token (currently the contacts app and maybe some 3rd party implementations) --- core/templates/layout.user.php | 4 ++-- lib/template.php | 8 ++++++++ 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/core/templates/layout.user.php b/core/templates/layout.user.php index 25af64c8d57..b6d8a7604a2 100644 --- a/core/templates/layout.user.php +++ b/core/templates/layout.user.php @@ -11,8 +11,8 @@ var oc_webroot = ''; var oc_appswebroots = ; var oc_current_user = ''; - var oc_requesttoken = ''; - var oc_requestlifespan = ''; + var oc_requesttoken = ''; + var oc_requestlifespan = ''; diff --git a/lib/template.php b/lib/template.php index 0033683b66f..681b3f0b140 100644 --- a/lib/template.php +++ b/lib/template.php @@ -155,6 +155,10 @@ class OC_Template{ $this->renderas = $renderas; $this->application = $app; $this->vars = array(); + if($renderas == 'user') { + $this->vars['requesttoken'] = OC_Util::callRegister(); + $this->vars['requestlifespan'] = OC_Util::$callLifespan; + } $parts = explode('/', $app); // fix translation when app is something like core/lostpassword $this->l10n = OC_L10N::get($parts[0]); header('X-Frame-Options: Sameorigin'); @@ -369,6 +373,10 @@ class OC_Template{ if( $this->renderas ) { $page = new OC_TemplateLayout($this->renderas); + if($this->renderas == 'user') { + $page->assign('requesttoken', $this->vars['requesttoken']); + $page->assign('requestlifespan', $this->vars['requestlifespan']); + } // Add custom headers $page->assign('headers',$this->headers, false); -- GitLab From 8f278817709debe1faebafc08493735f78dbfb9d Mon Sep 17 00:00:00 2001 From: scambra Date: Fri, 28 Sep 2012 19:53:18 +0200 Subject: [PATCH 126/489] undo interpolation in js for 4.5 --- core/js/share.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/core/js/share.js b/core/js/share.js index 36ee39d8eab..6c26fed18be 100644 --- a/core/js/share.js +++ b/core/js/share.js @@ -127,9 +127,9 @@ OC.Share={ var html = '
  • '+t('core', 'Shared in %s with %s', item, shareWith)+'
  • '; + var html = '
  • '+t('core', 'Shared in')+' '+item+' '+t('core', 'with')+' '+shareWith+'
  • '; $('#shareWithList').prepend(html); } } else { -- GitLab From 4e2f575938f565f8589919bece6f6da3c313eb4d Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Fri, 28 Sep 2012 17:03:00 +0200 Subject: [PATCH 127/489] Correctly fix oc-1016 and fix downloading of files --- apps/files/js/fileactions.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files/js/fileactions.js b/apps/files/js/fileactions.js index f579d8530ed..e184cbfa915 100644 --- a/apps/files/js/fileactions.js +++ b/apps/files/js/fileactions.js @@ -157,7 +157,7 @@ $(document).ready(function(){ var downloadScope = 'file'; } FileActions.register(downloadScope,'Download', OC.PERMISSION_READ, function(){return OC.imagePath('core','actions/download');},function(filename){ - window.location=OC.filePath('files', 'ajax', 'download.php') + encodeURIComponent('?files='+encodeURIComponent(filename)+'&dir='+encodeURIComponent($('#dir').val())); + window.location=OC.filePath('files', 'ajax', 'download.php') + '&files='+encodeURIComponent(filename)+'&dir='+encodeURIComponent($('#dir').val()); }); }); -- GitLab From 366ae6661d1491a7f3db9396e05fd24034a1102f Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Fri, 28 Sep 2012 21:14:59 +0200 Subject: [PATCH 128/489] Simplify generating file search results --- lib/search/provider/file.php | 22 ++++++++++++++-------- 1 file changed, 14 insertions(+), 8 deletions(-) diff --git a/lib/search/provider/file.php b/lib/search/provider/file.php index 135e40667b1..e21278f3918 100644 --- a/lib/search/provider/file.php +++ b/lib/search/provider/file.php @@ -5,29 +5,35 @@ class OC_Search_Provider_File extends OC_Search_Provider{ $files=OC_FileCache::search($query,true); $results=array(); foreach($files as $fileData) { - $file=$fileData['path']; - $mime=$fileData['mimetype']; + $path = $fileData['path']; + $mime = $fileData['mimetype']; + + $name = basename($path); + $text = ''; if($mime=='httpd/unix-directory') { - $results[]=new OC_Search_Result(basename($file),'',OC_Helper::linkTo( 'files', 'index.php', array('dir' => $file)),'Files'); + $link = OC_Helper::linkTo( 'files', 'index.php', array('dir' => $path)); + $type = 'Files'; }else{ - $mimeBase=$fileData['mimepart']; + $link = OC_Helper::linkTo( 'files', 'download.php', array('file' => $path)); + $mimeBase = $fileData['mimepart']; switch($mimeBase) { case 'audio': break; case 'text': - $results[]=new OC_Search_Result(basename($file),'',OC_Helper::linkTo( 'files', 'download.php', array('file' => $file) ),'Text'); + $type = 'Text'; break; case 'image': - $results[]=new OC_Search_Result(basename($file),'',OC_Helper::linkTo( 'files', 'download.php', array('file' => $file) ),'Images'); + $type = 'Images'; break; default: if($mime=='application/xml') { - $results[]=new OC_Search_Result(basename($file),'',OC_Helper::linkTo( 'files', 'download.php', array('file' => $file) ),'Text'); + $type = 'Text'; }else{ - $results[]=new OC_Search_Result(basename($file),'',OC_Helper::linkTo( 'files', 'download.php', array('file' => $file) ),'Files'); + $type = 'Files'; } } } + $results[] = new OC_Search_Result($name, $text, $link, $type); } return $results; } -- GitLab From 24bb7d16b7f72b4438cb79ff55cdcd4a5e66062c Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Fri, 28 Sep 2012 21:15:48 +0200 Subject: [PATCH 129/489] urlencode filename in search result, fixes problems with & in name --- lib/search/provider/file.php | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/search/provider/file.php b/lib/search/provider/file.php index e21278f3918..21fae0c1ce5 100644 --- a/lib/search/provider/file.php +++ b/lib/search/provider/file.php @@ -10,6 +10,7 @@ class OC_Search_Provider_File extends OC_Search_Provider{ $name = basename($path); $text = ''; + $path = urlencode($path); if($mime=='httpd/unix-directory') { $link = OC_Helper::linkTo( 'files', 'index.php', array('dir' => $path)); $type = 'Files'; -- GitLab From 9c4c79346c9ccedc72998566911d1cd2a2e57b11 Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Fri, 28 Sep 2012 21:18:11 +0200 Subject: [PATCH 130/489] After selecting a search result, hide the results --- search/js/result.js | 1 + 1 file changed, 1 insertion(+) diff --git a/search/js/result.js b/search/js/result.js index aaecde08c6b..cadb0d0aabe 100644 --- a/search/js/result.js +++ b/search/js/result.js @@ -25,6 +25,7 @@ OC.search.showResults=function(results){ parent.load(OC.filePath('search','templates','part.results.php'),function(){ OC.search.showResults.loaded=true; $('#searchresults').click(function(event){ + OC.search.hide(); event.stopPropagation(); }); $(window).click(function(event){ -- GitLab From fed34aecfa5b36c031ed754ed245549aa4a4194b Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Fri, 28 Sep 2012 21:30:06 +0200 Subject: [PATCH 131/489] Fix syntax error in removeETagHook --- lib/filesystem.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/filesystem.php b/lib/filesystem.php index 5516aae3976..c6da826a339 100644 --- a/lib/filesystem.php +++ b/lib/filesystem.php @@ -527,13 +527,13 @@ class OC_Filesystem{ } else { $path=$params['oldpath']; } - - if (root) { // reduce path to the required part of it (no 'username/files') - $fakeRootView = new OC_FilesystemView($root); - $count = 1; + + if ($root) { // reduce path to the required part of it (no 'username/files') + $fakeRootView = new OC_FilesystemView($root); + $count = 1; $path=str_replace(OC_App::getStorage("files")->getAbsolutePath(), "", $fakeRootView->getAbsolutePath($path), $count); } - + $path = self::normalizePath($path); OC_Connector_Sabre_Node::removeETagPropertyForPath($path); } -- GitLab From 22d22d19c079f54cf12a6b47981c22aa1432346d Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Fri, 28 Sep 2012 22:27:52 +0200 Subject: [PATCH 132/489] Do urlencoding in linkTo functions --- apps/files_versions/templates/history.php | 2 +- core/lostpassword/index.php | 2 +- lib/helper.php | 4 +++- lib/public/util.php | 2 ++ lib/search/provider/file.php | 1 - lib/util.php | 2 +- 6 files changed, 8 insertions(+), 5 deletions(-) diff --git a/apps/files_versions/templates/history.php b/apps/files_versions/templates/history.php index 99bc153a816..854d032da62 100644 --- a/apps/files_versions/templates/history.php +++ b/apps/files_versions/templates/history.php @@ -22,7 +22,7 @@ if( isset( $_['message'] ) ) { foreach ( $_['versions'] as $v ) { echo ' '; echo OCP\Util::formatDate( doubleval($v['version']) ); - echo ' Revert

    '; + echo ' Revert

    '; if ( $v['cur'] ) { echo ' (Current)'; } echo '

    '; } diff --git a/core/lostpassword/index.php b/core/lostpassword/index.php index 3f58b03c982..8da86d5a360 100644 --- a/core/lostpassword/index.php +++ b/core/lostpassword/index.php @@ -17,7 +17,7 @@ if (isset($_POST['user'])) { OC_Preferences::setValue($_POST['user'], 'owncloud', 'lostpassword', $token); $email = OC_Preferences::getValue($_POST['user'], 'settings', 'email', ''); if (!empty($email) and isset($_POST['sectoken']) and isset($_SESSION['sectoken']) and ($_POST['sectoken']==$_SESSION['sectoken']) ) { - $link = OC_Helper::linkToAbsolute('core/lostpassword', 'resetpassword.php', array('user' => urlencode($_POST['user']), 'token' => $token)); + $link = OC_Helper::linkToAbsolute('core/lostpassword', 'resetpassword.php', array('user' => $_POST['user'], 'token' => $token)); $tmpl = new OC_Template('core/lostpassword', 'email'); $tmpl->assign('link', $link, false); $msg = $tmpl->fetchPage(); diff --git a/lib/helper.php b/lib/helper.php index 3bb30620175..8e578735f4c 100644 --- a/lib/helper.php +++ b/lib/helper.php @@ -33,6 +33,7 @@ class OC_Helper { * @param string $app app * @param string $file file * @param array $args array with param=>value, will be appended to the returned url + * The value of $args will be urlencoded * @return string the url * * Returns a url to the given app and file. @@ -65,7 +66,7 @@ class OC_Helper { if (!empty($args)) { $urlLinkTo .= '?'; foreach($args as $k => $v) { - $urlLinkTo .= '&'.$k.'='.$v; + $urlLinkTo .= '&'.$k.'='.urlencode($v); } } @@ -77,6 +78,7 @@ class OC_Helper { * @param string $app app * @param string $file file * @param array $args array with param=>value, will be appended to the returned url + * The value of $args will be urlencoded * @return string the url * * Returns a absolute url to the given app and file. diff --git a/lib/public/util.php b/lib/public/util.php index 747448e62eb..38da7e82171 100644 --- a/lib/public/util.php +++ b/lib/public/util.php @@ -116,6 +116,7 @@ class Util { * @param $app app * @param $file file * @param $args array with param=>value, will be appended to the returned url + * The value of $args will be urlencoded * @returns the url * * Returns a absolute url to the given app and file. @@ -151,6 +152,7 @@ class Util { * @param $app app * @param $file file * @param $args array with param=>value, will be appended to the returned url + * The value of $args will be urlencoded * @returns the url * * Returns a url to the given app and file. diff --git a/lib/search/provider/file.php b/lib/search/provider/file.php index 21fae0c1ce5..e21278f3918 100644 --- a/lib/search/provider/file.php +++ b/lib/search/provider/file.php @@ -10,7 +10,6 @@ class OC_Search_Provider_File extends OC_Search_Provider{ $name = basename($path); $text = ''; - $path = urlencode($path); if($mime=='httpd/unix-directory') { $link = OC_Helper::linkTo( 'files', 'index.php', array('dir' => $path)); $type = 'Files'; diff --git a/lib/util.php b/lib/util.php index 777cb7a28fc..d1227f8379c 100755 --- a/lib/util.php +++ b/lib/util.php @@ -344,7 +344,7 @@ class OC_Util { public static function checkLoggedIn() { // Check if we are a user if( !OC_User::isLoggedIn()) { - header( 'Location: '.OC_Helper::linkToAbsolute( '', 'index.php', array('redirect_url' => urlencode($_SERVER["REQUEST_URI"])))); + header( 'Location: '.OC_Helper::linkToAbsolute( '', 'index.php', array('redirect_url' => $_SERVER["REQUEST_URI"]))); exit(); } } -- GitLab From 27bd9df02766bac94068cbc27134ab0dfb10ac4c Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Fri, 28 Sep 2012 23:36:09 +0200 Subject: [PATCH 133/489] [tx-robot] updated from transifex --- apps/files/l10n/el.php | 13 ++ apps/files/l10n/es.php | 12 ++ apps/files/l10n/es_AR.php | 12 ++ apps/files/l10n/oc.php | 71 +++++++++++ apps/files_sharing/l10n/el.php | 2 + apps/files_versions/l10n/el.php | 1 + apps/files_versions/l10n/zh_CN.php | 1 + apps/user_ldap/l10n/el.php | 1 + core/l10n/cs_CZ.php | 4 - core/l10n/da.php | 4 - core/l10n/de.php | 4 - core/l10n/el.php | 21 +++ core/l10n/es.php | 5 +- core/l10n/es_AR.php | 5 +- core/l10n/eu.php | 4 - core/l10n/fi_FI.php | 1 - core/l10n/fr.php | 4 - core/l10n/it.php | 4 - core/l10n/ja_JP.php | 4 - core/l10n/nl.php | 4 - core/l10n/oc.php | 85 +++++++++++++ core/l10n/pl.php | 1 - core/l10n/pt_BR.php | 4 - core/l10n/ro.php | 4 - core/l10n/ru_RU.php | 1 - core/l10n/sv.php | 4 - core/l10n/th_TH.php | 4 - core/l10n/zh_CN.php | 4 - l10n/af/core.po | 28 ++-- l10n/ar/core.po | 28 ++-- l10n/ar_SA/core.po | 28 ++-- l10n/bg_BG/core.po | 28 ++-- l10n/ca/core.po | 28 ++-- l10n/cs_CZ/core.po | 38 +++--- l10n/da/core.po | 36 +++--- l10n/de/core.po | 38 +++--- l10n/el/core.po | 66 +++++----- l10n/el/files.po | 70 +++++----- l10n/el/files_sharing.po | 10 +- l10n/el/files_versions.po | 9 +- l10n/el/user_ldap.po | 9 +- l10n/eo/core.po | 28 ++-- l10n/es/core.po | 38 +++--- l10n/es/files.po | 68 +++++----- l10n/es_AR/core.po | 38 +++--- l10n/es_AR/files.po | 68 +++++----- l10n/et_EE/core.po | 28 ++-- l10n/eu/core.po | 36 +++--- l10n/eu_ES/core.po | 28 ++-- l10n/fa/core.po | 28 ++-- l10n/fi/core.po | 28 ++-- l10n/fi_FI/core.po | 30 +++-- l10n/fr/core.po | 38 +++--- l10n/gl/core.po | 28 ++-- l10n/he/core.po | 28 ++-- l10n/hi/core.po | 28 ++-- l10n/hr/core.po | 28 ++-- l10n/hu_HU/core.po | 28 ++-- l10n/hy/core.po | 28 ++-- l10n/ia/core.po | 28 ++-- l10n/id/core.po | 28 ++-- l10n/id_ID/core.po | 28 ++-- l10n/it/core.po | 38 +++--- l10n/ja_JP/core.po | 38 +++--- l10n/ko/core.po | 28 ++-- l10n/lb/core.po | 28 ++-- l10n/lt_LT/core.po | 28 ++-- l10n/lv/core.po | 28 ++-- l10n/mk/core.po | 28 ++-- l10n/ms_MY/core.po | 28 ++-- l10n/nb_NO/core.po | 28 ++-- l10n/nl/core.po | 36 +++--- l10n/nn_NO/core.po | 28 ++-- l10n/oc/core.po | 191 ++++++++++++++-------------- l10n/oc/files.po | 183 +++++++++++++------------- l10n/oc/settings.po | 125 +++++++++--------- l10n/pl/core.po | 30 +++-- l10n/pl_PL/core.po | 28 ++-- l10n/pt_BR/core.po | 38 +++--- l10n/pt_PT/core.po | 28 ++-- l10n/ro/core.po | 38 +++--- l10n/ru/core.po | 28 ++-- l10n/ru_RU/core.po | 30 +++-- l10n/sk_SK/core.po | 28 ++-- l10n/sl/core.po | 28 ++-- l10n/so/core.po | 28 ++-- l10n/sr/core.po | 28 ++-- l10n/sr@latin/core.po | 28 ++-- l10n/sv/core.po | 38 +++--- l10n/templates/core.pot | 26 ++-- 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_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/th_TH/core.po | 38 +++--- l10n/tr/core.po | 28 ++-- l10n/uk/core.po | 28 ++-- l10n/vi/core.po | 28 ++-- l10n/zh_CN.GB2312/core.po | 28 ++-- l10n/zh_CN/core.po | 38 +++--- l10n/zh_CN/files_versions.po | 8 +- l10n/zh_TW/core.po | 28 ++-- settings/l10n/oc.php | 61 +++++++++ 107 files changed, 1718 insertions(+), 1250 deletions(-) create mode 100644 apps/files/l10n/oc.php create mode 100644 core/l10n/oc.php create mode 100644 settings/l10n/oc.php diff --git a/apps/files/l10n/el.php b/apps/files/l10n/el.php index 1206f7f0f48..ef2e0bd2839 100644 --- a/apps/files/l10n/el.php +++ b/apps/files/l10n/el.php @@ -9,6 +9,7 @@ "Files" => "Αρχεία", "Unshare" => "Διακοπή κοινής χρήσης", "Delete" => "Διαγραφή", +"Rename" => "Μετονομασία", "already exists" => "υπάρχει ήδη", "replace" => "αντικατέστησε", "suggest name" => "συνιστώμενο όνομα", @@ -22,6 +23,8 @@ "Unable to upload your file as it is a directory or has 0 bytes" => "Αδυναμία στην μεταφόρτωση του αρχείου σας αφού είναι φάκελος ή έχει 0 bytes", "Upload Error" => "Σφάλμα Μεταφόρτωσης", "Pending" => "Εκκρεμεί", +"1 file uploading" => "1 αρχείο ανεβαίνει", +"files uploading" => "αρχεία ανεβαίνουν", "Upload cancelled." => "Η μεταφόρτωση ακυρώθηκε.", "File upload is in progress. Leaving the page now will cancel the upload." => "Η μεταφόρτωση του αρχείου βρίσκεται σε εξέλιξη. Έξοδος από την σελίδα τώρα θα ακυρώσει την μεταφόρτωση.", "Invalid name, '/' is not allowed." => "Μη έγκυρο όνομα, το '/' δεν επιτρέπεται.", @@ -34,6 +37,16 @@ "folders" => "φάκελοι", "file" => "αρχείο", "files" => "αρχεία", +"seconds ago" => "δευτερόλεπτα πριν", +"minute ago" => "λεπτό πριν", +"minutes ago" => "λεπτά πριν", +"today" => "σήμερα", +"yesterday" => "χτες", +"days ago" => "μέρες πριν", +"last month" => "τελευταίο μήνα", +"months ago" => "μήνες πριν", +"last year" => "τελευταίο χρόνο", +"years ago" => "χρόνια πριν", "File handling" => "Διαχείριση αρχείων", "Maximum upload size" => "Μέγιστο μέγεθος μεταφόρτωσης", "max. possible: " => "μέγιστο δυνατό:", diff --git a/apps/files/l10n/es.php b/apps/files/l10n/es.php index 7e92576fe11..3837cf49f99 100644 --- a/apps/files/l10n/es.php +++ b/apps/files/l10n/es.php @@ -23,6 +23,8 @@ "Unable to upload your file as it is a directory or has 0 bytes" => "No ha sido posible subir tu archivo porque es un directorio o tiene 0 bytes", "Upload Error" => "Error al subir el archivo", "Pending" => "Pendiente", +"1 file uploading" => "subiendo 1 archivo", +"files uploading" => "archivos subiendo", "Upload cancelled." => "Subida cancelada.", "File upload is in progress. Leaving the page now will cancel the upload." => "La subida del archivo está en proceso. Salir de la página ahora cancelará la subida.", "Invalid name, '/' is not allowed." => "Nombre no válido, '/' no está permitido.", @@ -35,6 +37,16 @@ "folders" => "carpetas", "file" => "archivo", "files" => "archivos", +"seconds ago" => "hace segundos", +"minute ago" => "minuto", +"minutes ago" => "hace minutos", +"today" => "hoy", +"yesterday" => "ayer", +"days ago" => "días", +"last month" => "mes pasado", +"months ago" => "hace meses", +"last year" => "año pasado", +"years ago" => "hace años", "File handling" => "Tratamiento de archivos", "Maximum upload size" => "Tamaño máximo de subida", "max. possible: " => "máx. posible:", diff --git a/apps/files/l10n/es_AR.php b/apps/files/l10n/es_AR.php index f3290ef4e3c..e94a904327c 100644 --- a/apps/files/l10n/es_AR.php +++ b/apps/files/l10n/es_AR.php @@ -23,6 +23,8 @@ "Unable to upload your file as it is a directory or has 0 bytes" => "No fue posible subir tu archivo porque es un directorio o su tamaño es 0 bytes", "Upload Error" => "Error al subir el archivo", "Pending" => "Pendiente", +"1 file uploading" => "Subiendo 1 archivo", +"files uploading" => "Subiendo archivos", "Upload cancelled." => "La subida fue cancelada", "File upload is in progress. Leaving the page now will cancel the upload." => "La subida del archivo está en proceso. Si salís de la página ahora, la subida se cancelará.", "Invalid name, '/' is not allowed." => "Nombre no válido, '/' no está permitido.", @@ -35,6 +37,16 @@ "folders" => "carpetas", "file" => "archivo", "files" => "archivos", +"seconds ago" => "segundos atrás", +"minute ago" => "hace un minuto", +"minutes ago" => "minutos atrás", +"today" => "hoy", +"yesterday" => "ayer", +"days ago" => "días atrás", +"last month" => "el mes pasado", +"months ago" => "meses atrás", +"last year" => "el año pasado", +"years ago" => "años atrás", "File handling" => "Tratamiento de archivos", "Maximum upload size" => "Tamaño máximo de subida", "max. possible: " => "máx. posible:", diff --git a/apps/files/l10n/oc.php b/apps/files/l10n/oc.php new file mode 100644 index 00000000000..3f70761e903 --- /dev/null +++ b/apps/files/l10n/oc.php @@ -0,0 +1,71 @@ + "Amontcargament capitat, pas d'errors", +"The uploaded file exceeds the upload_max_filesize directive in php.ini" => "Lo fichièr amontcargat es tròp bèl per la directiva «upload_max_filesize » del php.ini", +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Lo fichièr amontcargat es mai gròs que la directiva «MAX_FILE_SIZE» especifiada dins lo formulari HTML", +"The uploaded file was only partially uploaded" => "Lo fichièr foguèt pas completament amontcargat", +"No file was uploaded" => "Cap de fichièrs son estats amontcargats", +"Missing a temporary folder" => "Un dorsièr temporari manca", +"Failed to write to disk" => "L'escriptura sul disc a fracassat", +"Files" => "Fichièrs", +"Unshare" => "Non parteja", +"Delete" => "Escafa", +"Rename" => "Torna nomenar", +"already exists" => "existís jà", +"replace" => "remplaça", +"suggest name" => "nom prepausat", +"cancel" => "anulla", +"replaced" => "remplaçat", +"undo" => "defar", +"with" => "amb", +"unshared" => "Non partejat", +"deleted" => "escafat", +"generating ZIP-file, it may take some time." => "Fichièr ZIP a se far, aquò pòt trigar un briu.", +"Unable to upload your file as it is a directory or has 0 bytes" => "Impossible d'amontcargar lo teu fichièr qu'es un repertòri o que ten pas que 0 octet.", +"Upload Error" => "Error d'amontcargar", +"Pending" => "Al esperar", +"1 file uploading" => "1 fichièr al amontcargar", +"files uploading" => "fichièrs al amontcargar", +"Upload cancelled." => "Amontcargar anullat.", +"File upload is in progress. Leaving the page now will cancel the upload." => "Un amontcargar es a se far. Daissar aquesta pagina ara tamparà lo cargament. ", +"Invalid name, '/' is not allowed." => "Nom invalid, '/' es pas permis.", +"files scanned" => "Fichièr explorat", +"error while scanning" => "error pendant l'exploracion", +"Name" => "Nom", +"Size" => "Talha", +"Modified" => "Modificat", +"folder" => "Dorsièr", +"folders" => "Dorsièrs", +"file" => "fichièr", +"files" => "fichièrs", +"seconds ago" => "secondas", +"minute ago" => "minuta", +"minutes ago" => "minutas", +"today" => "uèi", +"yesterday" => "ièr", +"days ago" => "jorns", +"last month" => "mes passat", +"months ago" => "meses", +"last year" => "an passat", +"years ago" => "ans", +"File handling" => "Manejament de fichièr", +"Maximum upload size" => "Talha maximum d'amontcargament", +"max. possible: " => "max. possible: ", +"Needed for multi-file and folder downloads." => "Requesit per avalcargar gropat de fichièrs e dorsièr", +"Enable ZIP-download" => "Activa l'avalcargament de ZIP", +"0 is unlimited" => "0 es pas limitat", +"Maximum input size for ZIP files" => "Talha maximum de dintrada per fichièrs ZIP", +"Save" => "Enregistra", +"New" => "Nòu", +"Text file" => "Fichièr de tèxte", +"Folder" => "Dorsièr", +"From url" => "Dempuèi l'URL", +"Upload" => "Amontcarga", +"Cancel upload" => " Anulla l'amontcargar", +"Nothing in here. Upload something!" => "Pas res dedins. Amontcarga qualquaren", +"Share" => "Parteja", +"Download" => "Avalcarga", +"Upload too large" => "Amontcargament tròp gròs", +"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Los fichièrs que sias a amontcargar son tròp pesucs per la talha maxi pel servidor.", +"Files are being scanned, please wait." => "Los fiichièrs son a èsser explorats, ", +"Current scanning" => "Exploracion en cors" +); diff --git a/apps/files_sharing/l10n/el.php b/apps/files_sharing/l10n/el.php index 3406c508e61..5305eedd484 100644 --- a/apps/files_sharing/l10n/el.php +++ b/apps/files_sharing/l10n/el.php @@ -1,6 +1,8 @@ "Συνθηματικό", "Submit" => "Καταχώρηση", +"%s shared the folder %s with you" => "%s μοιράστηκε τον φάκελο %s μαζί σας", +"%s shared the file %s with you" => "%s μοιράστηκε το αρχείο %s μαζί σας", "Download" => "Λήψη", "No preview available for" => "Δεν υπάρχει διαθέσιμη προεπισκόπηση για", "web services under your control" => "υπηρεσίες δικτύου υπό τον έλεγχό σας" diff --git a/apps/files_versions/l10n/el.php b/apps/files_versions/l10n/el.php index 24511f37395..f6b9a5b2998 100644 --- a/apps/files_versions/l10n/el.php +++ b/apps/files_versions/l10n/el.php @@ -1,5 +1,6 @@ "Λήξη όλων των εκδόσεων", +"History" => "Ιστορικό", "Versions" => "Εκδόσεις", "This will delete all existing backup versions of your files" => "Αυτό θα διαγράψει όλες τις υπάρχουσες εκδόσεις των αντιγράφων ασφαλείας των αρχείων σας", "Files Versioning" => "Εκδόσεις Αρχείων", diff --git a/apps/files_versions/l10n/zh_CN.php b/apps/files_versions/l10n/zh_CN.php index 1a5caae7dfa..48e7157c98f 100644 --- a/apps/files_versions/l10n/zh_CN.php +++ b/apps/files_versions/l10n/zh_CN.php @@ -1,5 +1,6 @@ "过期所有版本", +"History" => "历史", "Versions" => "版本", "This will delete all existing backup versions of your files" => "将会删除您的文件的所有备份版本", "Files Versioning" => "文件版本", diff --git a/apps/user_ldap/l10n/el.php b/apps/user_ldap/l10n/el.php index 1bb72f163a7..4ed7ab1f081 100644 --- a/apps/user_ldap/l10n/el.php +++ b/apps/user_ldap/l10n/el.php @@ -10,6 +10,7 @@ "Base Group Tree" => "Base Group Tree", "Group-Member association" => "Group-Member association", "Use TLS" => "Χρήση TLS", +"Not recommended, use for testing only." => "Δεν προτείνεται, χρήση μόνο για δοκιμές.", "User Display Name Field" => "User Display Name Field", "Group Display Name Field" => "Group Display Name Field", "in bytes" => "σε bytes", diff --git a/core/l10n/cs_CZ.php b/core/l10n/cs_CZ.php index 790ab423e38..f0505bed27e 100644 --- a/core/l10n/cs_CZ.php +++ b/core/l10n/cs_CZ.php @@ -25,18 +25,14 @@ "Error while sharing" => "Chyba při sdílení", "Error while unsharing" => "Chyba při rušení sdílení", "Error while changing permissions" => "Chyba při změně oprávnění", -"Shared with you and the group %s by %s" => "Sdíleno s Vámi a skupinou %s od %s", -"Shared with you by %s" => "Sdíleno s Vámi od %s", "Share with" => "Sdílet s", "Share with link" => "Sdílet s odkazem", "Password protect" => "Chránit heslem", "Password" => "Heslo", "Set expiration date" => "Nastavit datum vypršení platnosti", "Expiration date" => "Datum vypršení platnosti", -"Share via email: %s" => "Sdílet e-mailem: %s", "No people found" => "Žádní lidé nenalezeni", "Resharing is not allowed" => "Sdílení již sdílené položky není povoleno", -"Shared in %s with %s" => "Sdíleno v %s s %s", "Unshare" => "Zrušit sdílení", "can edit" => "lze upravovat", "access control" => "řízení přístupu", diff --git a/core/l10n/da.php b/core/l10n/da.php index 284a16c4524..dbc99e237cb 100644 --- a/core/l10n/da.php +++ b/core/l10n/da.php @@ -25,18 +25,14 @@ "Error while sharing" => "Fejl under deling", "Error while unsharing" => "Fejl under annullering af deling", "Error while changing permissions" => "Fejl under justering af rettigheder", -"Shared with you and the group %s by %s" => "Delt med dig og gruppen %s af %s", -"Shared with you by %s" => "Delt med dig af %s", "Share with" => "Del med", "Share with link" => "Del med link", "Password protect" => "Beskyt med adgangskode", "Password" => "Kodeord", "Set expiration date" => "Vælg udløbsdato", "Expiration date" => "Udløbsdato", -"Share via email: %s" => "Del over email: %s", "No people found" => "Ingen personer fundet", "Resharing is not allowed" => "Videredeling ikke tilladt", -"Shared in %s with %s" => "Delt i %s med %s", "Unshare" => "Fjern deling", "can edit" => "kan redigere", "access control" => "Adgangskontrol", diff --git a/core/l10n/de.php b/core/l10n/de.php index fddb6859912..b781c3055cd 100644 --- a/core/l10n/de.php +++ b/core/l10n/de.php @@ -25,18 +25,14 @@ "Error while sharing" => "Fehler beim Freigeben", "Error while unsharing" => "Fehler beim Aufheben der Freigabe", "Error while changing permissions" => "Fehler beim Ändern der Rechte", -"Shared with you and the group %s by %s" => "%s hat dies für dich und die Gruppe %s freigegeben.", -"Shared with you by %s" => "%s hat dies mit dir geteilt.", "Share with" => "Freigeben für", "Share with link" => "Über einen Link freigeben", "Password protect" => "Passwortschutz", "Password" => "Passwort", "Set expiration date" => "Setze ein Ablaufdatum", "Expiration date" => "Ablaufdatum", -"Share via email: %s" => "Über eine E-Mail freigeben: %s", "No people found" => "Niemand gefunden", "Resharing is not allowed" => "Weiterverteilen ist nicht erlaubt", -"Shared in %s with %s" => "In %s für %s freigegeben", "Unshare" => "Freigabe aufheben", "can edit" => "kann bearbeiten", "access control" => "Zugriffskontrolle", diff --git a/core/l10n/el.php b/core/l10n/el.php index ce341176adf..925bcdda027 100644 --- a/core/l10n/el.php +++ b/core/l10n/el.php @@ -15,13 +15,34 @@ "October" => "Οκτώβριος", "November" => "Νοέμβριος", "December" => "Δεκέμβριος", +"Choose" => "Επιλέξτε", "Cancel" => "Ακύρωση", "No" => "Όχι", "Yes" => "Ναι", "Ok" => "Οκ", "No categories selected for deletion." => "Δεν επιλέχτηκαν κατηγορίες για διαγραφή", "Error" => "Σφάλμα", +"Error while sharing" => "Σφάλμα κατά τον διαμοιρασμό", +"Error while unsharing" => "Σφάλμα κατά το σταμάτημα του διαμοιρασμού", +"Error while changing permissions" => "Σφάλμα κατά την αλλαγή των δικαιωμάτων", +"Share with" => "Διαμοιρασμός με", +"Share with link" => "Διαμοιρασμός με σύνδεσμο", +"Password protect" => "Προστασία κωδικού", "Password" => "Κωδικός", +"Set expiration date" => "Ορισμός ημ. λήξης", +"Expiration date" => "Ημερομηνία λήξης", +"No people found" => "Δεν βρέθηκε άνθρωπος", +"Resharing is not allowed" => "Ξαναμοιρασμός δεν επιτρέπεται", +"Unshare" => "Σταμάτημα μοιράσματος", +"can edit" => "δυνατότητα αλλαγής", +"access control" => "έλεγχος πρόσβασης", +"create" => "δημιουργία", +"update" => "ανανέωση", +"delete" => "διαγραφή", +"share" => "διαμοιρασμός", +"Password protected" => "Προστασία με κωδικό", +"Error unsetting expiration date" => "Σφάλμα κατά την διαγραφή της ημ. λήξης", +"Error setting expiration date" => "Σφάλμα κατά τον ορισμό ημ. λήξης", "ownCloud password reset" => "Επαναφορά κωδικού ownCloud", "Use the following link to reset your password: {link}" => "Χρησιμοποιήστε τον ακόλουθο σύνδεσμο για να επανεκδόσετε τον κωδικό: {link}", "You will receive a link to reset your password via Email." => "Θα λάβετε ένα σύνδεσμο για να επαναφέρετε τον κωδικό πρόσβασής σας μέσω ηλεκτρονικού ταχυδρομείου.", diff --git a/core/l10n/es.php b/core/l10n/es.php index 1f55a59deb1..1a53f130a60 100644 --- a/core/l10n/es.php +++ b/core/l10n/es.php @@ -25,18 +25,14 @@ "Error while sharing" => "Error compartiendo", "Error while unsharing" => "Error descompartiendo", "Error while changing permissions" => "Error cambiando permisos", -"Shared with you and the group %s by %s" => "Compartido contigo y el grupo %s por %s", -"Shared with you by %s" => "Compartido contigo por %s", "Share with" => "Compartir con", "Share with link" => "Enlace de compartir con ", "Password protect" => "Protegido por contraseña", "Password" => "Contraseña", "Set expiration date" => "Establecer fecha de caducidad", "Expiration date" => "Fecha de caducidad", -"Share via email: %s" => "Compartir por email: %s", "No people found" => "No se encontró gente", "Resharing is not allowed" => "No se permite compartir de nuevo", -"Shared in %s with %s" => "Compartido en %s con %s", "Unshare" => "No compartir", "can edit" => "puede editar", "access control" => "control de acceso", @@ -45,6 +41,7 @@ "delete" => "eliminar", "share" => "compartir", "Password protected" => "Protegido por contraseña", +"Error unsetting expiration date" => "Error al eliminar la fecha de caducidad", "Error setting expiration date" => "Error estableciendo fecha de caducidad", "ownCloud password reset" => "Reiniciar contraseña de ownCloud", "Use the following link to reset your password: {link}" => "Utiliza el siguiente enlace para restablecer tu contraseña: {link}", diff --git a/core/l10n/es_AR.php b/core/l10n/es_AR.php index 2a98e068501..ea8b2aae78e 100644 --- a/core/l10n/es_AR.php +++ b/core/l10n/es_AR.php @@ -25,18 +25,14 @@ "Error while sharing" => "Error al compartir", "Error while unsharing" => "Error en el procedimiento de ", "Error while changing permissions" => "Error al cambiar permisos", -"Shared with you and the group %s by %s" => "Compartido con vos y con el grupo %s por %s", -"Shared with you by %s" => "Compartido con vos por %s", "Share with" => "Compartir con", "Share with link" => "Compartir con link", "Password protect" => "Proteger con contraseña ", "Password" => "Contraseña", "Set expiration date" => "Asignar fecha de vencimiento", "Expiration date" => "Fecha de vencimiento", -"Share via email: %s" => "Compartir por e-mail: %s", "No people found" => "No se encontraron usuarios", "Resharing is not allowed" => "No se permite volver a compartir", -"Shared in %s with %s" => "Compartido en %s con %s", "Unshare" => "Remover compartir", "can edit" => "puede editar", "access control" => "control de acceso", @@ -45,6 +41,7 @@ "delete" => "remover", "share" => "compartir", "Password protected" => "Protegido por contraseña", +"Error unsetting expiration date" => "Error al remover la fecha de caducidad", "Error setting expiration date" => "Error al asignar fecha de vencimiento", "ownCloud password reset" => "Restablecer contraseña de ownCloud", "Use the following link to reset your password: {link}" => "Usá este enlace para restablecer tu contraseña: {link}", diff --git a/core/l10n/eu.php b/core/l10n/eu.php index fc400a69f11..a5f5d3a6210 100644 --- a/core/l10n/eu.php +++ b/core/l10n/eu.php @@ -25,18 +25,14 @@ "Error while sharing" => "Errore bat egon da elkarbanatzean", "Error while unsharing" => "Errore bat egon da elkarbanaketa desegitean", "Error while changing permissions" => "Errore bat egon da baimenak aldatzean", -"Shared with you and the group %s by %s" => "Zurekin eta %s taldearekin %sk elkarbanatuta", -"Shared with you by %s" => "%sk zurekin elkarbanatuta", "Share with" => "Elkarbanatu honekin", "Share with link" => "Elkarbanatu lotura batekin", "Password protect" => "Babestu pasahitzarekin", "Password" => "Pasahitza", "Set expiration date" => "Ezarri muga data", "Expiration date" => "Muga data", -"Share via email: %s" => "Elkarbanatu eposta bidez: %s", "No people found" => "Ez da inor aurkitu", "Resharing is not allowed" => "Berriz elkarbanatzea ez dago baimendua", -"Shared in %s with %s" => "Elkarbanatuta hemen %s %srekin", "Unshare" => "Ez elkarbanatu", "can edit" => "editatu dezake", "access control" => "sarrera kontrola", diff --git a/core/l10n/fi_FI.php b/core/l10n/fi_FI.php index 4a723b3448f..a11ec5033c0 100644 --- a/core/l10n/fi_FI.php +++ b/core/l10n/fi_FI.php @@ -27,7 +27,6 @@ "Password" => "Salasana", "Set expiration date" => "Aseta päättymispäivä", "Expiration date" => "Päättymispäivä", -"Share via email: %s" => "Jaa sähköpostitse: %s", "Resharing is not allowed" => "Jakaminen uudelleen ei ole salittu", "can edit" => "voi muokata", "create" => "luo", diff --git a/core/l10n/fr.php b/core/l10n/fr.php index 1a2d17c69d0..71ab04e8c40 100644 --- a/core/l10n/fr.php +++ b/core/l10n/fr.php @@ -25,18 +25,14 @@ "Error while sharing" => "Erreur lors de la mise en partage", "Error while unsharing" => "Erreur lors de l'annulation du partage", "Error while changing permissions" => "Erreur lors du changement des permissions", -"Shared with you and the group %s by %s" => "Partagé avec vous ainsi qu'avec le groupe %s par %s", -"Shared with you by %s" => "Partagé avec vous par %s", "Share with" => "Partager avec", "Share with link" => "Partager via lien", "Password protect" => "Protéger par un mot de passe", "Password" => "Mot de passe", "Set expiration date" => "Spécifier la date d'expiration", "Expiration date" => "Date d'expiration", -"Share via email: %s" => "Partager via email : %s", "No people found" => "Aucun utilisateur trouvé", "Resharing is not allowed" => "Le repartage n'est pas autorisé", -"Shared in %s with %s" => "Partagé dans %s avec %s", "Unshare" => "Ne plus partager", "can edit" => "édition autorisée", "access control" => "contrôle des accès", diff --git a/core/l10n/it.php b/core/l10n/it.php index 669c6b6e44a..e5437c195eb 100644 --- a/core/l10n/it.php +++ b/core/l10n/it.php @@ -25,18 +25,14 @@ "Error while sharing" => "Errore durante la condivisione", "Error while unsharing" => "Errore durante la rimozione della condivisione", "Error while changing permissions" => "Errore durante la modifica dei permessi", -"Shared with you and the group %s by %s" => "Condivisa con te e con il gruppo %s da %s", -"Shared with you by %s" => "Condiviso con te da %s", "Share with" => "Condividi con", "Share with link" => "Condividi con collegamento", "Password protect" => "Proteggi con password", "Password" => "Password", "Set expiration date" => "Imposta data di scadenza", "Expiration date" => "Data di scadenza", -"Share via email: %s" => "Condividi tramite email: %s", "No people found" => "Non sono state trovate altre persone", "Resharing is not allowed" => "La ri-condivisione non è consentita", -"Shared in %s with %s" => "Condiviso in %s con %s", "Unshare" => "Rimuovi condivisione", "can edit" => "può modificare", "access control" => "controllo d'accesso", diff --git a/core/l10n/ja_JP.php b/core/l10n/ja_JP.php index bd442ef4116..36f986f6167 100644 --- a/core/l10n/ja_JP.php +++ b/core/l10n/ja_JP.php @@ -25,18 +25,14 @@ "Error while sharing" => "共有でエラー発生", "Error while unsharing" => "共有解除でエラー発生", "Error while changing permissions" => "権限変更でエラー発生", -"Shared with you and the group %s by %s" => "あなたと %s グループが %s で共有しています", -"Shared with you by %s" => "あなたと %s で共有しています", "Share with" => "共有者", "Share with link" => "URLリンクで共有", "Password protect" => "パスワード保護", "Password" => "パスワード", "Set expiration date" => "有効期限を設定", "Expiration date" => "有効期限", -"Share via email: %s" => "メール経由で共有: %s", "No people found" => "ユーザーが見つかりません", "Resharing is not allowed" => "再共有は許可されていません", -"Shared in %s with %s" => "%s 内で %s と共有", "Unshare" => "共有解除", "can edit" => "編集可能", "access control" => "アクセス権限", diff --git a/core/l10n/nl.php b/core/l10n/nl.php index c5235690eae..e4051fc5c5d 100644 --- a/core/l10n/nl.php +++ b/core/l10n/nl.php @@ -25,18 +25,14 @@ "Error while sharing" => "Fout tijdens het delen", "Error while unsharing" => "Fout tijdens het stoppen met delen", "Error while changing permissions" => "Fout tijdens het veranderen van permissies", -"Shared with you and the group %s by %s" => "Gedeeld met u en de group %s door %s", -"Shared with you by %s" => "Gedeeld met u door %s", "Share with" => "Deel met", "Share with link" => "Deel met link", "Password protect" => "Passeerwoord beveiliging", "Password" => "Wachtwoord", "Set expiration date" => "Zet vervaldatum", "Expiration date" => "Vervaldatum", -"Share via email: %s" => "Deel via email: %s", "No people found" => "Geen mensen gevonden", "Resharing is not allowed" => "Verder delen is niet toegestaan", -"Shared in %s with %s" => "Deel in %s met %s", "Unshare" => "Stop met delen", "can edit" => "kan wijzigen", "access control" => "toegangscontrole", diff --git a/core/l10n/oc.php b/core/l10n/oc.php new file mode 100644 index 00000000000..be743b9bc24 --- /dev/null +++ b/core/l10n/oc.php @@ -0,0 +1,85 @@ + "Nom d'applicacion pas donat.", +"No category to add?" => "Pas de categoria d'ajustar ?", +"This category already exists: " => "La categoria exista ja :", +"Settings" => "Configuracion", +"January" => "Genièr", +"February" => "Febrièr", +"March" => "Març", +"April" => "Abril", +"May" => "Mai", +"June" => "Junh", +"July" => "Julhet", +"August" => "Agost", +"September" => "Septembre", +"October" => "Octobre", +"November" => "Novembre", +"December" => "Decembre", +"Choose" => "Causís", +"Cancel" => "Anulla", +"No" => "Non", +"Yes" => "Òc", +"Ok" => "D'accòrdi", +"No categories selected for deletion." => "Pas de categorias seleccionadas per escafar.", +"Error" => "Error", +"Error while sharing" => "Error al partejar", +"Error while unsharing" => "Error al non partejar", +"Error while changing permissions" => "Error al cambiar permissions", +"Share with" => "Parteja amb", +"Share with link" => "Parteja amb lo ligam", +"Password protect" => "Parat per senhal", +"Password" => "Senhal", +"Set expiration date" => "Met la data d'expiracion", +"Expiration date" => "Data d'expiracion", +"No people found" => "Deguns trobat", +"Resharing is not allowed" => "Tornar partejar es pas permis", +"Unshare" => "Non parteje", +"can edit" => "pòt modificar", +"access control" => "Contraròtle d'acces", +"create" => "crea", +"update" => "met a jorn", +"delete" => "escafa", +"share" => "parteja", +"Password protected" => "Parat per senhal", +"Error unsetting expiration date" => "Error al metre de la data d'expiracion", +"Error setting expiration date" => "Error setting expiration date", +"ownCloud password reset" => "senhal d'ownCloud tornat botar", +"Use the following link to reset your password: {link}" => "Utiliza lo ligam seguent per tornar botar lo senhal : {link}", +"You will receive a link to reset your password via Email." => "Reçaupràs un ligam per tornar botar ton senhal via corrièl.", +"Requested" => "Requesit", +"Login failed!" => "Fracàs de login", +"Username" => "Nom d'usancièr", +"Request reset" => "Tornar botar requesit", +"Your password was reset" => "Ton senhal es estat tornat botar", +"To login page" => "Pagina cap al login", +"New password" => "Senhal nòu", +"Reset password" => "Senhal tornat botar", +"Personal" => "Personal", +"Users" => "Usancièrs", +"Apps" => "Apps", +"Admin" => "Admin", +"Help" => "Ajuda", +"Access forbidden" => "Acces enebit", +"Cloud not found" => "Nívol pas trobada", +"Edit categories" => "Edita categorias", +"Add" => "Ajusta", +"Create an admin account" => "Crea un compte admin", +"Advanced" => "Avançat", +"Data folder" => "Dorsièr de donadas", +"Configure the database" => "Configura la basa de donadas", +"will be used" => "serà utilizat", +"Database user" => "Usancièr de la basa de donadas", +"Database password" => "Senhal de la basa de donadas", +"Database name" => "Nom de la basa de donadas", +"Database tablespace" => "Espandi de taula de basa de donadas", +"Database host" => "Òste de basa de donadas", +"Finish setup" => "Configuracion acabada", +"web services under your control" => "Services web jos ton contraròtle", +"Log out" => "Sortida", +"Lost your password?" => "L'as perdut lo senhal ?", +"remember" => "bremba-te", +"Log in" => "Dintrada", +"You are logged out." => "Sias pas dintra (t/ada)", +"prev" => "dariièr", +"next" => "venent" +); diff --git a/core/l10n/pl.php b/core/l10n/pl.php index 7dcf0161792..cc734802cc1 100644 --- a/core/l10n/pl.php +++ b/core/l10n/pl.php @@ -30,7 +30,6 @@ "Password" => "Hasło", "Set expiration date" => "Ustaw datę wygaśnięcia", "Expiration date" => "Data wygaśnięcia", -"Share via email: %s" => "Współdziel przez email: %s", "No people found" => "Nie znaleziono ludzi", "Resharing is not allowed" => "Współdzielenie nie jest możliwe", "can edit" => "można edytować", diff --git a/core/l10n/pt_BR.php b/core/l10n/pt_BR.php index cd7064e89c3..37e411ec074 100644 --- a/core/l10n/pt_BR.php +++ b/core/l10n/pt_BR.php @@ -25,18 +25,14 @@ "Error while sharing" => "Erro ao compartilhar", "Error while unsharing" => "Erro ao descompartilhar", "Error while changing permissions" => "Erro ao mudar permissões", -"Shared with you and the group %s by %s" => "Compartilhado com você e o grupo %s por %s", -"Shared with you by %s" => "Compartilhado com você por %s", "Share with" => "Compartilhar com", "Share with link" => "Compartilhar com link", "Password protect" => "Proteger com senha", "Password" => "Senha", "Set expiration date" => "Definir data de expiração", "Expiration date" => "Data de expiração", -"Share via email: %s" => "Compartilhar via email: %s", "No people found" => "Nenhuma pessoa encontrada", "Resharing is not allowed" => "Não é permitido re-compartilhar", -"Shared in %s with %s" => "Compartilhado em %s com %s", "Unshare" => "Descompartilhar", "can edit" => "pode editar", "access control" => "controle de acesso", diff --git a/core/l10n/ro.php b/core/l10n/ro.php index 4083113a653..75e88e2cc16 100644 --- a/core/l10n/ro.php +++ b/core/l10n/ro.php @@ -25,18 +25,14 @@ "Error while sharing" => "Eroare la partajare", "Error while unsharing" => "Eroare la anularea partajării", "Error while changing permissions" => "Eroare la modificarea permisiunilor", -"Shared with you and the group %s by %s" => "Partajat cu tine și grupul %s de %s", -"Shared with you by %s" => "Partajat cu tine de %s", "Share with" => "Partajat cu", "Share with link" => "Partajare cu legătură", "Password protect" => "Protejare cu parolă", "Password" => "Parola", "Set expiration date" => "Specifică data expirării", "Expiration date" => "Data expirării", -"Share via email: %s" => "Partajare prin email: %s", "No people found" => "Nici o persoană găsită", "Resharing is not allowed" => "Repartajarea nu este permisă", -"Shared in %s with %s" => "Partajat în %s cu %s", "Unshare" => "Anulare partajare", "can edit" => "poate edita", "access control" => "control acces", diff --git a/core/l10n/ru_RU.php b/core/l10n/ru_RU.php index 563a261e5d4..00a46c04241 100644 --- a/core/l10n/ru_RU.php +++ b/core/l10n/ru_RU.php @@ -25,7 +25,6 @@ "Error while sharing" => "Ошибка создания общего доступа", "Error while unsharing" => "Ошибка отключения общего доступа", "Error while changing permissions" => "Ошибка при изменении прав доступа", -"Shared with you and the group %s by %s" => "Общий доступ для Вас и группы %s к %s", "Password protect" => "Защитить паролем", "Password" => "Пароль", "No people found" => "Не найдено людей", diff --git a/core/l10n/sv.php b/core/l10n/sv.php index 993aae71ac3..e6b96a2c0f1 100644 --- a/core/l10n/sv.php +++ b/core/l10n/sv.php @@ -25,18 +25,14 @@ "Error while sharing" => "Fel vid delning", "Error while unsharing" => "Fel när delning skulle avslutas", "Error while changing permissions" => "Fel vid ändring av rättigheter", -"Shared with you and the group %s by %s" => "Delad med dig och gruppen %s av %s", -"Shared with you by %s" => "Delad med dig av %s", "Share with" => "Delad med", "Share with link" => "Delad med länk", "Password protect" => "Lösenordsskydda", "Password" => "Lösenord", "Set expiration date" => "Sätt utgångsdatum", "Expiration date" => "Utgångsdatum", -"Share via email: %s" => "Dela via e-post: %s", "No people found" => "Hittar inga användare", "Resharing is not allowed" => "Dela vidare är inte tillåtet", -"Shared in %s with %s" => "Delad i %s med %s", "Unshare" => "Sluta dela", "can edit" => "kan redigera", "access control" => "åtkomstkontroll", diff --git a/core/l10n/th_TH.php b/core/l10n/th_TH.php index 65b14b121d5..f5a1775f6a2 100644 --- a/core/l10n/th_TH.php +++ b/core/l10n/th_TH.php @@ -25,18 +25,14 @@ "Error while sharing" => "เกิดข้อผิดพลาดในระหว่างการแชร์ข้อมูล", "Error while unsharing" => "เกิดข้อผิดพลาดในการยกเลิกการแชร์ข้อมูล", "Error while changing permissions" => "เกิดข้อผิดพลาดในการเปลี่ยนสิทธิ์การเข้าใช้งาน", -"Shared with you and the group %s by %s" => "ได้แชร์ให้กับคุณและกลุ่ม %s โดย %s", -"Shared with you by %s" => "แชร์ให้กับคุณโดย %s", "Share with" => "แชร์ให้กับ", "Share with link" => "แชร์ด้วยลิงก์", "Password protect" => "ใส่รหัสผ่านไว้", "Password" => "รหัสผ่าน", "Set expiration date" => "กำหนดวันที่หมดอายุ", "Expiration date" => "วันที่หมดอายุ", -"Share via email: %s" => "แชร์ผ่านทางอีเมล: %s", "No people found" => "ไม่พบบุคคลที่ต้องการ", "Resharing is not allowed" => "ไม่อนุญาตให้แชร์ข้อมูลซ้ำได้", -"Shared in %s with %s" => "ถูกแชร์ใน %s ด้วย %s", "Unshare" => "ยกเลิกการแชร์", "can edit" => "สามารถแก้ไข", "access control" => "ระดับควบคุมการเข้าใช้งาน", diff --git a/core/l10n/zh_CN.php b/core/l10n/zh_CN.php index 47bda01ab54..6ddc41ffeb2 100644 --- a/core/l10n/zh_CN.php +++ b/core/l10n/zh_CN.php @@ -25,18 +25,14 @@ "Error while sharing" => "共享时出错", "Error while unsharing" => "取消共享时出错", "Error while changing permissions" => "修改权限时出错", -"Shared with you and the group %s by %s" => "与你及%s组共享,共享人: %s", -"Shared with you by %s" => "共享人: %s", "Share with" => "共享", "Share with link" => "共享链接", "Password protect" => "密码保护", "Password" => "密码", "Set expiration date" => "设置过期日期", "Expiration date" => "过期日期", -"Share via email: %s" => "发电子邮件分享: %s", "No people found" => "未找到此人", "Resharing is not allowed" => "不允许二次共享", -"Shared in %s with %s" => "在%s中与%s共享", "Unshare" => "取消共享", "can edit" => "可以修改", "access control" => "访问控制", diff --git a/l10n/af/core.po b/l10n/af/core.po index 5f46146d440..b341411ef2f 100644 --- a/l10n/af/core.po +++ b/l10n/af/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-26 13:19+0200\n" -"PO-Revision-Date: 2012-09-26 11:19+0000\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (http://www.transifex.com/projects/p/owncloud/language/af/)\n" "MIME-Version: 1.0\n" @@ -29,7 +29,7 @@ msgstr "" msgid "This category already exists: " msgstr "" -#: js/js.js:213 templates/layout.user.php:54 templates/layout.user.php:55 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "" @@ -123,13 +123,15 @@ msgid "Error while changing permissions" msgstr "" #: js/share.js:130 -#, python-format -msgid "Shared with you and the group %s by %s" +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" msgstr "" #: js/share.js:132 -#, python-format -msgid "Shared with you by %s" +msgid "Shared with you by" msgstr "" #: js/share.js:137 @@ -157,8 +159,7 @@ msgid "Expiration date" msgstr "" #: js/share.js:185 -#, python-format -msgid "Share via email: %s" +msgid "Share via email:" msgstr "" #: js/share.js:187 @@ -170,8 +171,11 @@ msgid "Resharing is not allowed" msgstr "" #: js/share.js:250 -#, python-format -msgid "Shared in %s with %s" +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" msgstr "" #: js/share.js:271 @@ -344,7 +348,7 @@ msgstr "" msgid "web services under your control" msgstr "" -#: templates/layout.user.php:39 +#: templates/layout.user.php:34 msgid "Log out" msgstr "" diff --git a/l10n/ar/core.po b/l10n/ar/core.po index 8784f0bf16b..d15bbe4a7cd 100644 --- a/l10n/ar/core.po +++ b/l10n/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: 2012-09-26 13:19+0200\n" -"PO-Revision-Date: 2012-09-26 11:19+0000\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+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" @@ -30,7 +30,7 @@ msgstr "" msgid "This category already exists: " msgstr "" -#: js/js.js:213 templates/layout.user.php:54 templates/layout.user.php:55 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "تعديلات" @@ -124,13 +124,15 @@ msgid "Error while changing permissions" msgstr "" #: js/share.js:130 -#, python-format -msgid "Shared with you and the group %s by %s" +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" msgstr "" #: js/share.js:132 -#, python-format -msgid "Shared with you by %s" +msgid "Shared with you by" msgstr "" #: js/share.js:137 @@ -158,8 +160,7 @@ msgid "Expiration date" msgstr "" #: js/share.js:185 -#, python-format -msgid "Share via email: %s" +msgid "Share via email:" msgstr "" #: js/share.js:187 @@ -171,8 +172,11 @@ msgid "Resharing is not allowed" msgstr "" #: js/share.js:250 -#, python-format -msgid "Shared in %s with %s" +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" msgstr "" #: js/share.js:271 @@ -345,7 +349,7 @@ msgstr "انهاء التعديلات" msgid "web services under your control" msgstr "خدمات الوب تحت تصرفك" -#: templates/layout.user.php:39 +#: templates/layout.user.php:34 msgid "Log out" msgstr "الخروج" diff --git a/l10n/ar_SA/core.po b/l10n/ar_SA/core.po index 8b794e039bf..e63e571d91d 100644 --- a/l10n/ar_SA/core.po +++ b/l10n/ar_SA/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-26 13:19+0200\n" -"PO-Revision-Date: 2012-09-26 11:19+0000\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (Saudi Arabia) (http://www.transifex.com/projects/p/owncloud/language/ar_SA/)\n" "MIME-Version: 1.0\n" @@ -29,7 +29,7 @@ msgstr "" msgid "This category already exists: " msgstr "" -#: js/js.js:213 templates/layout.user.php:54 templates/layout.user.php:55 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "" @@ -123,13 +123,15 @@ msgid "Error while changing permissions" msgstr "" #: js/share.js:130 -#, python-format -msgid "Shared with you and the group %s by %s" +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" msgstr "" #: js/share.js:132 -#, python-format -msgid "Shared with you by %s" +msgid "Shared with you by" msgstr "" #: js/share.js:137 @@ -157,8 +159,7 @@ msgid "Expiration date" msgstr "" #: js/share.js:185 -#, python-format -msgid "Share via email: %s" +msgid "Share via email:" msgstr "" #: js/share.js:187 @@ -170,8 +171,11 @@ msgid "Resharing is not allowed" msgstr "" #: js/share.js:250 -#, python-format -msgid "Shared in %s with %s" +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" msgstr "" #: js/share.js:271 @@ -344,7 +348,7 @@ msgstr "" msgid "web services under your control" msgstr "" -#: templates/layout.user.php:39 +#: templates/layout.user.php:34 msgid "Log out" msgstr "" diff --git a/l10n/bg_BG/core.po b/l10n/bg_BG/core.po index a912136e2a4..ff661733f9f 100644 --- a/l10n/bg_BG/core.po +++ b/l10n/bg_BG/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: 2012-09-26 13:19+0200\n" -"PO-Revision-Date: 2012-09-26 11:19+0000\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+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" @@ -33,7 +33,7 @@ msgstr "" msgid "This category already exists: " msgstr "Категорията вече съществува:" -#: js/js.js:213 templates/layout.user.php:54 templates/layout.user.php:55 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Настройки" @@ -127,13 +127,15 @@ msgid "Error while changing permissions" msgstr "" #: js/share.js:130 -#, python-format -msgid "Shared with you and the group %s by %s" +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" msgstr "" #: js/share.js:132 -#, python-format -msgid "Shared with you by %s" +msgid "Shared with you by" msgstr "" #: js/share.js:137 @@ -161,8 +163,7 @@ msgid "Expiration date" msgstr "" #: js/share.js:185 -#, python-format -msgid "Share via email: %s" +msgid "Share via email:" msgstr "" #: js/share.js:187 @@ -174,8 +175,11 @@ msgid "Resharing is not allowed" msgstr "" #: js/share.js:250 -#, python-format -msgid "Shared in %s with %s" +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" msgstr "" #: js/share.js:271 @@ -348,7 +352,7 @@ msgstr "Завършване на настройките" msgid "web services under your control" msgstr "" -#: templates/layout.user.php:39 +#: templates/layout.user.php:34 msgid "Log out" msgstr "Изход" diff --git a/l10n/ca/core.po b/l10n/ca/core.po index 49f057e364c..30b391463b5 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: 2012-09-26 13:19+0200\n" -"PO-Revision-Date: 2012-09-26 11:19+0000\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -31,7 +31,7 @@ msgstr "No voleu afegir cap categoria?" msgid "This category already exists: " msgstr "Aquesta categoria ja existeix:" -#: js/js.js:213 templates/layout.user.php:54 templates/layout.user.php:55 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Arranjament" @@ -125,13 +125,15 @@ msgid "Error while changing permissions" msgstr "" #: js/share.js:130 -#, python-format -msgid "Shared with you and the group %s by %s" +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" msgstr "" #: js/share.js:132 -#, python-format -msgid "Shared with you by %s" +msgid "Shared with you by" msgstr "" #: js/share.js:137 @@ -159,8 +161,7 @@ msgid "Expiration date" msgstr "" #: js/share.js:185 -#, python-format -msgid "Share via email: %s" +msgid "Share via email:" msgstr "" #: js/share.js:187 @@ -172,8 +173,11 @@ msgid "Resharing is not allowed" msgstr "" #: js/share.js:250 -#, python-format -msgid "Shared in %s with %s" +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" msgstr "" #: js/share.js:271 @@ -346,7 +350,7 @@ msgstr "Acaba la configuració" msgid "web services under your control" msgstr "controleu els vostres serveis web" -#: templates/layout.user.php:39 +#: templates/layout.user.php:34 msgid "Log out" msgstr "Surt" diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po index 4ae1820806a..b9c0bef6ae4 100644 --- a/l10n/cs_CZ/core.po +++ b/l10n/cs_CZ/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: 2012-09-27 02:01+0200\n" -"PO-Revision-Date: 2012-09-26 11:43+0000\n" -"Last-Translator: Tomáš Chvátal \n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+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" @@ -33,7 +33,7 @@ msgstr "Žádná kategorie k přidání?" msgid "This category already exists: " msgstr "Tato kategorie již existuje: " -#: js/js.js:213 templates/layout.user.php:54 templates/layout.user.php:55 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Nastavení" @@ -127,14 +127,16 @@ msgid "Error while changing permissions" msgstr "Chyba při změně oprávnění" #: js/share.js:130 -#, python-format -msgid "Shared with you and the group %s by %s" -msgstr "Sdíleno s Vámi a skupinou %s od %s" +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" +msgstr "" #: js/share.js:132 -#, python-format -msgid "Shared with you by %s" -msgstr "Sdíleno s Vámi od %s" +msgid "Shared with you by" +msgstr "" #: js/share.js:137 msgid "Share with" @@ -161,9 +163,8 @@ msgid "Expiration date" msgstr "Datum vypršení platnosti" #: js/share.js:185 -#, python-format -msgid "Share via email: %s" -msgstr "Sdílet e-mailem: %s" +msgid "Share via email:" +msgstr "" #: js/share.js:187 msgid "No people found" @@ -174,9 +175,12 @@ msgid "Resharing is not allowed" msgstr "Sdílení již sdílené položky není povoleno" #: js/share.js:250 -#, python-format -msgid "Shared in %s with %s" -msgstr "Sdíleno v %s s %s" +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" +msgstr "" #: js/share.js:271 msgid "Unshare" @@ -348,7 +352,7 @@ msgstr "Dokončit nastavení" msgid "web services under your control" msgstr "webové služby pod Vaší kontrolou" -#: templates/layout.user.php:39 +#: templates/layout.user.php:34 msgid "Log out" msgstr "Odhlásit se" diff --git a/l10n/da/core.po b/l10n/da/core.po index f0e22bbdefa..3ef84754e39 100644 --- a/l10n/da/core.po +++ b/l10n/da/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: 2012-09-26 13:19+0200\n" -"PO-Revision-Date: 2012-09-26 11:19+0000\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+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" @@ -35,7 +35,7 @@ msgstr "Ingen kategori at tilføje?" msgid "This category already exists: " msgstr "Denne kategori eksisterer allerede: " -#: js/js.js:213 templates/layout.user.php:54 templates/layout.user.php:55 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Indstillinger" @@ -129,14 +129,16 @@ msgid "Error while changing permissions" msgstr "Fejl under justering af rettigheder" #: js/share.js:130 -#, python-format -msgid "Shared with you and the group %s by %s" -msgstr "Delt med dig og gruppen %s af %s" +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" +msgstr "" #: js/share.js:132 -#, python-format -msgid "Shared with you by %s" -msgstr "Delt med dig af %s" +msgid "Shared with you by" +msgstr "" #: js/share.js:137 msgid "Share with" @@ -163,9 +165,8 @@ msgid "Expiration date" msgstr "Udløbsdato" #: js/share.js:185 -#, python-format -msgid "Share via email: %s" -msgstr "Del over email: %s" +msgid "Share via email:" +msgstr "" #: js/share.js:187 msgid "No people found" @@ -176,9 +177,12 @@ msgid "Resharing is not allowed" msgstr "Videredeling ikke tilladt" #: js/share.js:250 -#, python-format -msgid "Shared in %s with %s" -msgstr "Delt i %s med %s" +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" +msgstr "" #: js/share.js:271 msgid "Unshare" @@ -350,7 +354,7 @@ msgstr "Afslut opsætning" msgid "web services under your control" msgstr "Webtjenester under din kontrol" -#: templates/layout.user.php:39 +#: templates/layout.user.php:34 msgid "Log out" msgstr "Log ud" diff --git a/l10n/de/core.po b/l10n/de/core.po index 9305a60d07c..56f595bdd47 100644 --- a/l10n/de/core.po +++ b/l10n/de/core.po @@ -20,9 +20,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-28 02:02+0200\n" -"PO-Revision-Date: 2012-09-27 22:12+0000\n" -"Last-Translator: Mirodin \n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -42,7 +42,7 @@ msgstr "Keine Kategorie hinzuzufügen?" msgid "This category already exists: " msgstr "Kategorie existiert bereits:" -#: js/js.js:213 templates/layout.user.php:54 templates/layout.user.php:55 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Einstellungen" @@ -136,14 +136,16 @@ msgid "Error while changing permissions" msgstr "Fehler beim Ändern der Rechte" #: js/share.js:130 -#, python-format -msgid "Shared with you and the group %s by %s" -msgstr "%s hat dies für dich und die Gruppe %s freigegeben." +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" +msgstr "" #: js/share.js:132 -#, python-format -msgid "Shared with you by %s" -msgstr "%s hat dies mit dir geteilt." +msgid "Shared with you by" +msgstr "" #: js/share.js:137 msgid "Share with" @@ -170,9 +172,8 @@ msgid "Expiration date" msgstr "Ablaufdatum" #: js/share.js:185 -#, python-format -msgid "Share via email: %s" -msgstr "Über eine E-Mail freigeben: %s" +msgid "Share via email:" +msgstr "" #: js/share.js:187 msgid "No people found" @@ -183,9 +184,12 @@ msgid "Resharing is not allowed" msgstr "Weiterverteilen ist nicht erlaubt" #: js/share.js:250 -#, python-format -msgid "Shared in %s with %s" -msgstr "In %s für %s freigegeben" +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" +msgstr "" #: js/share.js:271 msgid "Unshare" @@ -357,7 +361,7 @@ msgstr "Installation abschließen" msgid "web services under your control" msgstr "Web-Services unter Ihrer Kontrolle" -#: templates/layout.user.php:39 +#: templates/layout.user.php:34 msgid "Log out" msgstr "Abmelden" diff --git a/l10n/el/core.po b/l10n/el/core.po index d891fe24a44..5fb3691f6b2 100644 --- a/l10n/el/core.po +++ b/l10n/el/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: 2012-09-26 13:19+0200\n" -"PO-Revision-Date: 2012-09-26 11:19+0000\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -34,7 +34,7 @@ msgstr "Δεν έχετε να προστέσθέσεται μια κα" msgid "This category already exists: " msgstr "Αυτή η κατηγορία υπάρχει ήδη" -#: js/js.js:213 templates/layout.user.php:54 templates/layout.user.php:55 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Ρυθμίσεις" @@ -88,7 +88,7 @@ msgstr "Δεκέμβριος" #: js/oc-dialogs.js:123 msgid "Choose" -msgstr "" +msgstr "Επιλέξτε" #: js/oc-dialogs.js:143 js/oc-dialogs.js:163 msgid "Cancel" @@ -117,37 +117,39 @@ msgstr "Σφάλμα" #: js/share.js:103 msgid "Error while sharing" -msgstr "" +msgstr "Σφάλμα κατά τον διαμοιρασμό" #: js/share.js:114 msgid "Error while unsharing" -msgstr "" +msgstr "Σφάλμα κατά το σταμάτημα του διαμοιρασμού" #: js/share.js:121 msgid "Error while changing permissions" +msgstr "Σφάλμα κατά την αλλαγή των δικαιωμάτων" + +#: js/share.js:130 +msgid "Shared with you and the group" msgstr "" #: js/share.js:130 -#, python-format -msgid "Shared with you and the group %s by %s" +msgid "by" msgstr "" #: js/share.js:132 -#, python-format -msgid "Shared with you by %s" +msgid "Shared with you by" msgstr "" #: js/share.js:137 msgid "Share with" -msgstr "" +msgstr "Διαμοιρασμός με" #: js/share.js:142 msgid "Share with link" -msgstr "" +msgstr "Διαμοιρασμός με σύνδεσμο" #: js/share.js:143 msgid "Password protect" -msgstr "" +msgstr "Προστασία κωδικού" #: js/share.js:147 templates/installation.php:30 templates/login.php:13 msgid "Password" @@ -155,69 +157,71 @@ msgstr "Κωδικός" #: js/share.js:152 msgid "Set expiration date" -msgstr "" +msgstr "Ορισμός ημ. λήξης" #: js/share.js:153 msgid "Expiration date" -msgstr "" +msgstr "Ημερομηνία λήξης" #: js/share.js:185 -#, python-format -msgid "Share via email: %s" +msgid "Share via email:" msgstr "" #: js/share.js:187 msgid "No people found" -msgstr "" +msgstr "Δεν βρέθηκε άνθρωπος" #: js/share.js:214 msgid "Resharing is not allowed" +msgstr "Ξαναμοιρασμός δεν επιτρέπεται" + +#: js/share.js:250 +msgid "Shared in" msgstr "" #: js/share.js:250 -#, python-format -msgid "Shared in %s with %s" +msgid "with" msgstr "" #: js/share.js:271 msgid "Unshare" -msgstr "" +msgstr "Σταμάτημα μοιράσματος" #: js/share.js:279 msgid "can edit" -msgstr "" +msgstr "δυνατότητα αλλαγής" #: js/share.js:281 msgid "access control" -msgstr "" +msgstr "έλεγχος πρόσβασης" #: js/share.js:284 msgid "create" -msgstr "" +msgstr "δημιουργία" #: js/share.js:287 msgid "update" -msgstr "" +msgstr "ανανέωση" #: js/share.js:290 msgid "delete" -msgstr "" +msgstr "διαγραφή" #: js/share.js:293 msgid "share" -msgstr "" +msgstr "διαμοιρασμός" #: js/share.js:317 js/share.js:476 msgid "Password protected" -msgstr "" +msgstr "Προστασία με κωδικό" #: js/share.js:489 msgid "Error unsetting expiration date" -msgstr "" +msgstr "Σφάλμα κατά την διαγραφή της ημ. λήξης" #: js/share.js:501 msgid "Error setting expiration date" -msgstr "" +msgstr "Σφάλμα κατά τον ορισμό ημ. λήξης" #: lostpassword/index.php:26 msgid "ownCloud password reset" @@ -349,7 +353,7 @@ msgstr "Ολοκλήρωση εγκατάστασης" msgid "web services under your control" msgstr "Υπηρεσίες web υπό τον έλεγχό σας" -#: templates/layout.user.php:39 +#: templates/layout.user.php:34 msgid "Log out" msgstr "Αποσύνδεση" diff --git a/l10n/el/files.po b/l10n/el/files.po index 6653d7075bd..1d6375014dc 100644 --- a/l10n/el/files.po +++ b/l10n/el/files.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-26 13:19+0200\n" -"PO-Revision-Date: 2012-09-26 11:20+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 01:41+0000\n" +"Last-Translator: Dimitris M. \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -66,7 +66,7 @@ msgstr "Διαγραφή" #: js/fileactions.js:182 msgid "Rename" -msgstr "" +msgstr "Μετονομασία" #: js/filelist.js:190 js/filelist.js:192 msgid "already exists" @@ -122,11 +122,11 @@ msgstr "Εκκρεμεί" #: js/files.js:256 msgid "1 file uploading" -msgstr "" +msgstr "1 αρχείο ανεβαίνει" #: js/files.js:259 js/files.js:304 js/files.js:319 msgid "files uploading" -msgstr "" +msgstr "αρχεία ανεβαίνουν" #: js/files.js:322 js/files.js:355 msgid "Upload cancelled." @@ -141,81 +141,81 @@ msgstr "Η μεταφόρτωση του αρχείου βρίσκεται σε msgid "Invalid name, '/' is not allowed." msgstr "Μη έγκυρο όνομα, το '/' δεν επιτρέπεται." -#: js/files.js:667 +#: js/files.js:668 msgid "files scanned" msgstr "αρχεία σαρώθηκαν" -#: js/files.js:675 +#: js/files.js:676 msgid "error while scanning" msgstr "σφάλμα κατά την ανίχνευση" -#: js/files.js:748 templates/index.php:48 +#: js/files.js:749 templates/index.php:48 msgid "Name" msgstr "Όνομα" -#: js/files.js:749 templates/index.php:56 +#: js/files.js:750 templates/index.php:56 msgid "Size" msgstr "Μέγεθος" -#: js/files.js:750 templates/index.php:58 +#: js/files.js:751 templates/index.php:58 msgid "Modified" msgstr "Τροποποιήθηκε" -#: js/files.js:777 +#: js/files.js:778 msgid "folder" msgstr "φάκελος" -#: js/files.js:779 +#: js/files.js:780 msgid "folders" msgstr "φάκελοι" -#: js/files.js:787 +#: js/files.js:788 msgid "file" msgstr "αρχείο" -#: js/files.js:789 +#: js/files.js:790 msgid "files" msgstr "αρχεία" -#: js/files.js:833 +#: js/files.js:834 msgid "seconds ago" -msgstr "" +msgstr "δευτερόλεπτα πριν" -#: js/files.js:834 +#: js/files.js:835 msgid "minute ago" -msgstr "" +msgstr "λεπτό πριν" -#: js/files.js:835 +#: js/files.js:836 msgid "minutes ago" -msgstr "" +msgstr "λεπτά πριν" -#: js/files.js:838 +#: js/files.js:839 msgid "today" -msgstr "" +msgstr "σήμερα" -#: js/files.js:839 +#: js/files.js:840 msgid "yesterday" -msgstr "" +msgstr "χτες" -#: js/files.js:840 +#: js/files.js:841 msgid "days ago" -msgstr "" +msgstr "μέρες πριν" -#: js/files.js:841 +#: js/files.js:842 msgid "last month" -msgstr "" +msgstr "τελευταίο μήνα" -#: js/files.js:843 +#: js/files.js:844 msgid "months ago" -msgstr "" +msgstr "μήνες πριν" -#: js/files.js:844 +#: js/files.js:845 msgid "last year" -msgstr "" +msgstr "τελευταίο χρόνο" -#: js/files.js:845 +#: js/files.js:846 msgid "years ago" -msgstr "" +msgstr "χρόνια πριν" #: templates/admin.php:5 msgid "File handling" diff --git a/l10n/el/files_sharing.po b/l10n/el/files_sharing.po index d50968315c1..d5a761b6f70 100644 --- a/l10n/el/files_sharing.po +++ b/l10n/el/files_sharing.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-22 01:14+0200\n" -"PO-Revision-Date: 2012-09-21 23:15+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 01:07+0000\n" +"Last-Translator: Dimitris M. \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -31,12 +31,12 @@ msgstr "Καταχώρηση" #: templates/public.php:9 #, php-format msgid "%s shared the folder %s with you" -msgstr "" +msgstr "%s μοιράστηκε τον φάκελο %s μαζί σας" #: templates/public.php:11 #, php-format msgid "%s shared the file %s with you" -msgstr "" +msgstr "%s μοιράστηκε το αρχείο %s μαζί σας" #: templates/public.php:14 templates/public.php:30 msgid "Download" diff --git a/l10n/el/files_versions.po b/l10n/el/files_versions.po index 1ebbed58c88..a79674e946a 100644 --- a/l10n/el/files_versions.po +++ b/l10n/el/files_versions.po @@ -3,15 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Dimitris M. , 2012. # Efstathios Iosifidis , 2012. # Nisok Kosin , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-22 01:14+0200\n" -"PO-Revision-Date: 2012-09-21 23:15+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 01:26+0000\n" +"Last-Translator: Dimitris M. \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,7 +26,7 @@ msgstr "Λήξη όλων των εκδόσεων" #: js/versions.js:16 msgid "History" -msgstr "" +msgstr "Ιστορικό" #: templates/settings-personal.php:4 msgid "Versions" diff --git a/l10n/el/user_ldap.po b/l10n/el/user_ldap.po index 0509e10da4d..86f0cd18819 100644 --- a/l10n/el/user_ldap.po +++ b/l10n/el/user_ldap.po @@ -3,15 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Dimitris M. , 2012. # Efstathios Iosifidis , 2012. # Marios Bekatoros <>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-08 02:02+0200\n" -"PO-Revision-Date: 2012-09-07 07:17+0000\n" -"Last-Translator: Marios Bekatoros <>\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 01:27+0000\n" +"Last-Translator: Dimitris M. \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -135,7 +136,7 @@ msgstr "" #: templates/settings.php:23 msgid "Not recommended, use for testing only." -msgstr "" +msgstr "Δεν προτείνεται, χρήση μόνο για δοκιμές." #: templates/settings.php:24 msgid "User Display Name Field" diff --git a/l10n/eo/core.po b/l10n/eo/core.po index 70ac43a51e6..1d81d9fb2a7 100644 --- a/l10n/eo/core.po +++ b/l10n/eo/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: 2012-09-26 13:19+0200\n" -"PO-Revision-Date: 2012-09-26 11:19+0000\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+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" @@ -32,7 +32,7 @@ msgstr "Ĉu neniu kategorio estas aldonota?" msgid "This category already exists: " msgstr "Ĉi tiu kategorio jam ekzistas: " -#: js/js.js:213 templates/layout.user.php:54 templates/layout.user.php:55 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Agordo" @@ -126,13 +126,15 @@ msgid "Error while changing permissions" msgstr "" #: js/share.js:130 -#, python-format -msgid "Shared with you and the group %s by %s" +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" msgstr "" #: js/share.js:132 -#, python-format -msgid "Shared with you by %s" +msgid "Shared with you by" msgstr "" #: js/share.js:137 @@ -160,8 +162,7 @@ msgid "Expiration date" msgstr "" #: js/share.js:185 -#, python-format -msgid "Share via email: %s" +msgid "Share via email:" msgstr "" #: js/share.js:187 @@ -173,8 +174,11 @@ msgid "Resharing is not allowed" msgstr "" #: js/share.js:250 -#, python-format -msgid "Shared in %s with %s" +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" msgstr "" #: js/share.js:271 @@ -347,7 +351,7 @@ msgstr "Fini la instalon" msgid "web services under your control" msgstr "TTT-servoj sub via kontrolo" -#: templates/layout.user.php:39 +#: templates/layout.user.php:34 msgid "Log out" msgstr "Elsaluti" diff --git a/l10n/es/core.po b/l10n/es/core.po index e5fd8258508..fc225d2f546 100644 --- a/l10n/es/core.po +++ b/l10n/es/core.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-26 13:19+0200\n" -"PO-Revision-Date: 2012-09-26 11:19+0000\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+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" @@ -38,7 +38,7 @@ msgstr "¿Ninguna categoría para añadir?" msgid "This category already exists: " msgstr "Esta categoría ya existe: " -#: js/js.js:213 templates/layout.user.php:54 templates/layout.user.php:55 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Ajustes" @@ -132,14 +132,16 @@ msgid "Error while changing permissions" msgstr "Error cambiando permisos" #: js/share.js:130 -#, python-format -msgid "Shared with you and the group %s by %s" -msgstr "Compartido contigo y el grupo %s por %s" +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" +msgstr "" #: js/share.js:132 -#, python-format -msgid "Shared with you by %s" -msgstr "Compartido contigo por %s" +msgid "Shared with you by" +msgstr "" #: js/share.js:137 msgid "Share with" @@ -166,9 +168,8 @@ msgid "Expiration date" msgstr "Fecha de caducidad" #: js/share.js:185 -#, python-format -msgid "Share via email: %s" -msgstr "Compartir por email: %s" +msgid "Share via email:" +msgstr "" #: js/share.js:187 msgid "No people found" @@ -179,9 +180,12 @@ msgid "Resharing is not allowed" msgstr "No se permite compartir de nuevo" #: js/share.js:250 -#, python-format -msgid "Shared in %s with %s" -msgstr "Compartido en %s con %s" +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" +msgstr "" #: js/share.js:271 msgid "Unshare" @@ -217,7 +221,7 @@ msgstr "Protegido por contraseña" #: js/share.js:489 msgid "Error unsetting expiration date" -msgstr "" +msgstr "Error al eliminar la fecha de caducidad" #: js/share.js:501 msgid "Error setting expiration date" @@ -353,7 +357,7 @@ msgstr "Completar la instalación" msgid "web services under your control" msgstr "servicios web bajo tu control" -#: templates/layout.user.php:39 +#: templates/layout.user.php:34 msgid "Log out" msgstr "Salir" diff --git a/l10n/es/files.po b/l10n/es/files.po index bf95c6eda2b..edab4fc1363 100644 --- a/l10n/es/files.po +++ b/l10n/es/files.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-26 13:19+0200\n" -"PO-Revision-Date: 2012-09-26 11:20+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 18:08+0000\n" +"Last-Translator: scambra \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" @@ -122,11 +122,11 @@ msgstr "Pendiente" #: js/files.js:256 msgid "1 file uploading" -msgstr "" +msgstr "subiendo 1 archivo" #: js/files.js:259 js/files.js:304 js/files.js:319 msgid "files uploading" -msgstr "" +msgstr "archivos subiendo" #: js/files.js:322 js/files.js:355 msgid "Upload cancelled." @@ -141,81 +141,81 @@ msgstr "La subida del archivo está en proceso. Salir de la página ahora cancel msgid "Invalid name, '/' is not allowed." msgstr "Nombre no válido, '/' no está permitido." -#: js/files.js:667 +#: js/files.js:668 msgid "files scanned" msgstr "archivos escaneados" -#: js/files.js:675 +#: js/files.js:676 msgid "error while scanning" msgstr "error escaneando" -#: js/files.js:748 templates/index.php:48 +#: js/files.js:749 templates/index.php:48 msgid "Name" msgstr "Nombre" -#: js/files.js:749 templates/index.php:56 +#: js/files.js:750 templates/index.php:56 msgid "Size" msgstr "Tamaño" -#: js/files.js:750 templates/index.php:58 +#: js/files.js:751 templates/index.php:58 msgid "Modified" msgstr "Modificado" -#: js/files.js:777 +#: js/files.js:778 msgid "folder" msgstr "carpeta" -#: js/files.js:779 +#: js/files.js:780 msgid "folders" msgstr "carpetas" -#: js/files.js:787 +#: js/files.js:788 msgid "file" msgstr "archivo" -#: js/files.js:789 +#: js/files.js:790 msgid "files" msgstr "archivos" -#: js/files.js:833 +#: js/files.js:834 msgid "seconds ago" -msgstr "" +msgstr "hace segundos" -#: js/files.js:834 +#: js/files.js:835 msgid "minute ago" -msgstr "" +msgstr "minuto" -#: js/files.js:835 +#: js/files.js:836 msgid "minutes ago" -msgstr "" +msgstr "hace minutos" -#: js/files.js:838 +#: js/files.js:839 msgid "today" -msgstr "" +msgstr "hoy" -#: js/files.js:839 +#: js/files.js:840 msgid "yesterday" -msgstr "" +msgstr "ayer" -#: js/files.js:840 +#: js/files.js:841 msgid "days ago" -msgstr "" +msgstr "días" -#: js/files.js:841 +#: js/files.js:842 msgid "last month" -msgstr "" +msgstr "mes pasado" -#: js/files.js:843 +#: js/files.js:844 msgid "months ago" -msgstr "" +msgstr "hace meses" -#: js/files.js:844 +#: js/files.js:845 msgid "last year" -msgstr "" +msgstr "año pasado" -#: js/files.js:845 +#: js/files.js:846 msgid "years ago" -msgstr "" +msgstr "hace años" #: templates/admin.php:5 msgid "File handling" diff --git a/l10n/es_AR/core.po b/l10n/es_AR/core.po index 293c4ea0a8d..ef8c5200cb4 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: 2012-09-26 13:19+0200\n" -"PO-Revision-Date: 2012-09-26 11:19+0000\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+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" @@ -30,7 +30,7 @@ msgstr "¿Ninguna categoría para añadir?" msgid "This category already exists: " msgstr "Esta categoría ya existe: " -#: js/js.js:213 templates/layout.user.php:54 templates/layout.user.php:55 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Ajustes" @@ -124,14 +124,16 @@ msgid "Error while changing permissions" msgstr "Error al cambiar permisos" #: js/share.js:130 -#, python-format -msgid "Shared with you and the group %s by %s" -msgstr "Compartido con vos y con el grupo %s por %s" +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" +msgstr "" #: js/share.js:132 -#, python-format -msgid "Shared with you by %s" -msgstr "Compartido con vos por %s" +msgid "Shared with you by" +msgstr "" #: js/share.js:137 msgid "Share with" @@ -158,9 +160,8 @@ msgid "Expiration date" msgstr "Fecha de vencimiento" #: js/share.js:185 -#, python-format -msgid "Share via email: %s" -msgstr "Compartir por e-mail: %s" +msgid "Share via email:" +msgstr "" #: js/share.js:187 msgid "No people found" @@ -171,9 +172,12 @@ msgid "Resharing is not allowed" msgstr "No se permite volver a compartir" #: js/share.js:250 -#, python-format -msgid "Shared in %s with %s" -msgstr "Compartido en %s con %s" +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" +msgstr "" #: js/share.js:271 msgid "Unshare" @@ -209,7 +213,7 @@ msgstr "Protegido por contraseña" #: js/share.js:489 msgid "Error unsetting expiration date" -msgstr "" +msgstr "Error al remover la fecha de caducidad" #: js/share.js:501 msgid "Error setting expiration date" @@ -345,7 +349,7 @@ msgstr "Completar la instalación" msgid "web services under your control" msgstr "servicios web sobre los que tenés control" -#: templates/layout.user.php:39 +#: templates/layout.user.php:34 msgid "Log out" msgstr "Cerrar la sesión" diff --git a/l10n/es_AR/files.po b/l10n/es_AR/files.po index d9fa52732c7..072de5c06f6 100644 --- a/l10n/es_AR/files.po +++ b/l10n/es_AR/files.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-26 13:19+0200\n" -"PO-Revision-Date: 2012-09-26 11:20+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 09:21+0000\n" +"Last-Translator: cjtess \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -118,11 +118,11 @@ msgstr "Pendiente" #: js/files.js:256 msgid "1 file uploading" -msgstr "" +msgstr "Subiendo 1 archivo" #: js/files.js:259 js/files.js:304 js/files.js:319 msgid "files uploading" -msgstr "" +msgstr "Subiendo archivos" #: js/files.js:322 js/files.js:355 msgid "Upload cancelled." @@ -137,81 +137,81 @@ msgstr "La subida del archivo está en proceso. Si salís de la página ahora, l msgid "Invalid name, '/' is not allowed." msgstr "Nombre no válido, '/' no está permitido." -#: js/files.js:667 +#: js/files.js:668 msgid "files scanned" msgstr "archivos escaneados" -#: js/files.js:675 +#: js/files.js:676 msgid "error while scanning" msgstr "error mientras se escaneaba" -#: js/files.js:748 templates/index.php:48 +#: js/files.js:749 templates/index.php:48 msgid "Name" msgstr "Nombre" -#: js/files.js:749 templates/index.php:56 +#: js/files.js:750 templates/index.php:56 msgid "Size" msgstr "Tamaño" -#: js/files.js:750 templates/index.php:58 +#: js/files.js:751 templates/index.php:58 msgid "Modified" msgstr "Modificado" -#: js/files.js:777 +#: js/files.js:778 msgid "folder" msgstr "carpeta" -#: js/files.js:779 +#: js/files.js:780 msgid "folders" msgstr "carpetas" -#: js/files.js:787 +#: js/files.js:788 msgid "file" msgstr "archivo" -#: js/files.js:789 +#: js/files.js:790 msgid "files" msgstr "archivos" -#: js/files.js:833 +#: js/files.js:834 msgid "seconds ago" -msgstr "" +msgstr "segundos atrás" -#: js/files.js:834 +#: js/files.js:835 msgid "minute ago" -msgstr "" +msgstr "hace un minuto" -#: js/files.js:835 +#: js/files.js:836 msgid "minutes ago" -msgstr "" +msgstr "minutos atrás" -#: js/files.js:838 +#: js/files.js:839 msgid "today" -msgstr "" +msgstr "hoy" -#: js/files.js:839 +#: js/files.js:840 msgid "yesterday" -msgstr "" +msgstr "ayer" -#: js/files.js:840 +#: js/files.js:841 msgid "days ago" -msgstr "" +msgstr "días atrás" -#: js/files.js:841 +#: js/files.js:842 msgid "last month" -msgstr "" +msgstr "el mes pasado" -#: js/files.js:843 +#: js/files.js:844 msgid "months ago" -msgstr "" +msgstr "meses atrás" -#: js/files.js:844 +#: js/files.js:845 msgid "last year" -msgstr "" +msgstr "el año pasado" -#: js/files.js:845 +#: js/files.js:846 msgid "years ago" -msgstr "" +msgstr "años atrás" #: templates/admin.php:5 msgid "File handling" diff --git a/l10n/et_EE/core.po b/l10n/et_EE/core.po index b25838396d9..81a2ab9c72d 100644 --- a/l10n/et_EE/core.po +++ b/l10n/et_EE/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: 2012-09-26 13:19+0200\n" -"PO-Revision-Date: 2012-09-26 11:19+0000\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+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" @@ -30,7 +30,7 @@ msgstr "Pole kategooriat, mida lisada?" msgid "This category already exists: " msgstr "See kategooria on juba olemas: " -#: js/js.js:213 templates/layout.user.php:54 templates/layout.user.php:55 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Seaded" @@ -124,13 +124,15 @@ msgid "Error while changing permissions" msgstr "" #: js/share.js:130 -#, python-format -msgid "Shared with you and the group %s by %s" +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" msgstr "" #: js/share.js:132 -#, python-format -msgid "Shared with you by %s" +msgid "Shared with you by" msgstr "" #: js/share.js:137 @@ -158,8 +160,7 @@ msgid "Expiration date" msgstr "" #: js/share.js:185 -#, python-format -msgid "Share via email: %s" +msgid "Share via email:" msgstr "" #: js/share.js:187 @@ -171,8 +172,11 @@ msgid "Resharing is not allowed" msgstr "" #: js/share.js:250 -#, python-format -msgid "Shared in %s with %s" +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" msgstr "" #: js/share.js:271 @@ -345,7 +349,7 @@ msgstr "Lõpeta seadistamine" msgid "web services under your control" msgstr "veebiteenused sinu kontrolli all" -#: templates/layout.user.php:39 +#: templates/layout.user.php:34 msgid "Log out" msgstr "Logi välja" diff --git a/l10n/eu/core.po b/l10n/eu/core.po index 362ba4eacc9..edfc25de834 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: 2012-09-26 13:19+0200\n" -"PO-Revision-Date: 2012-09-26 11:19+0000\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+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" @@ -31,7 +31,7 @@ msgstr "Ez dago gehitzeko kategoriarik?" msgid "This category already exists: " msgstr "Kategoria hau dagoeneko existitzen da:" -#: js/js.js:213 templates/layout.user.php:54 templates/layout.user.php:55 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Ezarpenak" @@ -125,14 +125,16 @@ msgid "Error while changing permissions" msgstr "Errore bat egon da baimenak aldatzean" #: js/share.js:130 -#, python-format -msgid "Shared with you and the group %s by %s" -msgstr "Zurekin eta %s taldearekin %sk elkarbanatuta" +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" +msgstr "" #: js/share.js:132 -#, python-format -msgid "Shared with you by %s" -msgstr "%sk zurekin elkarbanatuta" +msgid "Shared with you by" +msgstr "" #: js/share.js:137 msgid "Share with" @@ -159,9 +161,8 @@ msgid "Expiration date" msgstr "Muga data" #: js/share.js:185 -#, python-format -msgid "Share via email: %s" -msgstr "Elkarbanatu eposta bidez: %s" +msgid "Share via email:" +msgstr "" #: js/share.js:187 msgid "No people found" @@ -172,9 +173,12 @@ msgid "Resharing is not allowed" msgstr "Berriz elkarbanatzea ez dago baimendua" #: js/share.js:250 -#, python-format -msgid "Shared in %s with %s" -msgstr "Elkarbanatuta hemen %s %srekin" +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" +msgstr "" #: js/share.js:271 msgid "Unshare" @@ -346,7 +350,7 @@ msgstr "Bukatu konfigurazioa" msgid "web services under your control" msgstr "web zerbitzuak zure kontrolpean" -#: templates/layout.user.php:39 +#: templates/layout.user.php:34 msgid "Log out" msgstr "Saioa bukatu" diff --git a/l10n/eu_ES/core.po b/l10n/eu_ES/core.po index 90159b6d7eb..96133924d3e 100644 --- a/l10n/eu_ES/core.po +++ b/l10n/eu_ES/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-26 13:19+0200\n" -"PO-Revision-Date: 2012-09-26 11:19+0000\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" "MIME-Version: 1.0\n" @@ -29,7 +29,7 @@ msgstr "" msgid "This category already exists: " msgstr "" -#: js/js.js:213 templates/layout.user.php:54 templates/layout.user.php:55 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "" @@ -123,13 +123,15 @@ msgid "Error while changing permissions" msgstr "" #: js/share.js:130 -#, python-format -msgid "Shared with you and the group %s by %s" +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" msgstr "" #: js/share.js:132 -#, python-format -msgid "Shared with you by %s" +msgid "Shared with you by" msgstr "" #: js/share.js:137 @@ -157,8 +159,7 @@ msgid "Expiration date" msgstr "" #: js/share.js:185 -#, python-format -msgid "Share via email: %s" +msgid "Share via email:" msgstr "" #: js/share.js:187 @@ -170,8 +171,11 @@ msgid "Resharing is not allowed" msgstr "" #: js/share.js:250 -#, python-format -msgid "Shared in %s with %s" +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" msgstr "" #: js/share.js:271 @@ -344,7 +348,7 @@ msgstr "" msgid "web services under your control" msgstr "" -#: templates/layout.user.php:39 +#: templates/layout.user.php:34 msgid "Log out" msgstr "" diff --git a/l10n/fa/core.po b/l10n/fa/core.po index 9ad02702752..18c5c3f42c9 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: 2012-09-26 13:19+0200\n" -"PO-Revision-Date: 2012-09-26 11:19+0000\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+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" @@ -30,7 +30,7 @@ msgstr "آیا گروه دیگری برای افزودن ندارید" msgid "This category already exists: " msgstr "این گروه از قبل اضافه شده" -#: js/js.js:213 templates/layout.user.php:54 templates/layout.user.php:55 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "تنظیمات" @@ -124,13 +124,15 @@ msgid "Error while changing permissions" msgstr "" #: js/share.js:130 -#, python-format -msgid "Shared with you and the group %s by %s" +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" msgstr "" #: js/share.js:132 -#, python-format -msgid "Shared with you by %s" +msgid "Shared with you by" msgstr "" #: js/share.js:137 @@ -158,8 +160,7 @@ msgid "Expiration date" msgstr "" #: js/share.js:185 -#, python-format -msgid "Share via email: %s" +msgid "Share via email:" msgstr "" #: js/share.js:187 @@ -171,8 +172,11 @@ msgid "Resharing is not allowed" msgstr "" #: js/share.js:250 -#, python-format -msgid "Shared in %s with %s" +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" msgstr "" #: js/share.js:271 @@ -345,7 +349,7 @@ msgstr "اتمام نصب" msgid "web services under your control" msgstr "سرویس وب تحت کنترل شما" -#: templates/layout.user.php:39 +#: templates/layout.user.php:34 msgid "Log out" msgstr "خروج" diff --git a/l10n/fi/core.po b/l10n/fi/core.po index 83ec4de4736..f44a41d09a2 100644 --- a/l10n/fi/core.po +++ b/l10n/fi/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-26 13:19+0200\n" -"PO-Revision-Date: 2012-09-26 11:19+0000\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (http://www.transifex.com/projects/p/owncloud/language/fi/)\n" "MIME-Version: 1.0\n" @@ -29,7 +29,7 @@ msgstr "" msgid "This category already exists: " msgstr "" -#: js/js.js:213 templates/layout.user.php:54 templates/layout.user.php:55 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "" @@ -123,13 +123,15 @@ msgid "Error while changing permissions" msgstr "" #: js/share.js:130 -#, python-format -msgid "Shared with you and the group %s by %s" +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" msgstr "" #: js/share.js:132 -#, python-format -msgid "Shared with you by %s" +msgid "Shared with you by" msgstr "" #: js/share.js:137 @@ -157,8 +159,7 @@ msgid "Expiration date" msgstr "" #: js/share.js:185 -#, python-format -msgid "Share via email: %s" +msgid "Share via email:" msgstr "" #: js/share.js:187 @@ -170,8 +171,11 @@ msgid "Resharing is not allowed" msgstr "" #: js/share.js:250 -#, python-format -msgid "Shared in %s with %s" +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" msgstr "" #: js/share.js:271 @@ -344,7 +348,7 @@ msgstr "" msgid "web services under your control" msgstr "" -#: templates/layout.user.php:39 +#: templates/layout.user.php:34 msgid "Log out" msgstr "" diff --git a/l10n/fi_FI/core.po b/l10n/fi_FI/core.po index c05f184baba..b7981285b1c 100644 --- a/l10n/fi_FI/core.po +++ b/l10n/fi_FI/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: 2012-09-26 13:19+0200\n" -"PO-Revision-Date: 2012-09-26 11:19+0000\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+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" @@ -35,7 +35,7 @@ msgstr "Ei lisättävää luokkaa?" msgid "This category already exists: " msgstr "Tämä luokka on jo olemassa: " -#: js/js.js:213 templates/layout.user.php:54 templates/layout.user.php:55 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Asetukset" @@ -129,13 +129,15 @@ msgid "Error while changing permissions" msgstr "Virhe oikeuksia muuttaessa" #: js/share.js:130 -#, python-format -msgid "Shared with you and the group %s by %s" +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" msgstr "" #: js/share.js:132 -#, python-format -msgid "Shared with you by %s" +msgid "Shared with you by" msgstr "" #: js/share.js:137 @@ -163,9 +165,8 @@ msgid "Expiration date" msgstr "Päättymispäivä" #: js/share.js:185 -#, python-format -msgid "Share via email: %s" -msgstr "Jaa sähköpostitse: %s" +msgid "Share via email:" +msgstr "" #: js/share.js:187 msgid "No people found" @@ -176,8 +177,11 @@ msgid "Resharing is not allowed" msgstr "Jakaminen uudelleen ei ole salittu" #: js/share.js:250 -#, python-format -msgid "Shared in %s with %s" +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" msgstr "" #: js/share.js:271 @@ -350,7 +354,7 @@ msgstr "Viimeistele asennus" msgid "web services under your control" msgstr "verkkopalvelut hallinnassasi" -#: templates/layout.user.php:39 +#: templates/layout.user.php:34 msgid "Log out" msgstr "Kirjaudu ulos" diff --git a/l10n/fr/core.po b/l10n/fr/core.po index 62dfb286cb0..1af28feae42 100644 --- a/l10n/fr/core.po +++ b/l10n/fr/core.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-27 02:01+0200\n" -"PO-Revision-Date: 2012-09-26 13:01+0000\n" -"Last-Translator: Christophe Lherieau \n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+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" @@ -36,7 +36,7 @@ msgstr "Pas de catégorie à ajouter ?" msgid "This category already exists: " msgstr "Cette catégorie existe déjà : " -#: js/js.js:213 templates/layout.user.php:54 templates/layout.user.php:55 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Paramètres" @@ -130,14 +130,16 @@ msgid "Error while changing permissions" msgstr "Erreur lors du changement des permissions" #: js/share.js:130 -#, python-format -msgid "Shared with you and the group %s by %s" -msgstr "Partagé avec vous ainsi qu'avec le groupe %s par %s" +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" +msgstr "" #: js/share.js:132 -#, python-format -msgid "Shared with you by %s" -msgstr "Partagé avec vous par %s" +msgid "Shared with you by" +msgstr "" #: js/share.js:137 msgid "Share with" @@ -164,9 +166,8 @@ msgid "Expiration date" msgstr "Date d'expiration" #: js/share.js:185 -#, python-format -msgid "Share via email: %s" -msgstr "Partager via email : %s" +msgid "Share via email:" +msgstr "" #: js/share.js:187 msgid "No people found" @@ -177,9 +178,12 @@ msgid "Resharing is not allowed" msgstr "Le repartage n'est pas autorisé" #: js/share.js:250 -#, python-format -msgid "Shared in %s with %s" -msgstr "Partagé dans %s avec %s" +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" +msgstr "" #: js/share.js:271 msgid "Unshare" @@ -351,7 +355,7 @@ msgstr "Terminer l'installation" msgid "web services under your control" msgstr "services web sous votre contrôle" -#: templates/layout.user.php:39 +#: templates/layout.user.php:34 msgid "Log out" msgstr "Se déconnecter" diff --git a/l10n/gl/core.po b/l10n/gl/core.po index 2e230cf3841..e1324b3c423 100644 --- a/l10n/gl/core.po +++ b/l10n/gl/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-26 13:19+0200\n" -"PO-Revision-Date: 2012-09-26 11:19+0000\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+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" @@ -31,7 +31,7 @@ msgstr "Sen categoría que engadir?" msgid "This category already exists: " msgstr "Esta categoría xa existe: " -#: js/js.js:213 templates/layout.user.php:54 templates/layout.user.php:55 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Preferencias" @@ -125,13 +125,15 @@ msgid "Error while changing permissions" msgstr "" #: js/share.js:130 -#, python-format -msgid "Shared with you and the group %s by %s" +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" msgstr "" #: js/share.js:132 -#, python-format -msgid "Shared with you by %s" +msgid "Shared with you by" msgstr "" #: js/share.js:137 @@ -159,8 +161,7 @@ msgid "Expiration date" msgstr "" #: js/share.js:185 -#, python-format -msgid "Share via email: %s" +msgid "Share via email:" msgstr "" #: js/share.js:187 @@ -172,8 +173,11 @@ msgid "Resharing is not allowed" msgstr "" #: js/share.js:250 -#, python-format -msgid "Shared in %s with %s" +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" msgstr "" #: js/share.js:271 @@ -346,7 +350,7 @@ msgstr "Rematar configuración" msgid "web services under your control" msgstr "servizos web baixo o seu control" -#: templates/layout.user.php:39 +#: templates/layout.user.php:34 msgid "Log out" msgstr "Desconectar" diff --git a/l10n/he/core.po b/l10n/he/core.po index 2e2804156e1..715be471e84 100644 --- a/l10n/he/core.po +++ b/l10n/he/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: 2012-09-26 13:19+0200\n" -"PO-Revision-Date: 2012-09-26 11:19+0000\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+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" @@ -33,7 +33,7 @@ msgstr "אין קטגוריה להוספה?" msgid "This category already exists: " msgstr "קטגוריה זאת כבר קיימת: " -#: js/js.js:213 templates/layout.user.php:54 templates/layout.user.php:55 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "הגדרות" @@ -127,13 +127,15 @@ msgid "Error while changing permissions" msgstr "" #: js/share.js:130 -#, python-format -msgid "Shared with you and the group %s by %s" +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" msgstr "" #: js/share.js:132 -#, python-format -msgid "Shared with you by %s" +msgid "Shared with you by" msgstr "" #: js/share.js:137 @@ -161,8 +163,7 @@ msgid "Expiration date" msgstr "" #: js/share.js:185 -#, python-format -msgid "Share via email: %s" +msgid "Share via email:" msgstr "" #: js/share.js:187 @@ -174,8 +175,11 @@ msgid "Resharing is not allowed" msgstr "" #: js/share.js:250 -#, python-format -msgid "Shared in %s with %s" +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" msgstr "" #: js/share.js:271 @@ -348,7 +352,7 @@ msgstr "סיום התקנה" msgid "web services under your control" msgstr "שירותי רשת בשליטתך" -#: templates/layout.user.php:39 +#: templates/layout.user.php:34 msgid "Log out" msgstr "התנתקות" diff --git a/l10n/hi/core.po b/l10n/hi/core.po index db209506b1e..b6cb8ef89be 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: 2012-09-26 13:19+0200\n" -"PO-Revision-Date: 2012-09-26 11:19+0000\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+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" @@ -30,7 +30,7 @@ msgstr "" msgid "This category already exists: " msgstr "" -#: js/js.js:213 templates/layout.user.php:54 templates/layout.user.php:55 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "" @@ -124,13 +124,15 @@ msgid "Error while changing permissions" msgstr "" #: js/share.js:130 -#, python-format -msgid "Shared with you and the group %s by %s" +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" msgstr "" #: js/share.js:132 -#, python-format -msgid "Shared with you by %s" +msgid "Shared with you by" msgstr "" #: js/share.js:137 @@ -158,8 +160,7 @@ msgid "Expiration date" msgstr "" #: js/share.js:185 -#, python-format -msgid "Share via email: %s" +msgid "Share via email:" msgstr "" #: js/share.js:187 @@ -171,8 +172,11 @@ msgid "Resharing is not allowed" msgstr "" #: js/share.js:250 -#, python-format -msgid "Shared in %s with %s" +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" msgstr "" #: js/share.js:271 @@ -345,7 +349,7 @@ msgstr "सेटअप समाप्त करे" msgid "web services under your control" msgstr "" -#: templates/layout.user.php:39 +#: templates/layout.user.php:34 msgid "Log out" msgstr "" diff --git a/l10n/hr/core.po b/l10n/hr/core.po index f7dd68bec9a..79c1221b889 100644 --- a/l10n/hr/core.po +++ b/l10n/hr/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: 2012-09-26 13:19+0200\n" -"PO-Revision-Date: 2012-09-26 11:19+0000\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+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" @@ -32,7 +32,7 @@ msgstr "Nemate kategorija koje možete dodati?" msgid "This category already exists: " msgstr "Ova kategorija već postoji: " -#: js/js.js:213 templates/layout.user.php:54 templates/layout.user.php:55 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Postavke" @@ -126,13 +126,15 @@ msgid "Error while changing permissions" msgstr "" #: js/share.js:130 -#, python-format -msgid "Shared with you and the group %s by %s" +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" msgstr "" #: js/share.js:132 -#, python-format -msgid "Shared with you by %s" +msgid "Shared with you by" msgstr "" #: js/share.js:137 @@ -160,8 +162,7 @@ msgid "Expiration date" msgstr "" #: js/share.js:185 -#, python-format -msgid "Share via email: %s" +msgid "Share via email:" msgstr "" #: js/share.js:187 @@ -173,8 +174,11 @@ msgid "Resharing is not allowed" msgstr "" #: js/share.js:250 -#, python-format -msgid "Shared in %s with %s" +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" msgstr "" #: js/share.js:271 @@ -347,7 +351,7 @@ msgstr "Završi postavljanje" msgid "web services under your control" msgstr "web usluge pod vašom kontrolom" -#: templates/layout.user.php:39 +#: templates/layout.user.php:34 msgid "Log out" msgstr "Odjava" diff --git a/l10n/hu_HU/core.po b/l10n/hu_HU/core.po index ab8e6e0442f..0b0e753c080 100644 --- a/l10n/hu_HU/core.po +++ b/l10n/hu_HU/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-26 13:19+0200\n" -"PO-Revision-Date: 2012-09-26 11:19+0000\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+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" @@ -32,7 +32,7 @@ msgstr "Nincs hozzáadandó kategória?" msgid "This category already exists: " msgstr "Ez a kategória már létezik" -#: js/js.js:213 templates/layout.user.php:54 templates/layout.user.php:55 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Beállítások" @@ -126,13 +126,15 @@ msgid "Error while changing permissions" msgstr "" #: js/share.js:130 -#, python-format -msgid "Shared with you and the group %s by %s" +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" msgstr "" #: js/share.js:132 -#, python-format -msgid "Shared with you by %s" +msgid "Shared with you by" msgstr "" #: js/share.js:137 @@ -160,8 +162,7 @@ msgid "Expiration date" msgstr "" #: js/share.js:185 -#, python-format -msgid "Share via email: %s" +msgid "Share via email:" msgstr "" #: js/share.js:187 @@ -173,8 +174,11 @@ msgid "Resharing is not allowed" msgstr "" #: js/share.js:250 -#, python-format -msgid "Shared in %s with %s" +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" msgstr "" #: js/share.js:271 @@ -347,7 +351,7 @@ msgstr "Beállítás befejezése" msgid "web services under your control" msgstr "webszolgáltatások az irányításod alatt" -#: templates/layout.user.php:39 +#: templates/layout.user.php:34 msgid "Log out" msgstr "Kilépés" diff --git a/l10n/hy/core.po b/l10n/hy/core.po index e66e40ad9b0..7a03a8bcd29 100644 --- a/l10n/hy/core.po +++ b/l10n/hy/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-26 13:19+0200\n" -"PO-Revision-Date: 2012-09-26 11:19+0000\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+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,7 +29,7 @@ msgstr "" msgid "This category already exists: " msgstr "" -#: js/js.js:213 templates/layout.user.php:54 templates/layout.user.php:55 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "" @@ -123,13 +123,15 @@ msgid "Error while changing permissions" msgstr "" #: js/share.js:130 -#, python-format -msgid "Shared with you and the group %s by %s" +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" msgstr "" #: js/share.js:132 -#, python-format -msgid "Shared with you by %s" +msgid "Shared with you by" msgstr "" #: js/share.js:137 @@ -157,8 +159,7 @@ msgid "Expiration date" msgstr "" #: js/share.js:185 -#, python-format -msgid "Share via email: %s" +msgid "Share via email:" msgstr "" #: js/share.js:187 @@ -170,8 +171,11 @@ msgid "Resharing is not allowed" msgstr "" #: js/share.js:250 -#, python-format -msgid "Shared in %s with %s" +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" msgstr "" #: js/share.js:271 @@ -344,7 +348,7 @@ msgstr "" msgid "web services under your control" msgstr "" -#: templates/layout.user.php:39 +#: templates/layout.user.php:34 msgid "Log out" msgstr "" diff --git a/l10n/ia/core.po b/l10n/ia/core.po index f80f339b306..76ea29ba15c 100644 --- a/l10n/ia/core.po +++ b/l10n/ia/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: 2012-09-26 13:19+0200\n" -"PO-Revision-Date: 2012-09-26 11:19+0000\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+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" @@ -30,7 +30,7 @@ msgstr "" msgid "This category already exists: " msgstr "Iste categoria jam existe:" -#: js/js.js:213 templates/layout.user.php:54 templates/layout.user.php:55 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Configurationes" @@ -124,13 +124,15 @@ msgid "Error while changing permissions" msgstr "" #: js/share.js:130 -#, python-format -msgid "Shared with you and the group %s by %s" +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" msgstr "" #: js/share.js:132 -#, python-format -msgid "Shared with you by %s" +msgid "Shared with you by" msgstr "" #: js/share.js:137 @@ -158,8 +160,7 @@ msgid "Expiration date" msgstr "" #: js/share.js:185 -#, python-format -msgid "Share via email: %s" +msgid "Share via email:" msgstr "" #: js/share.js:187 @@ -171,8 +172,11 @@ msgid "Resharing is not allowed" msgstr "" #: js/share.js:250 -#, python-format -msgid "Shared in %s with %s" +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" msgstr "" #: js/share.js:271 @@ -345,7 +349,7 @@ msgstr "" msgid "web services under your control" msgstr "servicios web sub tu controlo" -#: templates/layout.user.php:39 +#: templates/layout.user.php:34 msgid "Log out" msgstr "Clauder le session" diff --git a/l10n/id/core.po b/l10n/id/core.po index 94839eb6b73..1cd079372c4 100644 --- a/l10n/id/core.po +++ b/l10n/id/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: 2012-09-26 13:19+0200\n" -"PO-Revision-Date: 2012-09-26 11:19+0000\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+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" @@ -32,7 +32,7 @@ msgstr "Tidak ada kategori yang akan ditambahkan?" msgid "This category already exists: " msgstr "Kategori ini sudah ada:" -#: js/js.js:213 templates/layout.user.php:54 templates/layout.user.php:55 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Setelan" @@ -126,13 +126,15 @@ msgid "Error while changing permissions" msgstr "" #: js/share.js:130 -#, python-format -msgid "Shared with you and the group %s by %s" +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" msgstr "" #: js/share.js:132 -#, python-format -msgid "Shared with you by %s" +msgid "Shared with you by" msgstr "" #: js/share.js:137 @@ -160,8 +162,7 @@ msgid "Expiration date" msgstr "" #: js/share.js:185 -#, python-format -msgid "Share via email: %s" +msgid "Share via email:" msgstr "" #: js/share.js:187 @@ -173,8 +174,11 @@ msgid "Resharing is not allowed" msgstr "" #: js/share.js:250 -#, python-format -msgid "Shared in %s with %s" +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" msgstr "" #: js/share.js:271 @@ -347,7 +351,7 @@ msgstr "Selesaikan instalasi" msgid "web services under your control" msgstr "web service dibawah kontrol anda" -#: templates/layout.user.php:39 +#: templates/layout.user.php:34 msgid "Log out" msgstr "Keluar" diff --git a/l10n/id_ID/core.po b/l10n/id_ID/core.po index c1149aaeb2c..d0c351df95d 100644 --- a/l10n/id_ID/core.po +++ b/l10n/id_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: 2012-09-26 13:19+0200\n" -"PO-Revision-Date: 2012-09-26 11:19+0000\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (Indonesia) (http://www.transifex.com/projects/p/owncloud/language/id_ID/)\n" "MIME-Version: 1.0\n" @@ -29,7 +29,7 @@ msgstr "" msgid "This category already exists: " msgstr "" -#: js/js.js:213 templates/layout.user.php:54 templates/layout.user.php:55 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "" @@ -123,13 +123,15 @@ msgid "Error while changing permissions" msgstr "" #: js/share.js:130 -#, python-format -msgid "Shared with you and the group %s by %s" +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" msgstr "" #: js/share.js:132 -#, python-format -msgid "Shared with you by %s" +msgid "Shared with you by" msgstr "" #: js/share.js:137 @@ -157,8 +159,7 @@ msgid "Expiration date" msgstr "" #: js/share.js:185 -#, python-format -msgid "Share via email: %s" +msgid "Share via email:" msgstr "" #: js/share.js:187 @@ -170,8 +171,11 @@ msgid "Resharing is not allowed" msgstr "" #: js/share.js:250 -#, python-format -msgid "Shared in %s with %s" +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" msgstr "" #: js/share.js:271 @@ -344,7 +348,7 @@ msgstr "" msgid "web services under your control" msgstr "" -#: templates/layout.user.php:39 +#: templates/layout.user.php:34 msgid "Log out" msgstr "" diff --git a/l10n/it/core.po b/l10n/it/core.po index 2c15ee03263..d0bd8e8b709 100644 --- a/l10n/it/core.po +++ b/l10n/it/core.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-27 02:01+0200\n" -"PO-Revision-Date: 2012-09-26 11:52+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+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" @@ -34,7 +34,7 @@ msgstr "Nessuna categoria da aggiungere?" msgid "This category already exists: " msgstr "Questa categoria esiste già: " -#: js/js.js:213 templates/layout.user.php:54 templates/layout.user.php:55 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Impostazioni" @@ -128,14 +128,16 @@ msgid "Error while changing permissions" msgstr "Errore durante la modifica dei permessi" #: js/share.js:130 -#, python-format -msgid "Shared with you and the group %s by %s" -msgstr "Condivisa con te e con il gruppo %s da %s" +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" +msgstr "" #: js/share.js:132 -#, python-format -msgid "Shared with you by %s" -msgstr "Condiviso con te da %s" +msgid "Shared with you by" +msgstr "" #: js/share.js:137 msgid "Share with" @@ -162,9 +164,8 @@ msgid "Expiration date" msgstr "Data di scadenza" #: js/share.js:185 -#, python-format -msgid "Share via email: %s" -msgstr "Condividi tramite email: %s" +msgid "Share via email:" +msgstr "" #: js/share.js:187 msgid "No people found" @@ -175,9 +176,12 @@ msgid "Resharing is not allowed" msgstr "La ri-condivisione non è consentita" #: js/share.js:250 -#, python-format -msgid "Shared in %s with %s" -msgstr "Condiviso in %s con %s" +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" +msgstr "" #: js/share.js:271 msgid "Unshare" @@ -349,7 +353,7 @@ msgstr "Termina la configurazione" msgid "web services under your control" msgstr "servizi web nelle tue mani" -#: templates/layout.user.php:39 +#: templates/layout.user.php:34 msgid "Log out" msgstr "Esci" diff --git a/l10n/ja_JP/core.po b/l10n/ja_JP/core.po index 8a0aa16cedb..438ce437a40 100644 --- a/l10n/ja_JP/core.po +++ b/l10n/ja_JP/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: 2012-09-28 02:02+0200\n" -"PO-Revision-Date: 2012-09-27 00:52+0000\n" -"Last-Translator: Daisuke Deguchi \n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+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" @@ -31,7 +31,7 @@ msgstr "追加するカテゴリはありませんか?" msgid "This category already exists: " msgstr "このカテゴリはすでに存在します: " -#: js/js.js:213 templates/layout.user.php:54 templates/layout.user.php:55 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "設定" @@ -125,14 +125,16 @@ msgid "Error while changing permissions" msgstr "権限変更でエラー発生" #: js/share.js:130 -#, python-format -msgid "Shared with you and the group %s by %s" -msgstr "あなたと %s グループが %s で共有しています" +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" +msgstr "" #: js/share.js:132 -#, python-format -msgid "Shared with you by %s" -msgstr "あなたと %s で共有しています" +msgid "Shared with you by" +msgstr "" #: js/share.js:137 msgid "Share with" @@ -159,9 +161,8 @@ msgid "Expiration date" msgstr "有効期限" #: js/share.js:185 -#, python-format -msgid "Share via email: %s" -msgstr "メール経由で共有: %s" +msgid "Share via email:" +msgstr "" #: js/share.js:187 msgid "No people found" @@ -172,9 +173,12 @@ msgid "Resharing is not allowed" msgstr "再共有は許可されていません" #: js/share.js:250 -#, python-format -msgid "Shared in %s with %s" -msgstr "%s 内で %s と共有" +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" +msgstr "" #: js/share.js:271 msgid "Unshare" @@ -346,7 +350,7 @@ msgstr "セットアップを完了します" msgid "web services under your control" msgstr "管理下にあるウェブサービス" -#: templates/layout.user.php:39 +#: templates/layout.user.php:34 msgid "Log out" msgstr "ログアウト" diff --git a/l10n/ko/core.po b/l10n/ko/core.po index f4b827490cd..abd9275c62e 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: 2012-09-26 13:19+0200\n" -"PO-Revision-Date: 2012-09-26 11:19+0000\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+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" @@ -31,7 +31,7 @@ msgstr "추가할 카테고리가 없습니까?" msgid "This category already exists: " msgstr "이 카테고리는 이미 존재합니다:" -#: js/js.js:213 templates/layout.user.php:54 templates/layout.user.php:55 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "설정" @@ -125,13 +125,15 @@ msgid "Error while changing permissions" msgstr "" #: js/share.js:130 -#, python-format -msgid "Shared with you and the group %s by %s" +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" msgstr "" #: js/share.js:132 -#, python-format -msgid "Shared with you by %s" +msgid "Shared with you by" msgstr "" #: js/share.js:137 @@ -159,8 +161,7 @@ msgid "Expiration date" msgstr "" #: js/share.js:185 -#, python-format -msgid "Share via email: %s" +msgid "Share via email:" msgstr "" #: js/share.js:187 @@ -172,8 +173,11 @@ msgid "Resharing is not allowed" msgstr "" #: js/share.js:250 -#, python-format -msgid "Shared in %s with %s" +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" msgstr "" #: js/share.js:271 @@ -346,7 +350,7 @@ msgstr "설치 완료" msgid "web services under your control" msgstr "내가 관리하는 웹 서비스" -#: templates/layout.user.php:39 +#: templates/layout.user.php:34 msgid "Log out" msgstr "로그아웃" diff --git a/l10n/lb/core.po b/l10n/lb/core.po index 03dabc831c0..80b7b61b14c 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: 2012-09-26 13:19+0200\n" -"PO-Revision-Date: 2012-09-26 11:19+0000\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+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" @@ -30,7 +30,7 @@ msgstr "Keng Kategorie fir bäizesetzen?" msgid "This category already exists: " msgstr "Des Kategorie existéiert schonn:" -#: js/js.js:213 templates/layout.user.php:54 templates/layout.user.php:55 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Astellungen" @@ -124,13 +124,15 @@ msgid "Error while changing permissions" msgstr "" #: js/share.js:130 -#, python-format -msgid "Shared with you and the group %s by %s" +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" msgstr "" #: js/share.js:132 -#, python-format -msgid "Shared with you by %s" +msgid "Shared with you by" msgstr "" #: js/share.js:137 @@ -158,8 +160,7 @@ msgid "Expiration date" msgstr "" #: js/share.js:185 -#, python-format -msgid "Share via email: %s" +msgid "Share via email:" msgstr "" #: js/share.js:187 @@ -171,8 +172,11 @@ msgid "Resharing is not allowed" msgstr "" #: js/share.js:250 -#, python-format -msgid "Shared in %s with %s" +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" msgstr "" #: js/share.js:271 @@ -345,7 +349,7 @@ msgstr "Installatioun ofschléissen" msgid "web services under your control" msgstr "Web Servicer ënnert denger Kontroll" -#: templates/layout.user.php:39 +#: templates/layout.user.php:34 msgid "Log out" msgstr "Ausloggen" diff --git a/l10n/lt_LT/core.po b/l10n/lt_LT/core.po index 9667bcfd5ab..130c447211e 100644 --- a/l10n/lt_LT/core.po +++ b/l10n/lt_LT/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: 2012-09-26 13:19+0200\n" -"PO-Revision-Date: 2012-09-26 11:19+0000\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -30,7 +30,7 @@ msgstr "Nepridėsite jokios kategorijos?" msgid "This category already exists: " msgstr "Tokia kategorija jau yra:" -#: js/js.js:213 templates/layout.user.php:54 templates/layout.user.php:55 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Nustatymai" @@ -124,13 +124,15 @@ msgid "Error while changing permissions" msgstr "" #: js/share.js:130 -#, python-format -msgid "Shared with you and the group %s by %s" +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" msgstr "" #: js/share.js:132 -#, python-format -msgid "Shared with you by %s" +msgid "Shared with you by" msgstr "" #: js/share.js:137 @@ -158,8 +160,7 @@ msgid "Expiration date" msgstr "" #: js/share.js:185 -#, python-format -msgid "Share via email: %s" +msgid "Share via email:" msgstr "" #: js/share.js:187 @@ -171,8 +172,11 @@ msgid "Resharing is not allowed" msgstr "" #: js/share.js:250 -#, python-format -msgid "Shared in %s with %s" +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" msgstr "" #: js/share.js:271 @@ -345,7 +349,7 @@ msgstr "Baigti diegimą" msgid "web services under your control" msgstr "jūsų valdomos web paslaugos" -#: templates/layout.user.php:39 +#: templates/layout.user.php:34 msgid "Log out" msgstr "Atsijungti" diff --git a/l10n/lv/core.po b/l10n/lv/core.po index 4c661a94718..a28f72fdd52 100644 --- a/l10n/lv/core.po +++ b/l10n/lv/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-26 13:19+0200\n" -"PO-Revision-Date: 2012-09-26 11:19+0000\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+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" @@ -30,7 +30,7 @@ msgstr "" msgid "This category already exists: " msgstr "" -#: js/js.js:213 templates/layout.user.php:54 templates/layout.user.php:55 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Iestatījumi" @@ -124,13 +124,15 @@ msgid "Error while changing permissions" msgstr "" #: js/share.js:130 -#, python-format -msgid "Shared with you and the group %s by %s" +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" msgstr "" #: js/share.js:132 -#, python-format -msgid "Shared with you by %s" +msgid "Shared with you by" msgstr "" #: js/share.js:137 @@ -158,8 +160,7 @@ msgid "Expiration date" msgstr "" #: js/share.js:185 -#, python-format -msgid "Share via email: %s" +msgid "Share via email:" msgstr "" #: js/share.js:187 @@ -171,8 +172,11 @@ msgid "Resharing is not allowed" msgstr "" #: js/share.js:250 -#, python-format -msgid "Shared in %s with %s" +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" msgstr "" #: js/share.js:271 @@ -345,7 +349,7 @@ msgstr "Pabeigt uzstādījumus" msgid "web services under your control" msgstr "" -#: templates/layout.user.php:39 +#: templates/layout.user.php:34 msgid "Log out" msgstr "Izlogoties" diff --git a/l10n/mk/core.po b/l10n/mk/core.po index a85a1d1753c..367a70fb295 100644 --- a/l10n/mk/core.po +++ b/l10n/mk/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: 2012-09-26 13:19+0200\n" -"PO-Revision-Date: 2012-09-26 11:19+0000\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+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" @@ -32,7 +32,7 @@ msgstr "Нема категорија да се додаде?" msgid "This category already exists: " msgstr "Оваа категорија веќе постои:" -#: js/js.js:213 templates/layout.user.php:54 templates/layout.user.php:55 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Поставки" @@ -126,13 +126,15 @@ msgid "Error while changing permissions" msgstr "" #: js/share.js:130 -#, python-format -msgid "Shared with you and the group %s by %s" +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" msgstr "" #: js/share.js:132 -#, python-format -msgid "Shared with you by %s" +msgid "Shared with you by" msgstr "" #: js/share.js:137 @@ -160,8 +162,7 @@ msgid "Expiration date" msgstr "" #: js/share.js:185 -#, python-format -msgid "Share via email: %s" +msgid "Share via email:" msgstr "" #: js/share.js:187 @@ -173,8 +174,11 @@ msgid "Resharing is not allowed" msgstr "" #: js/share.js:250 -#, python-format -msgid "Shared in %s with %s" +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" msgstr "" #: js/share.js:271 @@ -347,7 +351,7 @@ msgstr "Заврши го подесувањето" msgid "web services under your control" msgstr "веб сервиси под Ваша контрола" -#: templates/layout.user.php:39 +#: templates/layout.user.php:34 msgid "Log out" msgstr "Одјава" diff --git a/l10n/ms_MY/core.po b/l10n/ms_MY/core.po index bb6dafd4e6a..006132e2091 100644 --- a/l10n/ms_MY/core.po +++ b/l10n/ms_MY/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: 2012-09-26 13:19+0200\n" -"PO-Revision-Date: 2012-09-26 11:19+0000\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+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" @@ -32,7 +32,7 @@ msgstr "Tiada kategori untuk di tambah?" msgid "This category already exists: " msgstr "Kategori ini telah wujud" -#: js/js.js:213 templates/layout.user.php:54 templates/layout.user.php:55 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Tetapan" @@ -126,13 +126,15 @@ msgid "Error while changing permissions" msgstr "" #: js/share.js:130 -#, python-format -msgid "Shared with you and the group %s by %s" +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" msgstr "" #: js/share.js:132 -#, python-format -msgid "Shared with you by %s" +msgid "Shared with you by" msgstr "" #: js/share.js:137 @@ -160,8 +162,7 @@ msgid "Expiration date" msgstr "" #: js/share.js:185 -#, python-format -msgid "Share via email: %s" +msgid "Share via email:" msgstr "" #: js/share.js:187 @@ -173,8 +174,11 @@ msgid "Resharing is not allowed" msgstr "" #: js/share.js:250 -#, python-format -msgid "Shared in %s with %s" +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" msgstr "" #: js/share.js:271 @@ -347,7 +351,7 @@ msgstr "Setup selesai" msgid "web services under your control" msgstr "Perkhidmatan web di bawah kawalan anda" -#: templates/layout.user.php:39 +#: templates/layout.user.php:34 msgid "Log out" msgstr "Log keluar" diff --git a/l10n/nb_NO/core.po b/l10n/nb_NO/core.po index c9cffeff5b7..3a89a7bb4bc 100644 --- a/l10n/nb_NO/core.po +++ b/l10n/nb_NO/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: 2012-09-26 13:19+0200\n" -"PO-Revision-Date: 2012-09-26 11:19+0000\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+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" @@ -34,7 +34,7 @@ msgstr "Ingen kategorier å legge til?" msgid "This category already exists: " msgstr "Denne kategorien finnes allerede:" -#: js/js.js:213 templates/layout.user.php:54 templates/layout.user.php:55 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Innstillinger" @@ -128,13 +128,15 @@ msgid "Error while changing permissions" msgstr "" #: js/share.js:130 -#, python-format -msgid "Shared with you and the group %s by %s" +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" msgstr "" #: js/share.js:132 -#, python-format -msgid "Shared with you by %s" +msgid "Shared with you by" msgstr "" #: js/share.js:137 @@ -162,8 +164,7 @@ msgid "Expiration date" msgstr "" #: js/share.js:185 -#, python-format -msgid "Share via email: %s" +msgid "Share via email:" msgstr "" #: js/share.js:187 @@ -175,8 +176,11 @@ msgid "Resharing is not allowed" msgstr "" #: js/share.js:250 -#, python-format -msgid "Shared in %s with %s" +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" msgstr "" #: js/share.js:271 @@ -349,7 +353,7 @@ msgstr "Fullfør oppsetting" msgid "web services under your control" msgstr "nettjenester under din kontroll" -#: templates/layout.user.php:39 +#: templates/layout.user.php:34 msgid "Log out" msgstr "Logg ut" diff --git a/l10n/nl/core.po b/l10n/nl/core.po index 1b07a9129f2..ab6365ed886 100644 --- a/l10n/nl/core.po +++ b/l10n/nl/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: 2012-09-26 13:19+0200\n" -"PO-Revision-Date: 2012-09-26 11:19+0000\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+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" @@ -37,7 +37,7 @@ msgstr "Geen categorie toevoegen?" msgid "This category already exists: " msgstr "De categorie bestaat al." -#: js/js.js:213 templates/layout.user.php:54 templates/layout.user.php:55 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Instellingen" @@ -131,14 +131,16 @@ msgid "Error while changing permissions" msgstr "Fout tijdens het veranderen van permissies" #: js/share.js:130 -#, python-format -msgid "Shared with you and the group %s by %s" -msgstr "Gedeeld met u en de group %s door %s" +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" +msgstr "" #: js/share.js:132 -#, python-format -msgid "Shared with you by %s" -msgstr "Gedeeld met u door %s" +msgid "Shared with you by" +msgstr "" #: js/share.js:137 msgid "Share with" @@ -165,9 +167,8 @@ msgid "Expiration date" msgstr "Vervaldatum" #: js/share.js:185 -#, python-format -msgid "Share via email: %s" -msgstr "Deel via email: %s" +msgid "Share via email:" +msgstr "" #: js/share.js:187 msgid "No people found" @@ -178,9 +179,12 @@ msgid "Resharing is not allowed" msgstr "Verder delen is niet toegestaan" #: js/share.js:250 -#, python-format -msgid "Shared in %s with %s" -msgstr "Deel in %s met %s" +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" +msgstr "" #: js/share.js:271 msgid "Unshare" @@ -352,7 +356,7 @@ msgstr "Installatie afronden" msgid "web services under your control" msgstr "webdiensten die je beheerst" -#: templates/layout.user.php:39 +#: templates/layout.user.php:34 msgid "Log out" msgstr "Afmelden" diff --git a/l10n/nn_NO/core.po b/l10n/nn_NO/core.po index 318f34f38ca..d2c8eef0fb9 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: 2012-09-26 13:19+0200\n" -"PO-Revision-Date: 2012-09-26 11:19+0000\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+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" @@ -31,7 +31,7 @@ msgstr "" msgid "This category already exists: " msgstr "" -#: js/js.js:213 templates/layout.user.php:54 templates/layout.user.php:55 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Innstillingar" @@ -125,13 +125,15 @@ msgid "Error while changing permissions" msgstr "" #: js/share.js:130 -#, python-format -msgid "Shared with you and the group %s by %s" +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" msgstr "" #: js/share.js:132 -#, python-format -msgid "Shared with you by %s" +msgid "Shared with you by" msgstr "" #: js/share.js:137 @@ -159,8 +161,7 @@ msgid "Expiration date" msgstr "" #: js/share.js:185 -#, python-format -msgid "Share via email: %s" +msgid "Share via email:" msgstr "" #: js/share.js:187 @@ -172,8 +173,11 @@ msgid "Resharing is not allowed" msgstr "" #: js/share.js:250 -#, python-format -msgid "Shared in %s with %s" +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" msgstr "" #: js/share.js:271 @@ -346,7 +350,7 @@ msgstr "Fullfør oppsettet" msgid "web services under your control" msgstr "Vev tjenester under din kontroll" -#: templates/layout.user.php:39 +#: templates/layout.user.php:34 msgid "Log out" msgstr "Logg ut" diff --git a/l10n/oc/core.po b/l10n/oc/core.po index 2081db55b29..ba10a2ee6d9 100644 --- a/l10n/oc/core.po +++ b/l10n/oc/core.po @@ -3,12 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-26 13:19+0200\n" -"PO-Revision-Date: 2012-09-26 11:19+0000\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+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" @@ -19,355 +20,359 @@ msgstr "" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." -msgstr "" +msgstr "Nom d'applicacion pas donat." #: ajax/vcategories/add.php:29 msgid "No category to add?" -msgstr "" +msgstr "Pas de categoria d'ajustar ?" #: ajax/vcategories/add.php:36 msgid "This category already exists: " -msgstr "" +msgstr "La categoria exista ja :" -#: js/js.js:213 templates/layout.user.php:54 templates/layout.user.php:55 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" -msgstr "" +msgstr "Configuracion" #: js/js.js:645 msgid "January" -msgstr "" +msgstr "Genièr" #: js/js.js:645 msgid "February" -msgstr "" +msgstr "Febrièr" #: js/js.js:645 msgid "March" -msgstr "" +msgstr "Març" #: js/js.js:645 msgid "April" -msgstr "" +msgstr "Abril" #: js/js.js:645 msgid "May" -msgstr "" +msgstr "Mai" #: js/js.js:645 msgid "June" -msgstr "" +msgstr "Junh" #: js/js.js:646 msgid "July" -msgstr "" +msgstr "Julhet" #: js/js.js:646 msgid "August" -msgstr "" +msgstr "Agost" #: js/js.js:646 msgid "September" -msgstr "" +msgstr "Septembre" #: js/js.js:646 msgid "October" -msgstr "" +msgstr "Octobre" #: js/js.js:646 msgid "November" -msgstr "" +msgstr "Novembre" #: js/js.js:646 msgid "December" -msgstr "" +msgstr "Decembre" #: js/oc-dialogs.js:123 msgid "Choose" -msgstr "" +msgstr "Causís" #: js/oc-dialogs.js:143 js/oc-dialogs.js:163 msgid "Cancel" -msgstr "" +msgstr "Anulla" #: js/oc-dialogs.js:159 msgid "No" -msgstr "" +msgstr "Non" #: js/oc-dialogs.js:160 msgid "Yes" -msgstr "" +msgstr "Òc" #: js/oc-dialogs.js:177 msgid "Ok" -msgstr "" +msgstr "D'accòrdi" #: js/oc-vcategories.js:68 msgid "No categories selected for deletion." -msgstr "" +msgstr "Pas de categorias seleccionadas per escafar." #: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 #: js/share.js:501 msgid "Error" -msgstr "" +msgstr "Error" #: js/share.js:103 msgid "Error while sharing" -msgstr "" +msgstr "Error al partejar" #: js/share.js:114 msgid "Error while unsharing" -msgstr "" +msgstr "Error al non partejar" #: js/share.js:121 msgid "Error while changing permissions" +msgstr "Error al cambiar permissions" + +#: js/share.js:130 +msgid "Shared with you and the group" msgstr "" #: js/share.js:130 -#, python-format -msgid "Shared with you and the group %s by %s" +msgid "by" msgstr "" #: js/share.js:132 -#, python-format -msgid "Shared with you by %s" +msgid "Shared with you by" msgstr "" #: js/share.js:137 msgid "Share with" -msgstr "" +msgstr "Parteja amb" #: js/share.js:142 msgid "Share with link" -msgstr "" +msgstr "Parteja amb lo ligam" #: js/share.js:143 msgid "Password protect" -msgstr "" +msgstr "Parat per senhal" #: js/share.js:147 templates/installation.php:30 templates/login.php:13 msgid "Password" -msgstr "" +msgstr "Senhal" #: js/share.js:152 msgid "Set expiration date" -msgstr "" +msgstr "Met la data d'expiracion" #: js/share.js:153 msgid "Expiration date" -msgstr "" +msgstr "Data d'expiracion" #: js/share.js:185 -#, python-format -msgid "Share via email: %s" +msgid "Share via email:" msgstr "" #: js/share.js:187 msgid "No people found" -msgstr "" +msgstr "Deguns trobat" #: js/share.js:214 msgid "Resharing is not allowed" +msgstr "Tornar partejar es pas permis" + +#: js/share.js:250 +msgid "Shared in" msgstr "" #: js/share.js:250 -#, python-format -msgid "Shared in %s with %s" +msgid "with" msgstr "" #: js/share.js:271 msgid "Unshare" -msgstr "" +msgstr "Non parteje" #: js/share.js:279 msgid "can edit" -msgstr "" +msgstr "pòt modificar" #: js/share.js:281 msgid "access control" -msgstr "" +msgstr "Contraròtle d'acces" #: js/share.js:284 msgid "create" -msgstr "" +msgstr "crea" #: js/share.js:287 msgid "update" -msgstr "" +msgstr "met a jorn" #: js/share.js:290 msgid "delete" -msgstr "" +msgstr "escafa" #: js/share.js:293 msgid "share" -msgstr "" +msgstr "parteja" #: js/share.js:317 js/share.js:476 msgid "Password protected" -msgstr "" +msgstr "Parat per senhal" #: js/share.js:489 msgid "Error unsetting expiration date" -msgstr "" +msgstr "Error al metre de la data d'expiracion" #: js/share.js:501 msgid "Error setting expiration date" -msgstr "" +msgstr "Error setting expiration date" #: lostpassword/index.php:26 msgid "ownCloud password reset" -msgstr "" +msgstr "senhal d'ownCloud tornat botar" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" -msgstr "" +msgstr "Utiliza lo ligam seguent per tornar botar lo senhal : {link}" #: lostpassword/templates/lostpassword.php:3 msgid "You will receive a link to reset your password via Email." -msgstr "" +msgstr "Reçaupràs un ligam per tornar botar ton senhal via corrièl." #: lostpassword/templates/lostpassword.php:5 msgid "Requested" -msgstr "" +msgstr "Requesit" #: lostpassword/templates/lostpassword.php:8 msgid "Login failed!" -msgstr "" +msgstr "Fracàs de login" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:26 #: templates/login.php:9 msgid "Username" -msgstr "" +msgstr "Nom d'usancièr" #: lostpassword/templates/lostpassword.php:15 msgid "Request reset" -msgstr "" +msgstr "Tornar botar requesit" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" -msgstr "" +msgstr "Ton senhal es estat tornat botar" #: lostpassword/templates/resetpassword.php:5 msgid "To login page" -msgstr "" +msgstr "Pagina cap al login" #: lostpassword/templates/resetpassword.php:8 msgid "New password" -msgstr "" +msgstr "Senhal nòu" #: lostpassword/templates/resetpassword.php:11 msgid "Reset password" -msgstr "" +msgstr "Senhal tornat botar" #: strings.php:5 msgid "Personal" -msgstr "" +msgstr "Personal" #: strings.php:6 msgid "Users" -msgstr "" +msgstr "Usancièrs" #: strings.php:7 msgid "Apps" -msgstr "" +msgstr "Apps" #: strings.php:8 msgid "Admin" -msgstr "" +msgstr "Admin" #: strings.php:9 msgid "Help" -msgstr "" +msgstr "Ajuda" #: templates/403.php:12 msgid "Access forbidden" -msgstr "" +msgstr "Acces enebit" #: templates/404.php:12 msgid "Cloud not found" -msgstr "" +msgstr "Nívol pas trobada" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" -msgstr "" +msgstr "Edita categorias" #: templates/edit_categories_dialog.php:14 msgid "Add" -msgstr "" +msgstr "Ajusta" #: templates/installation.php:24 msgid "Create an admin account" -msgstr "" +msgstr "Crea un compte admin" #: templates/installation.php:36 msgid "Advanced" -msgstr "" +msgstr "Avançat" #: templates/installation.php:38 msgid "Data folder" -msgstr "" +msgstr "Dorsièr de donadas" #: templates/installation.php:45 msgid "Configure the database" -msgstr "" +msgstr "Configura la basa de donadas" #: templates/installation.php:50 templates/installation.php:61 #: templates/installation.php:71 templates/installation.php:81 msgid "will be used" -msgstr "" +msgstr "serà utilizat" #: templates/installation.php:93 msgid "Database user" -msgstr "" +msgstr "Usancièr de la basa de donadas" #: templates/installation.php:97 msgid "Database password" -msgstr "" +msgstr "Senhal de la basa de donadas" #: templates/installation.php:101 msgid "Database name" -msgstr "" +msgstr "Nom de la basa de donadas" #: templates/installation.php:109 msgid "Database tablespace" -msgstr "" +msgstr "Espandi de taula de basa de donadas" #: templates/installation.php:115 msgid "Database host" -msgstr "" +msgstr "Òste de basa de donadas" #: templates/installation.php:120 msgid "Finish setup" -msgstr "" +msgstr "Configuracion acabada" #: templates/layout.guest.php:36 msgid "web services under your control" -msgstr "" +msgstr "Services web jos ton contraròtle" -#: templates/layout.user.php:39 +#: templates/layout.user.php:34 msgid "Log out" -msgstr "" +msgstr "Sortida" #: templates/login.php:6 msgid "Lost your password?" -msgstr "" +msgstr "L'as perdut lo senhal ?" #: templates/login.php:17 msgid "remember" -msgstr "" +msgstr "bremba-te" #: templates/login.php:18 msgid "Log in" -msgstr "" +msgstr "Dintrada" #: templates/logout.php:1 msgid "You are logged out." -msgstr "" +msgstr "Sias pas dintra (t/ada)" #: templates/part.pagenavi.php:3 msgid "prev" -msgstr "" +msgstr "dariièr" #: templates/part.pagenavi.php:20 msgid "next" -msgstr "" +msgstr "venent" diff --git a/l10n/oc/files.po b/l10n/oc/files.po index b76b4bf3ddd..1e4cc9832bc 100644 --- a/l10n/oc/files.po +++ b/l10n/oc/files.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-26 13:19+0200\n" -"PO-Revision-Date: 2012-09-26 11:20+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 11:55+0000\n" +"Last-Translator: tartafione \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,281 +20,281 @@ msgstr "" #: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" -msgstr "" +msgstr "Amontcargament capitat, pas d'errors" #: ajax/upload.php:21 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" -msgstr "" +msgstr "Lo fichièr amontcargat es tròp bèl per la directiva «upload_max_filesize » del php.ini" #: ajax/upload.php:22 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" -msgstr "" +msgstr "Lo fichièr amontcargat es mai gròs que la directiva «MAX_FILE_SIZE» especifiada dins lo formulari HTML" #: ajax/upload.php:23 msgid "The uploaded file was only partially uploaded" -msgstr "" +msgstr "Lo fichièr foguèt pas completament amontcargat" #: ajax/upload.php:24 msgid "No file was uploaded" -msgstr "" +msgstr "Cap de fichièrs son estats amontcargats" #: ajax/upload.php:25 msgid "Missing a temporary folder" -msgstr "" +msgstr "Un dorsièr temporari manca" #: ajax/upload.php:26 msgid "Failed to write to disk" -msgstr "" +msgstr "L'escriptura sul disc a fracassat" #: appinfo/app.php:6 msgid "Files" -msgstr "" +msgstr "Fichièrs" #: js/fileactions.js:108 templates/index.php:62 msgid "Unshare" -msgstr "" +msgstr "Non parteja" #: js/fileactions.js:110 templates/index.php:64 msgid "Delete" -msgstr "" +msgstr "Escafa" #: js/fileactions.js:182 msgid "Rename" -msgstr "" +msgstr "Torna nomenar" #: js/filelist.js:190 js/filelist.js:192 msgid "already exists" -msgstr "" +msgstr "existís jà" #: js/filelist.js:190 js/filelist.js:192 msgid "replace" -msgstr "" +msgstr "remplaça" #: js/filelist.js:190 msgid "suggest name" -msgstr "" +msgstr "nom prepausat" #: js/filelist.js:190 js/filelist.js:192 msgid "cancel" -msgstr "" +msgstr "anulla" #: js/filelist.js:239 js/filelist.js:241 msgid "replaced" -msgstr "" +msgstr "remplaçat" #: js/filelist.js:239 js/filelist.js:241 js/filelist.js:273 js/filelist.js:275 msgid "undo" -msgstr "" +msgstr "defar" #: js/filelist.js:241 msgid "with" -msgstr "" +msgstr "amb" #: js/filelist.js:273 msgid "unshared" -msgstr "" +msgstr "Non partejat" #: js/filelist.js:275 msgid "deleted" -msgstr "" +msgstr "escafat" #: js/files.js:179 msgid "generating ZIP-file, it may take some time." -msgstr "" +msgstr "Fichièr ZIP a se far, aquò pòt trigar un briu." #: js/files.js:208 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "" +msgstr "Impossible d'amontcargar lo teu fichièr qu'es un repertòri o que ten pas que 0 octet." #: js/files.js:208 msgid "Upload Error" -msgstr "" +msgstr "Error d'amontcargar" #: js/files.js:236 js/files.js:341 js/files.js:371 msgid "Pending" -msgstr "" +msgstr "Al esperar" #: js/files.js:256 msgid "1 file uploading" -msgstr "" +msgstr "1 fichièr al amontcargar" #: js/files.js:259 js/files.js:304 js/files.js:319 msgid "files uploading" -msgstr "" +msgstr "fichièrs al amontcargar" #: js/files.js:322 js/files.js:355 msgid "Upload cancelled." -msgstr "" +msgstr "Amontcargar anullat." #: js/files.js:424 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "" +msgstr "Un amontcargar es a se far. Daissar aquesta pagina ara tamparà lo cargament. " #: js/files.js:494 msgid "Invalid name, '/' is not allowed." -msgstr "" +msgstr "Nom invalid, '/' es pas permis." -#: js/files.js:667 +#: js/files.js:668 msgid "files scanned" -msgstr "" +msgstr "Fichièr explorat" -#: js/files.js:675 +#: js/files.js:676 msgid "error while scanning" -msgstr "" +msgstr "error pendant l'exploracion" -#: js/files.js:748 templates/index.php:48 +#: js/files.js:749 templates/index.php:48 msgid "Name" -msgstr "" +msgstr "Nom" -#: js/files.js:749 templates/index.php:56 +#: js/files.js:750 templates/index.php:56 msgid "Size" -msgstr "" +msgstr "Talha" -#: js/files.js:750 templates/index.php:58 +#: js/files.js:751 templates/index.php:58 msgid "Modified" -msgstr "" +msgstr "Modificat" -#: js/files.js:777 +#: js/files.js:778 msgid "folder" -msgstr "" +msgstr "Dorsièr" -#: js/files.js:779 +#: js/files.js:780 msgid "folders" -msgstr "" +msgstr "Dorsièrs" -#: js/files.js:787 +#: js/files.js:788 msgid "file" -msgstr "" +msgstr "fichièr" -#: js/files.js:789 +#: js/files.js:790 msgid "files" -msgstr "" +msgstr "fichièrs" -#: js/files.js:833 +#: js/files.js:834 msgid "seconds ago" -msgstr "" +msgstr "secondas" -#: js/files.js:834 +#: js/files.js:835 msgid "minute ago" -msgstr "" +msgstr "minuta" -#: js/files.js:835 +#: js/files.js:836 msgid "minutes ago" -msgstr "" +msgstr "minutas" -#: js/files.js:838 +#: js/files.js:839 msgid "today" -msgstr "" +msgstr "uèi" -#: js/files.js:839 +#: js/files.js:840 msgid "yesterday" -msgstr "" +msgstr "ièr" -#: js/files.js:840 +#: js/files.js:841 msgid "days ago" -msgstr "" +msgstr "jorns" -#: js/files.js:841 +#: js/files.js:842 msgid "last month" -msgstr "" +msgstr "mes passat" -#: js/files.js:843 +#: js/files.js:844 msgid "months ago" -msgstr "" +msgstr "meses" -#: js/files.js:844 +#: js/files.js:845 msgid "last year" -msgstr "" +msgstr "an passat" -#: js/files.js:845 +#: js/files.js:846 msgid "years ago" -msgstr "" +msgstr "ans" #: templates/admin.php:5 msgid "File handling" -msgstr "" +msgstr "Manejament de fichièr" #: templates/admin.php:7 msgid "Maximum upload size" -msgstr "" +msgstr "Talha maximum d'amontcargament" #: templates/admin.php:7 msgid "max. possible: " -msgstr "" +msgstr "max. possible: " #: templates/admin.php:9 msgid "Needed for multi-file and folder downloads." -msgstr "" +msgstr "Requesit per avalcargar gropat de fichièrs e dorsièr" #: templates/admin.php:9 msgid "Enable ZIP-download" -msgstr "" +msgstr "Activa l'avalcargament de ZIP" #: templates/admin.php:11 msgid "0 is unlimited" -msgstr "" +msgstr "0 es pas limitat" #: templates/admin.php:12 msgid "Maximum input size for ZIP files" -msgstr "" +msgstr "Talha maximum de dintrada per fichièrs ZIP" #: templates/admin.php:14 msgid "Save" -msgstr "" +msgstr "Enregistra" #: templates/index.php:7 msgid "New" -msgstr "" +msgstr "Nòu" #: templates/index.php:9 msgid "Text file" -msgstr "" +msgstr "Fichièr de tèxte" #: templates/index.php:10 msgid "Folder" -msgstr "" +msgstr "Dorsièr" #: templates/index.php:11 msgid "From url" -msgstr "" +msgstr "Dempuèi l'URL" #: templates/index.php:20 msgid "Upload" -msgstr "" +msgstr "Amontcarga" #: templates/index.php:27 msgid "Cancel upload" -msgstr "" +msgstr " Anulla l'amontcargar" #: templates/index.php:40 msgid "Nothing in here. Upload something!" -msgstr "" +msgstr "Pas res dedins. Amontcarga qualquaren" #: templates/index.php:50 msgid "Share" -msgstr "" +msgstr "Parteja" #: templates/index.php:52 msgid "Download" -msgstr "" +msgstr "Avalcarga" #: templates/index.php:75 msgid "Upload too large" -msgstr "" +msgstr "Amontcargament tròp gròs" #: templates/index.php:77 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." -msgstr "" +msgstr "Los fichièrs que sias a amontcargar son tròp pesucs per la talha maxi pel servidor." #: templates/index.php:82 msgid "Files are being scanned, please wait." -msgstr "" +msgstr "Los fiichièrs son a èsser explorats, " #: templates/index.php:85 msgid "Current scanning" -msgstr "" +msgstr "Exploracion en cors" diff --git a/l10n/oc/settings.po b/l10n/oc/settings.po index 0489ec6c623..52cb2e0f6d2 100644 --- a/l10n/oc/settings.po +++ b/l10n/oc/settings.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-19 02:02+0200\n" -"PO-Revision-Date: 2012-09-19 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 14:00+0000\n" +"Last-Translator: tartafione \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,82 +20,82 @@ msgstr "" #: ajax/apps/ocs.php:23 msgid "Unable to load list from App Store" -msgstr "" +msgstr "Pas possible de cargar la tièra dempuèi App Store" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 #: ajax/togglegroups.php:15 msgid "Authentication error" -msgstr "" +msgstr "Error d'autentificacion" #: ajax/creategroup.php:19 msgid "Group already exists" -msgstr "" +msgstr "Lo grop existís ja" #: ajax/creategroup.php:28 msgid "Unable to add group" -msgstr "" +msgstr "Pas capable d'apondre un grop" #: ajax/enableapp.php:14 msgid "Could not enable app. " -msgstr "" +msgstr "Pòt pas activar app. " #: ajax/lostpassword.php:14 msgid "Email saved" -msgstr "" +msgstr "Corrièl enregistrat" #: ajax/lostpassword.php:16 msgid "Invalid email" -msgstr "" +msgstr "Corrièl incorrècte" #: ajax/openid.php:16 msgid "OpenID Changed" -msgstr "" +msgstr "OpenID cambiat" #: ajax/openid.php:18 ajax/setlanguage.php:20 ajax/setlanguage.php:23 msgid "Invalid request" -msgstr "" +msgstr "Demanda invalida" #: ajax/removegroup.php:16 msgid "Unable to delete group" -msgstr "" +msgstr "Pas capable d'escafar un grop" #: ajax/removeuser.php:22 msgid "Unable to delete user" -msgstr "" +msgstr "Pas capable d'escafar un usancièr" #: ajax/setlanguage.php:18 msgid "Language changed" -msgstr "" +msgstr "Lengas cambiadas" #: ajax/togglegroups.php:25 #, php-format msgid "Unable to add user to group %s" -msgstr "" +msgstr "Pas capable d'apondre un usancièr al grop %s" #: ajax/togglegroups.php:31 #, php-format msgid "Unable to remove user from group %s" -msgstr "" +msgstr "Pas capable de tira un usancièr del grop %s" #: js/apps.js:27 js/apps.js:61 msgid "Disable" -msgstr "" +msgstr "Desactiva" #: js/apps.js:27 js/apps.js:50 msgid "Enable" -msgstr "" +msgstr "Activa" #: js/personal.js:69 msgid "Saving..." -msgstr "" +msgstr "Enregistra..." #: personal.php:46 personal.php:47 msgid "__language_name__" -msgstr "" +msgstr "__language_name__" #: templates/admin.php:14 msgid "Security Warning" -msgstr "" +msgstr "Avertiment de securitat" #: templates/admin.php:17 msgid "" @@ -107,11 +108,11 @@ msgstr "" #: templates/admin.php:31 msgid "Cron" -msgstr "" +msgstr "Cron" #: templates/admin.php:37 msgid "Execute one task with each page loaded" -msgstr "" +msgstr "Executa un prètfach amb cada pagina cargada" #: templates/admin.php:43 msgid "" @@ -123,15 +124,15 @@ msgstr "" msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "" +msgstr "Utiliza lo servici cron de ton sistèm operatiu. Executa lo fichièr cron.php dins lo dorsier owncloud tras cronjob del sistèm cada minuta." #: templates/admin.php:56 msgid "Sharing" -msgstr "" +msgstr "Al partejar" #: templates/admin.php:61 msgid "Enable Share API" -msgstr "" +msgstr "Activa API partejada" #: templates/admin.php:62 msgid "Allow apps to use the Share API" @@ -163,11 +164,11 @@ msgstr "" #: templates/admin.php:88 msgid "Log" -msgstr "" +msgstr "Jornal" #: templates/admin.php:116 msgid "More" -msgstr "" +msgstr "Mai d'aquò" #: templates/admin.php:124 msgid "" @@ -181,48 +182,48 @@ msgstr "" #: templates/apps.php:10 msgid "Add your App" -msgstr "" +msgstr "Ajusta ton App" #: templates/apps.php:26 msgid "Select an App" -msgstr "" +msgstr "Selecciona una applicacion" #: templates/apps.php:29 msgid "See application page at apps.owncloud.com" -msgstr "" +msgstr "Agacha la pagina d'applications en cò de apps.owncloud.com" #: templates/apps.php:30 msgid "-licensed by " -msgstr "" +msgstr "-licençiat per " #: templates/help.php:9 msgid "Documentation" -msgstr "" +msgstr "Documentacion" #: templates/help.php:10 msgid "Managing Big Files" -msgstr "" +msgstr "Al bailejar de fichièrs pesucasses" #: templates/help.php:11 msgid "Ask a question" -msgstr "" +msgstr "Respond a una question" #: templates/help.php:23 msgid "Problems connecting to help database." -msgstr "" +msgstr "Problemas al connectar de la basa de donadas d'ajuda" #: templates/help.php:24 msgid "Go there manually." -msgstr "" +msgstr "Vas çai manualament" #: templates/help.php:32 msgid "Answer" -msgstr "" +msgstr "Responsa" #: templates/personal.php:8 #, php-format msgid "You have used %s of the available %s" -msgstr "" +msgstr "As utilizat %s dels %s disponibles" #: templates/personal.php:12 msgid "Desktop and Mobile Syncing Clients" @@ -230,88 +231,88 @@ msgstr "" #: templates/personal.php:13 msgid "Download" -msgstr "" +msgstr "Avalcarga" #: templates/personal.php:19 msgid "Your password was changed" -msgstr "" +msgstr "Ton senhal a cambiat" #: templates/personal.php:20 msgid "Unable to change your password" -msgstr "" +msgstr "Pas possible de cambiar ton senhal" #: templates/personal.php:21 msgid "Current password" -msgstr "" +msgstr "Senhal en cors" #: templates/personal.php:22 msgid "New password" -msgstr "" +msgstr "Senhal novèl" #: templates/personal.php:23 msgid "show" -msgstr "" +msgstr "mòstra" #: templates/personal.php:24 msgid "Change password" -msgstr "" +msgstr "Cambia lo senhal" #: templates/personal.php:30 msgid "Email" -msgstr "" +msgstr "Corrièl" #: templates/personal.php:31 msgid "Your email address" -msgstr "" +msgstr "Ton adreiça de corrièl" #: templates/personal.php:32 msgid "Fill in an email address to enable password recovery" -msgstr "" +msgstr "Emplena una adreiça de corrièl per permetre lo mandadís del senhal perdut" #: templates/personal.php:38 templates/personal.php:39 msgid "Language" -msgstr "" +msgstr "Lenga" #: templates/personal.php:44 msgid "Help translate" -msgstr "" +msgstr "Ajuda a la revirada" #: templates/personal.php:51 msgid "use this address to connect to your ownCloud in your file manager" -msgstr "" +msgstr "utiliza aquela adreiça per te connectar al ownCloud amb ton explorator de fichièrs" #: templates/users.php:21 templates/users.php:76 msgid "Name" -msgstr "" +msgstr "Nom" #: templates/users.php:23 templates/users.php:77 msgid "Password" -msgstr "" +msgstr "Senhal" #: templates/users.php:26 templates/users.php:78 templates/users.php:98 msgid "Groups" -msgstr "" +msgstr "Grops" #: templates/users.php:32 msgid "Create" -msgstr "" +msgstr "Crea" #: templates/users.php:35 msgid "Default Quota" -msgstr "" +msgstr "Quota per defaut" #: templates/users.php:55 templates/users.php:138 msgid "Other" -msgstr "" +msgstr "Autres" #: templates/users.php:80 templates/users.php:112 msgid "Group Admin" -msgstr "" +msgstr "Grop Admin" #: templates/users.php:82 msgid "Quota" -msgstr "" +msgstr "Quota" #: templates/users.php:146 msgid "Delete" -msgstr "" +msgstr "Escafa" diff --git a/l10n/pl/core.po b/l10n/pl/core.po index cd70492b619..cfdcf6124b8 100644 --- a/l10n/pl/core.po +++ b/l10n/pl/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: 2012-09-26 13:19+0200\n" -"PO-Revision-Date: 2012-09-26 11:19+0000\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+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" @@ -36,7 +36,7 @@ msgstr "Brak kategorii" msgid "This category already exists: " msgstr "Ta kategoria już istnieje" -#: js/js.js:213 templates/layout.user.php:54 templates/layout.user.php:55 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Ustawienia" @@ -130,13 +130,15 @@ msgid "Error while changing permissions" msgstr "Błąd przy zmianie uprawnień" #: js/share.js:130 -#, python-format -msgid "Shared with you and the group %s by %s" +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" msgstr "" #: js/share.js:132 -#, python-format -msgid "Shared with you by %s" +msgid "Shared with you by" msgstr "" #: js/share.js:137 @@ -164,9 +166,8 @@ msgid "Expiration date" msgstr "Data wygaśnięcia" #: js/share.js:185 -#, python-format -msgid "Share via email: %s" -msgstr "Współdziel przez email: %s" +msgid "Share via email:" +msgstr "" #: js/share.js:187 msgid "No people found" @@ -177,8 +178,11 @@ msgid "Resharing is not allowed" msgstr "Współdzielenie nie jest możliwe" #: js/share.js:250 -#, python-format -msgid "Shared in %s with %s" +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" msgstr "" #: js/share.js:271 @@ -351,7 +355,7 @@ msgstr "Zakończ konfigurowanie" msgid "web services under your control" msgstr "usługi internetowe pod kontrolą" -#: templates/layout.user.php:39 +#: templates/layout.user.php:34 msgid "Log out" msgstr "Wylogowuje użytkownika" diff --git a/l10n/pl_PL/core.po b/l10n/pl_PL/core.po index fd785c51186..4b3dc86393d 100644 --- a/l10n/pl_PL/core.po +++ b/l10n/pl_PL/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-26 13:19+0200\n" -"PO-Revision-Date: 2012-09-26 11:19+0000\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" @@ -29,7 +29,7 @@ msgstr "" msgid "This category already exists: " msgstr "" -#: js/js.js:213 templates/layout.user.php:54 templates/layout.user.php:55 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "" @@ -123,13 +123,15 @@ msgid "Error while changing permissions" msgstr "" #: js/share.js:130 -#, python-format -msgid "Shared with you and the group %s by %s" +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" msgstr "" #: js/share.js:132 -#, python-format -msgid "Shared with you by %s" +msgid "Shared with you by" msgstr "" #: js/share.js:137 @@ -157,8 +159,7 @@ msgid "Expiration date" msgstr "" #: js/share.js:185 -#, python-format -msgid "Share via email: %s" +msgid "Share via email:" msgstr "" #: js/share.js:187 @@ -170,8 +171,11 @@ msgid "Resharing is not allowed" msgstr "" #: js/share.js:250 -#, python-format -msgid "Shared in %s with %s" +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" msgstr "" #: js/share.js:271 @@ -344,7 +348,7 @@ msgstr "" msgid "web services under your control" msgstr "" -#: templates/layout.user.php:39 +#: templates/layout.user.php:34 msgid "Log out" msgstr "" diff --git a/l10n/pt_BR/core.po b/l10n/pt_BR/core.po index 6f0f826640e..42ce9d1672c 100644 --- a/l10n/pt_BR/core.po +++ b/l10n/pt_BR/core.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-27 02:01+0200\n" -"PO-Revision-Date: 2012-09-26 12:25+0000\n" -"Last-Translator: sedir \n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+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" @@ -35,7 +35,7 @@ msgstr "Nenhuma categoria adicionada?" msgid "This category already exists: " msgstr "Essa categoria já existe" -#: js/js.js:213 templates/layout.user.php:54 templates/layout.user.php:55 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Configurações" @@ -129,14 +129,16 @@ msgid "Error while changing permissions" msgstr "Erro ao mudar permissões" #: js/share.js:130 -#, python-format -msgid "Shared with you and the group %s by %s" -msgstr "Compartilhado com você e o grupo %s por %s" +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" +msgstr "" #: js/share.js:132 -#, python-format -msgid "Shared with you by %s" -msgstr "Compartilhado com você por %s" +msgid "Shared with you by" +msgstr "" #: js/share.js:137 msgid "Share with" @@ -163,9 +165,8 @@ msgid "Expiration date" msgstr "Data de expiração" #: js/share.js:185 -#, python-format -msgid "Share via email: %s" -msgstr "Compartilhar via email: %s" +msgid "Share via email:" +msgstr "" #: js/share.js:187 msgid "No people found" @@ -176,9 +177,12 @@ msgid "Resharing is not allowed" msgstr "Não é permitido re-compartilhar" #: js/share.js:250 -#, python-format -msgid "Shared in %s with %s" -msgstr "Compartilhado em %s com %s" +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" +msgstr "" #: js/share.js:271 msgid "Unshare" @@ -350,7 +354,7 @@ msgstr "Concluir configuração" msgid "web services under your control" msgstr "web services sob seu controle" -#: templates/layout.user.php:39 +#: templates/layout.user.php:34 msgid "Log out" msgstr "Sair" diff --git a/l10n/pt_PT/core.po b/l10n/pt_PT/core.po index d22534d5270..a7b168b09f8 100644 --- a/l10n/pt_PT/core.po +++ b/l10n/pt_PT/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: 2012-09-26 13:19+0200\n" -"PO-Revision-Date: 2012-09-26 11:19+0000\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+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" @@ -32,7 +32,7 @@ msgstr "Nenhuma categoria para adicionar?" msgid "This category already exists: " msgstr "Esta categoria já existe:" -#: js/js.js:213 templates/layout.user.php:54 templates/layout.user.php:55 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Definições" @@ -126,13 +126,15 @@ msgid "Error while changing permissions" msgstr "" #: js/share.js:130 -#, python-format -msgid "Shared with you and the group %s by %s" +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" msgstr "" #: js/share.js:132 -#, python-format -msgid "Shared with you by %s" +msgid "Shared with you by" msgstr "" #: js/share.js:137 @@ -160,8 +162,7 @@ msgid "Expiration date" msgstr "" #: js/share.js:185 -#, python-format -msgid "Share via email: %s" +msgid "Share via email:" msgstr "" #: js/share.js:187 @@ -173,8 +174,11 @@ msgid "Resharing is not allowed" msgstr "" #: js/share.js:250 -#, python-format -msgid "Shared in %s with %s" +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" msgstr "" #: js/share.js:271 @@ -347,7 +351,7 @@ msgstr "Acabar instalação" msgid "web services under your control" msgstr "serviços web sob o seu controlo" -#: templates/layout.user.php:39 +#: templates/layout.user.php:34 msgid "Log out" msgstr "Sair" diff --git a/l10n/ro/core.po b/l10n/ro/core.po index aa411156948..48c69f2447b 100644 --- a/l10n/ro/core.po +++ b/l10n/ro/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: 2012-09-27 02:01+0200\n" -"PO-Revision-Date: 2012-09-26 13:12+0000\n" -"Last-Translator: g.ciprian \n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+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" @@ -33,7 +33,7 @@ msgstr "Nici o categorie de adăugat?" msgid "This category already exists: " msgstr "Această categorie deja există:" -#: js/js.js:213 templates/layout.user.php:54 templates/layout.user.php:55 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Configurări" @@ -127,14 +127,16 @@ msgid "Error while changing permissions" msgstr "Eroare la modificarea permisiunilor" #: js/share.js:130 -#, python-format -msgid "Shared with you and the group %s by %s" -msgstr "Partajat cu tine și grupul %s de %s" +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" +msgstr "" #: js/share.js:132 -#, python-format -msgid "Shared with you by %s" -msgstr "Partajat cu tine de %s" +msgid "Shared with you by" +msgstr "" #: js/share.js:137 msgid "Share with" @@ -161,9 +163,8 @@ msgid "Expiration date" msgstr "Data expirării" #: js/share.js:185 -#, python-format -msgid "Share via email: %s" -msgstr "Partajare prin email: %s" +msgid "Share via email:" +msgstr "" #: js/share.js:187 msgid "No people found" @@ -174,9 +175,12 @@ msgid "Resharing is not allowed" msgstr "Repartajarea nu este permisă" #: js/share.js:250 -#, python-format -msgid "Shared in %s with %s" -msgstr "Partajat în %s cu %s" +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" +msgstr "" #: js/share.js:271 msgid "Unshare" @@ -348,7 +352,7 @@ msgstr "Finalizează instalarea" msgid "web services under your control" msgstr "servicii web controlate de tine" -#: templates/layout.user.php:39 +#: templates/layout.user.php:34 msgid "Log out" msgstr "Ieșire" diff --git a/l10n/ru/core.po b/l10n/ru/core.po index 8899cea0cd9..b76cabfb0f1 100644 --- a/l10n/ru/core.po +++ b/l10n/ru/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: 2012-09-26 13:19+0200\n" -"PO-Revision-Date: 2012-09-26 11:19+0000\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+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" @@ -34,7 +34,7 @@ msgstr "Нет категорий для добавления?" msgid "This category already exists: " msgstr "Эта категория уже существует: " -#: js/js.js:213 templates/layout.user.php:54 templates/layout.user.php:55 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Настройки" @@ -128,13 +128,15 @@ msgid "Error while changing permissions" msgstr "" #: js/share.js:130 -#, python-format -msgid "Shared with you and the group %s by %s" +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" msgstr "" #: js/share.js:132 -#, python-format -msgid "Shared with you by %s" +msgid "Shared with you by" msgstr "" #: js/share.js:137 @@ -162,8 +164,7 @@ msgid "Expiration date" msgstr "" #: js/share.js:185 -#, python-format -msgid "Share via email: %s" +msgid "Share via email:" msgstr "" #: js/share.js:187 @@ -175,8 +176,11 @@ msgid "Resharing is not allowed" msgstr "" #: js/share.js:250 -#, python-format -msgid "Shared in %s with %s" +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" msgstr "" #: js/share.js:271 @@ -349,7 +353,7 @@ msgstr "Завершить установку" msgid "web services under your control" msgstr "Сетевые службы под твоим контролем" -#: templates/layout.user.php:39 +#: templates/layout.user.php:34 msgid "Log out" msgstr "Выйти" diff --git a/l10n/ru_RU/core.po b/l10n/ru_RU/core.po index 132e6bb603d..6b8d6d12686 100644 --- a/l10n/ru_RU/core.po +++ b/l10n/ru_RU/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: 2012-09-26 13:19+0200\n" -"PO-Revision-Date: 2012-09-26 11:19+0000\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" @@ -30,7 +30,7 @@ msgstr "Нет категории для добавления?" msgid "This category already exists: " msgstr "Эта категория уже существует:" -#: js/js.js:213 templates/layout.user.php:54 templates/layout.user.php:55 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Настройки" @@ -124,13 +124,15 @@ msgid "Error while changing permissions" msgstr "Ошибка при изменении прав доступа" #: js/share.js:130 -#, python-format -msgid "Shared with you and the group %s by %s" -msgstr "Общий доступ для Вас и группы %s к %s" +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" +msgstr "" #: js/share.js:132 -#, python-format -msgid "Shared with you by %s" +msgid "Shared with you by" msgstr "" #: js/share.js:137 @@ -158,8 +160,7 @@ msgid "Expiration date" msgstr "" #: js/share.js:185 -#, python-format -msgid "Share via email: %s" +msgid "Share via email:" msgstr "" #: js/share.js:187 @@ -171,8 +172,11 @@ msgid "Resharing is not allowed" msgstr "" #: js/share.js:250 -#, python-format -msgid "Shared in %s with %s" +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" msgstr "" #: js/share.js:271 @@ -345,7 +349,7 @@ msgstr "Завершение настройки" msgid "web services under your control" msgstr "веб-сервисы под Вашим контролем" -#: templates/layout.user.php:39 +#: templates/layout.user.php:34 msgid "Log out" msgstr "Выйти" diff --git a/l10n/sk_SK/core.po b/l10n/sk_SK/core.po index 9e4c45cfc84..514dfb07d66 100644 --- a/l10n/sk_SK/core.po +++ b/l10n/sk_SK/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: 2012-09-26 13:19+0200\n" -"PO-Revision-Date: 2012-09-26 11:19+0000\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+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" @@ -32,7 +32,7 @@ msgstr "Žiadna kategória pre pridanie?" msgid "This category already exists: " msgstr "Táto kategória už existuje:" -#: js/js.js:213 templates/layout.user.php:54 templates/layout.user.php:55 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Nastavenia" @@ -126,13 +126,15 @@ msgid "Error while changing permissions" msgstr "" #: js/share.js:130 -#, python-format -msgid "Shared with you and the group %s by %s" +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" msgstr "" #: js/share.js:132 -#, python-format -msgid "Shared with you by %s" +msgid "Shared with you by" msgstr "" #: js/share.js:137 @@ -160,8 +162,7 @@ msgid "Expiration date" msgstr "" #: js/share.js:185 -#, python-format -msgid "Share via email: %s" +msgid "Share via email:" msgstr "" #: js/share.js:187 @@ -173,8 +174,11 @@ msgid "Resharing is not allowed" msgstr "" #: js/share.js:250 -#, python-format -msgid "Shared in %s with %s" +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" msgstr "" #: js/share.js:271 @@ -347,7 +351,7 @@ msgstr "Dokončiť inštaláciu" msgid "web services under your control" msgstr "webové služby pod vašou kontrolou" -#: templates/layout.user.php:39 +#: templates/layout.user.php:34 msgid "Log out" msgstr "Odhlásiť" diff --git a/l10n/sl/core.po b/l10n/sl/core.po index d32cb070859..278ba738e13 100644 --- a/l10n/sl/core.po +++ b/l10n/sl/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: 2012-09-26 13:19+0200\n" -"PO-Revision-Date: 2012-09-26 11:19+0000\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+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" @@ -32,7 +32,7 @@ msgstr "Ni kategorije za dodajanje?" msgid "This category already exists: " msgstr "Ta kategorija že obstaja:" -#: js/js.js:213 templates/layout.user.php:54 templates/layout.user.php:55 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Nastavitve" @@ -126,13 +126,15 @@ msgid "Error while changing permissions" msgstr "" #: js/share.js:130 -#, python-format -msgid "Shared with you and the group %s by %s" +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" msgstr "" #: js/share.js:132 -#, python-format -msgid "Shared with you by %s" +msgid "Shared with you by" msgstr "" #: js/share.js:137 @@ -160,8 +162,7 @@ msgid "Expiration date" msgstr "" #: js/share.js:185 -#, python-format -msgid "Share via email: %s" +msgid "Share via email:" msgstr "" #: js/share.js:187 @@ -173,8 +174,11 @@ msgid "Resharing is not allowed" msgstr "" #: js/share.js:250 -#, python-format -msgid "Shared in %s with %s" +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" msgstr "" #: js/share.js:271 @@ -347,7 +351,7 @@ msgstr "Dokončaj namestitev" msgid "web services under your control" msgstr "spletne storitve pod vašim nadzorom" -#: templates/layout.user.php:39 +#: templates/layout.user.php:34 msgid "Log out" msgstr "Odjava" diff --git a/l10n/so/core.po b/l10n/so/core.po index af8c77be354..399a26593ac 100644 --- a/l10n/so/core.po +++ b/l10n/so/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-26 13:19+0200\n" -"PO-Revision-Date: 2012-09-26 11:19+0000\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+0000\n" "Last-Translator: I Robot \n" "Language-Team: Somali (http://www.transifex.com/projects/p/owncloud/language/so/)\n" "MIME-Version: 1.0\n" @@ -29,7 +29,7 @@ msgstr "" msgid "This category already exists: " msgstr "" -#: js/js.js:213 templates/layout.user.php:54 templates/layout.user.php:55 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "" @@ -123,13 +123,15 @@ msgid "Error while changing permissions" msgstr "" #: js/share.js:130 -#, python-format -msgid "Shared with you and the group %s by %s" +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" msgstr "" #: js/share.js:132 -#, python-format -msgid "Shared with you by %s" +msgid "Shared with you by" msgstr "" #: js/share.js:137 @@ -157,8 +159,7 @@ msgid "Expiration date" msgstr "" #: js/share.js:185 -#, python-format -msgid "Share via email: %s" +msgid "Share via email:" msgstr "" #: js/share.js:187 @@ -170,8 +171,11 @@ msgid "Resharing is not allowed" msgstr "" #: js/share.js:250 -#, python-format -msgid "Shared in %s with %s" +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" msgstr "" #: js/share.js:271 @@ -344,7 +348,7 @@ msgstr "" msgid "web services under your control" msgstr "" -#: templates/layout.user.php:39 +#: templates/layout.user.php:34 msgid "Log out" msgstr "" diff --git a/l10n/sr/core.po b/l10n/sr/core.po index 8718ac9c3fc..eaeee371618 100644 --- a/l10n/sr/core.po +++ b/l10n/sr/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: 2012-09-26 13:19+0200\n" -"PO-Revision-Date: 2012-09-26 11:19+0000\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+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" @@ -30,7 +30,7 @@ msgstr "" msgid "This category already exists: " msgstr "" -#: js/js.js:213 templates/layout.user.php:54 templates/layout.user.php:55 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Подешавања" @@ -124,13 +124,15 @@ msgid "Error while changing permissions" msgstr "" #: js/share.js:130 -#, python-format -msgid "Shared with you and the group %s by %s" +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" msgstr "" #: js/share.js:132 -#, python-format -msgid "Shared with you by %s" +msgid "Shared with you by" msgstr "" #: js/share.js:137 @@ -158,8 +160,7 @@ msgid "Expiration date" msgstr "" #: js/share.js:185 -#, python-format -msgid "Share via email: %s" +msgid "Share via email:" msgstr "" #: js/share.js:187 @@ -171,8 +172,11 @@ msgid "Resharing is not allowed" msgstr "" #: js/share.js:250 -#, python-format -msgid "Shared in %s with %s" +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" msgstr "" #: js/share.js:271 @@ -345,7 +349,7 @@ msgstr "Заврши подешавање" msgid "web services under your control" msgstr "веб сервиси под контролом" -#: templates/layout.user.php:39 +#: templates/layout.user.php:34 msgid "Log out" msgstr "Одјава" diff --git a/l10n/sr@latin/core.po b/l10n/sr@latin/core.po index edea2bbf0b6..cd06b0f3b2c 100644 --- a/l10n/sr@latin/core.po +++ b/l10n/sr@latin/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: 2012-09-26 13:19+0200\n" -"PO-Revision-Date: 2012-09-26 11:19+0000\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+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" @@ -30,7 +30,7 @@ msgstr "" msgid "This category already exists: " msgstr "" -#: js/js.js:213 templates/layout.user.php:54 templates/layout.user.php:55 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Podešavanja" @@ -124,13 +124,15 @@ msgid "Error while changing permissions" msgstr "" #: js/share.js:130 -#, python-format -msgid "Shared with you and the group %s by %s" +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" msgstr "" #: js/share.js:132 -#, python-format -msgid "Shared with you by %s" +msgid "Shared with you by" msgstr "" #: js/share.js:137 @@ -158,8 +160,7 @@ msgid "Expiration date" msgstr "" #: js/share.js:185 -#, python-format -msgid "Share via email: %s" +msgid "Share via email:" msgstr "" #: js/share.js:187 @@ -171,8 +172,11 @@ msgid "Resharing is not allowed" msgstr "" #: js/share.js:250 -#, python-format -msgid "Shared in %s with %s" +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" msgstr "" #: js/share.js:271 @@ -345,7 +349,7 @@ msgstr "Završi podešavanje" msgid "web services under your control" msgstr "" -#: templates/layout.user.php:39 +#: templates/layout.user.php:34 msgid "Log out" msgstr "Odjava" diff --git a/l10n/sv/core.po b/l10n/sv/core.po index 5960e5969f2..c09e46e7db1 100644 --- a/l10n/sv/core.po +++ b/l10n/sv/core.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-27 02:01+0200\n" -"PO-Revision-Date: 2012-09-26 12:40+0000\n" -"Last-Translator: Magnus Höglund \n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+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" @@ -35,7 +35,7 @@ msgstr "Ingen kategori att lägga till?" msgid "This category already exists: " msgstr "Denna kategori finns redan:" -#: js/js.js:213 templates/layout.user.php:54 templates/layout.user.php:55 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Inställningar" @@ -129,14 +129,16 @@ msgid "Error while changing permissions" msgstr "Fel vid ändring av rättigheter" #: js/share.js:130 -#, python-format -msgid "Shared with you and the group %s by %s" -msgstr "Delad med dig och gruppen %s av %s" +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" +msgstr "" #: js/share.js:132 -#, python-format -msgid "Shared with you by %s" -msgstr "Delad med dig av %s" +msgid "Shared with you by" +msgstr "" #: js/share.js:137 msgid "Share with" @@ -163,9 +165,8 @@ msgid "Expiration date" msgstr "Utgångsdatum" #: js/share.js:185 -#, python-format -msgid "Share via email: %s" -msgstr "Dela via e-post: %s" +msgid "Share via email:" +msgstr "" #: js/share.js:187 msgid "No people found" @@ -176,9 +177,12 @@ msgid "Resharing is not allowed" msgstr "Dela vidare är inte tillåtet" #: js/share.js:250 -#, python-format -msgid "Shared in %s with %s" -msgstr "Delad i %s med %s" +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" +msgstr "" #: js/share.js:271 msgid "Unshare" @@ -350,7 +354,7 @@ msgstr "Avsluta installation" msgid "web services under your control" msgstr "webbtjänster under din kontroll" -#: templates/layout.user.php:39 +#: templates/layout.user.php:34 msgid "Log out" msgstr "Logga ut" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 861fe878993..f15044cd26a 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-28 02:02+0200\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -29,7 +29,7 @@ msgstr "" msgid "This category already exists: " msgstr "" -#: js/js.js:213 templates/layout.user.php:54 templates/layout.user.php:55 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "" @@ -123,13 +123,15 @@ msgid "Error while changing permissions" msgstr "" #: js/share.js:130 -#, python-format -msgid "Shared with you and the group %s by %s" +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" msgstr "" #: js/share.js:132 -#, python-format -msgid "Shared with you by %s" +msgid "Shared with you by" msgstr "" #: js/share.js:137 @@ -157,8 +159,7 @@ msgid "Expiration date" msgstr "" #: js/share.js:185 -#, python-format -msgid "Share via email: %s" +msgid "Share via email:" msgstr "" #: js/share.js:187 @@ -170,8 +171,11 @@ msgid "Resharing is not allowed" msgstr "" #: js/share.js:250 -#, python-format -msgid "Shared in %s with %s" +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" msgstr "" #: js/share.js:271 @@ -344,7 +348,7 @@ msgstr "" msgid "web services under your control" msgstr "" -#: templates/layout.user.php:39 +#: templates/layout.user.php:34 msgid "Log out" msgstr "" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 80c1c196e3f..3478e30c028 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-28 02:02+0200\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 00d37e9b4e7..82a1a4e13e0 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-28 02:02+0200\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index fb569b41bf4..cf3ff5e7142 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-28 02:02+0200\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index 7e598348e25..dd9c84e97bc 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-28 02:02+0200\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 0261cee06a9..6b676a4ab9c 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-28 02:02+0200\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index 91d014d024b..fe3c84d18cc 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-28 02:03+0200\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 67eb87cfcd7..bc3373b8670 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-28 02:03+0200\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index ed8c48f3cec..20119254824 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-28 02:02+0200\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/th_TH/core.po b/l10n/th_TH/core.po index 451fc576dae..24f87167eb8 100644 --- a/l10n/th_TH/core.po +++ b/l10n/th_TH/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: 2012-09-27 02:01+0200\n" -"PO-Revision-Date: 2012-09-26 11:22+0000\n" -"Last-Translator: AriesAnywhere Anywhere \n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -31,7 +31,7 @@ msgstr "ไม่มีหมวดหมู่ที่ต้องการเ msgid "This category already exists: " msgstr "หมวดหมู่นี้มีอยู่แล้ว: " -#: js/js.js:213 templates/layout.user.php:54 templates/layout.user.php:55 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "ตั้งค่า" @@ -125,14 +125,16 @@ msgid "Error while changing permissions" msgstr "เกิดข้อผิดพลาดในการเปลี่ยนสิทธิ์การเข้าใช้งาน" #: js/share.js:130 -#, python-format -msgid "Shared with you and the group %s by %s" -msgstr "ได้แชร์ให้กับคุณและกลุ่ม %s โดย %s" +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" +msgstr "" #: js/share.js:132 -#, python-format -msgid "Shared with you by %s" -msgstr "แชร์ให้กับคุณโดย %s" +msgid "Shared with you by" +msgstr "" #: js/share.js:137 msgid "Share with" @@ -159,9 +161,8 @@ msgid "Expiration date" msgstr "วันที่หมดอายุ" #: js/share.js:185 -#, python-format -msgid "Share via email: %s" -msgstr "แชร์ผ่านทางอีเมล: %s" +msgid "Share via email:" +msgstr "" #: js/share.js:187 msgid "No people found" @@ -172,9 +173,12 @@ msgid "Resharing is not allowed" msgstr "ไม่อนุญาตให้แชร์ข้อมูลซ้ำได้" #: js/share.js:250 -#, python-format -msgid "Shared in %s with %s" -msgstr "ถูกแชร์ใน %s ด้วย %s" +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" +msgstr "" #: js/share.js:271 msgid "Unshare" @@ -346,7 +350,7 @@ msgstr "ติดตั้งเรียบร้อยแล้ว" msgid "web services under your control" msgstr "web services under your control" -#: templates/layout.user.php:39 +#: templates/layout.user.php:34 msgid "Log out" msgstr "ออกจากระบบ" diff --git a/l10n/tr/core.po b/l10n/tr/core.po index 4462c8428e7..0fdd0fc3b34 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-26 13:19+0200\n" -"PO-Revision-Date: 2012-09-26 11:19+0000\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+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" @@ -32,7 +32,7 @@ msgstr "Eklenecek kategori yok?" msgid "This category already exists: " msgstr "Bu kategori zaten mevcut: " -#: js/js.js:213 templates/layout.user.php:54 templates/layout.user.php:55 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Ayarlar" @@ -126,13 +126,15 @@ msgid "Error while changing permissions" msgstr "" #: js/share.js:130 -#, python-format -msgid "Shared with you and the group %s by %s" +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" msgstr "" #: js/share.js:132 -#, python-format -msgid "Shared with you by %s" +msgid "Shared with you by" msgstr "" #: js/share.js:137 @@ -160,8 +162,7 @@ msgid "Expiration date" msgstr "" #: js/share.js:185 -#, python-format -msgid "Share via email: %s" +msgid "Share via email:" msgstr "" #: js/share.js:187 @@ -173,8 +174,11 @@ msgid "Resharing is not allowed" msgstr "" #: js/share.js:250 -#, python-format -msgid "Shared in %s with %s" +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" msgstr "" #: js/share.js:271 @@ -347,7 +351,7 @@ msgstr "Kurulumu tamamla" msgid "web services under your control" msgstr "kontrolünüzdeki web servisleri" -#: templates/layout.user.php:39 +#: templates/layout.user.php:34 msgid "Log out" msgstr "Çıkış yap" diff --git a/l10n/uk/core.po b/l10n/uk/core.po index a2b2884a9e6..47f5aeb7430 100644 --- a/l10n/uk/core.po +++ b/l10n/uk/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: 2012-09-26 13:19+0200\n" -"PO-Revision-Date: 2012-09-26 11:19+0000\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+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" @@ -32,7 +32,7 @@ msgstr "" msgid "This category already exists: " msgstr "" -#: js/js.js:213 templates/layout.user.php:54 templates/layout.user.php:55 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Налаштування" @@ -126,13 +126,15 @@ msgid "Error while changing permissions" msgstr "" #: js/share.js:130 -#, python-format -msgid "Shared with you and the group %s by %s" +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" msgstr "" #: js/share.js:132 -#, python-format -msgid "Shared with you by %s" +msgid "Shared with you by" msgstr "" #: js/share.js:137 @@ -160,8 +162,7 @@ msgid "Expiration date" msgstr "" #: js/share.js:185 -#, python-format -msgid "Share via email: %s" +msgid "Share via email:" msgstr "" #: js/share.js:187 @@ -173,8 +174,11 @@ msgid "Resharing is not allowed" msgstr "" #: js/share.js:250 -#, python-format -msgid "Shared in %s with %s" +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" msgstr "" #: js/share.js:271 @@ -347,7 +351,7 @@ msgstr "Завершити налаштування" msgid "web services under your control" msgstr "веб-сервіс під вашим контролем" -#: templates/layout.user.php:39 +#: templates/layout.user.php:34 msgid "Log out" msgstr "Вихід" diff --git a/l10n/vi/core.po b/l10n/vi/core.po index 9f8d4375c70..a5861cdf0f7 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: 2012-09-26 13:19+0200\n" -"PO-Revision-Date: 2012-09-26 11:19+0000\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+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" @@ -30,7 +30,7 @@ msgstr "Không có danh mục được thêm?" msgid "This category already exists: " msgstr "Danh mục này đã được tạo :" -#: js/js.js:213 templates/layout.user.php:54 templates/layout.user.php:55 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Cài đặt" @@ -124,13 +124,15 @@ msgid "Error while changing permissions" msgstr "" #: js/share.js:130 -#, python-format -msgid "Shared with you and the group %s by %s" +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" msgstr "" #: js/share.js:132 -#, python-format -msgid "Shared with you by %s" +msgid "Shared with you by" msgstr "" #: js/share.js:137 @@ -158,8 +160,7 @@ msgid "Expiration date" msgstr "" #: js/share.js:185 -#, python-format -msgid "Share via email: %s" +msgid "Share via email:" msgstr "" #: js/share.js:187 @@ -171,8 +172,11 @@ msgid "Resharing is not allowed" msgstr "" #: js/share.js:250 -#, python-format -msgid "Shared in %s with %s" +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" msgstr "" #: js/share.js:271 @@ -345,7 +349,7 @@ msgstr "Cài đặt hoàn tất" msgid "web services under your control" msgstr "các dịch vụ web dưới sự kiểm soát của bạn" -#: templates/layout.user.php:39 +#: templates/layout.user.php:34 msgid "Log out" msgstr "Đăng xuất" diff --git a/l10n/zh_CN.GB2312/core.po b/l10n/zh_CN.GB2312/core.po index 1bc40e3a8f7..7383234a43b 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: 2012-09-26 13:19+0200\n" -"PO-Revision-Date: 2012-09-26 11:19+0000\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+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" @@ -31,7 +31,7 @@ msgstr "没有分类添加了?" msgid "This category already exists: " msgstr "这个分类已经存在了:" -#: js/js.js:213 templates/layout.user.php:54 templates/layout.user.php:55 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "设置" @@ -125,13 +125,15 @@ msgid "Error while changing permissions" msgstr "" #: js/share.js:130 -#, python-format -msgid "Shared with you and the group %s by %s" +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" msgstr "" #: js/share.js:132 -#, python-format -msgid "Shared with you by %s" +msgid "Shared with you by" msgstr "" #: js/share.js:137 @@ -159,8 +161,7 @@ msgid "Expiration date" msgstr "" #: js/share.js:185 -#, python-format -msgid "Share via email: %s" +msgid "Share via email:" msgstr "" #: js/share.js:187 @@ -172,8 +173,11 @@ msgid "Resharing is not allowed" msgstr "" #: js/share.js:250 -#, python-format -msgid "Shared in %s with %s" +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" msgstr "" #: js/share.js:271 @@ -346,7 +350,7 @@ msgstr "完成安装" msgid "web services under your control" msgstr "你控制下的网络服务" -#: templates/layout.user.php:39 +#: templates/layout.user.php:34 msgid "Log out" msgstr "注销" diff --git a/l10n/zh_CN/core.po b/l10n/zh_CN/core.po index e03aa1d5d4d..2c707704182 100644 --- a/l10n/zh_CN/core.po +++ b/l10n/zh_CN/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: 2012-09-28 02:02+0200\n" -"PO-Revision-Date: 2012-09-27 14:37+0000\n" -"Last-Translator: waterone \n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -33,7 +33,7 @@ msgstr "没有可添加分类?" msgid "This category already exists: " msgstr "此分类已存在: " -#: js/js.js:213 templates/layout.user.php:54 templates/layout.user.php:55 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "设置" @@ -127,14 +127,16 @@ msgid "Error while changing permissions" msgstr "修改权限时出错" #: js/share.js:130 -#, python-format -msgid "Shared with you and the group %s by %s" -msgstr "与你及%s组共享,共享人: %s" +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" +msgstr "" #: js/share.js:132 -#, python-format -msgid "Shared with you by %s" -msgstr "共享人: %s" +msgid "Shared with you by" +msgstr "" #: js/share.js:137 msgid "Share with" @@ -161,9 +163,8 @@ msgid "Expiration date" msgstr "过期日期" #: js/share.js:185 -#, python-format -msgid "Share via email: %s" -msgstr "发电子邮件分享: %s" +msgid "Share via email:" +msgstr "" #: js/share.js:187 msgid "No people found" @@ -174,9 +175,12 @@ msgid "Resharing is not allowed" msgstr "不允许二次共享" #: js/share.js:250 -#, python-format -msgid "Shared in %s with %s" -msgstr "在%s中与%s共享" +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" +msgstr "" #: js/share.js:271 msgid "Unshare" @@ -348,7 +352,7 @@ msgstr "安装完成" msgid "web services under your control" msgstr "由您掌控的网络服务" -#: templates/layout.user.php:39 +#: templates/layout.user.php:34 msgid "Log out" msgstr "注销" diff --git a/l10n/zh_CN/files_versions.po b/l10n/zh_CN/files_versions.po index eb613ae45cf..df61cf98da4 100644 --- a/l10n/zh_CN/files_versions.po +++ b/l10n/zh_CN/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: 2012-09-22 01:14+0200\n" -"PO-Revision-Date: 2012-09-21 23:15+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 09:58+0000\n" +"Last-Translator: hanfeng \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,7 +24,7 @@ msgstr "过期所有版本" #: js/versions.js:16 msgid "History" -msgstr "" +msgstr "历史" #: templates/settings-personal.php:4 msgid "Versions" diff --git a/l10n/zh_TW/core.po b/l10n/zh_TW/core.po index 039e1766154..97fc8c8bf66 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: 2012-09-26 13:19+0200\n" -"PO-Revision-Date: 2012-09-26 11:19+0000\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+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" @@ -31,7 +31,7 @@ msgstr "無分類添加?" msgid "This category already exists: " msgstr "此分類已經存在:" -#: js/js.js:213 templates/layout.user.php:54 templates/layout.user.php:55 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "設定" @@ -125,13 +125,15 @@ msgid "Error while changing permissions" msgstr "" #: js/share.js:130 -#, python-format -msgid "Shared with you and the group %s by %s" +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" msgstr "" #: js/share.js:132 -#, python-format -msgid "Shared with you by %s" +msgid "Shared with you by" msgstr "" #: js/share.js:137 @@ -159,8 +161,7 @@ msgid "Expiration date" msgstr "" #: js/share.js:185 -#, python-format -msgid "Share via email: %s" +msgid "Share via email:" msgstr "" #: js/share.js:187 @@ -172,8 +173,11 @@ msgid "Resharing is not allowed" msgstr "" #: js/share.js:250 -#, python-format -msgid "Shared in %s with %s" +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" msgstr "" #: js/share.js:271 @@ -346,7 +350,7 @@ msgstr "完成設定" msgid "web services under your control" msgstr "網路服務已在你控制" -#: templates/layout.user.php:39 +#: templates/layout.user.php:34 msgid "Log out" msgstr "登出" diff --git a/settings/l10n/oc.php b/settings/l10n/oc.php new file mode 100644 index 00000000000..28835df95c1 --- /dev/null +++ b/settings/l10n/oc.php @@ -0,0 +1,61 @@ + "Pas possible de cargar la tièra dempuèi App Store", +"Authentication error" => "Error d'autentificacion", +"Group already exists" => "Lo grop existís ja", +"Unable to add group" => "Pas capable d'apondre un grop", +"Could not enable app. " => "Pòt pas activar app. ", +"Email saved" => "Corrièl enregistrat", +"Invalid email" => "Corrièl incorrècte", +"OpenID Changed" => "OpenID cambiat", +"Invalid request" => "Demanda invalida", +"Unable to delete group" => "Pas capable d'escafar un grop", +"Unable to delete user" => "Pas capable d'escafar un usancièr", +"Language changed" => "Lengas cambiadas", +"Unable to add user to group %s" => "Pas capable d'apondre un usancièr al grop %s", +"Unable to remove user from group %s" => "Pas capable de tira un usancièr del grop %s", +"Disable" => "Desactiva", +"Enable" => "Activa", +"Saving..." => "Enregistra...", +"__language_name__" => "__language_name__", +"Security Warning" => "Avertiment de securitat", +"Cron" => "Cron", +"Execute one task with each page loaded" => "Executa un prètfach amb cada pagina cargada", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Utiliza lo servici cron de ton sistèm operatiu. Executa lo fichièr cron.php dins lo dorsier owncloud tras cronjob del sistèm cada minuta.", +"Sharing" => "Al partejar", +"Enable Share API" => "Activa API partejada", +"Log" => "Jornal", +"More" => "Mai d'aquò", +"Add your App" => "Ajusta ton App", +"Select an App" => "Selecciona una applicacion", +"See application page at apps.owncloud.com" => "Agacha la pagina d'applications en cò de apps.owncloud.com", +"-licensed by " => "-licençiat per ", +"Documentation" => "Documentacion", +"Managing Big Files" => "Al bailejar de fichièrs pesucasses", +"Ask a question" => "Respond a una question", +"Problems connecting to help database." => "Problemas al connectar de la basa de donadas d'ajuda", +"Go there manually." => "Vas çai manualament", +"Answer" => "Responsa", +"You have used %s of the available %s" => "As utilizat %s dels %s disponibles", +"Download" => "Avalcarga", +"Your password was changed" => "Ton senhal a cambiat", +"Unable to change your password" => "Pas possible de cambiar ton senhal", +"Current password" => "Senhal en cors", +"New password" => "Senhal novèl", +"show" => "mòstra", +"Change password" => "Cambia lo senhal", +"Email" => "Corrièl", +"Your email address" => "Ton adreiça de corrièl", +"Fill in an email address to enable password recovery" => "Emplena una adreiça de corrièl per permetre lo mandadís del senhal perdut", +"Language" => "Lenga", +"Help translate" => "Ajuda a la revirada", +"use this address to connect to your ownCloud in your file manager" => "utiliza aquela adreiça per te connectar al ownCloud amb ton explorator de fichièrs", +"Name" => "Nom", +"Password" => "Senhal", +"Groups" => "Grops", +"Create" => "Crea", +"Default Quota" => "Quota per defaut", +"Other" => "Autres", +"Group Admin" => "Grop Admin", +"Quota" => "Quota", +"Delete" => "Escafa" +); -- GitLab From dc66e94ee3c14e73f0a4f5f79722e0855add71e1 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Sat, 29 Sep 2012 02:04:55 +0200 Subject: [PATCH 134/489] [tx-robot] updated from transifex --- core/l10n/de.php | 6 +++ core/l10n/oc.php | 6 +++ l10n/de/core.po | 16 ++++---- l10n/oc/core.po | 18 ++++----- l10n/oc/lib.po | 59 +++++++++++++++-------------- 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_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- lib/l10n/oc.php | 24 ++++++++++++ 15 files changed, 92 insertions(+), 55 deletions(-) create mode 100644 lib/l10n/oc.php diff --git a/core/l10n/de.php b/core/l10n/de.php index b781c3055cd..8697967274f 100644 --- a/core/l10n/de.php +++ b/core/l10n/de.php @@ -25,14 +25,20 @@ "Error while sharing" => "Fehler beim Freigeben", "Error while unsharing" => "Fehler beim Aufheben der Freigabe", "Error while changing permissions" => "Fehler beim Ändern der Rechte", +"Shared with you and the group" => "Mit Dir und der Gruppe geteilt", +"by" => "mit", +"Shared with you by" => "Dies wurde mit dir geteilt von", "Share with" => "Freigeben für", "Share with link" => "Über einen Link freigeben", "Password protect" => "Passwortschutz", "Password" => "Passwort", "Set expiration date" => "Setze ein Ablaufdatum", "Expiration date" => "Ablaufdatum", +"Share via email:" => "Über eine E-Mail freigeben:", "No people found" => "Niemand gefunden", "Resharing is not allowed" => "Weiterverteilen ist nicht erlaubt", +"Shared in" => "Geteilt mit", +"with" => "mit", "Unshare" => "Freigabe aufheben", "can edit" => "kann bearbeiten", "access control" => "Zugriffskontrolle", diff --git a/core/l10n/oc.php b/core/l10n/oc.php index be743b9bc24..328cc0b60ba 100644 --- a/core/l10n/oc.php +++ b/core/l10n/oc.php @@ -25,14 +25,20 @@ "Error while sharing" => "Error al partejar", "Error while unsharing" => "Error al non partejar", "Error while changing permissions" => "Error al cambiar permissions", +"Shared with you and the group" => "Partejat amb tu e lo grop", +"by" => "per", +"Shared with you by" => "Partejat amb tu per", "Share with" => "Parteja amb", "Share with link" => "Parteja amb lo ligam", "Password protect" => "Parat per senhal", "Password" => "Senhal", "Set expiration date" => "Met la data d'expiracion", "Expiration date" => "Data d'expiracion", +"Share via email:" => "Parteja tras corrièl :", "No people found" => "Deguns trobat", "Resharing is not allowed" => "Tornar partejar es pas permis", +"Shared in" => "Partejat dins", +"with" => "amb", "Unshare" => "Non parteje", "can edit" => "pòt modificar", "access control" => "Contraròtle d'acces", diff --git a/l10n/de/core.po b/l10n/de/core.po index 56f595bdd47..66450ff6920 100644 --- a/l10n/de/core.po +++ b/l10n/de/core.po @@ -20,8 +20,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-28 23:34+0200\n" -"PO-Revision-Date: 2012-09-28 21:34+0000\n" +"POT-Creation-Date: 2012-09-29 02:02+0200\n" +"PO-Revision-Date: 2012-09-28 21:40+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" @@ -137,15 +137,15 @@ msgstr "Fehler beim Ändern der Rechte" #: js/share.js:130 msgid "Shared with you and the group" -msgstr "" +msgstr "Mit Dir und der Gruppe geteilt" #: js/share.js:130 msgid "by" -msgstr "" +msgstr "mit" #: js/share.js:132 msgid "Shared with you by" -msgstr "" +msgstr "Dies wurde mit dir geteilt von" #: js/share.js:137 msgid "Share with" @@ -173,7 +173,7 @@ msgstr "Ablaufdatum" #: js/share.js:185 msgid "Share via email:" -msgstr "" +msgstr "Über eine E-Mail freigeben:" #: js/share.js:187 msgid "No people found" @@ -185,11 +185,11 @@ msgstr "Weiterverteilen ist nicht erlaubt" #: js/share.js:250 msgid "Shared in" -msgstr "" +msgstr "Geteilt mit" #: js/share.js:250 msgid "with" -msgstr "" +msgstr "mit" #: js/share.js:271 msgid "Unshare" diff --git a/l10n/oc/core.po b/l10n/oc/core.po index ba10a2ee6d9..f2a698077ea 100644 --- a/l10n/oc/core.po +++ b/l10n/oc/core.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-28 23:34+0200\n" -"PO-Revision-Date: 2012-09-28 21:34+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-29 02:02+0200\n" +"PO-Revision-Date: 2012-09-28 22:00+0000\n" +"Last-Translator: tartafione \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -125,15 +125,15 @@ msgstr "Error al cambiar permissions" #: js/share.js:130 msgid "Shared with you and the group" -msgstr "" +msgstr "Partejat amb tu e lo grop" #: js/share.js:130 msgid "by" -msgstr "" +msgstr "per" #: js/share.js:132 msgid "Shared with you by" -msgstr "" +msgstr "Partejat amb tu per" #: js/share.js:137 msgid "Share with" @@ -161,7 +161,7 @@ msgstr "Data d'expiracion" #: js/share.js:185 msgid "Share via email:" -msgstr "" +msgstr "Parteja tras corrièl :" #: js/share.js:187 msgid "No people found" @@ -173,11 +173,11 @@ msgstr "Tornar partejar es pas permis" #: js/share.js:250 msgid "Shared in" -msgstr "" +msgstr "Partejat dins" #: js/share.js:250 msgid "with" -msgstr "" +msgstr "amb" #: js/share.js:271 msgid "Unshare" diff --git a/l10n/oc/lib.po b/l10n/oc/lib.po index 499df461d8e..e3081d2cff9 100644 --- a/l10n/oc/lib.po +++ b/l10n/oc/lib.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-08 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-29 02:02+0200\n" +"PO-Revision-Date: 2012-09-28 22:27+0000\n" +"Last-Translator: tartafione \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,41 +20,41 @@ msgstr "" #: app.php:285 msgid "Help" -msgstr "" +msgstr "Ajuda" #: app.php:292 msgid "Personal" -msgstr "" +msgstr "Personal" #: app.php:297 msgid "Settings" -msgstr "" +msgstr "Configuracion" #: app.php:302 msgid "Users" -msgstr "" +msgstr "Usancièrs" #: app.php:309 msgid "Apps" -msgstr "" +msgstr "Apps" #: app.php:311 msgid "Admin" -msgstr "" +msgstr "Admin" -#: files.php:280 +#: files.php:327 msgid "ZIP download is turned off." -msgstr "" +msgstr "Avalcargar los ZIP es inactiu." -#: files.php:281 +#: files.php:328 msgid "Files need to be downloaded one by one." -msgstr "" +msgstr "Los fichièrs devan èsser avalcargats un per un." -#: files.php:281 files.php:306 +#: files.php:328 files.php:353 msgid "Back to Files" -msgstr "" +msgstr "Torna cap als fichièrs" -#: files.php:305 +#: files.php:352 msgid "Selected files too large to generate zip file." msgstr "" @@ -63,7 +64,7 @@ msgstr "" #: json.php:39 json.php:63 json.php:75 msgid "Authentication error" -msgstr "" +msgstr "Error d'autentificacion" #: json.php:51 msgid "Token expired. Please reload page." @@ -71,45 +72,45 @@ msgstr "" #: template.php:87 msgid "seconds ago" -msgstr "" +msgstr "segonda a" #: template.php:88 msgid "1 minute ago" -msgstr "" +msgstr "1 minuta a" #: template.php:89 #, php-format msgid "%d minutes ago" -msgstr "" +msgstr "%d minutas a" #: template.php:92 msgid "today" -msgstr "" +msgstr "uèi" #: template.php:93 msgid "yesterday" -msgstr "" +msgstr "ièr" #: template.php:94 #, php-format msgid "%d days ago" -msgstr "" +msgstr "%d jorns a" #: template.php:95 msgid "last month" -msgstr "" +msgstr "mes passat" #: template.php:96 msgid "months ago" -msgstr "" +msgstr "meses a" #: template.php:97 msgid "last year" -msgstr "" +msgstr "an passat" #: template.php:98 msgid "years ago" -msgstr "" +msgstr "ans a" #: updater.php:66 #, php-format @@ -118,8 +119,8 @@ msgstr "" #: updater.php:68 msgid "up to date" -msgstr "" +msgstr "a jorn" #: updater.php:71 msgid "updates check is disabled" -msgstr "" +msgstr "la verificacion de mesa a jorn es inactiva" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index f15044cd26a..4cedff9db61 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"POT-Creation-Date: 2012-09-29 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 3478e30c028..da5985a6d14 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"POT-Creation-Date: 2012-09-29 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 82a1a4e13e0..9a41187b71d 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"POT-Creation-Date: 2012-09-29 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index cf3ff5e7142..2638af8efce 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"POT-Creation-Date: 2012-09-29 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index dd9c84e97bc..c1e994b1974 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"POT-Creation-Date: 2012-09-29 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 6b676a4ab9c..a4b7d0e753b 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"POT-Creation-Date: 2012-09-29 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index fe3c84d18cc..870ec568fb3 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"POT-Creation-Date: 2012-09-29 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index bc3373b8670..01e0d574f86 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"POT-Creation-Date: 2012-09-29 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 20119254824..aadc7f0a6b1 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"POT-Creation-Date: 2012-09-29 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/lib/l10n/oc.php b/lib/l10n/oc.php new file mode 100644 index 00000000000..ffc0588becc --- /dev/null +++ b/lib/l10n/oc.php @@ -0,0 +1,24 @@ + "Ajuda", +"Personal" => "Personal", +"Settings" => "Configuracion", +"Users" => "Usancièrs", +"Apps" => "Apps", +"Admin" => "Admin", +"ZIP download is turned off." => "Avalcargar los ZIP es inactiu.", +"Files need to be downloaded one by one." => "Los fichièrs devan èsser avalcargats un per un.", +"Back to Files" => "Torna cap als fichièrs", +"Authentication error" => "Error d'autentificacion", +"seconds ago" => "segonda a", +"1 minute ago" => "1 minuta a", +"%d minutes ago" => "%d minutas a", +"today" => "uèi", +"yesterday" => "ièr", +"%d days ago" => "%d jorns a", +"last month" => "mes passat", +"months ago" => "meses a", +"last year" => "an passat", +"years ago" => "ans a", +"up to date" => "a jorn", +"updates check is disabled" => "la verificacion de mesa a jorn es inactiva" +); -- GitLab From bd804b74c46ed6779bf82a506711b48644a197f4 Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Sat, 29 Sep 2012 15:03:09 +0200 Subject: [PATCH 135/489] mt_rand() is not secure from a security point of view and predictable. Let's use openssl_random_pseudo_bytes() instead. Before: 26 bits entropy After: 72 bits entropy --- lib/util.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/util.php b/lib/util.php index d1227f8379c..15e6f2824e5 100755 --- a/lib/util.php +++ b/lib/util.php @@ -440,7 +440,9 @@ class OC_Util { */ public static function callRegister() { // generate a random token. - $token=mt_rand(1000,9000).mt_rand(1000,9000).mt_rand(1000,9000); + $bytes = openssl_random_pseudo_bytes(10, $cstrong); + $hex = bin2hex($bytes); + $token = $hex; // store the token together with a timestamp in the session. $_SESSION['requesttoken-'.$token]=time(); -- GitLab From f5fe95a1315200c7e0c08544b2aad5ef69167d7c Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Sat, 29 Sep 2012 15:15:35 +0200 Subject: [PATCH 136/489] Removed sectoken This token is completly useless since an attacker can easily extract it from the page. --- core/lostpassword/index.php | 15 ++++----------- core/lostpassword/templates/lostpassword.php | 1 - 2 files changed, 4 insertions(+), 12 deletions(-) diff --git a/core/lostpassword/index.php b/core/lostpassword/index.php index 8da86d5a360..9eda0915b08 100644 --- a/core/lostpassword/index.php +++ b/core/lostpassword/index.php @@ -16,7 +16,7 @@ if (isset($_POST['user'])) { $token = sha1($_POST['user'].md5(uniqid(rand(), true))); OC_Preferences::setValue($_POST['user'], 'owncloud', 'lostpassword', $token); $email = OC_Preferences::getValue($_POST['user'], 'settings', 'email', ''); - if (!empty($email) and isset($_POST['sectoken']) and isset($_SESSION['sectoken']) and ($_POST['sectoken']==$_SESSION['sectoken']) ) { + if (!empty($email)) { $link = OC_Helper::linkToAbsolute('core/lostpassword', 'resetpassword.php', array('user' => $_POST['user'], 'token' => $token)); $tmpl = new OC_Template('core/lostpassword', 'email'); $tmpl->assign('link', $link, false); @@ -25,18 +25,11 @@ if (isset($_POST['user'])) { $from = 'lostpassword-noreply@' . OCP\Util::getServerHost(); OC_MAIL::send($email, $_POST['user'], $l->t('ownCloud password reset'), $msg, $from, 'ownCloud'); echo('sent'); - } - $sectoken=rand(1000000, 9999999); - $_SESSION['sectoken']=$sectoken; - OC_Template::printGuestPage('core/lostpassword', 'lostpassword', array('error' => false, 'requested' => true, 'sectoken' => $sectoken)); + OC_Template::printGuestPage('core/lostpassword', 'lostpassword', array('error' => false, 'requested' => true)); } else { - $sectoken=rand(1000000, 9999999); - $_SESSION['sectoken']=$sectoken; - OC_Template::printGuestPage('core/lostpassword', 'lostpassword', array('error' => true, 'requested' => false, 'sectoken' => $sectoken)); + OC_Template::printGuestPage('core/lostpassword', 'lostpassword', array('error' => true, 'requested' => false)); } } else { - $sectoken=rand(1000000, 9999999); - $_SESSION['sectoken']=$sectoken; - OC_Template::printGuestPage('core/lostpassword', 'lostpassword', array('error' => false, 'requested' => false, 'sectoken' => $sectoken)); + OC_Template::printGuestPage('core/lostpassword', 'lostpassword', array('error' => false, 'requested' => false)); } diff --git a/core/lostpassword/templates/lostpassword.php b/core/lostpassword/templates/lostpassword.php index 754eabdad67..4b871963b80 100644 --- a/core/lostpassword/templates/lostpassword.php +++ b/core/lostpassword/templates/lostpassword.php @@ -10,7 +10,6 @@

    -

    -- GitLab From 578aa4e42546a81e572ecda2061e238d34a4f421 Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Sat, 29 Sep 2012 15:18:38 +0200 Subject: [PATCH 137/489] Removed sectoken This token is completly useless since an attacker can easily extract it from the page. --- core/templates/login.php | 1 - lib/base.php | 6 +----- lib/util.php | 3 --- 3 files changed, 1 insertion(+), 9 deletions(-) diff --git a/core/templates/login.php b/core/templates/login.php index 2c9b766aa4d..bedff4453b0 100644 --- a/core/templates/login.php +++ b/core/templates/login.php @@ -12,7 +12,6 @@

    /> -

    diff --git a/lib/base.php b/lib/base.php index 5a2decc6f63..b89859ab2dd 100644 --- a/lib/base.php +++ b/lib/base.php @@ -528,11 +528,7 @@ class OC{ } protected static function tryFormLogin() { - if(!isset($_POST["user"]) - || !isset($_POST['password']) - || !isset($_SESSION['sectoken']) - || !isset($_POST['sectoken']) - || ($_SESSION['sectoken']!=$_POST['sectoken']) ) { + if(!isset($_POST["user"]) || !isset($_POST['password'])) { return false; } diff --git a/lib/util.php b/lib/util.php index 15e6f2824e5..29ab2c34e96 100755 --- a/lib/util.php +++ b/lib/util.php @@ -314,9 +314,6 @@ class OC_Util { $parameters["username"] = ''; $parameters['user_autofocus'] = true; } - $sectoken=rand(1000000,9999999); - $_SESSION['sectoken']=$sectoken; - $parameters["sectoken"] = $sectoken; if (isset($_REQUEST['redirect_url'])) { $redirect_url = OC_Util::sanitizeHTML($_REQUEST['redirect_url']); } else { -- GitLab From 36f1c9b0835bd7118dc7d8aba4b4c56c6d922b09 Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Sat, 29 Sep 2012 15:33:10 +0200 Subject: [PATCH 138/489] rand() + uniqid() are not from cryptographic quality --- core/lostpassword/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/lostpassword/index.php b/core/lostpassword/index.php index 9eda0915b08..7c6d51d99b8 100644 --- a/core/lostpassword/index.php +++ b/core/lostpassword/index.php @@ -13,7 +13,7 @@ require_once '../../lib/base.php'; // Someone lost their password: if (isset($_POST['user'])) { if (OC_User::userExists($_POST['user'])) { - $token = sha1($_POST['user'].md5(uniqid(rand(), true))); + $token = hash("sha256", $_POST['user'].openssl_random_pseudo_bytes(10, $cstrong)); OC_Preferences::setValue($_POST['user'], 'owncloud', 'lostpassword', $token); $email = OC_Preferences::getValue($_POST['user'], 'settings', 'email', ''); if (!empty($email)) { -- GitLab From 992c2c9d4bc20db1dc8170dcc60dc4438dc55eb0 Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Sat, 29 Sep 2012 15:41:13 +0200 Subject: [PATCH 139/489] mt_rand() is not secure from a cryptographic point of view, let's use openssl_random_pseudo_bytes() here --- lib/setup.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/setup.php b/lib/setup.php index c21c8be3957..6d8430c1036 100644 --- a/lib/setup.php +++ b/lib/setup.php @@ -79,7 +79,8 @@ class OC_Setup { } //generate a random salt that is used to salt the local user passwords - $salt=mt_rand(1000,9000).mt_rand(1000,9000).mt_rand(1000,9000).mt_rand(1000,9000).mt_rand(1000,9000).mt_rand(1000,9000).mt_rand(1000,9000).mt_rand(1000,9000); + $random_bytes = openssl_random_pseudo_bytes(30, $cstrong); + $salt = bin2hex($random_bytes); OC_Config::setValue('passwordsalt', $salt); //write the config file -- GitLab From ef57e9294b52b838f65c9896c6d85c2f8663c90b Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Sat, 29 Sep 2012 16:44:02 +0200 Subject: [PATCH 140/489] Fallback for systems without openssl --- core/lostpassword/index.php | 2 +- lib/setup.php | 3 +-- lib/util.php | 32 ++++++++++++++++++++++++++++---- 3 files changed, 30 insertions(+), 7 deletions(-) diff --git a/core/lostpassword/index.php b/core/lostpassword/index.php index 7c6d51d99b8..4cd8b9079fd 100644 --- a/core/lostpassword/index.php +++ b/core/lostpassword/index.php @@ -13,7 +13,7 @@ require_once '../../lib/base.php'; // Someone lost their password: if (isset($_POST['user'])) { if (OC_User::userExists($_POST['user'])) { - $token = hash("sha256", $_POST['user'].openssl_random_pseudo_bytes(10, $cstrong)); + $token = hash("sha256", $_POST['user'].OC_Util::generate_random_bytes(10)); OC_Preferences::setValue($_POST['user'], 'owncloud', 'lostpassword', $token); $email = OC_Preferences::getValue($_POST['user'], 'settings', 'email', ''); if (!empty($email)) { diff --git a/lib/setup.php b/lib/setup.php index 6d8430c1036..16b9ec68df6 100644 --- a/lib/setup.php +++ b/lib/setup.php @@ -79,8 +79,7 @@ class OC_Setup { } //generate a random salt that is used to salt the local user passwords - $random_bytes = openssl_random_pseudo_bytes(30, $cstrong); - $salt = bin2hex($random_bytes); + $salt = OC_Util::generate_random_bytes(30); OC_Config::setValue('passwordsalt', $salt); //write the config file diff --git a/lib/util.php b/lib/util.php index 29ab2c34e96..310ca6afec9 100755 --- a/lib/util.php +++ b/lib/util.php @@ -437,9 +437,7 @@ class OC_Util { */ public static function callRegister() { // generate a random token. - $bytes = openssl_random_pseudo_bytes(10, $cstrong); - $hex = bin2hex($bytes); - $token = $hex; + $token = self::generate_random_bytes(20); // store the token together with a timestamp in the session. $_SESSION['requesttoken-'.$token]=time(); @@ -550,4 +548,30 @@ class OC_Util { } } -} + /* + * @brief Generates random bytes with "openssl_random_pseudo_bytes" with a fallback for systems without openssl + * Inspired by gorgo on php.net + * @param Int with the length of the random + * @return String with the random bytes + */ + public static function generate_random_bytes($length = 30) { + if(function_exists('openssl_random_pseudo_bytes')) { + $pseudo_byte = bin2hex(openssl_random_pseudo_bytes($length, $strong)); + if($strong == TRUE) { + return substr($pseudo_byte, 0, $length); // Truncate it to match the length + } + } + + // fallback to mt_rand() + $characters = '0123456789'; + $characters .= 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz'; + $charactersLength = strlen($characters)-1; + $pseudo_byte = ""; + + // Select some random characters + for ($i = 0; $i < $length; $i++) { + $pseudo_byte .= $characters[mt_rand(0, $charactersLength)]; + } + return $pseudo_byte; + } +} \ No newline at end of file -- GitLab From 0ffab9fea82d5bac757e3ad20c2ac90a15538ee1 Mon Sep 17 00:00:00 2001 From: Raghu Nayyar Date: Sat, 29 Sep 2012 20:50:37 +0530 Subject: [PATCH 141/489] Update settings/css/settings.css CSS typo fixed. --- settings/css/settings.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/settings/css/settings.css b/settings/css/settings.css index 2015e93b43c..d5e826b33ce 100644 --- a/settings/css/settings.css +++ b/settings/css/settings.css @@ -38,7 +38,7 @@ div.quota { float:right; display:block; position:absolute; right:25em; top:0; } div.quota-select-wrapper { position: relative; } select.quota { position:absolute; left:0; top:0; width:10em; } select.quota-user { position:relative; left:0; top:0; width:10em; } -input.quota-other { display:none; position:absolute; left:0.1em; top:0.1em; width:7em; border:none; -webkit-box-shadow: none -mox-box-shadow:none ; box-shadow:none; } +input.quota-other { display:none; position:absolute; left:0.1em; top:0.1em; width:7em; border:none; -webkit-box-shadow: none; -moz-box-shadow:none ; box-shadow:none; } div.quota>span { position:absolute; right:0em; white-space:nowrap; top: 0.7em } select.quota.active { background: #fff; } -- GitLab From a33dda3c65f5118ce78fdf510b9cf209d3c6f159 Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Sat, 29 Sep 2012 18:10:19 +0200 Subject: [PATCH 142/489] Fix double url decoding in fileDownloadPath function --- 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 71aaedccc29..657dd6d6f8a 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -37,7 +37,7 @@ t.cache={}; * @return string */ function fileDownloadPath(dir, file) { - return OC.filePath('files', 'ajax', 'download.php')+encodeURIComponent('?files='+encodeURIComponent(file)+'&dir='+encodeURIComponent(dir)); + return OC.filePath('files', 'ajax', 'download.php')+'&files='+encodeURIComponent(file)+'&dir='+encodeURIComponent(dir); } var OC={ -- GitLab From e8afb3d31290ce70bd1c7b86331b2dcc7f1c2376 Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Sun, 30 Sep 2012 00:08:20 +0300 Subject: [PATCH 143/489] Fix a typo --- lib/subadmin.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/subadmin.php b/lib/subadmin.php index 363e4a97cad..9e83e6da430 100644 --- a/lib/subadmin.php +++ b/lib/subadmin.php @@ -172,7 +172,7 @@ class OC_SubAdmin{ } /** - * @brief delete all SubAdmins8 by gid + * @brief delete all SubAdmins by gid * @param $parameters * @return boolean */ -- GitLab From 7e30c74ea4915e677cb89a3dc664bdf8ba77e494 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Sun, 30 Sep 2012 02:05:59 +0200 Subject: [PATCH 144/489] [tx-robot] updated from transifex --- core/l10n/cs_CZ.php | 6 ++++++ core/l10n/el.php | 4 ++++ core/l10n/es.php | 6 ++++++ core/l10n/it.php | 6 ++++++ core/l10n/sv.php | 6 ++++++ l10n/cs_CZ/core.po | 24 ++++++++++++------------ l10n/el/core.po | 20 ++++++++++---------- l10n/es/core.po | 24 ++++++++++++------------ l10n/it/core.po | 24 ++++++++++++------------ l10n/sv/core.po | 24 ++++++++++++------------ l10n/templates/core.pot | 8 ++++---- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- 19 files changed, 98 insertions(+), 70 deletions(-) diff --git a/core/l10n/cs_CZ.php b/core/l10n/cs_CZ.php index f0505bed27e..461bed99334 100644 --- a/core/l10n/cs_CZ.php +++ b/core/l10n/cs_CZ.php @@ -25,14 +25,20 @@ "Error while sharing" => "Chyba při sdílení", "Error while unsharing" => "Chyba při rušení sdílení", "Error while changing permissions" => "Chyba při změně oprávnění", +"Shared with you and the group" => "S Vámi a skupinou", +"by" => "sdílí", +"Shared with you by" => "S Vámi sdílí", "Share with" => "Sdílet s", "Share with link" => "Sdílet s odkazem", "Password protect" => "Chránit heslem", "Password" => "Heslo", "Set expiration date" => "Nastavit datum vypršení platnosti", "Expiration date" => "Datum vypršení platnosti", +"Share via email:" => "Sdílet e-mailem:", "No people found" => "Žádní lidé nenalezeni", "Resharing is not allowed" => "Sdílení již sdílené položky není povoleno", +"Shared in" => "Sdíleno v", +"with" => "s", "Unshare" => "Zrušit sdílení", "can edit" => "lze upravovat", "access control" => "řízení přístupu", diff --git a/core/l10n/el.php b/core/l10n/el.php index 925bcdda027..0b7feb160cd 100644 --- a/core/l10n/el.php +++ b/core/l10n/el.php @@ -25,14 +25,18 @@ "Error while sharing" => "Σφάλμα κατά τον διαμοιρασμό", "Error while unsharing" => "Σφάλμα κατά το σταμάτημα του διαμοιρασμού", "Error while changing permissions" => "Σφάλμα κατά την αλλαγή των δικαιωμάτων", +"Shared with you and the group" => "Διαμοιρασμένο με εσένα και την ομάδα", +"by" => "από", "Share with" => "Διαμοιρασμός με", "Share with link" => "Διαμοιρασμός με σύνδεσμο", "Password protect" => "Προστασία κωδικού", "Password" => "Κωδικός", "Set expiration date" => "Ορισμός ημ. λήξης", "Expiration date" => "Ημερομηνία λήξης", +"Share via email:" => "Διαμοιρασμός μέσω email:", "No people found" => "Δεν βρέθηκε άνθρωπος", "Resharing is not allowed" => "Ξαναμοιρασμός δεν επιτρέπεται", +"with" => "με", "Unshare" => "Σταμάτημα μοιράσματος", "can edit" => "δυνατότητα αλλαγής", "access control" => "έλεγχος πρόσβασης", diff --git a/core/l10n/es.php b/core/l10n/es.php index 1a53f130a60..204760720a2 100644 --- a/core/l10n/es.php +++ b/core/l10n/es.php @@ -25,14 +25,20 @@ "Error while sharing" => "Error compartiendo", "Error while unsharing" => "Error descompartiendo", "Error while changing permissions" => "Error cambiando permisos", +"Shared with you and the group" => "Comprtido contigo y con el grupo", +"by" => "por", +"Shared with you by" => "Compartido contigo por", "Share with" => "Compartir con", "Share with link" => "Enlace de compartir con ", "Password protect" => "Protegido por contraseña", "Password" => "Contraseña", "Set expiration date" => "Establecer fecha de caducidad", "Expiration date" => "Fecha de caducidad", +"Share via email:" => "compartido via e-mail:", "No people found" => "No se encontró gente", "Resharing is not allowed" => "No se permite compartir de nuevo", +"Shared in" => "Compartido en", +"with" => "con", "Unshare" => "No compartir", "can edit" => "puede editar", "access control" => "control de acceso", diff --git a/core/l10n/it.php b/core/l10n/it.php index e5437c195eb..c586171275d 100644 --- a/core/l10n/it.php +++ b/core/l10n/it.php @@ -25,14 +25,20 @@ "Error while sharing" => "Errore durante la condivisione", "Error while unsharing" => "Errore durante la rimozione della condivisione", "Error while changing permissions" => "Errore durante la modifica dei permessi", +"Shared with you and the group" => "Condiviso con te e con il gruppo", +"by" => "da", +"Shared with you by" => "Condiviso con te da", "Share with" => "Condividi con", "Share with link" => "Condividi con collegamento", "Password protect" => "Proteggi con password", "Password" => "Password", "Set expiration date" => "Imposta data di scadenza", "Expiration date" => "Data di scadenza", +"Share via email:" => "Condividi tramite email:", "No people found" => "Non sono state trovate altre persone", "Resharing is not allowed" => "La ri-condivisione non è consentita", +"Shared in" => "Condiviso in", +"with" => "con", "Unshare" => "Rimuovi condivisione", "can edit" => "può modificare", "access control" => "controllo d'accesso", diff --git a/core/l10n/sv.php b/core/l10n/sv.php index e6b96a2c0f1..90e416fc737 100644 --- a/core/l10n/sv.php +++ b/core/l10n/sv.php @@ -25,14 +25,20 @@ "Error while sharing" => "Fel vid delning", "Error while unsharing" => "Fel när delning skulle avslutas", "Error while changing permissions" => "Fel vid ändring av rättigheter", +"Shared with you and the group" => "Delas med dig och gruppen", +"by" => "av", +"Shared with you by" => "Delas med dig av", "Share with" => "Delad med", "Share with link" => "Delad med länk", "Password protect" => "Lösenordsskydda", "Password" => "Lösenord", "Set expiration date" => "Sätt utgångsdatum", "Expiration date" => "Utgångsdatum", +"Share via email:" => "Dela via e-post:", "No people found" => "Hittar inga användare", "Resharing is not allowed" => "Dela vidare är inte tillåtet", +"Shared in" => "Delas i", +"with" => "med", "Unshare" => "Sluta dela", "can edit" => "kan redigera", "access control" => "åtkomstkontroll", diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po index b9c0bef6ae4..b589fce4cd9 100644 --- a/l10n/cs_CZ/core.po +++ b/l10n/cs_CZ/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: 2012-09-28 23:34+0200\n" -"PO-Revision-Date: 2012-09-28 21:34+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-30 02:02+0200\n" +"PO-Revision-Date: 2012-09-29 08:16+0000\n" +"Last-Translator: Tomáš Chvátal \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -128,15 +128,15 @@ msgstr "Chyba při změně oprávnění" #: js/share.js:130 msgid "Shared with you and the group" -msgstr "" +msgstr "S Vámi a skupinou" #: js/share.js:130 msgid "by" -msgstr "" +msgstr "sdílí" #: js/share.js:132 msgid "Shared with you by" -msgstr "" +msgstr "S Vámi sdílí" #: js/share.js:137 msgid "Share with" @@ -164,7 +164,7 @@ msgstr "Datum vypršení platnosti" #: js/share.js:185 msgid "Share via email:" -msgstr "" +msgstr "Sdílet e-mailem:" #: js/share.js:187 msgid "No people found" @@ -176,11 +176,11 @@ msgstr "Sdílení již sdílené položky není povoleno" #: js/share.js:250 msgid "Shared in" -msgstr "" +msgstr "Sdíleno v" #: js/share.js:250 msgid "with" -msgstr "" +msgstr "s" #: js/share.js:271 msgid "Unshare" @@ -247,7 +247,7 @@ msgstr "Přihlášení selhalo." msgid "Username" msgstr "Uživatelské jméno" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:14 msgid "Request reset" msgstr "Vyžádat obnovu" @@ -360,11 +360,11 @@ msgstr "Odhlásit se" msgid "Lost your password?" msgstr "Ztratili jste své heslo?" -#: templates/login.php:17 +#: templates/login.php:16 msgid "remember" msgstr "zapamatovat si" -#: templates/login.php:18 +#: templates/login.php:17 msgid "Log in" msgstr "Přihlásit" diff --git a/l10n/el/core.po b/l10n/el/core.po index 5fb3691f6b2..8d7cc4b1d84 100644 --- a/l10n/el/core.po +++ b/l10n/el/core.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-28 23:34+0200\n" -"PO-Revision-Date: 2012-09-28 21:34+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-30 02:02+0200\n" +"PO-Revision-Date: 2012-09-29 19:12+0000\n" +"Last-Translator: Efstathios Iosifidis \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -129,11 +129,11 @@ msgstr "Σφάλμα κατά την αλλαγή των δικαιωμάτων" #: js/share.js:130 msgid "Shared with you and the group" -msgstr "" +msgstr "Διαμοιρασμένο με εσένα και την ομάδα" #: js/share.js:130 msgid "by" -msgstr "" +msgstr "από" #: js/share.js:132 msgid "Shared with you by" @@ -165,7 +165,7 @@ msgstr "Ημερομηνία λήξης" #: js/share.js:185 msgid "Share via email:" -msgstr "" +msgstr "Διαμοιρασμός μέσω email:" #: js/share.js:187 msgid "No people found" @@ -181,7 +181,7 @@ msgstr "" #: js/share.js:250 msgid "with" -msgstr "" +msgstr "με" #: js/share.js:271 msgid "Unshare" @@ -248,7 +248,7 @@ msgstr "Η σύνδεση απέτυχε!" msgid "Username" msgstr "Όνομα Χρήστη" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:14 msgid "Request reset" msgstr "Επαναφορά αίτησης" @@ -361,11 +361,11 @@ msgstr "Αποσύνδεση" msgid "Lost your password?" msgstr "Ξεχάσατε τον κωδικό σας;" -#: templates/login.php:17 +#: templates/login.php:16 msgid "remember" msgstr "να με θυμάσαι" -#: templates/login.php:18 +#: templates/login.php:17 msgid "Log in" msgstr "Είσοδος" diff --git a/l10n/es/core.po b/l10n/es/core.po index fc225d2f546..98e33ab2a08 100644 --- a/l10n/es/core.po +++ b/l10n/es/core.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-28 23:34+0200\n" -"PO-Revision-Date: 2012-09-28 21:34+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-30 02:02+0200\n" +"PO-Revision-Date: 2012-09-29 20:46+0000\n" +"Last-Translator: Raul Fernandez Garcia \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" @@ -133,15 +133,15 @@ msgstr "Error cambiando permisos" #: js/share.js:130 msgid "Shared with you and the group" -msgstr "" +msgstr "Comprtido contigo y con el grupo" #: js/share.js:130 msgid "by" -msgstr "" +msgstr "por" #: js/share.js:132 msgid "Shared with you by" -msgstr "" +msgstr "Compartido contigo por" #: js/share.js:137 msgid "Share with" @@ -169,7 +169,7 @@ msgstr "Fecha de caducidad" #: js/share.js:185 msgid "Share via email:" -msgstr "" +msgstr "compartido via e-mail:" #: js/share.js:187 msgid "No people found" @@ -181,11 +181,11 @@ msgstr "No se permite compartir de nuevo" #: js/share.js:250 msgid "Shared in" -msgstr "" +msgstr "Compartido en" #: js/share.js:250 msgid "with" -msgstr "" +msgstr "con" #: js/share.js:271 msgid "Unshare" @@ -252,7 +252,7 @@ msgstr "¡Fallo al iniciar sesión!" msgid "Username" msgstr "Nombre de usuario" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:14 msgid "Request reset" msgstr "Solicitar restablecimiento" @@ -365,11 +365,11 @@ msgstr "Salir" msgid "Lost your password?" msgstr "¿Has perdido tu contraseña?" -#: templates/login.php:17 +#: templates/login.php:16 msgid "remember" msgstr "recuérdame" -#: templates/login.php:18 +#: templates/login.php:17 msgid "Log in" msgstr "Entrar" diff --git a/l10n/it/core.po b/l10n/it/core.po index d0bd8e8b709..6127433b0fe 100644 --- a/l10n/it/core.po +++ b/l10n/it/core.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-28 23:34+0200\n" -"PO-Revision-Date: 2012-09-28 21:34+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-30 02:02+0200\n" +"PO-Revision-Date: 2012-09-29 05:31+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" @@ -129,15 +129,15 @@ msgstr "Errore durante la modifica dei permessi" #: js/share.js:130 msgid "Shared with you and the group" -msgstr "" +msgstr "Condiviso con te e con il gruppo" #: js/share.js:130 msgid "by" -msgstr "" +msgstr "da" #: js/share.js:132 msgid "Shared with you by" -msgstr "" +msgstr "Condiviso con te da" #: js/share.js:137 msgid "Share with" @@ -165,7 +165,7 @@ msgstr "Data di scadenza" #: js/share.js:185 msgid "Share via email:" -msgstr "" +msgstr "Condividi tramite email:" #: js/share.js:187 msgid "No people found" @@ -177,11 +177,11 @@ msgstr "La ri-condivisione non è consentita" #: js/share.js:250 msgid "Shared in" -msgstr "" +msgstr "Condiviso in" #: js/share.js:250 msgid "with" -msgstr "" +msgstr "con" #: js/share.js:271 msgid "Unshare" @@ -248,7 +248,7 @@ msgstr "Accesso non riuscito!" msgid "Username" msgstr "Nome utente" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:14 msgid "Request reset" msgstr "Richiesta di ripristino" @@ -361,11 +361,11 @@ msgstr "Esci" msgid "Lost your password?" msgstr "Hai perso la password?" -#: templates/login.php:17 +#: templates/login.php:16 msgid "remember" msgstr "ricorda" -#: templates/login.php:18 +#: templates/login.php:17 msgid "Log in" msgstr "Accedi" diff --git a/l10n/sv/core.po b/l10n/sv/core.po index c09e46e7db1..1eaf985129e 100644 --- a/l10n/sv/core.po +++ b/l10n/sv/core.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-28 23:34+0200\n" -"PO-Revision-Date: 2012-09-28 21:34+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-30 02:02+0200\n" +"PO-Revision-Date: 2012-09-29 11:11+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" @@ -130,15 +130,15 @@ msgstr "Fel vid ändring av rättigheter" #: js/share.js:130 msgid "Shared with you and the group" -msgstr "" +msgstr "Delas med dig och gruppen" #: js/share.js:130 msgid "by" -msgstr "" +msgstr "av" #: js/share.js:132 msgid "Shared with you by" -msgstr "" +msgstr "Delas med dig av" #: js/share.js:137 msgid "Share with" @@ -166,7 +166,7 @@ msgstr "Utgångsdatum" #: js/share.js:185 msgid "Share via email:" -msgstr "" +msgstr "Dela via e-post:" #: js/share.js:187 msgid "No people found" @@ -178,11 +178,11 @@ msgstr "Dela vidare är inte tillåtet" #: js/share.js:250 msgid "Shared in" -msgstr "" +msgstr "Delas i" #: js/share.js:250 msgid "with" -msgstr "" +msgstr "med" #: js/share.js:271 msgid "Unshare" @@ -249,7 +249,7 @@ msgstr "Misslyckad inloggning!" msgid "Username" msgstr "Användarnamn" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:14 msgid "Request reset" msgstr "Begär återställning" @@ -362,11 +362,11 @@ msgstr "Logga ut" msgid "Lost your password?" msgstr "Glömt ditt lösenord?" -#: templates/login.php:17 +#: templates/login.php:16 msgid "remember" msgstr "kom ihåg" -#: templates/login.php:18 +#: templates/login.php:17 msgid "Log in" msgstr "Logga in" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 4cedff9db61..c68796eef7d 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-29 02:02+0200\n" +"POT-Creation-Date: 2012-09-30 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -243,7 +243,7 @@ msgstr "" msgid "Username" msgstr "" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:14 msgid "Request reset" msgstr "" @@ -356,11 +356,11 @@ msgstr "" msgid "Lost your password?" msgstr "" -#: templates/login.php:17 +#: templates/login.php:16 msgid "remember" msgstr "" -#: templates/login.php:18 +#: templates/login.php:17 msgid "Log in" msgstr "" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index da5985a6d14..ed6ab3395c8 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-29 02:02+0200\n" +"POT-Creation-Date: 2012-09-30 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 9a41187b71d..a485c2fe9fc 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-29 02:02+0200\n" +"POT-Creation-Date: 2012-09-30 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index 2638af8efce..c47aea1111d 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-29 02:02+0200\n" +"POT-Creation-Date: 2012-09-30 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index c1e994b1974..b709e3dee27 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-29 02:02+0200\n" +"POT-Creation-Date: 2012-09-30 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index a4b7d0e753b..881252cfd33 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-29 02:02+0200\n" +"POT-Creation-Date: 2012-09-30 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index 870ec568fb3..63c8b0486e4 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-29 02:02+0200\n" +"POT-Creation-Date: 2012-09-30 02:03+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 01e0d574f86..2f956883193 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-29 02:02+0200\n" +"POT-Creation-Date: 2012-09-30 02:03+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index aadc7f0a6b1..45966a56a12 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-29 02:02+0200\n" +"POT-Creation-Date: 2012-09-30 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" -- GitLab From f8eebcbb011269a36fe4b10f21b73dec4b076bff Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Sun, 30 Sep 2012 03:47:37 +0200 Subject: [PATCH 145/489] reload the current url when login in instead of always redirecting to the default app (oc-1873) --- core/templates/login.php | 2 +- lib/base.php | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/core/templates/login.php b/core/templates/login.php index bedff4453b0..bb7a8337523 100644 --- a/core/templates/login.php +++ b/core/templates/login.php @@ -1,5 +1,5 @@ -
    +
    '; } ?> diff --git a/lib/base.php b/lib/base.php index b89859ab2dd..41ff1870059 100644 --- a/lib/base.php +++ b/lib/base.php @@ -549,7 +549,8 @@ class OC{ else { OC_User::unsetMagicInCookie(); } - OC_Util::redirectToDefaultPage(); + header( 'Location: '.$_SERVER['REQUEST_URI'] ); + exit(); } return true; } -- GitLab From 258782584e490b92ccfcf032921aa7062a28da9f Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Sun, 30 Sep 2012 03:58:58 +0200 Subject: [PATCH 146/489] fix mimetype detection using the 'file' command in some edge cases --- lib/helper.php | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/helper.php b/lib/helper.php index 8e578735f4c..908a61b5a2d 100644 --- a/lib/helper.php +++ b/lib/helper.php @@ -370,6 +370,7 @@ class OC_Helper { //trim the character set from the end of the response $mimeType=substr($reply,0,strrpos($reply,' ')); + $mimeType=substr($mimeType,0,strrpos($mimeType,"\n")); //trim ; if (strpos($mimeType, ';') !== false) { -- GitLab From 113c339c41663c692eae809ada23c4057f9e3ff0 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Sun, 30 Sep 2012 16:11:01 +0200 Subject: [PATCH 147/489] fix updating the filecache for when contents of a folder has changed --- lib/filecache/update.php | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/lib/filecache/update.php b/lib/filecache/update.php index 2b64a2a90ff..1b81f70d77b 100644 --- a/lib/filecache/update.php +++ b/lib/filecache/update.php @@ -81,10 +81,13 @@ class OC_FileCache_Update{ $dh=$view->opendir($path.'/'); if($dh) {//check for changed/new files while (($filename = readdir($dh)) !== false) { - if($filename != '.' and $filename != '..') { + if($filename != '.' and $filename != '..' and $filename != '') { $file=$path.'/'.$filename; - if(self::hasUpdated($file, $root)) { - if($root===false) {//filesystem hooks are only valid for the default root + $isDir=$view->is_dir($file); + if(self::hasUpdated($file, $root, $isDir)) { + if($isDir){ + self::updateFolder($file, $root); + }elseif($root===false) {//filesystem hooks are only valid for the default root OC_Hook::emit('OC_Filesystem', 'post_write', array('path'=>$file)); }else{ self::update($file, $root); @@ -136,7 +139,7 @@ class OC_FileCache_Update{ } /** - * update the filecache according to changes to the fileysystem + * update the filecache according to changes to the filesystem * @param string path * @param string root (optional) */ @@ -211,4 +214,4 @@ class OC_FileCache_Update{ OC_FileCache::increaseSize(dirname($newPath), $oldSize, $root); OC_FileCache::move($oldPath, $newPath); } -} \ No newline at end of file +} -- GitLab From 91d12a2f3d860c25ae8daa0cfd838fd6deba5dec Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Sun, 30 Sep 2012 16:12:16 +0200 Subject: [PATCH 148/489] update the filecache by setting mtimes to 0 when the mount configuration has changed instead of clearing the cache --- lib/filecache.php | 14 ++++++++++++++ lib/filesystem.php | 4 ++-- lib/util.php | 4 ++-- 3 files changed, 18 insertions(+), 4 deletions(-) diff --git a/lib/filecache.php b/lib/filecache.php index 07099bcccd5..305ba035fb5 100644 --- a/lib/filecache.php +++ b/lib/filecache.php @@ -488,6 +488,20 @@ class OC_FileCache{ $query->execute(); } } + + /** + * trigger an update for the cache by setting the mtimes to 0 + * @param string $user (optional) + */ + public static function triggerUpdate($user=''){ + if($user) { + $query=OC_DB::prepare('UPDATE `*PREFIX*fscache` SET `mtime`=0 WHERE `user`=? AND `mimetype`="httpd/unix-directory"'); + $query->execute(array($user)); + }else{ + $query=OC_DB::prepare('UPDATE `*PREFIX*fscache` SET `mtime`=0 AND `mimetype`="httpd/unix-directory"'); + $query->execute(); + } + } } //watch for changes and try to keep the cache up to date diff --git a/lib/filesystem.php b/lib/filesystem.php index c6da826a339..6dbfc6a9bf4 100644 --- a/lib/filesystem.php +++ b/lib/filesystem.php @@ -240,7 +240,7 @@ class OC_Filesystem{ $mtime=filemtime(OC::$SERVERROOT.'/config/mount.php'); $previousMTime=OC_Appconfig::getValue('files','mountconfigmtime',0); if($mtime>$previousMTime) {//mount config has changed, filecache needs to be updated - OC_FileCache::clear(); + OC_FileCache::triggerUpdate(); OC_Appconfig::setValue('files','mountconfigmtime',$mtime); } } @@ -531,7 +531,7 @@ class OC_Filesystem{ if ($root) { // reduce path to the required part of it (no 'username/files') $fakeRootView = new OC_FilesystemView($root); $count = 1; - $path=str_replace(OC_App::getStorage("files")->getAbsolutePath(), "", $fakeRootView->getAbsolutePath($path), $count); + $path=str_replace(OC_App::getStorage("files")->getAbsolutePath($path), "", $fakeRootView->getAbsolutePath($path), $count); } $path = self::normalizePath($path); diff --git a/lib/util.php b/lib/util.php index 310ca6afec9..db715a7a0f3 100755 --- a/lib/util.php +++ b/lib/util.php @@ -62,7 +62,7 @@ class OC_Util { $mtime=filemtime($user_root.'/mount.php'); $previousMTime=OC_Preferences::getValue($user,'files','mountconfigmtime',0); if($mtime>$previousMTime) {//mount config has changed, filecache needs to be updated - OC_FileCache::clear($user); + OC_FileCache::triggerUpdate($user); OC_Preferences::setValue($user,'files','mountconfigmtime',$mtime); } } @@ -574,4 +574,4 @@ class OC_Util { } return $pseudo_byte; } -} \ No newline at end of file +} -- GitLab From 377fb198185d3bca51155a404cf0242daa42ef94 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Mon, 1 Oct 2012 02:08:31 +0200 Subject: [PATCH 149/489] [tx-robot] updated from transifex --- apps/files_sharing/l10n/pt_PT.php | 9 +++++++++ apps/files_versions/l10n/pt_PT.php | 1 + core/l10n/el.php | 2 ++ core/l10n/fr.php | 6 ++++++ core/l10n/ja_JP.php | 6 ++++++ core/l10n/th_TH.php | 6 ++++++ l10n/el/core.po | 10 +++++----- l10n/fr/core.po | 24 ++++++++++++------------ l10n/ja_JP/core.po | 24 ++++++++++++------------ l10n/pt_PT/files_sharing.po | 21 +++++++++++---------- l10n/pt_PT/files_versions.po | 6 +++--- 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_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/th_TH/core.po | 24 ++++++++++++------------ 21 files changed, 94 insertions(+), 63 deletions(-) create mode 100644 apps/files_sharing/l10n/pt_PT.php diff --git a/apps/files_sharing/l10n/pt_PT.php b/apps/files_sharing/l10n/pt_PT.php new file mode 100644 index 00000000000..b8e700e3802 --- /dev/null +++ b/apps/files_sharing/l10n/pt_PT.php @@ -0,0 +1,9 @@ + "Palavra-Passe", +"Submit" => "Submeter", +"%s shared the folder %s with you" => "%s partilhou a pasta %s consigo", +"%s shared the file %s with you" => "%s partilhou o ficheiro %s consigo", +"Download" => "Descarregar", +"No preview available for" => "Não há pré-visualização para", +"web services under your control" => "serviços web sob o seu controlo" +); diff --git a/apps/files_versions/l10n/pt_PT.php b/apps/files_versions/l10n/pt_PT.php index eb80eec6ed8..2ddf70cc6c5 100644 --- a/apps/files_versions/l10n/pt_PT.php +++ b/apps/files_versions/l10n/pt_PT.php @@ -3,5 +3,6 @@ "History" => "Histórico", "Versions" => "Versões", "This will delete all existing backup versions of your files" => "Isto irá apagar todas as versões de backup do seus ficheiros", +"Files Versioning" => "Versionamento de Ficheiros", "Enable" => "Activar" ); diff --git a/core/l10n/el.php b/core/l10n/el.php index 0b7feb160cd..0e0c43b899e 100644 --- a/core/l10n/el.php +++ b/core/l10n/el.php @@ -27,6 +27,7 @@ "Error while changing permissions" => "Σφάλμα κατά την αλλαγή των δικαιωμάτων", "Shared with you and the group" => "Διαμοιρασμένο με εσένα και την ομάδα", "by" => "από", +"Shared with you by" => "Μοιράστηκε μαζί σας από ", "Share with" => "Διαμοιρασμός με", "Share with link" => "Διαμοιρασμός με σύνδεσμο", "Password protect" => "Προστασία κωδικού", @@ -36,6 +37,7 @@ "Share via email:" => "Διαμοιρασμός μέσω email:", "No people found" => "Δεν βρέθηκε άνθρωπος", "Resharing is not allowed" => "Ξαναμοιρασμός δεν επιτρέπεται", +"Shared in" => "Διαμοιράστηκε με", "with" => "με", "Unshare" => "Σταμάτημα μοιράσματος", "can edit" => "δυνατότητα αλλαγής", diff --git a/core/l10n/fr.php b/core/l10n/fr.php index 71ab04e8c40..4ab46a8a332 100644 --- a/core/l10n/fr.php +++ b/core/l10n/fr.php @@ -25,14 +25,20 @@ "Error while sharing" => "Erreur lors de la mise en partage", "Error while unsharing" => "Erreur lors de l'annulation du partage", "Error while changing permissions" => "Erreur lors du changement des permissions", +"Shared with you and the group" => "Partagé avec vous ainsi qu'avec le groupe", +"by" => "par", +"Shared with you by" => "Partagé avec vous par", "Share with" => "Partager avec", "Share with link" => "Partager via lien", "Password protect" => "Protéger par un mot de passe", "Password" => "Mot de passe", "Set expiration date" => "Spécifier la date d'expiration", "Expiration date" => "Date d'expiration", +"Share via email:" => "Partager via e-mail :", "No people found" => "Aucun utilisateur trouvé", "Resharing is not allowed" => "Le repartage n'est pas autorisé", +"Shared in" => "Partagé dans", +"with" => "avec", "Unshare" => "Ne plus partager", "can edit" => "édition autorisée", "access control" => "contrôle des accès", diff --git a/core/l10n/ja_JP.php b/core/l10n/ja_JP.php index 36f986f6167..089098c2d22 100644 --- a/core/l10n/ja_JP.php +++ b/core/l10n/ja_JP.php @@ -25,14 +25,20 @@ "Error while sharing" => "共有でエラー発生", "Error while unsharing" => "共有解除でエラー発生", "Error while changing permissions" => "権限変更でエラー発生", +"Shared with you and the group" => "あなたとグループで共有中", +"by" => "により", +"Shared with you by" => "あなたと共有", "Share with" => "共有者", "Share with link" => "URLリンクで共有", "Password protect" => "パスワード保護", "Password" => "パスワード", "Set expiration date" => "有効期限を設定", "Expiration date" => "有効期限", +"Share via email:" => "メール経由で共有: %s", "No people found" => "ユーザーが見つかりません", "Resharing is not allowed" => "再共有は許可されていません", +"Shared in" => "の中で共有中", +"with" => "と", "Unshare" => "共有解除", "can edit" => "編集可能", "access control" => "アクセス権限", diff --git a/core/l10n/th_TH.php b/core/l10n/th_TH.php index f5a1775f6a2..79a50b2c78d 100644 --- a/core/l10n/th_TH.php +++ b/core/l10n/th_TH.php @@ -25,14 +25,20 @@ "Error while sharing" => "เกิดข้อผิดพลาดในระหว่างการแชร์ข้อมูล", "Error while unsharing" => "เกิดข้อผิดพลาดในการยกเลิกการแชร์ข้อมูล", "Error while changing permissions" => "เกิดข้อผิดพลาดในการเปลี่ยนสิทธิ์การเข้าใช้งาน", +"Shared with you and the group" => "แชร์ให้คุณและกลุ่ม", +"by" => "โดย", +"Shared with you by" => "แชร์ให้คุณโดย", "Share with" => "แชร์ให้กับ", "Share with link" => "แชร์ด้วยลิงก์", "Password protect" => "ใส่รหัสผ่านไว้", "Password" => "รหัสผ่าน", "Set expiration date" => "กำหนดวันที่หมดอายุ", "Expiration date" => "วันที่หมดอายุ", +"Share via email:" => "แชร์ผ่านทางอีเมล", "No people found" => "ไม่พบบุคคลที่ต้องการ", "Resharing is not allowed" => "ไม่อนุญาตให้แชร์ข้อมูลซ้ำได้", +"Shared in" => "แชร์ไว้ใน", +"with" => "ด้วย", "Unshare" => "ยกเลิกการแชร์", "can edit" => "สามารถแก้ไข", "access control" => "ระดับควบคุมการเข้าใช้งาน", diff --git a/l10n/el/core.po b/l10n/el/core.po index 8d7cc4b1d84..7edf2b29dd9 100644 --- a/l10n/el/core.po +++ b/l10n/el/core.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-30 02:02+0200\n" -"PO-Revision-Date: 2012-09-29 19:12+0000\n" -"Last-Translator: Efstathios Iosifidis \n" +"POT-Creation-Date: 2012-10-01 02:04+0200\n" +"PO-Revision-Date: 2012-09-30 17:27+0000\n" +"Last-Translator: Dimitris M. \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -137,7 +137,7 @@ msgstr "από" #: js/share.js:132 msgid "Shared with you by" -msgstr "" +msgstr "Μοιράστηκε μαζί σας από " #: js/share.js:137 msgid "Share with" @@ -177,7 +177,7 @@ msgstr "Ξαναμοιρασμός δεν επιτρέπεται" #: js/share.js:250 msgid "Shared in" -msgstr "" +msgstr "Διαμοιράστηκε με" #: js/share.js:250 msgid "with" diff --git a/l10n/fr/core.po b/l10n/fr/core.po index 1af28feae42..aec436ebe73 100644 --- a/l10n/fr/core.po +++ b/l10n/fr/core.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-28 23:34+0200\n" -"PO-Revision-Date: 2012-09-28 21:34+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-10-01 02:04+0200\n" +"PO-Revision-Date: 2012-09-30 15:52+0000\n" +"Last-Translator: Romain DEP. \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" @@ -131,15 +131,15 @@ msgstr "Erreur lors du changement des permissions" #: js/share.js:130 msgid "Shared with you and the group" -msgstr "" +msgstr "Partagé avec vous ainsi qu'avec le groupe" #: js/share.js:130 msgid "by" -msgstr "" +msgstr "par" #: js/share.js:132 msgid "Shared with you by" -msgstr "" +msgstr "Partagé avec vous par" #: js/share.js:137 msgid "Share with" @@ -167,7 +167,7 @@ msgstr "Date d'expiration" #: js/share.js:185 msgid "Share via email:" -msgstr "" +msgstr "Partager via e-mail :" #: js/share.js:187 msgid "No people found" @@ -179,11 +179,11 @@ msgstr "Le repartage n'est pas autorisé" #: js/share.js:250 msgid "Shared in" -msgstr "" +msgstr "Partagé dans" #: js/share.js:250 msgid "with" -msgstr "" +msgstr "avec" #: js/share.js:271 msgid "Unshare" @@ -250,7 +250,7 @@ msgstr "Nom d'utilisateur ou e-mail invalide" msgid "Username" msgstr "Nom d'utilisateur" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:14 msgid "Request reset" msgstr "Demander la réinitialisation" @@ -363,11 +363,11 @@ msgstr "Se déconnecter" msgid "Lost your password?" msgstr "Mot de passe perdu ?" -#: templates/login.php:17 +#: templates/login.php:16 msgid "remember" msgstr "se souvenir de moi" -#: templates/login.php:18 +#: templates/login.php:17 msgid "Log in" msgstr "Connexion" diff --git a/l10n/ja_JP/core.po b/l10n/ja_JP/core.po index 438ce437a40..5f15311627f 100644 --- a/l10n/ja_JP/core.po +++ b/l10n/ja_JP/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: 2012-09-28 23:34+0200\n" -"PO-Revision-Date: 2012-09-28 21:34+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-10-01 02:04+0200\n" +"PO-Revision-Date: 2012-09-30 12:40+0000\n" +"Last-Translator: ttyn \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" @@ -126,15 +126,15 @@ msgstr "権限変更でエラー発生" #: js/share.js:130 msgid "Shared with you and the group" -msgstr "" +msgstr "あなたとグループで共有中" #: js/share.js:130 msgid "by" -msgstr "" +msgstr "により" #: js/share.js:132 msgid "Shared with you by" -msgstr "" +msgstr "あなたと共有" #: js/share.js:137 msgid "Share with" @@ -162,7 +162,7 @@ msgstr "有効期限" #: js/share.js:185 msgid "Share via email:" -msgstr "" +msgstr "メール経由で共有: %s" #: js/share.js:187 msgid "No people found" @@ -174,11 +174,11 @@ msgstr "再共有は許可されていません" #: js/share.js:250 msgid "Shared in" -msgstr "" +msgstr "の中で共有中" #: js/share.js:250 msgid "with" -msgstr "" +msgstr "と" #: js/share.js:271 msgid "Unshare" @@ -245,7 +245,7 @@ msgstr "ログインに失敗しました!" msgid "Username" msgstr "ユーザ名" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:14 msgid "Request reset" msgstr "リセットを要求します。" @@ -358,11 +358,11 @@ msgstr "ログアウト" msgid "Lost your password?" msgstr "パスワードを忘れましたか?" -#: templates/login.php:17 +#: templates/login.php:16 msgid "remember" msgstr "パスワードを記憶する" -#: templates/login.php:18 +#: templates/login.php:17 msgid "Log in" msgstr "ログイン" diff --git a/l10n/pt_PT/files_sharing.po b/l10n/pt_PT/files_sharing.po index a593fe89b52..b3df0a72fac 100644 --- a/l10n/pt_PT/files_sharing.po +++ b/l10n/pt_PT/files_sharing.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Duarte Velez Grilo , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-22 01:14+0200\n" -"PO-Revision-Date: 2012-09-21 23:15+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-10-01 02:04+0200\n" +"PO-Revision-Date: 2012-09-30 22:25+0000\n" +"Last-Translator: Duarte Velez Grilo \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,30 +20,30 @@ msgstr "" #: templates/authenticate.php:4 msgid "Password" -msgstr "" +msgstr "Palavra-Passe" #: templates/authenticate.php:6 msgid "Submit" -msgstr "" +msgstr "Submeter" #: templates/public.php:9 #, php-format msgid "%s shared the folder %s with you" -msgstr "" +msgstr "%s partilhou a pasta %s consigo" #: templates/public.php:11 #, php-format msgid "%s shared the file %s with you" -msgstr "" +msgstr "%s partilhou o ficheiro %s consigo" #: templates/public.php:14 templates/public.php:30 msgid "Download" -msgstr "" +msgstr "Descarregar" #: templates/public.php:29 msgid "No preview available for" -msgstr "" +msgstr "Não há pré-visualização para" #: templates/public.php:37 msgid "web services under your control" -msgstr "" +msgstr "serviços web sob o seu controlo" diff --git a/l10n/pt_PT/files_versions.po b/l10n/pt_PT/files_versions.po index 4da2f774a10..0a78dc0df95 100644 --- a/l10n/pt_PT/files_versions.po +++ b/l10n/pt_PT/files_versions.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-27 02:01+0200\n" -"PO-Revision-Date: 2012-09-26 13:15+0000\n" +"POT-Creation-Date: 2012-10-01 02:04+0200\n" +"PO-Revision-Date: 2012-09-30 22:21+0000\n" "Last-Translator: Duarte Velez Grilo \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -36,7 +36,7 @@ msgstr "Isto irá apagar todas as versões de backup do seus ficheiros" #: templates/settings.php:3 msgid "Files Versioning" -msgstr "" +msgstr "Versionamento de Ficheiros" #: templates/settings.php:4 msgid "Enable" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index c68796eef7d..77c0ffb1450 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-30 02:02+0200\n" +"POT-Creation-Date: 2012-10-01 02:04+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index ed6ab3395c8..135b2176f91 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-30 02:02+0200\n" +"POT-Creation-Date: 2012-10-01 02:04+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index a485c2fe9fc..dba46b52fcf 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-30 02:02+0200\n" +"POT-Creation-Date: 2012-10-01 02:04+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index c47aea1111d..11e45d75b19 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-30 02:02+0200\n" +"POT-Creation-Date: 2012-10-01 02:04+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index b709e3dee27..0379150c9d9 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-30 02:02+0200\n" +"POT-Creation-Date: 2012-10-01 02:04+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 881252cfd33..9d7a47dea6b 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-30 02:02+0200\n" +"POT-Creation-Date: 2012-10-01 02:04+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index 63c8b0486e4..b3406472fc3 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-30 02:03+0200\n" +"POT-Creation-Date: 2012-10-01 02:05+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 2f956883193..2a44dd79f99 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-30 02:03+0200\n" +"POT-Creation-Date: 2012-10-01 02:05+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 45966a56a12..0ca250288ff 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-30 02:02+0200\n" +"POT-Creation-Date: 2012-10-01 02:04+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/th_TH/core.po b/l10n/th_TH/core.po index 24f87167eb8..b9f67f922d2 100644 --- a/l10n/th_TH/core.po +++ b/l10n/th_TH/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: 2012-09-28 23:34+0200\n" -"PO-Revision-Date: 2012-09-28 21:34+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-10-01 02:04+0200\n" +"PO-Revision-Date: 2012-09-30 07:07+0000\n" +"Last-Translator: AriesAnywhere Anywhere \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -126,15 +126,15 @@ msgstr "เกิดข้อผิดพลาดในการเปลี่ #: js/share.js:130 msgid "Shared with you and the group" -msgstr "" +msgstr "แชร์ให้คุณและกลุ่ม" #: js/share.js:130 msgid "by" -msgstr "" +msgstr "โดย" #: js/share.js:132 msgid "Shared with you by" -msgstr "" +msgstr "แชร์ให้คุณโดย" #: js/share.js:137 msgid "Share with" @@ -162,7 +162,7 @@ msgstr "วันที่หมดอายุ" #: js/share.js:185 msgid "Share via email:" -msgstr "" +msgstr "แชร์ผ่านทางอีเมล" #: js/share.js:187 msgid "No people found" @@ -174,11 +174,11 @@ msgstr "ไม่อนุญาตให้แชร์ข้อมูลซ้ #: js/share.js:250 msgid "Shared in" -msgstr "" +msgstr "แชร์ไว้ใน" #: js/share.js:250 msgid "with" -msgstr "" +msgstr "ด้วย" #: js/share.js:271 msgid "Unshare" @@ -245,7 +245,7 @@ msgstr "ไม่สามารถเข้าสู่ระบบได้!" msgid "Username" msgstr "ชื่อผู้ใช้งาน" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:14 msgid "Request reset" msgstr "ขอเปลี่ยนรหัสใหม่" @@ -358,11 +358,11 @@ msgstr "ออกจากระบบ" msgid "Lost your password?" msgstr "ลืมรหัสผ่าน?" -#: templates/login.php:17 +#: templates/login.php:16 msgid "remember" msgstr "จำรหัสผ่าน" -#: templates/login.php:18 +#: templates/login.php:17 msgid "Log in" msgstr "เข้าสู่ระบบ" -- GitLab From 2330dd5f21d1aaeb8c6ebe41e989b503c08739bb Mon Sep 17 00:00:00 2001 From: Mat Lipe Date: Sun, 30 Sep 2012 20:02:52 -0500 Subject: [PATCH 150/489] Update apps/files/css/files.css Fix the File Upload Button in Chrome. Tested in IE9-8-7, Firefox, Chrome --- apps/files/css/files.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/files/css/files.css b/apps/files/css/files.css index db8b8ff57ba..9e7d4d3dd68 100644 --- a/apps/files/css/files.css +++ b/apps/files/css/files.css @@ -10,7 +10,7 @@ .file_upload_form, #file_newfolder_form { display:inline; float: left; margin-left:0; } #fileSelector, #file_upload_submit, #file_newfolder_submit { display:none; } .file_upload_wrapper, #file_newfolder_name { background-repeat:no-repeat; background-position:.5em .5em; padding-left:2em; } -.file_upload_wrapper { font-weight:bold; display:-moz-inline-box; /* fallback for older firefox versions*/ display:inline-block; padding-left:0; overflow:hidden; position:relative; margin:0;} +.file_upload_wrapper { font-weight:bold; display:-moz-inline-box; /* fallback for older firefox versions*/ display:block; float:left; padding-left:0; overflow:hidden; position:relative; margin:0;} .file_upload_wrapper .file_upload_button_wrapper { position:absolute; top:0; left:0; width:100%; height:100%; cursor:pointer; z-index:1000; } #new { background-color:#5bb75b; float:left; border-top-right-radius:0; border-bottom-right-radius:0; margin:0 0 0 1em; border-right:none; z-index:1010; height:1.3em; } #new:hover, a.file_upload_button_wrapper:hover + button.file_upload_filename { background-color:#4b964b; } @@ -67,7 +67,7 @@ table td.filename .uploadtext { font-weight:normal; margin-left:.5em; } table td.filename form { float:left; font-size:.85em; } table thead.fixed tr{ position:fixed; top:6.5em; z-index:49; -moz-box-shadow:0 -3px 7px #ddd; -webkit-box-shadow:0 -3px 7px #ddd; box-shadow:0 -3px 7px #ddd; } table thead.fixed { height:2em; } -#fileList tr td.filename>input[type=checkbox]:first-child { -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; filter:alpha(opacity=0); opacity:0; float:left; margin:.7em 0 0 1em; /* bigger clickable area doesn’t work in FF width:2.8em; height:2.4em;*/ -webkit-transition:opacity 200ms; -moz-transition:opacity 200ms; -o-transition:opacity 200ms; transition:opacity 200ms; } +#fileList tr td.filename>input[type=checkbox]:first-child { -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; filter:alpha(opacity=0); opacity:0; float:left; margin:.7em 0 0 1em; /* bigger clickable area doesn’t work in FF width:2.8em; height:2.4em;*/ -webkit-transition:opacity 200ms; -moz-transition:opacity 200ms; -o-transition:opacity 200ms; transition:opacity 200ms; } #fileList tr td.filename>input[type="checkbox"]:hover:first-child { -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=80)"; filter:alpha(opacity=80); opacity:.8; } #fileList tr td.filename>input[type="checkbox"]:checked:first-child { -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; filter:alpha(opacity=100); opacity:1; } #fileList tr td.filename { -webkit-transition:background-image 500ms; -moz-transition:background-image 500ms; -o-transition:background-image 500ms; transition:background-image 500ms; position:relative; } -- GitLab From a61c8203697074d7dbbdbc579381dc57372e71bb Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Mon, 1 Oct 2012 12:57:13 +0200 Subject: [PATCH 151/489] code style --- tests/lib/filesystem.php | 90 ++++++++++++++++++++-------------------- 1 file changed, 44 insertions(+), 46 deletions(-) diff --git a/tests/lib/filesystem.php b/tests/lib/filesystem.php index 1cfa35e305d..bc3b4d06aa1 100644 --- a/tests/lib/filesystem.php +++ b/tests/lib/filesystem.php @@ -1,26 +1,26 @@ . -* -*/ + * ownCloud + * + * @author Robin Appelman + * @copyright 2012 Robin Appelman icewind@owncloud.com + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE + * License as published by the Free Software Foundation; either + * version 3 of the License, or any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU AFFERO GENERAL PUBLIC LICENSE for more details. + * + * You should have received a copy of the GNU Affero General Public + * License along with this library. If not, see . + * + */ -class Test_Filesystem extends UnitTestCase{ +class Test_Filesystem extends UnitTestCase { /** * @var array tmpDirs */ @@ -30,47 +30,45 @@ class Test_Filesystem extends UnitTestCase{ * @return array */ private function getStorageData() { - $dir=OC_Helper::tmpFolder(); - $this->tmpDirs[]=$dir; - return array('datadir'=>$dir); + $dir = OC_Helper::tmpFolder(); + $this->tmpDirs[] = $dir; + return array('datadir' => $dir); } public function tearDown() { - foreach($this->tmpDirs as $dir) { + foreach ($this->tmpDirs as $dir) { OC_Helper::rmdirr($dir); } } - + public function setUp() { OC_Filesystem::clearMounts(); } public function testMount() { - OC_Filesystem::mount('OC_Filestorage_Local',self::getStorageData(),'/'); - $this->assertEqual('/',OC_Filesystem::getMountPoint('/')); - $this->assertEqual('/',OC_Filesystem::getMountPoint('/some/folder')); - $this->assertEqual('',OC_Filesystem::getInternalPath('/')); - $this->assertEqual('some/folder',OC_Filesystem::getInternalPath('/some/folder')); + OC_Filesystem::mount('OC_Filestorage_Local', self::getStorageData(), '/'); + $this->assertEqual('/', OC_Filesystem::getMountPoint('/')); + $this->assertEqual('/', OC_Filesystem::getMountPoint('/some/folder')); + $this->assertEqual('', OC_Filesystem::getInternalPath('/')); + $this->assertEqual('some/folder', OC_Filesystem::getInternalPath('/some/folder')); - OC_Filesystem::mount('OC_Filestorage_Local',self::getStorageData(),'/some'); - $this->assertEqual('/',OC_Filesystem::getMountPoint('/')); - $this->assertEqual('/some/',OC_Filesystem::getMountPoint('/some/folder')); - $this->assertEqual('/some/',OC_Filesystem::getMountPoint('/some/')); - $this->assertEqual('/',OC_Filesystem::getMountPoint('/some')); - $this->assertEqual('folder',OC_Filesystem::getInternalPath('/some/folder')); + OC_Filesystem::mount('OC_Filestorage_Local', self::getStorageData(), '/some'); + $this->assertEqual('/', OC_Filesystem::getMountPoint('/')); + $this->assertEqual('/some/', OC_Filesystem::getMountPoint('/some/folder')); + $this->assertEqual('/some/', OC_Filesystem::getMountPoint('/some/')); + $this->assertEqual('/', OC_Filesystem::getMountPoint('/some')); + $this->assertEqual('folder', OC_Filesystem::getInternalPath('/some/folder')); } public function testNormalize() { - $this->assertEqual('/path',OC_Filesystem::normalizePath('/path/')); - $this->assertEqual('/path/',OC_Filesystem::normalizePath('/path/',false)); - $this->assertEqual('/path',OC_Filesystem::normalizePath('path')); - $this->assertEqual('/path',OC_Filesystem::normalizePath('\path')); - $this->assertEqual('/foo/bar',OC_Filesystem::normalizePath('/foo//bar/')); - $this->assertEqual('/foo/bar',OC_Filesystem::normalizePath('/foo////bar')); - if(class_exists('Normalizer')) { - $this->assertEqual("/foo/bar\xC3\xBC",OC_Filesystem::normalizePath("/foo/baru\xCC\x88")); + $this->assertEqual('/path', OC_Filesystem::normalizePath('/path/')); + $this->assertEqual('/path/', OC_Filesystem::normalizePath('/path/', false)); + $this->assertEqual('/path', OC_Filesystem::normalizePath('path')); + $this->assertEqual('/path', OC_Filesystem::normalizePath('\path')); + $this->assertEqual('/foo/bar', OC_Filesystem::normalizePath('/foo//bar/')); + $this->assertEqual('/foo/bar', OC_Filesystem::normalizePath('/foo////bar')); + if (class_exists('Normalizer')) { + $this->assertEqual("/foo/bar\xC3\xBC", OC_Filesystem::normalizePath("/foo/baru\xCC\x88")); } } } - -?> \ No newline at end of file -- GitLab From d1010e58d84d2a5dca60abdef3fd927b20da9221 Mon Sep 17 00:00:00 2001 From: Mat Lipe Date: Mon, 1 Oct 2012 06:43:31 -0500 Subject: [PATCH 152/489] Update apps/files/css/files.css Fixed a strange comment issue --- apps/files/css/files.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files/css/files.css b/apps/files/css/files.css index 9e7d4d3dd68..f15cd514241 100644 --- a/apps/files/css/files.css +++ b/apps/files/css/files.css @@ -67,7 +67,7 @@ table td.filename .uploadtext { font-weight:normal; margin-left:.5em; } table td.filename form { float:left; font-size:.85em; } table thead.fixed tr{ position:fixed; top:6.5em; z-index:49; -moz-box-shadow:0 -3px 7px #ddd; -webkit-box-shadow:0 -3px 7px #ddd; box-shadow:0 -3px 7px #ddd; } table thead.fixed { height:2em; } -#fileList tr td.filename>input[type=checkbox]:first-child { -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; filter:alpha(opacity=0); opacity:0; float:left; margin:.7em 0 0 1em; /* bigger clickable area doesn’t work in FF width:2.8em; height:2.4em;*/ -webkit-transition:opacity 200ms; -moz-transition:opacity 200ms; -o-transition:opacity 200ms; transition:opacity 200ms; } +#fileList tr td.filename>input[type=checkbox]:first-child { -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; filter:alpha(opacity=0); opacity:0; float:left; margin:.7em 0 0 1em; /* bigger clickable area doesn’t work in FF width:2.8em; height:2.4em;*/ -webkit-transition:opacity 200ms; -moz-transition:opacity 200ms; -o-transition:opacity 200ms; transition:opacity 200ms; } #fileList tr td.filename>input[type="checkbox"]:hover:first-child { -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=80)"; filter:alpha(opacity=80); opacity:.8; } #fileList tr td.filename>input[type="checkbox"]:checked:first-child { -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; filter:alpha(opacity=100); opacity:1; } #fileList tr td.filename { -webkit-transition:background-image 500ms; -moz-transition:background-image 500ms; -o-transition:background-image 500ms; transition:background-image 500ms; position:relative; } -- GitLab From f77dc9b30fd1720ed3cc84c52fe0ba1b1c186e8c Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Mon, 1 Oct 2012 14:00:14 +0200 Subject: [PATCH 153/489] add test to make sure filepaths that are passed to filesystems hooks are normalized --- tests/lib/filesystem.php | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/tests/lib/filesystem.php b/tests/lib/filesystem.php index bc3b4d06aa1..050dfa5280d 100644 --- a/tests/lib/filesystem.php +++ b/tests/lib/filesystem.php @@ -71,4 +71,27 @@ class Test_Filesystem extends UnitTestCase { $this->assertEqual("/foo/bar\xC3\xBC", OC_Filesystem::normalizePath("/foo/baru\xCC\x88")); } } + + public function testHooks() { + $user = OC_User::getUser(); + OC_Hook::clear('OC_Filesystem'); + OC_Hook::connect('OC_Filesystem', 'post_write', $this, 'dummyHook'); + + OC_Filesystem::mount('OC_Filestorage_Temporary', array(), '/'); + + OC_Filesystem::init(''); + OC_Filesystem::file_put_contents('/foo', 'foo'); + OC_Filesystem::mkdir('/bar'); + OC_Filesystem::file_put_contents('/bar//foo', 'foo'); + + $tmpFile = OC_Helper::tmpFile(); + file_put_contents($tmpFile, 'foo'); + $fh = fopen($tmpFile, 'r'); + OC_Filesystem::file_put_contents('/bar//foo', $fh); + } + + public function dummyHook($arguments) { + $path = $arguments['path']; + $this->assertEqual($path, OC_Filesystem::normalizePath($path)); //the path passed to the hook should already be normalized + } } -- GitLab From 804372947ae5cdaeaa8c92250f4efb4ae54e8a3f Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Mon, 1 Oct 2012 14:07:34 +0200 Subject: [PATCH 154/489] fix test case for when a user is logged in --- tests/lib/filesystem.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/lib/filesystem.php b/tests/lib/filesystem.php index 050dfa5280d..4239033551d 100644 --- a/tests/lib/filesystem.php +++ b/tests/lib/filesystem.php @@ -79,7 +79,10 @@ class Test_Filesystem extends UnitTestCase { OC_Filesystem::mount('OC_Filestorage_Temporary', array(), '/'); - OC_Filesystem::init(''); + $rootView=new OC_FilesystemView(''); + $rootView->mkdir('/'.$user); + $rootView->mkdir('/'.$user.'/files'); + OC_Filesystem::file_put_contents('/foo', 'foo'); OC_Filesystem::mkdir('/bar'); OC_Filesystem::file_put_contents('/bar//foo', 'foo'); -- GitLab From b23ad579dc674d3fdeaed0c6f650a6fcb8de6394 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Mon, 1 Oct 2012 14:39:47 +0200 Subject: [PATCH 155/489] Sharing: backward compatibility to links from OC 4.0. --- apps/files_sharing/public.php | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/apps/files_sharing/public.php b/apps/files_sharing/public.php index 525ffa83578..15377680ab8 100644 --- a/apps/files_sharing/public.php +++ b/apps/files_sharing/public.php @@ -1,6 +1,26 @@ execute(array($_GET['token']))->fetchOne(); + if(isset($filepath)) { + $info = OC_FileCache_Cached::get($filepath, ''); + if(strtolower($info['mimetype']) == 'httpd/unix-directory') { + $_GET['dir'] = $filepath; + } else { + $_GET['file'] = $filepath; + } + \OCP\Util::writeLog('files_sharing', 'You have files that are shared by link originating from ownCloud 4.0. Redistribute the new links, because backwards compatibility will be removed in ownCloud 5.', \OCP\Util::WARN); + } +} +// Enf of backward compatibility + if (isset($_GET['file']) || isset($_GET['dir'])) { if (isset($_GET['dir'])) { $type = 'folder'; -- GitLab From 43c85248d4f3c922a7e5cad2b01dd32adebfac7a Mon Sep 17 00:00:00 2001 From: Georg Ehrke Date: Mon, 1 Oct 2012 16:04:20 +0200 Subject: [PATCH 156/489] Share - Dropdown dialog - cut off username if it's longer than 14 chars - bugfix for oc-1871 --- core/js/share.js | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/core/js/share.js b/core/js/share.js index 6c26fed18be..e67b333dfc1 100644 --- a/core/js/share.js +++ b/core/js/share.js @@ -267,9 +267,13 @@ OC.Share={ if (permissions & OC.PERMISSION_SHARE) { shareChecked = 'checked="checked"'; } - var html = '
  • '; + var html = '
  • '; html += ''; - html += shareWith; + if(shareWith.length > 14){ + html += shareWith.substr(0,11) + '...'; + }else{ + html += shareWith; + } if (possiblePermissions & OC.PERMISSION_CREATE || possiblePermissions & OC.PERMISSION_UPDATE || possiblePermissions & OC.PERMISSION_DELETE) { if (editChecked == '') { html += '
-
-

ownCloudt('web services under your control'); ?>

-- GitLab From a611ce4f3327fda869884415c76c3dd64345e2c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Thu, 4 Oct 2012 17:18:21 +0200 Subject: [PATCH 188/489] baseDir has to be the whole path to work with shared directories below the root directory. --- apps/files_sharing/public.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files_sharing/public.php b/apps/files_sharing/public.php index 59755fe6938..aa074e629da 100644 --- a/apps/files_sharing/public.php +++ b/apps/files_sharing/public.php @@ -25,7 +25,7 @@ if (isset($_GET['file']) || isset($_GET['dir'])) { if (isset($_GET['dir'])) { $type = 'folder'; $path = $_GET['dir']; - $baseDir = basename($path); + $baseDir = $path; $dir = $baseDir; } else { $type = 'file'; -- GitLab From f4136854b6e8ccf88e3e0de3ff1202845be8f903 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Fri, 5 Oct 2012 11:15:32 +0200 Subject: [PATCH 189/489] stripsplashes doesn't work if the slash is the only character -> creating file in root dir leads to "//filename" --- apps/files/ajax/newfile.php | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/apps/files/ajax/newfile.php b/apps/files/ajax/newfile.php index c2d65d718c5..77d866979c3 100644 --- a/apps/files/ajax/newfile.php +++ b/apps/files/ajax/newfile.php @@ -8,12 +8,11 @@ if(!OC_User::isLoggedIn()) { } session_write_close(); - // Get the params -$dir = isset( $_REQUEST['dir'] ) ? stripslashes($_REQUEST['dir']) : ''; -$filename = isset( $_REQUEST['filename'] ) ? stripslashes($_REQUEST['filename']) : ''; +$dir = isset( $_REQUEST['dir'] ) ? trim($_REQUEST['dir'], '/\\') : ''; +$filename = isset( $_REQUEST['filename'] ) ? trim($_REQUEST['filename'], '/\\') : ''; $content = isset( $_REQUEST['content'] ) ? $_REQUEST['content'] : ''; -$source = isset( $_REQUEST['source'] ) ? stripslashes($_REQUEST['source']) : ''; +$source = isset( $_REQUEST['source'] ) ? trim($_REQUEST['source'], '/\\') : ''; if($source) { $eventSource=new OC_EventSource(); -- GitLab From dcad7aec82e641158a6b1a5c690714ea9d56c3f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Fri, 5 Oct 2012 11:38:00 +0200 Subject: [PATCH 190/489] fixed download of complete publically shared folder --- apps/files_sharing/public.php | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/apps/files_sharing/public.php b/apps/files_sharing/public.php index aa074e629da..2d6437d819f 100644 --- a/apps/files_sharing/public.php +++ b/apps/files_sharing/public.php @@ -82,14 +82,7 @@ if (isset($_GET['file']) || isset($_GET['dir'])) { } // Download the file if (isset($_GET['download'])) { - $mimetype = OC_Filesystem::getMimeType($path); - header('Content-Transfer-Encoding: binary'); - header('Content-Disposition: attachment; filename="'.basename($path).'"'); - header('Content-Type: '.$mimetype); - header('Content-Length: '.OC_Filesystem::filesize($path)); - OCP\Response::disableCaching(); - @ob_clean(); - OC_Filesystem::readfile($path); + OC_Files::get($path, '', $_SERVER['REQUEST_METHOD'] == 'HEAD' ? true : false); } else { OCP\Util::addStyle('files_sharing', 'public'); OCP\Util::addScript('files_sharing', 'public'); -- GitLab From 72a48ca35eb99be1b3fae8bd9843dabcd7ff1a11 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Fri, 5 Oct 2012 12:01:18 +0200 Subject: [PATCH 191/489] fix download of single publically shared files. --- apps/files_sharing/public.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/apps/files_sharing/public.php b/apps/files_sharing/public.php index 2d6437d819f..6aab650aa7f 100644 --- a/apps/files_sharing/public.php +++ b/apps/files_sharing/public.php @@ -82,7 +82,12 @@ if (isset($_GET['file']) || isset($_GET['dir'])) { } // Download the file if (isset($_GET['download'])) { - OC_Files::get($path, '', $_SERVER['REQUEST_METHOD'] == 'HEAD' ? true : false); + if (isset($_GET['dir'])) { + OC_Files::get($path, '', $_SERVER['REQUEST_METHOD'] == 'HEAD' ? true : false); + } else { + OC_Files::get("", $path, $_SERVER['REQUEST_METHOD'] == 'HEAD' ? true : false); + } + } else { OCP\Util::addStyle('files_sharing', 'public'); OCP\Util::addScript('files_sharing', 'public'); -- GitLab From 00b34a09eaeba2f74a44a155f0fdd4aa58d5e502 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Fri, 5 Oct 2012 12:29:27 +0200 Subject: [PATCH 192/489] cache tar archive headers --- lib/archive/tar.php | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/lib/archive/tar.php b/lib/archive/tar.php index 639d2392b63..21d8057e4d6 100644 --- a/lib/archive/tar.php +++ b/lib/archive/tar.php @@ -14,6 +14,7 @@ class OC_Archive_TAR extends OC_Archive{ const BZIP=2; private $fileList; + private $cachedHeaders; /** * @var Archive_Tar tar @@ -74,6 +75,7 @@ class OC_Archive_TAR extends OC_Archive{ $result=$this->tar->addModify(array($tmpBase.$path), '', $tmpBase); rmdir($tmpBase.$path); $this->fileList=false; + $this->cachedHeaders=false; return $result; } /** @@ -95,6 +97,7 @@ class OC_Archive_TAR extends OC_Archive{ $result=$this->tar->addString($path, $source); } $this->fileList=false; + $this->cachedHeaders=false; return $result; } @@ -115,12 +118,15 @@ class OC_Archive_TAR extends OC_Archive{ $this->tar=new Archive_Tar($this->path, $types[self::getTarType($this->path)]); $this->tar->createModify(array($tmp), '', $tmp.'/'); $this->fileList=false; + $this->cachedHeaders=false; return true; } private function getHeader($file) { - $headers=$this->tar->listContent(); - foreach($headers as $header) { + if ( ! $this->cachedHeaders ) { + $this->cachedHeaders = $this->tar->listContent(); + } + foreach($this->cachedHeaders as $header) { if($file==$header['filename'] or $file.'/'==$header['filename'] or '/'.$file.'/'==$header['filename'] or '/'.$file==$header['filename']) { return $header; } @@ -180,9 +186,11 @@ class OC_Archive_TAR extends OC_Archive{ if($this->fileList) { return $this->fileList; } - $headers=$this->tar->listContent(); + if ( ! $this->cachedHeaders ) { + $this->cachedHeaders = $this->tar->listContent(); + } $files=array(); - foreach($headers as $header) { + foreach($this->cachedHeaders as $header) { $files[]=$header['filename']; } $this->fileList=$files; @@ -265,6 +273,7 @@ class OC_Archive_TAR extends OC_Archive{ return false; } $this->fileList=false; + $this->cachedHeaders=false; //no proper way to delete, extract entire archive, delete file and remake archive $tmp=OCP\Files::tmpFolder(); $this->tar->extract($tmp); -- GitLab From b5f11195af171edfbbc4fae2e1b7f4832f777f68 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Fri, 5 Oct 2012 12:39:43 +0200 Subject: [PATCH 193/489] fix checkstyle on archive zip/tar --- lib/archive.php | 8 ++++---- lib/archive/tar.php | 5 ++++- lib/archive/zip.php | 7 +++++-- 3 files changed, 13 insertions(+), 7 deletions(-) diff --git a/lib/archive.php b/lib/archive.php index b4459c2b6ce..a9c245eaf43 100644 --- a/lib/archive.php +++ b/lib/archive.php @@ -13,14 +13,14 @@ abstract class OC_Archive{ * @return OC_Archive */ public static function open($path) { - $ext=substr($path,strrpos($path,'.')); + $ext=substr($path, strrpos($path, '.')); switch($ext) { case '.zip': return new OC_Archive_ZIP($path); case '.gz': case '.bz': case '.bz2': - if(strpos($path,'.tar.')) { + if(strpos($path, '.tar.')) { return new OC_Archive_TAR($path); } break; @@ -126,9 +126,9 @@ abstract class OC_Archive{ continue; } if(is_dir($source.'/'.$file)) { - $this->addRecursive($path.'/'.$file,$source.'/'.$file); + $this->addRecursive($path.'/'.$file, $source.'/'.$file); }else{ - $this->addFile($path.'/'.$file,$source.'/'.$file); + $this->addFile($path.'/'.$file, $source.'/'.$file); } } } diff --git a/lib/archive/tar.php b/lib/archive/tar.php index 21d8057e4d6..9aaa6d12796 100644 --- a/lib/archive/tar.php +++ b/lib/archive/tar.php @@ -127,7 +127,10 @@ class OC_Archive_TAR extends OC_Archive{ $this->cachedHeaders = $this->tar->listContent(); } foreach($this->cachedHeaders as $header) { - if($file==$header['filename'] or $file.'/'==$header['filename'] or '/'.$file.'/'==$header['filename'] or '/'.$file==$header['filename']) { + if( $file == $header['filename'] + or $file.'/' == $header['filename'] + or '/'.$file.'/' == $header['filename'] + or '/'.$file == $header['filename']) { return $header; } } diff --git a/lib/archive/zip.php b/lib/archive/zip.php index a2b07f1a35d..d016c692e35 100644 --- a/lib/archive/zip.php +++ b/lib/archive/zip.php @@ -86,7 +86,7 @@ class OC_Archive_ZIP extends OC_Archive{ $pathLength=strlen($path); foreach($files as $file) { if(substr($file, 0, $pathLength)==$path and $file!=$path) { - if(strrpos(substr($file, 0, -1),'/')<=$pathLength) { + if(strrpos(substr($file, 0, -1), '/')<=$pathLength) { $folderContent[]=substr($file, $pathLength); } } @@ -161,7 +161,10 @@ class OC_Archive_ZIP extends OC_Archive{ function getStream($path,$mode) { if($mode=='r' or $mode=='rb') { return $this->zip->getStream($path); - }else{//since we cant directly get a writable stream, make a temp copy of the file and put it back in the archive when the stream is closed + } else { + //since we cant directly get a writable stream, + //make a temp copy of the file and put it back + //in the archive when the stream is closed if(strrpos($path, '.')!==false) { $ext=substr($path, strrpos($path, '.')); }else{ -- GitLab From ee6d96b7a8a7d179a66e49e0606ff024fdf105db Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Fri, 5 Oct 2012 12:54:18 +0200 Subject: [PATCH 194/489] really fix checkstyle on archive tar --- lib/archive/tar.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/archive/tar.php b/lib/archive/tar.php index 9aaa6d12796..7a47802bc34 100644 --- a/lib/archive/tar.php +++ b/lib/archive/tar.php @@ -130,7 +130,8 @@ class OC_Archive_TAR extends OC_Archive{ if( $file == $header['filename'] or $file.'/' == $header['filename'] or '/'.$file.'/' == $header['filename'] - or '/'.$file == $header['filename']) { + or '/'.$file == $header['filename']) + { return $header; } } -- GitLab From 99f4d949c1b4fb8d7442afc89348bd18fb601df3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Fri, 5 Oct 2012 13:25:28 +0200 Subject: [PATCH 195/489] fix download link for single files in publicly shared directory --- apps/files_sharing/public.php | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/apps/files_sharing/public.php b/apps/files_sharing/public.php index 6aab650aa7f..13a328ff74c 100644 --- a/apps/files_sharing/public.php +++ b/apps/files_sharing/public.php @@ -83,8 +83,12 @@ if (isset($_GET['file']) || isset($_GET['dir'])) { // Download the file if (isset($_GET['download'])) { if (isset($_GET['dir'])) { - OC_Files::get($path, '', $_SERVER['REQUEST_METHOD'] == 'HEAD' ? true : false); - } else { + if (isset($_GET['path']) && $_GET['path'] != '' ) { // download a file from a shared directory + OC_Files::get('', $path, $_SERVER['REQUEST_METHOD'] == 'HEAD' ? true : false); + } else { // download the whole shared directory + OC_Files::get($path, '', $_SERVER['REQUEST_METHOD'] == 'HEAD' ? true : false); + } + } else { // download a single shared file OC_Files::get("", $path, $_SERVER['REQUEST_METHOD'] == 'HEAD' ? true : false); } @@ -108,7 +112,7 @@ if (isset($_GET['file']) || isset($_GET['dir'])) { $i['basename'] = $fileinfo['filename']; $i['extension'] = isset($fileinfo['extension']) ? ('.'.$fileinfo['extension']) : ''; } - $i['directory'] = substr($i['directory'], $rootLength); + $i['directory'] = '/'.substr('/'.$uidOwner.'/files'.$i['directory'], $rootLength); if ($i['directory'] == '/') { $i['directory'] = ''; } -- GitLab From ef8a4a16292ad370661ccf1c77f157ab3d867eac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Fri, 5 Oct 2012 14:20:38 +0200 Subject: [PATCH 196/489] register download action for files --- apps/files_sharing/js/public.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/apps/files_sharing/js/public.js b/apps/files_sharing/js/public.js index def02374804..fb87c04ee26 100644 --- a/apps/files_sharing/js/public.js +++ b/apps/files_sharing/js/public.js @@ -32,6 +32,12 @@ $(document).ready(function() { window.location = $(tr).find('a.name').attr('href'); } }); + FileActions.register('file', 'Download', OC.PERMISSION_READ, '', function(filename) { + var tr = $('tr').filterAttr('data-file', filename) + if (tr.length > 0) { + window.location = $(tr).find('a.name').attr('href'); + } + }); } }); \ No newline at end of file -- GitLab From 0d081ac5acbb049659eedca0766c99ed7e91c4d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Fri, 5 Oct 2012 14:28:03 +0200 Subject: [PATCH 197/489] register download action for directories --- apps/files_sharing/js/public.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/apps/files_sharing/js/public.js b/apps/files_sharing/js/public.js index fb87c04ee26..916e35419c1 100644 --- a/apps/files_sharing/js/public.js +++ b/apps/files_sharing/js/public.js @@ -38,6 +38,12 @@ $(document).ready(function() { window.location = $(tr).find('a.name').attr('href'); } }); + FileActions.register('dir', 'Download', OC.PERMISSION_READ, '', function(filename) { + var tr = $('tr').filterAttr('data-file', filename) + if (tr.length > 0) { + window.location = $(tr).find('a.name').attr('href')+'&download'; + } + }); } }); \ No newline at end of file -- GitLab From c99f62891a53097115c07f6e860b4dfdf4d70600 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Fri, 5 Oct 2012 15:06:59 +0200 Subject: [PATCH 198/489] breadcrumbs fixed for public share view --- apps/files_sharing/public.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/apps/files_sharing/public.php b/apps/files_sharing/public.php index 13a328ff74c..67b2dca8c9e 100644 --- a/apps/files_sharing/public.php +++ b/apps/files_sharing/public.php @@ -122,12 +122,16 @@ if (isset($_GET['file']) || isset($_GET['dir'])) { // Make breadcrumb $breadcrumb = array(); $pathtohere = ''; + $count = 1; foreach (explode('/', $dir) as $i) { if ($i != '') { if ($i != $baseDir) { $pathtohere .= '/'.$i; + } + if ( strlen($pathtohere) < strlen($_GET['dir'])) { + continue; } - $breadcrumb[] = array('dir' => $pathtohere, 'name' => $i); + $breadcrumb[] = array('dir' => str_replace($_GET['dir'], "", $pathtohere, $count), 'name' => $i); } } $list = new OCP\Template('files', 'part.list', ''); -- GitLab From 5e2bce24b4d7576f2503edb762afd6cbe3caccea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Fri, 5 Oct 2012 16:12:04 +0200 Subject: [PATCH 199/489] enable user to download selected files from publically shared directory --- apps/files/js/files.js | 7 ++++++- apps/files_sharing/public.php | 4 +++- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/apps/files/js/files.js b/apps/files/js/files.js index 414dfb03cdc..e4037454520 100644 --- a/apps/files/js/files.js +++ b/apps/files/js/files.js @@ -178,7 +178,12 @@ $(document).ready(function() { var dir=$('#dir').val()||'/'; $('#notification').text(t('files','generating ZIP-file, it may take some time.')); $('#notification').fadeIn(); - window.location=OC.filePath('files', 'ajax', 'download.php') + '?'+ $.param({ dir: dir, files: files }); + // use special download URL if provided, e.g. for public shared files + if ( (downloadURL = document.getElementById("downloadURL")) ) { + window.location=downloadURL.value+"&download&files="+files; + } else { + window.location=OC.filePath('files', 'ajax', 'download.php') + '?'+ $.param({ dir: dir, files: files }); + } return false; }); diff --git a/apps/files_sharing/public.php b/apps/files_sharing/public.php index 67b2dca8c9e..34340102a9e 100644 --- a/apps/files_sharing/public.php +++ b/apps/files_sharing/public.php @@ -83,7 +83,9 @@ if (isset($_GET['file']) || isset($_GET['dir'])) { // Download the file if (isset($_GET['download'])) { if (isset($_GET['dir'])) { - if (isset($_GET['path']) && $_GET['path'] != '' ) { // download a file from a shared directory + if ( isset($_GET['files']) ) { // download selected files + OC_Files::get($path, $_GET['files'], $_SERVER['REQUEST_METHOD'] == 'HEAD' ? true : false); + } else if (isset($_GET['path']) && $_GET['path'] != '' ) { // download a file from a shared directory OC_Files::get('', $path, $_SERVER['REQUEST_METHOD'] == 'HEAD' ? true : false); } else { // download the whole shared directory OC_Files::get($path, '', $_SERVER['REQUEST_METHOD'] == 'HEAD' ? true : false); -- GitLab From 4f7c7c615e6eb0e3818b28a24d8cf77cd7546e19 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Fri, 5 Oct 2012 17:05:23 +0200 Subject: [PATCH 200/489] prevent xss attacks --- apps/files/templates/part.breadcrumb.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/files/templates/part.breadcrumb.php b/apps/files/templates/part.breadcrumb.php index 875fc747bb7..71b695f65f8 100644 --- a/apps/files/templates/part.breadcrumb.php +++ b/apps/files/templates/part.breadcrumb.php @@ -1,6 +1,6 @@ -
svg" data-dir='' style='background-image:url("")'> - "> +
svg" data-dir='' style='background-image:url("")'> + ">
-- GitLab From c4c8dd4e3a5fcd9a86835566db954662dcb41a0c Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Fri, 5 Oct 2012 22:24:36 +0200 Subject: [PATCH 201/489] make archive test cases work again --- tests/lib/archive.php | 30 +++++++++++++++--------------- tests/lib/archive/tar.php | 18 +++++++----------- tests/lib/archive/zip.php | 18 +++++++----------- 3 files changed, 29 insertions(+), 37 deletions(-) diff --git a/tests/lib/archive.php b/tests/lib/archive.php index 565c314cb8c..04ae722aea7 100644 --- a/tests/lib/archive.php +++ b/tests/lib/archive.php @@ -22,46 +22,46 @@ abstract class Test_Archive extends UnitTestCase { * @return OC_Archive */ abstract protected function getNew(); - + public function testGetFiles() { $this->instance=$this->getExisting(); $allFiles=$this->instance->getFiles(); $expected=array('lorem.txt','logo-wide.png','dir/','dir/lorem.txt'); $this->assertEqual(4,count($allFiles),'only found '.count($allFiles).' out of 4 expected files'); foreach($expected as $file) { - $this->assertNotIdentical(false,array_search($file,$allFiles),'cant find '.$file.' in archive'); + $this->assertContains($file, $allFiles, 'cant find '. $file . ' in archive'); $this->assertTrue($this->instance->fileExists($file),'file '.$file.' does not exist in archive'); } $this->assertFalse($this->instance->fileExists('non/existing/file')); - + $rootContent=$this->instance->getFolder(''); $expected=array('lorem.txt','logo-wide.png','dir/'); $this->assertEqual(3,count($rootContent)); foreach($expected as $file) { - $this->assertNotIdentical(false,array_search($file,$rootContent),'cant find '.$file.' in archive'); + $this->assertContains($file, $rootContent, 'cant find '. $file . ' in archive'); } $dirContent=$this->instance->getFolder('dir/'); $expected=array('lorem.txt'); $this->assertEqual(1,count($dirContent)); foreach($expected as $file) { - $this->assertNotIdentical(false,array_search($file,$dirContent),'cant find '.$file.' in archive'); + $this->assertContains($file, $dirContent, 'cant find '. $file . ' in archive'); } } - + public function testContent() { $this->instance=$this->getExisting(); - $dir=OC::$SERVERROOT.'/apps/files_archive/tests/data'; + $dir=OC::$SERVERROOT.'/tests/data'; $textFile=$dir.'/lorem.txt'; $this->assertEqual(file_get_contents($textFile),$this->instance->getFile('lorem.txt')); - + $tmpFile=OCP\Files::tmpFile('.txt'); $this->instance->extractFile('lorem.txt',$tmpFile); $this->assertEqual(file_get_contents($textFile),file_get_contents($tmpFile)); } public function testWrite() { - $dir=OC::$SERVERROOT.'/apps/files_archive/tests/data'; + $dir=OC::$SERVERROOT.'/tests/data'; $textFile=$dir.'/lorem.txt'; $this->instance=$this->getNew(); $this->assertEqual(0,count($this->instance->getFiles())); @@ -69,14 +69,14 @@ abstract class Test_Archive extends UnitTestCase { $this->assertEqual(1,count($this->instance->getFiles())); $this->assertTrue($this->instance->fileExists('lorem.txt')); $this->assertFalse($this->instance->fileExists('lorem.txt/')); - + $this->assertEqual(file_get_contents($textFile),$this->instance->getFile('lorem.txt')); $this->instance->addFile('lorem.txt','foobar'); $this->assertEqual('foobar',$this->instance->getFile('lorem.txt')); } public function testReadStream() { - $dir=OC::$SERVERROOT.'/apps/files_archive/tests/data'; + $dir=OC::$SERVERROOT.'/tests/data'; $this->instance=$this->getExisting(); $fh=$this->instance->getStream('lorem.txt','r'); $this->assertTrue($fh); @@ -85,7 +85,7 @@ abstract class Test_Archive extends UnitTestCase { $this->assertEqual(file_get_contents($dir.'/lorem.txt'),$content); } public function testWriteStream() { - $dir=OC::$SERVERROOT.'/apps/files_archive/tests/data'; + $dir=OC::$SERVERROOT.'/tests/data'; $this->instance=$this->getNew(); $fh=$this->instance->getStream('lorem.txt','w'); $source=fopen($dir.'/lorem.txt','r'); @@ -107,7 +107,7 @@ abstract class Test_Archive extends UnitTestCase { $this->assertFalse($this->instance->fileExists('/test/')); } public function testExtract() { - $dir=OC::$SERVERROOT.'/apps/files_archive/tests/data'; + $dir=OC::$SERVERROOT.'/tests/data'; $this->instance=$this->getExisting(); $tmpDir=OCP\Files::tmpFolder(); $this->instance->extract($tmpDir); @@ -118,7 +118,7 @@ abstract class Test_Archive extends UnitTestCase { OCP\Files::rmdirr($tmpDir); } public function testMoveRemove() { - $dir=OC::$SERVERROOT.'/apps/files_archive/tests/data'; + $dir=OC::$SERVERROOT.'/tests/data'; $textFile=$dir.'/lorem.txt'; $this->instance=$this->getNew(); $this->instance->addFile('lorem.txt',$textFile); @@ -131,7 +131,7 @@ abstract class Test_Archive extends UnitTestCase { $this->assertFalse($this->instance->fileExists('target.txt')); } public function testRecursive() { - $dir=OC::$SERVERROOT.'/apps/files_archive/tests/data'; + $dir=OC::$SERVERROOT.'/tests/data'; $this->instance=$this->getNew(); $this->instance->addRecursive('/dir',$dir); $this->assertTrue($this->instance->fileExists('/dir/lorem.txt')); diff --git a/tests/lib/archive/tar.php b/tests/lib/archive/tar.php index 2595b7cb195..51de004813a 100644 --- a/tests/lib/archive/tar.php +++ b/tests/lib/archive/tar.php @@ -8,17 +8,13 @@ require_once 'archive.php'; -if(is_dir(OC::$SERVERROOT.'/apps/files_archive/tests/data')) { - class Test_Archive_TAR extends Test_Archive{ - protected function getExisting() { - $dir=OC::$SERVERROOT.'/apps/files_archive/tests/data'; - return new OC_Archive_TAR($dir.'/data.tar.gz'); - } +class Test_Archive_TAR extends Test_Archive { + protected function getExisting() { + $dir = OC::$SERVERROOT . '/tests/data'; + return new OC_Archive_TAR($dir . '/data.tar.gz'); + } - protected function getNew() { - return new OC_Archive_TAR(OCP\Files::tmpFile('.tar.gz')); - } + protected function getNew() { + return new OC_Archive_TAR(OCP\Files::tmpFile('.tar.gz')); } -}else{ - abstract class Test_Archive_TAR extends Test_Archive{} } diff --git a/tests/lib/archive/zip.php b/tests/lib/archive/zip.php index a7682e34180..adddf81ee1b 100644 --- a/tests/lib/archive/zip.php +++ b/tests/lib/archive/zip.php @@ -8,17 +8,13 @@ require_once 'archive.php'; -if(is_dir(OC::$SERVERROOT.'/apps/files_archive/tests/data')) { - class Test_Archive_ZIP extends Test_Archive{ - protected function getExisting() { - $dir=OC::$SERVERROOT.'/apps/files_archive/tests/data'; - return new OC_Archive_ZIP($dir.'/data.zip'); - } +class Test_Archive_ZIP extends Test_Archive { + protected function getExisting() { + $dir = OC::$SERVERROOT . '/tests/data'; + return new OC_Archive_ZIP($dir . '/data.zip'); + } - protected function getNew() { - return new OC_Archive_ZIP(OCP\Files::tmpFile('.zip')); - } + protected function getNew() { + return new OC_Archive_ZIP(OCP\Files::tmpFile('.zip')); } -}else{ - abstract class Test_Archive_ZIP extends Test_Archive{} } -- GitLab From 5d196f14db352f6f0a7e448a87787fbc38ab6e90 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Fri, 5 Oct 2012 22:35:51 +0200 Subject: [PATCH 202/489] set folder size to 0 when scanning the filesystem --- lib/filecache.php | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/filecache.php b/lib/filecache.php index 305ba035fb5..d68525d9a54 100644 --- a/lib/filecache.php +++ b/lib/filecache.php @@ -420,6 +420,7 @@ class OC_FileCache{ $mimetype=$view->getMimeType($path); $stat=$view->stat($path); if($mimetype=='httpd/unix-directory') { + $stat['size'] = 0; $writable=$view->is_writable($path.'/'); }else{ $writable=$view->is_writable($path); -- GitLab From 68bb3809c75def72822e4b5a5a6f257269527c1a Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Sat, 6 Oct 2012 00:38:10 +0200 Subject: [PATCH 203/489] LDAP: we're good for 0.3 now. No code change --- apps/user_ldap/appinfo/version | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/user_ldap/appinfo/version b/apps/user_ldap/appinfo/version index 444b3e8a75a..73082a89b35 100644 --- a/apps/user_ldap/appinfo/version +++ b/apps/user_ldap/appinfo/version @@ -1 +1 @@ -0.2.0.30 \ No newline at end of file +0.3.0.0 \ No newline at end of file -- GitLab From 35c5f7198941df87e8f693e262aa914645a62c36 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Sat, 6 Oct 2012 02:06:49 +0200 Subject: [PATCH 204/489] [tx-robot] updated from transifex --- apps/files/l10n/pl.php | 12 ++++ apps/files_external/l10n/pl.php | 6 ++ core/l10n/pl.php | 9 +++ l10n/pl/core.po | 55 +++++++-------- l10n/pl/files.po | 102 ++++++++++++++-------------- l10n/pl/files_external.po | 19 +++--- l10n/pl/settings.po | 12 ++-- l10n/templates/core.pot | 4 +- l10n/templates/files.pot | 56 +++++++-------- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 4 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- settings/l10n/pl.php | 4 +- 17 files changed, 162 insertions(+), 133 deletions(-) diff --git a/apps/files/l10n/pl.php b/apps/files/l10n/pl.php index 1f823d0bb5e..425c6a5a18d 100644 --- a/apps/files/l10n/pl.php +++ b/apps/files/l10n/pl.php @@ -23,6 +23,8 @@ "Unable to upload your file as it is a directory or has 0 bytes" => "Nie można wczytać pliku jeśli jest katalogiem lub ma 0 bajtów", "Upload Error" => "Błąd wczytywania", "Pending" => "Oczekujące", +"1 file uploading" => "1 plik wczytany", +"files uploading" => "pliki wczytane", "Upload cancelled." => "Wczytywanie anulowane.", "File upload is in progress. Leaving the page now will cancel the upload." => "Wysyłanie pliku jest w toku. Teraz opuszczając stronę wysyłanie zostanie anulowane.", "Invalid name, '/' is not allowed." => "Nieprawidłowa nazwa '/' jest niedozwolone.", @@ -35,6 +37,16 @@ "folders" => "foldery", "file" => "plik", "files" => "pliki", +"seconds ago" => "sekund temu", +"minute ago" => "minutę temu", +"minutes ago" => "minut temu", +"today" => "dziś", +"yesterday" => "wczoraj", +"days ago" => "dni temu", +"last month" => "ostani miesiąc", +"months ago" => "miesięcy temu", +"last year" => "ostatni rok", +"years ago" => "lat temu", "File handling" => "Zarządzanie plikami", "Maximum upload size" => "Maksymalny rozmiar wysyłanego pliku", "max. possible: " => "max. możliwych", diff --git a/apps/files_external/l10n/pl.php b/apps/files_external/l10n/pl.php index 06f41ba4815..00514e59a5f 100644 --- a/apps/files_external/l10n/pl.php +++ b/apps/files_external/l10n/pl.php @@ -1,4 +1,10 @@ "Dostęp do", +"Error configuring Dropbox storage" => "Wystąpił błąd podczas konfigurowania zasobu Dropbox", +"Grant access" => "Udziel dostępu", +"Fill out all required fields" => "Wypełnij wszystkie wymagane pola", +"Please provide a valid Dropbox app key and secret." => "Proszę podać prawidłowy klucz aplikacji Dropbox i klucz sekretny.", +"Error configuring Google Drive storage" => "Wystąpił błąd podczas konfigurowania zasobu Google Drive", "External Storage" => "Zewnętrzna zasoby dyskowe", "Mount point" => "Punkt montowania", "Backend" => "Zaplecze", diff --git a/core/l10n/pl.php b/core/l10n/pl.php index cc734802cc1..44e8aa65457 100644 --- a/core/l10n/pl.php +++ b/core/l10n/pl.php @@ -23,15 +23,23 @@ "No categories selected for deletion." => "Nie ma kategorii zaznaczonych do usunięcia.", "Error" => "Błąd", "Error while sharing" => "Błąd podczas współdzielenia", +"Error while unsharing" => "Błąd podczas zatrzymywania współdzielenia", "Error while changing permissions" => "Błąd przy zmianie uprawnień", +"Shared with you and the group" => "Współdzielony z tobą i grupą", +"by" => "przez", +"Shared with you by" => "Współdzielone z taba przez", "Share with" => "Współdziel z", "Share with link" => "Współdziel z link", "Password protect" => "Zabezpieczone hasłem", "Password" => "Hasło", "Set expiration date" => "Ustaw datę wygaśnięcia", "Expiration date" => "Data wygaśnięcia", +"Share via email:" => "Współdziel poprzez maila", "No people found" => "Nie znaleziono ludzi", "Resharing is not allowed" => "Współdzielenie nie jest możliwe", +"Shared in" => "Współdziel w", +"with" => "z", +"Unshare" => "Zatrzymaj współdzielenie", "can edit" => "można edytować", "access control" => "kontrola dostępu", "create" => "utwórz", @@ -39,6 +47,7 @@ "delete" => "usuń", "share" => "współdziel", "Password protected" => "Zabezpieczone hasłem", +"Error unsetting expiration date" => "Błąd niszczenie daty wygaśnięcia", "Error setting expiration date" => "Błąd podczas ustawiania daty wygaśnięcia", "ownCloud password reset" => "restart hasła", "Use the following link to reset your password: {link}" => "Proszę użyć tego odnośnika do zresetowania hasła: {link}", diff --git a/l10n/pl/core.po b/l10n/pl/core.po index cfdcf6124b8..de4980565c0 100644 --- a/l10n/pl/core.po +++ b/l10n/pl/core.po @@ -4,6 +4,7 @@ # # Translators: # Cyryl Sochacki <>, 2012. +# Cyryl Sochacki , 2012. # Kamil Domański , 2011. # Marcin Małecki , 2011, 2012. # Marcin Małecki , 2011. @@ -14,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-28 23:34+0200\n" -"PO-Revision-Date: 2012-09-28 21:34+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-10-06 02:03+0200\n" +"PO-Revision-Date: 2012-10-05 21:17+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" @@ -112,8 +113,8 @@ msgstr "Ok" msgid "No categories selected for deletion." msgstr "Nie ma kategorii zaznaczonych do usunięcia." -#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 -#: js/share.js:501 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:494 +#: js/share.js:506 msgid "Error" msgstr "Błąd" @@ -123,7 +124,7 @@ msgstr "Błąd podczas współdzielenia" #: js/share.js:114 msgid "Error while unsharing" -msgstr "" +msgstr "Błąd podczas zatrzymywania współdzielenia" #: js/share.js:121 msgid "Error while changing permissions" @@ -131,15 +132,15 @@ msgstr "Błąd przy zmianie uprawnień" #: js/share.js:130 msgid "Shared with you and the group" -msgstr "" +msgstr "Współdzielony z tobą i grupą" #: js/share.js:130 msgid "by" -msgstr "" +msgstr "przez" #: js/share.js:132 msgid "Shared with you by" -msgstr "" +msgstr "Współdzielone z taba przez" #: js/share.js:137 msgid "Share with" @@ -167,7 +168,7 @@ msgstr "Data wygaśnięcia" #: js/share.js:185 msgid "Share via email:" -msgstr "" +msgstr "Współdziel poprzez maila" #: js/share.js:187 msgid "No people found" @@ -179,49 +180,49 @@ msgstr "Współdzielenie nie jest możliwe" #: js/share.js:250 msgid "Shared in" -msgstr "" +msgstr "Współdziel w" #: js/share.js:250 msgid "with" -msgstr "" +msgstr "z" #: js/share.js:271 msgid "Unshare" -msgstr "" +msgstr "Zatrzymaj współdzielenie" -#: js/share.js:279 +#: js/share.js:283 msgid "can edit" msgstr "można edytować" -#: js/share.js:281 +#: js/share.js:285 msgid "access control" msgstr "kontrola dostępu" -#: js/share.js:284 +#: js/share.js:288 msgid "create" msgstr "utwórz" -#: js/share.js:287 +#: js/share.js:291 msgid "update" msgstr "uaktualnij" -#: js/share.js:290 +#: js/share.js:294 msgid "delete" msgstr "usuń" -#: js/share.js:293 +#: js/share.js:297 msgid "share" msgstr "współdziel" -#: js/share.js:317 js/share.js:476 +#: js/share.js:322 js/share.js:481 msgid "Password protected" msgstr "Zabezpieczone hasłem" -#: js/share.js:489 +#: js/share.js:494 msgid "Error unsetting expiration date" -msgstr "" +msgstr "Błąd niszczenie daty wygaśnięcia" -#: js/share.js:501 +#: js/share.js:506 msgid "Error setting expiration date" msgstr "Błąd podczas ustawiania daty wygaśnięcia" @@ -250,7 +251,7 @@ msgstr "Nie udało się zalogować!" msgid "Username" msgstr "Nazwa użytkownika" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:14 msgid "Request reset" msgstr "Żądanie resetowania" @@ -351,7 +352,7 @@ msgstr "Komputer bazy danych" msgid "Finish setup" msgstr "Zakończ konfigurowanie" -#: templates/layout.guest.php:36 +#: templates/layout.guest.php:38 msgid "web services under your control" msgstr "usługi internetowe pod kontrolą" @@ -363,11 +364,11 @@ msgstr "Wylogowuje użytkownika" msgid "Lost your password?" msgstr "Nie pamiętasz hasła?" -#: templates/login.php:17 +#: templates/login.php:16 msgid "remember" msgstr "Zapamiętanie" -#: templates/login.php:18 +#: templates/login.php:17 msgid "Log in" msgstr "Zaloguj" diff --git a/l10n/pl/files.po b/l10n/pl/files.po index 3344225a5cd..5cae59fb451 100644 --- a/l10n/pl/files.po +++ b/l10n/pl/files.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-26 13:19+0200\n" -"PO-Revision-Date: 2012-09-26 11:20+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-10-06 02:02+0200\n" +"PO-Revision-Date: 2012-10-05 21:03+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,39 +69,39 @@ msgstr "Usuwa element" msgid "Rename" msgstr "Zmień nazwę" -#: js/filelist.js:190 js/filelist.js:192 +#: js/filelist.js:189 js/filelist.js:191 msgid "already exists" msgstr "Już istnieje" -#: js/filelist.js:190 js/filelist.js:192 +#: js/filelist.js:189 js/filelist.js:191 msgid "replace" msgstr "zastap" -#: js/filelist.js:190 +#: js/filelist.js:189 msgid "suggest name" msgstr "zasugeruj nazwę" -#: js/filelist.js:190 js/filelist.js:192 +#: js/filelist.js:189 js/filelist.js:191 msgid "cancel" msgstr "anuluj" -#: js/filelist.js:239 js/filelist.js:241 +#: js/filelist.js:238 js/filelist.js:240 msgid "replaced" msgstr "zastąpione" -#: js/filelist.js:239 js/filelist.js:241 js/filelist.js:273 js/filelist.js:275 +#: js/filelist.js:238 js/filelist.js:240 js/filelist.js:272 js/filelist.js:274 msgid "undo" msgstr "wróć" -#: js/filelist.js:241 +#: js/filelist.js:240 msgid "with" msgstr "z" -#: js/filelist.js:273 +#: js/filelist.js:272 msgid "unshared" msgstr "Nie udostępnione" -#: js/filelist.js:275 +#: js/filelist.js:274 msgid "deleted" msgstr "skasuj" @@ -109,114 +109,114 @@ msgstr "skasuj" msgid "generating ZIP-file, it may take some time." msgstr "Generowanie pliku ZIP, może potrwać pewien czas." -#: js/files.js:208 +#: js/files.js:215 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Nie można wczytać pliku jeśli jest katalogiem lub ma 0 bajtów" -#: js/files.js:208 +#: js/files.js:215 msgid "Upload Error" msgstr "Błąd wczytywania" -#: js/files.js:236 js/files.js:341 js/files.js:371 +#: js/files.js:243 js/files.js:348 js/files.js:378 msgid "Pending" msgstr "Oczekujące" -#: js/files.js:256 +#: js/files.js:263 msgid "1 file uploading" -msgstr "" +msgstr "1 plik wczytany" -#: js/files.js:259 js/files.js:304 js/files.js:319 +#: js/files.js:266 js/files.js:311 js/files.js:326 msgid "files uploading" -msgstr "" +msgstr "pliki wczytane" -#: js/files.js:322 js/files.js:355 +#: js/files.js:329 js/files.js:362 msgid "Upload cancelled." msgstr "Wczytywanie anulowane." -#: js/files.js:424 +#: js/files.js:432 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Wysyłanie pliku jest w toku. Teraz opuszczając stronę wysyłanie zostanie anulowane." -#: js/files.js:494 +#: js/files.js:502 msgid "Invalid name, '/' is not allowed." msgstr "Nieprawidłowa nazwa '/' jest niedozwolone." -#: js/files.js:667 +#: js/files.js:679 msgid "files scanned" msgstr "Pliki skanowane" -#: js/files.js:675 +#: js/files.js:687 msgid "error while scanning" msgstr "Wystąpił błąd podczas skanowania" -#: js/files.js:748 templates/index.php:48 +#: js/files.js:760 templates/index.php:48 msgid "Name" msgstr "Nazwa" -#: js/files.js:749 templates/index.php:56 +#: js/files.js:761 templates/index.php:56 msgid "Size" msgstr "Rozmiar" -#: js/files.js:750 templates/index.php:58 +#: js/files.js:762 templates/index.php:58 msgid "Modified" msgstr "Czas modyfikacji" -#: js/files.js:777 +#: js/files.js:789 msgid "folder" msgstr "folder" -#: js/files.js:779 +#: js/files.js:791 msgid "folders" msgstr "foldery" -#: js/files.js:787 +#: js/files.js:799 msgid "file" msgstr "plik" -#: js/files.js:789 +#: js/files.js:801 msgid "files" msgstr "pliki" -#: js/files.js:833 +#: js/files.js:845 msgid "seconds ago" -msgstr "" +msgstr "sekund temu" -#: js/files.js:834 +#: js/files.js:846 msgid "minute ago" -msgstr "" +msgstr "minutę temu" -#: js/files.js:835 +#: js/files.js:847 msgid "minutes ago" -msgstr "" +msgstr "minut temu" -#: js/files.js:838 +#: js/files.js:850 msgid "today" -msgstr "" +msgstr "dziś" -#: js/files.js:839 +#: js/files.js:851 msgid "yesterday" -msgstr "" +msgstr "wczoraj" -#: js/files.js:840 +#: js/files.js:852 msgid "days ago" -msgstr "" +msgstr "dni temu" -#: js/files.js:841 +#: js/files.js:853 msgid "last month" -msgstr "" +msgstr "ostani miesiąc" -#: js/files.js:843 +#: js/files.js:855 msgid "months ago" -msgstr "" +msgstr "miesięcy temu" -#: js/files.js:844 +#: js/files.js:856 msgid "last year" -msgstr "" +msgstr "ostatni rok" -#: js/files.js:845 +#: js/files.js:857 msgid "years ago" -msgstr "" +msgstr "lat temu" #: templates/admin.php:5 msgid "File handling" diff --git a/l10n/pl/files_external.po b/l10n/pl/files_external.po index cccd37cc47e..ae3676ade7c 100644 --- a/l10n/pl/files_external.po +++ b/l10n/pl/files_external.po @@ -4,13 +4,14 @@ # # Translators: # Cyryl Sochacki <>, 2012. +# Cyryl Sochacki , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-02 23:16+0200\n" -"PO-Revision-Date: 2012-10-02 21:17+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-10-06 02:03+0200\n" +"PO-Revision-Date: 2012-10-05 20:54+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" @@ -20,27 +21,27 @@ msgstr "" #: js/dropbox.js:7 js/dropbox.js:25 js/google.js:7 js/google.js:23 msgid "Access granted" -msgstr "" +msgstr "Dostęp do" #: js/dropbox.js:28 js/dropbox.js:74 js/dropbox.js:79 js/dropbox.js:86 msgid "Error configuring Dropbox storage" -msgstr "" +msgstr "Wystąpił błąd podczas konfigurowania zasobu Dropbox" #: js/dropbox.js:34 js/dropbox.js:45 js/google.js:31 js/google.js:40 msgid "Grant access" -msgstr "" +msgstr "Udziel dostępu" #: js/dropbox.js:73 js/google.js:72 msgid "Fill out all required fields" -msgstr "" +msgstr "Wypełnij wszystkie wymagane pola" #: js/dropbox.js:85 msgid "Please provide a valid Dropbox app key and secret." -msgstr "" +msgstr "Proszę podać prawidłowy klucz aplikacji Dropbox i klucz sekretny." #: js/google.js:26 js/google.js:73 js/google.js:78 msgid "Error configuring Google Drive storage" -msgstr "" +msgstr "Wystąpił błąd podczas konfigurowania zasobu Google Drive" #: templates/settings.php:3 msgid "External Storage" diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index 31d3ab5c968..66ef5e381a7 100644 --- a/l10n/pl/settings.po +++ b/l10n/pl/settings.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-26 13:19+0200\n" -"PO-Revision-Date: 2012-09-26 10:40+0000\n" -"Last-Translator: emc \n" +"POT-Creation-Date: 2012-10-06 02:03+0200\n" +"PO-Revision-Date: 2012-10-05 21:00+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" @@ -87,17 +87,17 @@ msgstr "Nie można usunąć użytkownika z grupy %s" #: js/apps.js:27 js/apps.js:61 msgid "Disable" -msgstr "Wyłączone" +msgstr "Wyłącz" #: js/apps.js:27 js/apps.js:50 msgid "Enable" -msgstr "Włączone" +msgstr "Włącz" #: js/personal.js:69 msgid "Saving..." msgstr "Zapisywanie..." -#: personal.php:46 personal.php:47 +#: personal.php:47 personal.php:48 msgid "__language_name__" msgstr "Polski" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 539cfcbb7e7..af6ae820220 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-05 02:03+0200\n" +"POT-Creation-Date: 2012-10-06 02:03+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -344,7 +344,7 @@ msgstr "" msgid "Finish setup" msgstr "" -#: templates/layout.guest.php:36 +#: templates/layout.guest.php:38 msgid "web services under your control" msgstr "" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 33b3a24b128..98d458bd6d3 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-05 02:02+0200\n" +"POT-Creation-Date: 2012-10-06 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -103,112 +103,112 @@ msgstr "" msgid "generating ZIP-file, it may take some time." msgstr "" -#: js/files.js:208 +#: js/files.js:215 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:208 +#: js/files.js:215 msgid "Upload Error" msgstr "" -#: js/files.js:236 js/files.js:341 js/files.js:371 +#: js/files.js:243 js/files.js:348 js/files.js:378 msgid "Pending" msgstr "" -#: js/files.js:256 +#: js/files.js:263 msgid "1 file uploading" msgstr "" -#: js/files.js:259 js/files.js:304 js/files.js:319 +#: js/files.js:266 js/files.js:311 js/files.js:326 msgid "files uploading" msgstr "" -#: js/files.js:322 js/files.js:355 +#: js/files.js:329 js/files.js:362 msgid "Upload cancelled." msgstr "" -#: js/files.js:424 +#: js/files.js:432 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:494 +#: js/files.js:502 msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:668 +#: js/files.js:679 msgid "files scanned" msgstr "" -#: js/files.js:676 +#: js/files.js:687 msgid "error while scanning" msgstr "" -#: js/files.js:749 templates/index.php:48 +#: js/files.js:760 templates/index.php:48 msgid "Name" msgstr "" -#: js/files.js:750 templates/index.php:56 +#: js/files.js:761 templates/index.php:56 msgid "Size" msgstr "" -#: js/files.js:751 templates/index.php:58 +#: js/files.js:762 templates/index.php:58 msgid "Modified" msgstr "" -#: js/files.js:778 +#: js/files.js:789 msgid "folder" msgstr "" -#: js/files.js:780 +#: js/files.js:791 msgid "folders" msgstr "" -#: js/files.js:788 +#: js/files.js:799 msgid "file" msgstr "" -#: js/files.js:790 +#: js/files.js:801 msgid "files" msgstr "" -#: js/files.js:834 +#: js/files.js:845 msgid "seconds ago" msgstr "" -#: js/files.js:835 +#: js/files.js:846 msgid "minute ago" msgstr "" -#: js/files.js:836 +#: js/files.js:847 msgid "minutes ago" msgstr "" -#: js/files.js:839 +#: js/files.js:850 msgid "today" msgstr "" -#: js/files.js:840 +#: js/files.js:851 msgid "yesterday" msgstr "" -#: js/files.js:841 +#: js/files.js:852 msgid "days ago" msgstr "" -#: js/files.js:842 +#: js/files.js:853 msgid "last month" msgstr "" -#: js/files.js:844 +#: js/files.js:855 msgid "months ago" msgstr "" -#: js/files.js:845 +#: js/files.js:856 msgid "last year" msgstr "" -#: js/files.js:846 +#: js/files.js:857 msgid "years ago" msgstr "" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 5e96e8163ee..3235fac5a70 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-05 02:02+0200\n" +"POT-Creation-Date: 2012-10-06 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index 8906a13da4a..a37b236b30e 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-05 02:02+0200\n" +"POT-Creation-Date: 2012-10-06 02:03+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index 785b8c68d04..b3507be8034 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-05 02:02+0200\n" +"POT-Creation-Date: 2012-10-06 02:03+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -43,6 +43,6 @@ msgstr "" msgid "No preview available for" msgstr "" -#: templates/public.php:37 +#: templates/public.php:35 msgid "web services under your control" msgstr "" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index e9a24ee0f38..3e646f180d8 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-05 02:02+0200\n" +"POT-Creation-Date: 2012-10-06 02:03+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index f4c9b23aa77..d9ea05bc65d 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-05 02:03+0200\n" +"POT-Creation-Date: 2012-10-06 02:03+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 4695424a7b3..cff9204e1f8 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-05 02:03+0200\n" +"POT-Creation-Date: 2012-10-06 02:03+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index d7c7bff1663..853693015e1 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-05 02:03+0200\n" +"POT-Creation-Date: 2012-10-06 02:03+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/settings/l10n/pl.php b/settings/l10n/pl.php index 432b303b0a5..16c40ac0b04 100644 --- a/settings/l10n/pl.php +++ b/settings/l10n/pl.php @@ -13,8 +13,8 @@ "Language changed" => "Język zmieniony", "Unable to add user to group %s" => "Nie można dodać użytkownika do grupy %s", "Unable to remove user from group %s" => "Nie można usunąć użytkownika z grupy %s", -"Disable" => "Wyłączone", -"Enable" => "Włączone", +"Disable" => "Wyłącz", +"Enable" => "Włącz", "Saving..." => "Zapisywanie...", "__language_name__" => "Polski", "Security Warning" => "Ostrzeżenia bezpieczeństwa", -- GitLab From 54695b11eb3e8c3b0d0a03df1b8c9434c5ce4746 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Sat, 6 Oct 2012 13:43:34 +0200 Subject: [PATCH 205/489] test case for dropbox storage --- apps/files_external/tests/config.php | 9 +++++++++ apps/files_external/tests/dropbox.php | 28 +++++++++++++++++++++++++++ 2 files changed, 37 insertions(+) create mode 100644 apps/files_external/tests/dropbox.php diff --git a/apps/files_external/tests/config.php b/apps/files_external/tests/config.php index e58a87fabdf..7779f618948 100644 --- a/apps/files_external/tests/config.php +++ b/apps/files_external/tests/config.php @@ -43,4 +43,13 @@ return array( 'secret'=>'test', 'bucket'=>'bucket', ), + 'dropbox' => array ( + 'run'=>false, + 'root'=>'owncloud', + 'configured' => 'true', + 'app_key' => '', + 'app_secret' => '', + 'token' => '', + 'token_secret' => '' + ) ); diff --git a/apps/files_external/tests/dropbox.php b/apps/files_external/tests/dropbox.php new file mode 100644 index 00000000000..64eb2556c92 --- /dev/null +++ b/apps/files_external/tests/dropbox.php @@ -0,0 +1,28 @@ + + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +$config=include('files_external/tests/config.php'); +if(!is_array($config) or !isset($config['dropbox']) or !$config['dropbox']['run']) { + abstract class Test_Filestorage_Dropbox extends Test_FileStorage{} + return; +}else{ + class Test_Filestorage_Dropbox extends Test_FileStorage { + private $config; + + public function setUp() { + $id=uniqid(); + $this->config=include('files_external/tests/config.php'); + $this->config['dropbox']['root'].='/'.$id;//make sure we have an new empty folder to work in + $this->instance=new OC_Filestorage_Dropbox($this->config['dropbox']); + } + + public function tearDown() { + $this->instance->unlink('/'); + } + } +} -- GitLab From a203a4a1c772bc05750f0bbe2db701c21cae6855 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Sat, 6 Oct 2012 13:44:53 +0200 Subject: [PATCH 206/489] add support to mount a specific folder from dropbox --- apps/files_external/lib/dropbox.php | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/apps/files_external/lib/dropbox.php b/apps/files_external/lib/dropbox.php index bb86894e55e..c8220832702 100755 --- a/apps/files_external/lib/dropbox.php +++ b/apps/files_external/lib/dropbox.php @@ -25,21 +25,25 @@ require_once 'Dropbox/autoload.php'; class OC_Filestorage_Dropbox extends OC_Filestorage_Common { private $dropbox; + private $root; private $metaData = array(); private static $tempFiles = array(); public function __construct($params) { if (isset($params['configured']) && $params['configured'] == 'true' && isset($params['app_key']) && isset($params['app_secret']) && isset($params['token']) && isset($params['token_secret'])) { + $this->root=isset($params['root'])?$params['root']:''; $oauth = new Dropbox_OAuth_Curl($params['app_key'], $params['app_secret']); $oauth->setToken($params['token'], $params['token_secret']); $this->dropbox = new Dropbox_API($oauth, 'dropbox'); + $this->mkdir(''); } else { throw new Exception('Creating OC_Filestorage_Dropbox storage failed'); } } private function getMetaData($path, $list = false) { + $path = $this->root.$path; if (!$list && isset($this->metaData[$path])) { return $this->metaData[$path]; } else { @@ -76,6 +80,7 @@ class OC_Filestorage_Dropbox extends OC_Filestorage_Common { } public function mkdir($path) { + $path = $this->root.$path; try { $this->dropbox->createFolder($path); return true; @@ -144,6 +149,7 @@ class OC_Filestorage_Dropbox extends OC_Filestorage_Common { } public function unlink($path) { + $path = $this->root.$path; try { $this->dropbox->delete($path); return true; @@ -154,6 +160,8 @@ class OC_Filestorage_Dropbox extends OC_Filestorage_Common { } public function rename($path1, $path2) { + $path1 = $this->root.$path1; + $path2 = $this->root.$path2; try { $this->dropbox->move($path1, $path2); return true; @@ -164,6 +172,8 @@ class OC_Filestorage_Dropbox extends OC_Filestorage_Common { } public function copy($path1, $path2) { + $path1 = $this->root.$path1; + $path2 = $this->root.$path2; try { $this->dropbox->copy($path1, $path2); return true; @@ -174,6 +184,7 @@ class OC_Filestorage_Dropbox extends OC_Filestorage_Common { } public function fopen($path, $mode) { + $path = $this->root.$path; switch ($mode) { case 'r': case 'rb': -- GitLab From f5b62fb2eb10f23109bf1b1e8a3a6d0c8b0c67e4 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Sat, 6 Oct 2012 13:45:46 +0200 Subject: [PATCH 207/489] skip some test for storage backends that don't support touch --- tests/lib/filestorage.php | 28 +++++++++++++++------------- 1 file changed, 15 insertions(+), 13 deletions(-) diff --git a/tests/lib/filestorage.php b/tests/lib/filestorage.php index 3f7bb7b62dc..101da0d1ada 100644 --- a/tests/lib/filestorage.php +++ b/tests/lib/filestorage.php @@ -176,22 +176,24 @@ abstract class Test_FileStorage extends UnitTestCase { $this->assertEqual($stat['ctime'],$cTime); $mtimeStart=time(); - $this->instance->touch('/lorem.txt'); + $supportsTouch = $this->instance->touch('/lorem.txt'); $mtimeEnd=time(); - $originalCTime=$cTime; - $cTime=$this->instance->filectime('/lorem.txt'); - $mTime=$this->instance->filemtime('/lorem.txt'); - $this->assertTrue(($mtimeStart-1)<=$mTime); - $this->assertTrue($mTime<=($mtimeEnd+1)); - $this->assertEqual($cTime,$originalCTime); - - $this->assertTrue($this->instance->hasUpdated('/lorem.txt',$mtimeStart-1)); - - if($this->instance->touch('/lorem.txt',100)!==false) { + if($supportsTouch !== false){ + $originalCTime=$cTime; + $cTime=$this->instance->filectime('/lorem.txt'); $mTime=$this->instance->filemtime('/lorem.txt'); - $this->assertEqual($mTime,100); + $this->assertTrue(($mtimeStart-1)<=$mTime); + $this->assertTrue($mTime<=($mtimeEnd+1)); + $this->assertEqual($cTime,$originalCTime); + + $this->assertTrue($this->instance->hasUpdated('/lorem.txt',$mtimeStart-1)); + + if($this->instance->touch('/lorem.txt',100)!==false) { + $mTime=$this->instance->filemtime('/lorem.txt'); + $this->assertEqual($mTime,100); + } } - + $mtimeStart=time(); $fh=$this->instance->fopen('/lorem.txt','a'); fwrite($fh,' '); -- GitLab From 5eaf95eedd842c3978173f75db1db68253dc1bc7 Mon Sep 17 00:00:00 2001 From: Frank Karlitschek Date: Sat, 6 Oct 2012 17:37:38 +0200 Subject: [PATCH 208/489] check for SimpleXML which seems to bw non default on Free BSD --- lib/util.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lib/util.php b/lib/util.php index ae77e16c8a0..6707d67638e 100755 --- a/lib/util.php +++ b/lib/util.php @@ -287,6 +287,11 @@ class OC_Util { $errors[]=array('error'=>'PHP module zlib is not installed.
','hint'=>'Please ask your server administrator to install the module.'); $web_server_restart= false; } + + if(!function_exists('simplexml_load_string')) { + $errors[]=array('error'=>'PHP module SimpleXML is not installed.
','hint'=>'Please ask your server administrator to install the module.'); + $web_server_restart= false; + } if(floatval(phpversion())<5.3) { $errors[]=array('error'=>'PHP 5.3 is required.
','hint'=>'Please ask your server administrator to update PHP to version 5.3 or higher. PHP 5.2 is no longer supported by ownCloud and the PHP community.'); $web_server_restart= false; -- GitLab From 5f462ec6f71b82ec334aeef402d98ed7207dcbd7 Mon Sep 17 00:00:00 2001 From: Michael Gapczynski Date: Sat, 6 Oct 2012 18:13:11 -0400 Subject: [PATCH 209/489] Fix - "Correct checking item source for share from same owner when generating item target" --- lib/public/share.php | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/lib/public/share.php b/lib/public/share.php index e0488b8faf6..59dbad035aa 100644 --- a/lib/public/share.php +++ b/lib/public/share.php @@ -1015,8 +1015,14 @@ class Share { continue; } } - if ($item['uid_owner'] == $uidOwner && $item[$columnSource] == $itemSource) { - return $target; + if ($item['uid_owner'] == $uidOwner) { + if ($itemType == 'file' || $itemType == 'folder') { + if ($item['file_source'] == \OC_FileCache::getId($itemSource)) { + return $target; + } + } else if ($item['item_source'] == $itemSource) { + return $target; + } } } if (!isset($exclude)) { -- GitLab From 4cdfc72d58ff17cfc468b9474b7c480952ee7412 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Sun, 7 Oct 2012 00:19:35 +0200 Subject: [PATCH 210/489] fix hook test when not logged in --- tests/lib/filesystem.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/tests/lib/filesystem.php b/tests/lib/filesystem.php index 4239033551d..ab5cbe717f2 100644 --- a/tests/lib/filesystem.php +++ b/tests/lib/filesystem.php @@ -73,7 +73,12 @@ class Test_Filesystem extends UnitTestCase { } public function testHooks() { - $user = OC_User::getUser(); + if(OC_User::isLoggedIn()){ + $user = OC_User::getUser(); + }else{ + $user=uniqid(); + OC_Filesystem::init('/'.$user.'/files'); + } OC_Hook::clear('OC_Filesystem'); OC_Hook::connect('OC_Filesystem', 'post_write', $this, 'dummyHook'); -- GitLab From 7f2208b9a11f608e7d726bf426fe4c2a672e058a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20G=C3=B6hler?= Date: Sun, 7 Oct 2012 00:03:47 +0200 Subject: [PATCH 211/489] fixed max possible upload size for files app in admin screen used get_cfg_var() to get the real limit from php.ini instead of .ht_access dont know why we used PHP_INT_MAX here... --- apps/files/admin.php | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/apps/files/admin.php b/apps/files/admin.php index a8f2deffc92..547f2bd7ddb 100644 --- a/apps/files/admin.php +++ b/apps/files/admin.php @@ -30,8 +30,11 @@ OCP\User::checkAdminUser(); $htaccessWorking=(getenv('htaccessWorking')=='true'); $upload_max_filesize = OCP\Util::computerFileSize(ini_get('upload_max_filesize')); +$upload_max_filesize_possible = OCP\Util::computerFileSize(get_cfg_var('upload_max_filesize')); $post_max_size = OCP\Util::computerFileSize(ini_get('post_max_size')); +$post_max_size_possible = OCP\Util::computerFileSize(get_cfg_var('post_max_size')); $maxUploadFilesize = OCP\Util::humanFileSize(min($upload_max_filesize, $post_max_size)); +$maxUploadFilesizePossible = OCP\Util::humanFileSize(min($upload_max_filesize_possible, $post_max_size_possible)); if($_POST) { if(isset($_POST['maxUploadSize'])) { if(($setMaxSize = OC_Files::setUploadLimit(OCP\Util::computerFileSize($_POST['maxUploadSize']))) !== false) { @@ -56,7 +59,8 @@ $htaccessWritable=is_writable(OC::$SERVERROOT.'/.htaccess'); $tmpl = new OCP\Template( 'files', 'admin' ); $tmpl->assign( 'uploadChangable', $htaccessWorking and $htaccessWritable ); $tmpl->assign( 'uploadMaxFilesize', $maxUploadFilesize); -$tmpl->assign( 'maxPossibleUploadSize', OCP\Util::humanFileSize(PHP_INT_MAX)); +$tmpl->assign( 'maxPossibleUploadSize', $maxUploadFilesizePossible); $tmpl->assign( 'allowZipDownload', $allowZipDownload); $tmpl->assign( 'maxZipInputSize', $maxZipInputSize); -return $tmpl->fetchPage(); \ No newline at end of file +return $tmpl->fetchPage(); + -- GitLab From 671c8b94b1cdc14b2c71e51254bc589d5f32d263 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Sun, 7 Oct 2012 00:56:59 +0200 Subject: [PATCH 212/489] better detect if we need to init the filesystem for the hooks test --- tests/lib/filesystem.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/lib/filesystem.php b/tests/lib/filesystem.php index ab5cbe717f2..a13b80cc5c1 100644 --- a/tests/lib/filesystem.php +++ b/tests/lib/filesystem.php @@ -73,7 +73,7 @@ class Test_Filesystem extends UnitTestCase { } public function testHooks() { - if(OC_User::isLoggedIn()){ + if(OC_Filesystem::getView()){ $user = OC_User::getUser(); }else{ $user=uniqid(); -- GitLab From c175a54babd2d1906d73f03ec2381914594257ed Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Sun, 7 Oct 2012 02:57:00 +0300 Subject: [PATCH 213/489] Update AUTHORS --- AUTHORS | 1 + 1 file changed, 1 insertion(+) diff --git a/AUTHORS b/AUTHORS index 2404174e328..c30a6bf426b 100644 --- a/AUTHORS +++ b/AUTHORS @@ -18,6 +18,7 @@ ownCloud is written by: Simon Birnbach Lukas Reschke Christian Reiner + Daniel Molkentin … With help from many libraries and frameworks including: -- GitLab From e36317c21a024c758b514109cb042515cc8e94bb Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Sun, 7 Oct 2012 02:08:12 +0200 Subject: [PATCH 214/489] [tx-robot] updated from transifex --- apps/files_encryption/l10n/ku_IQ.php | 3 + apps/files_external/l10n/es.php | 6 + apps/files_external/l10n/eu.php | 2 + apps/files_external/l10n/pt_BR.php | 6 + apps/files_sharing/l10n/ku_IQ.php | 9 + apps/files_versions/l10n/ku_IQ.php | 8 + core/l10n/pt_BR.php | 6 + l10n/es/files_external.po | 19 +- l10n/eu/files_external.po | 8 +- l10n/ku_IQ/core.po | 377 +++++++++++++++++++++++++++ l10n/ku_IQ/files.po | 299 +++++++++++++++++++++ l10n/ku_IQ/files_encryption.po | 35 +++ l10n/ku_IQ/files_external.po | 106 ++++++++ l10n/ku_IQ/files_sharing.po | 49 ++++ l10n/ku_IQ/files_versions.po | 43 +++ l10n/ku_IQ/lib.po | 125 +++++++++ l10n/ku_IQ/settings.po | 317 ++++++++++++++++++++++ l10n/ku_IQ/user_ldap.po | 170 ++++++++++++ l10n/pt_BR/core.po | 48 ++-- l10n/pt_BR/files_external.po | 18 +- l10n/pt_BR/settings.po | 8 +- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- settings/l10n/pt_BR.php | 2 +- 31 files changed, 1622 insertions(+), 60 deletions(-) create mode 100644 apps/files_encryption/l10n/ku_IQ.php create mode 100644 apps/files_sharing/l10n/ku_IQ.php create mode 100644 apps/files_versions/l10n/ku_IQ.php create mode 100644 l10n/ku_IQ/core.po create mode 100644 l10n/ku_IQ/files.po create mode 100644 l10n/ku_IQ/files_encryption.po create mode 100644 l10n/ku_IQ/files_external.po create mode 100644 l10n/ku_IQ/files_sharing.po create mode 100644 l10n/ku_IQ/files_versions.po create mode 100644 l10n/ku_IQ/lib.po create mode 100644 l10n/ku_IQ/settings.po create mode 100644 l10n/ku_IQ/user_ldap.po diff --git a/apps/files_encryption/l10n/ku_IQ.php b/apps/files_encryption/l10n/ku_IQ.php new file mode 100644 index 00000000000..ff6c34b71d3 --- /dev/null +++ b/apps/files_encryption/l10n/ku_IQ.php @@ -0,0 +1,3 @@ + "نهێنیکردن" +); diff --git a/apps/files_external/l10n/es.php b/apps/files_external/l10n/es.php index 2a81deffee7..32a0d896874 100644 --- a/apps/files_external/l10n/es.php +++ b/apps/files_external/l10n/es.php @@ -1,4 +1,10 @@ "Acceso garantizado", +"Error configuring Dropbox storage" => "Error configurando el almacenamiento de Dropbox", +"Grant access" => "Garantizar acceso", +"Fill out all required fields" => "Rellenar todos los campos requeridos", +"Please provide a valid Dropbox app key and secret." => "Por favor , proporcione un secreto y una contraseña válida de la app Dropbox.", +"Error configuring Google Drive storage" => "Error configurando el almacenamiento de Google Drive", "External Storage" => "Almacenamiento externo", "Mount point" => "Punto de montaje", "Backend" => "Motor", diff --git a/apps/files_external/l10n/eu.php b/apps/files_external/l10n/eu.php index 8ec6d40563b..dccd377b119 100644 --- a/apps/files_external/l10n/eu.php +++ b/apps/files_external/l10n/eu.php @@ -1,5 +1,7 @@ "Sarrera baimendua", "Error configuring Dropbox storage" => "Errore bat egon da Dropbox biltegiratzea konfiguratzean", +"Grant access" => "Baimendu sarrera", "Fill out all required fields" => "Bete eskatutako eremu guztiak", "Please provide a valid Dropbox app key and secret." => "Mesedez eman baliozkoa den Dropbox app giltza eta sekretua", "Error configuring Google Drive storage" => "Errore bat egon da Google Drive biltegiratzea konfiguratzean", diff --git a/apps/files_external/l10n/pt_BR.php b/apps/files_external/l10n/pt_BR.php index 0f1d39e5930..26e927a423e 100644 --- a/apps/files_external/l10n/pt_BR.php +++ b/apps/files_external/l10n/pt_BR.php @@ -1,4 +1,10 @@ "Acesso concedido", +"Error configuring Dropbox storage" => "Erro ao configurar armazenamento do Dropbox", +"Grant access" => "Permitir acesso", +"Fill out all required fields" => "Preencha todos os campos obrigatórios", +"Please provide a valid Dropbox app key and secret." => "Por favor forneça um app key e secret válido do Dropbox", +"Error configuring Google Drive storage" => "Erro ao configurar armazenamento do Google Drive", "External Storage" => "Armazenamento Externo", "Mount point" => "Ponto de montagem", "Backend" => "Backend", diff --git a/apps/files_sharing/l10n/ku_IQ.php b/apps/files_sharing/l10n/ku_IQ.php new file mode 100644 index 00000000000..f139b0a0643 --- /dev/null +++ b/apps/files_sharing/l10n/ku_IQ.php @@ -0,0 +1,9 @@ + "تێپه‌ڕه‌وشه", +"Submit" => "ناردن", +"%s shared the folder %s with you" => "%s دابه‌شی کردووه‌ بوخچه‌ی %s له‌گه‌ڵ تۆ", +"%s shared the file %s with you" => "%s دابه‌شی کردووه‌ په‌ڕگه‌یی %s له‌گه‌ڵ تۆ", +"Download" => "داگرتن", +"No preview available for" => "هیچ پێشبینیه‌ك ئاماده‌ نیه بۆ", +"web services under your control" => "ڕاژه‌ی وێب له‌ژێر چاودێریت دایه" +); diff --git a/apps/files_versions/l10n/ku_IQ.php b/apps/files_versions/l10n/ku_IQ.php new file mode 100644 index 00000000000..5fa3b9080d7 --- /dev/null +++ b/apps/files_versions/l10n/ku_IQ.php @@ -0,0 +1,8 @@ + "وه‌شانه‌کان گشتیان به‌سه‌رده‌چن", +"History" => "مێژوو", +"Versions" => "وه‌شان", +"This will delete all existing backup versions of your files" => "ئه‌مه‌ سه‌رجه‌م پاڵپشتی وه‌شانه‌ هه‌بووه‌کانی په‌ڕگه‌کانت ده‌سڕینته‌وه", +"Files Versioning" => "وه‌شانی په‌ڕگه", +"Enable" => "چالاککردن" +); diff --git a/core/l10n/pt_BR.php b/core/l10n/pt_BR.php index 37e411ec074..c332585325b 100644 --- a/core/l10n/pt_BR.php +++ b/core/l10n/pt_BR.php @@ -25,14 +25,20 @@ "Error while sharing" => "Erro ao compartilhar", "Error while unsharing" => "Erro ao descompartilhar", "Error while changing permissions" => "Erro ao mudar permissões", +"Shared with you and the group" => "Compartilhado com você e o grupo", +"by" => "por", +"Shared with you by" => "Compartilhado com você por", "Share with" => "Compartilhar com", "Share with link" => "Compartilhar com link", "Password protect" => "Proteger com senha", "Password" => "Senha", "Set expiration date" => "Definir data de expiração", "Expiration date" => "Data de expiração", +"Share via email:" => "Compartilhar via e-mail:", "No people found" => "Nenhuma pessoa encontrada", "Resharing is not allowed" => "Não é permitido re-compartilhar", +"Shared in" => "Compartilhado em", +"with" => "com", "Unshare" => "Descompartilhar", "can edit" => "pode editar", "access control" => "controle de acesso", diff --git a/l10n/es/files_external.po b/l10n/es/files_external.po index 58d0699cdfe..bd19aeabd7c 100644 --- a/l10n/es/files_external.po +++ b/l10n/es/files_external.po @@ -5,13 +5,14 @@ # Translators: # Javier Llorente , 2012. # , 2012. +# Raul Fernandez Garcia , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-02 23:16+0200\n" -"PO-Revision-Date: 2012-10-02 21:17+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-10-07 02:03+0200\n" +"PO-Revision-Date: 2012-10-06 14:33+0000\n" +"Last-Translator: Raul Fernandez Garcia \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" @@ -21,27 +22,27 @@ msgstr "" #: js/dropbox.js:7 js/dropbox.js:25 js/google.js:7 js/google.js:23 msgid "Access granted" -msgstr "" +msgstr "Acceso garantizado" #: js/dropbox.js:28 js/dropbox.js:74 js/dropbox.js:79 js/dropbox.js:86 msgid "Error configuring Dropbox storage" -msgstr "" +msgstr "Error configurando el almacenamiento de Dropbox" #: js/dropbox.js:34 js/dropbox.js:45 js/google.js:31 js/google.js:40 msgid "Grant access" -msgstr "" +msgstr "Garantizar acceso" #: js/dropbox.js:73 js/google.js:72 msgid "Fill out all required fields" -msgstr "" +msgstr "Rellenar todos los campos requeridos" #: js/dropbox.js:85 msgid "Please provide a valid Dropbox app key and secret." -msgstr "" +msgstr "Por favor , proporcione un secreto y una contraseña válida de la app Dropbox." #: js/google.js:26 js/google.js:73 js/google.js:78 msgid "Error configuring Google Drive storage" -msgstr "" +msgstr "Error configurando el almacenamiento de Google Drive" #: templates/settings.php:3 msgid "External Storage" diff --git a/l10n/eu/files_external.po b/l10n/eu/files_external.po index 34e7dc87994..8cfcabccf36 100644 --- a/l10n/eu/files_external.po +++ b/l10n/eu/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-04 02:04+0200\n" -"PO-Revision-Date: 2012-10-03 07:31+0000\n" +"POT-Creation-Date: 2012-10-07 02:03+0200\n" +"PO-Revision-Date: 2012-10-06 13: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" @@ -20,7 +20,7 @@ msgstr "" #: js/dropbox.js:7 js/dropbox.js:25 js/google.js:7 js/google.js:23 msgid "Access granted" -msgstr "" +msgstr "Sarrera baimendua" #: js/dropbox.js:28 js/dropbox.js:74 js/dropbox.js:79 js/dropbox.js:86 msgid "Error configuring Dropbox storage" @@ -28,7 +28,7 @@ msgstr "Errore bat egon da Dropbox biltegiratzea konfiguratzean" #: js/dropbox.js:34 js/dropbox.js:45 js/google.js:31 js/google.js:40 msgid "Grant access" -msgstr "" +msgstr "Baimendu sarrera" #: js/dropbox.js:73 js/google.js:72 msgid "Fill out all required fields" diff --git a/l10n/ku_IQ/core.po b/l10n/ku_IQ/core.po new file mode 100644 index 00000000000..84f4339a3e5 --- /dev/null +++ b/l10n/ku_IQ/core.po @@ -0,0 +1,377 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2012-10-07 02:03+0200\n" +"PO-Revision-Date: 2011-07-25 16:05+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ku_IQ\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 +msgid "Application name not provided." +msgstr "" + +#: ajax/vcategories/add.php:29 +msgid "No category to add?" +msgstr "" + +#: ajax/vcategories/add.php:36 +msgid "This category already exists: " +msgstr "" + +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 +msgid "Settings" +msgstr "" + +#: js/js.js:645 +msgid "January" +msgstr "" + +#: js/js.js:645 +msgid "February" +msgstr "" + +#: js/js.js:645 +msgid "March" +msgstr "" + +#: js/js.js:645 +msgid "April" +msgstr "" + +#: js/js.js:645 +msgid "May" +msgstr "" + +#: js/js.js:645 +msgid "June" +msgstr "" + +#: js/js.js:646 +msgid "July" +msgstr "" + +#: js/js.js:646 +msgid "August" +msgstr "" + +#: js/js.js:646 +msgid "September" +msgstr "" + +#: js/js.js:646 +msgid "October" +msgstr "" + +#: js/js.js:646 +msgid "November" +msgstr "" + +#: js/js.js:646 +msgid "December" +msgstr "" + +#: js/oc-dialogs.js:123 +msgid "Choose" +msgstr "" + +#: js/oc-dialogs.js:143 js/oc-dialogs.js:163 +msgid "Cancel" +msgstr "" + +#: js/oc-dialogs.js:159 +msgid "No" +msgstr "" + +#: js/oc-dialogs.js:160 +msgid "Yes" +msgstr "" + +#: js/oc-dialogs.js:177 +msgid "Ok" +msgstr "" + +#: js/oc-vcategories.js:68 +msgid "No categories selected for deletion." +msgstr "" + +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:494 +#: js/share.js:506 +msgid "Error" +msgstr "" + +#: js/share.js:103 +msgid "Error while sharing" +msgstr "" + +#: js/share.js:114 +msgid "Error while unsharing" +msgstr "" + +#: js/share.js:121 +msgid "Error while changing permissions" +msgstr "" + +#: js/share.js:130 +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" +msgstr "" + +#: js/share.js:132 +msgid "Shared with you by" +msgstr "" + +#: js/share.js:137 +msgid "Share with" +msgstr "" + +#: js/share.js:142 +msgid "Share with link" +msgstr "" + +#: js/share.js:143 +msgid "Password protect" +msgstr "" + +#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +msgid "Password" +msgstr "" + +#: js/share.js:152 +msgid "Set expiration date" +msgstr "" + +#: js/share.js:153 +msgid "Expiration date" +msgstr "" + +#: js/share.js:185 +msgid "Share via email:" +msgstr "" + +#: js/share.js:187 +msgid "No people found" +msgstr "" + +#: js/share.js:214 +msgid "Resharing is not allowed" +msgstr "" + +#: js/share.js:250 +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" +msgstr "" + +#: js/share.js:271 +msgid "Unshare" +msgstr "" + +#: js/share.js:283 +msgid "can edit" +msgstr "" + +#: js/share.js:285 +msgid "access control" +msgstr "" + +#: js/share.js:288 +msgid "create" +msgstr "" + +#: js/share.js:291 +msgid "update" +msgstr "" + +#: js/share.js:294 +msgid "delete" +msgstr "" + +#: js/share.js:297 +msgid "share" +msgstr "" + +#: js/share.js:322 js/share.js:481 +msgid "Password protected" +msgstr "" + +#: js/share.js:494 +msgid "Error unsetting expiration date" +msgstr "" + +#: js/share.js:506 +msgid "Error setting expiration date" +msgstr "" + +#: lostpassword/index.php:26 +msgid "ownCloud password reset" +msgstr "" + +#: lostpassword/templates/email.php:2 +msgid "Use the following link to reset your password: {link}" +msgstr "" + +#: lostpassword/templates/lostpassword.php:3 +msgid "You will receive a link to reset your password via Email." +msgstr "" + +#: lostpassword/templates/lostpassword.php:5 +msgid "Requested" +msgstr "" + +#: lostpassword/templates/lostpassword.php:8 +msgid "Login failed!" +msgstr "" + +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:26 +#: templates/login.php:9 +msgid "Username" +msgstr "" + +#: lostpassword/templates/lostpassword.php:14 +msgid "Request reset" +msgstr "" + +#: lostpassword/templates/resetpassword.php:4 +msgid "Your password was reset" +msgstr "" + +#: lostpassword/templates/resetpassword.php:5 +msgid "To login page" +msgstr "" + +#: lostpassword/templates/resetpassword.php:8 +msgid "New password" +msgstr "" + +#: lostpassword/templates/resetpassword.php:11 +msgid "Reset password" +msgstr "" + +#: strings.php:5 +msgid "Personal" +msgstr "" + +#: strings.php:6 +msgid "Users" +msgstr "" + +#: strings.php:7 +msgid "Apps" +msgstr "" + +#: strings.php:8 +msgid "Admin" +msgstr "" + +#: strings.php:9 +msgid "Help" +msgstr "" + +#: templates/403.php:12 +msgid "Access forbidden" +msgstr "" + +#: templates/404.php:12 +msgid "Cloud not found" +msgstr "" + +#: templates/edit_categories_dialog.php:4 +msgid "Edit categories" +msgstr "" + +#: templates/edit_categories_dialog.php:14 +msgid "Add" +msgstr "" + +#: templates/installation.php:24 +msgid "Create an admin account" +msgstr "" + +#: templates/installation.php:36 +msgid "Advanced" +msgstr "" + +#: templates/installation.php:38 +msgid "Data folder" +msgstr "" + +#: templates/installation.php:45 +msgid "Configure the database" +msgstr "" + +#: templates/installation.php:50 templates/installation.php:61 +#: templates/installation.php:71 templates/installation.php:81 +msgid "will be used" +msgstr "" + +#: templates/installation.php:93 +msgid "Database user" +msgstr "" + +#: templates/installation.php:97 +msgid "Database password" +msgstr "" + +#: templates/installation.php:101 +msgid "Database name" +msgstr "" + +#: templates/installation.php:109 +msgid "Database tablespace" +msgstr "" + +#: templates/installation.php:115 +msgid "Database host" +msgstr "" + +#: templates/installation.php:120 +msgid "Finish setup" +msgstr "" + +#: templates/layout.guest.php:38 +msgid "web services under your control" +msgstr "" + +#: templates/layout.user.php:34 +msgid "Log out" +msgstr "" + +#: templates/login.php:6 +msgid "Lost your password?" +msgstr "" + +#: templates/login.php:16 +msgid "remember" +msgstr "" + +#: templates/login.php:17 +msgid "Log in" +msgstr "" + +#: templates/logout.php:1 +msgid "You are logged out." +msgstr "" + +#: templates/part.pagenavi.php:3 +msgid "prev" +msgstr "" + +#: templates/part.pagenavi.php:20 +msgid "next" +msgstr "" diff --git a/l10n/ku_IQ/files.po b/l10n/ku_IQ/files.po new file mode 100644 index 00000000000..49231949ee8 --- /dev/null +++ b/l10n/ku_IQ/files.po @@ -0,0 +1,299 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2012-10-07 02:03+0200\n" +"PO-Revision-Date: 2011-08-13 02:19+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ku_IQ\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/upload.php:20 +msgid "There is no error, the file uploaded with success" +msgstr "" + +#: ajax/upload.php:21 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" +msgstr "" + +#: ajax/upload.php:22 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form" +msgstr "" + +#: ajax/upload.php:23 +msgid "The uploaded file was only partially uploaded" +msgstr "" + +#: ajax/upload.php:24 +msgid "No file was uploaded" +msgstr "" + +#: ajax/upload.php:25 +msgid "Missing a temporary folder" +msgstr "" + +#: ajax/upload.php:26 +msgid "Failed to write to disk" +msgstr "" + +#: appinfo/app.php:6 +msgid "Files" +msgstr "" + +#: js/fileactions.js:108 templates/index.php:62 +msgid "Unshare" +msgstr "" + +#: js/fileactions.js:110 templates/index.php:64 +msgid "Delete" +msgstr "" + +#: js/fileactions.js:182 +msgid "Rename" +msgstr "" + +#: js/filelist.js:189 js/filelist.js:191 +msgid "already exists" +msgstr "" + +#: js/filelist.js:189 js/filelist.js:191 +msgid "replace" +msgstr "" + +#: js/filelist.js:189 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:189 js/filelist.js:191 +msgid "cancel" +msgstr "" + +#: js/filelist.js:238 js/filelist.js:240 +msgid "replaced" +msgstr "" + +#: js/filelist.js:238 js/filelist.js:240 js/filelist.js:272 js/filelist.js:274 +msgid "undo" +msgstr "" + +#: js/filelist.js:240 +msgid "with" +msgstr "" + +#: js/filelist.js:272 +msgid "unshared" +msgstr "" + +#: js/filelist.js:274 +msgid "deleted" +msgstr "" + +#: js/files.js:179 +msgid "generating ZIP-file, it may take some time." +msgstr "" + +#: js/files.js:215 +msgid "Unable to upload your file as it is a directory or has 0 bytes" +msgstr "" + +#: js/files.js:215 +msgid "Upload Error" +msgstr "" + +#: js/files.js:243 js/files.js:348 js/files.js:378 +msgid "Pending" +msgstr "" + +#: js/files.js:263 +msgid "1 file uploading" +msgstr "" + +#: js/files.js:266 js/files.js:311 js/files.js:326 +msgid "files uploading" +msgstr "" + +#: js/files.js:329 js/files.js:362 +msgid "Upload cancelled." +msgstr "" + +#: js/files.js:432 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/files.js:502 +msgid "Invalid name, '/' is not allowed." +msgstr "" + +#: js/files.js:679 +msgid "files scanned" +msgstr "" + +#: js/files.js:687 +msgid "error while scanning" +msgstr "" + +#: js/files.js:760 templates/index.php:48 +msgid "Name" +msgstr "" + +#: js/files.js:761 templates/index.php:56 +msgid "Size" +msgstr "" + +#: js/files.js:762 templates/index.php:58 +msgid "Modified" +msgstr "" + +#: js/files.js:789 +msgid "folder" +msgstr "" + +#: js/files.js:791 +msgid "folders" +msgstr "" + +#: js/files.js:799 +msgid "file" +msgstr "" + +#: js/files.js:801 +msgid "files" +msgstr "" + +#: js/files.js:845 +msgid "seconds ago" +msgstr "" + +#: js/files.js:846 +msgid "minute ago" +msgstr "" + +#: js/files.js:847 +msgid "minutes ago" +msgstr "" + +#: js/files.js:850 +msgid "today" +msgstr "" + +#: js/files.js:851 +msgid "yesterday" +msgstr "" + +#: js/files.js:852 +msgid "days ago" +msgstr "" + +#: js/files.js:853 +msgid "last month" +msgstr "" + +#: js/files.js:855 +msgid "months ago" +msgstr "" + +#: js/files.js:856 +msgid "last year" +msgstr "" + +#: js/files.js:857 +msgid "years ago" +msgstr "" + +#: templates/admin.php:5 +msgid "File handling" +msgstr "" + +#: templates/admin.php:7 +msgid "Maximum upload size" +msgstr "" + +#: templates/admin.php:7 +msgid "max. possible: " +msgstr "" + +#: templates/admin.php:9 +msgid "Needed for multi-file and folder downloads." +msgstr "" + +#: templates/admin.php:9 +msgid "Enable ZIP-download" +msgstr "" + +#: templates/admin.php:11 +msgid "0 is unlimited" +msgstr "" + +#: templates/admin.php:12 +msgid "Maximum input size for ZIP files" +msgstr "" + +#: templates/admin.php:14 +msgid "Save" +msgstr "" + +#: templates/index.php:7 +msgid "New" +msgstr "" + +#: templates/index.php:9 +msgid "Text file" +msgstr "" + +#: templates/index.php:10 +msgid "Folder" +msgstr "" + +#: templates/index.php:11 +msgid "From url" +msgstr "" + +#: templates/index.php:20 +msgid "Upload" +msgstr "" + +#: templates/index.php:27 +msgid "Cancel upload" +msgstr "" + +#: templates/index.php:40 +msgid "Nothing in here. Upload something!" +msgstr "" + +#: templates/index.php:50 +msgid "Share" +msgstr "" + +#: templates/index.php:52 +msgid "Download" +msgstr "" + +#: templates/index.php:75 +msgid "Upload too large" +msgstr "" + +#: templates/index.php:77 +msgid "" +"The files you are trying to upload exceed the maximum size for file uploads " +"on this server." +msgstr "" + +#: templates/index.php:82 +msgid "Files are being scanned, please wait." +msgstr "" + +#: templates/index.php:85 +msgid "Current scanning" +msgstr "" diff --git a/l10n/ku_IQ/files_encryption.po b/l10n/ku_IQ/files_encryption.po new file mode 100644 index 00000000000..7229dce045f --- /dev/null +++ b/l10n/ku_IQ/files_encryption.po @@ -0,0 +1,35 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Hozha Koyi , 2012. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2012-10-07 02:03+0200\n" +"PO-Revision-Date: 2012-10-07 00:05+0000\n" +"Last-Translator: Hozha Koyi \n" +"Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ku_IQ\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: templates/settings.php:3 +msgid "Encryption" +msgstr "نهێنیکردن" + +#: templates/settings.php:4 +msgid "Exclude the following file types from encryption" +msgstr "" + +#: templates/settings.php:5 +msgid "None" +msgstr "" + +#: templates/settings.php:10 +msgid "Enable Encryption" +msgstr "" diff --git a/l10n/ku_IQ/files_external.po b/l10n/ku_IQ/files_external.po new file mode 100644 index 00000000000..4089687b033 --- /dev/null +++ b/l10n/ku_IQ/files_external.po @@ -0,0 +1,106 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2012-10-07 02:03+0200\n" +"PO-Revision-Date: 2012-08-12 22:34+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ku_IQ\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: js/dropbox.js:7 js/dropbox.js:25 js/google.js:7 js/google.js:23 +msgid "Access granted" +msgstr "" + +#: js/dropbox.js:28 js/dropbox.js:74 js/dropbox.js:79 js/dropbox.js:86 +msgid "Error configuring Dropbox storage" +msgstr "" + +#: js/dropbox.js:34 js/dropbox.js:45 js/google.js:31 js/google.js:40 +msgid "Grant access" +msgstr "" + +#: js/dropbox.js:73 js/google.js:72 +msgid "Fill out all required fields" +msgstr "" + +#: js/dropbox.js:85 +msgid "Please provide a valid Dropbox app key and secret." +msgstr "" + +#: js/google.js:26 js/google.js:73 js/google.js:78 +msgid "Error configuring Google Drive storage" +msgstr "" + +#: templates/settings.php:3 +msgid "External Storage" +msgstr "" + +#: templates/settings.php:7 templates/settings.php:19 +msgid "Mount point" +msgstr "" + +#: templates/settings.php:8 +msgid "Backend" +msgstr "" + +#: templates/settings.php:9 +msgid "Configuration" +msgstr "" + +#: templates/settings.php:10 +msgid "Options" +msgstr "" + +#: templates/settings.php:11 +msgid "Applicable" +msgstr "" + +#: templates/settings.php:23 +msgid "Add mount point" +msgstr "" + +#: templates/settings.php:54 templates/settings.php:62 +msgid "None set" +msgstr "" + +#: templates/settings.php:63 +msgid "All Users" +msgstr "" + +#: templates/settings.php:64 +msgid "Groups" +msgstr "" + +#: templates/settings.php:69 +msgid "Users" +msgstr "" + +#: templates/settings.php:77 templates/settings.php:107 +msgid "Delete" +msgstr "" + +#: templates/settings.php:87 +msgid "Enable User External Storage" +msgstr "" + +#: templates/settings.php:88 +msgid "Allow users to mount their own external storage" +msgstr "" + +#: templates/settings.php:99 +msgid "SSL root certificates" +msgstr "" + +#: templates/settings.php:113 +msgid "Import Root Certificate" +msgstr "" diff --git a/l10n/ku_IQ/files_sharing.po b/l10n/ku_IQ/files_sharing.po new file mode 100644 index 00000000000..daa1ed36ce9 --- /dev/null +++ b/l10n/ku_IQ/files_sharing.po @@ -0,0 +1,49 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Hozha Koyi , 2012. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2012-10-07 02:03+0200\n" +"PO-Revision-Date: 2012-10-07 00:05+0000\n" +"Last-Translator: Hozha Koyi \n" +"Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ku_IQ\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: templates/authenticate.php:4 +msgid "Password" +msgstr "تێپه‌ڕه‌وشه" + +#: templates/authenticate.php:6 +msgid "Submit" +msgstr "ناردن" + +#: templates/public.php:9 +#, php-format +msgid "%s shared the folder %s with you" +msgstr "%s دابه‌شی کردووه‌ بوخچه‌ی %s له‌گه‌ڵ تۆ" + +#: templates/public.php:11 +#, php-format +msgid "%s shared the file %s with you" +msgstr "%s دابه‌شی کردووه‌ په‌ڕگه‌یی %s له‌گه‌ڵ تۆ" + +#: templates/public.php:14 templates/public.php:30 +msgid "Download" +msgstr "داگرتن" + +#: templates/public.php:29 +msgid "No preview available for" +msgstr "هیچ پێشبینیه‌ك ئاماده‌ نیه بۆ" + +#: templates/public.php:35 +msgid "web services under your control" +msgstr "ڕاژه‌ی وێب له‌ژێر چاودێریت دایه" diff --git a/l10n/ku_IQ/files_versions.po b/l10n/ku_IQ/files_versions.po new file mode 100644 index 00000000000..89832609b9c --- /dev/null +++ b/l10n/ku_IQ/files_versions.po @@ -0,0 +1,43 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Hozha Koyi , 2012. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2012-10-07 02:03+0200\n" +"PO-Revision-Date: 2012-10-07 00:02+0000\n" +"Last-Translator: Hozha Koyi \n" +"Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ku_IQ\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: js/settings-personal.js:31 templates/settings-personal.php:10 +msgid "Expire all versions" +msgstr "وه‌شانه‌کان گشتیان به‌سه‌رده‌چن" + +#: js/versions.js:16 +msgid "History" +msgstr "مێژوو" + +#: templates/settings-personal.php:4 +msgid "Versions" +msgstr "وه‌شان" + +#: templates/settings-personal.php:7 +msgid "This will delete all existing backup versions of your files" +msgstr "ئه‌مه‌ سه‌رجه‌م پاڵپشتی وه‌شانه‌ هه‌بووه‌کانی په‌ڕگه‌کانت ده‌سڕینته‌وه" + +#: templates/settings.php:3 +msgid "Files Versioning" +msgstr "وه‌شانی په‌ڕگه" + +#: templates/settings.php:4 +msgid "Enable" +msgstr "چالاککردن" diff --git a/l10n/ku_IQ/lib.po b/l10n/ku_IQ/lib.po new file mode 100644 index 00000000000..d1f55c8d5ea --- /dev/null +++ b/l10n/ku_IQ/lib.po @@ -0,0 +1,125 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2012-10-07 02:04+0200\n" +"PO-Revision-Date: 2012-07-27 22:23+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ku_IQ\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: app.php:285 +msgid "Help" +msgstr "" + +#: app.php:292 +msgid "Personal" +msgstr "" + +#: app.php:297 +msgid "Settings" +msgstr "" + +#: app.php:302 +msgid "Users" +msgstr "" + +#: app.php:309 +msgid "Apps" +msgstr "" + +#: app.php:311 +msgid "Admin" +msgstr "" + +#: files.php:327 +msgid "ZIP download is turned off." +msgstr "" + +#: files.php:328 +msgid "Files need to be downloaded one by one." +msgstr "" + +#: files.php:328 files.php:353 +msgid "Back to Files" +msgstr "" + +#: files.php:352 +msgid "Selected files too large to generate zip file." +msgstr "" + +#: json.php:28 +msgid "Application is not enabled" +msgstr "" + +#: json.php:39 json.php:63 json.php:75 +msgid "Authentication error" +msgstr "" + +#: json.php:51 +msgid "Token expired. Please reload page." +msgstr "" + +#: template.php:87 +msgid "seconds ago" +msgstr "" + +#: template.php:88 +msgid "1 minute ago" +msgstr "" + +#: template.php:89 +#, php-format +msgid "%d minutes ago" +msgstr "" + +#: template.php:92 +msgid "today" +msgstr "" + +#: template.php:93 +msgid "yesterday" +msgstr "" + +#: template.php:94 +#, php-format +msgid "%d days ago" +msgstr "" + +#: template.php:95 +msgid "last month" +msgstr "" + +#: template.php:96 +msgid "months ago" +msgstr "" + +#: template.php:97 +msgid "last year" +msgstr "" + +#: template.php:98 +msgid "years ago" +msgstr "" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get more information" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/ku_IQ/settings.po b/l10n/ku_IQ/settings.po new file mode 100644 index 00000000000..c996983914c --- /dev/null +++ b/l10n/ku_IQ/settings.po @@ -0,0 +1,317 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2012-10-07 02:04+0200\n" +"PO-Revision-Date: 2011-07-25 16:05+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ku_IQ\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/apps/ocs.php:23 +msgid "Unable to load list from App Store" +msgstr "" + +#: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 +#: ajax/togglegroups.php:15 +msgid "Authentication error" +msgstr "" + +#: ajax/creategroup.php:19 +msgid "Group already exists" +msgstr "" + +#: ajax/creategroup.php:28 +msgid "Unable to add group" +msgstr "" + +#: ajax/enableapp.php:14 +msgid "Could not enable app. " +msgstr "" + +#: ajax/lostpassword.php:14 +msgid "Email saved" +msgstr "" + +#: ajax/lostpassword.php:16 +msgid "Invalid email" +msgstr "" + +#: ajax/openid.php:16 +msgid "OpenID Changed" +msgstr "" + +#: ajax/openid.php:18 ajax/setlanguage.php:20 ajax/setlanguage.php:23 +msgid "Invalid request" +msgstr "" + +#: ajax/removegroup.php:16 +msgid "Unable to delete group" +msgstr "" + +#: ajax/removeuser.php:22 +msgid "Unable to delete user" +msgstr "" + +#: ajax/setlanguage.php:18 +msgid "Language changed" +msgstr "" + +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + +#: js/apps.js:27 js/apps.js:61 +msgid "Disable" +msgstr "" + +#: js/apps.js:27 js/apps.js:50 +msgid "Enable" +msgstr "" + +#: js/personal.js:69 +msgid "Saving..." +msgstr "" + +#: personal.php:47 personal.php:48 +msgid "__language_name__" +msgstr "" + +#: templates/admin.php:14 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:17 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file that ownCloud provides is not working. We " +"strongly suggest that you configure your webserver in a way that the data " +"directory is no longer accessible or you move the data directory outside the" +" webserver document root." +msgstr "" + +#: templates/admin.php:31 +msgid "Cron" +msgstr "" + +#: templates/admin.php:37 +msgid "Execute one task with each page loaded" +msgstr "" + +#: templates/admin.php:43 +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." +msgstr "" + +#: templates/admin.php:49 +msgid "" +"Use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." +msgstr "" + +#: templates/admin.php:56 +msgid "Sharing" +msgstr "" + +#: templates/admin.php:61 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:62 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:67 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:68 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:73 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:74 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:79 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:81 +msgid "Allow users to only share with users in their groups" +msgstr "" + +#: templates/admin.php:88 +msgid "Log" +msgstr "" + +#: templates/admin.php:116 +msgid "More" +msgstr "" + +#: templates/admin.php:124 +msgid "" +"Developed by the ownCloud community, the source code is " +"licensed under the AGPL." +msgstr "" + +#: templates/apps.php:10 +msgid "Add your App" +msgstr "" + +#: templates/apps.php:26 +msgid "Select an App" +msgstr "" + +#: templates/apps.php:29 +msgid "See application page at apps.owncloud.com" +msgstr "" + +#: templates/apps.php:30 +msgid "-licensed by " +msgstr "" + +#: templates/help.php:9 +msgid "Documentation" +msgstr "" + +#: templates/help.php:10 +msgid "Managing Big Files" +msgstr "" + +#: templates/help.php:11 +msgid "Ask a question" +msgstr "" + +#: templates/help.php:23 +msgid "Problems connecting to help database." +msgstr "" + +#: templates/help.php:24 +msgid "Go there manually." +msgstr "" + +#: templates/help.php:32 +msgid "Answer" +msgstr "" + +#: templates/personal.php:8 +#, php-format +msgid "You have used %s of the available %s" +msgstr "" + +#: templates/personal.php:12 +msgid "Desktop and Mobile Syncing Clients" +msgstr "" + +#: templates/personal.php:13 +msgid "Download" +msgstr "" + +#: templates/personal.php:19 +msgid "Your password was changed" +msgstr "" + +#: templates/personal.php:20 +msgid "Unable to change your password" +msgstr "" + +#: templates/personal.php:21 +msgid "Current password" +msgstr "" + +#: templates/personal.php:22 +msgid "New password" +msgstr "" + +#: templates/personal.php:23 +msgid "show" +msgstr "" + +#: templates/personal.php:24 +msgid "Change password" +msgstr "" + +#: templates/personal.php:30 +msgid "Email" +msgstr "" + +#: templates/personal.php:31 +msgid "Your email address" +msgstr "" + +#: templates/personal.php:32 +msgid "Fill in an email address to enable password recovery" +msgstr "" + +#: templates/personal.php:38 templates/personal.php:39 +msgid "Language" +msgstr "" + +#: templates/personal.php:44 +msgid "Help translate" +msgstr "" + +#: templates/personal.php:51 +msgid "use this address to connect to your ownCloud in your file manager" +msgstr "" + +#: templates/users.php:21 templates/users.php:76 +msgid "Name" +msgstr "" + +#: templates/users.php:23 templates/users.php:77 +msgid "Password" +msgstr "" + +#: templates/users.php:26 templates/users.php:78 templates/users.php:98 +msgid "Groups" +msgstr "" + +#: templates/users.php:32 +msgid "Create" +msgstr "" + +#: templates/users.php:35 +msgid "Default Quota" +msgstr "" + +#: templates/users.php:55 templates/users.php:138 +msgid "Other" +msgstr "" + +#: templates/users.php:80 templates/users.php:112 +msgid "Group Admin" +msgstr "" + +#: templates/users.php:82 +msgid "Quota" +msgstr "" + +#: templates/users.php:146 +msgid "Delete" +msgstr "" diff --git a/l10n/ku_IQ/user_ldap.po b/l10n/ku_IQ/user_ldap.po new file mode 100644 index 00000000000..bfa7aee57b7 --- /dev/null +++ b/l10n/ku_IQ/user_ldap.po @@ -0,0 +1,170 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2012-10-07 02:03+0200\n" +"PO-Revision-Date: 2012-08-12 22:45+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ku_IQ\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: templates/settings.php:8 +msgid "Host" +msgstr "" + +#: templates/settings.php:8 +msgid "" +"You can omit the protocol, except you require SSL. Then start with ldaps://" +msgstr "" + +#: templates/settings.php:9 +msgid "Base DN" +msgstr "" + +#: templates/settings.php:9 +msgid "You can specify Base DN for users and groups in the Advanced tab" +msgstr "" + +#: templates/settings.php:10 +msgid "User DN" +msgstr "" + +#: templates/settings.php:10 +msgid "" +"The DN of the client user with which the bind shall be done, e.g. " +"uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " +"empty." +msgstr "" + +#: templates/settings.php:11 +msgid "Password" +msgstr "" + +#: templates/settings.php:11 +msgid "For anonymous access, leave DN and Password empty." +msgstr "" + +#: templates/settings.php:12 +msgid "User Login Filter" +msgstr "" + +#: templates/settings.php:12 +#, php-format +msgid "" +"Defines the filter to apply, when login is attempted. %%uid replaces the " +"username in the login action." +msgstr "" + +#: templates/settings.php:12 +#, php-format +msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" +msgstr "" + +#: templates/settings.php:13 +msgid "User List Filter" +msgstr "" + +#: templates/settings.php:13 +msgid "Defines the filter to apply, when retrieving users." +msgstr "" + +#: templates/settings.php:13 +msgid "without any placeholder, e.g. \"objectClass=person\"." +msgstr "" + +#: templates/settings.php:14 +msgid "Group Filter" +msgstr "" + +#: templates/settings.php:14 +msgid "Defines the filter to apply, when retrieving groups." +msgstr "" + +#: templates/settings.php:14 +msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." +msgstr "" + +#: templates/settings.php:17 +msgid "Port" +msgstr "" + +#: templates/settings.php:18 +msgid "Base User Tree" +msgstr "" + +#: templates/settings.php:19 +msgid "Base Group Tree" +msgstr "" + +#: templates/settings.php:20 +msgid "Group-Member association" +msgstr "" + +#: templates/settings.php:21 +msgid "Use TLS" +msgstr "" + +#: templates/settings.php:21 +msgid "Do not use it for SSL connections, it will fail." +msgstr "" + +#: templates/settings.php:22 +msgid "Case insensitve LDAP server (Windows)" +msgstr "" + +#: templates/settings.php:23 +msgid "Turn off SSL certificate validation." +msgstr "" + +#: templates/settings.php:23 +msgid "" +"If connection only works with this option, import the LDAP server's SSL " +"certificate in your ownCloud server." +msgstr "" + +#: templates/settings.php:23 +msgid "Not recommended, use for testing only." +msgstr "" + +#: templates/settings.php:24 +msgid "User Display Name Field" +msgstr "" + +#: templates/settings.php:24 +msgid "The LDAP attribute to use to generate the user`s ownCloud name." +msgstr "" + +#: templates/settings.php:25 +msgid "Group Display Name Field" +msgstr "" + +#: templates/settings.php:25 +msgid "The LDAP attribute to use to generate the groups`s ownCloud name." +msgstr "" + +#: templates/settings.php:27 +msgid "in bytes" +msgstr "" + +#: templates/settings.php:29 +msgid "in seconds. A change empties the cache." +msgstr "" + +#: templates/settings.php:30 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:32 +msgid "Help" +msgstr "" diff --git a/l10n/pt_BR/core.po b/l10n/pt_BR/core.po index 42ce9d1672c..1089f64ba69 100644 --- a/l10n/pt_BR/core.po +++ b/l10n/pt_BR/core.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-28 23:34+0200\n" -"PO-Revision-Date: 2012-09-28 21:34+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-10-07 02:03+0200\n" +"PO-Revision-Date: 2012-10-06 13:45+0000\n" +"Last-Translator: sedir \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" @@ -111,8 +111,8 @@ msgstr "Ok" msgid "No categories selected for deletion." msgstr "Nenhuma categoria selecionada para deletar." -#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 -#: js/share.js:501 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:494 +#: js/share.js:506 msgid "Error" msgstr "Erro" @@ -130,15 +130,15 @@ msgstr "Erro ao mudar permissões" #: js/share.js:130 msgid "Shared with you and the group" -msgstr "" +msgstr "Compartilhado com você e o grupo" #: js/share.js:130 msgid "by" -msgstr "" +msgstr "por" #: js/share.js:132 msgid "Shared with you by" -msgstr "" +msgstr "Compartilhado com você por" #: js/share.js:137 msgid "Share with" @@ -166,7 +166,7 @@ msgstr "Data de expiração" #: js/share.js:185 msgid "Share via email:" -msgstr "" +msgstr "Compartilhar via e-mail:" #: js/share.js:187 msgid "No people found" @@ -178,49 +178,49 @@ msgstr "Não é permitido re-compartilhar" #: js/share.js:250 msgid "Shared in" -msgstr "" +msgstr "Compartilhado em" #: js/share.js:250 msgid "with" -msgstr "" +msgstr "com" #: js/share.js:271 msgid "Unshare" msgstr "Descompartilhar" -#: js/share.js:279 +#: js/share.js:283 msgid "can edit" msgstr "pode editar" -#: js/share.js:281 +#: js/share.js:285 msgid "access control" msgstr "controle de acesso" -#: js/share.js:284 +#: js/share.js:288 msgid "create" msgstr "criar" -#: js/share.js:287 +#: js/share.js:291 msgid "update" msgstr "atualizar" -#: js/share.js:290 +#: js/share.js:294 msgid "delete" msgstr "remover" -#: js/share.js:293 +#: js/share.js:297 msgid "share" msgstr "compartilhar" -#: js/share.js:317 js/share.js:476 +#: js/share.js:322 js/share.js:481 msgid "Password protected" msgstr "Protegido com senha" -#: js/share.js:489 +#: js/share.js:494 msgid "Error unsetting expiration date" msgstr "Erro ao remover data de expiração" -#: js/share.js:501 +#: js/share.js:506 msgid "Error setting expiration date" msgstr "Erro ao definir data de expiração" @@ -249,7 +249,7 @@ msgstr "Falha ao fazer o login!" msgid "Username" msgstr "Nome de Usuário" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:14 msgid "Request reset" msgstr "Pedido de reposição" @@ -350,7 +350,7 @@ msgstr "Banco de dados do host" msgid "Finish setup" msgstr "Concluir configuração" -#: templates/layout.guest.php:36 +#: templates/layout.guest.php:38 msgid "web services under your control" msgstr "web services sob seu controle" @@ -362,11 +362,11 @@ msgstr "Sair" msgid "Lost your password?" msgstr "Esqueçeu sua senha?" -#: templates/login.php:17 +#: templates/login.php:16 msgid "remember" msgstr "lembrete" -#: templates/login.php:18 +#: templates/login.php:17 msgid "Log in" msgstr "Log in" diff --git a/l10n/pt_BR/files_external.po b/l10n/pt_BR/files_external.po index aa72e18605a..bea354c7ac0 100644 --- a/l10n/pt_BR/files_external.po +++ b/l10n/pt_BR/files_external.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-02 23:16+0200\n" -"PO-Revision-Date: 2012-10-02 21:17+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-10-07 02:03+0200\n" +"PO-Revision-Date: 2012-10-06 13:48+0000\n" +"Last-Translator: sedir \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,27 +20,27 @@ msgstr "" #: js/dropbox.js:7 js/dropbox.js:25 js/google.js:7 js/google.js:23 msgid "Access granted" -msgstr "" +msgstr "Acesso concedido" #: js/dropbox.js:28 js/dropbox.js:74 js/dropbox.js:79 js/dropbox.js:86 msgid "Error configuring Dropbox storage" -msgstr "" +msgstr "Erro ao configurar armazenamento do Dropbox" #: js/dropbox.js:34 js/dropbox.js:45 js/google.js:31 js/google.js:40 msgid "Grant access" -msgstr "" +msgstr "Permitir acesso" #: js/dropbox.js:73 js/google.js:72 msgid "Fill out all required fields" -msgstr "" +msgstr "Preencha todos os campos obrigatórios" #: js/dropbox.js:85 msgid "Please provide a valid Dropbox app key and secret." -msgstr "" +msgstr "Por favor forneça um app key e secret válido do Dropbox" #: js/google.js:26 js/google.js:73 js/google.js:78 msgid "Error configuring Google Drive storage" -msgstr "" +msgstr "Erro ao configurar armazenamento do Google Drive" #: templates/settings.php:3 msgid "External Storage" diff --git a/l10n/pt_BR/settings.po b/l10n/pt_BR/settings.po index b50c866aba0..a8b2673d0a9 100644 --- a/l10n/pt_BR/settings.po +++ b/l10n/pt_BR/settings.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-25 02:03+0200\n" -"PO-Revision-Date: 2012-09-24 01:31+0000\n" +"POT-Creation-Date: 2012-10-07 02:04+0200\n" +"PO-Revision-Date: 2012-10-06 14:30+0000\n" "Last-Translator: sedir \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -95,7 +95,7 @@ msgstr "Habilitado" msgid "Saving..." msgstr "Gravando..." -#: personal.php:46 personal.php:47 +#: personal.php:47 personal.php:48 msgid "__language_name__" msgstr "Português" @@ -229,7 +229,7 @@ msgstr "Resposta" #: templates/personal.php:8 #, php-format msgid "You have used %s of the available %s" -msgstr "Você usou %s do %s disponível" +msgstr "Você usou %s do espaço disponível de %s " #: templates/personal.php:12 msgid "Desktop and Mobile Syncing Clients" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index af6ae820220..0c20630742c 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-06 02:03+0200\n" +"POT-Creation-Date: 2012-10-07 02:03+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 98d458bd6d3..d5d14fb0469 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-06 02:02+0200\n" +"POT-Creation-Date: 2012-10-07 02:03+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 3235fac5a70..1bc3be2a7ef 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-06 02:02+0200\n" +"POT-Creation-Date: 2012-10-07 02:03+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index a37b236b30e..3ec959bd921 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-06 02:03+0200\n" +"POT-Creation-Date: 2012-10-07 02:03+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index b3507be8034..9c8bcf85c31 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-06 02:03+0200\n" +"POT-Creation-Date: 2012-10-07 02:03+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 3e646f180d8..80da91087b9 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-06 02:03+0200\n" +"POT-Creation-Date: 2012-10-07 02:03+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index d9ea05bc65d..5c6dc2beeff 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-06 02:03+0200\n" +"POT-Creation-Date: 2012-10-07 02:04+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index cff9204e1f8..04c9e0792a3 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-06 02:03+0200\n" +"POT-Creation-Date: 2012-10-07 02:04+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 853693015e1..09e05951a8a 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-06 02:03+0200\n" +"POT-Creation-Date: 2012-10-07 02:03+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/settings/l10n/pt_BR.php b/settings/l10n/pt_BR.php index ddfba1a670e..7c1dff06ef0 100644 --- a/settings/l10n/pt_BR.php +++ b/settings/l10n/pt_BR.php @@ -45,7 +45,7 @@ "Problems connecting to help database." => "Problemas ao conectar na base de dados.", "Go there manually." => "Ir manualmente.", "Answer" => "Resposta", -"You have used %s of the available %s" => "Você usou %s do %s disponível", +"You have used %s of the available %s" => "Você usou %s do espaço disponível de %s ", "Desktop and Mobile Syncing Clients" => "Sincronizando Desktop e Mobile", "Download" => "Download", "Your password was changed" => "Sua senha foi alterada", -- GitLab From 4b446f3eddd31829b844b09b8169a85350b26d2b Mon Sep 17 00:00:00 2001 From: Michael Gapczynski Date: Sun, 7 Oct 2012 17:17:37 -0400 Subject: [PATCH 215/489] Revert part of 5beca59b, fixes file upload bug oc-1926 --- apps/files/js/files.js | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/apps/files/js/files.js b/apps/files/js/files.js index e4037454520..c7f4c4ce080 100644 --- a/apps/files/js/files.js +++ b/apps/files/js/files.js @@ -200,8 +200,6 @@ $(document).ready(function() { e.preventDefault(); // prevent browser from doing anything, if file isn't dropped in dropZone }); - if ( document.getElementById("file_upload_start") ) { - $(function() { $('.file_upload_start').fileupload({ dropZone: $('#content'), // restrict dropZone to content div @@ -415,8 +413,7 @@ $(document).ready(function() { } }) }); - } - + $.assocArraySize = function(obj) { // http://stackoverflow.com/a/6700/11236 var size = 0, key; -- GitLab From 995b8bf12ac5f028ba643d090c41c4393ae040a8 Mon Sep 17 00:00:00 2001 From: Michael Gapczynski Date: Sun, 7 Oct 2012 17:34:21 -0400 Subject: [PATCH 216/489] Remove old Shared folders from the file cache, fixes bug oc-1911 --- apps/files_sharing/appinfo/update.php | 8 ++++++++ apps/files_sharing/appinfo/version | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/apps/files_sharing/appinfo/update.php b/apps/files_sharing/appinfo/update.php index 2beeb6316bd..23f2afea7e1 100644 --- a/apps/files_sharing/appinfo/update.php +++ b/apps/files_sharing/appinfo/update.php @@ -62,3 +62,11 @@ if (version_compare($installedVersion, '0.3', '<')) { // $query = OCP\DB::prepare('DROP TABLE `*PREFIX*sharing`'); // $query->execute(); } +if (version_compare($installedVersion, '0.3.3', '<')) { + OC_User::useBackend(new OC_User_Database()); + OC_App::loadApps(array('authentication')); + $users = OC_User::getUsers(); + foreach ($users as $user) { + OC_FileCache::delete('Shared', '/'.$user.'/files/'); + } +} \ No newline at end of file diff --git a/apps/files_sharing/appinfo/version b/apps/files_sharing/appinfo/version index 9fc80f937fa..87a0871112f 100644 --- a/apps/files_sharing/appinfo/version +++ b/apps/files_sharing/appinfo/version @@ -1 +1 @@ -0.3.2 \ No newline at end of file +0.3.3 \ No newline at end of file -- GitLab From b934668b9e260866a465d36fef565aedf8f40339 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Mon, 8 Oct 2012 02:07:01 +0200 Subject: [PATCH 217/489] [tx-robot] updated from transifex --- apps/files/l10n/hr.php | 20 +++++ apps/files_encryption/l10n/ku_IQ.php | 5 +- core/l10n/hr.php | 28 +++++++ l10n/hr/core.po | 93 ++++++++++----------- l10n/hr/files.po | 118 +++++++++++++-------------- l10n/ku_IQ/files_encryption.po | 10 +-- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 56 ++++++------- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- 15 files changed, 199 insertions(+), 147 deletions(-) diff --git a/apps/files/l10n/hr.php b/apps/files/l10n/hr.php index f3b26999e8f..412c97630d4 100644 --- a/apps/files/l10n/hr.php +++ b/apps/files/l10n/hr.php @@ -7,20 +7,29 @@ "Missing a temporary folder" => "Nedostaje privremena mapa", "Failed to write to disk" => "Neuspjelo pisanje na disk", "Files" => "Datoteke", +"Unshare" => "Prekini djeljenje", "Delete" => "Briši", +"Rename" => "Promjeni ime", "already exists" => "već postoji", "replace" => "zamjeni", +"suggest name" => "predloži ime", "cancel" => "odustani", "replaced" => "zamjenjeno", "undo" => "vrati", "with" => "sa", +"unshared" => "maknuto djeljenje", "deleted" => "izbrisano", "generating ZIP-file, it may take some time." => "generiranje ZIP datoteke, ovo može potrajati.", "Unable to upload your file as it is a directory or has 0 bytes" => "Nemoguće poslati datoteku jer je prazna ili je direktorij", "Upload Error" => "Pogreška pri slanju", "Pending" => "U tijeku", +"1 file uploading" => "1 datoteka se učitava", +"files uploading" => "datoteke se učitavaju", "Upload cancelled." => "Slanje poništeno.", +"File upload is in progress. Leaving the page now will cancel the upload." => "Učitavanje datoteke. Napuštanjem stranice će prekinuti učitavanje.", "Invalid name, '/' is not allowed." => "Neispravan naziv, znak '/' nije dozvoljen.", +"files scanned" => "datoteka skenirana", +"error while scanning" => "grečka prilikom skeniranja", "Name" => "Naziv", "Size" => "Veličina", "Modified" => "Zadnja promjena", @@ -28,6 +37,16 @@ "folders" => "mape", "file" => "datoteka", "files" => "datoteke", +"seconds ago" => "sekundi prije", +"minute ago" => "minutu", +"minutes ago" => "minuta", +"today" => "danas", +"yesterday" => "jučer", +"days ago" => "dana", +"last month" => "prošli mjesec", +"months ago" => "mjeseci", +"last year" => "prošlu godinu", +"years ago" => "godina", "File handling" => "datoteka za rukovanje", "Maximum upload size" => "Maksimalna veličina prijenosa", "max. possible: " => "maksimalna moguća: ", @@ -35,6 +54,7 @@ "Enable ZIP-download" => "Omogući ZIP-preuzimanje", "0 is unlimited" => "0 je \"bez limita\"", "Maximum input size for ZIP files" => "Maksimalna veličina za ZIP datoteke", +"Save" => "Snimi", "New" => "novo", "Text file" => "tekstualna datoteka", "Folder" => "mapa", diff --git a/apps/files_encryption/l10n/ku_IQ.php b/apps/files_encryption/l10n/ku_IQ.php index ff6c34b71d3..bd8977ac515 100644 --- a/apps/files_encryption/l10n/ku_IQ.php +++ b/apps/files_encryption/l10n/ku_IQ.php @@ -1,3 +1,6 @@ "نهێنیکردن" +"Encryption" => "نهێنیکردن", +"Exclude the following file types from encryption" => "به‌ربه‌ست کردنی ئه‌م جۆره‌ په‌ڕگانه له‌ نهێنیکردن", +"None" => "هیچ", +"Enable Encryption" => "چالاکردنی نهێنیکردن" ); diff --git a/core/l10n/hr.php b/core/l10n/hr.php index c8f683d8270..54b42547428 100644 --- a/core/l10n/hr.php +++ b/core/l10n/hr.php @@ -15,13 +15,40 @@ "October" => "Listopad", "November" => "Studeni", "December" => "Prosinac", +"Choose" => "Izaberi", "Cancel" => "Odustani", "No" => "Ne", "Yes" => "Da", "Ok" => "U redu", "No categories selected for deletion." => "Nema odabranih kategorija za brisanje.", "Error" => "Pogreška", +"Error while sharing" => "Greška prilikom djeljenja", +"Error while unsharing" => "Greška prilikom isključivanja djeljenja", +"Error while changing permissions" => "Greška prilikom promjena prava", +"Shared with you and the group" => "Dijeli sa tobom i grupom", +"by" => "preko", +"Shared with you by" => "Dijeljeno sa tobom preko ", +"Share with" => "Djeli sa", +"Share with link" => "Djeli preko link-a", +"Password protect" => "Zaštiti lozinkom", "Password" => "Lozinka", +"Set expiration date" => "Postavi datum isteka", +"Expiration date" => "Datum isteka", +"Share via email:" => "Dijeli preko email-a:", +"No people found" => "Osobe nisu pronađene", +"Resharing is not allowed" => "Ponovo dijeljenje nije dopušteno", +"Shared in" => "Dijeljeno u", +"with" => "sa", +"Unshare" => "Makni djeljenje", +"can edit" => "može mjenjat", +"access control" => "kontrola pristupa", +"create" => "kreiraj", +"update" => "ažuriraj", +"delete" => "izbriši", +"share" => "djeli", +"Password protected" => "Zaštita lozinkom", +"Error unsetting expiration date" => "Greška prilikom brisanja datuma isteka", +"Error setting expiration date" => "Greška prilikom postavljanja datuma isteka", "ownCloud password reset" => "ownCloud resetiranje lozinke", "Use the following link to reset your password: {link}" => "Koristite ovaj link da biste poništili lozinku: {link}", "You will receive a link to reset your password via Email." => "Primit ćete link kako biste poništili zaporku putem e-maila.", @@ -50,6 +77,7 @@ "Database user" => "Korisnik baze podataka", "Database password" => "Lozinka baze podataka", "Database name" => "Ime baze podataka", +"Database tablespace" => "Database tablespace", "Database host" => "Poslužitelj baze podataka", "Finish setup" => "Završi postavljanje", "web services under your control" => "web usluge pod vašom kontrolom", diff --git a/l10n/hr/core.po b/l10n/hr/core.po index 79c1221b889..cc72990a914 100644 --- a/l10n/hr/core.po +++ b/l10n/hr/core.po @@ -5,14 +5,15 @@ # Translators: # Davor Kustec , 2011, 2012. # Domagoj Delimar , 2012. +# , 2012. # Thomas Silađi , 2011, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-28 23:34+0200\n" -"PO-Revision-Date: 2012-09-28 21:34+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-10-08 02:03+0200\n" +"PO-Revision-Date: 2012-10-07 15:56+0000\n" +"Last-Translator: fposavec \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -86,7 +87,7 @@ msgstr "Prosinac" #: js/oc-dialogs.js:123 msgid "Choose" -msgstr "" +msgstr "Izaberi" #: js/oc-dialogs.js:143 js/oc-dialogs.js:163 msgid "Cancel" @@ -108,46 +109,46 @@ msgstr "U redu" msgid "No categories selected for deletion." msgstr "Nema odabranih kategorija za brisanje." -#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 -#: js/share.js:501 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:494 +#: js/share.js:506 msgid "Error" msgstr "Pogreška" #: js/share.js:103 msgid "Error while sharing" -msgstr "" +msgstr "Greška prilikom djeljenja" #: js/share.js:114 msgid "Error while unsharing" -msgstr "" +msgstr "Greška prilikom isključivanja djeljenja" #: js/share.js:121 msgid "Error while changing permissions" -msgstr "" +msgstr "Greška prilikom promjena prava" #: js/share.js:130 msgid "Shared with you and the group" -msgstr "" +msgstr "Dijeli sa tobom i grupom" #: js/share.js:130 msgid "by" -msgstr "" +msgstr "preko" #: js/share.js:132 msgid "Shared with you by" -msgstr "" +msgstr "Dijeljeno sa tobom preko " #: js/share.js:137 msgid "Share with" -msgstr "" +msgstr "Djeli sa" #: js/share.js:142 msgid "Share with link" -msgstr "" +msgstr "Djeli preko link-a" #: js/share.js:143 msgid "Password protect" -msgstr "" +msgstr "Zaštiti lozinkom" #: js/share.js:147 templates/installation.php:30 templates/login.php:13 msgid "Password" @@ -155,71 +156,71 @@ msgstr "Lozinka" #: js/share.js:152 msgid "Set expiration date" -msgstr "" +msgstr "Postavi datum isteka" #: js/share.js:153 msgid "Expiration date" -msgstr "" +msgstr "Datum isteka" #: js/share.js:185 msgid "Share via email:" -msgstr "" +msgstr "Dijeli preko email-a:" #: js/share.js:187 msgid "No people found" -msgstr "" +msgstr "Osobe nisu pronađene" #: js/share.js:214 msgid "Resharing is not allowed" -msgstr "" +msgstr "Ponovo dijeljenje nije dopušteno" #: js/share.js:250 msgid "Shared in" -msgstr "" +msgstr "Dijeljeno u" #: js/share.js:250 msgid "with" -msgstr "" +msgstr "sa" #: js/share.js:271 msgid "Unshare" -msgstr "" +msgstr "Makni djeljenje" -#: js/share.js:279 +#: js/share.js:283 msgid "can edit" -msgstr "" +msgstr "može mjenjat" -#: js/share.js:281 +#: js/share.js:285 msgid "access control" -msgstr "" +msgstr "kontrola pristupa" -#: js/share.js:284 +#: js/share.js:288 msgid "create" -msgstr "" +msgstr "kreiraj" -#: js/share.js:287 +#: js/share.js:291 msgid "update" -msgstr "" +msgstr "ažuriraj" -#: js/share.js:290 +#: js/share.js:294 msgid "delete" -msgstr "" +msgstr "izbriši" -#: js/share.js:293 +#: js/share.js:297 msgid "share" -msgstr "" +msgstr "djeli" -#: js/share.js:317 js/share.js:476 +#: js/share.js:322 js/share.js:481 msgid "Password protected" -msgstr "" +msgstr "Zaštita lozinkom" -#: js/share.js:489 +#: js/share.js:494 msgid "Error unsetting expiration date" -msgstr "" +msgstr "Greška prilikom brisanja datuma isteka" -#: js/share.js:501 +#: js/share.js:506 msgid "Error setting expiration date" -msgstr "" +msgstr "Greška prilikom postavljanja datuma isteka" #: lostpassword/index.php:26 msgid "ownCloud password reset" @@ -246,7 +247,7 @@ msgstr "Prijava nije uspjela!" msgid "Username" msgstr "Korisničko ime" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:14 msgid "Request reset" msgstr "Zahtjev za resetiranjem" @@ -337,7 +338,7 @@ msgstr "Ime baze podataka" #: templates/installation.php:109 msgid "Database tablespace" -msgstr "" +msgstr "Database tablespace" #: templates/installation.php:115 msgid "Database host" @@ -347,7 +348,7 @@ msgstr "Poslužitelj baze podataka" msgid "Finish setup" msgstr "Završi postavljanje" -#: templates/layout.guest.php:36 +#: templates/layout.guest.php:38 msgid "web services under your control" msgstr "web usluge pod vašom kontrolom" @@ -359,11 +360,11 @@ msgstr "Odjava" msgid "Lost your password?" msgstr "Izgubili ste lozinku?" -#: templates/login.php:17 +#: templates/login.php:16 msgid "remember" msgstr "zapamtiti" -#: templates/login.php:18 +#: templates/login.php:17 msgid "Log in" msgstr "Prijava" diff --git a/l10n/hr/files.po b/l10n/hr/files.po index 9b972616623..5cdd0eb8894 100644 --- a/l10n/hr/files.po +++ b/l10n/hr/files.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-26 13:19+0200\n" -"PO-Revision-Date: 2012-09-26 11:20+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-10-08 02:02+0200\n" +"PO-Revision-Date: 2012-10-07 16:01+0000\n" +"Last-Translator: fposavec \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -56,7 +56,7 @@ msgstr "Datoteke" #: js/fileactions.js:108 templates/index.php:62 msgid "Unshare" -msgstr "" +msgstr "Prekini djeljenje" #: js/fileactions.js:110 templates/index.php:64 msgid "Delete" @@ -64,41 +64,41 @@ msgstr "Briši" #: js/fileactions.js:182 msgid "Rename" -msgstr "" +msgstr "Promjeni ime" -#: js/filelist.js:190 js/filelist.js:192 +#: js/filelist.js:189 js/filelist.js:191 msgid "already exists" msgstr "već postoji" -#: js/filelist.js:190 js/filelist.js:192 +#: js/filelist.js:189 js/filelist.js:191 msgid "replace" msgstr "zamjeni" -#: js/filelist.js:190 +#: js/filelist.js:189 msgid "suggest name" -msgstr "" +msgstr "predloži ime" -#: js/filelist.js:190 js/filelist.js:192 +#: js/filelist.js:189 js/filelist.js:191 msgid "cancel" msgstr "odustani" -#: js/filelist.js:239 js/filelist.js:241 +#: js/filelist.js:238 js/filelist.js:240 msgid "replaced" msgstr "zamjenjeno" -#: js/filelist.js:239 js/filelist.js:241 js/filelist.js:273 js/filelist.js:275 +#: js/filelist.js:238 js/filelist.js:240 js/filelist.js:272 js/filelist.js:274 msgid "undo" msgstr "vrati" -#: js/filelist.js:241 +#: js/filelist.js:240 msgid "with" msgstr "sa" -#: js/filelist.js:273 +#: js/filelist.js:272 msgid "unshared" -msgstr "" +msgstr "maknuto djeljenje" -#: js/filelist.js:275 +#: js/filelist.js:274 msgid "deleted" msgstr "izbrisano" @@ -106,114 +106,114 @@ msgstr "izbrisano" msgid "generating ZIP-file, it may take some time." msgstr "generiranje ZIP datoteke, ovo može potrajati." -#: js/files.js:208 +#: js/files.js:213 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Nemoguće poslati datoteku jer je prazna ili je direktorij" -#: js/files.js:208 +#: js/files.js:213 msgid "Upload Error" msgstr "Pogreška pri slanju" -#: js/files.js:236 js/files.js:341 js/files.js:371 +#: js/files.js:241 js/files.js:346 js/files.js:376 msgid "Pending" msgstr "U tijeku" -#: js/files.js:256 +#: js/files.js:261 msgid "1 file uploading" -msgstr "" +msgstr "1 datoteka se učitava" -#: js/files.js:259 js/files.js:304 js/files.js:319 +#: js/files.js:264 js/files.js:309 js/files.js:324 msgid "files uploading" -msgstr "" +msgstr "datoteke se učitavaju" -#: js/files.js:322 js/files.js:355 +#: js/files.js:327 js/files.js:360 msgid "Upload cancelled." msgstr "Slanje poništeno." -#: js/files.js:424 +#: js/files.js:429 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "" +msgstr "Učitavanje datoteke. Napuštanjem stranice će prekinuti učitavanje." -#: js/files.js:494 +#: js/files.js:499 msgid "Invalid name, '/' is not allowed." msgstr "Neispravan naziv, znak '/' nije dozvoljen." -#: js/files.js:667 +#: js/files.js:676 msgid "files scanned" -msgstr "" +msgstr "datoteka skenirana" -#: js/files.js:675 +#: js/files.js:684 msgid "error while scanning" -msgstr "" +msgstr "grečka prilikom skeniranja" -#: js/files.js:748 templates/index.php:48 +#: js/files.js:757 templates/index.php:48 msgid "Name" msgstr "Naziv" -#: js/files.js:749 templates/index.php:56 +#: js/files.js:758 templates/index.php:56 msgid "Size" msgstr "Veličina" -#: js/files.js:750 templates/index.php:58 +#: js/files.js:759 templates/index.php:58 msgid "Modified" msgstr "Zadnja promjena" -#: js/files.js:777 +#: js/files.js:786 msgid "folder" msgstr "mapa" -#: js/files.js:779 +#: js/files.js:788 msgid "folders" msgstr "mape" -#: js/files.js:787 +#: js/files.js:796 msgid "file" msgstr "datoteka" -#: js/files.js:789 +#: js/files.js:798 msgid "files" msgstr "datoteke" -#: js/files.js:833 +#: js/files.js:842 msgid "seconds ago" -msgstr "" +msgstr "sekundi prije" -#: js/files.js:834 +#: js/files.js:843 msgid "minute ago" -msgstr "" +msgstr "minutu" -#: js/files.js:835 +#: js/files.js:844 msgid "minutes ago" -msgstr "" +msgstr "minuta" -#: js/files.js:838 +#: js/files.js:847 msgid "today" -msgstr "" +msgstr "danas" -#: js/files.js:839 +#: js/files.js:848 msgid "yesterday" -msgstr "" +msgstr "jučer" -#: js/files.js:840 +#: js/files.js:849 msgid "days ago" -msgstr "" +msgstr "dana" -#: js/files.js:841 +#: js/files.js:850 msgid "last month" -msgstr "" +msgstr "prošli mjesec" -#: js/files.js:843 +#: js/files.js:852 msgid "months ago" -msgstr "" +msgstr "mjeseci" -#: js/files.js:844 +#: js/files.js:853 msgid "last year" -msgstr "" +msgstr "prošlu godinu" -#: js/files.js:845 +#: js/files.js:854 msgid "years ago" -msgstr "" +msgstr "godina" #: templates/admin.php:5 msgid "File handling" @@ -245,7 +245,7 @@ msgstr "Maksimalna veličina za ZIP datoteke" #: templates/admin.php:14 msgid "Save" -msgstr "" +msgstr "Snimi" #: templates/index.php:7 msgid "New" diff --git a/l10n/ku_IQ/files_encryption.po b/l10n/ku_IQ/files_encryption.po index 7229dce045f..ebb1c844374 100644 --- a/l10n/ku_IQ/files_encryption.po +++ b/l10n/ku_IQ/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: 2012-10-07 02:03+0200\n" -"PO-Revision-Date: 2012-10-07 00:05+0000\n" +"POT-Creation-Date: 2012-10-08 02:02+0200\n" +"PO-Revision-Date: 2012-10-07 00:06+0000\n" "Last-Translator: Hozha Koyi \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -24,12 +24,12 @@ msgstr "نهێنیکردن" #: templates/settings.php:4 msgid "Exclude the following file types from encryption" -msgstr "" +msgstr "به‌ربه‌ست کردنی ئه‌م جۆره‌ په‌ڕگانه له‌ نهێنیکردن" #: templates/settings.php:5 msgid "None" -msgstr "" +msgstr "هیچ" #: templates/settings.php:10 msgid "Enable Encryption" -msgstr "" +msgstr "چالاکردنی نهێنیکردن" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 0c20630742c..44dd3801916 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-07 02:03+0200\n" +"POT-Creation-Date: 2012-10-08 02:03+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index d5d14fb0469..34f041a0dca 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-07 02:03+0200\n" +"POT-Creation-Date: 2012-10-08 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -103,112 +103,112 @@ msgstr "" msgid "generating ZIP-file, it may take some time." msgstr "" -#: js/files.js:215 +#: js/files.js:213 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:215 +#: js/files.js:213 msgid "Upload Error" msgstr "" -#: js/files.js:243 js/files.js:348 js/files.js:378 +#: js/files.js:241 js/files.js:346 js/files.js:376 msgid "Pending" msgstr "" -#: js/files.js:263 +#: js/files.js:261 msgid "1 file uploading" msgstr "" -#: js/files.js:266 js/files.js:311 js/files.js:326 +#: js/files.js:264 js/files.js:309 js/files.js:324 msgid "files uploading" msgstr "" -#: js/files.js:329 js/files.js:362 +#: js/files.js:327 js/files.js:360 msgid "Upload cancelled." msgstr "" -#: js/files.js:432 +#: js/files.js:429 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:502 +#: js/files.js:499 msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:679 +#: js/files.js:676 msgid "files scanned" msgstr "" -#: js/files.js:687 +#: js/files.js:684 msgid "error while scanning" msgstr "" -#: js/files.js:760 templates/index.php:48 +#: js/files.js:757 templates/index.php:48 msgid "Name" msgstr "" -#: js/files.js:761 templates/index.php:56 +#: js/files.js:758 templates/index.php:56 msgid "Size" msgstr "" -#: js/files.js:762 templates/index.php:58 +#: js/files.js:759 templates/index.php:58 msgid "Modified" msgstr "" -#: js/files.js:789 +#: js/files.js:786 msgid "folder" msgstr "" -#: js/files.js:791 +#: js/files.js:788 msgid "folders" msgstr "" -#: js/files.js:799 +#: js/files.js:796 msgid "file" msgstr "" -#: js/files.js:801 +#: js/files.js:798 msgid "files" msgstr "" -#: js/files.js:845 +#: js/files.js:842 msgid "seconds ago" msgstr "" -#: js/files.js:846 +#: js/files.js:843 msgid "minute ago" msgstr "" -#: js/files.js:847 +#: js/files.js:844 msgid "minutes ago" msgstr "" -#: js/files.js:850 +#: js/files.js:847 msgid "today" msgstr "" -#: js/files.js:851 +#: js/files.js:848 msgid "yesterday" msgstr "" -#: js/files.js:852 +#: js/files.js:849 msgid "days ago" msgstr "" -#: js/files.js:853 +#: js/files.js:850 msgid "last month" msgstr "" -#: js/files.js:855 +#: js/files.js:852 msgid "months ago" msgstr "" -#: js/files.js:856 +#: js/files.js:853 msgid "last year" msgstr "" -#: js/files.js:857 +#: js/files.js:854 msgid "years ago" msgstr "" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 1bc3be2a7ef..2a377de5523 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-07 02:03+0200\n" +"POT-Creation-Date: 2012-10-08 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index 3ec959bd921..90a8cf6e5d2 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-07 02:03+0200\n" +"POT-Creation-Date: 2012-10-08 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index 9c8bcf85c31..ac7a5d9ad95 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-07 02:03+0200\n" +"POT-Creation-Date: 2012-10-08 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 80da91087b9..bf4672d1211 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-07 02:03+0200\n" +"POT-Creation-Date: 2012-10-08 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index 5c6dc2beeff..d895894deef 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-07 02:04+0200\n" +"POT-Creation-Date: 2012-10-08 02:03+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 04c9e0792a3..fb1462a1302 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-07 02:04+0200\n" +"POT-Creation-Date: 2012-10-08 02:03+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 09e05951a8a..8ecad3d5951 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-07 02:03+0200\n" +"POT-Creation-Date: 2012-10-08 02:03+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" -- GitLab From 4dba91838ff24202fa7e184469074b61a4872d1e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Mon, 8 Oct 2012 10:28:29 +0200 Subject: [PATCH 218/489] add ID to upload form and check if ID exist to avoid loading invalid javascript code for read-only views. --- apps/files/js/files.js | 5 +++-- apps/files/templates/index.php | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/apps/files/js/files.js b/apps/files/js/files.js index c7f4c4ce080..b36e46813dc 100644 --- a/apps/files/js/files.js +++ b/apps/files/js/files.js @@ -199,7 +199,8 @@ $(document).ready(function() { $(document).bind('drop dragover', function (e) { e.preventDefault(); // prevent browser from doing anything, if file isn't dropped in dropZone }); - + + if ( document.getElementById("data-upload-form") ) { $(function() { $('.file_upload_start').fileupload({ dropZone: $('#content'), // restrict dropZone to content div @@ -413,7 +414,7 @@ $(document).ready(function() { } }) }); - + } $.assocArraySize = function(obj) { // http://stackoverflow.com/a/6700/11236 var size = 0, key; diff --git a/apps/files/templates/index.php b/apps/files/templates/index.php index aff484f0a7a..d49f2f4d5d3 100644 --- a/apps/files/templates/index.php +++ b/apps/files/templates/index.php @@ -12,7 +12,7 @@
- + -- GitLab From b7a5cc2fda1484e8a054820ef026bbaeccf31c77 Mon Sep 17 00:00:00 2001 From: Frank Karlitschek Date: Mon, 8 Oct 2012 11:53:00 +0200 Subject: [PATCH 219/489] use socket timeout of 10 sec to stay responsive even with a slow internet connection or a not working server --- lib/updater.php | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/lib/updater.php b/lib/updater.php index ad42f2bf605..b3b289ef276 100644 --- a/lib/updater.php +++ b/lib/updater.php @@ -42,7 +42,16 @@ class OC_Updater{ //fetch xml data from updater $url=$updaterurl.'?version='.$versionstring; - $xml=@file_get_contents($url); + + // set a sensible timeout of 10 sec to stay responsive even if the update server is down. + $ctx = stream_context_create( + array( + 'http' => array( + 'timeout' => 10 + ) + ) + ); + $xml=@file_get_contents($url, 0, $ctx); if($xml==FALSE) { return array(); } -- GitLab From e9f04bedd4d57ffd47d9b6e25041da191aaac1e7 Mon Sep 17 00:00:00 2001 From: Frank Karlitschek Date: Mon, 8 Oct 2012 12:00:29 +0200 Subject: [PATCH 220/489] add a sane socket timeout so that the interface stays responsive with a slow or not working internet connection --- lib/ocsclient.php | 55 ++++++++++++++++++++++++++++++++++++++++++----- 1 file changed, 50 insertions(+), 5 deletions(-) diff --git a/lib/ocsclient.php b/lib/ocsclient.php index 6428a883679..fc2095f5c15 100644 --- a/lib/ocsclient.php +++ b/lib/ocsclient.php @@ -62,7 +62,15 @@ class OC_OCSClient{ } $url=OC_OCSClient::getAppStoreURL().'/content/categories'; - $xml=@file_get_contents($url); + // set a sensible timeout of 10 sec to stay responsive even if the server is down. + $ctx = stream_context_create( + array( + 'http' => array( + 'timeout' => 10 + ) + ) + ); + $xml=@file_get_contents($url, 0, $ctx); if($xml==FALSE) { return NULL; } @@ -103,7 +111,17 @@ class OC_OCSClient{ $filterurl='&filter='.urlencode($filter); $url=OC_OCSClient::getAppStoreURL().'/content/data?categories='.urlencode($categoriesstring).'&sortmode=new&page='.urlencode($page).'&pagesize=100'.$filterurl.$version; $apps=array(); - $xml=@file_get_contents($url); + + // set a sensible timeout of 10 sec to stay responsive even if the server is down. + $ctx = stream_context_create( + array( + 'http' => array( + 'timeout' => 10 + ) + ) + ); + $xml=@file_get_contents($url, 0, $ctx); + if($xml==FALSE) { return NULL; } @@ -141,7 +159,15 @@ class OC_OCSClient{ } $url=OC_OCSClient::getAppStoreURL().'/content/data/'.urlencode($id); - $xml=@file_get_contents($url); + // set a sensible timeout of 10 sec to stay responsive even if the server is down. + $ctx = stream_context_create( + array( + 'http' => array( + 'timeout' => 10 + ) + ) + ); + $xml=@file_get_contents($url, 0, $ctx); if($xml==FALSE) { OC_Log::write('core','Unable to parse OCS content',OC_Log::FATAL); return NULL; @@ -178,7 +204,16 @@ class OC_OCSClient{ } $url=OC_OCSClient::getAppStoreURL().'/content/download/'.urlencode($id).'/'.urlencode($item); - $xml=@file_get_contents($url); + // set a sensible timeout of 10 sec to stay responsive even if the server is down. + $ctx = stream_context_create( + array( + 'http' => array( + 'timeout' => 10 + ) + ) + ); + $xml=@file_get_contents($url, 0, $ctx); + if($xml==FALSE) { OC_Log::write('core','Unable to parse OCS content',OC_Log::FATAL); return NULL; @@ -215,7 +250,17 @@ class OC_OCSClient{ $url=OC_OCSClient::getKBURL().'/knowledgebase/data?type=150&page='.$p.'&pagesize='.$s.$searchcmd; $kbe=array(); - $xml=@file_get_contents($url); + + // set a sensible timeout of 10 sec to stay responsive even if the server is down. + $ctx = stream_context_create( + array( + 'http' => array( + 'timeout' => 10 + ) + ) + ); + $xml=@file_get_contents($url, 0, $ctx); + if($xml==FALSE) { OC_Log::write('core','Unable to parse knowledgebase content',OC_Log::FATAL); return NULL; -- GitLab From 8357754ff15a090ec3d452cd8b98106a68ec1f68 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Mon, 8 Oct 2012 13:21:34 +0200 Subject: [PATCH 221/489] added "uid_owner" to select statement --- lib/public/share.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/public/share.php b/lib/public/share.php index 59dbad035aa..75363d081c0 100644 --- a/lib/public/share.php +++ b/lib/public/share.php @@ -645,7 +645,7 @@ class Share { } else { if ($fileDependent) { if (($itemType == 'file' || $itemType == 'folder') && $format == \OC_Share_Backend_File::FORMAT_FILE_APP || $format == \OC_Share_Backend_File::FORMAT_FILE_APP_ROOT) { - $select = '`*PREFIX*share`.`id`, `item_type`, `*PREFIX*share`.`parent`, `share_type`, `share_with`, `file_source`, `path`, `file_target`, `permissions`, `expiration`, `name`, `ctime`, `mtime`, `mimetype`, `size`, `encrypted`, `versioned`, `writable`'; + $select = '`*PREFIX*share`.`id`, `item_type`, `*PREFIX*share`.`parent`, `uid_owner`, `share_type`, `share_with`, `file_source`, `path`, `file_target`, `permissions`, `expiration`, `name`, `ctime`, `mtime`, `mimetype`, `size`, `encrypted`, `versioned`, `writable`'; } else { $select = '`*PREFIX*share`.`id`, `item_type`, `item_source`, `item_target`, `*PREFIX*share`.`parent`, `share_type`, `share_with`, `uid_owner`, `file_source`, `path`, `file_target`, `permissions`, `stime`, `expiration`'; } -- GitLab From 306bfb44d3533a2ba28db409b9826a8e82c55675 Mon Sep 17 00:00:00 2001 From: Frank Karlitschek Date: Mon, 8 Oct 2012 13:33:52 +0200 Subject: [PATCH 222/489] no garbage on the screen please --- settings/js/apps.js | 1 + 1 file changed, 1 insertion(+) diff --git a/settings/js/apps.js b/settings/js/apps.js index 4ffbc41f22c..6ef33706f65 100644 --- a/settings/js/apps.js +++ b/settings/js/apps.js @@ -30,6 +30,7 @@ OC.Settings.Apps = OC.Settings.Apps || { if (app.internal == false) { page.find('p.appslink').show(); page.find('a').attr('href', 'http://apps.owncloud.com/content/show.php?content=' + app.id); + page.find('small.externalapp').hide(); } else { page.find('p.appslink').hide(); } -- GitLab From 3affeb5bd77715c84c70230d744de8d0f577a378 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Mon, 8 Oct 2012 13:35:59 +0200 Subject: [PATCH 223/489] destroy invalid sessions --- lib/base.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/base.php b/lib/base.php index 41ff1870059..c898273d9e2 100644 --- a/lib/base.php +++ b/lib/base.php @@ -352,6 +352,10 @@ class OC{ OC_User::useBackend(new OC_User_Database()); OC_Group::useBackend(new OC_Group_Database()); + if(isset($_SERVER['PHP_AUTH_USER']) && isset($_SESSION['user_id']) && $_SERVER['PHP_AUTH_USER'] != $_SESSION['user_id']) { + OC_User::logout(); + } + // Load Apps // This includes plugins for users and filesystems as well global $RUNTIME_NOAPPS; -- GitLab From 07eb1c159d0972dc4d1636059bba51d751f7959c Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Mon, 8 Oct 2012 14:26:51 +0200 Subject: [PATCH 224/489] load test cases from enabled apps --- tests/apps.php | 41 +++++++++++++++++++++++++++++++++++++++++ tests/phpunit.xml | 1 + 2 files changed, 42 insertions(+) create mode 100644 tests/apps.php diff --git a/tests/apps.php b/tests/apps.php new file mode 100644 index 00000000000..3e27b81df61 --- /dev/null +++ b/tests/apps.php @@ -0,0 +1,41 @@ + + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +function loadDirectory($path) { + if ($dh = opendir($path)) { + while ($name = readdir($dh)) { + if ($name[0] !== '.') { + $file = $path . '/' . $name; + if (is_dir($file)) { + loadDirectory($file); + } elseif (substr($name, -4, 4) === '.php') { + require_once $file; + } + } + } + } +} + +function getSubclasses($parentClassName) { + $classes = array(); + foreach (get_declared_classes() as $className) { + if (is_subclass_of($className, $parentClassName)) + $classes[] = $className; + } + + return $classes; +} + +$apps = OC_App::getEnabledApps(); + +foreach ($apps as $app) { + $dir = OC_App::getAppPath($app); + if (is_dir($dir . '/tests')) { + loadDirectory($dir . '/tests'); + } +} diff --git a/tests/phpunit.xml b/tests/phpunit.xml index 93b781bca44..4a2d68a3e47 100644 --- a/tests/phpunit.xml +++ b/tests/phpunit.xml @@ -2,5 +2,6 @@ lib/ + apps.php -- GitLab From c701bed2e3572b3b5d5d192cbe3f801d016c881d Mon Sep 17 00:00:00 2001 From: Frank Karlitschek Date: Mon, 8 Oct 2012 15:49:48 +0200 Subject: [PATCH 225/489] fix a lot of small layout bugs and make the apps page overall prettier plus add ratings finally --- core/img/rating/s1.png | Bin 0 -> 454 bytes core/img/rating/s10.png | Bin 0 -> 848 bytes core/img/rating/s11.png | Bin 0 -> 724 bytes core/img/rating/s2.png | Bin 0 -> 731 bytes core/img/rating/s3.png | Bin 0 -> 918 bytes core/img/rating/s4.png | Bin 0 -> 989 bytes core/img/rating/s5.png | Bin 0 -> 939 bytes core/img/rating/s6.png | Bin 0 -> 992 bytes core/img/rating/s7.png | Bin 0 -> 939 bytes core/img/rating/s8.png | Bin 0 -> 987 bytes core/img/rating/s9.png | Bin 0 -> 908 bytes lib/app.php | 37 ++++++++++++++++-------------------- lib/ocsclient.php | 2 ++ settings/css/settings.css | 3 ++- settings/js/apps.js | 3 +++ settings/templates/apps.php | 2 ++ 16 files changed, 25 insertions(+), 22 deletions(-) create mode 100644 core/img/rating/s1.png create mode 100644 core/img/rating/s10.png create mode 100644 core/img/rating/s11.png create mode 100644 core/img/rating/s2.png create mode 100644 core/img/rating/s3.png create mode 100644 core/img/rating/s4.png create mode 100644 core/img/rating/s5.png create mode 100644 core/img/rating/s6.png create mode 100644 core/img/rating/s7.png create mode 100644 core/img/rating/s8.png create mode 100644 core/img/rating/s9.png diff --git a/core/img/rating/s1.png b/core/img/rating/s1.png new file mode 100644 index 0000000000000000000000000000000000000000..445d965ffeb2a64310790eb99829e92f22d48672 GIT binary patch literal 454 zcmV;%0XhDOP)WFU8GbZ8()Nlj2>E@cM*00AmVL_t(o!|m9+j)Wi> z1>mFE0%?r2z5%W8{~DIW#%QHhh?QGmyx{;&He39sawg;(lA{a)Q2u|k*6T0~D_P&S zetZTsP4l%f$vP(eG+^Ik*LAP%5V9f)==*-V9>?+3ok3P$0k%QL7#L#!0Hsva9YWT9 zlJny;O%njX7z2yh>vI@m$g&K1o`Z8vR)n>IN~zTtvo&Yq!p@OWk`-Yc8m;Skb+xFq zK78h!Z{Jr{g(OMHim=kVR_>a0VN%M=#K`iu(kIl_<{mq*i)4jax4WRCC_X+)LWswS zk>zLIz6sCsd;#`9z&ZE+vmxu*N)ed-diFMCIi7&?dM1Rh``+LQkQH$lXWJ^v^04={ wZ+mUqVp$g7lR>fqtjmGYn=xdCTa-V}FUsqJC7kViDgXcg07*qoM6N<$g7yBu%K!iX literal 0 HcmV?d00001 diff --git a/core/img/rating/s10.png b/core/img/rating/s10.png new file mode 100644 index 0000000000000000000000000000000000000000..b8d66c2a4c41085dae62d3c3408702a950cd86ed GIT binary patch literal 848 zcmV-W1F!svP)WFU8GbZ8()Nlj2>E@cM*00Oj0L_t(o!|j;AYZGA@ z$3J&(?(WSc5Zh|iYAu3;WV9|0ZY~NAB8d2(2u^M~2#$*2pqmsNbgK@If>uOOsHTY4 zw6?i4=_Qx&Fwlj8uq3NPb)$~3atPh*91818gpIENM4^RlP7w!fLSNx47hfp=j$W8cSzWC1 z$jr9YQY;p=z6z+lz8FWA!pe^mHA;luMh}Zx{s!DrKi3G|K8C;M;_HgZv(L%Mk(AZN z`eZ%maky>U05qFTrl+UTG)?Qf0}3Z*G`|jBrHm#gdjP+LDMbD_{+dfGs0|dBve?r3 z#bUAJ{DGJ7{!>phRaJyufF{N}nb9pUj@q<>8b{7Q8z?Mg_1mWNH+%oKe?hsa%XqbA zFvfaB0kp*=zH+hlo$kAoQdU1}Gy6wJNBf+=g&kqiO=dk8Ec+FdQyyGZddHX0%S;<*RpQls% a$MyqD4?3BHWb!=#0000WFU8GbZ8()Nlj2>E@cM*00KBkL_t(o!|m8TYZO5k z!14d?+`i;)A%@ea(HMjj)?#B}XA{9f1QEYUT08v)ieO_Wf`xX`!cx$P2nvxLqUOci zOZIN>=4M|lPEL=k$>tKoVxDG-9e(@3^UTc7f{y<`qVA_m)|WDE9llj6GO4|CnDAK=Ae9fjUE5`&+*eR*-L4$)SA7$d;e^DOjV69+5Ay>&{ii&L2*m0P4yfFWk+`fJ28!nCHbym{QC z7bwqM#;VL{YYb}$Hs0OJOskD>DhSgaz9eaHkaWKRkR}eMJx3PBB%vZy0ijX=oV~WJ ztud^Tiu!M_XQ`ubylK+zDv4|jpnf>OrTR6dnB{rG?SRl!%r3m7lp6r$X@juQwZ-I;dVej@^cf@R&i^`A$O4M!^N={q5Tloc$O}1qdZ|(-Ct}GhxarkWO z&An{n)g7X4P%JrZ?aLbc&8t1#^D5qW|2Wgu;afWXar^{BS9EdNxN(aB0000WFU8GbZ8()Nlj2>E@cM*00KWrL_t(o!|j+)i_<_D z#-B-=WSSOABCJA{z2|68egwS=i}+0hPaZu8-o1HV@Srz8fd}zag~hbOmZYqkw&^yL zv`ylnCMKJvjkciJc}_XZ{CLUp%sYPou76*P*_YUHoOmBB&+|Adqgs_g?%6X8<)?cw zv)}LUEg1g;OV~DmeSaS#8UX+-%i1X+*;H^=MFXb2=a6U<05BSjc1nhA+vzuFRWN{= zuVPUYA&3$vr2qiaH2)|eNg61noRtyD{qT!-@qF?D%d0aiJqtBTp)@o^>;mWV%fe(z zDeCn)TCEmTRVCM#;&?m;0QkP2j!(WhYsE@|m!BTTg5*L}8W06JofNt@!r3`2?R2C2 zhGC>E(==n>_tO+4Dl6=eSvf~1A0Nh%5zWHolXaY zkQ}Sq?Z#z^@H~&RezJ0VKy^9*88t_Z*0!0ztWzTSls?R^DtFV})X}#U47V#DH(0avg$PLnPP1X4AF( zY*%qsi2+M*2*^!b*#r3Q1nTYkpp?RKoZl|sdT-QqJvl>jR;dBZ!I(K{9-pB7;0Xaf z19*|%_6CCif*`2+G6(=@x7)dMG-qvk{p`KjdKItw+*)NEXL0>C{QwWMtLS!QP{IHJ N002ovPDHLkV1oJ=Ij#Tz literal 0 HcmV?d00001 diff --git a/core/img/rating/s3.png b/core/img/rating/s3.png new file mode 100644 index 0000000000000000000000000000000000000000..26c9baff55f066f80c1d73336c0302d1ee57a409 GIT binary patch literal 918 zcmV;H18Mw;P)WFU8GbZ8()Nlj2>E@cM*00R0+L_t(o!|j;AZ`(!` z$3NtW;)xQVN=}^Au4@#?5NNEkbm*2P0Wt&uf*}7%)^6>8kf1=9Zbg9(?UrW97@$p2 z6i$H@vV+8t5?en_kvvi)J2+BBnX1{^C<;k$AtjO@ynF9^_wF4m?f-AV;P==)co?4r z%W<5z-EJ>g?<|+)rT+8J2!n$&N#^eE?wJW=9$5NGFSrK}W1~^~Vc%H||vC;jsNhv853Y5!bEX!IL))?6OoTZFO$EMfVMPQ}wf{L4WaC>jSSV;sP zU??{5m5q7+(_@7<%_^13iPN%Lt^VyG=b4q-2Ly*ZXoi93v=O0+ZeBd91?nxrZxQBK zP_3Oz#m05rW6n%EYgtz2!ZnYq83}lS%oot}Iih?4cW_9o9P;vggoIGpsLtzCx9pQ^ z)zKdM9}i|8S?LLI z+jQMFrOn%{U%#ipv+=Y2pYF%a$Db1n?5rn)0IaXCC-%{!&T(&V52e(Sl{o#}`R>G4 sy!GohncDR%$FfIwEx)t1ft62%OgtyQ~&?~07*qoM6N<$f+`5GKL7v# literal 0 HcmV?d00001 diff --git a/core/img/rating/s4.png b/core/img/rating/s4.png new file mode 100644 index 0000000000000000000000000000000000000000..47f1f694bf74df3a1664d8b5e3d3e9e3395b4656 GIT binary patch literal 989 zcmV<310wv1P)WFU8GbZ8()Nlj2>E@cM*00TiuL_t(o!|j;AZ{uVb z$3M0c`;8MRB!vPkr9!#^d88~1Y%GVwfRGU4KRJo%HW-i?K}Za+p_3S3I~W*|;1EIu zsgM?Ny`;2pe$=u3+Of@0Vv@#be3u9?x@WN^zy9cbp6B~K?+7FSVu=kYZKYO#Zs3I@Xl^0#62`kWAMud zD=B2c0%*6}E3u{(R%F)F3OGM}2T`p9;Qap4O3IjK^?JRPSe;HMeJ?WW$_nsWA10cn zp=xDRt&C;}&hFfJAcah`gb)Cy}5}9A*fU;)a!Lj(^M{(b-&*S z!1w)h{N%mJtQ6S&{>?-!57CS&nyRNiMZ*r!=q> z)o$FnQc0F&rL0z~mH57&Dr#bjoGcn^CZmJzUQ1#_V$?Q?M=c`nqKCzPa1lUH{`HJe z&1(dGhd`C=T>pxaXyj)7YJ5C18PhZ;+c)<1_D~dMhPA)HpDa?B>$-(z&8z|S=WZ#% z5WH?1MeNJ~{tmuGt36B5ckshOX7HD>7ER2utT`vA)sm&SqO;}};m2S2T#-FV>?KM(7&S}e<&>#>WRU8J%ivNCr;)!jGn1}9M7mW!;fQCXP@7`rE+*Kj(=_`?C_Q`afg>exSi0zmDN4Z@+FYXVs;Aq2K<-?uZD z`)sq>ob1O7%gRoGXVdp=YP+wq{qhY3eoDWce*1pX`TA|bk&`b0nXGryljHI6F;dFB zw~PR6Z*R}+$^TERiyONd}~qO%^_KWu*jECdgvZ8VTS00000 LNkvXXu0mjfCsNO_ literal 0 HcmV?d00001 diff --git a/core/img/rating/s5.png b/core/img/rating/s5.png new file mode 100644 index 0000000000000000000000000000000000000000..aa225b6a9a9e2b12e4f9c5cf91fe0f0b29a20765 GIT binary patch literal 939 zcmV;c162HpP)WFU8GbZ8()Nlj2>E@cM*00R$6L_t(o!|j+oZ_`i| zhF|-}_Kg!MB!vPEr9$d}GEx=>HkKkWAS8tNCtca#AApcp*bou}Y{0;X1VsoHq#~yX z(xfzT;?%Ky?bv1r4*6^hb&4bPEO8v?kfZ30`2RA134s0R*cM9HdDD&6aPy*{(7eMf+)JoE`6;E4d92p|$gb$#uh91rHa7U&oa-aut+X zx&>3)0ff0eu>hb=7GX0T(uvDMljXEo*=%;=5YOdu`wA8}*2sN;vsVNs2(Szl#FfBH zr#k(c{RFXVaK$;WS~1+wLxe2TG=~!FOTZ| zfhbvneKwcN1?%y@7A7vN(FHJ7G)xugrJKlKUE_ey-QRZK-S;bR?!sy5;R+BTD{xUh zpYL0f2fNTxsRYK@OtU&Cmc?fix8k*rPyEAXg*oC4dkh>`)=?aC`~s_~Nqk&`vE={& N002ovPDHLkV1l6(p$h;2 literal 0 HcmV?d00001 diff --git a/core/img/rating/s6.png b/core/img/rating/s6.png new file mode 100644 index 0000000000000000000000000000000000000000..fd4f42e22c6c7e4f9ca8992df46ccfd48bd9a309 GIT binary patch literal 992 zcmV<610Vc}P)WFU8GbZ8()Nlj2>E@cM*00TrxL_t(o!|j;AZ{uVb z$3M1X`;8MRB!vPkr9!#^Wuz=Ou(2Ex142TG|KublHW-i?K}Za+p_6Wa?YQAaBsg?B z^^gwIBCeN|HqMVawqHB88A?LZByH}J*d6X!Y$>ll%JY4`@ALkEXL0!>?ERj2$G4Kp z$g*vFDJ<7@GhyZC8Pt9F2~l{wlwvNMb!dFN6xRO!{?ZKlBrNr!0p9Vggt&#KX>|Vh zY9WWLf(1~o*B4@qx;1Uqg)`t}?=wW91c3ARHw!sqRjgL4wGgY(Xbj)eW}Q0&yxP}^ zrfH~}j;iTsrr`MQ^`~;ks#rn@0BW_`Q?Ujv6+&dfQpOTH`Y{PQKht*}(s%3RgupD6 ziM=D@&_U5Q=ye{`_d-;C9ldx3@%)=u8*if*HZoy7GQOBdN(ezdpQltRVOf@Pwnent zZ2)}VAC4cqr_CAyo4-FOtJR5qJxjP*j!la-br)3F{t&No2>RNXSO9%( zi$FSnW*MVr#)BxgBCQ2 zj5TC)Z@%k-6|+XCw`Ey#FM^)uO^7rqVp^;j1^5eL|LvR?C{!XBUk$SyKzpcMriR;xrEMyB(}ou8}L2uWFU8GbZ8()Nlj2>E@cM*00R$6L_t(o!|j;QZ_;2G z$G`1M+m}LuFr7M_i-`xr(RuOU&C5(Y7!zasPj>aD|AEHDi#KE9L2uK8M-!bfW}3{D z8D%gBg|gE2ZE5QPi@;!XQb{p;E-h{Oq|f*H_IZB*M-l&UT3>v#y5|4SEW-DL!4*UX4<&jSa0Z#<*L;#T}s_UzN<&e0t0+&)s zK`8|QD2g&Q7T1^9?n~d+-lDBH=#Y?)bdW1d&o8yx9Gd z+pNHC{Qv-Xt^{6Og7389+6*?+VKW8*ICo<`_AEtFe9N-B?hIm-V1rR86e4H!RaAR_ z)Au9>DLoIbrNA{iJ_aQ2Ge1Ob+zg18cR z=~SoZvY#M!4X!u`Rx5_vE{G}1G|hb?^@=FVa_9kd64r1hxOxJ(DDZ-*2uo~(nSw`c!r*3bg9jU7NtL$8!zH8sd*R**<%pniG+07xI3gVR() zy+B-9gFQQ!%LQ}$LyJ5KYj^=n6%A8Gdg&JO*H$^;bNAlvy9a*d%{@3RJ)CGUWd)AR z=ktB@`(Q;|DwV((n>wqr%UFCqb}3%__|%_eR+#PLuv^MevW{ZP@e3ZktscTYJa7O2 N002ovPDHLkV1m@_q80!E literal 0 HcmV?d00001 diff --git a/core/img/rating/s8.png b/core/img/rating/s8.png new file mode 100644 index 0000000000000000000000000000000000000000..951c3fd3be43add49758497907ec9075314bdb1f GIT binary patch literal 987 zcmV<110?*3P)WFU8GbZ8()Nlj2>E@cM*00TcsL_t(o!|j;AZ|hVP z$3M0c`^JeBl0t!&QX#zod88~1Y%C9n0U;s8fASDYO z3etnLh}V~tHqMVawyz!A3?(LMewijiUA?o!l5ak`=bZ07*XO`vyZROmeoMU5JIQrt z*|xnFmg~BiS%oZ%`VZbG3QyOP%&W{g*56wT>+tX}^ICP;0`K%rLfk>qGrx8I14{@2K%>#P6l<8x?_2j?5F{*ik zpz9E*lAW7(DTrF`S$`N`Oa#d^&CzEidwY8*iZa34-``K>sor(nOst7Jp!(8nCFq0K zZlZ{t3BZ3&O0>$01YHL|?9FsCudI0ivn*>W_~R;`brQ0&rY_;9U-?Fn9ZBScDB5PK zvTay=W;&T?)3 zeps_=_NumwH8TN2_ZajFPU{H2-@|ARC3K1o{lJ|G-8*&NLk>!Y-zJvurWFU8GbZ8()Nlj2>E@cM*00QtyL_t(o!|j;AZ_`i^ z$G`TA?H4CfND2iSN`=$`Wuz<&Y%E1$Ku8GjpLAt|{{V!TcXZ;5Gk9GSk4?+}upORy=Hh-CX4e+aQF%_;ha~g`|Piul#zw&L`dhyVX0O zxdH&d{PJKTWu$@CXf)#ccDp^<4zRWRoDc$$NDzqxqEIx~R(?w%X<$W)r<8(H3INbF z?Ld|=;LOf5?i#P)n;Y=0Ix>_($rTaWI|w}!0+~b4*n)3+5T#j2`9;v9=b_GBf|Q#} z9ZT1B-syAz0FL7z3Vw9I-zcTXX0s?13Q$#57)U_t?M*I9T@WP)BFgcPf^Gvr?<)Wx z3>1j+0=VZRa2Z@?!etBqaOUb-s#uz)amR6DrAIa{`1`F=sR%K0 znNW^h9BN8wWfhCXLrYJoR2mBY*g3%4twN9_IF=3)C=itsdv%h1194jjw-UbS|Ia$e`s;t< z1o+lAAm?E=YH+#+)KkmIKLh~ekIca9>WLgk18aZ%FO^EsobY>xalWmiW9!H- zTu1rxiU53wpY6Q9%Ns9m!|R#JUNi-)NZsXfId01R({Zg<17qwLP6n$_4jsi??;i0f iYxn?ek~LHN3-%rR=n&6g64PY>0000=0 and $app['score']<5) $img=OC_Helper::imagePath( "core", "rating/s1.png" ); + elseif($app['score']>=5 and $app['score']<15) $img=OC_Helper::imagePath( "core", "rating/s2.png" ); + elseif($app['score']>=15 and $app['score']<25) $img=OC_Helper::imagePath( "core", "rating/s3.png" ); + elseif($app['score']>=25 and $app['score']<35) $img=OC_Helper::imagePath( "core", "rating/s4.png" ); + elseif($app['score']>=35 and $app['score']<45) $img=OC_Helper::imagePath( "core", "rating/s5.png" ); + elseif($app['score']>=45 and $app['score']<55) $img=OC_Helper::imagePath( "core", "rating/s6.png" ); + elseif($app['score']>=55 and $app['score']<65) $img=OC_Helper::imagePath( "core", "rating/s7.png" ); + elseif($app['score']>=65 and $app['score']<75) $img=OC_Helper::imagePath( "core", "rating/s8.png" ); + elseif($app['score']>=75 and $app['score']<85) $img=OC_Helper::imagePath( "core", "rating/s9.png" ); + elseif($app['score']>=85 and $app['score']<95) $img=OC_Helper::imagePath( "core", "rating/s10.png" ); + elseif($app['score']>=95 and $app['score']<100) $img=OC_Helper::imagePath( "core", "rating/s11.png" ); + + $app1[$i]['score'] = ' Score: '.$app['score'].'%'; $i++; - } - } - + if ( empty( $app1 ) ) { - return false; - } else { - return $app1; - } } diff --git a/lib/ocsclient.php b/lib/ocsclient.php index fc2095f5c15..c5c4357313b 100644 --- a/lib/ocsclient.php +++ b/lib/ocsclient.php @@ -140,6 +140,7 @@ class OC_OCSClient{ $app['preview']=(string)$tmp[$i]->smallpreviewpic1; $app['changed']=strtotime($tmp[$i]->changed); $app['description']=(string)$tmp[$i]->description; + $app['score']=(string)$tmp[$i]->score; $apps[]=$app; } @@ -188,6 +189,7 @@ class OC_OCSClient{ $app['changed']=strtotime($tmp->changed); $app['description']=$tmp->description; $app['detailpage']=$tmp->detailpage; + $app['score']=$tmp->score; return $app; } diff --git a/settings/css/settings.css b/settings/css/settings.css index d5e826b33ce..60a42784661 100644 --- a/settings/css/settings.css +++ b/settings/css/settings.css @@ -50,7 +50,7 @@ li { color:#888; } li.active { color:#000; } small.externalapp { color:#FFF; background-color:#BBB; font-weight:bold; font-size: 0.6em; margin: 0; padding: 0.1em 0.2em; border-radius: 4px;} small.externalapp.list { float: right; } -span.version { margin-left:3em; margin-right:3em; color:#555; } +span.version { margin-left:1em; margin-right:1em; color:#555; } .app { position: relative; display: inline-block; padding: 0.2em 0 0.2em 0 !important; text-overflow: hidden; overflow: hidden; white-space: nowrap; /*transition: .2s max-width linear; -o-transition: .2s max-width linear; -moz-transition: .2s max-width linear; -webkit-transition: .2s max-width linear; -ms-transition: .2s max-width linear;*/ } .app.externalapp { max-width: 12.5em; z-index: 100; } @@ -58,6 +58,7 @@ span.version { margin-left:3em; margin-right:3em; color:#555; } .app:hover, .app:active { max-width: inherit; } .appslink { text-decoration: underline; } +.score { color:#666; font-weight:bold; font-size:0.8em; } /* LOG */ #log { white-space:normal; } diff --git a/settings/js/apps.js b/settings/js/apps.js index 6ef33706f65..8de95100c4c 100644 --- a/settings/js/apps.js +++ b/settings/js/apps.js @@ -17,6 +17,7 @@ OC.Settings.Apps = OC.Settings.Apps || { } else { page.find('span.version').text(''); } + page.find('span.score').html(app.score); page.find('p.description').html(app.description); page.find('img.preview').attr('src', app.preview); page.find('small.externalapp').attr('style', 'visibility:visible'); @@ -28,11 +29,13 @@ OC.Settings.Apps = OC.Settings.Apps || { page.find('input.enable').data('appid', app.id); page.find('input.enable').data('active', app.active); if (app.internal == false) { + page.find('span.score').show(); page.find('p.appslink').show(); page.find('a').attr('href', 'http://apps.owncloud.com/content/show.php?content=' + app.id); page.find('small.externalapp').hide(); } else { page.find('p.appslink').hide(); + page.find('span.score').hide(); } }, enableApp:function(appid, active, element) { diff --git a/settings/templates/apps.php b/settings/templates/apps.php index 0662148ebf2..1e9598de1e3 100644 --- a/settings/templates/apps.php +++ b/settings/templates/apps.php @@ -8,6 +8,7 @@
    @@ -24,6 +25,7 @@

    t('Select an App');?>

    +

    -- GitLab From b296328c61494eaa21f054838ebbef038558aa11 Mon Sep 17 00:00:00 2001 From: Frank Karlitschek Date: Mon, 8 Oct 2012 15:58:50 +0200 Subject: [PATCH 226/489] put all the calls into one function and use tabs instead of spaces. Thanks to danimo for bugging me :-) --- lib/ocsclient.php | 72 +++++++++++++++-------------------------------- 1 file changed, 23 insertions(+), 49 deletions(-) diff --git a/lib/ocsclient.php b/lib/ocsclient.php index c5c4357313b..794bc972f57 100644 --- a/lib/ocsclient.php +++ b/lib/ocsclient.php @@ -49,6 +49,24 @@ class OC_OCSClient{ return($url); } + /** + * @brief Get the content of an OCS url call. + * @returns string of the response + * This function calls an OCS server and returns the response. It also sets a sane timeout + */ + private static function getOCSresponse($url) { + // set a sensible timeout of 10 sec to stay responsive even if the server is down. + $ctx = stream_context_create( + array( + 'http' => array( + 'timeout' => 10 + ) + ) + ); + $data=@file_get_contents($url, 0, $ctx); + return($data); + } + /** * @brief Get all the categories from the OCS server @@ -61,16 +79,7 @@ class OC_OCSClient{ return NULL; } $url=OC_OCSClient::getAppStoreURL().'/content/categories'; - - // set a sensible timeout of 10 sec to stay responsive even if the server is down. - $ctx = stream_context_create( - array( - 'http' => array( - 'timeout' => 10 - ) - ) - ); - $xml=@file_get_contents($url, 0, $ctx); + $xml=OC_OCSClient::getOCSresponse($url); if($xml==FALSE) { return NULL; } @@ -111,16 +120,7 @@ class OC_OCSClient{ $filterurl='&filter='.urlencode($filter); $url=OC_OCSClient::getAppStoreURL().'/content/data?categories='.urlencode($categoriesstring).'&sortmode=new&page='.urlencode($page).'&pagesize=100'.$filterurl.$version; $apps=array(); - - // set a sensible timeout of 10 sec to stay responsive even if the server is down. - $ctx = stream_context_create( - array( - 'http' => array( - 'timeout' => 10 - ) - ) - ); - $xml=@file_get_contents($url, 0, $ctx); + $xml=OC_OCSClient::getOCSresponse($url); if($xml==FALSE) { return NULL; @@ -159,16 +159,8 @@ class OC_OCSClient{ return NULL; } $url=OC_OCSClient::getAppStoreURL().'/content/data/'.urlencode($id); + $xml=OC_OCSClient::getOCSresponse($url); - // set a sensible timeout of 10 sec to stay responsive even if the server is down. - $ctx = stream_context_create( - array( - 'http' => array( - 'timeout' => 10 - ) - ) - ); - $xml=@file_get_contents($url, 0, $ctx); if($xml==FALSE) { OC_Log::write('core','Unable to parse OCS content',OC_Log::FATAL); return NULL; @@ -205,16 +197,7 @@ class OC_OCSClient{ return NULL; } $url=OC_OCSClient::getAppStoreURL().'/content/download/'.urlencode($id).'/'.urlencode($item); - - // set a sensible timeout of 10 sec to stay responsive even if the server is down. - $ctx = stream_context_create( - array( - 'http' => array( - 'timeout' => 10 - ) - ) - ); - $xml=@file_get_contents($url, 0, $ctx); + $xml=OC_OCSClient::getOCSresponse($url); if($xml==FALSE) { OC_Log::write('core','Unable to parse OCS content',OC_Log::FATAL); @@ -252,16 +235,7 @@ class OC_OCSClient{ $url=OC_OCSClient::getKBURL().'/knowledgebase/data?type=150&page='.$p.'&pagesize='.$s.$searchcmd; $kbe=array(); - - // set a sensible timeout of 10 sec to stay responsive even if the server is down. - $ctx = stream_context_create( - array( - 'http' => array( - 'timeout' => 10 - ) - ) - ); - $xml=@file_get_contents($url, 0, $ctx); + $xml=OC_OCSClient::getOCSresponse($url); if($xml==FALSE) { OC_Log::write('core','Unable to parse knowledgebase content',OC_Log::FATAL); -- GitLab From dc116b994d7749a2c0cb2c3c1f0f5ad8f028a3d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Mon, 8 Oct 2012 17:24:15 +0200 Subject: [PATCH 227/489] reenable hack to use CURRENT_TIMESTAMP for postgresql when creating the database, fixes oc-1852 TODO for OC5: use CURRENT_TIMESTAMP for all databases. mysql supports it as a default for DATETIME since 5.6.5 [1] as a fallback we could use 0000-01-01 00:00:00 everywhere [1] http://bugs.mysql.com/bug.php?id=27645 http://dev.mysql.com/doc/refman/5.0/en/timestamp-initialization.html http://www.postgresql.org/docs/8.1/static/functions-datetime.html http://www.sqlite.org/lang_createtable.html http://docs.oracle.com/cd/B19306_01/server.102/b14200/functions037.htm --- lib/db.php | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/lib/db.php b/lib/db.php index 256ae5b6bf3..54d9a63fbce 100644 --- a/lib/db.php +++ b/lib/db.php @@ -427,14 +427,14 @@ class OC_DB { $file2 = 'static://db_scheme'; $content = str_replace( '*dbname*', $CONFIG_DBNAME, $content ); $content = str_replace( '*dbprefix*', $CONFIG_DBTABLEPREFIX, $content ); - /* FIXME: REMOVE this commented code - * actually mysql, postgresql, sqlite and oracle support CURRENT_TIMESTAMP + /* FIXME: use CURRENT_TIMESTAMP for all databases. mysql supports it as a default for DATETIME since 5.6.5 [1] + * as a fallback we could use 0000-01-01 00:00:00 everywhere + * [1] http://bugs.mysql.com/bug.php?id=27645 * http://dev.mysql.com/doc/refman/5.0/en/timestamp-initialization.html * http://www.postgresql.org/docs/8.1/static/functions-datetime.html * http://www.sqlite.org/lang_createtable.html * http://docs.oracle.com/cd/B19306_01/server.102/b14200/functions037.htm */ - if( $CONFIG_DBTYPE == 'pgsql' ) { //mysql support it too but sqlite doesn't $content = str_replace( '0000-00-00 00:00:00', 'CURRENT_TIMESTAMP', $content ); } @@ -493,16 +493,17 @@ class OC_DB { $file2 = 'static://db_scheme'; $content = str_replace( '*dbname*', $previousSchema['name'], $content ); $content = str_replace( '*dbprefix*', $CONFIG_DBTABLEPREFIX, $content ); - /* FIXME: REMOVE this commented code - * actually mysql, postgresql, sqlite and oracle support CUURENT_TIMESTAMP + /* FIXME: use CURRENT_TIMESTAMP for all databases. mysql supports it as a default for DATETIME since 5.6.5 [1] + * as a fallback we could use 0000-01-01 00:00:00 everywhere + * [1] http://bugs.mysql.com/bug.php?id=27645 * http://dev.mysql.com/doc/refman/5.0/en/timestamp-initialization.html * http://www.postgresql.org/docs/8.1/static/functions-datetime.html * http://www.sqlite.org/lang_createtable.html * http://docs.oracle.com/cd/B19306_01/server.102/b14200/functions037.htm + */ if( $CONFIG_DBTYPE == 'pgsql' ) { //mysql support it too but sqlite doesn't $content = str_replace( '0000-00-00 00:00:00', 'CURRENT_TIMESTAMP', $content ); } - */ file_put_contents( $file2, $content ); $op = self::$schema->updateDatabase($file2, $previousSchema, array(), false); -- GitLab From 2923d24921eb7311715587ecc746bfc63fd0f676 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Mon, 8 Oct 2012 17:28:56 +0200 Subject: [PATCH 228/489] add data-id directly after upload/creation to the file list (bugfix for #1917) --- apps/files/ajax/newfolder.php | 8 +++++++- apps/files/ajax/upload.php | 2 +- apps/files/js/filelist.js | 3 ++- apps/files/js/files.js | 8 ++++++-- 4 files changed, 16 insertions(+), 5 deletions(-) diff --git a/apps/files/ajax/newfolder.php b/apps/files/ajax/newfolder.php index 34c2d0ca145..0f1f2f14eb0 100644 --- a/apps/files/ajax/newfolder.php +++ b/apps/files/ajax/newfolder.php @@ -20,7 +20,13 @@ if(strpos($foldername, '/')!==false) { } if(OC_Files::newFile($dir, stripslashes($foldername), 'dir')) { - OCP\JSON::success(array("data" => array())); + if ( $dir != '/') { + $path = $dir.'/'.$foldername; + } else { + $path = '/'.$foldername; + } + $id = OC_FileCache::getId($path); + OCP\JSON::success(array("data" => array('id'=>$id))); exit(); } diff --git a/apps/files/ajax/upload.php b/apps/files/ajax/upload.php index a4dcd80a2e2..e9d85ef005a 100644 --- a/apps/files/ajax/upload.php +++ b/apps/files/ajax/upload.php @@ -2,7 +2,7 @@ // Init owncloud - +error_log("upload!!!"); // Firefox and Konqueror tries to download application/json for me. --Arthur OCP\JSON::setContentTypeHeader('text/plain'); diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index 4bce4a624ef..c68b4a89c40 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -116,11 +116,12 @@ var FileList={ $('#emptyfolder').hide(); $('.file_upload_filename').removeClass('highlight'); }, - loadingDone:function(name){ + loadingDone:function(name, id){ var mime, tr=$('tr').filterAttr('data-file',name); tr.data('loading',false); mime=tr.data('mime'); tr.attr('data-mime',mime); + tr.attr('data-id', id); getMimeIcon(mime,function(path){ tr.find('td.filename').attr('style','background-image:url('+path+')'); }); diff --git a/apps/files/js/files.js b/apps/files/js/files.js index b36e46813dc..64919acb5dd 100644 --- a/apps/files/js/files.js +++ b/apps/files/js/files.js @@ -347,7 +347,7 @@ $(document).ready(function() { if(size==t('files','Pending')){ $('tr').filterAttr('data-file',file.name).find('td.filesize').text(file.size); } - FileList.loadingDone(file.name); + FileList.loadingDone(file.name, file.id); } else { $('#notification').text(t('files', response.data.message)); $('#notification').fadeIn(); @@ -377,7 +377,7 @@ $(document).ready(function() { if(size==t('files','Pending')){ $('tr').filterAttr('data-file',file.name).find('td.filesize').text(file.size); } - FileList.loadingDone(file.name); + FileList.loadingDone(file.name, file.id); } else { $('#notification').text(t('files', response.data.message)); $('#notification').fadeIn(); @@ -519,6 +519,7 @@ $(document).ready(function() { FileList.addFile(name,0,date,false,hidden); var tr=$('tr').filterAttr('data-file',name); tr.data('mime','text/plain').data('id',result.data.id); + tr.attr('data-id', result.data.id); getMimeIcon('text/plain',function(path){ tr.find('td.filename').attr('style','background-image:url('+path+')'); }); @@ -536,6 +537,8 @@ $(document).ready(function() { if (result.status == 'success') { var date=new Date(); FileList.addDir(name,0,date,hidden); + var tr=$('tr').filterAttr('data-file',name); + tr.attr('data-id', result.data.id); } else { OC.dialogs.alert(result.data.message, 'Error'); } @@ -572,6 +575,7 @@ $(document).ready(function() { FileList.addFile(localName,size,date,false,hidden); var tr=$('tr').filterAttr('data-file',localName); tr.data('mime',mime).data('id',id); + tr.attr('data-id', id); getMimeIcon(mime,function(path){ tr.find('td.filename').attr('style','background-image:url('+path+')'); }); -- GitLab From 277dd2b0a96dbb777358d965c469a4ab141ebd57 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Mon, 8 Oct 2012 17:32:04 +0200 Subject: [PATCH 229/489] remove debug output --- apps/files/ajax/upload.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files/ajax/upload.php b/apps/files/ajax/upload.php index e9d85ef005a..a4dcd80a2e2 100644 --- a/apps/files/ajax/upload.php +++ b/apps/files/ajax/upload.php @@ -2,7 +2,7 @@ // Init owncloud -error_log("upload!!!"); + // Firefox and Konqueror tries to download application/json for me. --Arthur OCP\JSON::setContentTypeHeader('text/plain'); -- GitLab From 32e2d7ef8f53d4ff80fc31c977464e9c9b960f06 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Mon, 8 Oct 2012 17:47:02 +0200 Subject: [PATCH 230/489] check if ID was assigned --- apps/files/js/filelist.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index c68b4a89c40..de733579072 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -121,7 +121,9 @@ var FileList={ tr.data('loading',false); mime=tr.data('mime'); tr.attr('data-mime',mime); - tr.attr('data-id', id); + if (id != null) { + tr.attr('data-id', id); + } getMimeIcon(mime,function(path){ tr.find('td.filename').attr('style','background-image:url('+path+')'); }); -- GitLab From 37579505628654cb86e6a453c07c05cbd2026b4f Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Mon, 8 Oct 2012 18:07:26 +0200 Subject: [PATCH 231/489] test data for archive tests --- tests/data/data.tar.gz | Bin 0 -> 4195 bytes tests/data/data.zip | Bin 0 -> 4705 bytes 2 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 tests/data/data.tar.gz create mode 100644 tests/data/data.zip diff --git a/tests/data/data.tar.gz b/tests/data/data.tar.gz new file mode 100644 index 0000000000000000000000000000000000000000..39f2cdada026961896bd35542d4a99c387b87fba GIT binary patch literal 4195 zcmV-p5S;HHiwFRbXmd{h1MOG`P*lsB22oHH5D-)lIPx4oBr`A|1~L)^BnJuOFyMhn z%$ylOvWkFYMU*56l9Pgx!-$}Q!bOsTBuN5F&Pn#L_wB3Q+I{(zZ#Ti37ZOrP%l z`|t1n{_a!L?F5pg8UA3%$jG1+6acuCMJdSq=kjj=WMxruNLd916jC0Lk(HB`mt_DH z{%B&mpi&?-8Ky!eUIPjLi`_r!|7#q7EB~Ls3C=%`NXFu&AW!HIngiBD5sCc!`By|K z?&cqEL@A<>3UL0BGV(|UK;{qP^Iz~M&%eQL?g5ZQq2d82BD@j+3J3vcJQk7wFhl|c zi-E8Zl?{{@o==f{g(z8fK1%IT3%40G>cLW>-iA)5Yu!LO| zca?%C#ZYl1^lsb$(b*Z684WmLDOmDuFP@0orGefR2!!RJ{8d*fUh1FEKaS`^l=Ohf zNRbFG|Gc~Z5&vNS!+Rd}-}b+Z%&-0buRy4=p$;1>A1nOIrh7@#1TMqj2iVUH|I!7c z^Wb7HMP1iyKMbG!P9bpp0O^u71-AdR`!K4DC3?b*$002%$du>|d7#Ny1`iJpDUjes z!JtW4DI(b=apoK!Z0)40sb=PxG@S@q#p;v>3=&GUd-l2?y~1ei#I2yM6%-&V^07Sa zcm&EhzQKFsm}q>3Gt#;EQG;w)lcqc>R9+-K&0W`^0dICSO`9`D>#FLNKCF3MX5tLR z-{&y@^#tdz^;etcmgh)QW?eb6d9$548Ro+3ZbJe}nR#z|2zTLJ$X(^RiLeiBa)BpsI=Y5 zZ3AA1w?xU-3W!R)qWiU@N4F}>wl6@@hJzD)zBjvG$I#Go!=IOT>?m(2qMKmQ78H@> zQ=mgKAnEtE#o3?~dR{Lb^3JYmPURzDT)x{`=NJ{p@Nv)}+V*VBYhm8PtEKOn63#}Z z7<`Mb2$SYJh~MhyKush#UE;43FO85)HOVn!)OcIh{SuS)P$)Fw#q4xf|7paw!N-|~ z*V+-cYF@Xa#%&d>7?^`rUD`)vlTrBoGGXWDM-yXNVK|YLcSE$@`^u;7N=NQuW0i?o9&UFz^yy% ztc^LoReWT;*1q1mtVzkesHPAWmY}oD8>?)dNZQ`X_;102Muv4I-{`;fUO=a(R7MxO zS>6}Nr<)t2w0p#IrR>g9p=`;z8{547m5^&OXUz?oR#pf1iHY}1x)^hz+C|Y%v!8r= zD^eU%*uJJ`=3C^L<%(DiXot0zr&=Pi?inR_^B&Rf7wEt`9uqE zh2Ns0sHwc}Zy$uGm%OCL>|eLGMl#f0*vqoPbz(w)yeDjJW!gMFsmu~p+E@f7S2;Fm z*3`-|S@m`rmVP87U9AgDw#@~UmPWBr?1cWeZ?w7iI-{b2iUQe&QurMNhhbipIAGrR=Wa)kbs`-AUKj}PJA)rN_P z46J5EiXAk)QgG7JX!`t@Yv+mSpcTJ>w|7+g?TCaeOy7@-0~J&i2iL_<8D|iFi!@Ho zrgI)@g2{?Haef;{AHOeCAvenMhNRcR`o;HdMCpg^#S3TGH~sbQFR(;Am6zZKaxWYVJLTGk3mvSsyC!l$v?(WkIVYj>oSl3u~ zF`>_x|8kmP+xN+feLam$U}<8Bet2#B;lfXrl`HczU&|$b%Jb{<;MWME!I2`1P2L9+ z@MeB$oKX!m?*bhCA17@c+h+15c~JJHKAT{NSEzNFm(F|)=5*HL-GiBRI9qAS>(Nqk3Cojw; zE?g?IUblXF@}aVbu=os7?WZpaZ@0NxC|$P}`#N>*r_xKJj_Vt1cvVTTtJKuqyUQvd zC~(ylC&qE;pzvSh-=`UxjXIjwZ}13APvb199De04VG09h4>7DT&C@l9&I}zf_PQA1 zD&fj7+ZLQ&1ub~41XEKgyp|_yG}LULXpA@#pWiF7K05hrq(AM>`sRwrVqXyR@;Q~t z#hEm(!p8zhily0%l3`49h{G&fanrcNFSB+?E-1?^|Dr9&m_!>p50(q3+M<@^8^~;a6gpi0O?>`oI?vFd zIk&6ZIF{QCV|0+-w;sYKb9~~{O*}JW1wDc{w?uJ8)t}B|{N#hCEB#}4OAo?%Et-+a zek5;xaen+NjeVb1V_m+P!N-hR-@FUsC9-6 z`iWSjSFz{mR;g)mTYNJ6vulR$ve@q-B);nlFfty#cSM!xHltf$S++81k1;cef_X3? zmX{-FzD(8ddQ!wV*wx<8bgom?*Pq#NPi7foU*H)1Fz_J3mzh-DWyx31v^BMJ6W{4N z{#$%wec459V{uSGvC7u+MnQi6Bh?BE{fg3?_UEf)XM^I|K3_kdfgSt&`Lprnz-3=( z0s7XwoM>Zi)`{#XE8+@a_!+d|XdtBL5nGh0*!t*V`1H+TM6UZjKXv6pzRj8h7KuGv z0UuSD{j~N*bl?A93ImVpi2B)1~K7+!YEA)+|Se<`JUN`>UBcSB2kZvoYVI zOm9lQ^ty&aGN%U?sBm#|K29!s6fWO`vsz|k@w?jc(ax>HU4D?2zd&@vfEP}bVs3ay zK$gpL*jdJKot_R7sMZnpWbd;)x29$Kcd^H=k)eHp*IRwD{6i`9`<*8w7#;=$2ZCaz z7|PlqPyR;z?y%m0ffbs)ANtlyNo!=3v<1;=rB4f5S#q4@Uv#HlDV*)i?t)ezQ5Dg$ zc*Vhyx#vgJZ{~A6E$T0iC@5&5_B?y#C|ny}EUQ=<^udHF{aN+%l{)&Y!A~Rg_{s!5 zrDmj8{$n43Ir{=d{;-30kJ^5UPUCwpbzLJ5V2ENb#I28G3|*W{=A!C~?(YN-{^s~9 zQRs|=mwW|jlJ!6p2N%2yyRhwsDNJ9V#piR2b*SsNal9KHfH0BY16Wq2vNF>5=3GYX z$>4}n3gpsIVCGrfkYzwT1`kv1{l2cipSU`=2(onrFA8-=?I| z=2pu!89p!UN4WuOrK36#)cJ$-Pv8B^O`{!N^cci(8@EfO&wOP)V)eu_QjRB3&RpQ> zII`=Qp7Dm`0nu2Xj!$yvvub>;*crWmDvKA40ULTYqm?^9E|Mp&o4DR;rqO5O=w#6T&>p>K8!UYGHkQWnhxawEykl{XMk z#mm3As4x1#d%C9nrto{)qmg_pNOtzVYWxK{{#*9fCovqyL|PNFA_j|VuDpL&OqMK? zu(2q1ZE@bdt;27_IWRJ{Y%8%ow=*+PZF{!GU}Zm@9~*Doa>LO=vgU~@yUdfgbBD$1 z&lX(^y>^6SQ8Lb9bd?Ud77n+jH(WFNWSZ%1-k*~AE-o!UVam3pn%(Dh4Tld*9M`WTL;HozedH!OT_hh4^O!HPg#pDRzLkP=jHK=Lc3B8mS zVxV|hMN{)9f=#GBBP8Tac%P*vd+0k+VY%i8`;Mi85Fc@2dl5Mlr}9Z*p^!_T#I030 zL-UHgUc}#coKyUl%G{KYkg||`t{A-VHB0@$LcQ8ty&@aJ8Q~7C(WH<=Iqo&D+~^a8 znO3R6mFfNxhYukq4Nt21vG-TfhJ98LChfn)B7U6BmaL?Bgt0cCKiB76{c;FV2JFP?BtnQ+lbR3QhoIdR({@t^l#*p#~Gm>;d;Nj-Vyan6wW5Xu|xrROu4hGi`tHA$w z?qftvW=~}}nep-r)+9L?D~*wRALESuc1HUKs1Gco3O|-)Mo_*B4TTvANi!5n+ly>N zylyDO5tp%1!KNx}r4hYx|3ma^v2IL)bV)~4vq(b4pyEDr-v=Xs>2y{{=^>8lfMM`n z-~;nzvx`sd#RThz+qpe?*7h$ZQWeEEPsE758n>hmUS3GfTX5O)yf3WoM}TF3yO@2( z-nEL{!R1DVlVaW)Xt9pViqA50TQ)qI9|g8s3N&Yq(qbQcwJv!`ui1Ee$mB~7i+6dY z*1@&?Z$@v{5BqAroVqmAWcQ7+S{);-;<4mu?f@QhOt%;;Kptb~iR-iTQTF+@VtGDJPdrLyq5f(!`j0unKB%mr^M(!T(bhQjM3)LNO{@wH6 tAAR??i~sxmpS+xc;;-}nzXHGR|Nh+ff4}exzwqb9zX4?)7-aw+001B{OY{H$ literal 0 HcmV?d00001 diff --git a/tests/data/data.zip b/tests/data/data.zip new file mode 100644 index 0000000000000000000000000000000000000000..eccef53eb4ee2d8694102fe36c4cb063091b8374 GIT binary patch literal 4705 zcmeHLXHZnzvK}%LC5l9yEb*){izv}u{*RI{4wmJ?j5#ZJ+1FdClR@{?Znc6;Zd>?VZHRyCZg=NVe5OG>hb z{Mj{j)jJX;tm%?G%)51^sd_jhdEHHPkc3&xnxob8{Nk(~bAk?!;BW^%sa3{q%}01M zz{HdzI6JnuTM$^F&XrK!o>~e%e97fW7YHH2e+sgSYFd}Con4HewtvvKB;MQ*$b#Zra=kam0 zwd3`0bNDx-e{nI9+M3FwMD({vq^c?kI+z%P@dt$Xm=(bsUxo>|5II#nLW~6v+D2gZ zcRW;#Aei$rw~i&pp5cpmc^|512-S7Bhx%A~*#Uffe0Uw*oFO(=9(KI$UJe<1Pv|kH zZB-Ry^?WmTGaL<*laJetDb3|5=DZdsmybvoqkGT#vUX%;4Z_9bo=P@&dVpL z1CJfOsgnJ&{mGI7eW0B4GLu+gS>K%7+p=g#UA^2rdwx1bCMKpD)WwkeIbN@c*945M zUai};jZW?1@v6%rC${rdX>hohM#-fks zx=%>_i(7_r=-q4_ewZ1RXjSmjlf$5}>-~goAZ?{-{lH+lL|nGU_q3*HK6+x;tBDEG zt#n%zh7Qj9Se_i65mfFMi)|KgO?R~Ux7o%TJPSxd8{_B-PDc`2*>?B@6yXYe~t*L;0#QKdQdQeHC& zZ)h=3$IENlg=VNz4Mp2am}1cc730?MiK>l0OZzd~%>GQkd{eeXHt9-!VYxwxUMVYh zQ7L-7F$WAPO4Q1lrlqE7P=Df^se9i+JlQjjq2Xvue`|!cDd<>)O;Ut;`QH8Vg3b_%iCX3$-9#Y3>x?$dA9 zPu=q!4H=mH{o&(pV$-i|kUymto4h40oQ`J-xIjV2FbaynCqA;wSt80QK^IzIf1tdf z&JffEkKfU`^suu#-}~{JBZ>3NV6{Z7=ekt;r$o6tktiHim!6NotsPfo>CTQ+N5s*O zoRBV&ORZ+stWs=)C26RV^xhZ3Lpx{tAlND-5v&b)KWoXac2Iri{Pfc5nuw#7bHQD5 zN4>T}=Y%NsKC{r_T$kEwS?+Ac0+Jo-zR)TI zU&4+8;i^Bg#SQS<+(vm1vx5(sGh*kD@|?cyy>2}$5{I5_jjeNd&G#tJX8FEh@!9Kt zzJ|!n*7D+9<1PSgFf}*9G@>KYU&>b)u(V}?PXb3vm@?9l+6>R~G{=5yOC#rc2OaA( zYSm-f$M06ofSb{Wdn=7Rzl0dnXuWP)L%$#^n|4W{DO=^) z`T6vq*3%M-+zlb<*NVT~udGo00IYegAQC+w1f=8y*0Y{>oO5iy7iR@>?zzkU3KVrU zyF9Jr>o`m5&N=uc_Ss$8sm}=0RorBfZS9FsL`=*~rY0`z z4BaizgcA0Cbn&DrMK@ z?&qQ#4+l|jQE=6jWkQCrnGb=~qcQl2P)f(iZXoVHNKOyL_o$fy(|6%q?cBU_opjp#J*~H^LE5gjCM={z@(OiPQNEBW(`2CD zRR7BSX^X&qSQ_cC#48?&>s+Lw#Z0-;CH??b2zV|~3z;kkw?$_T)(up>(i7B!!w zszQ;`ROy)ASF4~>PrM*Gagx9x1vdh2Y|4R$+;|s#wjDOW8CEK}%j1Mox$S(u z15v7`#}-Be)b9GRZ1IGxIFqNq{$f)6*O1*yp3i>PF2eZvp%s#p6cit_8d76~=3ER> zSOh_)BVWy&n>>Y5o8j2g`+4R5eDM?%4P}#LYe*AWT08heE%&ON{A1NZV{Apmi1%D|rzNmG zrba-dIqZuLPJVUkCv*p5U*ngSTv~Iwn%I!AU-^dsrUUZ|5r$~usCycSSY3ZV|<#^3jqM=gX3Lq^Pm+p<`dW9 z9P4G&L@O$KZ(iJKXFZmVKGc25yxh39*ZB2_H9x(d-B-ayBe8qRvEGNoh?yV3jk@s` zb#odiRNCX*`Fkrw)P}j>I6<0FL4Br=o5E9cYT6f;ci561bkOrG&&s5=vvaA1v>4Q3 zgKV_n((Ixb&Gl9>)0p00CEp|R)_dhjSjcICQ) zx7O|(vwUCL&ySgP3*WxjD(g&Sfpc2V=8FYx;)!DxI@3wWl0uGzpi=!tHCL=?(x=JBj zzZb9MCXmyyj;0sIF4eR>A0DXj;;G^`HmGqLvA=$!%wSBhxVD2b;XXgO*;{Nikr>fH z6CxPw(u_u4S{m@Q<;sxp=cYWl%ibkXWgTfvO@7RiVzGXTfI3yKj^_7RYt85u`s*)b zXAGp|m8b8RjI@#kbhnYq5(Joms^EmnM|=e8q2zHHf)AY37UP~uPx){6TJjHFb+lR> z_QW*dLwsy17aBpG2~@`~-zwp~iA$}sxqwvB8bKbUK?S?dWPZN$la=ouIVJM@qA)=fz!4+r?R$r=AYcEx+ zGIrwvPAINtMv#Fhr$u+^ibS!&C)&=%Y9n*ZRU9dxsfT=Y%`!z;hm z7REw;uq;PwvG4(E_{>?ap|sATAZmw=b>_hqBe6BL&0rFQb&@jjmLiGY3vir+hu}?e`sV*!Xx$wnL4IKwF4Hd4#l9E@9 zYTqN;F8WDyzLgO8H#RF0pAq)0zv@~IRQkN5vNve<9jjH&1}N!s;;V1rNN1UEuv8&T zM@Ex^Gz$>-n|VCZtjC#Ls%%(Jj(>l$B>z&LlZL!hf2XVF=qRuk1PYIVz5Q6GdU^E4 zXpxH>)(E*o!yOrg^Xq76+8;P6$8NT2f<1H2G>zm&OS1fVpsle6%Qsl*sc+Lon?J{4 zhBAPvqNYNnoaL*(pTFV|M|&vbXV1Z3OR6ZREdn zkz1s{Q%3$o!iXe*kD*fkMEVb%1Os`ill&#*-$?`iD()6C9)tWpgo6JK@~^AB1NhG> d+sSVs|J_Z02Zwj7E&y;bk2IzR5{ld1KL9BkV`~5a literal 0 HcmV?d00001 -- GitLab From 06d00af9f89d9c858b6f7a3fb11de85d4da8d6fc Mon Sep 17 00:00:00 2001 From: Victor Dubiniuk Date: Mon, 8 Oct 2012 22:03:16 +0300 Subject: [PATCH 232/489] Prevent closing sharing dialog on month adjustment. Fixes oc-1884 --- core/js/share.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/core/js/share.js b/core/js/share.js index 75448bfe208..ab6708c7c12 100644 --- a/core/js/share.js +++ b/core/js/share.js @@ -370,7 +370,10 @@ $(document).ready(function() { }); $(this).click(function(event) { - if (OC.Share.droppedDown && !($(event.target).hasClass('drop')) && $('#dropdown').has(event.target).length === 0) { + var target = $(event.target); + var isMatched = !target.hasClass('drop') && !target.hasClass('ui-datepicker-next') + && !target.hasClass('ui-datepicker-prev') && !target.hasClass('ui-icon'); + if (OC.Share.droppedDown && isMatched && $('#dropdown').has(event.target).length === 0) { OC.Share.hideDropDown(); } }); -- GitLab From a657bfa369c6cf110f0258e085ec201d9a671210 Mon Sep 17 00:00:00 2001 From: Georg Ehrke Date: Mon, 8 Oct 2012 21:28:21 +0200 Subject: [PATCH 233/489] fix remote.php for our favorite OS - Windows --- remote.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/remote.php b/remote.php index 9d9903338a6..137bd774b52 100644 --- a/remote.php +++ b/remote.php @@ -29,7 +29,11 @@ switch ($app) { default: OC_Util::checkAppEnabled($app); OC_App::loadApp($app); - $file = '/' . OC_App::getAppPath($app) .'/'. $parts[1]; + if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') { + $file = OC_App::getAppPath($app) .'/'. $parts[1]; + }else{ + $file = '/' . OC_App::getAppPath($app) .'/'. $parts[1]; + } break; } $baseuri = OC::$WEBROOT . '/remote.php/'.$service.'/'; -- GitLab From 71ff6382b57a51f2428b5205907248a9fbdea8ec Mon Sep 17 00:00:00 2001 From: Victor Dubiniuk Date: Mon, 8 Oct 2012 22:37:11 +0300 Subject: [PATCH 234/489] Prevent closing sharing dialog on picking the date --- core/js/share.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/js/share.js b/core/js/share.js index ab6708c7c12..7968edebb7a 100644 --- a/core/js/share.js +++ b/core/js/share.js @@ -371,8 +371,8 @@ $(document).ready(function() { $(this).click(function(event) { var target = $(event.target); - var isMatched = !target.hasClass('drop') && !target.hasClass('ui-datepicker-next') - && !target.hasClass('ui-datepicker-prev') && !target.hasClass('ui-icon'); + var isMatched = !target.is('.drop, .ui-datepicker-next, .ui-datepicker-prev, .ui-icon') + && !target.closest('#ui-datepicker-div').length; if (OC.Share.droppedDown && isMatched && $('#dropdown').has(event.target).length === 0) { OC.Share.hideDropDown(); } -- GitLab From 33d1906f23155cd3656977f38da27e1e77ae17a3 Mon Sep 17 00:00:00 2001 From: Michael Gapczynski Date: Mon, 8 Oct 2012 16:05:48 -0400 Subject: [PATCH 235/489] Fix getting file info for subfolders in shared folders --- lib/files.php | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/lib/files.php b/lib/files.php index ac999a9bd15..ad716115dc7 100644 --- a/lib/files.php +++ b/lib/files.php @@ -47,8 +47,14 @@ class OC_Files { $info = OCP\Share::getItemsSharedWith('file', OC_Share_Backend_File::FORMAT_FILE_APP_ROOT); } else { - $path = substr($path, 7); - $info = OCP\Share::getItemSharedWith('file', $path, OC_Share_Backend_File::FORMAT_FILE_APP); + $pos = strpos($path, '/', 8); + // Get shared folder name + if ($pos !== false) { + $itemTarget = substr($path, 7, $pos - 7); + } else { + $itemTarget = substr($path, 7); + } + $info = OCP\Share::getItemSharedWith('file', $itemTarget, OC_Share_Backend_File::FORMAT_FILE_APP, array('folder' => $path)); } $info = $info[0]; } -- GitLab From 025d308929263723887c271cf748bd4e5c71697c Mon Sep 17 00:00:00 2001 From: Michael Gapczynski Date: Mon, 8 Oct 2012 17:21:52 -0400 Subject: [PATCH 236/489] Actually fix shared webdav access --- lib/files.php | 23 +++++++---------------- 1 file changed, 7 insertions(+), 16 deletions(-) diff --git a/lib/files.php b/lib/files.php index ad716115dc7..47583cf6dbf 100644 --- a/lib/files.php +++ b/lib/files.php @@ -43,22 +43,13 @@ class OC_Files { */ public static function getFileInfo($path) { if (($path == '/Shared' || substr($path, 0, 8) == '/Shared/') && OC_App::isEnabled('files_sharing')) { - if ($path == '/Shared') { - $info = OCP\Share::getItemsSharedWith('file', OC_Share_Backend_File::FORMAT_FILE_APP_ROOT); - } - else { - $pos = strpos($path, '/', 8); - // Get shared folder name - if ($pos !== false) { - $itemTarget = substr($path, 7, $pos - 7); - } else { - $itemTarget = substr($path, 7); - } - $info = OCP\Share::getItemSharedWith('file', $itemTarget, OC_Share_Backend_File::FORMAT_FILE_APP, array('folder' => $path)); - } - $info = $info[0]; - } - else { + $info['size'] = OC_Filesystem::filesize($path); + $info['mtime'] = OC_Filesystem::filemtime($path); + $info['ctime'] = OC_Filesystem::filectime($path); + $info['mimetype'] = OC_Filesystem::getMimeType($path); + $info['encrypted'] = false; + $info['versioned'] = false; + } else { $info = OC_FileCache::get($path); } return $info; -- GitLab From 035d83fe91aec5580c5b62b703a324b506e5c9b7 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Mon, 8 Oct 2012 23:37:50 +0200 Subject: [PATCH 237/489] don't use the workaround for shared files on the /Shared folder --- lib/files.php | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/lib/files.php b/lib/files.php index 47583cf6dbf..2b2b8b42dc4 100644 --- a/lib/files.php +++ b/lib/files.php @@ -43,12 +43,16 @@ class OC_Files { */ public static function getFileInfo($path) { if (($path == '/Shared' || substr($path, 0, 8) == '/Shared/') && OC_App::isEnabled('files_sharing')) { - $info['size'] = OC_Filesystem::filesize($path); - $info['mtime'] = OC_Filesystem::filemtime($path); - $info['ctime'] = OC_Filesystem::filectime($path); - $info['mimetype'] = OC_Filesystem::getMimeType($path); - $info['encrypted'] = false; - $info['versioned'] = false; + if ($path == '/Shared') { + list($info) = OCP\Share::getItemsSharedWith('file', OC_Share_Backend_File::FORMAT_FILE_APP_ROOT); + }else{ + $info['size'] = OC_Filesystem::filesize($path); + $info['mtime'] = OC_Filesystem::filemtime($path); + $info['ctime'] = OC_Filesystem::filectime($path); + $info['mimetype'] = OC_Filesystem::getMimeType($path); + $info['encrypted'] = false; + $info['versioned'] = false; + } } else { $info = OC_FileCache::get($path); } -- GitLab From 67a4aa7cf00f95239e331ffe3930e88561d53b40 Mon Sep 17 00:00:00 2001 From: Frank Karlitschek Date: Mon, 8 Oct 2012 23:58:17 +0200 Subject: [PATCH 238/489] RC 3 --- lib/util.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/util.php b/lib/util.php index 6707d67638e..ff82ed255d0 100755 --- a/lib/util.php +++ b/lib/util.php @@ -81,7 +81,7 @@ class OC_Util { */ public static function getVersion() { // hint: We only can count up. So the internal version number of ownCloud 4.5 will be 4.9.0. This is not visible to the user - return array(4,87,12); + return array(4,88,12); } /** @@ -89,7 +89,7 @@ class OC_Util { * @return string */ public static function getVersionString() { - return '4.5 RC 2'; + return '4.5 RC 3'; } /** -- GitLab From f1fc73ea5b35eb7a260ad6f4cf267555c11b5c48 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Tue, 9 Oct 2012 02:07:41 +0200 Subject: [PATCH 239/489] [tx-robot] updated from transifex --- apps/files/l10n/pt_PT.php | 34 ++++----- l10n/af/settings.po | 20 +++-- l10n/ar/settings.po | 20 +++-- l10n/ar_SA/settings.po | 20 +++-- l10n/bg_BG/settings.po | 20 +++-- l10n/ca/settings.po | 22 +++--- l10n/cs_CZ/settings.po | 22 +++--- l10n/da/settings.po | 22 +++--- l10n/de/settings.po | 22 +++--- l10n/el/settings.po | 22 +++--- l10n/eo/settings.po | 20 +++-- l10n/es/settings.po | 22 +++--- l10n/es_AR/settings.po | 22 +++--- l10n/et_EE/settings.po | 20 +++-- l10n/eu/settings.po | 22 +++--- l10n/eu_ES/settings.po | 20 +++-- l10n/fa/settings.po | 20 +++-- l10n/fi/settings.po | 20 +++-- l10n/fi_FI/settings.po | 22 +++--- l10n/fr/settings.po | 22 +++--- l10n/gl/settings.po | 20 +++-- l10n/he/settings.po | 20 +++-- l10n/hi/settings.po | 20 +++-- l10n/hr/settings.po | 20 +++-- l10n/hu_HU/settings.po | 20 +++-- l10n/hy/settings.po | 20 +++-- l10n/ia/settings.po | 20 +++-- l10n/id/settings.po | 20 +++-- l10n/id_ID/settings.po | 20 +++-- l10n/it/settings.po | 22 +++--- l10n/ja_JP/settings.po | 22 +++--- l10n/ko/settings.po | 20 +++-- l10n/ku_IQ/settings.po | 20 +++-- l10n/lb/settings.po | 20 +++-- l10n/lt_LT/settings.po | 20 +++-- l10n/lv/settings.po | 20 +++-- l10n/mk/settings.po | 20 +++-- l10n/ms_MY/settings.po | 20 +++-- l10n/nb_NO/settings.po | 20 +++-- l10n/nl/settings.po | 22 +++--- l10n/nn_NO/settings.po | 20 +++-- l10n/oc/settings.po | 22 +++--- l10n/pl/settings.po | 20 +++-- l10n/pl_PL/settings.po | 20 +++-- l10n/pt_BR/settings.po | 20 +++-- l10n/pt_PT/files.po | 110 ++++++++++++++-------------- l10n/pt_PT/settings.po | 22 +++--- l10n/ro/settings.po | 22 +++--- l10n/ru/settings.po | 20 +++-- l10n/ru_RU/settings.po | 20 +++-- l10n/sk_SK/settings.po | 22 +++--- l10n/sl/settings.po | 22 +++--- l10n/so/settings.po | 20 +++-- l10n/sr/settings.po | 20 +++-- l10n/sr@latin/settings.po | 20 +++-- l10n/sv/settings.po | 22 +++--- l10n/templates/core.pot | 12 +-- l10n/templates/files.pot | 74 +++++++++---------- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 16 ++-- l10n/templates/settings.pot | 16 ++-- l10n/templates/user_ldap.pot | 2 +- l10n/th_TH/settings.po | 22 +++--- l10n/tr/settings.po | 20 +++-- l10n/uk/settings.po | 20 +++-- l10n/vi/settings.po | 20 +++-- l10n/zh_CN.GB2312/settings.po | 22 +++--- l10n/zh_CN/settings.po | 22 +++--- l10n/zh_TW/settings.po | 20 +++-- 72 files changed, 892 insertions(+), 644 deletions(-) diff --git a/apps/files/l10n/pt_PT.php b/apps/files/l10n/pt_PT.php index a2b53824e8f..eaea703c858 100644 --- a/apps/files/l10n/pt_PT.php +++ b/apps/files/l10n/pt_PT.php @@ -1,6 +1,6 @@ "Sem erro, ficheiro enviado com sucesso", -"The uploaded file exceeds the upload_max_filesize directive in php.ini" => "O ficheiro enviado escede o diretivo upload_max_filesize no php.ini", +"The uploaded file exceeds the upload_max_filesize directive in php.ini" => "O ficheiro enviado excede a directiva upload_max_filesize no php.ini", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "O ficheiro enviado excede o diretivo MAX_FILE_SIZE especificado no formulário HTML", "The uploaded file was only partially uploaded" => "O ficheiro enviado só foi enviado parcialmente", "No file was uploaded" => "Não foi enviado nenhum ficheiro", @@ -10,24 +10,24 @@ "Unshare" => "Deixar de partilhar", "Delete" => "Apagar", "Rename" => "Renomear", -"already exists" => "Já existe", +"already exists" => "já existe", "replace" => "substituir", "suggest name" => "Sugira um nome", "cancel" => "cancelar", -"replaced" => "substituido", +"replaced" => "substituído", "undo" => "desfazer", "with" => "com", "unshared" => "não partilhado", "deleted" => "apagado", "generating ZIP-file, it may take some time." => "a gerar o ficheiro ZIP, poderá demorar algum tempo.", -"Unable to upload your file as it is a directory or has 0 bytes" => "Não é possivel fazer o upload do ficheiro devido a ser uma pasta ou ter 0 bytes", -"Upload Error" => "Erro no upload", +"Unable to upload your file as it is a directory or has 0 bytes" => "Não é possível fazer o envio do ficheiro devido a ser uma pasta ou ter 0 bytes", +"Upload Error" => "Erro no envio", "Pending" => "Pendente", "1 file uploading" => "A enviar 1 ficheiro", "files uploading" => "ficheiros a serem enviados", -"Upload cancelled." => "O upload foi cancelado.", +"Upload cancelled." => "O envio foi cancelado.", "File upload is in progress. Leaving the page now will cancel the upload." => "Envio de ficheiro em progresso. Irá cancelar o envio se sair da página agora.", -"Invalid name, '/' is not allowed." => "nome inválido, '/' não permitido.", +"Invalid name, '/' is not allowed." => "Nome inválido, '/' não permitido.", "files scanned" => "ficheiros analisados", "error while scanning" => "erro ao analisar", "Name" => "Nome", @@ -37,21 +37,21 @@ "folders" => "pastas", "file" => "ficheiro", "files" => "ficheiros", -"seconds ago" => "à segundos", -"minute ago" => "à um minuto", -"minutes ago" => "à minutos", +"seconds ago" => "há segundos", +"minute ago" => "há um minuto", +"minutes ago" => "há minutos", "today" => "hoje", "yesterday" => "ontem", -"days ago" => "à dias", +"days ago" => "há dias", "last month" => "mês passado", -"months ago" => "à meses", +"months ago" => "há meses", "last year" => "ano passado", -"years ago" => "à anos", +"years ago" => "há anos", "File handling" => "Manuseamento de ficheiros", "Maximum upload size" => "Tamanho máximo de envio", "max. possible: " => "max. possivel: ", "Needed for multi-file and folder downloads." => "Necessário para multi download de ficheiros e pastas", -"Enable ZIP-download" => "Ativar dowload de ficheiros ZIP", +"Enable ZIP-download" => "Permitir descarregar em ficheiro ZIP", "0 is unlimited" => "0 é ilimitado", "Maximum input size for ZIP files" => "Tamanho máximo para ficheiros ZIP", "Save" => "Guardar", @@ -60,12 +60,12 @@ "Folder" => "Pasta", "From url" => "Do endereço", "Upload" => "Enviar", -"Cancel upload" => "Cancelar upload", -"Nothing in here. Upload something!" => "Vazio. Envia alguma coisa!", +"Cancel upload" => "Cancelar envio", +"Nothing in here. Upload something!" => "Vazio. Envie alguma coisa!", "Share" => "Partilhar", "Download" => "Transferir", "Upload too large" => "Envio muito grande", -"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Os ficheiro que estás a tentar enviar excedem o tamanho máximo de envio neste servidor.", +"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Os ficheiro que está a tentar enviar excedem o tamanho máximo de envio neste servidor.", "Files are being scanned, please wait." => "Os ficheiros estão a ser analisados, por favor aguarde.", "Current scanning" => "Análise actual" ); diff --git a/l10n/af/settings.po b/l10n/af/settings.po index f4b38781082..498430daa78 100644 --- a/l10n/af/settings.po +++ b/l10n/af/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-19 02:02+0200\n" -"PO-Revision-Date: 2012-09-19 00:03+0000\n" +"POT-Creation-Date: 2012-10-09 02:03+0200\n" +"PO-Revision-Date: 2012-10-09 00:04+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (http://www.transifex.com/projects/p/owncloud/language/af/)\n" "MIME-Version: 1.0\n" @@ -76,11 +76,11 @@ msgstr "" msgid "Unable to remove user from group %s" msgstr "" -#: js/apps.js:27 js/apps.js:61 +#: js/apps.js:28 js/apps.js:65 msgid "Disable" msgstr "" -#: js/apps.js:27 js/apps.js:50 +#: js/apps.js:28 js/apps.js:54 msgid "Enable" msgstr "" @@ -88,7 +88,7 @@ msgstr "" msgid "Saving..." msgstr "" -#: personal.php:46 personal.php:47 +#: personal.php:47 personal.php:48 msgid "__language_name__" msgstr "" @@ -183,15 +183,19 @@ msgstr "" msgid "Add your App" msgstr "" -#: templates/apps.php:26 +#: templates/apps.php:11 +msgid "More Apps" +msgstr "" + +#: templates/apps.php:27 msgid "Select an App" msgstr "" -#: templates/apps.php:29 +#: templates/apps.php:31 msgid "See application page at apps.owncloud.com" msgstr "" -#: templates/apps.php:30 +#: templates/apps.php:32 msgid "-licensed by " msgstr "" diff --git a/l10n/ar/settings.po b/l10n/ar/settings.po index 7a46fd4db26..ebaf57acc9f 100644 --- a/l10n/ar/settings.po +++ b/l10n/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: 2012-09-19 02:02+0200\n" -"PO-Revision-Date: 2012-09-19 00:03+0000\n" +"POT-Creation-Date: 2012-10-09 02:03+0200\n" +"PO-Revision-Date: 2012-10-09 00:04+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" @@ -78,11 +78,11 @@ msgstr "" msgid "Unable to remove user from group %s" msgstr "" -#: js/apps.js:27 js/apps.js:61 +#: js/apps.js:28 js/apps.js:65 msgid "Disable" msgstr "" -#: js/apps.js:27 js/apps.js:50 +#: js/apps.js:28 js/apps.js:54 msgid "Enable" msgstr "" @@ -90,7 +90,7 @@ msgstr "" msgid "Saving..." msgstr "" -#: personal.php:46 personal.php:47 +#: personal.php:47 personal.php:48 msgid "__language_name__" msgstr "__language_name__" @@ -185,15 +185,19 @@ msgstr "" msgid "Add your App" msgstr "" -#: templates/apps.php:26 +#: templates/apps.php:11 +msgid "More Apps" +msgstr "" + +#: templates/apps.php:27 msgid "Select an App" msgstr "إختر تطبيقاً" -#: templates/apps.php:29 +#: templates/apps.php:31 msgid "See application page at apps.owncloud.com" msgstr "" -#: templates/apps.php:30 +#: templates/apps.php:32 msgid "-licensed by " msgstr "" diff --git a/l10n/ar_SA/settings.po b/l10n/ar_SA/settings.po index a16336b7d75..179bb717566 100644 --- a/l10n/ar_SA/settings.po +++ b/l10n/ar_SA/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-19 02:02+0200\n" -"PO-Revision-Date: 2012-09-19 00:03+0000\n" +"POT-Creation-Date: 2012-10-09 02:03+0200\n" +"PO-Revision-Date: 2012-10-09 00:04+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (Saudi Arabia) (http://www.transifex.com/projects/p/owncloud/language/ar_SA/)\n" "MIME-Version: 1.0\n" @@ -76,11 +76,11 @@ msgstr "" msgid "Unable to remove user from group %s" msgstr "" -#: js/apps.js:27 js/apps.js:61 +#: js/apps.js:28 js/apps.js:65 msgid "Disable" msgstr "" -#: js/apps.js:27 js/apps.js:50 +#: js/apps.js:28 js/apps.js:54 msgid "Enable" msgstr "" @@ -88,7 +88,7 @@ msgstr "" msgid "Saving..." msgstr "" -#: personal.php:46 personal.php:47 +#: personal.php:47 personal.php:48 msgid "__language_name__" msgstr "" @@ -183,15 +183,19 @@ msgstr "" msgid "Add your App" msgstr "" -#: templates/apps.php:26 +#: templates/apps.php:11 +msgid "More Apps" +msgstr "" + +#: templates/apps.php:27 msgid "Select an App" msgstr "" -#: templates/apps.php:29 +#: templates/apps.php:31 msgid "See application page at apps.owncloud.com" msgstr "" -#: templates/apps.php:30 +#: templates/apps.php:32 msgid "-licensed by " msgstr "" diff --git a/l10n/bg_BG/settings.po b/l10n/bg_BG/settings.po index 52bb83794bc..09ad3dd9b37 100644 --- a/l10n/bg_BG/settings.po +++ b/l10n/bg_BG/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: 2012-09-19 02:02+0200\n" -"PO-Revision-Date: 2012-09-19 00:03+0000\n" +"POT-Creation-Date: 2012-10-09 02:03+0200\n" +"PO-Revision-Date: 2012-10-09 00:03+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" @@ -79,11 +79,11 @@ msgstr "" msgid "Unable to remove user from group %s" msgstr "" -#: js/apps.js:27 js/apps.js:61 +#: js/apps.js:28 js/apps.js:65 msgid "Disable" msgstr "Изключване" -#: js/apps.js:27 js/apps.js:50 +#: js/apps.js:28 js/apps.js:54 msgid "Enable" msgstr "Включване" @@ -91,7 +91,7 @@ msgstr "Включване" msgid "Saving..." msgstr "Записване..." -#: personal.php:46 personal.php:47 +#: personal.php:47 personal.php:48 msgid "__language_name__" msgstr "" @@ -186,15 +186,19 @@ msgstr "" msgid "Add your App" msgstr "" -#: templates/apps.php:26 +#: templates/apps.php:11 +msgid "More Apps" +msgstr "" + +#: templates/apps.php:27 msgid "Select an App" msgstr "Изберете програма" -#: templates/apps.php:29 +#: templates/apps.php:31 msgid "See application page at apps.owncloud.com" msgstr "" -#: templates/apps.php:30 +#: templates/apps.php:32 msgid "-licensed by " msgstr "" diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index bcfdd5a31c4..e3e5b1c3f6d 100644 --- a/l10n/ca/settings.po +++ b/l10n/ca/settings.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-22 01:14+0200\n" -"PO-Revision-Date: 2012-09-21 22:01+0000\n" -"Last-Translator: Josep Tomàs \n" +"POT-Creation-Date: 2012-10-09 02:03+0200\n" +"PO-Revision-Date: 2012-10-09 00:04+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" @@ -80,11 +80,11 @@ msgstr "No es pot afegir l'usuari al grup %s" msgid "Unable to remove user from group %s" msgstr "No es pot eliminar l'usuari del grup %s" -#: js/apps.js:27 js/apps.js:61 +#: js/apps.js:28 js/apps.js:65 msgid "Disable" msgstr "Desactiva" -#: js/apps.js:27 js/apps.js:50 +#: js/apps.js:28 js/apps.js:54 msgid "Enable" msgstr "Activa" @@ -92,7 +92,7 @@ msgstr "Activa" msgid "Saving..." msgstr "S'està desant..." -#: personal.php:46 personal.php:47 +#: personal.php:47 personal.php:48 msgid "__language_name__" msgstr "Català" @@ -187,15 +187,19 @@ msgstr "Desenvolupat per la -licensed by " msgstr "-propietat de " diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po index 420e26a8b37..435c9509379 100644 --- a/l10n/cs_CZ/settings.po +++ b/l10n/cs_CZ/settings.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-20 02:05+0200\n" -"PO-Revision-Date: 2012-09-19 17:40+0000\n" -"Last-Translator: Tomáš Chvátal \n" +"POT-Creation-Date: 2012-10-09 02:03+0200\n" +"PO-Revision-Date: 2012-10-09 00:04+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" @@ -82,11 +82,11 @@ msgstr "Nelze přidat uživatele do skupiny %s" msgid "Unable to remove user from group %s" msgstr "Nelze odstranit uživatele ze skupiny %s" -#: js/apps.js:27 js/apps.js:61 +#: js/apps.js:28 js/apps.js:65 msgid "Disable" msgstr "Zakázat" -#: js/apps.js:27 js/apps.js:50 +#: js/apps.js:28 js/apps.js:54 msgid "Enable" msgstr "Povolit" @@ -94,7 +94,7 @@ msgstr "Povolit" msgid "Saving..." msgstr "Ukládám..." -#: personal.php:46 personal.php:47 +#: personal.php:47 personal.php:48 msgid "__language_name__" msgstr "Česky" @@ -189,15 +189,19 @@ msgstr "Vyvinuto komun msgid "Add your App" msgstr "Přidat Vaší aplikaci" -#: templates/apps.php:26 +#: templates/apps.php:11 +msgid "More Apps" +msgstr "" + +#: templates/apps.php:27 msgid "Select an App" msgstr "Vyberte aplikaci" -#: templates/apps.php:29 +#: templates/apps.php:31 msgid "See application page at apps.owncloud.com" msgstr "Více na stránce s aplikacemi na apps.owncloud.com" -#: templates/apps.php:30 +#: templates/apps.php:32 msgid "-licensed by " msgstr "-licencováno " diff --git a/l10n/da/settings.po b/l10n/da/settings.po index 4d59eb30b55..5b3ac9a2a81 100644 --- a/l10n/da/settings.po +++ b/l10n/da/settings.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-26 02:03+0200\n" -"PO-Revision-Date: 2012-09-25 14:04+0000\n" -"Last-Translator: Morten Juhl-Johansen Zölde-Fejér \n" +"POT-Creation-Date: 2012-10-09 02:03+0200\n" +"PO-Revision-Date: 2012-10-09 00:03+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" @@ -84,11 +84,11 @@ msgstr "Brugeren kan ikke tilføjes til gruppen %s" msgid "Unable to remove user from group %s" msgstr "Brugeren kan ikke fjernes fra gruppen %s" -#: js/apps.js:27 js/apps.js:61 +#: js/apps.js:28 js/apps.js:65 msgid "Disable" msgstr "Deaktiver" -#: js/apps.js:27 js/apps.js:50 +#: js/apps.js:28 js/apps.js:54 msgid "Enable" msgstr "Aktiver" @@ -96,7 +96,7 @@ msgstr "Aktiver" msgid "Saving..." msgstr "Gemmer..." -#: personal.php:46 personal.php:47 +#: personal.php:47 personal.php:48 msgid "__language_name__" msgstr "Dansk" @@ -191,15 +191,19 @@ msgstr "Udviklet af ow msgid "Add your App" msgstr "Tilføj din App" -#: templates/apps.php:26 +#: templates/apps.php:11 +msgid "More Apps" +msgstr "" + +#: templates/apps.php:27 msgid "Select an App" msgstr "Vælg en App" -#: templates/apps.php:29 +#: templates/apps.php:31 msgid "See application page at apps.owncloud.com" msgstr "Se applikationens side på apps.owncloud.com" -#: templates/apps.php:30 +#: templates/apps.php:32 msgid "-licensed by " msgstr "-licenseret af " diff --git a/l10n/de/settings.po b/l10n/de/settings.po index ca3901fa0c9..982522ade96 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -21,9 +21,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-28 02:03+0200\n" -"PO-Revision-Date: 2012-09-27 22:24+0000\n" -"Last-Translator: Mirodin \n" +"POT-Creation-Date: 2012-10-09 02:03+0200\n" +"PO-Revision-Date: 2012-10-09 00:03+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -90,11 +90,11 @@ msgstr "Der Benutzer konnte nicht zur Gruppe %s hinzugefügt werden" msgid "Unable to remove user from group %s" msgstr "Der Benutzer konnte nicht aus der Gruppe %s entfernt werden" -#: js/apps.js:27 js/apps.js:61 +#: js/apps.js:28 js/apps.js:65 msgid "Disable" msgstr "Deaktivieren" -#: js/apps.js:27 js/apps.js:50 +#: js/apps.js:28 js/apps.js:54 msgid "Enable" msgstr "Aktivieren" @@ -102,7 +102,7 @@ msgstr "Aktivieren" msgid "Saving..." msgstr "Speichern..." -#: personal.php:46 personal.php:47 +#: personal.php:47 personal.php:48 msgid "__language_name__" msgstr "Deutsch" @@ -197,15 +197,19 @@ msgstr "Entwickelt von der -licensed by " msgstr "-lizenziert von " diff --git a/l10n/el/settings.po b/l10n/el/settings.po index 6ae56f02706..89a0c274299 100644 --- a/l10n/el/settings.po +++ b/l10n/el/settings.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-20 02:05+0200\n" -"PO-Revision-Date: 2012-09-19 22:58+0000\n" -"Last-Translator: Efstathios Iosifidis \n" +"POT-Creation-Date: 2012-10-09 02:03+0200\n" +"PO-Revision-Date: 2012-10-09 00:04+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -84,11 +84,11 @@ msgstr "Αδυναμία προσθήκη χρήστη στην ομάδα %s" msgid "Unable to remove user from group %s" msgstr "Αδυναμία αφαίρεσης χρήστη από την ομάδα %s" -#: js/apps.js:27 js/apps.js:61 +#: js/apps.js:28 js/apps.js:65 msgid "Disable" msgstr "Απενεργοποίηση" -#: js/apps.js:27 js/apps.js:50 +#: js/apps.js:28 js/apps.js:54 msgid "Enable" msgstr "Ενεργοποίηση" @@ -96,7 +96,7 @@ msgstr "Ενεργοποίηση" msgid "Saving..." msgstr "Αποθήκευση..." -#: personal.php:46 personal.php:47 +#: personal.php:47 personal.php:48 msgid "__language_name__" msgstr "__όνομα_γλώσσας__" @@ -191,15 +191,19 @@ msgstr "Αναπτύχθηκε από την -licensed by " msgstr "-άδεια από " diff --git a/l10n/eo/settings.po b/l10n/eo/settings.po index 210466357e4..88f5e5f3574 100644 --- a/l10n/eo/settings.po +++ b/l10n/eo/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: 2012-09-19 02:02+0200\n" -"PO-Revision-Date: 2012-09-19 00:03+0000\n" +"POT-Creation-Date: 2012-10-09 02:03+0200\n" +"PO-Revision-Date: 2012-10-09 00:04+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" @@ -78,11 +78,11 @@ msgstr "" msgid "Unable to remove user from group %s" msgstr "" -#: js/apps.js:27 js/apps.js:61 +#: js/apps.js:28 js/apps.js:65 msgid "Disable" msgstr "Malkapabligi" -#: js/apps.js:27 js/apps.js:50 +#: js/apps.js:28 js/apps.js:54 msgid "Enable" msgstr "Kapabligi" @@ -90,7 +90,7 @@ msgstr "Kapabligi" msgid "Saving..." msgstr "Konservante..." -#: personal.php:46 personal.php:47 +#: personal.php:47 personal.php:48 msgid "__language_name__" msgstr "Esperanto" @@ -185,15 +185,19 @@ msgstr "" msgid "Add your App" msgstr "Aldonu vian aplikaĵon" -#: templates/apps.php:26 +#: templates/apps.php:11 +msgid "More Apps" +msgstr "" + +#: templates/apps.php:27 msgid "Select an App" msgstr "Elekti aplikaĵon" -#: templates/apps.php:29 +#: templates/apps.php:31 msgid "See application page at apps.owncloud.com" msgstr "Vidu la paĝon pri aplikaĵoj ĉe apps.owncloud.com" -#: templates/apps.php:30 +#: templates/apps.php:32 msgid "-licensed by " msgstr "" diff --git a/l10n/es/settings.po b/l10n/es/settings.po index abcc1832f32..5e71fdf844e 100644 --- a/l10n/es/settings.po +++ b/l10n/es/settings.po @@ -17,9 +17,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-23 02:01+0200\n" -"PO-Revision-Date: 2012-09-22 10:45+0000\n" -"Last-Translator: Raul Fernandez Garcia \n" +"POT-Creation-Date: 2012-10-09 02:03+0200\n" +"PO-Revision-Date: 2012-10-09 00:04+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" @@ -86,11 +86,11 @@ msgstr "Imposible añadir el usuario al grupo %s" msgid "Unable to remove user from group %s" msgstr "Imposible eliminar al usuario del grupo %s" -#: js/apps.js:27 js/apps.js:61 +#: js/apps.js:28 js/apps.js:65 msgid "Disable" msgstr "Desactivar" -#: js/apps.js:27 js/apps.js:50 +#: js/apps.js:28 js/apps.js:54 msgid "Enable" msgstr "Activar" @@ -98,7 +98,7 @@ msgstr "Activar" msgid "Saving..." msgstr "Guardando..." -#: personal.php:46 personal.php:47 +#: personal.php:47 personal.php:48 msgid "__language_name__" msgstr "Castellano" @@ -193,15 +193,19 @@ msgstr "Desarrollado por la -licensed by " msgstr "-licenciado por " diff --git a/l10n/es_AR/settings.po b/l10n/es_AR/settings.po index fe21f0857e9..63551c5cad0 100644 --- a/l10n/es_AR/settings.po +++ b/l10n/es_AR/settings.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-25 02:03+0200\n" -"PO-Revision-Date: 2012-09-24 23:02+0000\n" -"Last-Translator: cjtess \n" +"POT-Creation-Date: 2012-10-09 02:03+0200\n" +"PO-Revision-Date: 2012-10-09 00:04+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" @@ -77,11 +77,11 @@ msgstr "No fue posible añadir el usuario al grupo %s" msgid "Unable to remove user from group %s" msgstr "No es posible eliminar al usuario del grupo %s" -#: js/apps.js:27 js/apps.js:61 +#: js/apps.js:28 js/apps.js:65 msgid "Disable" msgstr "Desactivar" -#: js/apps.js:27 js/apps.js:50 +#: js/apps.js:28 js/apps.js:54 msgid "Enable" msgstr "Activar" @@ -89,7 +89,7 @@ msgstr "Activar" msgid "Saving..." msgstr "Guardando..." -#: personal.php:46 personal.php:47 +#: personal.php:47 personal.php:48 msgid "__language_name__" msgstr "Castellano (Argentina)" @@ -184,15 +184,19 @@ msgstr "Desarrollado por la -licensed by " msgstr "-licenciado por " diff --git a/l10n/et_EE/settings.po b/l10n/et_EE/settings.po index dc320ccf4cc..38300967e5c 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: 2012-09-19 02:02+0200\n" -"PO-Revision-Date: 2012-09-19 00:03+0000\n" +"POT-Creation-Date: 2012-10-09 02:03+0200\n" +"PO-Revision-Date: 2012-10-09 00:03+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" @@ -78,11 +78,11 @@ msgstr "Kasutajat ei saa lisada gruppi %s" msgid "Unable to remove user from group %s" msgstr "Kasutajat ei saa eemaldada grupist %s" -#: js/apps.js:27 js/apps.js:61 +#: js/apps.js:28 js/apps.js:65 msgid "Disable" msgstr "Lülita välja" -#: js/apps.js:27 js/apps.js:50 +#: js/apps.js:28 js/apps.js:54 msgid "Enable" msgstr "Lülita sisse" @@ -90,7 +90,7 @@ msgstr "Lülita sisse" msgid "Saving..." msgstr "Salvestamine..." -#: personal.php:46 personal.php:47 +#: personal.php:47 personal.php:48 msgid "__language_name__" msgstr "Eesti" @@ -185,15 +185,19 @@ msgstr "" msgid "Add your App" msgstr "Lisa oma rakendus" -#: templates/apps.php:26 +#: templates/apps.php:11 +msgid "More Apps" +msgstr "" + +#: templates/apps.php:27 msgid "Select an App" msgstr "Vali programm" -#: templates/apps.php:29 +#: templates/apps.php:31 msgid "See application page at apps.owncloud.com" msgstr "Vaata rakenduste lehte aadressil apps.owncloud.com" -#: templates/apps.php:30 +#: templates/apps.php:32 msgid "-licensed by " msgstr "-litsenseeritud " diff --git a/l10n/eu/settings.po b/l10n/eu/settings.po index 6b7e9ae2ff5..8c96b50fa57 100644 --- a/l10n/eu/settings.po +++ b/l10n/eu/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: 2012-09-21 02:02+0200\n" -"PO-Revision-Date: 2012-09-20 09:46+0000\n" -"Last-Translator: asieriko \n" +"POT-Creation-Date: 2012-10-09 02:03+0200\n" +"PO-Revision-Date: 2012-10-09 00:04+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" @@ -79,11 +79,11 @@ msgstr "Ezin izan da erabiltzailea %s taldera gehitu" msgid "Unable to remove user from group %s" msgstr "Ezin izan da erabiltzailea %s taldetik ezabatu" -#: js/apps.js:27 js/apps.js:61 +#: js/apps.js:28 js/apps.js:65 msgid "Disable" msgstr "Ez-gaitu" -#: js/apps.js:27 js/apps.js:50 +#: js/apps.js:28 js/apps.js:54 msgid "Enable" msgstr "Gaitu" @@ -91,7 +91,7 @@ msgstr "Gaitu" msgid "Saving..." msgstr "Gordetzen..." -#: personal.php:46 personal.php:47 +#: personal.php:47 personal.php:48 msgid "__language_name__" msgstr "Euskera" @@ -186,15 +186,19 @@ msgstr "ownCloud komun msgid "Add your App" msgstr "Gehitu zure aplikazioa" -#: templates/apps.php:26 +#: templates/apps.php:11 +msgid "More Apps" +msgstr "" + +#: templates/apps.php:27 msgid "Select an App" msgstr "Aukeratu programa bat" -#: templates/apps.php:29 +#: templates/apps.php:31 msgid "See application page at apps.owncloud.com" msgstr "Ikusi programen orria apps.owncloud.com en" -#: templates/apps.php:30 +#: templates/apps.php:32 msgid "-licensed by " msgstr "-lizentziatua " diff --git a/l10n/eu_ES/settings.po b/l10n/eu_ES/settings.po index 237b2b7f9a6..10af27c2334 100644 --- a/l10n/eu_ES/settings.po +++ b/l10n/eu_ES/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-19 02:02+0200\n" -"PO-Revision-Date: 2012-09-19 00:03+0000\n" +"POT-Creation-Date: 2012-10-09 02:03+0200\n" +"PO-Revision-Date: 2012-10-09 00:04+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" "MIME-Version: 1.0\n" @@ -76,11 +76,11 @@ msgstr "" msgid "Unable to remove user from group %s" msgstr "" -#: js/apps.js:27 js/apps.js:61 +#: js/apps.js:28 js/apps.js:65 msgid "Disable" msgstr "" -#: js/apps.js:27 js/apps.js:50 +#: js/apps.js:28 js/apps.js:54 msgid "Enable" msgstr "" @@ -88,7 +88,7 @@ msgstr "" msgid "Saving..." msgstr "" -#: personal.php:46 personal.php:47 +#: personal.php:47 personal.php:48 msgid "__language_name__" msgstr "" @@ -183,15 +183,19 @@ msgstr "" msgid "Add your App" msgstr "" -#: templates/apps.php:26 +#: templates/apps.php:11 +msgid "More Apps" +msgstr "" + +#: templates/apps.php:27 msgid "Select an App" msgstr "" -#: templates/apps.php:29 +#: templates/apps.php:31 msgid "See application page at apps.owncloud.com" msgstr "" -#: templates/apps.php:30 +#: templates/apps.php:32 msgid "-licensed by " msgstr "" diff --git a/l10n/fa/settings.po b/l10n/fa/settings.po index 5a1fe1206ab..1d5a04b48a1 100644 --- a/l10n/fa/settings.po +++ b/l10n/fa/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: 2012-09-19 02:02+0200\n" -"PO-Revision-Date: 2012-09-19 00:03+0000\n" +"POT-Creation-Date: 2012-10-09 02:03+0200\n" +"PO-Revision-Date: 2012-10-09 00:04+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" @@ -78,11 +78,11 @@ msgstr "" msgid "Unable to remove user from group %s" msgstr "" -#: js/apps.js:27 js/apps.js:61 +#: js/apps.js:28 js/apps.js:65 msgid "Disable" msgstr "غیرفعال" -#: js/apps.js:27 js/apps.js:50 +#: js/apps.js:28 js/apps.js:54 msgid "Enable" msgstr "فعال" @@ -90,7 +90,7 @@ msgstr "فعال" msgid "Saving..." msgstr "درحال ذخیره ..." -#: personal.php:46 personal.php:47 +#: personal.php:47 personal.php:48 msgid "__language_name__" msgstr "__language_name__" @@ -185,15 +185,19 @@ msgstr "" msgid "Add your App" msgstr "برنامه خود را بیافزایید" -#: templates/apps.php:26 +#: templates/apps.php:11 +msgid "More Apps" +msgstr "" + +#: templates/apps.php:27 msgid "Select an App" msgstr "یک برنامه انتخاب کنید" -#: templates/apps.php:29 +#: templates/apps.php:31 msgid "See application page at apps.owncloud.com" msgstr "صفحه این اٌپ را در apps.owncloud.com ببینید" -#: templates/apps.php:30 +#: templates/apps.php:32 msgid "-licensed by " msgstr "" diff --git a/l10n/fi/settings.po b/l10n/fi/settings.po index 369ba4da56e..4be7031174a 100644 --- a/l10n/fi/settings.po +++ b/l10n/fi/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-19 02:02+0200\n" -"PO-Revision-Date: 2012-09-19 00:03+0000\n" +"POT-Creation-Date: 2012-10-09 02:03+0200\n" +"PO-Revision-Date: 2012-10-09 00:04+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (http://www.transifex.com/projects/p/owncloud/language/fi/)\n" "MIME-Version: 1.0\n" @@ -76,11 +76,11 @@ msgstr "" msgid "Unable to remove user from group %s" msgstr "" -#: js/apps.js:27 js/apps.js:61 +#: js/apps.js:28 js/apps.js:65 msgid "Disable" msgstr "" -#: js/apps.js:27 js/apps.js:50 +#: js/apps.js:28 js/apps.js:54 msgid "Enable" msgstr "" @@ -88,7 +88,7 @@ msgstr "" msgid "Saving..." msgstr "" -#: personal.php:46 personal.php:47 +#: personal.php:47 personal.php:48 msgid "__language_name__" msgstr "" @@ -183,15 +183,19 @@ msgstr "" msgid "Add your App" msgstr "" -#: templates/apps.php:26 +#: templates/apps.php:11 +msgid "More Apps" +msgstr "" + +#: templates/apps.php:27 msgid "Select an App" msgstr "" -#: templates/apps.php:29 +#: templates/apps.php:31 msgid "See application page at apps.owncloud.com" msgstr "" -#: templates/apps.php:30 +#: templates/apps.php:32 msgid "-licensed by " msgstr "" diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po index 32e588ad004..98dc0286ad0 100644 --- a/l10n/fi_FI/settings.po +++ b/l10n/fi_FI/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: 2012-09-21 02:02+0200\n" -"PO-Revision-Date: 2012-09-20 18:06+0000\n" -"Last-Translator: Jiri Grönroos \n" +"POT-Creation-Date: 2012-10-09 02:03+0200\n" +"PO-Revision-Date: 2012-10-09 00:04+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" @@ -79,11 +79,11 @@ msgstr "Käyttäjän tai ryhmän %s lisääminen ei onnistu" msgid "Unable to remove user from group %s" msgstr "Käyttäjän poistaminen ryhmästä %s ei onnistu" -#: js/apps.js:27 js/apps.js:61 +#: js/apps.js:28 js/apps.js:65 msgid "Disable" msgstr "Poista käytöstä" -#: js/apps.js:27 js/apps.js:50 +#: js/apps.js:28 js/apps.js:54 msgid "Enable" msgstr "Käytä" @@ -91,7 +91,7 @@ msgstr "Käytä" msgid "Saving..." msgstr "Tallennetaan..." -#: personal.php:46 personal.php:47 +#: personal.php:47 personal.php:48 msgid "__language_name__" msgstr "_kielen_nimi_" @@ -186,15 +186,19 @@ msgstr "Kehityksestä on vastannut -licensed by " msgstr "-lisensoija " diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index df93aec9fa3..ef847eb4878 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/settings.po @@ -19,9 +19,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-25 02:03+0200\n" -"PO-Revision-Date: 2012-09-24 14:48+0000\n" -"Last-Translator: Romain DEP. \n" +"POT-Creation-Date: 2012-10-09 02:03+0200\n" +"PO-Revision-Date: 2012-10-09 00:04+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" @@ -88,11 +88,11 @@ msgstr "Impossible d'ajouter l'utilisateur au groupe %s" msgid "Unable to remove user from group %s" msgstr "Impossible de supprimer l'utilisateur du groupe %s" -#: js/apps.js:27 js/apps.js:61 +#: js/apps.js:28 js/apps.js:65 msgid "Disable" msgstr "Désactiver" -#: js/apps.js:27 js/apps.js:50 +#: js/apps.js:28 js/apps.js:54 msgid "Enable" msgstr "Activer" @@ -100,7 +100,7 @@ msgstr "Activer" msgid "Saving..." msgstr "Sauvegarde..." -#: personal.php:46 personal.php:47 +#: personal.php:47 personal.php:48 msgid "__language_name__" msgstr "Français" @@ -195,15 +195,19 @@ msgstr "Développé par la -licensed by " msgstr "Distribué sous licence , par " diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po index 948cb35b5a0..276b7836779 100644 --- a/l10n/gl/settings.po +++ b/l10n/gl/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-19 02:02+0200\n" -"PO-Revision-Date: 2012-09-19 00:03+0000\n" +"POT-Creation-Date: 2012-10-09 02:03+0200\n" +"PO-Revision-Date: 2012-10-09 00:04+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" @@ -78,11 +78,11 @@ msgstr "" msgid "Unable to remove user from group %s" msgstr "" -#: js/apps.js:27 js/apps.js:61 +#: js/apps.js:28 js/apps.js:65 msgid "Disable" msgstr "Deshabilitar" -#: js/apps.js:27 js/apps.js:50 +#: js/apps.js:28 js/apps.js:54 msgid "Enable" msgstr "Habilitar" @@ -90,7 +90,7 @@ msgstr "Habilitar" msgid "Saving..." msgstr "Gardando..." -#: personal.php:46 personal.php:47 +#: personal.php:47 personal.php:48 msgid "__language_name__" msgstr "Galego" @@ -185,15 +185,19 @@ msgstr "" msgid "Add your App" msgstr "Engade o teu aplicativo" -#: templates/apps.php:26 +#: templates/apps.php:11 +msgid "More Apps" +msgstr "" + +#: templates/apps.php:27 msgid "Select an App" msgstr "Escolla un Aplicativo" -#: templates/apps.php:29 +#: templates/apps.php:31 msgid "See application page at apps.owncloud.com" msgstr "Vexa a páxina do aplicativo en apps.owncloud.com" -#: templates/apps.php:30 +#: templates/apps.php:32 msgid "-licensed by " msgstr "" diff --git a/l10n/he/settings.po b/l10n/he/settings.po index f92518c05e8..28b90c629a2 100644 --- a/l10n/he/settings.po +++ b/l10n/he/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: 2012-09-19 02:02+0200\n" -"PO-Revision-Date: 2012-09-19 00:03+0000\n" +"POT-Creation-Date: 2012-10-09 02:03+0200\n" +"PO-Revision-Date: 2012-10-09 00:04+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" @@ -79,11 +79,11 @@ msgstr "" msgid "Unable to remove user from group %s" msgstr "" -#: js/apps.js:27 js/apps.js:61 +#: js/apps.js:28 js/apps.js:65 msgid "Disable" msgstr "בטל" -#: js/apps.js:27 js/apps.js:50 +#: js/apps.js:28 js/apps.js:54 msgid "Enable" msgstr "הפעל" @@ -91,7 +91,7 @@ msgstr "הפעל" msgid "Saving..." msgstr "שומר.." -#: personal.php:46 personal.php:47 +#: personal.php:47 personal.php:48 msgid "__language_name__" msgstr "עברית" @@ -186,15 +186,19 @@ msgstr "" msgid "Add your App" msgstr "הוספת היישום שלך" -#: templates/apps.php:26 +#: templates/apps.php:11 +msgid "More Apps" +msgstr "" + +#: templates/apps.php:27 msgid "Select an App" msgstr "בחירת יישום" -#: templates/apps.php:29 +#: templates/apps.php:31 msgid "See application page at apps.owncloud.com" msgstr "צפה בעמוד הישום ב apps.owncloud.com" -#: templates/apps.php:30 +#: templates/apps.php:32 msgid "-licensed by " msgstr "" diff --git a/l10n/hi/settings.po b/l10n/hi/settings.po index 34276cb01c0..b18f3570c50 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: 2012-09-19 02:02+0200\n" -"PO-Revision-Date: 2012-09-19 00:03+0000\n" +"POT-Creation-Date: 2012-10-09 02:03+0200\n" +"PO-Revision-Date: 2012-10-09 00:04+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" @@ -76,11 +76,11 @@ msgstr "" msgid "Unable to remove user from group %s" msgstr "" -#: js/apps.js:27 js/apps.js:61 +#: js/apps.js:28 js/apps.js:65 msgid "Disable" msgstr "" -#: js/apps.js:27 js/apps.js:50 +#: js/apps.js:28 js/apps.js:54 msgid "Enable" msgstr "" @@ -88,7 +88,7 @@ msgstr "" msgid "Saving..." msgstr "" -#: personal.php:46 personal.php:47 +#: personal.php:47 personal.php:48 msgid "__language_name__" msgstr "" @@ -183,15 +183,19 @@ msgstr "" msgid "Add your App" msgstr "" -#: templates/apps.php:26 +#: templates/apps.php:11 +msgid "More Apps" +msgstr "" + +#: templates/apps.php:27 msgid "Select an App" msgstr "" -#: templates/apps.php:29 +#: templates/apps.php:31 msgid "See application page at apps.owncloud.com" msgstr "" -#: templates/apps.php:30 +#: templates/apps.php:32 msgid "-licensed by " msgstr "" diff --git a/l10n/hr/settings.po b/l10n/hr/settings.po index 39c7bc61ee7..3be9de17ecb 100644 --- a/l10n/hr/settings.po +++ b/l10n/hr/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: 2012-09-19 02:02+0200\n" -"PO-Revision-Date: 2012-09-19 00:03+0000\n" +"POT-Creation-Date: 2012-10-09 02:03+0200\n" +"PO-Revision-Date: 2012-10-09 00:04+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" @@ -79,11 +79,11 @@ msgstr "" msgid "Unable to remove user from group %s" msgstr "" -#: js/apps.js:27 js/apps.js:61 +#: js/apps.js:28 js/apps.js:65 msgid "Disable" msgstr "Isključi" -#: js/apps.js:27 js/apps.js:50 +#: js/apps.js:28 js/apps.js:54 msgid "Enable" msgstr "Uključi" @@ -91,7 +91,7 @@ msgstr "Uključi" msgid "Saving..." msgstr "Spremanje..." -#: personal.php:46 personal.php:47 +#: personal.php:47 personal.php:48 msgid "__language_name__" msgstr "__ime_jezika__" @@ -186,15 +186,19 @@ msgstr "" msgid "Add your App" msgstr "Dodajte vašu aplikaciju" -#: templates/apps.php:26 +#: templates/apps.php:11 +msgid "More Apps" +msgstr "" + +#: templates/apps.php:27 msgid "Select an App" msgstr "Odaberite Aplikaciju" -#: templates/apps.php:29 +#: templates/apps.php:31 msgid "See application page at apps.owncloud.com" msgstr "Pogledajte stranicu s aplikacijama na apps.owncloud.com" -#: templates/apps.php:30 +#: templates/apps.php:32 msgid "-licensed by " msgstr "" diff --git a/l10n/hu_HU/settings.po b/l10n/hu_HU/settings.po index 1da66e28540..b465fe6a335 100644 --- a/l10n/hu_HU/settings.po +++ b/l10n/hu_HU/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-19 02:02+0200\n" -"PO-Revision-Date: 2012-09-19 00:03+0000\n" +"POT-Creation-Date: 2012-10-09 02:03+0200\n" +"PO-Revision-Date: 2012-10-09 00:04+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" @@ -78,11 +78,11 @@ msgstr "" msgid "Unable to remove user from group %s" msgstr "" -#: js/apps.js:27 js/apps.js:61 +#: js/apps.js:28 js/apps.js:65 msgid "Disable" msgstr "Letiltás" -#: js/apps.js:27 js/apps.js:50 +#: js/apps.js:28 js/apps.js:54 msgid "Enable" msgstr "Engedélyezés" @@ -90,7 +90,7 @@ msgstr "Engedélyezés" msgid "Saving..." msgstr "Mentés..." -#: personal.php:46 personal.php:47 +#: personal.php:47 personal.php:48 msgid "__language_name__" msgstr "__language_name__" @@ -185,15 +185,19 @@ msgstr "" msgid "Add your App" msgstr "App hozzáadása" -#: templates/apps.php:26 +#: templates/apps.php:11 +msgid "More Apps" +msgstr "" + +#: templates/apps.php:27 msgid "Select an App" msgstr "Egy App kiválasztása" -#: templates/apps.php:29 +#: templates/apps.php:31 msgid "See application page at apps.owncloud.com" msgstr "Lásd apps.owncloud.com, alkalmazások oldal" -#: templates/apps.php:30 +#: templates/apps.php:32 msgid "-licensed by " msgstr "" diff --git a/l10n/hy/settings.po b/l10n/hy/settings.po index 19c237b32ae..ce1f8ccb809 100644 --- a/l10n/hy/settings.po +++ b/l10n/hy/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-19 02:02+0200\n" -"PO-Revision-Date: 2012-09-19 00:03+0000\n" +"POT-Creation-Date: 2012-10-09 02:03+0200\n" +"PO-Revision-Date: 2012-10-09 00:04+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" @@ -76,11 +76,11 @@ msgstr "" msgid "Unable to remove user from group %s" msgstr "" -#: js/apps.js:27 js/apps.js:61 +#: js/apps.js:28 js/apps.js:65 msgid "Disable" msgstr "" -#: js/apps.js:27 js/apps.js:50 +#: js/apps.js:28 js/apps.js:54 msgid "Enable" msgstr "" @@ -88,7 +88,7 @@ msgstr "" msgid "Saving..." msgstr "" -#: personal.php:46 personal.php:47 +#: personal.php:47 personal.php:48 msgid "__language_name__" msgstr "" @@ -183,15 +183,19 @@ msgstr "" msgid "Add your App" msgstr "" -#: templates/apps.php:26 +#: templates/apps.php:11 +msgid "More Apps" +msgstr "" + +#: templates/apps.php:27 msgid "Select an App" msgstr "" -#: templates/apps.php:29 +#: templates/apps.php:31 msgid "See application page at apps.owncloud.com" msgstr "" -#: templates/apps.php:30 +#: templates/apps.php:32 msgid "-licensed by " msgstr "" diff --git a/l10n/ia/settings.po b/l10n/ia/settings.po index 62552205415..2e3506c5692 100644 --- a/l10n/ia/settings.po +++ b/l10n/ia/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: 2012-09-19 02:02+0200\n" -"PO-Revision-Date: 2012-09-19 00:03+0000\n" +"POT-Creation-Date: 2012-10-09 02:03+0200\n" +"PO-Revision-Date: 2012-10-09 00:04+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" @@ -78,11 +78,11 @@ msgstr "" msgid "Unable to remove user from group %s" msgstr "" -#: js/apps.js:27 js/apps.js:61 +#: js/apps.js:28 js/apps.js:65 msgid "Disable" msgstr "" -#: js/apps.js:27 js/apps.js:50 +#: js/apps.js:28 js/apps.js:54 msgid "Enable" msgstr "" @@ -90,7 +90,7 @@ msgstr "" msgid "Saving..." msgstr "" -#: personal.php:46 personal.php:47 +#: personal.php:47 personal.php:48 msgid "__language_name__" msgstr "Interlingua" @@ -185,15 +185,19 @@ msgstr "" msgid "Add your App" msgstr "Adder tu application" -#: templates/apps.php:26 +#: templates/apps.php:11 +msgid "More Apps" +msgstr "" + +#: templates/apps.php:27 msgid "Select an App" msgstr "Selectionar un app" -#: templates/apps.php:29 +#: templates/apps.php:31 msgid "See application page at apps.owncloud.com" msgstr "" -#: templates/apps.php:30 +#: templates/apps.php:32 msgid "-licensed by " msgstr "" diff --git a/l10n/id/settings.po b/l10n/id/settings.po index 460b492bef4..500bd511e86 100644 --- a/l10n/id/settings.po +++ b/l10n/id/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: 2012-09-19 02:02+0200\n" -"PO-Revision-Date: 2012-09-19 00:03+0000\n" +"POT-Creation-Date: 2012-10-09 02:03+0200\n" +"PO-Revision-Date: 2012-10-09 00:04+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" @@ -79,11 +79,11 @@ msgstr "" msgid "Unable to remove user from group %s" msgstr "" -#: js/apps.js:27 js/apps.js:61 +#: js/apps.js:28 js/apps.js:65 msgid "Disable" msgstr "NonAktifkan" -#: js/apps.js:27 js/apps.js:50 +#: js/apps.js:28 js/apps.js:54 msgid "Enable" msgstr "Aktifkan" @@ -91,7 +91,7 @@ msgstr "Aktifkan" msgid "Saving..." msgstr "Menyimpan..." -#: personal.php:46 personal.php:47 +#: personal.php:47 personal.php:48 msgid "__language_name__" msgstr "__language_name__" @@ -186,15 +186,19 @@ msgstr "" msgid "Add your App" msgstr "Tambahkan App anda" -#: templates/apps.php:26 +#: templates/apps.php:11 +msgid "More Apps" +msgstr "" + +#: templates/apps.php:27 msgid "Select an App" msgstr "Pilih satu aplikasi" -#: templates/apps.php:29 +#: templates/apps.php:31 msgid "See application page at apps.owncloud.com" msgstr "Lihat halaman aplikasi di apps.owncloud.com" -#: templates/apps.php:30 +#: templates/apps.php:32 msgid "-licensed by " msgstr "" diff --git a/l10n/id_ID/settings.po b/l10n/id_ID/settings.po index 1258d3790eb..a5523b9baeb 100644 --- a/l10n/id_ID/settings.po +++ b/l10n/id_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: 2012-09-19 02:02+0200\n" -"PO-Revision-Date: 2012-09-19 00:03+0000\n" +"POT-Creation-Date: 2012-10-09 02:03+0200\n" +"PO-Revision-Date: 2012-10-09 00:04+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (Indonesia) (http://www.transifex.com/projects/p/owncloud/language/id_ID/)\n" "MIME-Version: 1.0\n" @@ -76,11 +76,11 @@ msgstr "" msgid "Unable to remove user from group %s" msgstr "" -#: js/apps.js:27 js/apps.js:61 +#: js/apps.js:28 js/apps.js:65 msgid "Disable" msgstr "" -#: js/apps.js:27 js/apps.js:50 +#: js/apps.js:28 js/apps.js:54 msgid "Enable" msgstr "" @@ -88,7 +88,7 @@ msgstr "" msgid "Saving..." msgstr "" -#: personal.php:46 personal.php:47 +#: personal.php:47 personal.php:48 msgid "__language_name__" msgstr "" @@ -183,15 +183,19 @@ msgstr "" msgid "Add your App" msgstr "" -#: templates/apps.php:26 +#: templates/apps.php:11 +msgid "More Apps" +msgstr "" + +#: templates/apps.php:27 msgid "Select an App" msgstr "" -#: templates/apps.php:29 +#: templates/apps.php:31 msgid "See application page at apps.owncloud.com" msgstr "" -#: templates/apps.php:30 +#: templates/apps.php:32 msgid "-licensed by " msgstr "" diff --git a/l10n/it/settings.po b/l10n/it/settings.po index 9b7f3967cfc..52f0fbf1c73 100644 --- a/l10n/it/settings.po +++ b/l10n/it/settings.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-20 02:05+0200\n" -"PO-Revision-Date: 2012-09-19 05:42+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2012-10-09 02:03+0200\n" +"PO-Revision-Date: 2012-10-09 00:03+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" @@ -83,11 +83,11 @@ msgstr "Impossibile aggiungere l'utente al gruppo %s" msgid "Unable to remove user from group %s" msgstr "Impossibile rimuovere l'utente dal gruppo %s" -#: js/apps.js:27 js/apps.js:61 +#: js/apps.js:28 js/apps.js:65 msgid "Disable" msgstr "Disabilita" -#: js/apps.js:27 js/apps.js:50 +#: js/apps.js:28 js/apps.js:54 msgid "Enable" msgstr "Abilita" @@ -95,7 +95,7 @@ msgstr "Abilita" msgid "Saving..." msgstr "Salvataggio in corso..." -#: personal.php:46 personal.php:47 +#: personal.php:47 personal.php:48 msgid "__language_name__" msgstr "Italiano" @@ -190,15 +190,19 @@ msgstr "Sviluppato dalla -licensed by " msgstr "-licenziato da " diff --git a/l10n/ja_JP/settings.po b/l10n/ja_JP/settings.po index 073691da01e..8cbf0d22236 100644 --- a/l10n/ja_JP/settings.po +++ b/l10n/ja_JP/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: 2012-09-21 02:02+0200\n" -"PO-Revision-Date: 2012-09-20 01:05+0000\n" -"Last-Translator: Daisuke Deguchi \n" +"POT-Creation-Date: 2012-10-09 02:03+0200\n" +"PO-Revision-Date: 2012-10-09 00:04+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" @@ -78,11 +78,11 @@ msgstr "ユーザをグループ %s に追加できません" msgid "Unable to remove user from group %s" msgstr "ユーザをグループ %s から削除できません" -#: js/apps.js:27 js/apps.js:61 +#: js/apps.js:28 js/apps.js:65 msgid "Disable" msgstr "無効" -#: js/apps.js:27 js/apps.js:50 +#: js/apps.js:28 js/apps.js:54 msgid "Enable" msgstr "有効" @@ -90,7 +90,7 @@ msgstr "有効" msgid "Saving..." msgstr "保存中..." -#: personal.php:46 personal.php:47 +#: personal.php:47 personal.php:48 msgid "__language_name__" msgstr "Japanese (日本語)" @@ -185,15 +185,19 @@ msgstr "ownCloud commu msgid "Add your App" msgstr "アプリを追加" -#: templates/apps.php:26 +#: templates/apps.php:11 +msgid "More Apps" +msgstr "" + +#: templates/apps.php:27 msgid "Select an App" msgstr "アプリを選択してください" -#: templates/apps.php:29 +#: templates/apps.php:31 msgid "See application page at apps.owncloud.com" msgstr "apps.owncloud.com でアプリケーションのページを見てください" -#: templates/apps.php:30 +#: templates/apps.php:32 msgid "-licensed by " msgstr "-ライセンス: " diff --git a/l10n/ko/settings.po b/l10n/ko/settings.po index 20ae40411c8..96159fb9e93 100644 --- a/l10n/ko/settings.po +++ b/l10n/ko/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: 2012-09-19 02:02+0200\n" -"PO-Revision-Date: 2012-09-19 00:03+0000\n" +"POT-Creation-Date: 2012-10-09 02:03+0200\n" +"PO-Revision-Date: 2012-10-09 00:04+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" @@ -78,11 +78,11 @@ msgstr "" msgid "Unable to remove user from group %s" msgstr "" -#: js/apps.js:27 js/apps.js:61 +#: js/apps.js:28 js/apps.js:65 msgid "Disable" msgstr "비활성화" -#: js/apps.js:27 js/apps.js:50 +#: js/apps.js:28 js/apps.js:54 msgid "Enable" msgstr "활성화" @@ -90,7 +90,7 @@ msgstr "활성화" msgid "Saving..." msgstr "저장..." -#: personal.php:46 personal.php:47 +#: personal.php:47 personal.php:48 msgid "__language_name__" msgstr "한국어" @@ -185,15 +185,19 @@ msgstr "" msgid "Add your App" msgstr "앱 추가" -#: templates/apps.php:26 +#: templates/apps.php:11 +msgid "More Apps" +msgstr "" + +#: templates/apps.php:27 msgid "Select an App" msgstr "프로그램 선택" -#: templates/apps.php:29 +#: templates/apps.php:31 msgid "See application page at apps.owncloud.com" msgstr "application page at apps.owncloud.com을 보시오." -#: templates/apps.php:30 +#: templates/apps.php:32 msgid "-licensed by " msgstr "" diff --git a/l10n/ku_IQ/settings.po b/l10n/ku_IQ/settings.po index c996983914c..2865e2d0f7b 100644 --- a/l10n/ku_IQ/settings.po +++ b/l10n/ku_IQ/settings.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-07 02:04+0200\n" -"PO-Revision-Date: 2011-07-25 16:05+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-10-09 02:03+0200\n" +"PO-Revision-Date: 2012-10-09 00:04+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -76,11 +76,11 @@ msgstr "" msgid "Unable to remove user from group %s" msgstr "" -#: js/apps.js:27 js/apps.js:61 +#: js/apps.js:28 js/apps.js:65 msgid "Disable" msgstr "" -#: js/apps.js:27 js/apps.js:50 +#: js/apps.js:28 js/apps.js:54 msgid "Enable" msgstr "" @@ -183,15 +183,19 @@ msgstr "" msgid "Add your App" msgstr "" -#: templates/apps.php:26 +#: templates/apps.php:11 +msgid "More Apps" +msgstr "" + +#: templates/apps.php:27 msgid "Select an App" msgstr "" -#: templates/apps.php:29 +#: templates/apps.php:31 msgid "See application page at apps.owncloud.com" msgstr "" -#: templates/apps.php:30 +#: templates/apps.php:32 msgid "-licensed by " msgstr "" diff --git a/l10n/lb/settings.po b/l10n/lb/settings.po index 034503e12cf..c3137a61f32 100644 --- a/l10n/lb/settings.po +++ b/l10n/lb/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-19 02:02+0200\n" -"PO-Revision-Date: 2012-09-19 00:03+0000\n" +"POT-Creation-Date: 2012-10-09 02:03+0200\n" +"PO-Revision-Date: 2012-10-09 00:04+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" @@ -77,11 +77,11 @@ msgstr "" msgid "Unable to remove user from group %s" msgstr "" -#: js/apps.js:27 js/apps.js:61 +#: js/apps.js:28 js/apps.js:65 msgid "Disable" msgstr "Ofschalten" -#: js/apps.js:27 js/apps.js:50 +#: js/apps.js:28 js/apps.js:54 msgid "Enable" msgstr "Aschalten" @@ -89,7 +89,7 @@ msgstr "Aschalten" msgid "Saving..." msgstr "Speicheren..." -#: personal.php:46 personal.php:47 +#: personal.php:47 personal.php:48 msgid "__language_name__" msgstr "__language_name__" @@ -184,15 +184,19 @@ msgstr "" msgid "Add your App" msgstr "Setz deng App bei" -#: templates/apps.php:26 +#: templates/apps.php:11 +msgid "More Apps" +msgstr "" + +#: templates/apps.php:27 msgid "Select an App" msgstr "Wiel eng Applikatioun aus" -#: templates/apps.php:29 +#: templates/apps.php:31 msgid "See application page at apps.owncloud.com" msgstr "Kuck dir d'Applicatioun's Säit op apps.owncloud.com un" -#: templates/apps.php:30 +#: templates/apps.php:32 msgid "-licensed by " msgstr "" diff --git a/l10n/lt_LT/settings.po b/l10n/lt_LT/settings.po index a04942dae16..621a2aa61a1 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: 2012-09-19 02:02+0200\n" -"PO-Revision-Date: 2012-09-19 00:03+0000\n" +"POT-Creation-Date: 2012-10-09 02:03+0200\n" +"PO-Revision-Date: 2012-10-09 00:04+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" @@ -77,11 +77,11 @@ msgstr "" msgid "Unable to remove user from group %s" msgstr "" -#: js/apps.js:27 js/apps.js:61 +#: js/apps.js:28 js/apps.js:65 msgid "Disable" msgstr "Išjungti" -#: js/apps.js:27 js/apps.js:50 +#: js/apps.js:28 js/apps.js:54 msgid "Enable" msgstr "Įjungti" @@ -89,7 +89,7 @@ msgstr "Įjungti" msgid "Saving..." msgstr "Saugoma.." -#: personal.php:46 personal.php:47 +#: personal.php:47 personal.php:48 msgid "__language_name__" msgstr "Kalba" @@ -184,15 +184,19 @@ msgstr "" msgid "Add your App" msgstr "Pridėti programėlę" -#: templates/apps.php:26 +#: templates/apps.php:11 +msgid "More Apps" +msgstr "" + +#: templates/apps.php:27 msgid "Select an App" msgstr "Pasirinkite programą" -#: templates/apps.php:29 +#: templates/apps.php:31 msgid "See application page at apps.owncloud.com" msgstr "" -#: templates/apps.php:30 +#: templates/apps.php:32 msgid "-licensed by " msgstr "" diff --git a/l10n/lv/settings.po b/l10n/lv/settings.po index 455a3b65ea5..f5872cc17bb 100644 --- a/l10n/lv/settings.po +++ b/l10n/lv/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-19 02:02+0200\n" -"PO-Revision-Date: 2012-09-19 00:03+0000\n" +"POT-Creation-Date: 2012-10-09 02:03+0200\n" +"PO-Revision-Date: 2012-10-09 00:04+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" @@ -77,11 +77,11 @@ msgstr "" msgid "Unable to remove user from group %s" msgstr "" -#: js/apps.js:27 js/apps.js:61 +#: js/apps.js:28 js/apps.js:65 msgid "Disable" msgstr "Atvienot" -#: js/apps.js:27 js/apps.js:50 +#: js/apps.js:28 js/apps.js:54 msgid "Enable" msgstr "Pievienot" @@ -89,7 +89,7 @@ msgstr "Pievienot" msgid "Saving..." msgstr "Saglabā..." -#: personal.php:46 personal.php:47 +#: personal.php:47 personal.php:48 msgid "__language_name__" msgstr "__valodas_nosaukums__" @@ -184,15 +184,19 @@ msgstr "" msgid "Add your App" msgstr "Pievieno savu aplikāciju" -#: templates/apps.php:26 +#: templates/apps.php:11 +msgid "More Apps" +msgstr "" + +#: templates/apps.php:27 msgid "Select an App" msgstr "Izvēlies aplikāciju" -#: templates/apps.php:29 +#: templates/apps.php:31 msgid "See application page at apps.owncloud.com" msgstr "Apskatie aplikāciju lapu - apps.owncloud.com" -#: templates/apps.php:30 +#: templates/apps.php:32 msgid "-licensed by " msgstr "" diff --git a/l10n/mk/settings.po b/l10n/mk/settings.po index 0d2b29fc077..5711a85b378 100644 --- a/l10n/mk/settings.po +++ b/l10n/mk/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: 2012-09-19 02:02+0200\n" -"PO-Revision-Date: 2012-09-19 00:03+0000\n" +"POT-Creation-Date: 2012-10-09 02:03+0200\n" +"PO-Revision-Date: 2012-10-09 00:04+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" @@ -78,11 +78,11 @@ msgstr "" msgid "Unable to remove user from group %s" msgstr "" -#: js/apps.js:27 js/apps.js:61 +#: js/apps.js:28 js/apps.js:65 msgid "Disable" msgstr "Оневозможи" -#: js/apps.js:27 js/apps.js:50 +#: js/apps.js:28 js/apps.js:54 msgid "Enable" msgstr "Овозможи" @@ -90,7 +90,7 @@ msgstr "Овозможи" msgid "Saving..." msgstr "Снимам..." -#: personal.php:46 personal.php:47 +#: personal.php:47 personal.php:48 msgid "__language_name__" msgstr "__language_name__" @@ -185,15 +185,19 @@ msgstr "" msgid "Add your App" msgstr "Додадете ја Вашата апликација" -#: templates/apps.php:26 +#: templates/apps.php:11 +msgid "More Apps" +msgstr "" + +#: templates/apps.php:27 msgid "Select an App" msgstr "Избери аппликација" -#: templates/apps.php:29 +#: templates/apps.php:31 msgid "See application page at apps.owncloud.com" msgstr "Види ја страницата со апликации на apps.owncloud.com" -#: templates/apps.php:30 +#: templates/apps.php:32 msgid "-licensed by " msgstr "" diff --git a/l10n/ms_MY/settings.po b/l10n/ms_MY/settings.po index a1f4ffdd297..05cfde61fac 100644 --- a/l10n/ms_MY/settings.po +++ b/l10n/ms_MY/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: 2012-09-19 02:02+0200\n" -"PO-Revision-Date: 2012-09-19 00:03+0000\n" +"POT-Creation-Date: 2012-10-09 02:03+0200\n" +"PO-Revision-Date: 2012-10-09 00:04+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" @@ -80,11 +80,11 @@ msgstr "" msgid "Unable to remove user from group %s" msgstr "" -#: js/apps.js:27 js/apps.js:61 +#: js/apps.js:28 js/apps.js:65 msgid "Disable" msgstr "Nyahaktif" -#: js/apps.js:27 js/apps.js:50 +#: js/apps.js:28 js/apps.js:54 msgid "Enable" msgstr "Aktif" @@ -92,7 +92,7 @@ msgstr "Aktif" msgid "Saving..." msgstr "Simpan..." -#: personal.php:46 personal.php:47 +#: personal.php:47 personal.php:48 msgid "__language_name__" msgstr "_nama_bahasa_" @@ -187,15 +187,19 @@ msgstr "" msgid "Add your App" msgstr "Tambah apps anda" -#: templates/apps.php:26 +#: templates/apps.php:11 +msgid "More Apps" +msgstr "" + +#: templates/apps.php:27 msgid "Select an App" msgstr "Pilih aplikasi" -#: templates/apps.php:29 +#: templates/apps.php:31 msgid "See application page at apps.owncloud.com" msgstr "Lihat halaman applikasi di apps.owncloud.com" -#: templates/apps.php:30 +#: templates/apps.php:32 msgid "-licensed by " msgstr "" diff --git a/l10n/nb_NO/settings.po b/l10n/nb_NO/settings.po index 6660a5baa73..0089568671f 100644 --- a/l10n/nb_NO/settings.po +++ b/l10n/nb_NO/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: 2012-09-19 02:02+0200\n" -"PO-Revision-Date: 2012-09-19 00:03+0000\n" +"POT-Creation-Date: 2012-10-09 02:03+0200\n" +"PO-Revision-Date: 2012-10-09 00:04+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" @@ -82,11 +82,11 @@ msgstr "" msgid "Unable to remove user from group %s" msgstr "" -#: js/apps.js:27 js/apps.js:61 +#: js/apps.js:28 js/apps.js:65 msgid "Disable" msgstr "Slå avBehandle " -#: js/apps.js:27 js/apps.js:50 +#: js/apps.js:28 js/apps.js:54 msgid "Enable" msgstr "Slå på" @@ -94,7 +94,7 @@ msgstr "Slå på" msgid "Saving..." msgstr "Lagrer..." -#: personal.php:46 personal.php:47 +#: personal.php:47 personal.php:48 msgid "__language_name__" msgstr "__language_name__" @@ -189,15 +189,19 @@ msgstr "" msgid "Add your App" msgstr "Legg til din App" -#: templates/apps.php:26 +#: templates/apps.php:11 +msgid "More Apps" +msgstr "" + +#: templates/apps.php:27 msgid "Select an App" msgstr "Velg en app" -#: templates/apps.php:29 +#: templates/apps.php:31 msgid "See application page at apps.owncloud.com" msgstr "Se applikasjonens side på apps.owncloud.org" -#: templates/apps.php:30 +#: templates/apps.php:32 msgid "-licensed by " msgstr "" diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index 3753bd818fe..03b73cb31b6 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/settings.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-24 02:02+0200\n" -"PO-Revision-Date: 2012-09-23 14:44+0000\n" -"Last-Translator: Richard Bos \n" +"POT-Creation-Date: 2012-10-09 02:03+0200\n" +"PO-Revision-Date: 2012-10-09 00:03+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" @@ -85,11 +85,11 @@ msgstr "Niet in staat om gebruiker toe te voegen aan groep %s" msgid "Unable to remove user from group %s" msgstr "Niet in staat om gebruiker te verwijderen uit groep %s" -#: js/apps.js:27 js/apps.js:61 +#: js/apps.js:28 js/apps.js:65 msgid "Disable" msgstr "Uitschakelen" -#: js/apps.js:27 js/apps.js:50 +#: js/apps.js:28 js/apps.js:54 msgid "Enable" msgstr "Inschakelen" @@ -97,7 +97,7 @@ msgstr "Inschakelen" msgid "Saving..." msgstr "Aan het bewaren....." -#: personal.php:46 personal.php:47 +#: personal.php:47 personal.php:48 msgid "__language_name__" msgstr "Nederlands" @@ -192,15 +192,19 @@ msgstr "Ontwikkeld door de -licensed by " msgstr "-Gelicenseerd door " diff --git a/l10n/nn_NO/settings.po b/l10n/nn_NO/settings.po index 474aa16ec7d..fe6db9eb5f0 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: 2012-09-19 02:02+0200\n" -"PO-Revision-Date: 2012-09-19 00:03+0000\n" +"POT-Creation-Date: 2012-10-09 02:03+0200\n" +"PO-Revision-Date: 2012-10-09 00:04+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" @@ -78,11 +78,11 @@ msgstr "" msgid "Unable to remove user from group %s" msgstr "" -#: js/apps.js:27 js/apps.js:61 +#: js/apps.js:28 js/apps.js:65 msgid "Disable" msgstr "Slå av" -#: js/apps.js:27 js/apps.js:50 +#: js/apps.js:28 js/apps.js:54 msgid "Enable" msgstr "Slå på" @@ -90,7 +90,7 @@ msgstr "Slå på" msgid "Saving..." msgstr "" -#: personal.php:46 personal.php:47 +#: personal.php:47 personal.php:48 msgid "__language_name__" msgstr "Nynorsk" @@ -185,15 +185,19 @@ msgstr "" msgid "Add your App" msgstr "" -#: templates/apps.php:26 +#: templates/apps.php:11 +msgid "More Apps" +msgstr "" + +#: templates/apps.php:27 msgid "Select an App" msgstr "Vel ein applikasjon" -#: templates/apps.php:29 +#: templates/apps.php:31 msgid "See application page at apps.owncloud.com" msgstr "" -#: templates/apps.php:30 +#: templates/apps.php:32 msgid "-licensed by " msgstr "" diff --git a/l10n/oc/settings.po b/l10n/oc/settings.po index 52cb2e0f6d2..ee1c36f5c81 100644 --- a/l10n/oc/settings.po +++ b/l10n/oc/settings.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-28 23:34+0200\n" -"PO-Revision-Date: 2012-09-28 14:00+0000\n" -"Last-Translator: tartafione \n" +"POT-Creation-Date: 2012-10-09 02:03+0200\n" +"PO-Revision-Date: 2012-10-09 00:04+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -77,11 +77,11 @@ msgstr "Pas capable d'apondre un usancièr al grop %s" msgid "Unable to remove user from group %s" msgstr "Pas capable de tira un usancièr del grop %s" -#: js/apps.js:27 js/apps.js:61 +#: js/apps.js:28 js/apps.js:65 msgid "Disable" msgstr "Desactiva" -#: js/apps.js:27 js/apps.js:50 +#: js/apps.js:28 js/apps.js:54 msgid "Enable" msgstr "Activa" @@ -89,7 +89,7 @@ msgstr "Activa" msgid "Saving..." msgstr "Enregistra..." -#: personal.php:46 personal.php:47 +#: personal.php:47 personal.php:48 msgid "__language_name__" msgstr "__language_name__" @@ -184,15 +184,19 @@ msgstr "" msgid "Add your App" msgstr "Ajusta ton App" -#: templates/apps.php:26 +#: templates/apps.php:11 +msgid "More Apps" +msgstr "" + +#: templates/apps.php:27 msgid "Select an App" msgstr "Selecciona una applicacion" -#: templates/apps.php:29 +#: templates/apps.php:31 msgid "See application page at apps.owncloud.com" msgstr "Agacha la pagina d'applications en cò de apps.owncloud.com" -#: templates/apps.php:30 +#: templates/apps.php:32 msgid "-licensed by " msgstr "-licençiat per " diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index 66ef5e381a7..7ce870696bd 100644 --- a/l10n/pl/settings.po +++ b/l10n/pl/settings.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-06 02:03+0200\n" -"PO-Revision-Date: 2012-10-05 21:00+0000\n" -"Last-Translator: Cyryl Sochacki \n" +"POT-Creation-Date: 2012-10-09 02:03+0200\n" +"PO-Revision-Date: 2012-10-09 00:03+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -85,11 +85,11 @@ msgstr "Nie można dodać użytkownika do grupy %s" msgid "Unable to remove user from group %s" msgstr "Nie można usunąć użytkownika z grupy %s" -#: js/apps.js:27 js/apps.js:61 +#: js/apps.js:28 js/apps.js:65 msgid "Disable" msgstr "Wyłącz" -#: js/apps.js:27 js/apps.js:50 +#: js/apps.js:28 js/apps.js:54 msgid "Enable" msgstr "Włącz" @@ -192,15 +192,19 @@ msgstr "Stwirzone przez -licensed by " msgstr "-licencjonowane przez " diff --git a/l10n/pl_PL/settings.po b/l10n/pl_PL/settings.po index 3a26454d139..0bf63eb96a6 100644 --- a/l10n/pl_PL/settings.po +++ b/l10n/pl_PL/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-19 02:02+0200\n" -"PO-Revision-Date: 2012-09-19 00:03+0000\n" +"POT-Creation-Date: 2012-10-09 02:03+0200\n" +"PO-Revision-Date: 2012-10-09 00:04+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" @@ -76,11 +76,11 @@ msgstr "" msgid "Unable to remove user from group %s" msgstr "" -#: js/apps.js:27 js/apps.js:61 +#: js/apps.js:28 js/apps.js:65 msgid "Disable" msgstr "" -#: js/apps.js:27 js/apps.js:50 +#: js/apps.js:28 js/apps.js:54 msgid "Enable" msgstr "" @@ -88,7 +88,7 @@ msgstr "" msgid "Saving..." msgstr "" -#: personal.php:46 personal.php:47 +#: personal.php:47 personal.php:48 msgid "__language_name__" msgstr "" @@ -183,15 +183,19 @@ msgstr "" msgid "Add your App" msgstr "" -#: templates/apps.php:26 +#: templates/apps.php:11 +msgid "More Apps" +msgstr "" + +#: templates/apps.php:27 msgid "Select an App" msgstr "" -#: templates/apps.php:29 +#: templates/apps.php:31 msgid "See application page at apps.owncloud.com" msgstr "" -#: templates/apps.php:30 +#: templates/apps.php:32 msgid "-licensed by " msgstr "" diff --git a/l10n/pt_BR/settings.po b/l10n/pt_BR/settings.po index a8b2673d0a9..5ff37439d05 100644 --- a/l10n/pt_BR/settings.po +++ b/l10n/pt_BR/settings.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-07 02:04+0200\n" -"PO-Revision-Date: 2012-10-06 14:30+0000\n" -"Last-Translator: sedir \n" +"POT-Creation-Date: 2012-10-09 02:03+0200\n" +"PO-Revision-Date: 2012-10-09 00:03+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" @@ -83,11 +83,11 @@ msgstr "Não foi possivel adicionar usuário ao grupo %s" msgid "Unable to remove user from group %s" msgstr "Não foi possivel remover usuário ao grupo %s" -#: js/apps.js:27 js/apps.js:61 +#: js/apps.js:28 js/apps.js:65 msgid "Disable" msgstr "Desabilitado" -#: js/apps.js:27 js/apps.js:50 +#: js/apps.js:28 js/apps.js:54 msgid "Enable" msgstr "Habilitado" @@ -190,15 +190,19 @@ msgstr "Desenvolvido pela -licensed by " msgstr "-licenciado por " diff --git a/l10n/pt_PT/files.po b/l10n/pt_PT/files.po index 07f2e642ea3..7ee0bd6a36e 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-02 23:16+0200\n" -"PO-Revision-Date: 2012-10-02 10:37+0000\n" +"POT-Creation-Date: 2012-10-09 02:02+0200\n" +"PO-Revision-Date: 2012-10-08 16:35+0000\n" "Last-Translator: Duarte Velez Grilo \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -27,7 +27,7 @@ msgstr "Sem erro, ficheiro enviado com sucesso" #: ajax/upload.php:21 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" -msgstr "O ficheiro enviado escede o diretivo upload_max_filesize no php.ini" +msgstr "O ficheiro enviado excede a directiva upload_max_filesize no php.ini" #: ajax/upload.php:22 msgid "" @@ -67,39 +67,39 @@ msgstr "Apagar" msgid "Rename" msgstr "Renomear" -#: js/filelist.js:189 js/filelist.js:191 +#: js/filelist.js:192 js/filelist.js:194 msgid "already exists" -msgstr "Já existe" +msgstr "já existe" -#: js/filelist.js:189 js/filelist.js:191 +#: js/filelist.js:192 js/filelist.js:194 msgid "replace" msgstr "substituir" -#: js/filelist.js:189 +#: js/filelist.js:192 msgid "suggest name" msgstr "Sugira um nome" -#: js/filelist.js:189 js/filelist.js:191 +#: js/filelist.js:192 js/filelist.js:194 msgid "cancel" msgstr "cancelar" -#: js/filelist.js:238 js/filelist.js:240 +#: js/filelist.js:241 js/filelist.js:243 msgid "replaced" -msgstr "substituido" +msgstr "substituído" -#: js/filelist.js:238 js/filelist.js:240 js/filelist.js:272 js/filelist.js:274 +#: js/filelist.js:241 js/filelist.js:243 js/filelist.js:275 js/filelist.js:277 msgid "undo" msgstr "desfazer" -#: js/filelist.js:240 +#: js/filelist.js:243 msgid "with" msgstr "com" -#: js/filelist.js:272 +#: js/filelist.js:275 msgid "unshared" msgstr "não partilhado" -#: js/filelist.js:274 +#: js/filelist.js:277 msgid "deleted" msgstr "apagado" @@ -107,114 +107,114 @@ msgstr "apagado" msgid "generating ZIP-file, it may take some time." msgstr "a gerar o ficheiro ZIP, poderá demorar algum tempo." -#: js/files.js:208 +#: js/files.js:214 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "Não é possivel fazer o upload do ficheiro devido a ser uma pasta ou ter 0 bytes" +msgstr "Não é possível fazer o envio do ficheiro devido a ser uma pasta ou ter 0 bytes" -#: js/files.js:208 +#: js/files.js:214 msgid "Upload Error" -msgstr "Erro no upload" +msgstr "Erro no envio" -#: js/files.js:236 js/files.js:341 js/files.js:371 +#: js/files.js:242 js/files.js:347 js/files.js:377 msgid "Pending" msgstr "Pendente" -#: js/files.js:256 +#: js/files.js:262 msgid "1 file uploading" msgstr "A enviar 1 ficheiro" -#: js/files.js:259 js/files.js:304 js/files.js:319 +#: js/files.js:265 js/files.js:310 js/files.js:325 msgid "files uploading" msgstr "ficheiros a serem enviados" -#: js/files.js:322 js/files.js:355 +#: js/files.js:328 js/files.js:361 msgid "Upload cancelled." -msgstr "O upload foi cancelado." +msgstr "O envio foi cancelado." -#: js/files.js:424 +#: js/files.js:430 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Envio de ficheiro em progresso. Irá cancelar o envio se sair da página agora." -#: js/files.js:494 +#: js/files.js:500 msgid "Invalid name, '/' is not allowed." -msgstr "nome inválido, '/' não permitido." +msgstr "Nome inválido, '/' não permitido." -#: js/files.js:668 +#: js/files.js:681 msgid "files scanned" msgstr "ficheiros analisados" -#: js/files.js:676 +#: js/files.js:689 msgid "error while scanning" msgstr "erro ao analisar" -#: js/files.js:749 templates/index.php:48 +#: js/files.js:762 templates/index.php:48 msgid "Name" msgstr "Nome" -#: js/files.js:750 templates/index.php:56 +#: js/files.js:763 templates/index.php:56 msgid "Size" msgstr "Tamanho" -#: js/files.js:751 templates/index.php:58 +#: js/files.js:764 templates/index.php:58 msgid "Modified" msgstr "Modificado" -#: js/files.js:778 +#: js/files.js:791 msgid "folder" msgstr "pasta" -#: js/files.js:780 +#: js/files.js:793 msgid "folders" msgstr "pastas" -#: js/files.js:788 +#: js/files.js:801 msgid "file" msgstr "ficheiro" -#: js/files.js:790 +#: js/files.js:803 msgid "files" msgstr "ficheiros" -#: js/files.js:834 +#: js/files.js:847 msgid "seconds ago" -msgstr "à segundos" +msgstr "há segundos" -#: js/files.js:835 +#: js/files.js:848 msgid "minute ago" -msgstr "à um minuto" +msgstr "há um minuto" -#: js/files.js:836 +#: js/files.js:849 msgid "minutes ago" -msgstr "à minutos" +msgstr "há minutos" -#: js/files.js:839 +#: js/files.js:852 msgid "today" msgstr "hoje" -#: js/files.js:840 +#: js/files.js:853 msgid "yesterday" msgstr "ontem" -#: js/files.js:841 +#: js/files.js:854 msgid "days ago" -msgstr "à dias" +msgstr "há dias" -#: js/files.js:842 +#: js/files.js:855 msgid "last month" msgstr "mês passado" -#: js/files.js:844 +#: js/files.js:857 msgid "months ago" -msgstr "à meses" +msgstr "há meses" -#: js/files.js:845 +#: js/files.js:858 msgid "last year" msgstr "ano passado" -#: js/files.js:846 +#: js/files.js:859 msgid "years ago" -msgstr "à anos" +msgstr "há anos" #: templates/admin.php:5 msgid "File handling" @@ -234,7 +234,7 @@ msgstr "Necessário para multi download de ficheiros e pastas" #: templates/admin.php:9 msgid "Enable ZIP-download" -msgstr "Ativar dowload de ficheiros ZIP" +msgstr "Permitir descarregar em ficheiro ZIP" #: templates/admin.php:11 msgid "0 is unlimited" @@ -270,11 +270,11 @@ msgstr "Enviar" #: templates/index.php:27 msgid "Cancel upload" -msgstr "Cancelar upload" +msgstr "Cancelar envio" #: templates/index.php:40 msgid "Nothing in here. Upload something!" -msgstr "Vazio. Envia alguma coisa!" +msgstr "Vazio. Envie alguma coisa!" #: templates/index.php:50 msgid "Share" @@ -292,7 +292,7 @@ msgstr "Envio muito grande" msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." -msgstr "Os ficheiro que estás a tentar enviar excedem o tamanho máximo de envio neste servidor." +msgstr "Os ficheiro que está a tentar enviar excedem o tamanho máximo de envio neste servidor." #: templates/index.php:82 msgid "Files are being scanned, please wait." diff --git a/l10n/pt_PT/settings.po b/l10n/pt_PT/settings.po index ace3286d8cb..a26a6766d35 100644 --- a/l10n/pt_PT/settings.po +++ b/l10n/pt_PT/settings.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-04 02:04+0200\n" -"PO-Revision-Date: 2012-10-03 13:10+0000\n" -"Last-Translator: Duarte Velez Grilo \n" +"POT-Creation-Date: 2012-10-09 02:03+0200\n" +"PO-Revision-Date: 2012-10-09 00:04+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" @@ -80,11 +80,11 @@ msgstr "Impossível acrescentar utilizador ao grupo %s" msgid "Unable to remove user from group %s" msgstr "Impossível apagar utilizador do grupo %s" -#: js/apps.js:27 js/apps.js:61 +#: js/apps.js:28 js/apps.js:65 msgid "Disable" msgstr "Desativar" -#: js/apps.js:27 js/apps.js:50 +#: js/apps.js:28 js/apps.js:54 msgid "Enable" msgstr "Ativar" @@ -92,7 +92,7 @@ msgstr "Ativar" msgid "Saving..." msgstr "A guardar..." -#: personal.php:46 personal.php:47 +#: personal.php:47 personal.php:48 msgid "__language_name__" msgstr "__language_name__" @@ -187,15 +187,19 @@ msgstr "Desenvolvido pela -licensed by " msgstr "-licenciado por " diff --git a/l10n/ro/settings.po b/l10n/ro/settings.po index b4a1b3932a6..37d05af3c86 100644 --- a/l10n/ro/settings.po +++ b/l10n/ro/settings.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-22 01:14+0200\n" -"PO-Revision-Date: 2012-09-21 08:28+0000\n" -"Last-Translator: g.ciprian \n" +"POT-Creation-Date: 2012-10-09 02:03+0200\n" +"PO-Revision-Date: 2012-10-09 00:04+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" @@ -82,11 +82,11 @@ msgstr "Nu s-a putut adăuga utilizatorul la grupul %s" msgid "Unable to remove user from group %s" msgstr "Nu s-a putut elimina utilizatorul din grupul %s" -#: js/apps.js:27 js/apps.js:61 +#: js/apps.js:28 js/apps.js:65 msgid "Disable" msgstr "Dezactivați" -#: js/apps.js:27 js/apps.js:50 +#: js/apps.js:28 js/apps.js:54 msgid "Enable" msgstr "Activați" @@ -94,7 +94,7 @@ msgstr "Activați" msgid "Saving..." msgstr "Salvez..." -#: personal.php:46 personal.php:47 +#: personal.php:47 personal.php:48 msgid "__language_name__" msgstr "_language_name_" @@ -189,15 +189,19 @@ msgstr "Dezvoltat de the -licensed by " msgstr "-licențiat " diff --git a/l10n/ru/settings.po b/l10n/ru/settings.po index 634c9aa217d..1d8dd64bb6a 100644 --- a/l10n/ru/settings.po +++ b/l10n/ru/settings.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-19 02:02+0200\n" -"PO-Revision-Date: 2012-09-19 00:03+0000\n" +"POT-Creation-Date: 2012-10-09 02:03+0200\n" +"PO-Revision-Date: 2012-10-09 00:04+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" @@ -85,11 +85,11 @@ msgstr "Невозможно добавить пользователя в гру msgid "Unable to remove user from group %s" msgstr "Невозможно удалить пользователя из группы %s" -#: js/apps.js:27 js/apps.js:61 +#: js/apps.js:28 js/apps.js:65 msgid "Disable" msgstr "Выключить" -#: js/apps.js:27 js/apps.js:50 +#: js/apps.js:28 js/apps.js:54 msgid "Enable" msgstr "Включить" @@ -97,7 +97,7 @@ msgstr "Включить" msgid "Saving..." msgstr "Сохранение..." -#: personal.php:46 personal.php:47 +#: personal.php:47 personal.php:48 msgid "__language_name__" msgstr "Русский " @@ -192,15 +192,19 @@ msgstr "Разрабатывается -licensed by " msgstr " лицензия. Автор " diff --git a/l10n/ru_RU/settings.po b/l10n/ru_RU/settings.po index 4a264d59aa4..b70f0c47e8c 100644 --- a/l10n/ru_RU/settings.po +++ b/l10n/ru_RU/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: 2012-09-19 02:02+0200\n" -"PO-Revision-Date: 2012-09-19 00:03+0000\n" +"POT-Creation-Date: 2012-10-09 02:03+0200\n" +"PO-Revision-Date: 2012-10-09 00:04+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" @@ -77,11 +77,11 @@ msgstr "Невозможно добавить пользователя в гру msgid "Unable to remove user from group %s" msgstr "Невозможно удалить пользователя из группы %s" -#: js/apps.js:27 js/apps.js:61 +#: js/apps.js:28 js/apps.js:65 msgid "Disable" msgstr "Отключить" -#: js/apps.js:27 js/apps.js:50 +#: js/apps.js:28 js/apps.js:54 msgid "Enable" msgstr "Включить" @@ -89,7 +89,7 @@ msgstr "Включить" msgid "Saving..." msgstr "Сохранение" -#: personal.php:46 personal.php:47 +#: personal.php:47 personal.php:48 msgid "__language_name__" msgstr "__язык_имя__" @@ -184,15 +184,19 @@ msgstr "Разработанный -licensed by " msgstr "-licensed by " diff --git a/l10n/sk_SK/settings.po b/l10n/sk_SK/settings.po index ba623992f13..6aae117401a 100644 --- a/l10n/sk_SK/settings.po +++ b/l10n/sk_SK/settings.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-02 02:03+0200\n" -"PO-Revision-Date: 2012-10-01 08:34+0000\n" -"Last-Translator: martinb \n" +"POT-Creation-Date: 2012-10-09 02:03+0200\n" +"PO-Revision-Date: 2012-10-09 00:04+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -80,11 +80,11 @@ msgstr "Nie je možné pridať užívateľa do skupiny %s" msgid "Unable to remove user from group %s" msgstr "Nie je možné zmazať užívateľa zo skupiny %s" -#: js/apps.js:27 js/apps.js:61 +#: js/apps.js:28 js/apps.js:65 msgid "Disable" msgstr "Zakázať" -#: js/apps.js:27 js/apps.js:50 +#: js/apps.js:28 js/apps.js:54 msgid "Enable" msgstr "Povoliť" @@ -92,7 +92,7 @@ msgstr "Povoliť" msgid "Saving..." msgstr "Ukladám..." -#: personal.php:46 personal.php:47 +#: personal.php:47 personal.php:48 msgid "__language_name__" msgstr "Slovensky" @@ -187,15 +187,19 @@ msgstr "" msgid "Add your App" msgstr "Pridať vašu aplikáciu" -#: templates/apps.php:26 +#: templates/apps.php:11 +msgid "More Apps" +msgstr "" + +#: templates/apps.php:27 msgid "Select an App" msgstr "Vyberte aplikáciu" -#: templates/apps.php:29 +#: templates/apps.php:31 msgid "See application page at apps.owncloud.com" msgstr "Pozrite si stránku aplikácie na apps.owncloud.com" -#: templates/apps.php:30 +#: templates/apps.php:32 msgid "-licensed by " msgstr "-licencované " diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index f82aa4ec644..6cee9361572 100644 --- a/l10n/sl/settings.po +++ b/l10n/sl/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: 2012-09-26 02:03+0200\n" -"PO-Revision-Date: 2012-09-25 19:07+0000\n" -"Last-Translator: Peter Peroša \n" +"POT-Creation-Date: 2012-10-09 02:03+0200\n" +"PO-Revision-Date: 2012-10-09 00:04+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" @@ -79,11 +79,11 @@ msgstr "Uporabnika ni mogoče dodati k skupini %s" msgid "Unable to remove user from group %s" msgstr "Uporabnika ni mogoče odstraniti iz skupine %s" -#: js/apps.js:27 js/apps.js:61 +#: js/apps.js:28 js/apps.js:65 msgid "Disable" msgstr "Onemogoči" -#: js/apps.js:27 js/apps.js:50 +#: js/apps.js:28 js/apps.js:54 msgid "Enable" msgstr "Omogoči" @@ -91,7 +91,7 @@ msgstr "Omogoči" msgid "Saving..." msgstr "Shranjevanje..." -#: personal.php:46 personal.php:47 +#: personal.php:47 personal.php:48 msgid "__language_name__" msgstr "__ime_jezika__" @@ -186,15 +186,19 @@ msgstr "Razvija ga own msgid "Add your App" msgstr "Dodajte vašo aplikacijo" -#: templates/apps.php:26 +#: templates/apps.php:11 +msgid "More Apps" +msgstr "" + +#: templates/apps.php:27 msgid "Select an App" msgstr "Izberite aplikacijo" -#: templates/apps.php:29 +#: templates/apps.php:31 msgid "See application page at apps.owncloud.com" msgstr "Obiščite spletno stran aplikacije na apps.owncloud.com" -#: templates/apps.php:30 +#: templates/apps.php:32 msgid "-licensed by " msgstr "-licencirana s strani " diff --git a/l10n/so/settings.po b/l10n/so/settings.po index d8823a9d17b..70835162c7a 100644 --- a/l10n/so/settings.po +++ b/l10n/so/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-19 02:02+0200\n" -"PO-Revision-Date: 2012-09-19 00:03+0000\n" +"POT-Creation-Date: 2012-10-09 02:03+0200\n" +"PO-Revision-Date: 2012-10-09 00:04+0000\n" "Last-Translator: I Robot \n" "Language-Team: Somali (http://www.transifex.com/projects/p/owncloud/language/so/)\n" "MIME-Version: 1.0\n" @@ -76,11 +76,11 @@ msgstr "" msgid "Unable to remove user from group %s" msgstr "" -#: js/apps.js:27 js/apps.js:61 +#: js/apps.js:28 js/apps.js:65 msgid "Disable" msgstr "" -#: js/apps.js:27 js/apps.js:50 +#: js/apps.js:28 js/apps.js:54 msgid "Enable" msgstr "" @@ -88,7 +88,7 @@ msgstr "" msgid "Saving..." msgstr "" -#: personal.php:46 personal.php:47 +#: personal.php:47 personal.php:48 msgid "__language_name__" msgstr "" @@ -183,15 +183,19 @@ msgstr "" msgid "Add your App" msgstr "" -#: templates/apps.php:26 +#: templates/apps.php:11 +msgid "More Apps" +msgstr "" + +#: templates/apps.php:27 msgid "Select an App" msgstr "" -#: templates/apps.php:29 +#: templates/apps.php:31 msgid "See application page at apps.owncloud.com" msgstr "" -#: templates/apps.php:30 +#: templates/apps.php:32 msgid "-licensed by " msgstr "" diff --git a/l10n/sr/settings.po b/l10n/sr/settings.po index 3117b26d3d5..76f4027a7f3 100644 --- a/l10n/sr/settings.po +++ b/l10n/sr/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: 2012-09-19 02:02+0200\n" -"PO-Revision-Date: 2012-09-19 00:03+0000\n" +"POT-Creation-Date: 2012-10-09 02:03+0200\n" +"PO-Revision-Date: 2012-10-09 00:04+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" @@ -77,11 +77,11 @@ msgstr "" msgid "Unable to remove user from group %s" msgstr "" -#: js/apps.js:27 js/apps.js:61 +#: js/apps.js:28 js/apps.js:65 msgid "Disable" msgstr "" -#: js/apps.js:27 js/apps.js:50 +#: js/apps.js:28 js/apps.js:54 msgid "Enable" msgstr "" @@ -89,7 +89,7 @@ msgstr "" msgid "Saving..." msgstr "" -#: personal.php:46 personal.php:47 +#: personal.php:47 personal.php:48 msgid "__language_name__" msgstr "" @@ -184,15 +184,19 @@ msgstr "" msgid "Add your App" msgstr "" -#: templates/apps.php:26 +#: templates/apps.php:11 +msgid "More Apps" +msgstr "" + +#: templates/apps.php:27 msgid "Select an App" msgstr "Изаберите програм" -#: templates/apps.php:29 +#: templates/apps.php:31 msgid "See application page at apps.owncloud.com" msgstr "" -#: templates/apps.php:30 +#: templates/apps.php:32 msgid "-licensed by " msgstr "" diff --git a/l10n/sr@latin/settings.po b/l10n/sr@latin/settings.po index bff5fcab498..375060e8ae3 100644 --- a/l10n/sr@latin/settings.po +++ b/l10n/sr@latin/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: 2012-09-19 02:02+0200\n" -"PO-Revision-Date: 2012-09-19 00:03+0000\n" +"POT-Creation-Date: 2012-10-09 02:03+0200\n" +"PO-Revision-Date: 2012-10-09 00:04+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" @@ -77,11 +77,11 @@ msgstr "" msgid "Unable to remove user from group %s" msgstr "" -#: js/apps.js:27 js/apps.js:61 +#: js/apps.js:28 js/apps.js:65 msgid "Disable" msgstr "" -#: js/apps.js:27 js/apps.js:50 +#: js/apps.js:28 js/apps.js:54 msgid "Enable" msgstr "" @@ -89,7 +89,7 @@ msgstr "" msgid "Saving..." msgstr "" -#: personal.php:46 personal.php:47 +#: personal.php:47 personal.php:48 msgid "__language_name__" msgstr "" @@ -184,15 +184,19 @@ msgstr "" msgid "Add your App" msgstr "" -#: templates/apps.php:26 +#: templates/apps.php:11 +msgid "More Apps" +msgstr "" + +#: templates/apps.php:27 msgid "Select an App" msgstr "Izaberite program" -#: templates/apps.php:29 +#: templates/apps.php:31 msgid "See application page at apps.owncloud.com" msgstr "" -#: templates/apps.php:30 +#: templates/apps.php:32 msgid "-licensed by " msgstr "" diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index 5cdb2f9b2eb..e5ac9a6e2fe 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/settings.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-20 02:05+0200\n" -"PO-Revision-Date: 2012-09-19 05:59+0000\n" -"Last-Translator: Magnus Höglund \n" +"POT-Creation-Date: 2012-10-09 02:03+0200\n" +"PO-Revision-Date: 2012-10-09 00:04+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" @@ -83,11 +83,11 @@ msgstr "Kan inte lägga till användare i gruppen %s" msgid "Unable to remove user from group %s" msgstr "Kan inte radera användare från gruppen %s" -#: js/apps.js:27 js/apps.js:61 +#: js/apps.js:28 js/apps.js:65 msgid "Disable" msgstr "Deaktivera" -#: js/apps.js:27 js/apps.js:50 +#: js/apps.js:28 js/apps.js:54 msgid "Enable" msgstr "Aktivera" @@ -95,7 +95,7 @@ msgstr "Aktivera" msgid "Saving..." msgstr "Sparar..." -#: personal.php:46 personal.php:47 +#: personal.php:47 personal.php:48 msgid "__language_name__" msgstr "__language_name__" @@ -190,15 +190,19 @@ msgstr "Utvecklad av o msgid "Add your App" msgstr "Lägg till din applikation" -#: templates/apps.php:26 +#: templates/apps.php:11 +msgid "More Apps" +msgstr "" + +#: templates/apps.php:27 msgid "Select an App" msgstr "Välj en App" -#: templates/apps.php:29 +#: templates/apps.php:31 msgid "See application page at apps.owncloud.com" msgstr "Se programsida på apps.owncloud.com" -#: templates/apps.php:30 +#: templates/apps.php:32 msgid "-licensed by " msgstr "-licensierad av " diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 44dd3801916..cba51358709 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-08 02:03+0200\n" +"POT-Creation-Date: 2012-10-09 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -105,8 +105,8 @@ msgstr "" msgid "No categories selected for deletion." msgstr "" -#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:494 -#: js/share.js:506 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:497 +#: js/share.js:509 msgid "Error" msgstr "" @@ -206,15 +206,15 @@ msgstr "" msgid "share" msgstr "" -#: js/share.js:322 js/share.js:481 +#: js/share.js:322 js/share.js:484 msgid "Password protected" msgstr "" -#: js/share.js:494 +#: js/share.js:497 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:506 +#: js/share.js:509 msgid "Error setting expiration date" msgstr "" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 34f041a0dca..6362ef2c29e 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-08 02:02+0200\n" +"POT-Creation-Date: 2012-10-09 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -63,39 +63,39 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:189 js/filelist.js:191 +#: js/filelist.js:192 js/filelist.js:194 msgid "already exists" msgstr "" -#: js/filelist.js:189 js/filelist.js:191 +#: js/filelist.js:192 js/filelist.js:194 msgid "replace" msgstr "" -#: js/filelist.js:189 +#: js/filelist.js:192 msgid "suggest name" msgstr "" -#: js/filelist.js:189 js/filelist.js:191 +#: js/filelist.js:192 js/filelist.js:194 msgid "cancel" msgstr "" -#: js/filelist.js:238 js/filelist.js:240 +#: js/filelist.js:241 js/filelist.js:243 msgid "replaced" msgstr "" -#: js/filelist.js:238 js/filelist.js:240 js/filelist.js:272 js/filelist.js:274 +#: js/filelist.js:241 js/filelist.js:243 js/filelist.js:275 js/filelist.js:277 msgid "undo" msgstr "" -#: js/filelist.js:240 +#: js/filelist.js:243 msgid "with" msgstr "" -#: js/filelist.js:272 +#: js/filelist.js:275 msgid "unshared" msgstr "" -#: js/filelist.js:274 +#: js/filelist.js:277 msgid "deleted" msgstr "" @@ -103,112 +103,112 @@ msgstr "" msgid "generating ZIP-file, it may take some time." msgstr "" -#: js/files.js:213 +#: js/files.js:214 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:213 +#: js/files.js:214 msgid "Upload Error" msgstr "" -#: js/files.js:241 js/files.js:346 js/files.js:376 +#: js/files.js:242 js/files.js:347 js/files.js:377 msgid "Pending" msgstr "" -#: js/files.js:261 +#: js/files.js:262 msgid "1 file uploading" msgstr "" -#: js/files.js:264 js/files.js:309 js/files.js:324 +#: js/files.js:265 js/files.js:310 js/files.js:325 msgid "files uploading" msgstr "" -#: js/files.js:327 js/files.js:360 +#: js/files.js:328 js/files.js:361 msgid "Upload cancelled." msgstr "" -#: js/files.js:429 +#: js/files.js:430 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:499 +#: js/files.js:500 msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:676 +#: js/files.js:681 msgid "files scanned" msgstr "" -#: js/files.js:684 +#: js/files.js:689 msgid "error while scanning" msgstr "" -#: js/files.js:757 templates/index.php:48 +#: js/files.js:762 templates/index.php:48 msgid "Name" msgstr "" -#: js/files.js:758 templates/index.php:56 +#: js/files.js:763 templates/index.php:56 msgid "Size" msgstr "" -#: js/files.js:759 templates/index.php:58 +#: js/files.js:764 templates/index.php:58 msgid "Modified" msgstr "" -#: js/files.js:786 +#: js/files.js:791 msgid "folder" msgstr "" -#: js/files.js:788 +#: js/files.js:793 msgid "folders" msgstr "" -#: js/files.js:796 +#: js/files.js:801 msgid "file" msgstr "" -#: js/files.js:798 +#: js/files.js:803 msgid "files" msgstr "" -#: js/files.js:842 +#: js/files.js:847 msgid "seconds ago" msgstr "" -#: js/files.js:843 +#: js/files.js:848 msgid "minute ago" msgstr "" -#: js/files.js:844 +#: js/files.js:849 msgid "minutes ago" msgstr "" -#: js/files.js:847 +#: js/files.js:852 msgid "today" msgstr "" -#: js/files.js:848 +#: js/files.js:853 msgid "yesterday" msgstr "" -#: js/files.js:849 +#: js/files.js:854 msgid "days ago" msgstr "" -#: js/files.js:850 +#: js/files.js:855 msgid "last month" msgstr "" -#: js/files.js:852 +#: js/files.js:857 msgid "months ago" msgstr "" -#: js/files.js:853 +#: js/files.js:858 msgid "last year" msgstr "" -#: js/files.js:854 +#: js/files.js:859 msgid "years ago" msgstr "" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 2a377de5523..90a10556512 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-08 02:02+0200\n" +"POT-Creation-Date: 2012-10-09 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index 90a8cf6e5d2..25f13c3b1c4 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-08 02:02+0200\n" +"POT-Creation-Date: 2012-10-09 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index ac7a5d9ad95..b76e50bde1a 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-08 02:02+0200\n" +"POT-Creation-Date: 2012-10-09 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index bf4672d1211..005d0a34cc6 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-08 02:02+0200\n" +"POT-Creation-Date: 2012-10-09 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index d895894deef..760d1441d48 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-08 02:03+0200\n" +"POT-Creation-Date: 2012-10-09 02:03+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -41,19 +41,19 @@ msgstr "" msgid "Admin" msgstr "" -#: files.php:327 +#: files.php:328 msgid "ZIP download is turned off." msgstr "" -#: files.php:328 +#: files.php:329 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:328 files.php:353 +#: files.php:329 files.php:354 msgid "Back to Files" msgstr "" -#: files.php:352 +#: files.php:353 msgid "Selected files too large to generate zip file." msgstr "" @@ -111,15 +111,15 @@ msgstr "" msgid "years ago" msgstr "" -#: updater.php:66 +#: updater.php:75 #, php-format msgid "%s is available. Get more information" msgstr "" -#: updater.php:68 +#: updater.php:77 msgid "up to date" msgstr "" -#: updater.php:71 +#: updater.php:80 msgid "updates check is disabled" msgstr "" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index fb1462a1302..fd633cafb25 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-08 02:03+0200\n" +"POT-Creation-Date: 2012-10-09 02:03+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -76,11 +76,11 @@ msgstr "" msgid "Unable to remove user from group %s" msgstr "" -#: js/apps.js:27 js/apps.js:61 +#: js/apps.js:28 js/apps.js:65 msgid "Disable" msgstr "" -#: js/apps.js:27 js/apps.js:50 +#: js/apps.js:28 js/apps.js:54 msgid "Enable" msgstr "" @@ -182,15 +182,19 @@ msgstr "" msgid "Add your App" msgstr "" -#: templates/apps.php:26 +#: templates/apps.php:11 +msgid "More Apps" +msgstr "" + +#: templates/apps.php:27 msgid "Select an App" msgstr "" -#: templates/apps.php:29 +#: templates/apps.php:31 msgid "See application page at apps.owncloud.com" msgstr "" -#: templates/apps.php:30 +#: templates/apps.php:32 msgid "" "-licensed by " msgstr "" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 8ecad3d5951..99c486c71d3 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-08 02:03+0200\n" +"POT-Creation-Date: 2012-10-09 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/th_TH/settings.po b/l10n/th_TH/settings.po index f892ef3aebc..bfac678f543 100644 --- a/l10n/th_TH/settings.po +++ b/l10n/th_TH/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: 2012-09-20 02:05+0200\n" -"PO-Revision-Date: 2012-09-19 17:08+0000\n" -"Last-Translator: AriesAnywhere Anywhere \n" +"POT-Creation-Date: 2012-10-09 02:03+0200\n" +"PO-Revision-Date: 2012-10-09 00:04+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -79,11 +79,11 @@ msgstr "ไม่สามารถเพิ่มผู้ใช้งานเ msgid "Unable to remove user from group %s" msgstr "ไม่สามารถลบผู้ใช้งานออกจากกลุ่ม %s ได้" -#: js/apps.js:27 js/apps.js:61 +#: js/apps.js:28 js/apps.js:65 msgid "Disable" msgstr "ปิดใช้งาน" -#: js/apps.js:27 js/apps.js:50 +#: js/apps.js:28 js/apps.js:54 msgid "Enable" msgstr "เปิดใช้งาน" @@ -91,7 +91,7 @@ msgstr "เปิดใช้งาน" msgid "Saving..." msgstr "กำลังบันทึุกข้อมูล..." -#: personal.php:46 personal.php:47 +#: personal.php:47 personal.php:48 msgid "__language_name__" msgstr "ภาษาไทย" @@ -186,15 +186,19 @@ msgstr "พัฒนาโดย the -licensed by " msgstr "-ลิขสิทธิ์การใช้งานโดย " diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index 180910c3b38..589685208cc 100644 --- a/l10n/tr/settings.po +++ b/l10n/tr/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: 2012-09-19 02:02+0200\n" -"PO-Revision-Date: 2012-09-19 00:03+0000\n" +"POT-Creation-Date: 2012-10-09 02:03+0200\n" +"PO-Revision-Date: 2012-10-09 00:04+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" @@ -79,11 +79,11 @@ msgstr "" msgid "Unable to remove user from group %s" msgstr "" -#: js/apps.js:27 js/apps.js:61 +#: js/apps.js:28 js/apps.js:65 msgid "Disable" msgstr "Etkin değil" -#: js/apps.js:27 js/apps.js:50 +#: js/apps.js:28 js/apps.js:54 msgid "Enable" msgstr "Etkin" @@ -91,7 +91,7 @@ msgstr "Etkin" msgid "Saving..." msgstr "Kaydediliyor..." -#: personal.php:46 personal.php:47 +#: personal.php:47 personal.php:48 msgid "__language_name__" msgstr "__dil_adı__" @@ -186,15 +186,19 @@ msgstr "" msgid "Add your App" msgstr "Uygulamanı Ekle" -#: templates/apps.php:26 +#: templates/apps.php:11 +msgid "More Apps" +msgstr "" + +#: templates/apps.php:27 msgid "Select an App" msgstr "Bir uygulama seçin" -#: templates/apps.php:29 +#: templates/apps.php:31 msgid "See application page at apps.owncloud.com" msgstr "Uygulamanın sayfasına apps.owncloud.com adresinden bakın " -#: templates/apps.php:30 +#: templates/apps.php:32 msgid "-licensed by " msgstr "" diff --git a/l10n/uk/settings.po b/l10n/uk/settings.po index e0511804571..dd7b84e7397 100644 --- a/l10n/uk/settings.po +++ b/l10n/uk/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-19 02:02+0200\n" -"PO-Revision-Date: 2012-09-19 00:03+0000\n" +"POT-Creation-Date: 2012-10-09 02:03+0200\n" +"PO-Revision-Date: 2012-10-09 00:04+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" @@ -77,11 +77,11 @@ msgstr "" msgid "Unable to remove user from group %s" msgstr "" -#: js/apps.js:27 js/apps.js:61 +#: js/apps.js:28 js/apps.js:65 msgid "Disable" msgstr "" -#: js/apps.js:27 js/apps.js:50 +#: js/apps.js:28 js/apps.js:54 msgid "Enable" msgstr "" @@ -89,7 +89,7 @@ msgstr "" msgid "Saving..." msgstr "" -#: personal.php:46 personal.php:47 +#: personal.php:47 personal.php:48 msgid "__language_name__" msgstr "" @@ -184,15 +184,19 @@ msgstr "" msgid "Add your App" msgstr "" -#: templates/apps.php:26 +#: templates/apps.php:11 +msgid "More Apps" +msgstr "" + +#: templates/apps.php:27 msgid "Select an App" msgstr "Вибрати додаток" -#: templates/apps.php:29 +#: templates/apps.php:31 msgid "See application page at apps.owncloud.com" msgstr "" -#: templates/apps.php:30 +#: templates/apps.php:32 msgid "-licensed by " msgstr "" diff --git a/l10n/vi/settings.po b/l10n/vi/settings.po index 1f77b616b1a..5cac96c5e92 100644 --- a/l10n/vi/settings.po +++ b/l10n/vi/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: 2012-09-19 02:02+0200\n" -"PO-Revision-Date: 2012-09-19 00:03+0000\n" +"POT-Creation-Date: 2012-10-09 02:03+0200\n" +"PO-Revision-Date: 2012-10-09 00:04+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" @@ -80,11 +80,11 @@ msgstr "Không thể thêm người dùng vào nhóm %s" msgid "Unable to remove user from group %s" msgstr "Không thể xóa người dùng từ nhóm %s" -#: js/apps.js:27 js/apps.js:61 +#: js/apps.js:28 js/apps.js:65 msgid "Disable" msgstr "Vô hiệu" -#: js/apps.js:27 js/apps.js:50 +#: js/apps.js:28 js/apps.js:54 msgid "Enable" msgstr "Cho phép" @@ -92,7 +92,7 @@ msgstr "Cho phép" msgid "Saving..." msgstr "Đang tiến hành lưu ..." -#: personal.php:46 personal.php:47 +#: personal.php:47 personal.php:48 msgid "__language_name__" msgstr "__Ngôn ngữ___" @@ -187,15 +187,19 @@ msgstr "Được phát triển bởi -licensed by " msgstr "-Giấy phép được cấp bởi " diff --git a/l10n/zh_CN.GB2312/settings.po b/l10n/zh_CN.GB2312/settings.po index 97dbf49a932..292d5760fcd 100644 --- a/l10n/zh_CN.GB2312/settings.po +++ b/l10n/zh_CN.GB2312/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: 2012-09-22 01:14+0200\n" -"PO-Revision-Date: 2012-09-21 19:03+0000\n" -"Last-Translator: marguerite su \n" +"POT-Creation-Date: 2012-10-09 02:03+0200\n" +"PO-Revision-Date: 2012-10-09 00:04+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -78,11 +78,11 @@ msgstr "未能添加用户到群组 %s" msgid "Unable to remove user from group %s" msgstr "未能将用户从群组 %s 移除" -#: js/apps.js:27 js/apps.js:61 +#: js/apps.js:28 js/apps.js:65 msgid "Disable" msgstr "禁用" -#: js/apps.js:27 js/apps.js:50 +#: js/apps.js:28 js/apps.js:54 msgid "Enable" msgstr "启用" @@ -90,7 +90,7 @@ msgstr "启用" msgid "Saving..." msgstr "保存中..." -#: personal.php:46 personal.php:47 +#: personal.php:47 personal.php:48 msgid "__language_name__" msgstr "Chinese" @@ -185,15 +185,19 @@ msgstr "由 ownCloud msgid "Add your App" msgstr "添加你的应用程序" -#: templates/apps.php:26 +#: templates/apps.php:11 +msgid "More Apps" +msgstr "" + +#: templates/apps.php:27 msgid "Select an App" msgstr "选择一个程序" -#: templates/apps.php:29 +#: templates/apps.php:31 msgid "See application page at apps.owncloud.com" msgstr "在owncloud.com上查看应用程序" -#: templates/apps.php:30 +#: templates/apps.php:32 msgid "-licensed by " msgstr "授权协议 " diff --git a/l10n/zh_CN/settings.po b/l10n/zh_CN/settings.po index a0bc33f6106..417b3cca4da 100644 --- a/l10n/zh_CN/settings.po +++ b/l10n/zh_CN/settings.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-28 02:03+0200\n" -"PO-Revision-Date: 2012-09-27 14:13+0000\n" -"Last-Translator: waterone \n" +"POT-Creation-Date: 2012-10-09 02:03+0200\n" +"PO-Revision-Date: 2012-10-09 00:04+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -81,11 +81,11 @@ msgstr "无法把用户添加到组 %s" msgid "Unable to remove user from group %s" msgstr "无法从组%s中移除用户" -#: js/apps.js:27 js/apps.js:61 +#: js/apps.js:28 js/apps.js:65 msgid "Disable" msgstr "禁用" -#: js/apps.js:27 js/apps.js:50 +#: js/apps.js:28 js/apps.js:54 msgid "Enable" msgstr "启用" @@ -93,7 +93,7 @@ msgstr "启用" msgid "Saving..." msgstr "正在保存" -#: personal.php:46 personal.php:47 +#: personal.php:47 personal.php:48 msgid "__language_name__" msgstr "简体中文" @@ -188,15 +188,19 @@ msgstr "由ownCloud社 msgid "Add your App" msgstr "添加应用" -#: templates/apps.php:26 +#: templates/apps.php:11 +msgid "More Apps" +msgstr "" + +#: templates/apps.php:27 msgid "Select an App" msgstr "选择一个应用" -#: templates/apps.php:29 +#: templates/apps.php:31 msgid "See application page at apps.owncloud.com" msgstr "查看在 app.owncloud.com 的应用程序页面" -#: templates/apps.php:30 +#: templates/apps.php:32 msgid "-licensed by " msgstr "-核准: " diff --git a/l10n/zh_TW/settings.po b/l10n/zh_TW/settings.po index a4adf334758..721a0ee82c3 100644 --- a/l10n/zh_TW/settings.po +++ b/l10n/zh_TW/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: 2012-09-19 02:02+0200\n" -"PO-Revision-Date: 2012-09-19 00:03+0000\n" +"POT-Creation-Date: 2012-10-09 02:03+0200\n" +"PO-Revision-Date: 2012-10-09 00:04+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" @@ -80,11 +80,11 @@ msgstr "使用者加入群組%s錯誤" msgid "Unable to remove user from group %s" msgstr "使用者移出群組%s錯誤" -#: js/apps.js:27 js/apps.js:61 +#: js/apps.js:28 js/apps.js:65 msgid "Disable" msgstr "停用" -#: js/apps.js:27 js/apps.js:50 +#: js/apps.js:28 js/apps.js:54 msgid "Enable" msgstr "啟用" @@ -92,7 +92,7 @@ msgstr "啟用" msgid "Saving..." msgstr "儲存中..." -#: personal.php:46 personal.php:47 +#: personal.php:47 personal.php:48 msgid "__language_name__" msgstr "__語言_名稱__" @@ -187,15 +187,19 @@ msgstr "" msgid "Add your App" msgstr "添加你的 App" -#: templates/apps.php:26 +#: templates/apps.php:11 +msgid "More Apps" +msgstr "" + +#: templates/apps.php:27 msgid "Select an App" msgstr "選擇一個應用程式" -#: templates/apps.php:29 +#: templates/apps.php:31 msgid "See application page at apps.owncloud.com" msgstr "查看應用程式頁面於 apps.owncloud.com" -#: templates/apps.php:30 +#: templates/apps.php:32 msgid "-licensed by " msgstr "" -- GitLab From 003241e8474da4239d69fc63b3e812b86d0e3667 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Tue, 9 Oct 2012 10:36:24 +0200 Subject: [PATCH 240/489] fix for bug #1942: Allow user to share with every group if "allow users to share with anyone" is set --- core/ajax/share.php | 6 +++++- lib/public/share.php | 5 +++-- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/core/ajax/share.php b/core/ajax/share.php index 446d4cc32ec..8309a062119 100644 --- a/core/ajax/share.php +++ b/core/ajax/share.php @@ -123,7 +123,11 @@ if (isset($_POST['action']) && isset($_POST['itemType']) && isset($_POST['itemSo } } $count = 0; - $groups = OC_Group::getUserGroups(OC_User::getUser()); + if (\OC_Appconfig::getValue('core', 'shareapi_share_policy', 'global') == 'groups_only') { + $groups = OC_Group::getUserGroups(OC_User::getUser()); + } else { + $groups = OC_Group::getGroups(); + } foreach ($groups as $group) { if ($count < 4) { if (stripos($group, $_GET['search']) !== false diff --git a/lib/public/share.php b/lib/public/share.php index 75363d081c0..1db3a0b2c1d 100644 --- a/lib/public/share.php +++ b/lib/public/share.php @@ -173,6 +173,7 @@ class Share { */ public static function shareItem($itemType, $itemSource, $shareType, $shareWith, $permissions) { $uidOwner = \OC_User::getUser(); + $sharingPolicy = \OC_Appconfig::getValue('core', 'shareapi_share_policy', 'global'); // Verify share type and sharing conditions are met if ($shareType === self::SHARE_TYPE_USER) { if ($shareWith == $uidOwner) { @@ -185,7 +186,7 @@ class Share { \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); throw new \Exception($message); } - if (\OC_Appconfig::getValue('core', 'shareapi_share_policy', 'global') == 'groups_only') { + if ($sharingPolicy == 'groups_only') { $inGroup = array_intersect(\OC_Group::getUserGroups($uidOwner), \OC_Group::getUserGroups($shareWith)); if (empty($inGroup)) { $message = 'Sharing '.$itemSource.' failed, because the user '.$shareWith.' is not a member of any groups that '.$uidOwner.' is a member of'; @@ -208,7 +209,7 @@ class Share { \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); throw new \Exception($message); } - if (!\OC_Group::inGroup($uidOwner, $shareWith)) { + if ($sharingPolicy == 'groups_only' && !\OC_Group::inGroup($uidOwner, $shareWith)) { $message = 'Sharing '.$itemSource.' failed, because '.$uidOwner.' is not a member of the group '.$shareWith; \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); throw new \Exception($message); -- GitLab From 2bd4035076dee5927d3f92fb7fcef3b75d1544ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Tue, 9 Oct 2012 11:17:10 +0200 Subject: [PATCH 241/489] $CONFIG_DBTYPE was never assigned but used in this function --- lib/db.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/db.php b/lib/db.php index 54d9a63fbce..f1597fb49fe 100644 --- a/lib/db.php +++ b/lib/db.php @@ -475,7 +475,8 @@ class OC_DB { */ public static function updateDbFromStructure($file) { $CONFIG_DBTABLEPREFIX = OC_Config::getValue( "dbtableprefix", "oc_" ); - + $CONFIG_DBTYPE = OC_Config::getValue( "dbtype", "sqlite" ); + self::connectScheme(); // read file -- GitLab From f29f1cad1d0a868235737b74f15f97e053fc34a7 Mon Sep 17 00:00:00 2001 From: VicDeo Date: Tue, 9 Oct 2012 13:00:04 +0300 Subject: [PATCH 242/489] Prevent Versions click handler from closing sharing dropdown --- apps/files_versions/js/versions.js | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/apps/files_versions/js/versions.js b/apps/files_versions/js/versions.js index 9075095d286..aa79cffeca4 100644 --- a/apps/files_versions/js/versions.js +++ b/apps/files_versions/js/versions.js @@ -21,7 +21,7 @@ $(document).ready(function(){ } ,function(filename){ // Action to perform when clicked - if (scanFiles.scanning){return;}//workaround to prevent additional http request block scanning feedback + if (scanFiles.scanning || !$('#dropdown').hasClass('drop-versions')){return;}//workaround to prevent additional http request block scanning feedback var file = $('#dir').val()+'/'+filename; // Check if drop down is already visible for a different file @@ -45,7 +45,7 @@ function createVersionsDropdown(filename, files) { var historyUrl = OC.linkTo('files_versions', 'history.php') + '?path='+encodeURIComponent( $( '#dir' ).val() ).replace( /%2F/g, '/' )+'/'+encodeURIComponent( filename ); - var html = '