From 0cd6473909e3db54cb69df4de96ef8409b41e515 Mon Sep 17 00:00:00 2001 From: Axel Roenn Date: Mon, 9 Sep 2013 15:35:39 +0200 Subject: [PATCH 001/107] On an auth failure the uid and the IP address should be logged to the standard log file. This update works for a standard setup, when using a proxy for the server one can probably use the X-forwarded-for header instead of the remote address. --- lib/base.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/base.php b/lib/base.php index ea5adbadc9..052444271c 100644 --- a/lib/base.php +++ b/lib/base.php @@ -730,6 +730,8 @@ class OC { // Someone wants to log in : } elseif (OC::tryFormLogin()) { $error[] = 'invalidpassword'; + OC_Log::write('core', 'Login failed: user \''.$_POST["user"].'\' , wrong password, IP:'.$_SERVER['REMOTE_ADDR'], + OC_Log::ERROR); } OC_Util::displayLoginPage(array_unique($error)); From 7810e27dad3c67f310657d1b19db71e0e4f94631 Mon Sep 17 00:00:00 2001 From: Axel Roenn Date: Tue, 10 Sep 2013 11:07:26 +0200 Subject: [PATCH 002/107] Changed default behaviour to not log IP address in case of an auth failure. Can be configured in OC conf now. Log level changed to warning . --- lib/base.php | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/lib/base.php b/lib/base.php index 052444271c..e8a4d3f87a 100644 --- a/lib/base.php +++ b/lib/base.php @@ -730,8 +730,14 @@ class OC { // Someone wants to log in : } elseif (OC::tryFormLogin()) { $error[] = 'invalidpassword'; - OC_Log::write('core', 'Login failed: user \''.$_POST["user"].'\' , wrong password, IP:'.$_SERVER['REMOTE_ADDR'], - OC_Log::ERROR); + if ( OC_Config::getValue('log_authfailip', '') ) { + OC_Log::write('core', 'Login failed: user \''.$_POST["user"].'\' , wrong password, IP:'.$_SERVER['REMOTE_ADDR'], + OC_Log::WARN); + } + else { + OC_Log::write('core', 'Login failed: user \''.$_POST["user"].'\' , wrong password, IP:set log_authfailip=true in conf', + OC_Log::WARN); + } } OC_Util::displayLoginPage(array_unique($error)); From ea6115bfaa6f8598da727dfacbcf093578149d9d Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Tue, 1 Oct 2013 22:18:03 +0200 Subject: [PATCH 003/107] fix smb streamwrapper on non existing files --- apps/files_external/3rdparty/smb4php/smb.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/apps/files_external/3rdparty/smb4php/smb.php b/apps/files_external/3rdparty/smb4php/smb.php index e7d1dfa09f..aec181a350 100644 --- a/apps/files_external/3rdparty/smb4php/smb.php +++ b/apps/files_external/3rdparty/smb4php/smb.php @@ -181,6 +181,8 @@ class smb { return false; }elseif(substr($regs[0],0,31)=='NT_STATUS_OBJECT_PATH_NOT_FOUND'){ return false; + }elseif(substr($regs[0],0,31)=='NT_STATUS_OBJECT_NAME_NOT_FOUND'){ + return false; }elseif(substr($regs[0],0,29)=='NT_STATUS_FILE_IS_A_DIRECTORY'){ return false; } @@ -430,7 +432,10 @@ class smb_stream_wrapper extends smb { case 'rb': case 'a': case 'a+': $this->tmpfile = tempnam('/tmp', 'smb.down.'); - smb::execute ('get "'.$pu['path'].'" "'.$this->tmpfile.'"', $pu); + $result = smb::execute ('get "'.$pu['path'].'" "'.$this->tmpfile.'"', $pu); + if($result === false){ + return $result; + } break; case 'w': case 'w+': From ea566868a8c0ce7da49fceb29a9d22b46034d642 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Tue, 1 Oct 2013 22:29:33 +0200 Subject: [PATCH 004/107] return the correct result when doing an smb rename --- apps/files_external/3rdparty/smb4php/smb.php | 3 ++- apps/files_external/tests/smb.php | 8 +++++++- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/apps/files_external/3rdparty/smb4php/smb.php b/apps/files_external/3rdparty/smb4php/smb.php index aec181a350..e91b0a5958 100644 --- a/apps/files_external/3rdparty/smb4php/smb.php +++ b/apps/files_external/3rdparty/smb4php/smb.php @@ -307,7 +307,8 @@ class smb { trigger_error('rename(): error in URL', E_USER_ERROR); } smb::clearstatcache ($url_from); - return smb::execute ('rename "'.$from['path'].'" "'.$to['path'].'"', $to); + $result = smb::execute ('rename "'.$from['path'].'" "'.$to['path'].'"', $to); + return $result !== false; } function mkdir ($url, $mode, $options) { diff --git a/apps/files_external/tests/smb.php b/apps/files_external/tests/smb.php index ca2a93c894..86dbd3ab88 100644 --- a/apps/files_external/tests/smb.php +++ b/apps/files_external/tests/smb.php @@ -15,7 +15,7 @@ class SMB extends Storage { public function setUp() { $id = uniqid(); $this->config = include('files_external/tests/config.php'); - if ( ! is_array($this->config) or ! isset($this->config['smb']) or ! $this->config['smb']['run']) { + if (!is_array($this->config) or !isset($this->config['smb']) or !$this->config['smb']['run']) { $this->markTestSkipped('Samba backend not configured'); } $this->config['smb']['root'] .= $id; //make sure we have an new empty folder to work in @@ -28,4 +28,10 @@ class SMB extends Storage { \OCP\Files::rmdirr($this->instance->constructUrl('')); } } + + public function testRenameWithSpaces() { + $this->instance->mkdir('with spaces'); + $result = $this->instance->rename('with spaces', 'foo bar'); + $this->assertTrue($result); + } } From 29deef38b27f2b33eec8925cab7f6f323a35ea96 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Tue, 1 Oct 2013 22:31:22 +0200 Subject: [PATCH 005/107] fix using touch to create a file for smb --- apps/files_external/lib/streamwrapper.php | 26 +++++++++++++---------- 1 file changed, 15 insertions(+), 11 deletions(-) diff --git a/apps/files_external/lib/streamwrapper.php b/apps/files_external/lib/streamwrapper.php index beb4ec5605..a110c00652 100644 --- a/apps/files_external/lib/streamwrapper.php +++ b/apps/files_external/lib/streamwrapper.php @@ -8,7 +8,7 @@ namespace OC\Files\Storage; -abstract class StreamWrapper extends Common{ +abstract class StreamWrapper extends Common { abstract public function constructUrl($path); public function mkdir($path) { @@ -16,7 +16,7 @@ abstract class StreamWrapper extends Common{ } public function rmdir($path) { - if($this->file_exists($path)) { + if ($this->file_exists($path)) { $success = rmdir($this->constructUrl($path)); clearstatcache(); return $success; @@ -34,11 +34,11 @@ abstract class StreamWrapper extends Common{ } public function isReadable($path) { - return true;//not properly supported + return true; //not properly supported } public function isUpdatable($path) { - return true;//not properly supported + return true; //not properly supported } public function file_exists($path) { @@ -55,15 +55,19 @@ abstract class StreamWrapper extends Common{ return fopen($this->constructUrl($path), $mode); } - public function touch($path, $mtime=null) { - if(is_null($mtime)) { - $fh = $this->fopen($path, 'a'); - fwrite($fh, ''); - fclose($fh); + public function touch($path, $mtime = null) { + if ($this->file_exists($path)) { + if (is_null($mtime)) { + $fh = $this->fopen($path, 'a'); + fwrite($fh, ''); + fclose($fh); - return true; + return true; + } else { + return false; //not supported + } } else { - return false;//not supported + $this->file_put_contents($path, ''); } } From de43515cfad858224393f5cc5bfb35c07a1820b0 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Tue, 1 Oct 2013 22:33:58 +0200 Subject: [PATCH 006/107] fix recursive delete for smb --- apps/files_external/lib/streamwrapper.php | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/apps/files_external/lib/streamwrapper.php b/apps/files_external/lib/streamwrapper.php index a110c00652..4a63dfb6e0 100644 --- a/apps/files_external/lib/streamwrapper.php +++ b/apps/files_external/lib/streamwrapper.php @@ -17,6 +17,14 @@ abstract class StreamWrapper extends Common { public function rmdir($path) { if ($this->file_exists($path)) { + $dh = $this->opendir($path); + while (($file = readdir($dh)) !== false) { + if ($this->is_dir($path . '/' . $file)) { + $this->rmdir($path . '/' . $file); + } else { + $this->unlink($path . '/' . $file); + } + } $success = rmdir($this->constructUrl($path)); clearstatcache(); return $success; From 51c34777c4accae634b7877fac970fd2a2e2550c Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Wed, 2 Oct 2013 22:28:19 +0200 Subject: [PATCH 007/107] extend test case --- apps/files_external/tests/smb.php | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/files_external/tests/smb.php b/apps/files_external/tests/smb.php index 86dbd3ab88..0291f293fa 100644 --- a/apps/files_external/tests/smb.php +++ b/apps/files_external/tests/smb.php @@ -33,5 +33,6 @@ class SMB extends Storage { $this->instance->mkdir('with spaces'); $result = $this->instance->rename('with spaces', 'foo bar'); $this->assertTrue($result); + $this->assertTrue($this->instance->is_dir('foo bar')); } } From 0c837cefb68102dc7548d62fb78ab36ef8be9a29 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Fri, 13 Sep 2013 19:01:40 +0200 Subject: [PATCH 008/107] LDAP: allow different UUID attributes for groups and users --- apps/user_ldap/appinfo/update.php | 101 ++++---------------------- apps/user_ldap/appinfo/version | 2 +- apps/user_ldap/lib/access.php | 70 +++++++++++------- apps/user_ldap/lib/connection.php | 69 ++++++++++++------ apps/user_ldap/settings.php | 12 --- apps/user_ldap/templates/settings.php | 3 +- 6 files changed, 106 insertions(+), 151 deletions(-) diff --git a/apps/user_ldap/appinfo/update.php b/apps/user_ldap/appinfo/update.php index 179451dad6..41770cf97b 100644 --- a/apps/user_ldap/appinfo/update.php +++ b/apps/user_ldap/appinfo/update.php @@ -1,20 +1,5 @@ setConnector($connector); -$groupBE = new \OCA\user_ldap\GROUP_LDAP(); -$groupBE->setConnector($connector); - -foreach($objects as $object) { - $fetchDNSql = ' - SELECT `ldap_dn`, `owncloud_name`, `directory_uuid` - FROM `*PREFIX*ldap_'.$object.'_mapping`'; - $updateSql = ' - UPDATE `*PREFIX*ldap_'.$object.'_mapping` - SET `ldap_DN` = ?, `directory_uuid` = ? - WHERE `ldap_dn` = ?'; - - $query = OCP\DB::prepare($fetchDNSql); - $res = $query->execute(); - $DNs = $res->fetchAll(); - $updateQuery = OCP\DB::prepare($updateSql); - foreach($DNs as $dn) { - $newDN = escapeDN(mb_strtolower($dn['ldap_dn'], 'UTF-8')); - if(!empty($dn['directory_uuid'])) { - $uuid = $dn['directory_uuid']; - } elseif($object === 'user') { - $uuid = $userBE->getUUID($newDN); - //fix home folder to avoid new ones depending on the configuration - $userBE->getHome($dn['owncloud_name']); - } else { - $uuid = $groupBE->getUUID($newDN); - } - try { - $updateQuery->execute(array($newDN, $uuid, $dn['ldap_dn'])); - } catch(Exception $e) { - \OCP\Util::writeLog('user_ldap', - 'Could not update '.$object.' '.$dn['ldap_dn'].' in the mappings table. ', - \OCP\Util::WARN); - } - - } + $value = \OCP\Config::getAppValue('user_ldap', + $config.'ldap_expert_uuid_attr', 'auto'); + \OCP\Config::setAppValue('user_ldap', + $config.'ldap_expert_uuid_user_attr', $value); + \OCP\Config::setAppValue('user_ldap', + $config.'ldap_expert_uuid_group_attr', $value); } - -function escapeDN($dn) { - $aDN = ldap_explode_dn($dn, false); - unset($aDN['count']); - foreach($aDN as $key => $part) { - $value = substr($part, strpos($part, '=')+1); - $escapedValue = strtr($value, Array(','=>'\2c', '='=>'\3d', '+'=>'\2b', - '<'=>'\3c', '>'=>'\3e', ';'=>'\3b', '\\'=>'\5c', - '"'=>'\22', '#'=>'\23')); - $part = str_replace($part, $value, $escapedValue); - } - $dn = implode(',', $aDN); - - return $dn; -} - - -// SUPPORTED UPGRADE FROM Version 0.3 (ownCloud 4.5) to 0.4 (ownCloud 5) - -if(!isset($connector)) { - $connector = new \OCA\user_ldap\lib\Connection(); -} -//it is required, that connections do have ldap_configuration_active setting stored in the database -$connector->getConfiguration(); -$connector->saveConfiguration(); - -// we don't save it anymore, was a well-meant bad idea. Clean up database. -$query = OC_DB::prepare('DELETE FROM `*PREFIX*preferences` WHERE `appid` = ? AND `configkey` = ?'); -$query->execute(array('user_ldap' , 'homedir')); diff --git a/apps/user_ldap/appinfo/version b/apps/user_ldap/appinfo/version index 60a2d3e96c..44bb5d1f74 100644 --- a/apps/user_ldap/appinfo/version +++ b/apps/user_ldap/appinfo/version @@ -1 +1 @@ -0.4.0 \ No newline at end of file +0.4.1 \ No newline at end of file diff --git a/apps/user_ldap/lib/access.php b/apps/user_ldap/lib/access.php index fdf9c24612..f75a78bcb0 100644 --- a/apps/user_ldap/lib/access.php +++ b/apps/user_ldap/lib/access.php @@ -288,7 +288,7 @@ class Access extends LDAPUtility { } //second try: get the UUID and check if it is known. Then, update the DN and return the name. - $uuid = $this->getUUID($dn); + $uuid = $this->getUUID($dn, $isUser); if($uuid) { $query = \OCP\DB::prepare(' SELECT `owncloud_name` @@ -580,7 +580,9 @@ class Access extends LDAPUtility { '); //feed the DB - $insRows = $insert->execute(array($dn, $ocname, $this->getUUID($dn), $dn, $ocname)); + $insRows = $insert->execute(array($dn, $ocname, + $this->getUUID($dn, $isUser), $dn, + $ocname)); if(\OCP\DB::isError($insRows)) { return false; @@ -905,55 +907,67 @@ class Access extends LDAPUtility { * @param $force the detection should be run, even if it is not set to auto * @returns true on success, false otherwise */ - private function detectUuidAttribute($dn, $force = false) { - if(($this->connection->ldapUuidAttribute !== 'auto') && !$force) { + private function detectUuidAttribute($dn, $isUser = true, $force = false) { + if($isUser) { + $uuidAttr = 'ldapUuidUserAttribute'; + $uuidOverride = $this->connection->ldapExpertUUIDUserAttr; + } else { + $uuidAttr = 'ldapUuidGroupAttribute'; + $uuidOverride = $this->connection->ldapExpertUUIDGroupAttr; + } + + if(($this->connection->$uuidAttr !== 'auto') && !$force) { return true; } - $fixedAttribute = $this->connection->ldapExpertUUIDAttr; - if(!empty($fixedAttribute)) { - $this->connection->ldapUuidAttribute = $fixedAttribute; + if(!empty($uuidOverride) && !$force) { + $this->connection->$uuidAttr = $uuidOverride; return true; } - //for now, supported (known) attributes are entryUUID, nsuniqueid, objectGUID + //for now, supported attributes are entryUUID, nsuniqueid, objectGUID $testAttributes = array('entryuuid', 'nsuniqueid', 'objectguid', 'guid'); foreach($testAttributes as $attribute) { - \OCP\Util::writeLog('user_ldap', 'Testing '.$attribute.' as UUID attr', \OCP\Util::DEBUG); - $value = $this->readAttribute($dn, $attribute); if(is_array($value) && isset($value[0]) && !empty($value[0])) { - \OCP\Util::writeLog('user_ldap', 'Setting '.$attribute.' as UUID attr', \OCP\Util::DEBUG); - $this->connection->ldapUuidAttribute = $attribute; + \OCP\Util::writeLog('user_ldap', + 'Setting '.$attribute.' as '.$uuidAttr, + \OCP\Util::DEBUG); + $this->connection->$uuidAttr = $attribute; return true; } - \OCP\Util::writeLog('user_ldap', - 'The looked for uuid attr is not '.$attribute.', result was '.print_r($value, true), - \OCP\Util::DEBUG); } + \OCP\Util::writeLog('user_ldap', + 'Could not autodetect the UUID attribute', + \OCP\Util::ERROR); return false; } - public function getUUID($dn) { - if($this->detectUuidAttribute($dn)) { - \OCP\Util::writeLog('user_ldap', - 'UUID Checking \ UUID for '.$dn.' using '. $this->connection->ldapUuidAttribute, - \OCP\Util::DEBUG); - $uuid = $this->readAttribute($dn, $this->connection->ldapUuidAttribute); - if(!is_array($uuid) && $this->connection->ldapOverrideUuidAttribute) { - $this->detectUuidAttribute($dn, true); - $uuid = $this->readAttribute($dn, $this->connection->ldapUuidAttribute); + public function getUUID($dn, $isUser = true) { + if($isUser) { + $uuidAttr = 'ldapUuidUserAttribute'; + $uuidOverride = $this->connection->ldapExpertUUIDUserAttr; + } else { + $uuidAttr = 'ldapUuidGroupAttribute'; + $uuidOverride = $this->connection->ldapExpertUUIDGroupAttr; + } + + $uuid = false; + if($this->detectUuidAttribute($dn, $isUser)) { + $uuid = $this->readAttribute($dn, $this->connection->$uuidAttr); + if( !is_array($uuid) + && !empty($uuidOverride) + && $this->detectUuidAttribute($dn, $isUser, true)) { + $uuid = $this->readAttribute($dn, + $this->connection->$uuidAttr); } if(is_array($uuid) && isset($uuid[0]) && !empty($uuid[0])) { $uuid = $uuid[0]; - } else { - $uuid = false; } - } else { - $uuid = false; } + return $uuid; } diff --git a/apps/user_ldap/lib/connection.php b/apps/user_ldap/lib/connection.php index a53022c27b..93efdb4c9c 100644 --- a/apps/user_ldap/lib/connection.php +++ b/apps/user_ldap/lib/connection.php @@ -60,7 +60,8 @@ class Connection extends LDAPUtility { 'ldapQuotaDefault' => null, 'ldapEmailAttribute' => null, 'ldapCacheTTL' => null, - 'ldapUuidAttribute' => 'auto', + 'ldapUuidUserAttribute' => 'auto', + 'ldapUuidGroupAttribute' => 'auto', 'ldapOverrideUuidAttribute' => null, 'ldapOverrideMainServer' => false, 'ldapConfigurationActive' => false, @@ -69,7 +70,8 @@ class Connection extends LDAPUtility { 'homeFolderNamingRule' => null, 'hasPagedResultSupport' => false, 'ldapExpertUsernameAttr' => null, - 'ldapExpertUUIDAttr' => null, + 'ldapExpertUUIDUserAttr' => null, + 'ldapExpertUUIDGroupAttr' => null, ); /** @@ -120,11 +122,11 @@ class Connection extends LDAPUtility { public function __set($name, $value) { $changed = false; //only few options are writable - if($name === 'ldapUuidAttribute') { - \OCP\Util::writeLog('user_ldap', 'Set config ldapUuidAttribute to '.$value, \OCP\Util::DEBUG); + if($name === 'ldapUuidUserAttribute' || $name === 'ldapUuidGroupAttribute') { + \OCP\Util::writeLog('user_ldap', 'Set config '.$name.' to '.$value, \OCP\Util::DEBUG); $this->config[$name] = $value; if(!empty($this->configID)) { - \OCP\Config::setAppValue($this->configID, $this->configPrefix.'ldap_uuid_attribute', $value); + \OCP\Config::setAppValue($this->configID, $this->configPrefix.$name, $value); } $changed = true; } @@ -285,8 +287,10 @@ class Connection extends LDAPUtility { $this->config['ldapIgnoreNamingRules'] = \OCP\Config::getSystemValue('ldapIgnoreNamingRules', false); $this->config['ldapCacheTTL'] = $this->$v('ldap_cache_ttl'); - $this->config['ldapUuidAttribute'] - = $this->$v('ldap_uuid_attribute'); + $this->config['ldapUuidUserAttribute'] + = $this->$v('ldap_uuid_user_attribute'); + $this->config['ldapUuidGroupAttribute'] + = $this->$v('ldap_uuid_group_attribute'); $this->config['ldapOverrideUuidAttribute'] = $this->$v('ldap_override_uuid_attribute'); $this->config['homeFolderNamingRule'] @@ -299,8 +303,10 @@ class Connection extends LDAPUtility { = preg_split('/\r\n|\r|\n/', $this->$v('ldap_attributes_for_group_search')); $this->config['ldapExpertUsernameAttr'] = $this->$v('ldap_expert_username_attr'); - $this->config['ldapExpertUUIDAttr'] - = $this->$v('ldap_expert_uuid_attr'); + $this->config['ldapExpertUUIDUserAttr'] + = $this->$v('ldap_expert_uuid_user_attr'); + $this->config['ldapExpertUUIDGroupAttr'] + = $this->$v('ldap_expert_uuid_group_attr'); $this->configured = $this->validateConfiguration(); } @@ -339,7 +345,8 @@ class Connection extends LDAPUtility { 'ldap_attributes_for_user_search' => 'ldapAttributesForUserSearch', 'ldap_attributes_for_group_search' => 'ldapAttributesForGroupSearch', 'ldap_expert_username_attr' => 'ldapExpertUsernameAttr', - 'ldap_expert_uuid_attr' => 'ldapExpertUUIDAttr', + 'ldap_expert_uuid_user_attr' => 'ldapExpertUUIDUserAttr', + 'ldap_expert_uuid_group_attr' => 'ldapExpertUUIDGroupAttr', ); return $array; } @@ -413,7 +420,8 @@ class Connection extends LDAPUtility { break; case 'ldapIgnoreNamingRules': case 'ldapOverrideUuidAttribute': - case 'ldapUuidAttribute': + case 'ldapUuidUserAttribute': + case 'ldapUuidGroupAttribute': case 'hasPagedResultSupport': continue 2; } @@ -476,13 +484,23 @@ class Connection extends LDAPUtility { } $uuidAttributes = array( 'auto', 'entryuuid', 'nsuniqueid', 'objectguid', 'guid'); - if(!in_array($this->config['ldapUuidAttribute'], $uuidAttributes) - && (!is_null($this->configID))) { - \OCP\Config::setAppValue($this->configID, $this->configPrefix.'ldap_uuid_attribute', 'auto'); - \OCP\Util::writeLog('user_ldap', - 'Illegal value for the UUID Attribute, reset to autodetect.', - \OCP\Util::INFO); + $uuidSettings = array( + 'ldapUuidUserAttribute' => 'ldapExpertUUIDUserAttr', + 'ldapUuidGroupAttribute' => 'ldapExpertUUIDGroupAttr'); + $cta = array_flip($this->getConfigTranslationArray()); + foreach($uuidSettings as $defaultKey => $overrideKey) { + if( !in_array($this->config[$defaultKey], $uuidAttributes) + && is_null($this->config[$overrideKey]) + && !is_null($this->configID)) { + \OCP\Config::setAppValue($this->configID, + $this->configPrefix.$cta[$defaultKey], + 'auto'); + \OCP\Util::writeLog('user_ldap', + 'Illegal value for'.$defaultKey.', reset to autodetect.', + \OCP\Util::DEBUG); + } } + if(empty($this->config['ldapBackupPort'])) { //force default $this->config['ldapBackupPort'] = $this->config['ldapPort']; @@ -502,8 +520,6 @@ class Connection extends LDAPUtility { \OCP\Util::INFO); } - - //second step: critical checks. If left empty or filled wrong, set as unconfigured and give a warning. $configurationOK = true; if(empty($this->config['ldapHost'])) { @@ -552,8 +568,11 @@ class Connection extends LDAPUtility { $configurationOK = false; } - if(!empty($this->config['ldapExpertUUIDAttr'])) { - $this->config['ldapUuidAttribute'] = $this->config['ldapExpertUUIDAttr']; + if(!empty($this->config['ldapExpertUUIDUserAttr'])) { + $this->config['ldapUuidUserAttribute'] = $this->config['ldapExpertUUIDUserAttr']; + } + if(!empty($this->config['ldapExpertUUIDGroupAttr'])) { + $this->config['ldapUuidGroupAttribute'] = $this->config['ldapExpertUUIDGroupAttr']; } return $configurationOK; @@ -587,15 +606,17 @@ class Connection extends LDAPUtility { 'ldap_email_attr' => '', 'ldap_group_member_assoc_attribute' => 'uniqueMember', 'ldap_cache_ttl' => 600, - 'ldap_uuid_attribute' => 'auto', + 'ldap_uuid_user_attribute' => 'auto', + 'ldap_uuid_group_attribute' => 'auto', 'ldap_override_uuid_attribute' => 0, 'home_folder_naming_rule' => '', 'ldap_turn_off_cert_check' => 0, 'ldap_configuration_active' => 1, 'ldap_attributes_for_user_search' => '', 'ldap_attributes_for_group_search' => '', - 'ldap_expert_username_attr' => '', - 'ldap_expert_uuid_attr' => '', + 'ldap_expert_username_attr' => '', + 'ldap_expert_uuid_user_attr' => '', + 'ldap_expert_uuid_group_attr' => '', ); } diff --git a/apps/user_ldap/settings.php b/apps/user_ldap/settings.php index b7070f2318..f20bc19118 100644 --- a/apps/user_ldap/settings.php +++ b/apps/user_ldap/settings.php @@ -25,18 +25,6 @@ OC_Util::checkAdminUser(); -$params = array('ldap_host', 'ldap_port', 'ldap_backup_host', - 'ldap_backup_port', 'ldap_override_main_server', 'ldap_dn', - 'ldap_agent_password', 'ldap_base', 'ldap_base_users', - 'ldap_base_groups', 'ldap_userlist_filter', - 'ldap_login_filter', 'ldap_group_filter', 'ldap_display_name', - 'ldap_group_display_name', 'ldap_tls', - 'ldap_turn_off_cert_check', 'ldap_nocase', 'ldap_quota_def', - 'ldap_quota_attr', 'ldap_email_attr', - 'ldap_group_member_assoc_attribute', 'ldap_cache_ttl', - 'home_folder_naming_rule' - ); - OCP\Util::addscript('user_ldap', 'settings'); OCP\Util::addstyle('user_ldap', 'settings'); diff --git a/apps/user_ldap/templates/settings.php b/apps/user_ldap/templates/settings.php index e214d57fb1..319dc38a62 100644 --- a/apps/user_ldap/templates/settings.php +++ b/apps/user_ldap/templates/settings.php @@ -100,7 +100,8 @@

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

t('By default, the UUID attribute is automatically detected. The UUID attribute is used to doubtlessly identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users and groups.'));?>

-

+

+

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

t('Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have a internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage.'));?>


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

    - +

    diff --git a/core/css/styles.css b/core/css/styles.css index 6406bcd7e6..a1ecd12398 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -237,6 +237,7 @@ input[type="submit"].enabled { #body-login p.info, #body-login form fieldset legend, #body-login #datadirContent label, +#body-login form fieldset .warning-info, #body-login form input[type="checkbox"]+label { text-align: center; color: #ccc; diff --git a/core/img/actions/confirm.png b/core/img/actions/confirm.png new file mode 100644 index 0000000000000000000000000000000000000000..ccde88fb1e2185a58924ca8d5fc660db58f6ec0f GIT binary patch literal 190 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_f1s;*b zKpodXn9)gNb_Gz7y~NYkmHjRU8yBD9)}@kqKp}5W7sn8b)5!@7m^F^8pY&;Abe8}E zNeKzQ39p;}2i$R3$ymYr)1OIi`4xsWdO!WwDf)=G=pS#WT-Z1%bP0l+XkKcFH)h literal 0 HcmV?d00001 diff --git a/core/img/actions/confirm.svg b/core/img/actions/confirm.svg new file mode 100644 index 0000000000..bb3f9db2eb --- /dev/null +++ b/core/img/actions/confirm.svg @@ -0,0 +1,65 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + From 980fc9cc7ee9a2e5b33fd2fd10bc028aeb83cccf Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Mon, 7 Oct 2013 18:15:23 +0200 Subject: [PATCH 024/107] Fix trash bin button --- apps/files/css/files.css | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/apps/files/css/files.css b/apps/files/css/files.css index e26c1a89b7..cbf34279f5 100644 --- a/apps/files/css/files.css +++ b/apps/files/css/files.css @@ -8,7 +8,7 @@ .actions .button a { color: #555; } .actions .button a:hover, .actions .button a:active { color: #333; } -#new, #trash { +#new { z-index: 1010; float: left; padding: 0 !important; /* override default control bar button padding */ @@ -16,8 +16,10 @@ #trash { margin-right: 12px; float: right; + z-index: 1010; + padding: 10px; } -#new>a, #trash>a { +#new>a { padding: 14px 10px; position: relative; top: 7px; From c655eec3d1866d0e5b75e1a9366f406687b6affc Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Mon, 7 Oct 2013 12:21:38 -0400 Subject: [PATCH 025/107] [tx-robot] updated from transifex --- apps/files/l10n/ady.php | 7 + apps/files_encryption/l10n/es.php | 3 + apps/files_encryption/l10n/gl.php | 4 + apps/files_encryption/l10n/lt_LT.php | 4 + apps/files_encryption/l10n/pt_BR.php | 4 + apps/files_trashbin/l10n/ady.php | 6 + core/l10n/ady.php | 9 + core/l10n/lt_LT.php | 2 + l10n/ach/core.po | 40 +- l10n/ady/core.po | 751 +++++++++++++++++++++++++++ l10n/ady/files.po | 356 +++++++++++++ l10n/ady/files_encryption.po | 185 +++++++ l10n/ady/files_external.po | 123 +++++ l10n/ady/files_sharing.po | 80 +++ l10n/ady/files_trashbin.po | 84 +++ l10n/ady/files_versions.po | 43 ++ l10n/ady/lib.po | 341 ++++++++++++ l10n/ady/settings.po | 609 ++++++++++++++++++++++ l10n/ady/user_ldap.po | 406 +++++++++++++++ l10n/ady/user_webdavauth.po | 33 ++ l10n/af_ZA/core.po | 40 +- l10n/ar/core.po | 40 +- l10n/be/core.po | 40 +- l10n/bg_BG/core.po | 40 +- l10n/bn_BD/core.po | 40 +- l10n/bs/core.po | 40 +- l10n/ca/core.po | 40 +- l10n/ca/settings.po | 24 +- l10n/cs_CZ/core.po | 40 +- l10n/cy_GB/core.po | 40 +- l10n/da/core.po | 40 +- l10n/de/core.po | 42 +- l10n/de_AT/core.po | 40 +- l10n/de_CH/core.po | 40 +- l10n/de_DE/core.po | 42 +- l10n/el/core.po | 40 +- l10n/en@pirate/core.po | 40 +- l10n/en_GB/core.po | 40 +- l10n/eo/core.po | 40 +- l10n/es/core.po | 40 +- l10n/es/files_encryption.po | 13 +- l10n/es_AR/core.po | 40 +- l10n/es_MX/core.po | 40 +- l10n/et_EE/core.po | 42 +- l10n/eu/core.po | 40 +- l10n/fa/core.po | 40 +- l10n/fi_FI/core.po | 42 +- l10n/fr/core.po | 40 +- l10n/gl/core.po | 42 +- l10n/gl/files_encryption.po | 14 +- l10n/he/core.po | 40 +- l10n/hi/core.po | 40 +- l10n/hr/core.po | 40 +- l10n/hu_HU/core.po | 40 +- l10n/hy/core.po | 40 +- l10n/ia/core.po | 40 +- l10n/id/core.po | 40 +- l10n/is/core.po | 40 +- l10n/it/core.po | 42 +- l10n/ja_JP/core.po | 40 +- l10n/ka/core.po | 40 +- l10n/ka_GE/core.po | 40 +- l10n/km/core.po | 40 +- l10n/kn/core.po | 40 +- l10n/ko/core.po | 40 +- l10n/ku_IQ/core.po | 40 +- l10n/lb/core.po | 40 +- l10n/lt_LT/core.po | 46 +- l10n/lt_LT/files_encryption.po | 14 +- l10n/lv/core.po | 40 +- l10n/mk/core.po | 40 +- l10n/ml_IN/core.po | 40 +- l10n/ms_MY/core.po | 40 +- l10n/my_MM/core.po | 40 +- l10n/nb_NO/core.po | 40 +- l10n/ne/core.po | 40 +- l10n/nl/core.po | 40 +- l10n/nn_NO/core.po | 40 +- l10n/nqo/core.po | 40 +- l10n/oc/core.po | 40 +- l10n/pa/core.po | 40 +- l10n/pl/core.po | 40 +- l10n/pt_BR/core.po | 42 +- l10n/pt_BR/files_encryption.po | 14 +- l10n/pt_PT/core.po | 40 +- l10n/ro/core.po | 40 +- l10n/ru/core.po | 40 +- l10n/si_LK/core.po | 40 +- l10n/sk/core.po | 40 +- l10n/sk_SK/core.po | 40 +- l10n/sl/core.po | 40 +- l10n/sq/core.po | 40 +- l10n/sr/core.po | 40 +- l10n/sr@latin/core.po | 40 +- l10n/sv/core.po | 40 +- l10n/sw_KE/core.po | 40 +- l10n/ta_LK/core.po | 40 +- l10n/te/core.po | 40 +- l10n/templates/core.pot | 40 +- l10n/templates/files.pot | 58 +-- l10n/templates/files_encryption.pot | 4 +- l10n/templates/files_external.pot | 4 +- l10n/templates/files_sharing.pot | 16 +- l10n/templates/files_trashbin.pot | 4 +- l10n/templates/files_versions.pot | 4 +- l10n/templates/lib.pot | 4 +- l10n/templates/private.pot | 4 +- l10n/templates/settings.pot | 18 +- l10n/templates/user_ldap.pot | 4 +- l10n/templates/user_webdavauth.pot | 4 +- l10n/th_TH/core.po | 40 +- l10n/tr/core.po | 40 +- l10n/ug/core.po | 40 +- l10n/uk/core.po | 40 +- l10n/ur_PK/core.po | 40 +- l10n/vi/core.po | 40 +- l10n/zh_CN/core.po | 40 +- l10n/zh_HK/core.po | 40 +- l10n/zh_TW/core.po | 42 +- lib/l10n/ady.php | 8 + settings/l10n/ca.php | 2 + 121 files changed, 5189 insertions(+), 1456 deletions(-) create mode 100644 apps/files/l10n/ady.php create mode 100644 apps/files_trashbin/l10n/ady.php create mode 100644 core/l10n/ady.php create mode 100644 l10n/ady/core.po create mode 100644 l10n/ady/files.po create mode 100644 l10n/ady/files_encryption.po create mode 100644 l10n/ady/files_external.po create mode 100644 l10n/ady/files_sharing.po create mode 100644 l10n/ady/files_trashbin.po create mode 100644 l10n/ady/files_versions.po create mode 100644 l10n/ady/lib.po create mode 100644 l10n/ady/settings.po create mode 100644 l10n/ady/user_ldap.po create mode 100644 l10n/ady/user_webdavauth.po create mode 100644 lib/l10n/ady.php diff --git a/apps/files/l10n/ady.php b/apps/files/l10n/ady.php new file mode 100644 index 0000000000..0157af093e --- /dev/null +++ b/apps/files/l10n/ady.php @@ -0,0 +1,7 @@ + array("",""), +"_%n file_::_%n files_" => array("",""), +"_Uploading %n file_::_Uploading %n files_" => array("","") +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_encryption/l10n/es.php b/apps/files_encryption/l10n/es.php index b302795f93..138d51b09b 100644 --- a/apps/files_encryption/l10n/es.php +++ b/apps/files_encryption/l10n/es.php @@ -13,15 +13,18 @@ $TRANSLATIONS = array( "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Por favor, asegúrese de que PHP 5.3.3 o posterior está instalado y que la extensión OpenSSL de PHP está habilitada y configurada correctamente. Por el momento, la aplicación de cifrado ha sido deshabilitada.", "Following users are not set up for encryption:" => "Los siguientes usuarios no han sido configurados para el cifrado:", "Saving..." => "Guardando...", +"Go directly to your " => "Ir directamente a su", "personal settings" => "opciones personales", "Encryption" => "Cifrado", "Enable recovery key (allow to recover users files in case of password loss):" => "Habilitar la clave de recuperación (permite recuperar los ficheros del usuario en caso de pérdida de la contraseña);", "Recovery key password" => "Contraseña de clave de recuperación", +"Repeat Recovery key password" => "Repetir contraseña de clave de recuperación", "Enabled" => "Habilitar", "Disabled" => "Deshabilitado", "Change recovery key password:" => "Cambiar la contraseña de la clave de recuperación", "Old Recovery key password" => "Antigua clave de recuperación", "New Recovery key password" => "Nueva clave de recuperación", +"Repeat New Recovery key password" => "Repetir nueva contraseña de clave de recuperación", "Change Password" => "Cambiar contraseña", "Your private key password no longer match your log-in password:" => "Su contraseña de clave privada ya no coincide con su contraseña de acceso:", "Set your old private key password to your current log-in password." => "Establecer la contraseña de su antigua clave privada a su contraseña actual de acceso.", diff --git a/apps/files_encryption/l10n/gl.php b/apps/files_encryption/l10n/gl.php index a6ffe10d57..5a1d8ec750 100644 --- a/apps/files_encryption/l10n/gl.php +++ b/apps/files_encryption/l10n/gl.php @@ -8,20 +8,24 @@ $TRANSLATIONS = array( "Could not change the password. Maybe the old password was not correct." => "Non foi posíbel cambiar o contrasinal. Probabelmente o contrasinal antigo non é o correcto.", "Private key password successfully updated." => "A chave privada foi actualizada correctamente.", "Could not update the private key password. Maybe the old password was not correct." => "Non foi posíbel actualizar o contrasinal da chave privada. É probábel que o contrasinal antigo non sexa correcto.", +"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." => "Non se iniciou o aplicativo de cifrado! Quizais volva a activarse durante a sesión. Tente pechar a sesión e volver iniciala que tamén se inicie o aplicativo de cifrado.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "A chave privada non é correcta! É probábel que o seu contrasinal teña sido cambiado desde o exterior (p.ex. o seu directorio corporativo). Vostede pode actualizar o contrasinal da súa chave privada nos seus axustes persoais para recuperar o acceso aos seus ficheiros", "Missing requirements." => "Non se cumpren os requisitos.", "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Asegúrese de que está instalado o PHP 5.3.3 ou posterior e de o OpenSSL xunto coa extensión PHP estean activados e configurados correctamente. Polo de agora foi desactivado o aplicativo de cifrado.", "Following users are not set up for encryption:" => "Os seguintes usuarios non teñen configuración para o cifrado:", "Saving..." => "Gardando...", +"Go directly to your " => "Vaia directamente ao seu", "personal settings" => "axustes persoais", "Encryption" => "Cifrado", "Enable recovery key (allow to recover users files in case of password loss):" => "Activar a chave de recuperación (permitirá recuperar os ficheiros dos usuarios no caso de perda do contrasinal):", "Recovery key password" => "Contrasinal da chave de recuperación", +"Repeat Recovery key password" => "Repita o contrasinal da chave da recuperación", "Enabled" => "Activado", "Disabled" => "Desactivado", "Change recovery key password:" => "Cambiar o contrasinal da chave de la recuperación:", "Old Recovery key password" => "Antigo contrasinal da chave de recuperación", "New Recovery key password" => "Novo contrasinal da chave de recuperación", +"Repeat New Recovery key password" => "Repita o novo contrasinal da chave da recuperación", "Change Password" => "Cambiar o contrasinal", "Your private key password no longer match your log-in password:" => "O seu contrasinal da chave privada non coincide co seu contrasinal de acceso.", "Set your old private key password to your current log-in password." => "Estabeleza o seu contrasinal antigo da chave de recuperación ao seu contrasinal de acceso actual", diff --git a/apps/files_encryption/l10n/lt_LT.php b/apps/files_encryption/l10n/lt_LT.php index 381c03f7e1..ae57cb1c56 100644 --- a/apps/files_encryption/l10n/lt_LT.php +++ b/apps/files_encryption/l10n/lt_LT.php @@ -8,20 +8,24 @@ $TRANSLATIONS = array( "Could not change the password. Maybe the old password was not correct." => "Slaptažodis nebuvo pakeistas. Gali būti, kad buvo neteisingai suvestas senasis.", "Private key password successfully updated." => "Privataus rakto slaptažodis buvo sėkmingai atnaujintas.", "Could not update the private key password. Maybe the old password was not correct." => "Nepavyko atnaujinti privataus rakto slaptažodžio. Gali būti, kad buvo neteisingai suvestas senasis.", +"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." => "Šifravimo programa nepaleista! Galbūt šifravimo programa buvo įjungta dar kartą Jūsų sesijos metu. Prašome atsijungti ir vėl prisijungti, kad paleisti šifravimo programą.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Jūsų privatus raktas yra netinkamas! Panašu, kad Jūsų slaptažodis buvo pakeistas išorėje ownCloud sistemos (pvz. Jūsų organizacijos kataloge). Galite atnaujinti savo privataus rakto slaptažodį savo asmeniniuose nustatymuose, kad atkurti prieigą prie savo šifruotų failų.", "Missing requirements." => "Trūkstami laukai.", "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Prašome įsitikinti, kad PHP 5.3.3 ar naujesnė yra įdiegta ir kad OpenSSL kartu su PHP plėtiniu yra šjungti ir teisingai sukonfigūruoti. Kol kas šifravimo programa bus išjungta.", "Following users are not set up for encryption:" => "Sekantys naudotojai nenustatyti šifravimui:", "Saving..." => "Saugoma...", +"Go directly to your " => "Eiti tiesiai į Jūsų", "personal settings" => "asmeniniai nustatymai", "Encryption" => "Šifravimas", "Enable recovery key (allow to recover users files in case of password loss):" => "Įjunkite atkūrimo raktą, (leisti atkurti naudotojų failus praradus slaptažodį):", "Recovery key password" => "Atkūrimo rakto slaptažodis", +"Repeat Recovery key password" => "Pakartokite atkūrimo rakto slaptažodį", "Enabled" => "Įjungta", "Disabled" => "Išjungta", "Change recovery key password:" => "Pakeisti atkūrimo rakto slaptažodį:", "Old Recovery key password" => "Senas atkūrimo rakto slaptažodis", "New Recovery key password" => "Naujas atkūrimo rakto slaptažodis", +"Repeat New Recovery key password" => "Pakartokite naują atkūrimo rakto slaptažodį", "Change Password" => "Pakeisti slaptažodį", "Your private key password no longer match your log-in password:" => "Privatus rakto slaptažodis daugiau neatitinka Jūsų prisijungimo slaptažodžio:", "Set your old private key password to your current log-in password." => "Nustatyti Jūsų privataus rakto slaptažodį į Jūsų dabartinį prisijungimo.", diff --git a/apps/files_encryption/l10n/pt_BR.php b/apps/files_encryption/l10n/pt_BR.php index 8e9432dacf..c6abb1952d 100644 --- a/apps/files_encryption/l10n/pt_BR.php +++ b/apps/files_encryption/l10n/pt_BR.php @@ -8,20 +8,24 @@ $TRANSLATIONS = array( "Could not change the password. Maybe the old password was not correct." => "Não foi possível alterar a senha. Talvez a senha antiga não estava correta.", "Private key password successfully updated." => "Senha de chave privada atualizada com sucesso.", "Could not update the private key password. Maybe the old password was not correct." => "Não foi possível atualizar a senha de chave privada. Talvez a senha antiga esteja incorreta.", +"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." => "Aplicativo de criptografia não foi inicializado! Talvez o aplicativo de criptografia tenha sido reativado durante essa sessão. Por favor, tente fazer logoff e login novamente para inicializar o aplicativo de criptografia.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Sua chave privada não é válida! Provavelmente sua senha foi alterada fora do sistema ownCloud (por exemplo, seu diretório corporativo). Você pode atualizar sua senha de chave privada em suas configurações pessoais para recuperar o acesso a seus arquivos criptografados.", "Missing requirements." => "Requisitos não encontrados.", "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Por favor, certifique-se que o PHP 5.3.3 ou mais recente está instalado e que a extensão PHP OpenSSL está habilitado e configurado corretamente. Por enquanto, o aplicativo de criptografia foi desativado.", "Following users are not set up for encryption:" => "Seguintes usuários não estão configurados para criptografia:", "Saving..." => "Salvando...", +"Go directly to your " => "Ir diretamente para o seu", "personal settings" => "configurações pessoais.", "Encryption" => "Criptografia", "Enable recovery key (allow to recover users files in case of password loss):" => "Habilitar chave de recuperação (permite recuperar arquivos de usuários em caso de perda de senha):", "Recovery key password" => "Senha da chave de recuperação", +"Repeat Recovery key password" => "Repita Recuperação de senha da chave", "Enabled" => "Habilitado", "Disabled" => "Desabilitado", "Change recovery key password:" => "Mudar a senha da chave de recuperação:", "Old Recovery key password" => "Senha antiga da chave de recuperação", "New Recovery key password" => "Nova senha da chave de recuperação", +"Repeat New Recovery key password" => "Repita Nova senha da chave de recuperação", "Change Password" => "Trocar Senha", "Your private key password no longer match your log-in password:" => "Sua senha de chave privada não coincide mais com sua senha de login:", "Set your old private key password to your current log-in password." => "Configure sua antiga senha de chave privada para sua atual senha de login.", diff --git a/apps/files_trashbin/l10n/ady.php b/apps/files_trashbin/l10n/ady.php new file mode 100644 index 0000000000..0acad00e8b --- /dev/null +++ b/apps/files_trashbin/l10n/ady.php @@ -0,0 +1,6 @@ + array("",""), +"_%n file_::_%n files_" => array("","") +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/ady.php b/core/l10n/ady.php new file mode 100644 index 0000000000..ffcdde48d4 --- /dev/null +++ b/core/l10n/ady.php @@ -0,0 +1,9 @@ + array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), +"_%n day ago_::_%n days ago_" => array("",""), +"_%n month ago_::_%n months ago_" => array("",""), +"_{count} file conflict_::_{count} file conflicts_" => array("","") +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/lt_LT.php b/core/l10n/lt_LT.php index 7d3ce9bec6..f25b8ab762 100644 --- a/core/l10n/lt_LT.php +++ b/core/l10n/lt_LT.php @@ -128,6 +128,7 @@ $TRANSLATIONS = array( "Help" => "Pagalba", "Access forbidden" => "Priėjimas draudžiamas", "Cloud not found" => "Negalima rasti", +"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Labas,\n\nInformuojame, kad %s pasidalino su Jumis %s.\nPažiūrėti tai: %s\n", "The share will expire on %s.\n\n" => "Bendrinimo laikas baigsis %s.\n", "Cheers!" => "Sveikinimai!", "Edit categories" => "Redaguoti kategorijas", @@ -160,6 +161,7 @@ $TRANSLATIONS = array( "remember" => "prisiminti", "Log in" => "Prisijungti", "Alternative Logins" => "Alternatyvūs prisijungimai", +"Hey there,

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

    " => "Labas,

    tik informuojame, kad %s pasidalino su Jumis »%s«.
    Peržiūrėk!

    ", "The share will expire on %s.

    " => "Bendrinimo laikas baigsis %s.

    ", "Updating ownCloud to version %s, this may take a while." => "Atnaujinama ownCloud į %s versiją. tai gali šiek tiek užtrukti." ); diff --git a/l10n/ach/core.po b/l10n/ach/core.po index 0c166220d4..701d593aca 100644 --- a/l10n/ach/core.po +++ b/l10n/ach/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:11+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot \n" "Language-Team: Acoli (http://www.transifex.com/projects/p/owncloud/language/ach/)\n" "MIME-Version: 1.0\n" @@ -320,7 +320,7 @@ msgstr "" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:665 js/share.js:677 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "" @@ -340,7 +340,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:132 js/share.js:705 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "" @@ -372,7 +372,7 @@ msgstr "" msgid "Password protect" msgstr "" -#: js/share.js:194 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "" @@ -444,27 +444,27 @@ msgstr "" msgid "share" msgstr "" -#: js/share.js:409 js/share.js:652 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "" -#: js/share.js:665 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:677 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "" -#: js/share.js:692 +#: js/share.js:694 msgid "Sending ..." msgstr "" -#: js/share.js:703 +#: js/share.js:705 msgid "Email sent" msgstr "" -#: js/share.js:727 +#: js/share.js:729 msgid "Warning" msgstr "" @@ -504,7 +504,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "" #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "" @@ -709,19 +709,27 @@ msgstr "" msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "" -#: templates/login.php:40 +#: templates/login.php:46 msgid "Log in" msgstr "" -#: templates/login.php:46 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "" diff --git a/l10n/ady/core.po b/l10n/ady/core.po new file mode 100644 index 0000000000..1754aa785e --- /dev/null +++ b/l10n/ady/core.po @@ -0,0 +1,751 @@ +# 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: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Adyghe (http://www.transifex.com/projects/p/owncloud/language/ady/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ady\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/share.php:118 ajax/share.php:197 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: ajax/share.php:168 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" + +#: ajax/share.php:327 +msgid "group" +msgstr "" + +#: ajax/update.php:11 +msgid "Turned on maintenance mode" +msgstr "" + +#: ajax/update.php:14 +msgid "Turned off maintenance mode" +msgstr "" + +#: ajax/update.php:17 +msgid "Updated database" +msgstr "" + +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "" + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." +msgstr "" + +#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 +msgid "Category type not provided." +msgstr "" + +#: ajax/vcategories/add.php:30 +msgid "No category to add?" +msgstr "" + +#: ajax/vcategories/add.php:37 +#, php-format +msgid "This category already exists: %s" +msgstr "" + +#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 +#: ajax/vcategories/favorites.php:24 +#: ajax/vcategories/removeFromFavorites.php:26 +msgid "Object type not provided." +msgstr "" + +#: ajax/vcategories/addToFavorites.php:30 +#: ajax/vcategories/removeFromFavorites.php:30 +#, php-format +msgid "%s ID not provided." +msgstr "" + +#: ajax/vcategories/addToFavorites.php:35 +#, php-format +msgid "Error adding %s to favorites." +msgstr "" + +#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 +msgid "No categories selected for deletion." +msgstr "" + +#: ajax/vcategories/removeFromFavorites.php:35 +#, php-format +msgid "Error removing %s from favorites." +msgstr "" + +#: avatar/controller.php:62 +msgid "No image or file provided" +msgstr "" + +#: avatar/controller.php:81 +msgid "Unknown filetype" +msgstr "" + +#: avatar/controller.php:85 +msgid "Invalid image" +msgstr "" + +#: avatar/controller.php:115 avatar/controller.php:142 +msgid "No temporary profile picture available, try again" +msgstr "" + +#: avatar/controller.php:135 +msgid "No crop data provided" +msgstr "" + +#: js/config.php:32 +msgid "Sunday" +msgstr "" + +#: js/config.php:33 +msgid "Monday" +msgstr "" + +#: js/config.php:34 +msgid "Tuesday" +msgstr "" + +#: js/config.php:35 +msgid "Wednesday" +msgstr "" + +#: js/config.php:36 +msgid "Thursday" +msgstr "" + +#: js/config.php:37 +msgid "Friday" +msgstr "" + +#: js/config.php:38 +msgid "Saturday" +msgstr "" + +#: js/config.php:43 +msgid "January" +msgstr "" + +#: js/config.php:44 +msgid "February" +msgstr "" + +#: js/config.php:45 +msgid "March" +msgstr "" + +#: js/config.php:46 +msgid "April" +msgstr "" + +#: js/config.php:47 +msgid "May" +msgstr "" + +#: js/config.php:48 +msgid "June" +msgstr "" + +#: js/config.php:49 +msgid "July" +msgstr "" + +#: js/config.php:50 +msgid "August" +msgstr "" + +#: js/config.php:51 +msgid "September" +msgstr "" + +#: js/config.php:52 +msgid "October" +msgstr "" + +#: js/config.php:53 +msgid "November" +msgstr "" + +#: js/config.php:54 +msgid "December" +msgstr "" + +#: js/js.js:387 +msgid "Settings" +msgstr "" + +#: js/js.js:866 +msgid "seconds ago" +msgstr "" + +#: js/js.js:867 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:868 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:869 +msgid "today" +msgstr "" + +#: js/js.js:870 +msgid "yesterday" +msgstr "" + +#: js/js.js:871 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:872 +msgid "last month" +msgstr "" + +#: js/js.js:873 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:874 +msgid "months ago" +msgstr "" + +#: js/js.js:875 +msgid "last year" +msgstr "" + +#: js/js.js:876 +msgid "years ago" +msgstr "" + +#: js/oc-dialogs.js:123 +msgid "Choose" +msgstr "" + +#: js/oc-dialogs.js:146 +msgid "Error loading file picker template: {error}" +msgstr "" + +#: js/oc-dialogs.js:172 +msgid "Yes" +msgstr "" + +#: js/oc-dialogs.js:182 +msgid "No" +msgstr "" + +#: js/oc-dialogs.js:199 +msgid "Ok" +msgstr "" + +#: js/oc-dialogs.js:219 +msgid "Error loading message template: {error}" +msgstr "" + +#: js/oc-dialogs.js:347 +msgid "{count} file conflict" +msgid_plural "{count} file conflicts" +msgstr[0] "" +msgstr[1] "" + +#: js/oc-dialogs.js:361 +msgid "One file conflict" +msgstr "" + +#: js/oc-dialogs.js:367 +msgid "Which files do you want to keep?" +msgstr "" + +#: js/oc-dialogs.js:368 +msgid "" +"If you select both versions, the copied file will have a number added to its" +" name." +msgstr "" + +#: js/oc-dialogs.js:376 +msgid "Cancel" +msgstr "" + +#: js/oc-dialogs.js:386 +msgid "Continue" +msgstr "" + +#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +msgid "(all selected)" +msgstr "" + +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +msgid "({count} selected)" +msgstr "" + +#: js/oc-dialogs.js:457 +msgid "Error loading file exists template" +msgstr "" + +#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 +#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 +msgid "The object type is not specified." +msgstr "" + +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 +#: js/share.js:667 js/share.js:679 +msgid "Error" +msgstr "" + +#: js/oc-vcategories.js:179 +msgid "The app name is not specified." +msgstr "" + +#: js/oc-vcategories.js:194 +msgid "The required file {file} is not installed!" +msgstr "" + +#: js/share.js:30 js/share.js:45 js/share.js:87 +msgid "Shared" +msgstr "" + +#: js/share.js:90 +msgid "Share" +msgstr "" + +#: js/share.js:132 js/share.js:707 +msgid "Error while sharing" +msgstr "" + +#: js/share.js:143 +msgid "Error while unsharing" +msgstr "" + +#: js/share.js:150 +msgid "Error while changing permissions" +msgstr "" + +#: js/share.js:159 +msgid "Shared with you and the group {group} by {owner}" +msgstr "" + +#: js/share.js:161 +msgid "Shared with you by {owner}" +msgstr "" + +#: js/share.js:184 +msgid "Share with" +msgstr "" + +#: js/share.js:189 +msgid "Share with link" +msgstr "" + +#: js/share.js:192 +msgid "Password protect" +msgstr "" + +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 +msgid "Password" +msgstr "" + +#: js/share.js:199 +msgid "Allow Public Upload" +msgstr "" + +#: js/share.js:203 +msgid "Email link to person" +msgstr "" + +#: js/share.js:204 +msgid "Send" +msgstr "" + +#: js/share.js:209 +msgid "Set expiration date" +msgstr "" + +#: js/share.js:210 +msgid "Expiration date" +msgstr "" + +#: js/share.js:243 +msgid "Share via email:" +msgstr "" + +#: js/share.js:246 +msgid "No people found" +msgstr "" + +#: js/share.js:284 +msgid "Resharing is not allowed" +msgstr "" + +#: js/share.js:320 +msgid "Shared in {item} with {user}" +msgstr "" + +#: js/share.js:341 +msgid "Unshare" +msgstr "" + +#: js/share.js:353 +msgid "notify user by email" +msgstr "" + +#: js/share.js:361 +msgid "can edit" +msgstr "" + +#: js/share.js:363 +msgid "access control" +msgstr "" + +#: js/share.js:366 +msgid "create" +msgstr "" + +#: js/share.js:369 +msgid "update" +msgstr "" + +#: js/share.js:372 +msgid "delete" +msgstr "" + +#: js/share.js:375 +msgid "share" +msgstr "" + +#: js/share.js:409 js/share.js:654 +msgid "Password protected" +msgstr "" + +#: js/share.js:667 +msgid "Error unsetting expiration date" +msgstr "" + +#: js/share.js:679 +msgid "Error setting expiration date" +msgstr "" + +#: js/share.js:694 +msgid "Sending ..." +msgstr "" + +#: js/share.js:705 +msgid "Email sent" +msgstr "" + +#: js/share.js:729 +msgid "Warning" +msgstr "" + +#: js/update.js:17 +msgid "" +"The update was unsuccessful. Please report this issue to the ownCloud " +"community." +msgstr "" + +#: js/update.js:21 +msgid "The update was successful. Redirecting you to ownCloud now." +msgstr "" + +#: lostpassword/controller.php:62 +#, php-format +msgid "%s password reset" +msgstr "" + +#: lostpassword/templates/email.php:2 +msgid "Use the following link to reset your password: {link}" +msgstr "" + +#: lostpassword/templates/lostpassword.php:4 +msgid "" +"The link to reset your password has been sent to your email.
    If you do " +"not receive it within a reasonable amount of time, check your spam/junk " +"folders.
    If it is not there ask your local administrator ." +msgstr "" + +#: lostpassword/templates/lostpassword.php:12 +msgid "Request failed!
    Did you make sure your email/username was right?" +msgstr "" + +#: lostpassword/templates/lostpassword.php:15 +msgid "You will receive a link to reset your password via Email." +msgstr "" + +#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 +#: templates/login.php:25 +msgid "Username" +msgstr "" + +#: lostpassword/templates/lostpassword.php:22 +msgid "" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" +msgstr "" + +#: lostpassword/templates/lostpassword.php:24 +msgid "Yes, I really want to reset my password now" +msgstr "" + +#: lostpassword/templates/lostpassword.php:27 +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 templates/layout.user.php:108 +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:15 +msgid "Cloud not found" +msgstr "" + +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +msgstr "" + +#: templates/altmail.php:4 +#, php-format +msgid "" +"The share will expire on %s.\n" +"\n" +msgstr "" + +#: templates/altmail.php:6 templates/mail.php:19 +msgid "Cheers!" +msgstr "" + +#: templates/edit_categories_dialog.php:4 +msgid "Edit categories" +msgstr "" + +#: templates/edit_categories_dialog.php:16 +msgid "Add" +msgstr "" + +#: templates/installation.php:24 templates/installation.php:31 +#: templates/installation.php:38 +msgid "Security Warning" +msgstr "" + +#: templates/installation.php:25 +msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" +msgstr "" + +#: templates/installation.php:26 +#, php-format +msgid "Please update your PHP installation to use %s securely." +msgstr "" + +#: templates/installation.php:32 +msgid "" +"No secure random number generator is available, please enable the PHP " +"OpenSSL extension." +msgstr "" + +#: templates/installation.php:33 +msgid "" +"Without a secure random number generator an attacker may be able to predict " +"password reset tokens and take over your account." +msgstr "" + +#: templates/installation.php:39 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + +#: templates/installation.php:41 +#, php-format +msgid "" +"For information how to properly configure your server, please see the documentation." +msgstr "" + +#: templates/installation.php:47 +msgid "Create an admin account" +msgstr "" + +#: templates/installation.php:66 +msgid "Advanced" +msgstr "" + +#: templates/installation.php:73 +msgid "Data folder" +msgstr "" + +#: templates/installation.php:85 +msgid "Configure the database" +msgstr "" + +#: templates/installation.php:90 templates/installation.php:102 +#: templates/installation.php:113 templates/installation.php:124 +#: templates/installation.php:136 +msgid "will be used" +msgstr "" + +#: templates/installation.php:148 +msgid "Database user" +msgstr "" + +#: templates/installation.php:155 +msgid "Database password" +msgstr "" + +#: templates/installation.php:160 +msgid "Database name" +msgstr "" + +#: templates/installation.php:168 +msgid "Database tablespace" +msgstr "" + +#: templates/installation.php:175 +msgid "Database host" +msgstr "" + +#: templates/installation.php:184 +msgid "Finish setup" +msgstr "" + +#: templates/installation.php:184 +msgid "Finishing …" +msgstr "" + +#: templates/layout.user.php:41 +#, php-format +msgid "%s is available. Get more information on how to update." +msgstr "" + +#: templates/layout.user.php:69 +msgid "Log out" +msgstr "" + +#: templates/login.php:9 +msgid "Automatic logon rejected!" +msgstr "" + +#: templates/login.php:10 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "" + +#: templates/login.php:12 +msgid "Please change your password to secure your account again." +msgstr "" + +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 +msgid "Lost your password?" +msgstr "" + +#: templates/login.php:43 +msgid "remember" +msgstr "" + +#: templates/login.php:46 +msgid "Log in" +msgstr "" + +#: templates/login.php:52 +msgid "Alternative Logins" +msgstr "" + +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

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

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

    " +msgstr "" + +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" diff --git a/l10n/ady/files.po b/l10n/ady/files.po new file mode 100644 index 0000000000..aff7006c56 --- /dev/null +++ b/l10n/ady/files.po @@ -0,0 +1,356 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-10-07 12:14-0400\n" +"PO-Revision-Date: 2013-10-07 15:03+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Adyghe (http://www.transifex.com/projects/p/owncloud/language/ady/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ady\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/upload.php:16 ajax/upload.php:45 +msgid "Unable to set upload directory." +msgstr "" + +#: ajax/upload.php:22 +msgid "Invalid Token" +msgstr "" + +#: ajax/upload.php:59 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:66 +msgid "There is no error, the file uploaded with success" +msgstr "" + +#: ajax/upload.php:67 +msgid "" +"The uploaded file exceeds the upload_max_filesize directive in php.ini: " +msgstr "" + +#: ajax/upload.php:69 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form" +msgstr "" + +#: ajax/upload.php:70 +msgid "The uploaded file was only partially uploaded" +msgstr "" + +#: ajax/upload.php:71 +msgid "No file was uploaded" +msgstr "" + +#: ajax/upload.php:72 +msgid "Missing a temporary folder" +msgstr "" + +#: ajax/upload.php:73 +msgid "Failed to write to disk" +msgstr "" + +#: ajax/upload.php:91 +msgid "Not enough storage available" +msgstr "" + +#: ajax/upload.php:120 ajax/upload.php:143 +msgid "Upload failed. Could not get file info." +msgstr "" + +#: ajax/upload.php:136 +msgid "Upload failed. Could not find uploaded file" +msgstr "" + +#: ajax/upload.php:160 +msgid "Invalid directory." +msgstr "" + +#: appinfo/app.php:11 +msgid "Files" +msgstr "" + +#: js/file-upload.js:224 +msgid "Unable to upload {filename} as it is a directory or has 0 bytes" +msgstr "" + +#: js/file-upload.js:235 +msgid "Not enough space available" +msgstr "" + +#: js/file-upload.js:302 +msgid "Upload cancelled." +msgstr "" + +#: js/file-upload.js:336 +msgid "Could not get result from server." +msgstr "" + +#: js/file-upload.js:426 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/file-upload.js:500 +msgid "URL cannot be empty." +msgstr "" + +#: js/file-upload.js:505 lib/app.php:53 +msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +msgstr "" + +#: js/file-upload.js:537 js/file-upload.js:553 js/files.js:518 js/files.js:556 +msgid "Error" +msgstr "" + +#: js/fileactions.js:119 +msgid "Share" +msgstr "" + +#: js/fileactions.js:131 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:184 +msgid "Rename" +msgstr "" + +#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +msgid "Pending" +msgstr "" + +#: js/filelist.js:416 js/filelist.js:418 +msgid "{new_name} already exists" +msgstr "" + +#: js/filelist.js:416 js/filelist.js:418 +msgid "replace" +msgstr "" + +#: js/filelist.js:416 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:416 js/filelist.js:418 +msgid "cancel" +msgstr "" + +#: js/filelist.js:463 +msgid "replaced {new_name} with {old_name}" +msgstr "" + +#: js/filelist.js:463 +msgid "undo" +msgstr "" + +#: js/filelist.js:533 js/filelist.js:599 js/files.js:587 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: js/filelist.js:534 js/filelist.js:600 js/files.js:593 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" + +#: js/filelist.js:541 +msgid "{dirs} and {files}" +msgstr "" + +#: js/filelist.js:731 js/filelist.js:769 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" + +#: js/files.js:25 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:29 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:37 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "" + +#: js/files.js:51 +msgid "Your storage is full, files can not be updated or synced anymore!" +msgstr "" + +#: js/files.js:55 +msgid "Your storage is almost full ({usedSpacePercent}%)" +msgstr "" + +#: js/files.js:68 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "" + +#: js/files.js:72 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "" + +#: js/files.js:76 +msgid "" +"Encryption was disabled but your files are still encrypted. Please go to " +"your personal settings to decrypt your files." +msgstr "" + +#: js/files.js:307 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." +msgstr "" + +#: js/files.js:518 js/files.js:556 +msgid "Error moving file" +msgstr "" + +#: js/files.js:569 templates/index.php:57 +msgid "Name" +msgstr "" + +#: js/files.js:570 templates/index.php:69 +msgid "Size" +msgstr "" + +#: js/files.js:571 templates/index.php:71 +msgid "Modified" +msgstr "" + +#: lib/app.php:73 +#, php-format +msgid "%s could not be renamed" +msgstr "" + +#: lib/helper.php:11 templates/index.php:17 +msgid "Upload" +msgstr "" + +#: templates/admin.php:5 +msgid "File handling" +msgstr "" + +#: templates/admin.php:7 +msgid "Maximum upload size" +msgstr "" + +#: templates/admin.php:10 +msgid "max. possible: " +msgstr "" + +#: templates/admin.php:15 +msgid "Needed for multi-file and folder downloads." +msgstr "" + +#: templates/admin.php:17 +msgid "Enable ZIP-download" +msgstr "" + +#: templates/admin.php:20 +msgid "0 is unlimited" +msgstr "" + +#: templates/admin.php:22 +msgid "Maximum input size for ZIP files" +msgstr "" + +#: templates/admin.php:26 +msgid "Save" +msgstr "" + +#: templates/index.php:6 +msgid "New" +msgstr "" + +#: templates/index.php:9 +msgid "Text file" +msgstr "" + +#: templates/index.php:11 +msgid "Folder" +msgstr "" + +#: templates/index.php:13 +msgid "From link" +msgstr "" + +#: templates/index.php:30 +msgid "Deleted files" +msgstr "" + +#: templates/index.php:35 +msgid "Cancel upload" +msgstr "" + +#: templates/index.php:41 +msgid "You don’t have write permissions here." +msgstr "" + +#: templates/index.php:46 +msgid "Nothing in here. Upload something!" +msgstr "" + +#: templates/index.php:63 +msgid "Download" +msgstr "" + +#: templates/index.php:76 templates/index.php:77 +msgid "Unshare" +msgstr "" + +#: templates/index.php:82 templates/index.php:83 +msgid "Delete" +msgstr "" + +#: templates/index.php:96 +msgid "Upload too large" +msgstr "" + +#: templates/index.php:98 +msgid "" +"The files you are trying to upload exceed the maximum size for file uploads " +"on this server." +msgstr "" + +#: templates/index.php:103 +msgid "Files are being scanned, please wait." +msgstr "" + +#: templates/index.php:106 +msgid "Current scanning" +msgstr "" + +#: templates/upgrade.php:2 +msgid "Upgrading filesystem cache..." +msgstr "" diff --git a/l10n/ady/files_encryption.po b/l10n/ady/files_encryption.po new file mode 100644 index 0000000000..25ef44da33 --- /dev/null +++ b/l10n/ady/files_encryption.po @@ -0,0 +1,185 @@ +# 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: 2013-10-07 12:14-0400\n" +"PO-Revision-Date: 2013-10-07 15:03+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Adyghe (http://www.transifex.com/projects/p/owncloud/language/ady/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ady\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/adminrecovery.php:29 +msgid "Recovery key successfully enabled" +msgstr "" + +#: ajax/adminrecovery.php:34 +msgid "" +"Could not enable recovery key. Please check your recovery key password!" +msgstr "" + +#: ajax/adminrecovery.php:48 +msgid "Recovery key successfully disabled" +msgstr "" + +#: ajax/adminrecovery.php:53 +msgid "" +"Could not disable recovery key. Please check your recovery key password!" +msgstr "" + +#: ajax/changeRecoveryPassword.php:49 +msgid "Password successfully changed." +msgstr "" + +#: ajax/changeRecoveryPassword.php:51 +msgid "Could not change the password. Maybe the old password was not correct." +msgstr "" + +#: ajax/updatePrivateKeyPassword.php:52 +msgid "Private key password successfully updated." +msgstr "" + +#: ajax/updatePrivateKeyPassword.php:54 +msgid "" +"Could not update the private key password. Maybe the old password was not " +"correct." +msgstr "" + +#: files/error.php:9 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "" + +#: files/error.php:12 +msgid "" +"Your private key is not valid! Likely your password was changed outside the " +"ownCloud system (e.g. your corporate directory). You can update your private" +" key password in your personal settings to recover access to your encrypted " +"files." +msgstr "" + +#: hooks/hooks.php:53 +msgid "Missing requirements." +msgstr "" + +#: hooks/hooks.php:54 +msgid "" +"Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " +"together with the PHP extension is enabled and configured properly. For now," +" the encryption app has been disabled." +msgstr "" + +#: hooks/hooks.php:254 +msgid "Following users are not set up for encryption:" +msgstr "" + +#: js/settings-admin.js:13 +msgid "Saving..." +msgstr "" + +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " +msgstr "" + +#: templates/invalid_private_key.php:8 +msgid "personal settings" +msgstr "" + +#: templates/settings-admin.php:5 templates/settings-personal.php:4 +msgid "Encryption" +msgstr "" + +#: templates/settings-admin.php:10 +msgid "" +"Enable recovery key (allow to recover users files in case of password loss):" +msgstr "" + +#: templates/settings-admin.php:14 +msgid "Recovery key password" +msgstr "" + +#: templates/settings-admin.php:17 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:24 templates/settings-personal.php:54 +msgid "Enabled" +msgstr "" + +#: templates/settings-admin.php:32 templates/settings-personal.php:62 +msgid "Disabled" +msgstr "" + +#: templates/settings-admin.php:37 +msgid "Change recovery key password:" +msgstr "" + +#: templates/settings-admin.php:43 +msgid "Old Recovery key password" +msgstr "" + +#: templates/settings-admin.php:50 +msgid "New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:56 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:61 +msgid "Change Password" +msgstr "" + +#: templates/settings-personal.php:11 +msgid "Your private key password no longer match your log-in password:" +msgstr "" + +#: templates/settings-personal.php:14 +msgid "Set your old private key password to your current log-in password." +msgstr "" + +#: templates/settings-personal.php:16 +msgid "" +" If you don't remember your old password you can ask your administrator to " +"recover your files." +msgstr "" + +#: templates/settings-personal.php:24 +msgid "Old log-in password" +msgstr "" + +#: templates/settings-personal.php:30 +msgid "Current log-in password" +msgstr "" + +#: templates/settings-personal.php:35 +msgid "Update Private Key Password" +msgstr "" + +#: templates/settings-personal.php:45 +msgid "Enable password recovery:" +msgstr "" + +#: templates/settings-personal.php:47 +msgid "" +"Enabling this option will allow you to reobtain access to your encrypted " +"files in case of password loss" +msgstr "" + +#: templates/settings-personal.php:63 +msgid "File recovery settings updated" +msgstr "" + +#: templates/settings-personal.php:64 +msgid "Could not update file recovery" +msgstr "" diff --git a/l10n/ady/files_external.po b/l10n/ady/files_external.po new file mode 100644 index 0000000000..9715fc2bc0 --- /dev/null +++ b/l10n/ady/files_external.po @@ -0,0 +1,123 @@ +# 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: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 15:03+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Adyghe (http://www.transifex.com/projects/p/owncloud/language/ady/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ady\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +msgid "Access granted" +msgstr "" + +#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +msgid "Error configuring Dropbox storage" +msgstr "" + +#: js/dropbox.js:65 js/google.js:86 +msgid "Grant access" +msgstr "" + +#: js/dropbox.js:101 +msgid "Please provide a valid Dropbox app key and secret." +msgstr "" + +#: js/google.js:42 js/google.js:121 +msgid "Error configuring Google Drive storage" +msgstr "" + +#: lib/config.php:453 +msgid "" +"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " +"is not possible. Please ask your system administrator to install it." +msgstr "" + +#: lib/config.php:457 +msgid "" +"Warning: The FTP support in PHP is not enabled or installed. Mounting" +" of FTP shares is not possible. Please ask your system administrator to " +"install it." +msgstr "" + +#: lib/config.php:460 +msgid "" +"Warning: The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "" + +#: templates/settings.php:3 +msgid "External Storage" +msgstr "" + +#: templates/settings.php:9 templates/settings.php:28 +msgid "Folder name" +msgstr "" + +#: templates/settings.php:10 +msgid "External storage" +msgstr "" + +#: templates/settings.php:11 +msgid "Configuration" +msgstr "" + +#: templates/settings.php:12 +msgid "Options" +msgstr "" + +#: templates/settings.php:13 +msgid "Applicable" +msgstr "" + +#: templates/settings.php:33 +msgid "Add storage" +msgstr "" + +#: templates/settings.php:90 +msgid "None set" +msgstr "" + +#: templates/settings.php:91 +msgid "All Users" +msgstr "" + +#: templates/settings.php:92 +msgid "Groups" +msgstr "" + +#: templates/settings.php:100 +msgid "Users" +msgstr "" + +#: templates/settings.php:113 templates/settings.php:114 +#: templates/settings.php:149 templates/settings.php:150 +msgid "Delete" +msgstr "" + +#: templates/settings.php:129 +msgid "Enable User External Storage" +msgstr "" + +#: templates/settings.php:130 +msgid "Allow users to mount their own external storage" +msgstr "" + +#: templates/settings.php:141 +msgid "SSL root certificates" +msgstr "" + +#: templates/settings.php:159 +msgid "Import Root Certificate" +msgstr "" diff --git a/l10n/ady/files_sharing.po b/l10n/ady/files_sharing.po new file mode 100644 index 0000000000..aa1df900ca --- /dev/null +++ b/l10n/ady/files_sharing.po @@ -0,0 +1,80 @@ +# 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: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 15:03+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Adyghe (http://www.transifex.com/projects/p/owncloud/language/ady/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ady\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 +msgid "Password" +msgstr "" + +#: templates/authenticate.php:9 +msgid "Submit" +msgstr "" + +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "" + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "" + +#: templates/public.php:16 +#, php-format +msgid "%s shared the folder %s with you" +msgstr "" + +#: templates/public.php:19 +#, php-format +msgid "%s shared the file %s with you" +msgstr "" + +#: templates/public.php:27 templates/public.php:93 +msgid "Download" +msgstr "" + +#: templates/public.php:44 templates/public.php:47 +msgid "Upload" +msgstr "" + +#: templates/public.php:57 +msgid "Cancel upload" +msgstr "" + +#: templates/public.php:90 +msgid "No preview available for" +msgstr "" diff --git a/l10n/ady/files_trashbin.po b/l10n/ady/files_trashbin.po new file mode 100644 index 0000000000..1b92cb7f60 --- /dev/null +++ b/l10n/ady/files_trashbin.po @@ -0,0 +1,84 @@ +# 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: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 15:03+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Adyghe (http://www.transifex.com/projects/p/owncloud/language/ady/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ady\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/delete.php:42 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:42 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + +#: js/trash.js:7 js/trash.js:102 +msgid "perform restore operation" +msgstr "" + +#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +msgid "Error" +msgstr "" + +#: js/trash.js:37 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:129 +msgid "Delete permanently" +msgstr "" + +#: js/trash.js:190 templates/index.php:21 +msgid "Name" +msgstr "" + +#: js/trash.js:191 templates/index.php:31 +msgid "Deleted" +msgstr "" + +#: js/trash.js:199 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: js/trash.js:205 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" + +#: lib/trashbin.php:814 lib/trashbin.php:816 +msgid "restored" +msgstr "" + +#: templates/index.php:9 +msgid "Nothing in here. Your trash bin is empty!" +msgstr "" + +#: templates/index.php:24 templates/index.php:26 +msgid "Restore" +msgstr "" + +#: templates/index.php:34 templates/index.php:35 +msgid "Delete" +msgstr "" + +#: templates/part.breadcrumb.php:9 +msgid "Deleted Files" +msgstr "" diff --git a/l10n/ady/files_versions.po b/l10n/ady/files_versions.po new file mode 100644 index 0000000000..5e9e0e8f2a --- /dev/null +++ b/l10n/ady/files_versions.po @@ -0,0 +1,43 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 15:03+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Adyghe (http://www.transifex.com/projects/p/owncloud/language/ady/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ady\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/rollbackVersion.php:13 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: js/versions.js:7 +msgid "Versions" +msgstr "" + +#: js/versions.js:53 +msgid "Failed to revert {file} to revision {timestamp}." +msgstr "" + +#: js/versions.js:79 +msgid "More versions..." +msgstr "" + +#: js/versions.js:116 +msgid "No other versions available" +msgstr "" + +#: js/versions.js:147 +msgid "Restore" +msgstr "" diff --git a/l10n/ady/lib.po b/l10n/ady/lib.po new file mode 100644 index 0000000000..94fa2ed8df --- /dev/null +++ b/l10n/ady/lib.po @@ -0,0 +1,341 @@ +# 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: 2013-10-07 12:17-0400\n" +"PO-Revision-Date: 2013-10-07 15:03+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Adyghe (http://www.transifex.com/projects/p/owncloud/language/ady/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ady\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: private/app.php:237 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "" + +#: private/app.php:248 +msgid "No app name specified" +msgstr "" + +#: private/app.php:352 +msgid "Help" +msgstr "" + +#: private/app.php:365 +msgid "Personal" +msgstr "" + +#: private/app.php:376 +msgid "Settings" +msgstr "" + +#: private/app.php:388 +msgid "Users" +msgstr "" + +#: private/app.php:401 +msgid "Admin" +msgstr "" + +#: private/app.php:832 +#, php-format +msgid "Failed to upgrade \"%s\"." +msgstr "" + +#: private/avatar.php:56 +msgid "Custom profile pictures don't work with encryption yet" +msgstr "" + +#: private/avatar.php:64 +msgid "Unknown filetype" +msgstr "" + +#: private/avatar.php:69 +msgid "Invalid image" +msgstr "" + +#: private/defaults.php:36 +msgid "web services under your control" +msgstr "" + +#: private/files.php:66 private/files.php:98 +#, php-format +msgid "cannot open \"%s\"" +msgstr "" + +#: private/files.php:226 +msgid "ZIP download is turned off." +msgstr "" + +#: private/files.php:227 +msgid "Files need to be downloaded one by one." +msgstr "" + +#: private/files.php:228 private/files.php:256 +msgid "Back to Files" +msgstr "" + +#: private/files.php:253 +msgid "Selected files too large to generate zip file." +msgstr "" + +#: private/files.php:254 +msgid "" +"Download the files in smaller chunks, seperately or kindly ask your " +"administrator." +msgstr "" + +#: private/installer.php:63 +msgid "No source specified when installing app" +msgstr "" + +#: private/installer.php:70 +msgid "No href specified when installing app from http" +msgstr "" + +#: private/installer.php:75 +msgid "No path specified when installing app from local file" +msgstr "" + +#: private/installer.php:89 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: private/installer.php:103 +msgid "Failed to open archive when installing app" +msgstr "" + +#: private/installer.php:125 +msgid "App does not provide an info.xml file" +msgstr "" + +#: private/installer.php:131 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: private/installer.php:140 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: private/installer.php:146 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: private/installer.php:152 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: private/installer.php:162 +msgid "App directory already exists" +msgstr "" + +#: private/installer.php:175 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + +#: private/json.php:28 +msgid "Application is not enabled" +msgstr "" + +#: private/json.php:39 private/json.php:62 private/json.php:73 +msgid "Authentication error" +msgstr "" + +#: private/json.php:51 +msgid "Token expired. Please reload page." +msgstr "" + +#: private/search/provider/file.php:18 private/search/provider/file.php:36 +msgid "Files" +msgstr "" + +#: private/search/provider/file.php:27 private/search/provider/file.php:34 +msgid "Text" +msgstr "" + +#: private/search/provider/file.php:30 +msgid "Images" +msgstr "" + +#: private/setup/abstractdatabase.php:22 +#, php-format +msgid "%s enter the database username." +msgstr "" + +#: private/setup/abstractdatabase.php:25 +#, php-format +msgid "%s enter the database name." +msgstr "" + +#: private/setup/abstractdatabase.php:28 +#, php-format +msgid "%s you may not use dots in the database name" +msgstr "" + +#: private/setup/mssql.php:20 +#, php-format +msgid "MS SQL username and/or password not valid: %s" +msgstr "" + +#: private/setup/mssql.php:21 private/setup/mysql.php:13 +#: private/setup/oci.php:114 private/setup/postgresql.php:24 +#: private/setup/postgresql.php:70 +msgid "You need to enter either an existing account or the administrator." +msgstr "" + +#: private/setup/mysql.php:12 +msgid "MySQL username and/or password not valid" +msgstr "" + +#: private/setup/mysql.php:67 private/setup/oci.php:54 +#: private/setup/oci.php:121 private/setup/oci.php:147 +#: private/setup/oci.php:154 private/setup/oci.php:165 +#: private/setup/oci.php:172 private/setup/oci.php:181 +#: private/setup/oci.php:189 private/setup/oci.php:198 +#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/postgresql.php:98 private/setup/postgresql.php:115 +#: private/setup/postgresql.php:125 private/setup/postgresql.php:134 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: private/setup/mysql.php:68 private/setup/oci.php:55 +#: private/setup/oci.php:122 private/setup/oci.php:148 +#: private/setup/oci.php:155 private/setup/oci.php:166 +#: private/setup/oci.php:182 private/setup/oci.php:190 +#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 +#, php-format +msgid "Offending command was: \"%s\"" +msgstr "" + +#: private/setup/mysql.php:85 +#, php-format +msgid "MySQL user '%s'@'localhost' exists already." +msgstr "" + +#: private/setup/mysql.php:86 +msgid "Drop this user from MySQL" +msgstr "" + +#: private/setup/mysql.php:91 +#, php-format +msgid "MySQL user '%s'@'%%' already exists" +msgstr "" + +#: private/setup/mysql.php:92 +msgid "Drop this user from MySQL." +msgstr "" + +#: private/setup/oci.php:34 +msgid "Oracle connection could not be established" +msgstr "" + +#: private/setup/oci.php:41 private/setup/oci.php:113 +msgid "Oracle username and/or password not valid" +msgstr "" + +#: private/setup/oci.php:173 private/setup/oci.php:205 +#, php-format +msgid "Offending command was: \"%s\", name: %s, password: %s" +msgstr "" + +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +msgid "PostgreSQL username and/or password not valid" +msgstr "" + +#: private/setup.php:28 +msgid "Set an admin username." +msgstr "" + +#: private/setup.php:31 +msgid "Set an admin password." +msgstr "" + +#: private/setup.php:184 +msgid "" +"Your web server is not yet properly setup to allow files synchronization " +"because the WebDAV interface seems to be broken." +msgstr "" + +#: private/setup.php:185 +#, php-format +msgid "Please double check the installation guides." +msgstr "" + +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "" + +#: private/template/functions.php:122 +msgid "seconds ago" +msgstr "" + +#: private/template/functions.php:123 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:124 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:125 +msgid "today" +msgstr "" + +#: private/template/functions.php:126 +msgid "yesterday" +msgstr "" + +#: private/template/functions.php:128 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:130 +msgid "last month" +msgstr "" + +#: private/template/functions.php:131 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:133 +msgid "last year" +msgstr "" + +#: private/template/functions.php:134 +msgid "years ago" +msgstr "" + +#: private/template.php:297 +msgid "Caused by:" +msgstr "" diff --git a/l10n/ady/settings.po b/l10n/ady/settings.po new file mode 100644 index 0000000000..6a7e861752 --- /dev/null +++ b/l10n/ady/settings.po @@ -0,0 +1,609 @@ +# 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: 2013-10-07 12:17-0400\n" +"PO-Revision-Date: 2013-10-07 15:03+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Adyghe (http://www.transifex.com/projects/p/owncloud/language/ady/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ady\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/apps/ocs.php:20 +msgid "Unable to load list from App Store" +msgstr "" + +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/togglegroups.php:20 changepassword/controller.php:55 +msgid "Authentication error" +msgstr "" + +#: ajax/changedisplayname.php:31 +msgid "Your display name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 +msgid "Unable to change display name" +msgstr "" + +#: ajax/creategroup.php:10 +msgid "Group already exists" +msgstr "" + +#: ajax/creategroup.php:19 +msgid "Unable to add group" +msgstr "" + +#: ajax/lostpassword.php:12 +msgid "Email saved" +msgstr "" + +#: ajax/lostpassword.php:14 +msgid "Invalid email" +msgstr "" + +#: ajax/removegroup.php:13 +msgid "Unable to delete group" +msgstr "" + +#: ajax/removeuser.php:25 +msgid "Unable to delete user" +msgstr "" + +#: ajax/setlanguage.php:15 +msgid "Language changed" +msgstr "" + +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "" + +#: ajax/togglegroups.php:12 +msgid "Admins can't remove themself from the admin group" +msgstr "" + +#: ajax/togglegroups.php:30 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:36 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + +#: ajax/updateapp.php:14 +msgid "Couldn't update app." +msgstr "" + +#: changepassword/controller.php:20 +msgid "Wrong password" +msgstr "" + +#: changepassword/controller.php:42 +msgid "No user supplied" +msgstr "" + +#: changepassword/controller.php:74 +msgid "" +"Please provide an admin recovery password, otherwise all user data will be " +"lost" +msgstr "" + +#: changepassword/controller.php:79 +msgid "" +"Wrong admin recovery password. Please check the password and try again." +msgstr "" + +#: changepassword/controller.php:87 +msgid "" +"Back-end doesn't support password change, but the users encryption key was " +"successfully updated." +msgstr "" + +#: changepassword/controller.php:92 changepassword/controller.php:103 +msgid "Unable to change password" +msgstr "" + +#: js/apps.js:43 +msgid "Update to {appversion}" +msgstr "" + +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +msgid "Disable" +msgstr "" + +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +msgid "Enable" +msgstr "" + +#: js/apps.js:71 +msgid "Please wait...." +msgstr "" + +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +msgid "Error while disabling app" +msgstr "" + +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +msgid "Error while enabling app" +msgstr "" + +#: js/apps.js:125 +msgid "Updating...." +msgstr "" + +#: js/apps.js:128 +msgid "Error while updating app" +msgstr "" + +#: js/apps.js:128 +msgid "Error" +msgstr "" + +#: js/apps.js:129 templates/apps.php:43 +msgid "Update" +msgstr "" + +#: js/apps.js:132 +msgid "Updated" +msgstr "" + +#: js/personal.js:225 +msgid "Select a profile picture" +msgstr "" + +#: js/personal.js:270 +msgid "Decrypting files... Please wait, this can take some time." +msgstr "" + +#: js/personal.js:292 +msgid "Saving..." +msgstr "" + +#: js/users.js:47 +msgid "deleted" +msgstr "" + +#: js/users.js:47 +msgid "undo" +msgstr "" + +#: js/users.js:79 +msgid "Unable to remove user" +msgstr "" + +#: js/users.js:95 templates/users.php:26 templates/users.php:90 +#: templates/users.php:118 +msgid "Groups" +msgstr "" + +#: js/users.js:100 templates/users.php:92 templates/users.php:130 +msgid "Group Admin" +msgstr "" + +#: js/users.js:123 templates/users.php:170 +msgid "Delete" +msgstr "" + +#: js/users.js:280 +msgid "add group" +msgstr "" + +#: js/users.js:442 +msgid "A valid username must be provided" +msgstr "" + +#: js/users.js:443 js/users.js:449 js/users.js:464 +msgid "Error creating user" +msgstr "" + +#: js/users.js:448 +msgid "A valid password must be provided" +msgstr "" + +#: personal.php:45 personal.php:46 +msgid "__language_name__" +msgstr "" + +#: templates/admin.php:15 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:18 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file is not working. We strongly suggest that you " +"configure your webserver in a way that the data directory is no longer " +"accessible or you move the data directory outside the webserver document " +"root." +msgstr "" + +#: templates/admin.php:29 +msgid "Setup Warning" +msgstr "" + +#: templates/admin.php:32 +msgid "" +"Your web server is not yet properly setup to allow files synchronization " +"because the WebDAV interface seems to be broken." +msgstr "" + +#: templates/admin.php:33 +#, php-format +msgid "Please double check the installation guides." +msgstr "" + +#: templates/admin.php:44 +msgid "Module 'fileinfo' missing" +msgstr "" + +#: templates/admin.php:47 +msgid "" +"The PHP module 'fileinfo' is missing. We strongly recommend to enable this " +"module to get best results with mime-type detection." +msgstr "" + +#: templates/admin.php:58 +msgid "Locale not working" +msgstr "" + +#: templates/admin.php:63 +#, php-format +msgid "" +"System locale can't be set to %s. This means that there might be problems " +"with certain characters in file names. We strongly suggest to install the " +"required packages on your system to support %s." +msgstr "" + +#: templates/admin.php:75 +msgid "Internet connection not working" +msgstr "" + +#: templates/admin.php:78 +msgid "" +"This server has no working internet connection. This means that some of the " +"features like mounting of external storage, notifications about updates or " +"installation of 3rd party apps don´t work. Accessing files from remote and " +"sending of notification emails might also not work. We suggest to enable " +"internet connection for this server if you want to have all features." +msgstr "" + +#: templates/admin.php:92 +msgid "Cron" +msgstr "" + +#: templates/admin.php:99 +msgid "Execute one task with each page loaded" +msgstr "" + +#: templates/admin.php:107 +msgid "" +"cron.php is registered at a webcron service to call cron.php once a minute " +"over http." +msgstr "" + +#: templates/admin.php:115 +msgid "Use systems cron service to call the cron.php file once a minute." +msgstr "" + +#: templates/admin.php:120 +msgid "Sharing" +msgstr "" + +#: templates/admin.php:126 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:127 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:134 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:135 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:143 +msgid "Allow public uploads" +msgstr "" + +#: templates/admin.php:144 +msgid "" +"Allow users to enable others to upload into their publicly shared folders" +msgstr "" + +#: templates/admin.php:152 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:153 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:160 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:163 +msgid "Allow users to only share with users in their groups" +msgstr "" + +#: templates/admin.php:170 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:171 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:178 +msgid "Security" +msgstr "" + +#: templates/admin.php:191 +msgid "Enforce HTTPS" +msgstr "" + +#: templates/admin.php:193 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." +msgstr "" + +#: templates/admin.php:199 +#, php-format +msgid "" +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." +msgstr "" + +#: templates/admin.php:211 +msgid "Log" +msgstr "" + +#: templates/admin.php:212 +msgid "Log level" +msgstr "" + +#: templates/admin.php:243 +msgid "More" +msgstr "" + +#: templates/admin.php:244 +msgid "Less" +msgstr "" + +#: templates/admin.php:250 templates/personal.php:161 +msgid "Version" +msgstr "" + +#: templates/admin.php:254 templates/personal.php:164 +msgid "" +"Developed by the ownCloud community, the source code is " +"licensed under the AGPL." +msgstr "" + +#: templates/apps.php:13 +msgid "Add your App" +msgstr "" + +#: templates/apps.php:28 +msgid "More Apps" +msgstr "" + +#: templates/apps.php:33 +msgid "Select an App" +msgstr "" + +#: templates/apps.php:39 +msgid "See application page at apps.owncloud.com" +msgstr "" + +#: templates/apps.php:41 +msgid "-licensed by " +msgstr "" + +#: templates/help.php:4 +msgid "User Documentation" +msgstr "" + +#: templates/help.php:6 +msgid "Administrator Documentation" +msgstr "" + +#: templates/help.php:9 +msgid "Online Documentation" +msgstr "" + +#: templates/help.php:11 +msgid "Forum" +msgstr "" + +#: templates/help.php:14 +msgid "Bugtracker" +msgstr "" + +#: templates/help.php:17 +msgid "Commercial Support" +msgstr "" + +#: templates/personal.php:8 +msgid "Get the apps to sync your files" +msgstr "" + +#: templates/personal.php:19 +msgid "Show First Run Wizard again" +msgstr "" + +#: templates/personal.php:27 +#, php-format +msgid "You have used %s of the available %s" +msgstr "" + +#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +msgid "Password" +msgstr "" + +#: templates/personal.php:40 +msgid "Your password was changed" +msgstr "" + +#: templates/personal.php:41 +msgid "Unable to change your password" +msgstr "" + +#: templates/personal.php:42 +msgid "Current password" +msgstr "" + +#: templates/personal.php:44 +msgid "New password" +msgstr "" + +#: templates/personal.php:46 +msgid "Change password" +msgstr "" + +#: templates/personal.php:58 templates/users.php:88 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:73 +msgid "Email" +msgstr "" + +#: templates/personal.php:75 +msgid "Your email address" +msgstr "" + +#: templates/personal.php:76 +msgid "Fill in an email address to enable password recovery" +msgstr "" + +#: templates/personal.php:86 +msgid "Profile picture" +msgstr "" + +#: templates/personal.php:90 +msgid "Upload new" +msgstr "" + +#: templates/personal.php:92 +msgid "Select new from Files" +msgstr "" + +#: templates/personal.php:93 +msgid "Remove image" +msgstr "" + +#: templates/personal.php:94 +msgid "Either png or jpg. Ideally square but you will be able to crop it." +msgstr "" + +#: templates/personal.php:97 +msgid "Abort" +msgstr "" + +#: templates/personal.php:98 +msgid "Choose as profile image" +msgstr "" + +#: templates/personal.php:106 templates/personal.php:107 +msgid "Language" +msgstr "" + +#: templates/personal.php:119 +msgid "Help translate" +msgstr "" + +#: templates/personal.php:125 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:127 +#, php-format +msgid "" +"Use this address to access your Files via WebDAV" +msgstr "" + +#: templates/personal.php:138 +msgid "Encryption" +msgstr "" + +#: templates/personal.php:140 +msgid "The encryption app is no longer enabled, decrypt all your file" +msgstr "" + +#: templates/personal.php:146 +msgid "Log-in password" +msgstr "" + +#: templates/personal.php:151 +msgid "Decrypt all Files" +msgstr "" + +#: templates/users.php:21 +msgid "Login Name" +msgstr "" + +#: templates/users.php:30 +msgid "Create" +msgstr "" + +#: templates/users.php:36 +msgid "Admin Recovery Password" +msgstr "" + +#: templates/users.php:37 templates/users.php:38 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:42 +msgid "Default Storage" +msgstr "" + +#: templates/users.php:48 templates/users.php:148 +msgid "Unlimited" +msgstr "" + +#: templates/users.php:66 templates/users.php:163 +msgid "Other" +msgstr "" + +#: templates/users.php:87 +msgid "Username" +msgstr "" + +#: templates/users.php:94 +msgid "Storage" +msgstr "" + +#: templates/users.php:108 +msgid "change display name" +msgstr "" + +#: templates/users.php:112 +msgid "set new password" +msgstr "" + +#: templates/users.php:143 +msgid "Default" +msgstr "" diff --git a/l10n/ady/user_ldap.po b/l10n/ady/user_ldap.po new file mode 100644 index 0000000000..de9ce044f3 --- /dev/null +++ b/l10n/ady/user_ldap.po @@ -0,0 +1,406 @@ +# 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: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 15:03+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Adyghe (http://www.transifex.com/projects/p/owncloud/language/ady/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ady\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/clearMappings.php:34 +msgid "Failed to clear the mappings." +msgstr "" + +#: ajax/deleteConfiguration.php:34 +msgid "Failed to delete the server configuration" +msgstr "" + +#: ajax/testConfiguration.php:37 +msgid "The configuration is valid and the connection could be established!" +msgstr "" + +#: ajax/testConfiguration.php:40 +msgid "" +"The configuration is valid, but the Bind failed. Please check the server " +"settings and credentials." +msgstr "" + +#: ajax/testConfiguration.php:44 +msgid "" +"The configuration is invalid. Please look in the ownCloud log for further " +"details." +msgstr "" + +#: js/settings.js:66 +msgid "Deletion failed" +msgstr "" + +#: js/settings.js:82 +msgid "Take over settings from recent server configuration?" +msgstr "" + +#: js/settings.js:83 +msgid "Keep settings?" +msgstr "" + +#: js/settings.js:97 +msgid "Cannot add server configuration" +msgstr "" + +#: js/settings.js:111 +msgid "mappings cleared" +msgstr "" + +#: js/settings.js:112 +msgid "Success" +msgstr "" + +#: js/settings.js:117 +msgid "Error" +msgstr "" + +#: js/settings.js:141 +msgid "Connection test succeeded" +msgstr "" + +#: js/settings.js:146 +msgid "Connection test failed" +msgstr "" + +#: js/settings.js:156 +msgid "Do you really want to delete the current Server Configuration?" +msgstr "" + +#: js/settings.js:157 +msgid "Confirm Deletion" +msgstr "" + +#: templates/settings.php:9 +msgid "" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." +msgstr "" + +#: templates/settings.php:12 +msgid "" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "" + +#: templates/settings.php:16 +msgid "Server configuration" +msgstr "" + +#: templates/settings.php:32 +msgid "Add Server Configuration" +msgstr "" + +#: templates/settings.php:37 +msgid "Host" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"You can omit the protocol, except you require SSL. Then start with ldaps://" +msgstr "" + +#: templates/settings.php:40 +msgid "Base DN" +msgstr "" + +#: templates/settings.php:41 +msgid "One Base DN per line" +msgstr "" + +#: templates/settings.php:42 +msgid "You can specify Base DN for users and groups in the Advanced tab" +msgstr "" + +#: templates/settings.php:44 +msgid "User DN" +msgstr "" + +#: templates/settings.php:46 +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:47 +msgid "Password" +msgstr "" + +#: templates/settings.php:50 +msgid "For anonymous access, leave DN and Password empty." +msgstr "" + +#: templates/settings.php:51 +msgid "User Login Filter" +msgstr "" + +#: templates/settings.php:54 +#, php-format +msgid "" +"Defines the filter to apply, when login is attempted. %%uid replaces the " +"username in the login action. Example: \"uid=%%uid\"" +msgstr "" + +#: templates/settings.php:55 +msgid "User List Filter" +msgstr "" + +#: templates/settings.php:58 +msgid "" +"Defines the filter to apply, when retrieving users (no placeholders). " +"Example: \"objectClass=person\"" +msgstr "" + +#: templates/settings.php:59 +msgid "Group Filter" +msgstr "" + +#: templates/settings.php:62 +msgid "" +"Defines the filter to apply, when retrieving groups (no placeholders). " +"Example: \"objectClass=posixGroup\"" +msgstr "" + +#: templates/settings.php:66 +msgid "Connection Settings" +msgstr "" + +#: templates/settings.php:68 +msgid "Configuration Active" +msgstr "" + +#: templates/settings.php:68 +msgid "When unchecked, this configuration will be skipped." +msgstr "" + +#: templates/settings.php:69 +msgid "Port" +msgstr "" + +#: templates/settings.php:70 +msgid "Backup (Replica) Host" +msgstr "" + +#: templates/settings.php:70 +msgid "" +"Give an optional backup host. It must be a replica of the main LDAP/AD " +"server." +msgstr "" + +#: templates/settings.php:71 +msgid "Backup (Replica) Port" +msgstr "" + +#: templates/settings.php:72 +msgid "Disable Main Server" +msgstr "" + +#: templates/settings.php:72 +msgid "Only connect to the replica server." +msgstr "" + +#: templates/settings.php:73 +msgid "Use TLS" +msgstr "" + +#: templates/settings.php:73 +msgid "Do not use it additionally for LDAPS connections, it will fail." +msgstr "" + +#: templates/settings.php:74 +msgid "Case insensitve LDAP server (Windows)" +msgstr "" + +#: templates/settings.php:75 +msgid "Turn off SSL certificate validation." +msgstr "" + +#: templates/settings.php:75 +#, php-format +msgid "" +"Not recommended, use it for testing only! If connection only works with this" +" option, import the LDAP server's SSL certificate in your %s server." +msgstr "" + +#: templates/settings.php:76 +msgid "Cache Time-To-Live" +msgstr "" + +#: templates/settings.php:76 +msgid "in seconds. A change empties the cache." +msgstr "" + +#: templates/settings.php:78 +msgid "Directory Settings" +msgstr "" + +#: templates/settings.php:80 +msgid "User Display Name Field" +msgstr "" + +#: templates/settings.php:80 +msgid "The LDAP attribute to use to generate the user's display name." +msgstr "" + +#: templates/settings.php:81 +msgid "Base User Tree" +msgstr "" + +#: templates/settings.php:81 +msgid "One User Base DN per line" +msgstr "" + +#: templates/settings.php:82 +msgid "User Search Attributes" +msgstr "" + +#: templates/settings.php:82 templates/settings.php:85 +msgid "Optional; one attribute per line" +msgstr "" + +#: templates/settings.php:83 +msgid "Group Display Name Field" +msgstr "" + +#: templates/settings.php:83 +msgid "The LDAP attribute to use to generate the groups's display name." +msgstr "" + +#: templates/settings.php:84 +msgid "Base Group Tree" +msgstr "" + +#: templates/settings.php:84 +msgid "One Group Base DN per line" +msgstr "" + +#: templates/settings.php:85 +msgid "Group Search Attributes" +msgstr "" + +#: templates/settings.php:86 +msgid "Group-Member association" +msgstr "" + +#: templates/settings.php:88 +msgid "Special Attributes" +msgstr "" + +#: templates/settings.php:90 +msgid "Quota Field" +msgstr "" + +#: templates/settings.php:91 +msgid "Quota Default" +msgstr "" + +#: templates/settings.php:91 +msgid "in bytes" +msgstr "" + +#: templates/settings.php:92 +msgid "Email Field" +msgstr "" + +#: templates/settings.php:93 +msgid "User Home Folder Naming Rule" +msgstr "" + +#: templates/settings.php:93 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:98 +msgid "Internal Username" +msgstr "" + +#: templates/settings.php:99 +msgid "" +"By default the internal username will be created from the UUID attribute. It" +" makes sure that the username is unique and characters do not need to be " +"converted. The internal username has the restriction that only these " +"characters are allowed: [ a-zA-Z0-9_.@- ]. Other characters are replaced " +"with their ASCII correspondence or simply omitted. On collisions a number " +"will be added/increased. The internal username is used to identify a user " +"internally. It is also the default name for the user home folder. It is also" +" a part of remote URLs, for instance for all *DAV services. With this " +"setting, the default behavior can be overridden. To achieve a similar " +"behavior as before ownCloud 5 enter the user display name attribute in the " +"following field. Leave it empty for default behavior. Changes will have " +"effect only on newly mapped (added) LDAP users." +msgstr "" + +#: templates/settings.php:100 +msgid "Internal Username Attribute:" +msgstr "" + +#: templates/settings.php:101 +msgid "Override UUID detection" +msgstr "" + +#: templates/settings.php:102 +msgid "" +"By default, the UUID attribute is automatically detected. The UUID attribute" +" is used to doubtlessly identify LDAP users and groups. Also, the internal " +"username will be created based on the UUID, if not specified otherwise " +"above. You can override the setting and pass an attribute of your choice. " +"You must make sure that the attribute of your choice can be fetched for both" +" users and groups and it is unique. Leave it empty for default behavior. " +"Changes will have effect only on newly mapped (added) LDAP users and groups." +msgstr "" + +#: templates/settings.php:103 +msgid "UUID Attribute:" +msgstr "" + +#: templates/settings.php:104 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:105 +msgid "" +"Usernames are used to store and assign (meta) data. In order to precisely " +"identify and recognize users, each LDAP user will have a internal username. " +"This requires a mapping from username to LDAP user. The created username is " +"mapped to the UUID of the LDAP user. Additionally the DN is cached as well " +"to reduce LDAP interaction, but it is not used for identification. If the DN" +" changes, the changes will be found. The internal username is used all over." +" Clearing the mappings will have leftovers everywhere. Clearing the mappings" +" is not configuration sensitive, it affects all LDAP configurations! Never " +"clear the mappings in a production environment, only in a testing or " +"experimental stage." +msgstr "" + +#: templates/settings.php:106 +msgid "Clear Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 +msgid "Clear Groupname-LDAP Group Mapping" +msgstr "" + +#: templates/settings.php:108 +msgid "Test Configuration" +msgstr "" + +#: templates/settings.php:108 +msgid "Help" +msgstr "" diff --git a/l10n/ady/user_webdavauth.po b/l10n/ady/user_webdavauth.po new file mode 100644 index 0000000000..d20828e05e --- /dev/null +++ b/l10n/ady/user_webdavauth.po @@ -0,0 +1,33 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 15:03+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Adyghe (http://www.transifex.com/projects/p/owncloud/language/ady/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ady\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: templates/settings.php:3 +msgid "WebDAV Authentication" +msgstr "" + +#: templates/settings.php:4 +msgid "Address: " +msgstr "" + +#: templates/settings.php:7 +msgid "" +"The user credentials will be sent to this address. This plugin checks the " +"response and will interpret the HTTP statuscodes 401 and 403 as invalid " +"credentials, and all other responses as valid credentials." +msgstr "" diff --git a/l10n/af_ZA/core.po b/l10n/af_ZA/core.po index 252d6872d0..b5188e5a89 100644 --- a/l10n/af_ZA/core.po +++ b/l10n/af_ZA/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:11+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -320,7 +320,7 @@ msgstr "" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:665 js/share.js:677 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "" @@ -340,7 +340,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:132 js/share.js:705 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "" @@ -372,7 +372,7 @@ msgstr "" msgid "Password protect" msgstr "" -#: js/share.js:194 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Wagwoord" @@ -444,27 +444,27 @@ msgstr "" msgid "share" msgstr "" -#: js/share.js:409 js/share.js:652 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "" -#: js/share.js:665 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:677 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "" -#: js/share.js:692 +#: js/share.js:694 msgid "Sending ..." msgstr "" -#: js/share.js:703 +#: js/share.js:705 msgid "Email sent" msgstr "" -#: js/share.js:727 +#: js/share.js:729 msgid "Warning" msgstr "" @@ -504,7 +504,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "Jy sal `n skakel via e-pos ontvang om jou wagwoord te herstel." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "Gebruikersnaam" @@ -709,19 +709,27 @@ msgstr "" msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "Jou wagwoord verloor?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "onthou" -#: templates/login.php:40 +#: templates/login.php:46 msgid "Log in" msgstr "Teken aan" -#: templates/login.php:46 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "" diff --git a/l10n/ar/core.po b/l10n/ar/core.po index c7d04d8d31..296a28042f 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: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:30+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -341,7 +341,7 @@ msgstr "نوع العنصر غير محدد." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:665 js/share.js:677 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "خطأ" @@ -361,7 +361,7 @@ msgstr "مشارك" msgid "Share" msgstr "شارك" -#: js/share.js:132 js/share.js:705 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "حصل خطأ عند عملية المشاركة" @@ -393,7 +393,7 @@ msgstr "شارك مع رابط" msgid "Password protect" msgstr "حماية كلمة السر" -#: js/share.js:194 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "كلمة المرور" @@ -465,27 +465,27 @@ msgstr "حذف" msgid "share" msgstr "مشاركة" -#: js/share.js:409 js/share.js:652 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "محمي بكلمة السر" -#: js/share.js:665 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "حصل خطأ عند عملية إزالة تاريخ إنتهاء الصلاحية" -#: js/share.js:677 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "حصل خطأ عند عملية تعيين تاريخ إنتهاء الصلاحية" -#: js/share.js:692 +#: js/share.js:694 msgid "Sending ..." msgstr "جاري الارسال ..." -#: js/share.js:703 +#: js/share.js:705 msgid "Email sent" msgstr "تم ارسال البريد الالكتروني" -#: js/share.js:727 +#: js/share.js:729 msgid "Warning" msgstr "تحذير" @@ -525,7 +525,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "سوف نرسل لك بريد يحتوي على وصلة لتجديد كلمة السر." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "إسم المستخدم" @@ -730,19 +730,27 @@ msgstr "قد يكون حسابك في خطر إن لم تقم بإعادة تع msgid "Please change your password to secure your account again." msgstr "الرجاء إعادة تعيين كلمة السر لتأمين حسابك." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "هل نسيت كلمة السر؟" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "تذكر" -#: templates/login.php:40 +#: templates/login.php:46 msgid "Log in" msgstr "أدخل" -#: templates/login.php:46 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "اسماء دخول بديلة" diff --git a/l10n/be/core.po b/l10n/be/core.po index 6f43f16cfa..4af6a1a1c6 100644 --- a/l10n/be/core.po +++ b/l10n/be/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:11+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot \n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" @@ -330,7 +330,7 @@ msgstr "" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:665 js/share.js:677 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "" @@ -350,7 +350,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:132 js/share.js:705 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "" @@ -382,7 +382,7 @@ msgstr "" msgid "Password protect" msgstr "" -#: js/share.js:194 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "" @@ -454,27 +454,27 @@ msgstr "" msgid "share" msgstr "" -#: js/share.js:409 js/share.js:652 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "" -#: js/share.js:665 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:677 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "" -#: js/share.js:692 +#: js/share.js:694 msgid "Sending ..." msgstr "" -#: js/share.js:703 +#: js/share.js:705 msgid "Email sent" msgstr "" -#: js/share.js:727 +#: js/share.js:729 msgid "Warning" msgstr "" @@ -514,7 +514,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "" #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "" @@ -719,19 +719,27 @@ msgstr "" msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "" -#: templates/login.php:40 +#: templates/login.php:46 msgid "Log in" msgstr "" -#: templates/login.php:46 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "" diff --git a/l10n/bg_BG/core.po b/l10n/bg_BG/core.po index 81c772ffb6..599f5e79e2 100644 --- a/l10n/bg_BG/core.po +++ b/l10n/bg_BG/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:30+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -320,7 +320,7 @@ msgstr "" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:665 js/share.js:677 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "Грешка" @@ -340,7 +340,7 @@ msgstr "" msgid "Share" msgstr "Споделяне" -#: js/share.js:132 js/share.js:705 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "" @@ -372,7 +372,7 @@ msgstr "" msgid "Password protect" msgstr "" -#: js/share.js:194 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Парола" @@ -444,27 +444,27 @@ msgstr "" msgid "share" msgstr "" -#: js/share.js:409 js/share.js:652 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "" -#: js/share.js:665 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:677 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "" -#: js/share.js:692 +#: js/share.js:694 msgid "Sending ..." msgstr "" -#: js/share.js:703 +#: js/share.js:705 msgid "Email sent" msgstr "" -#: js/share.js:727 +#: js/share.js:729 msgid "Warning" msgstr "Внимание" @@ -504,7 +504,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "Ще получите връзка за нулиране на паролата Ви." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "Потребител" @@ -709,19 +709,27 @@ msgstr "" msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "Забравена парола?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "запомни" -#: templates/login.php:40 +#: templates/login.php:46 msgid "Log in" msgstr "Вход" -#: templates/login.php:46 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "" diff --git a/l10n/bn_BD/core.po b/l10n/bn_BD/core.po index 8ebf3b7cda..0896829247 100644 --- a/l10n/bn_BD/core.po +++ b/l10n/bn_BD/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:30+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -320,7 +320,7 @@ msgstr "অবজেক্টের ধরণটি সুনির্দিষ #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:665 js/share.js:677 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "সমস্যা" @@ -340,7 +340,7 @@ msgstr "ভাগাভাগিকৃত" msgid "Share" msgstr "ভাগাভাগি কর" -#: js/share.js:132 js/share.js:705 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "ভাগাভাগি করতে সমস্যা দেখা দিয়েছে " @@ -372,7 +372,7 @@ msgstr "লিংকের সাথে ভাগাভাগি কর" msgid "Password protect" msgstr "কূটশব্দ সুরক্ষিত" -#: js/share.js:194 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "কূটশব্দ" @@ -444,27 +444,27 @@ msgstr "মুছে ফেল" msgid "share" msgstr "ভাগাভাগি কর" -#: js/share.js:409 js/share.js:652 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "কূটশব্দদ্বারা সুরক্ষিত" -#: js/share.js:665 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "মেয়াদোত্তীর্ণ হওয়ার তারিখ নির্ধারণ বাতিল করতে সমস্যা দেখা দিয়েছে" -#: js/share.js:677 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "মেয়াদোত্তীর্ণ হওয়ার তারিখ নির্ধারণ করতে সমস্যা দেখা দিয়েছে" -#: js/share.js:692 +#: js/share.js:694 msgid "Sending ..." msgstr "পাঠানো হচ্ছে......" -#: js/share.js:703 +#: js/share.js:705 msgid "Email sent" msgstr "ই-মেইল পাঠানো হয়েছে" -#: js/share.js:727 +#: js/share.js:729 msgid "Warning" msgstr "সতর্কবাণী" @@ -504,7 +504,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "কূটশব্দ পূনঃনির্ধারণের জন্য একটি টূনঃনির্ধারণ লিংকটি আপনাকে ই-মেইলে পাঠানো হয়েছে ।" #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "ব্যবহারকারী" @@ -709,19 +709,27 @@ msgstr "" msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "কূটশব্দ হারিয়েছেন?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "মনে রাখ" -#: templates/login.php:40 +#: templates/login.php:46 msgid "Log in" msgstr "প্রবেশ" -#: templates/login.php:46 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "" diff --git a/l10n/bs/core.po b/l10n/bs/core.po index 0337797255..c468a2de53 100644 --- a/l10n/bs/core.po +++ b/l10n/bs/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:11+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" @@ -325,7 +325,7 @@ msgstr "" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:665 js/share.js:677 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "" @@ -345,7 +345,7 @@ msgstr "" msgid "Share" msgstr "Podijeli" -#: js/share.js:132 js/share.js:705 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "" @@ -377,7 +377,7 @@ msgstr "" msgid "Password protect" msgstr "" -#: js/share.js:194 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "" @@ -449,27 +449,27 @@ msgstr "" msgid "share" msgstr "" -#: js/share.js:409 js/share.js:652 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "" -#: js/share.js:665 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:677 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "" -#: js/share.js:692 +#: js/share.js:694 msgid "Sending ..." msgstr "" -#: js/share.js:703 +#: js/share.js:705 msgid "Email sent" msgstr "" -#: js/share.js:727 +#: js/share.js:729 msgid "Warning" msgstr "" @@ -509,7 +509,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "" #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "" @@ -714,19 +714,27 @@ msgstr "" msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "" -#: templates/login.php:40 +#: templates/login.php:46 msgid "Log in" msgstr "" -#: templates/login.php:46 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "" diff --git a/l10n/ca/core.po b/l10n/ca/core.po index dd2de8f06c..1692c2141a 100644 --- a/l10n/ca/core.po +++ b/l10n/ca/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:30+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -322,7 +322,7 @@ msgstr "No s'ha especificat el tipus d'objecte." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:665 js/share.js:677 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "Error" @@ -342,7 +342,7 @@ msgstr "Compartit" msgid "Share" msgstr "Comparteix" -#: js/share.js:132 js/share.js:705 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Error en compartir" @@ -374,7 +374,7 @@ msgstr "Comparteix amb enllaç" msgid "Password protect" msgstr "Protegir amb contrasenya" -#: js/share.js:194 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Contrasenya" @@ -446,27 +446,27 @@ msgstr "elimina" msgid "share" msgstr "comparteix" -#: js/share.js:409 js/share.js:652 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "Protegeix amb contrasenya" -#: js/share.js:665 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "Error en eliminar la data de venciment" -#: js/share.js:677 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "Error en establir la data de venciment" -#: js/share.js:692 +#: js/share.js:694 msgid "Sending ..." msgstr "Enviant..." -#: js/share.js:703 +#: js/share.js:705 msgid "Email sent" msgstr "El correu electrónic s'ha enviat" -#: js/share.js:727 +#: js/share.js:729 msgid "Warning" msgstr "Avís" @@ -506,7 +506,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "Rebreu un enllaç al correu electrònic per reiniciar la contrasenya." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "Nom d'usuari" @@ -711,19 +711,27 @@ msgstr "Se no heu canviat la contrasenya recentment el vostre compte pot estar c msgid "Please change your password to secure your account again." msgstr "Canvieu la contrasenya de nou per assegurar el vostre compte." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "Heu perdut la contrasenya?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "recorda'm" -#: templates/login.php:40 +#: templates/login.php:46 msgid "Log in" msgstr "Inici de sessió" -#: templates/login.php:46 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "Acreditacions alternatives" diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index 2d7c4b3b60..738583e7b6 100644 --- a/l10n/ca/settings.po +++ b/l10n/ca/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:12+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-10-07 12:17-0400\n" +"PO-Revision-Date: 2013-10-07 10:50+0000\n" +"Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -183,32 +183,32 @@ msgstr "desfés" msgid "Unable to remove user" msgstr "No s'ha pogut eliminar l'usuari" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "Grups" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "Grup Admin" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Esborra" -#: js/users.js:277 +#: js/users.js:280 msgid "add group" msgstr "afegeix grup" -#: js/users.js:436 +#: js/users.js:442 msgid "A valid username must be provided" msgstr "Heu de facilitar un nom d'usuari vàlid" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:443 js/users.js:449 js/users.js:464 msgid "Error creating user" msgstr "Error en crear l'usuari" -#: js/users.js:442 +#: js/users.js:448 msgid "A valid password must be provided" msgstr "Heu de facilitar una contrasenya vàlida" @@ -344,11 +344,11 @@ msgstr "Permet als usuaris compartir només amb els usuaris del seu grup" #: templates/admin.php:170 msgid "Allow mail notification" -msgstr "" +msgstr "Permet notificacions per correu electrónic" #: templates/admin.php:171 msgid "Allow user to send mail notification for shared files" -msgstr "" +msgstr "Permet a l'usuari enviar notificacions de fitxers compartits per correu " #: templates/admin.php:178 msgid "Security" diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po index 8fe87fba02..0c24c9b204 100644 --- a/l10n/cs_CZ/core.po +++ b/l10n/cs_CZ/core.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:30+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -331,7 +331,7 @@ msgstr "Není určen typ objektu." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:665 js/share.js:677 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "Chyba" @@ -351,7 +351,7 @@ msgstr "Sdílené" msgid "Share" msgstr "Sdílet" -#: js/share.js:132 js/share.js:705 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Chyba při sdílení" @@ -383,7 +383,7 @@ msgstr "Sdílet s odkazem" msgid "Password protect" msgstr "Chránit heslem" -#: js/share.js:194 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Heslo" @@ -455,27 +455,27 @@ msgstr "smazat" msgid "share" msgstr "sdílet" -#: js/share.js:409 js/share.js:652 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "Chráněno heslem" -#: js/share.js:665 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "Chyba při odstraňování data vypršení platnosti" -#: js/share.js:677 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "Chyba při nastavení data vypršení platnosti" -#: js/share.js:692 +#: js/share.js:694 msgid "Sending ..." msgstr "Odesílám ..." -#: js/share.js:703 +#: js/share.js:705 msgid "Email sent" msgstr "E-mail odeslán" -#: js/share.js:727 +#: js/share.js:729 msgid "Warning" msgstr "Varování" @@ -515,7 +515,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "E-mailem Vám bude zaslán odkaz pro obnovu hesla." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "Uživatelské jméno" @@ -720,19 +720,27 @@ msgstr "Pokud jste v nedávné době neměnili své heslo, Váš účet může b msgid "Please change your password to secure your account again." msgstr "Změňte, prosím, své heslo pro opětovné zabezpečení Vašeho účtu." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "Ztratili jste své heslo?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "zapamatovat" -#: templates/login.php:40 +#: templates/login.php:46 msgid "Log in" msgstr "Přihlásit" -#: templates/login.php:46 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "Alternativní přihlášení" diff --git a/l10n/cy_GB/core.po b/l10n/cy_GB/core.po index be33830457..c9b8cd1fa7 100644 --- a/l10n/cy_GB/core.po +++ b/l10n/cy_GB/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:30+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -331,7 +331,7 @@ msgstr "Nid yw'r math o wrthrych wedi cael ei nodi." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:665 js/share.js:677 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "Gwall" @@ -351,7 +351,7 @@ msgstr "Rhannwyd" msgid "Share" msgstr "Rhannu" -#: js/share.js:132 js/share.js:705 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Gwall wrth rannu" @@ -383,7 +383,7 @@ msgstr "Dolen ar gyfer rhannu" msgid "Password protect" msgstr "Diogelu cyfrinair" -#: js/share.js:194 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Cyfrinair" @@ -455,27 +455,27 @@ msgstr "dileu" msgid "share" msgstr "rhannu" -#: js/share.js:409 js/share.js:652 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "Diogelwyd â chyfrinair" -#: js/share.js:665 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "Gwall wrth ddad-osod dyddiad dod i ben" -#: js/share.js:677 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "Gwall wrth osod dyddiad dod i ben" -#: js/share.js:692 +#: js/share.js:694 msgid "Sending ..." msgstr "Yn anfon ..." -#: js/share.js:703 +#: js/share.js:705 msgid "Email sent" msgstr "Anfonwyd yr e-bost" -#: js/share.js:727 +#: js/share.js:729 msgid "Warning" msgstr "Rhybudd" @@ -515,7 +515,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "Byddwch yn derbyn dolen drwy e-bost i ailosod eich cyfrinair." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "Enw defnyddiwr" @@ -720,19 +720,27 @@ msgstr "Os na wnaethoch chi newid eich cyfrinair yn ddiweddar, gall eich cyfrif msgid "Please change your password to secure your account again." msgstr "Newidiwch eich cyfrinair i ddiogleu eich cyfrif eto." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "Wedi colli'ch cyfrinair?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "cofio" -#: templates/login.php:40 +#: templates/login.php:46 msgid "Log in" msgstr "Mewngofnodi" -#: templates/login.php:46 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "Mewngofnodiadau Amgen" diff --git a/l10n/da/core.po b/l10n/da/core.po index 45fa89e5c1..4cada3338a 100644 --- a/l10n/da/core.po +++ b/l10n/da/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:31+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -324,7 +324,7 @@ msgstr "Objekttypen er ikke angivet." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:665 js/share.js:677 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "Fejl" @@ -344,7 +344,7 @@ msgstr "Delt" msgid "Share" msgstr "Del" -#: js/share.js:132 js/share.js:705 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Fejl under deling" @@ -376,7 +376,7 @@ msgstr "Del med link" msgid "Password protect" msgstr "Beskyt med adgangskode" -#: js/share.js:194 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Kodeord" @@ -448,27 +448,27 @@ msgstr "slet" msgid "share" msgstr "del" -#: js/share.js:409 js/share.js:652 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "Beskyttet med adgangskode" -#: js/share.js:665 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "Fejl ved fjernelse af udløbsdato" -#: js/share.js:677 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "Fejl under sætning af udløbsdato" -#: js/share.js:692 +#: js/share.js:694 msgid "Sending ..." msgstr "Sender ..." -#: js/share.js:703 +#: js/share.js:705 msgid "Email sent" msgstr "E-mail afsendt" -#: js/share.js:727 +#: js/share.js:729 msgid "Warning" msgstr "Advarsel" @@ -508,7 +508,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "Du vil modtage et link til at nulstille dit kodeord via email." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "Brugernavn" @@ -713,19 +713,27 @@ msgstr "Hvis du ikke har ændret din adgangskode for nylig, har nogen muligvis t msgid "Please change your password to secure your account again." msgstr "Skift adgangskode for at sikre din konto igen." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "Mistet dit kodeord?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "husk" -#: templates/login.php:40 +#: templates/login.php:46 msgid "Log in" msgstr "Log ind" -#: templates/login.php:46 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "Alternative logins" diff --git a/l10n/de/core.po b/l10n/de/core.po index 20b04a34fb..a8c37a2967 100644 --- a/l10n/de/core.po +++ b/l10n/de/core.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 21:20+0000\n" -"Last-Translator: Mario Siegmann \n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -328,7 +328,7 @@ msgstr "Der Objekttyp ist nicht angegeben." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:665 js/share.js:677 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "Fehler" @@ -348,7 +348,7 @@ msgstr "Geteilt" msgid "Share" msgstr "Teilen" -#: js/share.js:132 js/share.js:705 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Fehler beim Teilen" @@ -380,7 +380,7 @@ msgstr "Über einen Link freigegeben" msgid "Password protect" msgstr "Passwortschutz" -#: js/share.js:194 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Passwort" @@ -452,27 +452,27 @@ msgstr "löschen" msgid "share" msgstr "teilen" -#: js/share.js:409 js/share.js:652 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "Durch ein Passwort geschützt" -#: js/share.js:665 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "Fehler beim Entfernen des Ablaufdatums" -#: js/share.js:677 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "Fehler beim Setzen des Ablaufdatums" -#: js/share.js:692 +#: js/share.js:694 msgid "Sending ..." msgstr "Sende ..." -#: js/share.js:703 +#: js/share.js:705 msgid "Email sent" msgstr "E-Mail wurde verschickt" -#: js/share.js:727 +#: js/share.js:729 msgid "Warning" msgstr "Warnung" @@ -512,7 +512,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "Du erhältst einen Link per E-Mail, um Dein Passwort zurückzusetzen." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "Benutzername" @@ -717,19 +717,27 @@ msgstr "Wenn Du Dein Passwort nicht vor kurzem geändert hast, könnte Dein\nAcc msgid "Please change your password to secure your account again." msgstr "Bitte ändere Dein Passwort, um Deinen Account wieder zu schützen." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "Passwort vergessen?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "merken" -#: templates/login.php:40 +#: templates/login.php:46 msgid "Log in" msgstr "Einloggen" -#: templates/login.php:46 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "Alternative Logins" diff --git a/l10n/de_AT/core.po b/l10n/de_AT/core.po index ced7aed583..c095d3a7f6 100644 --- a/l10n/de_AT/core.po +++ b/l10n/de_AT/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:11+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Austria) (http://www.transifex.com/projects/p/owncloud/language/de_AT/)\n" "MIME-Version: 1.0\n" @@ -321,7 +321,7 @@ msgstr "" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:665 js/share.js:677 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "" @@ -341,7 +341,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:132 js/share.js:705 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "" @@ -373,7 +373,7 @@ msgstr "" msgid "Password protect" msgstr "" -#: js/share.js:194 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "" @@ -445,27 +445,27 @@ msgstr "" msgid "share" msgstr "" -#: js/share.js:409 js/share.js:652 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "" -#: js/share.js:665 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:677 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "" -#: js/share.js:692 +#: js/share.js:694 msgid "Sending ..." msgstr "" -#: js/share.js:703 +#: js/share.js:705 msgid "Email sent" msgstr "" -#: js/share.js:727 +#: js/share.js:729 msgid "Warning" msgstr "" @@ -505,7 +505,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "" #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "" @@ -710,19 +710,27 @@ msgstr "" msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "" -#: templates/login.php:40 +#: templates/login.php:46 msgid "Log in" msgstr "" -#: templates/login.php:46 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "" diff --git a/l10n/de_CH/core.po b/l10n/de_CH/core.po index 09a9997b11..5117bf9fc4 100644 --- a/l10n/de_CH/core.po +++ b/l10n/de_CH/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: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:30+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" @@ -329,7 +329,7 @@ msgstr "Der Objekttyp ist nicht angegeben." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:665 js/share.js:677 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "Fehler" @@ -349,7 +349,7 @@ msgstr "Geteilt" msgid "Share" msgstr "Teilen" -#: js/share.js:132 js/share.js:705 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Fehler beim Teilen" @@ -381,7 +381,7 @@ msgstr "Über einen Link teilen" msgid "Password protect" msgstr "Passwortschutz" -#: js/share.js:194 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Passwort" @@ -453,27 +453,27 @@ msgstr "löschen" msgid "share" msgstr "teilen" -#: js/share.js:409 js/share.js:652 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "Passwortgeschützt" -#: js/share.js:665 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "Fehler beim Entfernen des Ablaufdatums" -#: js/share.js:677 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "Fehler beim Setzen des Ablaufdatums" -#: js/share.js:692 +#: js/share.js:694 msgid "Sending ..." msgstr "Sende ..." -#: js/share.js:703 +#: js/share.js:705 msgid "Email sent" msgstr "Email gesendet" -#: js/share.js:727 +#: js/share.js:729 msgid "Warning" msgstr "Warnung" @@ -513,7 +513,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "Sie erhalten einen Link per E-Mail, um Ihr Passwort zurückzusetzen." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "Benutzername" @@ -718,19 +718,27 @@ msgstr "Wenn Sie Ihr Passwort nicht vor kurzem geändert haben, könnte Ihr\nAcc msgid "Please change your password to secure your account again." msgstr "Bitte ändern Sie Ihr Passwort, um Ihr Konto wieder zu sichern." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "Passwort vergessen?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "merken" -#: templates/login.php:40 +#: templates/login.php:46 msgid "Log in" msgstr "Einloggen" -#: templates/login.php:46 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "Alternative Logins" diff --git a/l10n/de_DE/core.po b/l10n/de_DE/core.po index 464c953b3d..edd750f391 100644 --- a/l10n/de_DE/core.po +++ b/l10n/de_DE/core.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 21:20+0000\n" -"Last-Translator: Mario Siegmann \n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -328,7 +328,7 @@ msgstr "Der Objekttyp ist nicht angegeben." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:665 js/share.js:677 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "Fehler" @@ -348,7 +348,7 @@ msgstr "Geteilt" msgid "Share" msgstr "Teilen" -#: js/share.js:132 js/share.js:705 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Fehler beim Teilen" @@ -380,7 +380,7 @@ msgstr "Über einen Link teilen" msgid "Password protect" msgstr "Passwortschutz" -#: js/share.js:194 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Passwort" @@ -452,27 +452,27 @@ msgstr "löschen" msgid "share" msgstr "teilen" -#: js/share.js:409 js/share.js:652 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "Passwortgeschützt" -#: js/share.js:665 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "Fehler beim Entfernen des Ablaufdatums" -#: js/share.js:677 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "Fehler beim Setzen des Ablaufdatums" -#: js/share.js:692 +#: js/share.js:694 msgid "Sending ..." msgstr "Sende ..." -#: js/share.js:703 +#: js/share.js:705 msgid "Email sent" msgstr "Email gesendet" -#: js/share.js:727 +#: js/share.js:729 msgid "Warning" msgstr "Warnung" @@ -512,7 +512,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "Sie erhalten einen Link per E-Mail, um Ihr Passwort zurückzusetzen." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "Benutzername" @@ -717,19 +717,27 @@ msgstr "Wenn Sie Ihr Passwort nicht vor kurzem geändert haben, könnte Ihr\nAcc msgid "Please change your password to secure your account again." msgstr "Bitte ändern Sie Ihr Passwort, um Ihr Konto wieder zu sichern." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "Passwort vergessen?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "merken" -#: templates/login.php:40 +#: templates/login.php:46 msgid "Log in" msgstr "Einloggen" -#: templates/login.php:46 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "Alternative Logins" diff --git a/l10n/el/core.po b/l10n/el/core.po index ec1d3e4e46..6743619794 100644 --- a/l10n/el/core.po +++ b/l10n/el/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:31+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -327,7 +327,7 @@ msgstr "Δεν καθορίστηκε ο τύπος του αντικειμέν #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:665 js/share.js:677 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "Σφάλμα" @@ -347,7 +347,7 @@ msgstr "Κοινόχρηστα" msgid "Share" msgstr "Διαμοιρασμός" -#: js/share.js:132 js/share.js:705 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Σφάλμα κατά τον διαμοιρασμό" @@ -379,7 +379,7 @@ msgstr "Διαμοιρασμός με σύνδεσμο" msgid "Password protect" msgstr "Προστασία συνθηματικού" -#: js/share.js:194 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Συνθηματικό" @@ -451,27 +451,27 @@ msgstr "διαγραφή" msgid "share" msgstr "διαμοιρασμός" -#: js/share.js:409 js/share.js:652 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "Προστασία με συνθηματικό" -#: js/share.js:665 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "Σφάλμα κατά την διαγραφή της ημ. λήξης" -#: js/share.js:677 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "Σφάλμα κατά τον ορισμό ημ. λήξης" -#: js/share.js:692 +#: js/share.js:694 msgid "Sending ..." msgstr "Αποστολή..." -#: js/share.js:703 +#: js/share.js:705 msgid "Email sent" msgstr "Το Email απεστάλη " -#: js/share.js:727 +#: js/share.js:729 msgid "Warning" msgstr "Προειδοποίηση" @@ -511,7 +511,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "Θα λάβετε ένα σύνδεσμο για να επαναφέρετε τον κωδικό πρόσβασής σας μέσω ηλεκτρονικού ταχυδρομείου." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "Όνομα χρήστη" @@ -716,19 +716,27 @@ msgstr "Εάν δεν αλλάξατε το συνθηματικό σας προ msgid "Please change your password to secure your account again." msgstr "Παρακαλώ αλλάξτε το συνθηματικό σας για να ασφαλίσετε πάλι τον λογαριασμό σας." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "Ξεχάσατε το συνθηματικό σας;" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "απομνημόνευση" -#: templates/login.php:40 +#: templates/login.php:46 msgid "Log in" msgstr "Είσοδος" -#: templates/login.php:46 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "Εναλλακτικές Συνδέσεις" diff --git a/l10n/en@pirate/core.po b/l10n/en@pirate/core.po index e91092cdc4..61cc1f0e63 100644 --- a/l10n/en@pirate/core.po +++ b/l10n/en@pirate/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:11+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot \n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" @@ -321,7 +321,7 @@ msgstr "" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:665 js/share.js:677 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "" @@ -341,7 +341,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:132 js/share.js:705 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "" @@ -373,7 +373,7 @@ msgstr "" msgid "Password protect" msgstr "" -#: js/share.js:194 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Passcode" @@ -445,27 +445,27 @@ msgstr "" msgid "share" msgstr "" -#: js/share.js:409 js/share.js:652 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "" -#: js/share.js:665 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:677 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "" -#: js/share.js:692 +#: js/share.js:694 msgid "Sending ..." msgstr "" -#: js/share.js:703 +#: js/share.js:705 msgid "Email sent" msgstr "" -#: js/share.js:727 +#: js/share.js:729 msgid "Warning" msgstr "" @@ -505,7 +505,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "" #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "" @@ -710,19 +710,27 @@ msgstr "" msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "" -#: templates/login.php:40 +#: templates/login.php:46 msgid "Log in" msgstr "" -#: templates/login.php:46 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "" diff --git a/l10n/en_GB/core.po b/l10n/en_GB/core.po index 50e3e524ef..46d4619720 100644 --- a/l10n/en_GB/core.po +++ b/l10n/en_GB/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:31+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot \n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" @@ -321,7 +321,7 @@ msgstr "The object type is not specified." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:665 js/share.js:677 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "Error" @@ -341,7 +341,7 @@ msgstr "Shared" msgid "Share" msgstr "Share" -#: js/share.js:132 js/share.js:705 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Error whilst sharing" @@ -373,7 +373,7 @@ msgstr "Share with link" msgid "Password protect" msgstr "Password protect" -#: js/share.js:194 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Password" @@ -445,27 +445,27 @@ msgstr "delete" msgid "share" msgstr "share" -#: js/share.js:409 js/share.js:652 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "Password protected" -#: js/share.js:665 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "Error unsetting expiration date" -#: js/share.js:677 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "Error setting expiration date" -#: js/share.js:692 +#: js/share.js:694 msgid "Sending ..." msgstr "Sending ..." -#: js/share.js:703 +#: js/share.js:705 msgid "Email sent" msgstr "Email sent" -#: js/share.js:727 +#: js/share.js:729 msgid "Warning" msgstr "Warning" @@ -505,7 +505,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "You will receive a link to reset your password via email." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "Username" @@ -710,19 +710,27 @@ msgstr "If you did not change your password recently, your account may be compro msgid "Please change your password to secure your account again." msgstr "Please change your password to secure your account again." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "Lost your password?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "remember" -#: templates/login.php:40 +#: templates/login.php:46 msgid "Log in" msgstr "Log in" -#: templates/login.php:46 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "Alternative Logins" diff --git a/l10n/eo/core.po b/l10n/eo/core.po index 1409bb9dc0..6ff322fbfa 100644 --- a/l10n/eo/core.po +++ b/l10n/eo/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:30+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -322,7 +322,7 @@ msgstr "Ne indikiĝis tipo de la objekto." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:665 js/share.js:677 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "Eraro" @@ -342,7 +342,7 @@ msgstr "Dividita" msgid "Share" msgstr "Kunhavigi" -#: js/share.js:132 js/share.js:705 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Eraro dum kunhavigo" @@ -374,7 +374,7 @@ msgstr "Kunhavigi per ligilo" msgid "Password protect" msgstr "Protekti per pasvorto" -#: js/share.js:194 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Pasvorto" @@ -446,27 +446,27 @@ msgstr "forigi" msgid "share" msgstr "kunhavigi" -#: js/share.js:409 js/share.js:652 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "Protektita per pasvorto" -#: js/share.js:665 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "Eraro dum malagordado de limdato" -#: js/share.js:677 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "Eraro dum agordado de limdato" -#: js/share.js:692 +#: js/share.js:694 msgid "Sending ..." msgstr "Sendante..." -#: js/share.js:703 +#: js/share.js:705 msgid "Email sent" msgstr "La retpoŝtaĵo sendiĝis" -#: js/share.js:727 +#: js/share.js:729 msgid "Warning" msgstr "Averto" @@ -506,7 +506,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "Vi ricevos ligilon retpoŝte por rekomencigi vian pasvorton." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "Uzantonomo" @@ -711,19 +711,27 @@ msgstr "Se vi ne ŝanĝis vian pasvorton lastatempe, via konto eble kompromitas! msgid "Please change your password to secure your account again." msgstr "Bonvolu ŝanĝi vian pasvorton por sekurigi vian konton ree." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "Ĉu vi perdis vian pasvorton?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "memori" -#: templates/login.php:40 +#: templates/login.php:46 msgid "Log in" msgstr "Ensaluti" -#: templates/login.php:46 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "Alternativaj ensalutoj" diff --git a/l10n/es/core.po b/l10n/es/core.po index c3e95144ca..93b7aa4475 100644 --- a/l10n/es/core.po +++ b/l10n/es/core.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:30+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" @@ -330,7 +330,7 @@ msgstr "El tipo de objeto no está especificado." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:665 js/share.js:677 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "Error" @@ -350,7 +350,7 @@ msgstr "Compartido" msgid "Share" msgstr "Compartir" -#: js/share.js:132 js/share.js:705 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Error al compartir" @@ -382,7 +382,7 @@ msgstr "Compartir con enlace" msgid "Password protect" msgstr "Protección con contraseña" -#: js/share.js:194 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Contraseña" @@ -454,27 +454,27 @@ msgstr "eliminar" msgid "share" msgstr "compartir" -#: js/share.js:409 js/share.js:652 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "Protegido con contraseña" -#: js/share.js:665 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "Error eliminando fecha de caducidad" -#: js/share.js:677 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "Error estableciendo fecha de caducidad" -#: js/share.js:692 +#: js/share.js:694 msgid "Sending ..." msgstr "Enviando..." -#: js/share.js:703 +#: js/share.js:705 msgid "Email sent" msgstr "Correo electrónico enviado" -#: js/share.js:727 +#: js/share.js:729 msgid "Warning" msgstr "Precaución" @@ -514,7 +514,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "Recibirá un enlace por correo electrónico para restablecer su contraseña" #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "Nombre de usuario" @@ -719,19 +719,27 @@ msgstr "Si no ha cambiado su contraseña recientemente, ¡puede que su cuenta es msgid "Please change your password to secure your account again." msgstr "Por favor cambie su contraseña para asegurar su cuenta nuevamente." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "¿Ha perdido su contraseña?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "recordar" -#: templates/login.php:40 +#: templates/login.php:46 msgid "Log in" msgstr "Entrar" -#: templates/login.php:46 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "Inicios de sesión alternativos" diff --git a/l10n/es/files_encryption.po b/l10n/es/files_encryption.po index d13d422ffd..7638a18810 100644 --- a/l10n/es/files_encryption.po +++ b/l10n/es/files_encryption.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Art O. Pal , 2013 # asaez , 2013 # gmoriello , 2013 # mikelanabitarte , 2013 @@ -14,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-06 23:07+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-10-07 12:14-0400\n" +"PO-Revision-Date: 2013-10-07 16:10+0000\n" +"Last-Translator: Art O. Pal \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -96,7 +97,7 @@ msgstr "Guardando..." #: templates/invalid_private_key.php:8 msgid "Go directly to your " -msgstr "" +msgstr "Ir directamente a su" #: templates/invalid_private_key.php:8 msgid "personal settings" @@ -117,7 +118,7 @@ msgstr "Contraseña de clave de recuperación" #: templates/settings-admin.php:17 msgid "Repeat Recovery key password" -msgstr "" +msgstr "Repetir contraseña de clave de recuperación" #: templates/settings-admin.php:24 templates/settings-personal.php:54 msgid "Enabled" @@ -141,7 +142,7 @@ msgstr "Nueva clave de recuperación" #: templates/settings-admin.php:56 msgid "Repeat New Recovery key password" -msgstr "" +msgstr "Repetir nueva contraseña de clave de recuperación" #: templates/settings-admin.php:61 msgid "Change Password" diff --git a/l10n/es_AR/core.po b/l10n/es_AR/core.po index c86e96b34c..19341075ae 100644 --- a/l10n/es_AR/core.po +++ b/l10n/es_AR/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:30+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -321,7 +321,7 @@ msgstr "El tipo de objeto no está especificado. " #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:665 js/share.js:677 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "Error" @@ -341,7 +341,7 @@ msgstr "Compartido" msgid "Share" msgstr "Compartir" -#: js/share.js:132 js/share.js:705 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Error al compartir" @@ -373,7 +373,7 @@ msgstr "Compartir con enlace" msgid "Password protect" msgstr "Proteger con contraseña " -#: js/share.js:194 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Contraseña" @@ -445,27 +445,27 @@ msgstr "borrar" msgid "share" msgstr "compartir" -#: js/share.js:409 js/share.js:652 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "Protegido por contraseña" -#: js/share.js:665 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "Error al remover la fecha de vencimiento" -#: js/share.js:677 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "Error al asignar fecha de vencimiento" -#: js/share.js:692 +#: js/share.js:694 msgid "Sending ..." msgstr "Mandando..." -#: js/share.js:703 +#: js/share.js:705 msgid "Email sent" msgstr "e-mail mandado" -#: js/share.js:727 +#: js/share.js:729 msgid "Warning" msgstr "Atención" @@ -505,7 +505,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "Vas a recibir un enlace por e-mail para restablecer tu contraseña." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "Nombre de usuario" @@ -710,19 +710,27 @@ msgstr "¡Si no cambiaste tu contraseña recientemente, puede ser que tu cuenta msgid "Please change your password to secure your account again." msgstr "Por favor, cambiá tu contraseña para incrementar la seguridad de tu cuenta." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "¿Perdiste tu contraseña?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "recordame" -#: templates/login.php:40 +#: templates/login.php:46 msgid "Log in" msgstr "Iniciar sesión" -#: templates/login.php:46 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "Nombre alternativos de usuarios" diff --git a/l10n/es_MX/core.po b/l10n/es_MX/core.po index 521c62be0c..5e77ae7441 100644 --- a/l10n/es_MX/core.po +++ b/l10n/es_MX/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:11+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" @@ -320,7 +320,7 @@ msgstr "" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:665 js/share.js:677 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "" @@ -340,7 +340,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:132 js/share.js:705 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "" @@ -372,7 +372,7 @@ msgstr "" msgid "Password protect" msgstr "" -#: js/share.js:194 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "" @@ -444,27 +444,27 @@ msgstr "" msgid "share" msgstr "" -#: js/share.js:409 js/share.js:652 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "" -#: js/share.js:665 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:677 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "" -#: js/share.js:692 +#: js/share.js:694 msgid "Sending ..." msgstr "" -#: js/share.js:703 +#: js/share.js:705 msgid "Email sent" msgstr "" -#: js/share.js:727 +#: js/share.js:729 msgid "Warning" msgstr "" @@ -504,7 +504,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "" #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "" @@ -709,19 +709,27 @@ msgstr "" msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "" -#: templates/login.php:40 +#: templates/login.php:46 msgid "Log in" msgstr "" -#: templates/login.php:46 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "" diff --git a/l10n/et_EE/core.po b/l10n/et_EE/core.po index 845ba80bfd..aadb8d89be 100644 --- a/l10n/et_EE/core.po +++ b/l10n/et_EE/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-06 17:40+0000\n" -"Last-Translator: Rivo Zängov \n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"Last-Translator: I Robot \n" "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" @@ -322,7 +322,7 @@ msgstr "Objekti tüüp pole määratletud." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:665 js/share.js:677 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "Viga" @@ -342,7 +342,7 @@ msgstr "Jagatud" msgid "Share" msgstr "Jaga" -#: js/share.js:132 js/share.js:705 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Viga jagamisel" @@ -374,7 +374,7 @@ msgstr "Jaga lingiga" msgid "Password protect" msgstr "Parooliga kaitstud" -#: js/share.js:194 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Parool" @@ -446,27 +446,27 @@ msgstr "kustuta" msgid "share" msgstr "jaga" -#: js/share.js:409 js/share.js:652 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "Parooliga kaitstud" -#: js/share.js:665 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "Viga aegumise kuupäeva eemaldamisel" -#: js/share.js:677 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "Viga aegumise kuupäeva määramisel" -#: js/share.js:692 +#: js/share.js:694 msgid "Sending ..." msgstr "Saatmine ..." -#: js/share.js:703 +#: js/share.js:705 msgid "Email sent" msgstr "E-kiri on saadetud" -#: js/share.js:727 +#: js/share.js:729 msgid "Warning" msgstr "Hoiatus" @@ -506,7 +506,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "Sinu parooli taastamise link saadetakse sulle e-postile." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "Kasutajanimi" @@ -711,19 +711,27 @@ msgstr "Kui sa ei muutnud oma parooli hiljuti, siis võib su kasutajakonto olla msgid "Please change your password to secure your account again." msgstr "Palun muuda parooli, et oma kasutajakonto uuesti turvata." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "Kaotasid oma parooli?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "pea meeles" -#: templates/login.php:40 +#: templates/login.php:46 msgid "Log in" msgstr "Logi sisse" -#: templates/login.php:46 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "Alternatiivsed sisselogimisviisid" diff --git a/l10n/eu/core.po b/l10n/eu/core.po index 741e2bdfee..e4d54a357a 100644 --- a/l10n/eu/core.po +++ b/l10n/eu/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:30+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -322,7 +322,7 @@ msgstr "Objetu mota ez dago zehaztuta." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:665 js/share.js:677 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "Errorea" @@ -342,7 +342,7 @@ msgstr "Elkarbanatuta" msgid "Share" msgstr "Elkarbanatu" -#: js/share.js:132 js/share.js:705 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Errore bat egon da elkarbanatzean" @@ -374,7 +374,7 @@ msgstr "Elkarbanatu lotura batekin" msgid "Password protect" msgstr "Babestu pasahitzarekin" -#: js/share.js:194 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Pasahitza" @@ -446,27 +446,27 @@ msgstr "ezabatu" msgid "share" msgstr "elkarbanatu" -#: js/share.js:409 js/share.js:652 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "Pasahitzarekin babestuta" -#: js/share.js:665 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "Errorea izan da muga data kentzean" -#: js/share.js:677 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "Errore bat egon da muga data ezartzean" -#: js/share.js:692 +#: js/share.js:694 msgid "Sending ..." msgstr "Bidaltzen ..." -#: js/share.js:703 +#: js/share.js:705 msgid "Email sent" msgstr "Eposta bidalia" -#: js/share.js:727 +#: js/share.js:729 msgid "Warning" msgstr "Abisua" @@ -506,7 +506,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "Zure pashitza berrezartzeko lotura bat jasoko duzu Epostaren bidez." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "Erabiltzaile izena" @@ -711,19 +711,27 @@ msgstr "Zure pasahitza orain dela gutxi ez baduzu aldatu, zure kontua arriskuan msgid "Please change your password to secure your account again." msgstr "Mesedez aldatu zure pasahitza zure kontua berriz segurtatzeko." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "Galdu duzu pasahitza?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "gogoratu" -#: templates/login.php:40 +#: templates/login.php:46 msgid "Log in" msgstr "Hasi saioa" -#: templates/login.php:46 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "Beste erabiltzaile izenak" diff --git a/l10n/fa/core.po b/l10n/fa/core.po index 363ef0b9ea..4854035993 100644 --- a/l10n/fa/core.po +++ b/l10n/fa/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:31+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -316,7 +316,7 @@ msgstr "نوع شی تعیین نشده است." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:665 js/share.js:677 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "خطا" @@ -336,7 +336,7 @@ msgstr "اشتراک گذاشته شده" msgid "Share" msgstr "اشتراک‌گذاری" -#: js/share.js:132 js/share.js:705 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "خطا درحال به اشتراک گذاشتن" @@ -368,7 +368,7 @@ msgstr "به اشتراک گذاشتن با پیوند" msgid "Password protect" msgstr "نگهداری کردن رمز عبور" -#: js/share.js:194 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "گذرواژه" @@ -440,27 +440,27 @@ msgstr "پاک کردن" msgid "share" msgstr "به اشتراک گذاشتن" -#: js/share.js:409 js/share.js:652 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "نگهداری از رمز عبور" -#: js/share.js:665 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "خطا در تنظیم نکردن تاریخ انقضا " -#: js/share.js:677 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "خطا در تنظیم تاریخ انقضا" -#: js/share.js:692 +#: js/share.js:694 msgid "Sending ..." msgstr "درحال ارسال ..." -#: js/share.js:703 +#: js/share.js:705 msgid "Email sent" msgstr "ایمیل ارسال شد" -#: js/share.js:727 +#: js/share.js:729 msgid "Warning" msgstr "اخطار" @@ -500,7 +500,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "شما یک نامه الکترونیکی حاوی یک لینک جهت بازسازی گذرواژه دریافت خواهید کرد." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "نام کاربری" @@ -705,19 +705,27 @@ msgstr "اگر شما اخیرا رمزعبور را تغییر نداده ای msgid "Please change your password to secure your account again." msgstr "لطفا رمز عبور خود را تغییر دهید تا مجددا حساب شما در امان باشد." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "آیا گذرواژه تان را به یاد نمی آورید؟" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "بیاد آوری" -#: templates/login.php:40 +#: templates/login.php:46 msgid "Log in" msgstr "ورود" -#: templates/login.php:46 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "ورود متناوب" diff --git a/l10n/fi_FI/core.po b/l10n/fi_FI/core.po index de7fcaf44c..ba49002c8a 100644 --- a/l10n/fi_FI/core.po +++ b/l10n/fi_FI/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:30+0000\n" -"Last-Translator: Jiri Grönroos \n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"Last-Translator: I Robot \n" "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" @@ -322,7 +322,7 @@ msgstr "" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:665 js/share.js:677 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "Virhe" @@ -342,7 +342,7 @@ msgstr "Jaettu" msgid "Share" msgstr "Jaa" -#: js/share.js:132 js/share.js:705 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Virhe jaettaessa" @@ -374,7 +374,7 @@ msgstr "Jaa linkillä" msgid "Password protect" msgstr "Suojaa salasanalla" -#: js/share.js:194 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Salasana" @@ -446,27 +446,27 @@ msgstr "poista" msgid "share" msgstr "jaa" -#: js/share.js:409 js/share.js:652 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "Salasanasuojattu" -#: js/share.js:665 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "Virhe purettaessa eräpäivää" -#: js/share.js:677 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "Virhe päättymispäivää asettaessa" -#: js/share.js:692 +#: js/share.js:694 msgid "Sending ..." msgstr "Lähetetään..." -#: js/share.js:703 +#: js/share.js:705 msgid "Email sent" msgstr "Sähköposti lähetetty" -#: js/share.js:727 +#: js/share.js:729 msgid "Warning" msgstr "Varoitus" @@ -506,7 +506,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "Saat sähköpostitse linkin nollataksesi salasanan." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "Käyttäjätunnus" @@ -711,19 +711,27 @@ msgstr "Jos et vaihtanut salasanaasi äskettäin, tilisi saattaa olla murrettu." msgid "Please change your password to secure your account again." msgstr "Vaihda salasanasi suojataksesi tilisi uudelleen." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "Unohditko salasanasi?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "muista" -#: templates/login.php:40 +#: templates/login.php:46 msgid "Log in" msgstr "Kirjaudu sisään" -#: templates/login.php:46 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "Vaihtoehtoiset kirjautumiset" diff --git a/l10n/fr/core.po b/l10n/fr/core.po index 4499655698..911dcd114d 100644 --- a/l10n/fr/core.po +++ b/l10n/fr/core.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:31+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" @@ -326,7 +326,7 @@ msgstr "Le type d'objet n'est pas spécifié." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:665 js/share.js:677 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "Erreur" @@ -346,7 +346,7 @@ msgstr "Partagé" msgid "Share" msgstr "Partager" -#: js/share.js:132 js/share.js:705 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Erreur lors de la mise en partage" @@ -378,7 +378,7 @@ msgstr "Partager via lien" msgid "Password protect" msgstr "Protéger par un mot de passe" -#: js/share.js:194 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Mot de passe" @@ -450,27 +450,27 @@ msgstr "supprimer" msgid "share" msgstr "partager" -#: js/share.js:409 js/share.js:652 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "Protégé par un mot de passe" -#: js/share.js:665 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "Une erreur est survenue pendant la suppression de la date d'expiration" -#: js/share.js:677 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "Erreur lors de la spécification de la date d'expiration" -#: js/share.js:692 +#: js/share.js:694 msgid "Sending ..." msgstr "En cours d'envoi ..." -#: js/share.js:703 +#: js/share.js:705 msgid "Email sent" msgstr "Email envoyé" -#: js/share.js:727 +#: js/share.js:729 msgid "Warning" msgstr "Attention" @@ -510,7 +510,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "Vous allez recevoir un e-mail contenant un lien pour réinitialiser votre mot de passe." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "Nom d'utilisateur" @@ -715,19 +715,27 @@ msgstr "Si vous n'avez pas changé votre mot de passe récemment, votre compte r msgid "Please change your password to secure your account again." msgstr "Veuillez changer votre mot de passe pour sécuriser à nouveau votre compte." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "Mot de passe perdu ?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "se souvenir de moi" -#: templates/login.php:40 +#: templates/login.php:46 msgid "Log in" msgstr "Connexion" -#: templates/login.php:46 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "Logins alternatifs" diff --git a/l10n/gl/core.po b/l10n/gl/core.po index 18eab0b5b8..bf4f91c64b 100644 --- a/l10n/gl/core.po +++ b/l10n/gl/core.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-06 09:53+0000\n" -"Last-Translator: mbouzada \n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -321,7 +321,7 @@ msgstr "Non se especificou o tipo de obxecto." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:665 js/share.js:677 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "Erro" @@ -341,7 +341,7 @@ msgstr "Compartir" msgid "Share" msgstr "Compartir" -#: js/share.js:132 js/share.js:705 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Produciuse un erro ao compartir" @@ -373,7 +373,7 @@ msgstr "Compartir coa ligazón" msgid "Password protect" msgstr "Protexido con contrasinais" -#: js/share.js:194 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Contrasinal" @@ -445,27 +445,27 @@ msgstr "eliminar" msgid "share" msgstr "compartir" -#: js/share.js:409 js/share.js:652 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "Protexido con contrasinal" -#: js/share.js:665 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "Produciuse un erro ao retirar a data de caducidade" -#: js/share.js:677 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "Produciuse un erro ao definir a data de caducidade" -#: js/share.js:692 +#: js/share.js:694 msgid "Sending ..." msgstr "Enviando..." -#: js/share.js:703 +#: js/share.js:705 msgid "Email sent" msgstr "Correo enviado" -#: js/share.js:727 +#: js/share.js:729 msgid "Warning" msgstr "Aviso" @@ -505,7 +505,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "Recibirá unha ligazón por correo para restabelecer o contrasinal" #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "Nome de usuario" @@ -710,19 +710,27 @@ msgstr "Se non fixo recentemente cambios de contrasinal é posíbel que a súa c msgid "Please change your password to secure your account again." msgstr "Cambie de novo o seu contrasinal para asegurar a súa conta." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "Perdeu o contrasinal?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "lembrar" -#: templates/login.php:40 +#: templates/login.php:46 msgid "Log in" msgstr "Conectar" -#: templates/login.php:46 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "Accesos alternativos" diff --git a/l10n/gl/files_encryption.po b/l10n/gl/files_encryption.po index 374e363bfa..128417f5c6 100644 --- a/l10n/gl/files_encryption.po +++ b/l10n/gl/files_encryption.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-06 23:07+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-10-07 12:14-0400\n" +"PO-Revision-Date: 2013-10-07 07:20+0000\n" +"Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -61,7 +61,7 @@ msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." -msgstr "" +msgstr "Non se iniciou o aplicativo de cifrado! Quizais volva a activarse durante a sesión. Tente pechar a sesión e volver iniciala que tamén se inicie o aplicativo de cifrado." #: files/error.php:12 msgid "" @@ -92,7 +92,7 @@ msgstr "Gardando..." #: templates/invalid_private_key.php:8 msgid "Go directly to your " -msgstr "" +msgstr "Vaia directamente ao seu" #: templates/invalid_private_key.php:8 msgid "personal settings" @@ -113,7 +113,7 @@ msgstr "Contrasinal da chave de recuperación" #: templates/settings-admin.php:17 msgid "Repeat Recovery key password" -msgstr "" +msgstr "Repita o contrasinal da chave da recuperación" #: templates/settings-admin.php:24 templates/settings-personal.php:54 msgid "Enabled" @@ -137,7 +137,7 @@ msgstr "Novo contrasinal da chave de recuperación" #: templates/settings-admin.php:56 msgid "Repeat New Recovery key password" -msgstr "" +msgstr "Repita o novo contrasinal da chave da recuperación" #: templates/settings-admin.php:61 msgid "Change Password" diff --git a/l10n/he/core.po b/l10n/he/core.po index dac10ff78f..35f8887185 100644 --- a/l10n/he/core.po +++ b/l10n/he/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:30+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -322,7 +322,7 @@ msgstr "סוג הפריט לא צוין." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:665 js/share.js:677 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "שגיאה" @@ -342,7 +342,7 @@ msgstr "שותף" msgid "Share" msgstr "שתף" -#: js/share.js:132 js/share.js:705 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "שגיאה במהלך השיתוף" @@ -374,7 +374,7 @@ msgstr "שיתוף עם קישור" msgid "Password protect" msgstr "הגנה בססמה" -#: js/share.js:194 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "סיסמא" @@ -446,27 +446,27 @@ msgstr "מחיקה" msgid "share" msgstr "שיתוף" -#: js/share.js:409 js/share.js:652 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "מוגן בססמה" -#: js/share.js:665 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "אירעה שגיאה בביטול תאריך התפוגה" -#: js/share.js:677 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "אירעה שגיאה בעת הגדרת תאריך התפוגה" -#: js/share.js:692 +#: js/share.js:694 msgid "Sending ..." msgstr "מתבצעת שליחה ..." -#: js/share.js:703 +#: js/share.js:705 msgid "Email sent" msgstr "הודעת הדוא״ל נשלחה" -#: js/share.js:727 +#: js/share.js:729 msgid "Warning" msgstr "אזהרה" @@ -506,7 +506,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "יישלח לתיבת הדוא״ל שלך קישור לאיפוס הססמה." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "שם משתמש" @@ -711,19 +711,27 @@ msgstr "אם לא שינית את ססמתך לאחרונה, יתכן שחשבו msgid "Please change your password to secure your account again." msgstr "נא לשנות את הססמה שלך כדי לאבטח את חשבונך מחדש." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "שכחת את ססמתך?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "שמירת הססמה" -#: templates/login.php:40 +#: templates/login.php:46 msgid "Log in" msgstr "כניסה" -#: templates/login.php:46 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "כניסות אלטרנטיביות" diff --git a/l10n/hi/core.po b/l10n/hi/core.po index 59475bde13..20124d63a3 100644 --- a/l10n/hi/core.po +++ b/l10n/hi/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:30+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -322,7 +322,7 @@ msgstr "" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:665 js/share.js:677 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "त्रुटि" @@ -342,7 +342,7 @@ msgstr "" msgid "Share" msgstr "साझा करें" -#: js/share.js:132 js/share.js:705 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "" @@ -374,7 +374,7 @@ msgstr "" msgid "Password protect" msgstr "" -#: js/share.js:194 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "पासवर्ड" @@ -446,27 +446,27 @@ msgstr "" msgid "share" msgstr "" -#: js/share.js:409 js/share.js:652 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "" -#: js/share.js:665 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:677 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "" -#: js/share.js:692 +#: js/share.js:694 msgid "Sending ..." msgstr "भेजा जा रहा है" -#: js/share.js:703 +#: js/share.js:705 msgid "Email sent" msgstr "ईमेल भेज दिया गया है " -#: js/share.js:727 +#: js/share.js:729 msgid "Warning" msgstr "चेतावनी " @@ -506,7 +506,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "पासवर्ड बदलने कि लिंक आपको ई-मेल द्वारा भेजी जायेगी|" #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "प्रयोक्ता का नाम" @@ -711,19 +711,27 @@ msgstr "" msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "याद रखें" -#: templates/login.php:40 +#: templates/login.php:46 msgid "Log in" msgstr "" -#: templates/login.php:46 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "" diff --git a/l10n/hr/core.po b/l10n/hr/core.po index aa8847b3dc..f1e702ed34 100644 --- a/l10n/hr/core.po +++ b/l10n/hr/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:11+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -325,7 +325,7 @@ msgstr "" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:665 js/share.js:677 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "Greška" @@ -345,7 +345,7 @@ msgstr "" msgid "Share" msgstr "Podijeli" -#: js/share.js:132 js/share.js:705 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Greška prilikom djeljenja" @@ -377,7 +377,7 @@ msgstr "Djeli preko link-a" msgid "Password protect" msgstr "Zaštiti lozinkom" -#: js/share.js:194 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Lozinka" @@ -449,27 +449,27 @@ msgstr "izbriši" msgid "share" msgstr "djeli" -#: js/share.js:409 js/share.js:652 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "Zaštita lozinkom" -#: js/share.js:665 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "Greška prilikom brisanja datuma isteka" -#: js/share.js:677 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "Greška prilikom postavljanja datuma isteka" -#: js/share.js:692 +#: js/share.js:694 msgid "Sending ..." msgstr "" -#: js/share.js:703 +#: js/share.js:705 msgid "Email sent" msgstr "" -#: js/share.js:727 +#: js/share.js:729 msgid "Warning" msgstr "" @@ -509,7 +509,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "Primit ćete link kako biste poništili zaporku putem e-maila." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "Korisničko ime" @@ -714,19 +714,27 @@ msgstr "" msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "Izgubili ste lozinku?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "zapamtiti" -#: templates/login.php:40 +#: templates/login.php:46 msgid "Log in" msgstr "Prijava" -#: templates/login.php:46 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "" diff --git a/l10n/hu_HU/core.po b/l10n/hu_HU/core.po index 0d7f2e2f31..4b2a51eaf5 100644 --- a/l10n/hu_HU/core.po +++ b/l10n/hu_HU/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:30+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -322,7 +322,7 @@ msgstr "Az objektum típusa nincs megadva." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:665 js/share.js:677 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "Hiba" @@ -342,7 +342,7 @@ msgstr "Megosztott" msgid "Share" msgstr "Megosztás" -#: js/share.js:132 js/share.js:705 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Nem sikerült létrehozni a megosztást" @@ -374,7 +374,7 @@ msgstr "Link megadásával osztom meg" msgid "Password protect" msgstr "Jelszóval is védem" -#: js/share.js:194 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Jelszó" @@ -446,27 +446,27 @@ msgstr "töröl" msgid "share" msgstr "megoszt" -#: js/share.js:409 js/share.js:652 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "Jelszóval van védve" -#: js/share.js:665 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "Nem sikerült a lejárati időt törölni" -#: js/share.js:677 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "Nem sikerült a lejárati időt beállítani" -#: js/share.js:692 +#: js/share.js:694 msgid "Sending ..." msgstr "Küldés ..." -#: js/share.js:703 +#: js/share.js:705 msgid "Email sent" msgstr "Az emailt elküldtük" -#: js/share.js:727 +#: js/share.js:729 msgid "Warning" msgstr "Figyelmeztetés" @@ -506,7 +506,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "Egy emailben fog értesítést kapni a jelszóbeállítás módjáról." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "Felhasználónév" @@ -711,19 +711,27 @@ msgstr "Ha mostanában nem módosította a jelszavát, akkor lehetséges, hogy i msgid "Please change your password to secure your account again." msgstr "A biztonsága érdekében változtassa meg a jelszavát!" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "Elfelejtette a jelszavát?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "emlékezzen" -#: templates/login.php:40 +#: templates/login.php:46 msgid "Log in" msgstr "Bejelentkezés" -#: templates/login.php:46 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "Alternatív bejelentkezés" diff --git a/l10n/hy/core.po b/l10n/hy/core.po index ae3dea63e1..5b7573876f 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: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:11+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" @@ -320,7 +320,7 @@ msgstr "" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:665 js/share.js:677 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "" @@ -340,7 +340,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:132 js/share.js:705 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "" @@ -372,7 +372,7 @@ msgstr "" msgid "Password protect" msgstr "" -#: js/share.js:194 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "" @@ -444,27 +444,27 @@ msgstr "" msgid "share" msgstr "" -#: js/share.js:409 js/share.js:652 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "" -#: js/share.js:665 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:677 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "" -#: js/share.js:692 +#: js/share.js:694 msgid "Sending ..." msgstr "" -#: js/share.js:703 +#: js/share.js:705 msgid "Email sent" msgstr "" -#: js/share.js:727 +#: js/share.js:729 msgid "Warning" msgstr "" @@ -504,7 +504,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "" #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "" @@ -709,19 +709,27 @@ msgstr "" msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "" -#: templates/login.php:40 +#: templates/login.php:46 msgid "Log in" msgstr "" -#: templates/login.php:46 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "" diff --git a/l10n/ia/core.po b/l10n/ia/core.po index 0a5eb1c9f7..4d5634de07 100644 --- a/l10n/ia/core.po +++ b/l10n/ia/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:11+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -320,7 +320,7 @@ msgstr "" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:665 js/share.js:677 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "Error" @@ -340,7 +340,7 @@ msgstr "" msgid "Share" msgstr "Compartir" -#: js/share.js:132 js/share.js:705 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "" @@ -372,7 +372,7 @@ msgstr "" msgid "Password protect" msgstr "" -#: js/share.js:194 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Contrasigno" @@ -444,27 +444,27 @@ msgstr "" msgid "share" msgstr "" -#: js/share.js:409 js/share.js:652 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "" -#: js/share.js:665 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:677 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "" -#: js/share.js:692 +#: js/share.js:694 msgid "Sending ..." msgstr "" -#: js/share.js:703 +#: js/share.js:705 msgid "Email sent" msgstr "" -#: js/share.js:727 +#: js/share.js:729 msgid "Warning" msgstr "" @@ -504,7 +504,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "" #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "Nomine de usator" @@ -709,19 +709,27 @@ msgstr "" msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "Tu perdeva le contrasigno?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "memora" -#: templates/login.php:40 +#: templates/login.php:46 msgid "Log in" msgstr "Aperir session" -#: templates/login.php:46 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "" diff --git a/l10n/id/core.po b/l10n/id/core.po index 6343b369f7..e745d2e9e0 100644 --- a/l10n/id/core.po +++ b/l10n/id/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:30+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -315,7 +315,7 @@ msgstr "Tipe objek tidak ditentukan." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:665 js/share.js:677 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "Galat" @@ -335,7 +335,7 @@ msgstr "Dibagikan" msgid "Share" msgstr "Bagikan" -#: js/share.js:132 js/share.js:705 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Galat ketika membagikan" @@ -367,7 +367,7 @@ msgstr "Bagikan lewat tautan" msgid "Password protect" msgstr "Lindungi dengan sandi" -#: js/share.js:194 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Sandi" @@ -439,27 +439,27 @@ msgstr "hapus" msgid "share" msgstr "bagikan" -#: js/share.js:409 js/share.js:652 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "Dilindungi sandi" -#: js/share.js:665 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "Galat ketika menghapus tanggal kedaluwarsa" -#: js/share.js:677 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "Galat ketika menyetel tanggal kedaluwarsa" -#: js/share.js:692 +#: js/share.js:694 msgid "Sending ..." msgstr "Mengirim ..." -#: js/share.js:703 +#: js/share.js:705 msgid "Email sent" msgstr "Email terkirim" -#: js/share.js:727 +#: js/share.js:729 msgid "Warning" msgstr "Peringatan" @@ -499,7 +499,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "Anda akan menerima tautan penyetelan ulang sandi lewat Email." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "Nama pengguna" @@ -704,19 +704,27 @@ msgstr "Jika tidak pernah mengubah sandi Anda baru-baru ini, akun Anda mungkin d msgid "Please change your password to secure your account again." msgstr "Mohon ubah sandi Anda untuk mengamankan kembali akun Anda." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "Lupa sandi?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "selalu masuk" -#: templates/login.php:40 +#: templates/login.php:46 msgid "Log in" msgstr "Masuk" -#: templates/login.php:46 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "Cara Alternatif untuk Masuk" diff --git a/l10n/is/core.po b/l10n/is/core.po index fdce8a6797..feb1caadd1 100644 --- a/l10n/is/core.po +++ b/l10n/is/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:30+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -321,7 +321,7 @@ msgstr "Tegund ekki tilgreind" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:665 js/share.js:677 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "Villa" @@ -341,7 +341,7 @@ msgstr "Deilt" msgid "Share" msgstr "Deila" -#: js/share.js:132 js/share.js:705 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Villa við deilingu" @@ -373,7 +373,7 @@ msgstr "Deila með veftengli" msgid "Password protect" msgstr "Verja með lykilorði" -#: js/share.js:194 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Lykilorð" @@ -445,27 +445,27 @@ msgstr "eyða" msgid "share" msgstr "deila" -#: js/share.js:409 js/share.js:652 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "Verja með lykilorði" -#: js/share.js:665 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "Villa við að aftengja gildistíma" -#: js/share.js:677 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "Villa við að setja gildistíma" -#: js/share.js:692 +#: js/share.js:694 msgid "Sending ..." msgstr "Sendi ..." -#: js/share.js:703 +#: js/share.js:705 msgid "Email sent" msgstr "Tölvupóstur sendur" -#: js/share.js:727 +#: js/share.js:729 msgid "Warning" msgstr "Aðvörun" @@ -505,7 +505,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "Þú munt fá veftengil í tölvupósti til að endursetja lykilorðið." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "Notendanafn" @@ -710,19 +710,27 @@ msgstr "Ef þú breyttir ekki lykilorðinu þínu fyrir skömmu, er mögulegt a msgid "Please change your password to secure your account again." msgstr "Vinsamlegast breyttu lykilorðinu þínu til að tryggja öryggi þitt." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "Týndir þú lykilorðinu?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "muna eftir mér" -#: templates/login.php:40 +#: templates/login.php:46 msgid "Log in" msgstr "Skrá inn" -#: templates/login.php:46 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "" diff --git a/l10n/it/core.po b/l10n/it/core.po index 55c578982e..ac90b3bdd2 100644 --- a/l10n/it/core.po +++ b/l10n/it/core.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-06 16:10+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"Last-Translator: I Robot \n" "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" @@ -324,7 +324,7 @@ msgstr "Il tipo di oggetto non è specificato." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:665 js/share.js:677 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "Errore" @@ -344,7 +344,7 @@ msgstr "Condivisi" msgid "Share" msgstr "Condividi" -#: js/share.js:132 js/share.js:705 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Errore durante la condivisione" @@ -376,7 +376,7 @@ msgstr "Condividi con collegamento" msgid "Password protect" msgstr "Proteggi con password" -#: js/share.js:194 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Password" @@ -448,27 +448,27 @@ msgstr "elimina" msgid "share" msgstr "condividi" -#: js/share.js:409 js/share.js:652 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "Protetta da password" -#: js/share.js:665 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "Errore durante la rimozione della data di scadenza" -#: js/share.js:677 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "Errore durante l'impostazione della data di scadenza" -#: js/share.js:692 +#: js/share.js:694 msgid "Sending ..." msgstr "Invio in corso..." -#: js/share.js:703 +#: js/share.js:705 msgid "Email sent" msgstr "Messaggio inviato" -#: js/share.js:727 +#: js/share.js:729 msgid "Warning" msgstr "Avviso" @@ -508,7 +508,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "Riceverai un collegamento per ripristinare la tua password via email" #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "Nome utente" @@ -713,19 +713,27 @@ msgstr "Se non hai cambiato la password recentemente, il tuo account potrebbe es msgid "Please change your password to secure your account again." msgstr "Cambia la password per rendere nuovamente sicuro il tuo account." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "Hai perso la password?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "ricorda" -#: templates/login.php:40 +#: templates/login.php:46 msgid "Log in" msgstr "Accedi" -#: templates/login.php:46 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "Accessi alternativi" diff --git a/l10n/ja_JP/core.po b/l10n/ja_JP/core.po index 6acbccfcf8..3484f6f4dd 100644 --- a/l10n/ja_JP/core.po +++ b/l10n/ja_JP/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:30+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" @@ -319,7 +319,7 @@ msgstr "オブジェクタイプが指定されていません。" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:665 js/share.js:677 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "エラー" @@ -339,7 +339,7 @@ msgstr "共有中" msgid "Share" msgstr "共有" -#: js/share.js:132 js/share.js:705 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "共有でエラー発生" @@ -371,7 +371,7 @@ msgstr "URLリンクで共有" msgid "Password protect" msgstr "パスワード保護" -#: js/share.js:194 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "パスワード" @@ -443,27 +443,27 @@ msgstr "削除" msgid "share" msgstr "共有" -#: js/share.js:409 js/share.js:652 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "パスワード保護" -#: js/share.js:665 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "有効期限の未設定エラー" -#: js/share.js:677 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "有効期限の設定でエラー発生" -#: js/share.js:692 +#: js/share.js:694 msgid "Sending ..." msgstr "送信中..." -#: js/share.js:703 +#: js/share.js:705 msgid "Email sent" msgstr "メールを送信しました" -#: js/share.js:727 +#: js/share.js:729 msgid "Warning" msgstr "警告" @@ -503,7 +503,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "メールでパスワードをリセットするリンクが届きます。" #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "ユーザー名" @@ -708,19 +708,27 @@ msgstr "最近パスワードを変更していない場合、あなたのアカ msgid "Please change your password to secure your account again." msgstr "アカウント保護の為、パスワードを再度の変更をお願いいたします。" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "パスワードを忘れましたか?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "パスワードを記憶する" -#: templates/login.php:40 +#: templates/login.php:46 msgid "Log in" msgstr "ログイン" -#: templates/login.php:46 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "代替ログイン" diff --git a/l10n/ka/core.po b/l10n/ka/core.po index 9b04573ae7..4aec55bfb1 100644 --- a/l10n/ka/core.po +++ b/l10n/ka/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:11+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -315,7 +315,7 @@ msgstr "" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:665 js/share.js:677 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "" @@ -335,7 +335,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:132 js/share.js:705 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "" @@ -367,7 +367,7 @@ msgstr "" msgid "Password protect" msgstr "" -#: js/share.js:194 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "პაროლი" @@ -439,27 +439,27 @@ msgstr "" msgid "share" msgstr "" -#: js/share.js:409 js/share.js:652 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "" -#: js/share.js:665 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:677 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "" -#: js/share.js:692 +#: js/share.js:694 msgid "Sending ..." msgstr "" -#: js/share.js:703 +#: js/share.js:705 msgid "Email sent" msgstr "" -#: js/share.js:727 +#: js/share.js:729 msgid "Warning" msgstr "" @@ -499,7 +499,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "" #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "" @@ -704,19 +704,27 @@ msgstr "" msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "" -#: templates/login.php:40 +#: templates/login.php:46 msgid "Log in" msgstr "" -#: templates/login.php:46 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "" diff --git a/l10n/ka_GE/core.po b/l10n/ka_GE/core.po index 82e176ee72..afae9b51b8 100644 --- a/l10n/ka_GE/core.po +++ b/l10n/ka_GE/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:31+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -315,7 +315,7 @@ msgstr "ობიექტის ტიპი არ არის მითი #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:665 js/share.js:677 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "შეცდომა" @@ -335,7 +335,7 @@ msgstr "გაზიარებული" msgid "Share" msgstr "გაზიარება" -#: js/share.js:132 js/share.js:705 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "შეცდომა გაზიარების დროს" @@ -367,7 +367,7 @@ msgstr "გაუზიარე ლინკით" msgid "Password protect" msgstr "პაროლით დაცვა" -#: js/share.js:194 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "პაროლი" @@ -439,27 +439,27 @@ msgstr "წაშლა" msgid "share" msgstr "გაზიარება" -#: js/share.js:409 js/share.js:652 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "პაროლით დაცული" -#: js/share.js:665 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "შეცდომა ვადის გასვლის მოხსნის დროს" -#: js/share.js:677 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "შეცდომა ვადის გასვლის მითითების დროს" -#: js/share.js:692 +#: js/share.js:694 msgid "Sending ..." msgstr "გაგზავნა ...." -#: js/share.js:703 +#: js/share.js:705 msgid "Email sent" msgstr "იმეილი გაიგზავნა" -#: js/share.js:727 +#: js/share.js:729 msgid "Warning" msgstr "გაფრთხილება" @@ -499,7 +499,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "თქვენ მოგივათ პაროლის შესაცვლელი ლინკი მეილზე" #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "მომხმარებლის სახელი" @@ -704,19 +704,27 @@ msgstr "თუ თქვენ არ შეცვლით პაროლს, msgid "Please change your password to secure your account again." msgstr "გთხოვთ შეცვალოთ თქვენი პაროლი, თქვენი ანგარიშის დასაცავად." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "დაგავიწყდათ პაროლი?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "დამახსოვრება" -#: templates/login.php:40 +#: templates/login.php:46 msgid "Log in" msgstr "შესვლა" -#: templates/login.php:46 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "ალტერნატიული Login–ი" diff --git a/l10n/km/core.po b/l10n/km/core.po index 7aeec466ef..108e8db082 100644 --- a/l10n/km/core.po +++ b/l10n/km/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:11+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot \n" "Language-Team: Khmer (http://www.transifex.com/projects/p/owncloud/language/km/)\n" "MIME-Version: 1.0\n" @@ -315,7 +315,7 @@ msgstr "" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:665 js/share.js:677 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "" @@ -335,7 +335,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:132 js/share.js:705 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "" @@ -367,7 +367,7 @@ msgstr "" msgid "Password protect" msgstr "" -#: js/share.js:194 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "" @@ -439,27 +439,27 @@ msgstr "" msgid "share" msgstr "" -#: js/share.js:409 js/share.js:652 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "" -#: js/share.js:665 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:677 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "" -#: js/share.js:692 +#: js/share.js:694 msgid "Sending ..." msgstr "" -#: js/share.js:703 +#: js/share.js:705 msgid "Email sent" msgstr "" -#: js/share.js:727 +#: js/share.js:729 msgid "Warning" msgstr "" @@ -499,7 +499,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "" #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "" @@ -704,19 +704,27 @@ msgstr "" msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "" -#: templates/login.php:40 +#: templates/login.php:46 msgid "Log in" msgstr "" -#: templates/login.php:46 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "" diff --git a/l10n/kn/core.po b/l10n/kn/core.po index 00a0ea1098..1e31d0b4f5 100644 --- a/l10n/kn/core.po +++ b/l10n/kn/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:11+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" "MIME-Version: 1.0\n" @@ -315,7 +315,7 @@ msgstr "" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:665 js/share.js:677 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "" @@ -335,7 +335,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:132 js/share.js:705 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "" @@ -367,7 +367,7 @@ msgstr "" msgid "Password protect" msgstr "" -#: js/share.js:194 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "" @@ -439,27 +439,27 @@ msgstr "" msgid "share" msgstr "" -#: js/share.js:409 js/share.js:652 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "" -#: js/share.js:665 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:677 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "" -#: js/share.js:692 +#: js/share.js:694 msgid "Sending ..." msgstr "" -#: js/share.js:703 +#: js/share.js:705 msgid "Email sent" msgstr "" -#: js/share.js:727 +#: js/share.js:729 msgid "Warning" msgstr "" @@ -499,7 +499,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "" #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "" @@ -704,19 +704,27 @@ msgstr "" msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "" -#: templates/login.php:40 +#: templates/login.php:46 msgid "Log in" msgstr "" -#: templates/login.php:46 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "" diff --git a/l10n/ko/core.po b/l10n/ko/core.po index bb96c9eee8..e8b3ae15bb 100644 --- a/l10n/ko/core.po +++ b/l10n/ko/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:30+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -317,7 +317,7 @@ msgstr "객체 유형이 지정되지 않았습니다." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:665 js/share.js:677 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "오류" @@ -337,7 +337,7 @@ msgstr "공유됨" msgid "Share" msgstr "공유" -#: js/share.js:132 js/share.js:705 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "공유하는 중 오류 발생" @@ -369,7 +369,7 @@ msgstr "URL 링크로 공유" msgid "Password protect" msgstr "암호 보호" -#: js/share.js:194 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "암호" @@ -441,27 +441,27 @@ msgstr "삭제" msgid "share" msgstr "공유" -#: js/share.js:409 js/share.js:652 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "암호로 보호됨" -#: js/share.js:665 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "만료 날짜 해제 오류" -#: js/share.js:677 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "만료 날짜 설정 오류" -#: js/share.js:692 +#: js/share.js:694 msgid "Sending ..." msgstr "전송 중..." -#: js/share.js:703 +#: js/share.js:705 msgid "Email sent" msgstr "이메일 발송됨" -#: js/share.js:727 +#: js/share.js:729 msgid "Warning" msgstr "경고" @@ -501,7 +501,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "이메일로 암호 재설정 링크를 보냈습니다." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "사용자 이름" @@ -706,19 +706,27 @@ msgstr "최근에 암호를 변경하지 않았다면 계정이 탈취되었을 msgid "Please change your password to secure your account again." msgstr "계정의 안전을 위하여 암호를 변경하십시오." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "암호를 잊으셨습니까?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "기억하기" -#: templates/login.php:40 +#: templates/login.php:46 msgid "Log in" msgstr "로그인" -#: templates/login.php:46 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "대체 " diff --git a/l10n/ku_IQ/core.po b/l10n/ku_IQ/core.po index f2feced5b5..860c4a7824 100644 --- a/l10n/ku_IQ/core.po +++ b/l10n/ku_IQ/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:30+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -320,7 +320,7 @@ msgstr "" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:665 js/share.js:677 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "هه‌ڵه" @@ -340,7 +340,7 @@ msgstr "" msgid "Share" msgstr "هاوبەشی کردن" -#: js/share.js:132 js/share.js:705 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "" @@ -372,7 +372,7 @@ msgstr "" msgid "Password protect" msgstr "" -#: js/share.js:194 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "وشەی تێپەربو" @@ -444,27 +444,27 @@ msgstr "" msgid "share" msgstr "" -#: js/share.js:409 js/share.js:652 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "" -#: js/share.js:665 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:677 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "" -#: js/share.js:692 +#: js/share.js:694 msgid "Sending ..." msgstr "" -#: js/share.js:703 +#: js/share.js:705 msgid "Email sent" msgstr "" -#: js/share.js:727 +#: js/share.js:729 msgid "Warning" msgstr "ئاگاداری" @@ -504,7 +504,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "" #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "ناوی به‌کارهێنه‌ر" @@ -709,19 +709,27 @@ msgstr "" msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "" -#: templates/login.php:40 +#: templates/login.php:46 msgid "Log in" msgstr "" -#: templates/login.php:46 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "" diff --git a/l10n/lb/core.po b/l10n/lb/core.po index a823f86e02..3bbf3073f2 100644 --- a/l10n/lb/core.po +++ b/l10n/lb/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:30+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -321,7 +321,7 @@ msgstr "Den Typ vum Object ass net uginn." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:665 js/share.js:677 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "Feeler" @@ -341,7 +341,7 @@ msgstr "Gedeelt" msgid "Share" msgstr "Deelen" -#: js/share.js:132 js/share.js:705 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Feeler beim Deelen" @@ -373,7 +373,7 @@ msgstr "Mat Link deelen" msgid "Password protect" msgstr "Passwuertgeschützt" -#: js/share.js:194 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Passwuert" @@ -445,27 +445,27 @@ msgstr "läschen" msgid "share" msgstr "deelen" -#: js/share.js:409 js/share.js:652 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "Passwuertgeschützt" -#: js/share.js:665 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "Feeler beim Läsche vum Verfallsdatum" -#: js/share.js:677 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "Feeler beim Setze vum Verfallsdatum" -#: js/share.js:692 +#: js/share.js:694 msgid "Sending ..." msgstr "Gëtt geschéckt..." -#: js/share.js:703 +#: js/share.js:705 msgid "Email sent" msgstr "Email geschéckt" -#: js/share.js:727 +#: js/share.js:729 msgid "Warning" msgstr "Warnung" @@ -505,7 +505,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "Du kriss e Link fir däi Passwuert zréckzesetze via Email geschéckt." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "Benotzernumm" @@ -710,19 +710,27 @@ msgstr "Falls du däi Passwuert net viru kuerzem geännert hues, kéint däin Ac msgid "Please change your password to secure your account again." msgstr "Änner w.e.gl däi Passwuert fir däin Account nees ofzesécheren." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "Passwuert vergiess?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "verhalen" -#: templates/login.php:40 +#: templates/login.php:46 msgid "Log in" msgstr "Umellen" -#: templates/login.php:46 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "Alternativ Umeldungen" diff --git a/l10n/lt_LT/core.po b/l10n/lt_LT/core.po index 75a661131a..4f1a1ad327 100644 --- a/l10n/lt_LT/core.po +++ b/l10n/lt_LT/core.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 19:10+0000\n" -"Last-Translator: Liudas Ališauskas \n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -329,7 +329,7 @@ msgstr "Objekto tipas nenurodytas." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:665 js/share.js:677 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "Klaida" @@ -349,7 +349,7 @@ msgstr "Dalinamasi" msgid "Share" msgstr "Dalintis" -#: js/share.js:132 js/share.js:705 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Klaida, dalijimosi metu" @@ -381,7 +381,7 @@ msgstr "Dalintis nuoroda" msgid "Password protect" msgstr "Apsaugotas slaptažodžiu" -#: js/share.js:194 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Slaptažodis" @@ -453,27 +453,27 @@ msgstr "ištrinti" msgid "share" msgstr "dalintis" -#: js/share.js:409 js/share.js:652 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "Apsaugota slaptažodžiu" -#: js/share.js:665 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "Klaida nuimant galiojimo laiką" -#: js/share.js:677 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "Klaida nustatant galiojimo laiką" -#: js/share.js:692 +#: js/share.js:694 msgid "Sending ..." msgstr "Siunčiama..." -#: js/share.js:703 +#: js/share.js:705 msgid "Email sent" msgstr "Laiškas išsiųstas" -#: js/share.js:727 +#: js/share.js:729 msgid "Warning" msgstr "Įspėjimas" @@ -513,7 +513,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "Elektroniniu paštu gausite nuorodą, su kuria galėsite iš naujo nustatyti slaptažodį." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "Prisijungimo vardas" @@ -585,7 +585,7 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -msgstr "" +msgstr "Labas,\n\nInformuojame, kad %s pasidalino su Jumis %s.\nPažiūrėti tai: %s\n" #: templates/altmail.php:4 #, php-format @@ -718,19 +718,27 @@ msgstr "Jei paskutinių metu nekeitėte savo slaptažodžio, Jūsų paskyra gali msgid "Please change your password to secure your account again." msgstr "Prašome pasikeisti slaptažodį dar kartą, dėl paskyros saugumo." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "Pamiršote slaptažodį?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "prisiminti" -#: templates/login.php:40 +#: templates/login.php:46 msgid "Log in" msgstr "Prisijungti" -#: templates/login.php:46 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "Alternatyvūs prisijungimai" @@ -739,7 +747,7 @@ msgstr "Alternatyvūs prisijungimai" msgid "" "Hey there,

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

    " -msgstr "" +msgstr "Labas,

    tik informuojame, kad %s pasidalino su Jumis »%s«.
    Peržiūrėk!

    " #: templates/mail.php:17 #, php-format diff --git a/l10n/lt_LT/files_encryption.po b/l10n/lt_LT/files_encryption.po index b7bff08a70..6bb0be274b 100644 --- a/l10n/lt_LT/files_encryption.po +++ b/l10n/lt_LT/files_encryption.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-06 23:07+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-10-07 12:14-0400\n" +"PO-Revision-Date: 2013-10-07 10:30+0000\n" +"Last-Translator: Liudas Ališauskas \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -60,7 +60,7 @@ msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." -msgstr "" +msgstr "Šifravimo programa nepaleista! Galbūt šifravimo programa buvo įjungta dar kartą Jūsų sesijos metu. Prašome atsijungti ir vėl prisijungti, kad paleisti šifravimo programą." #: files/error.php:12 msgid "" @@ -91,7 +91,7 @@ msgstr "Saugoma..." #: templates/invalid_private_key.php:8 msgid "Go directly to your " -msgstr "" +msgstr "Eiti tiesiai į Jūsų" #: templates/invalid_private_key.php:8 msgid "personal settings" @@ -112,7 +112,7 @@ msgstr "Atkūrimo rakto slaptažodis" #: templates/settings-admin.php:17 msgid "Repeat Recovery key password" -msgstr "" +msgstr "Pakartokite atkūrimo rakto slaptažodį" #: templates/settings-admin.php:24 templates/settings-personal.php:54 msgid "Enabled" @@ -136,7 +136,7 @@ msgstr "Naujas atkūrimo rakto slaptažodis" #: templates/settings-admin.php:56 msgid "Repeat New Recovery key password" -msgstr "" +msgstr "Pakartokite naują atkūrimo rakto slaptažodį" #: templates/settings-admin.php:61 msgid "Change Password" diff --git a/l10n/lv/core.po b/l10n/lv/core.po index 3571166298..b132f8f044 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: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:30+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -326,7 +326,7 @@ msgstr "Nav norādīts objekta tips." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:665 js/share.js:677 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "Kļūda" @@ -346,7 +346,7 @@ msgstr "Kopīgs" msgid "Share" msgstr "Dalīties" -#: js/share.js:132 js/share.js:705 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Kļūda, daloties" @@ -378,7 +378,7 @@ msgstr "Dalīties ar saiti" msgid "Password protect" msgstr "Aizsargāt ar paroli" -#: js/share.js:194 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Parole" @@ -450,27 +450,27 @@ msgstr "dzēst" msgid "share" msgstr "dalīties" -#: js/share.js:409 js/share.js:652 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "Aizsargāts ar paroli" -#: js/share.js:665 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "Kļūda, noņemot termiņa datumu" -#: js/share.js:677 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "Kļūda, iestatot termiņa datumu" -#: js/share.js:692 +#: js/share.js:694 msgid "Sending ..." msgstr "Sūta..." -#: js/share.js:703 +#: js/share.js:705 msgid "Email sent" msgstr "Vēstule nosūtīta" -#: js/share.js:727 +#: js/share.js:729 msgid "Warning" msgstr "Brīdinājums" @@ -510,7 +510,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "Jūs savā epastā saņemsiet interneta saiti, caur kuru varēsiet atjaunot paroli." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "Lietotājvārds" @@ -715,19 +715,27 @@ msgstr "Ja neesat pēdējā laikā mainījis paroli, iespējams, ka jūsu konts msgid "Please change your password to secure your account again." msgstr "Lūdzu, nomainiet savu paroli, lai atkal nodrošinātu savu kontu." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "Aizmirsāt paroli?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "atcerēties" -#: templates/login.php:40 +#: templates/login.php:46 msgid "Log in" msgstr "Ierakstīties" -#: templates/login.php:46 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "Alternatīvās pieteikšanās" diff --git a/l10n/mk/core.po b/l10n/mk/core.po index 969d919a8c..9cc2a9ee06 100644 --- a/l10n/mk/core.po +++ b/l10n/mk/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:30+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -320,7 +320,7 @@ msgstr "Не е специфициран типот на објект." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:665 js/share.js:677 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "Грешка" @@ -340,7 +340,7 @@ msgstr "" msgid "Share" msgstr "Сподели" -#: js/share.js:132 js/share.js:705 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Грешка при споделување" @@ -372,7 +372,7 @@ msgstr "Сподели со врска" msgid "Password protect" msgstr "Заштити со лозинка" -#: js/share.js:194 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Лозинка" @@ -444,27 +444,27 @@ msgstr "избриши" msgid "share" msgstr "сподели" -#: js/share.js:409 js/share.js:652 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "Заштитено со лозинка" -#: js/share.js:665 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "Грешка при тргање на рокот на траење" -#: js/share.js:677 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "Грешка при поставување на рок на траење" -#: js/share.js:692 +#: js/share.js:694 msgid "Sending ..." msgstr "Праќање..." -#: js/share.js:703 +#: js/share.js:705 msgid "Email sent" msgstr "Е-порака пратена" -#: js/share.js:727 +#: js/share.js:729 msgid "Warning" msgstr "Предупредување" @@ -504,7 +504,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "Ќе добиете врска по е-пошта за да може да ја ресетирате Вашата лозинка." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "Корисничко име" @@ -709,19 +709,27 @@ msgstr "Ако не сте ја промениле лозинката во ск msgid "Please change your password to secure your account again." msgstr "Ве молам сменете ја лозинката да ја обезбедите вашата сметка повторно." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "Ја заборавивте лозинката?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "запамти" -#: templates/login.php:40 +#: templates/login.php:46 msgid "Log in" msgstr "Најава" -#: templates/login.php:46 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "" diff --git a/l10n/ml_IN/core.po b/l10n/ml_IN/core.po index ded8b3e235..dc3821669e 100644 --- a/l10n/ml_IN/core.po +++ b/l10n/ml_IN/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:11+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malayalam (India) (http://www.transifex.com/projects/p/owncloud/language/ml_IN/)\n" "MIME-Version: 1.0\n" @@ -320,7 +320,7 @@ msgstr "" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:665 js/share.js:677 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "" @@ -340,7 +340,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:132 js/share.js:705 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "" @@ -372,7 +372,7 @@ msgstr "" msgid "Password protect" msgstr "" -#: js/share.js:194 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "" @@ -444,27 +444,27 @@ msgstr "" msgid "share" msgstr "" -#: js/share.js:409 js/share.js:652 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "" -#: js/share.js:665 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:677 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "" -#: js/share.js:692 +#: js/share.js:694 msgid "Sending ..." msgstr "" -#: js/share.js:703 +#: js/share.js:705 msgid "Email sent" msgstr "" -#: js/share.js:727 +#: js/share.js:729 msgid "Warning" msgstr "" @@ -504,7 +504,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "" #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "" @@ -709,19 +709,27 @@ msgstr "" msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "" -#: templates/login.php:40 +#: templates/login.php:46 msgid "Log in" msgstr "" -#: templates/login.php:46 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "" diff --git a/l10n/ms_MY/core.po b/l10n/ms_MY/core.po index 94bd3ed5fb..b631d3e90b 100644 --- a/l10n/ms_MY/core.po +++ b/l10n/ms_MY/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:30+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -315,7 +315,7 @@ msgstr "" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:665 js/share.js:677 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "Ralat" @@ -335,7 +335,7 @@ msgstr "" msgid "Share" msgstr "Kongsi" -#: js/share.js:132 js/share.js:705 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "" @@ -367,7 +367,7 @@ msgstr "" msgid "Password protect" msgstr "" -#: js/share.js:194 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Kata laluan" @@ -439,27 +439,27 @@ msgstr "" msgid "share" msgstr "" -#: js/share.js:409 js/share.js:652 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "" -#: js/share.js:665 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:677 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "" -#: js/share.js:692 +#: js/share.js:694 msgid "Sending ..." msgstr "" -#: js/share.js:703 +#: js/share.js:705 msgid "Email sent" msgstr "" -#: js/share.js:727 +#: js/share.js:729 msgid "Warning" msgstr "Amaran" @@ -499,7 +499,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "Anda akan menerima pautan untuk menetapkan semula kata laluan anda melalui emel" #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "Nama pengguna" @@ -704,19 +704,27 @@ msgstr "" msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "Hilang kata laluan?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "ingat" -#: templates/login.php:40 +#: templates/login.php:46 msgid "Log in" msgstr "Log masuk" -#: templates/login.php:46 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "" diff --git a/l10n/my_MM/core.po b/l10n/my_MM/core.po index 5cb8356008..5c25e31a1b 100644 --- a/l10n/my_MM/core.po +++ b/l10n/my_MM/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:11+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -315,7 +315,7 @@ msgstr "" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:665 js/share.js:677 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "" @@ -335,7 +335,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:132 js/share.js:705 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "" @@ -367,7 +367,7 @@ msgstr "" msgid "Password protect" msgstr "" -#: js/share.js:194 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "စကားဝှက်" @@ -439,27 +439,27 @@ msgstr "ဖျက်မည်" msgid "share" msgstr "ဝေမျှမည်" -#: js/share.js:409 js/share.js:652 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "စကားဝှက်ဖြင့်ကာကွယ်ထားသည်" -#: js/share.js:665 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:677 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "" -#: js/share.js:692 +#: js/share.js:694 msgid "Sending ..." msgstr "" -#: js/share.js:703 +#: js/share.js:705 msgid "Email sent" msgstr "" -#: js/share.js:727 +#: js/share.js:729 msgid "Warning" msgstr "" @@ -499,7 +499,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "အီးမေးလ်မှတစ်ဆင့် သင်၏စကားဝှက်ကို ပြန်ဖော်ရန်အတွက် Link တစ်ခုလက်ခံရရှိပါလိမ့်မယ်။" #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "သုံးစွဲသူအမည်" @@ -704,19 +704,27 @@ msgstr "" msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "သင်၏စကားဝှက်ပျောက်သွားပြီလား။" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "မှတ်မိစေသည်" -#: templates/login.php:40 +#: templates/login.php:46 msgid "Log in" msgstr "ဝင်ရောက်ရန်" -#: templates/login.php:46 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "" diff --git a/l10n/nb_NO/core.po b/l10n/nb_NO/core.po index 742669f8c4..0710f65509 100644 --- a/l10n/nb_NO/core.po +++ b/l10n/nb_NO/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:30+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -321,7 +321,7 @@ msgstr "" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:665 js/share.js:677 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "Feil" @@ -341,7 +341,7 @@ msgstr "Delt" msgid "Share" msgstr "Del" -#: js/share.js:132 js/share.js:705 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Feil under deling" @@ -373,7 +373,7 @@ msgstr "Del med link" msgid "Password protect" msgstr "Passordbeskyttet" -#: js/share.js:194 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Passord" @@ -445,27 +445,27 @@ msgstr "slett" msgid "share" msgstr "del" -#: js/share.js:409 js/share.js:652 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "Passordbeskyttet" -#: js/share.js:665 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:677 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "Kan ikke sette utløpsdato" -#: js/share.js:692 +#: js/share.js:694 msgid "Sending ..." msgstr "Sender..." -#: js/share.js:703 +#: js/share.js:705 msgid "Email sent" msgstr "E-post sendt" -#: js/share.js:727 +#: js/share.js:729 msgid "Warning" msgstr "Advarsel" @@ -505,7 +505,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "Du burde motta detaljer om å tilbakestille passordet ditt via epost." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "Brukernavn" @@ -710,19 +710,27 @@ msgstr "Hvis du ikke har endret passordet ditt nylig kan kontoen din være kompr msgid "Please change your password to secure your account again." msgstr "Vennligst skift passord for å gjøre kontoen din sikker igjen." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "Mistet passordet ditt?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "husk" -#: templates/login.php:40 +#: templates/login.php:46 msgid "Log in" msgstr "Logg inn" -#: templates/login.php:46 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "" diff --git a/l10n/ne/core.po b/l10n/ne/core.po index f3b245682f..7fa6ab1c0b 100644 --- a/l10n/ne/core.po +++ b/l10n/ne/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:11+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot \n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" @@ -320,7 +320,7 @@ msgstr "" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:665 js/share.js:677 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "" @@ -340,7 +340,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:132 js/share.js:705 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "" @@ -372,7 +372,7 @@ msgstr "" msgid "Password protect" msgstr "" -#: js/share.js:194 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "" @@ -444,27 +444,27 @@ msgstr "" msgid "share" msgstr "" -#: js/share.js:409 js/share.js:652 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "" -#: js/share.js:665 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:677 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "" -#: js/share.js:692 +#: js/share.js:694 msgid "Sending ..." msgstr "" -#: js/share.js:703 +#: js/share.js:705 msgid "Email sent" msgstr "" -#: js/share.js:727 +#: js/share.js:729 msgid "Warning" msgstr "" @@ -504,7 +504,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "" #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "" @@ -709,19 +709,27 @@ msgstr "" msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "" -#: templates/login.php:40 +#: templates/login.php:46 msgid "Log in" msgstr "" -#: templates/login.php:46 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "" diff --git a/l10n/nl/core.po b/l10n/nl/core.po index fe8aa55429..515299619c 100644 --- a/l10n/nl/core.po +++ b/l10n/nl/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:30+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -323,7 +323,7 @@ msgstr "Het object type is niet gespecificeerd." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:665 js/share.js:677 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "Fout" @@ -343,7 +343,7 @@ msgstr "Gedeeld" msgid "Share" msgstr "Delen" -#: js/share.js:132 js/share.js:705 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Fout tijdens het delen" @@ -375,7 +375,7 @@ msgstr "Deel met link" msgid "Password protect" msgstr "Wachtwoord beveiligd" -#: js/share.js:194 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Wachtwoord" @@ -447,27 +447,27 @@ msgstr "verwijderen" msgid "share" msgstr "deel" -#: js/share.js:409 js/share.js:652 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "Wachtwoord beveiligd" -#: js/share.js:665 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "Fout tijdens het verwijderen van de verval datum" -#: js/share.js:677 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "Fout tijdens het instellen van de vervaldatum" -#: js/share.js:692 +#: js/share.js:694 msgid "Sending ..." msgstr "Versturen ..." -#: js/share.js:703 +#: js/share.js:705 msgid "Email sent" msgstr "E-mail verzonden" -#: js/share.js:727 +#: js/share.js:729 msgid "Warning" msgstr "Waarschuwing" @@ -507,7 +507,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "Je ontvangt een link om je wachtwoord opnieuw in te stellen via e-mail." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "Gebruikersnaam" @@ -712,19 +712,27 @@ msgstr "Als je je wachtwoord niet onlangs heeft aangepast, kan je account overge msgid "Please change your password to secure your account again." msgstr "Wijzig je wachtwoord zodat je account weer beveiligd is." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "Wachtwoord vergeten?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "onthoud gegevens" -#: templates/login.php:40 +#: templates/login.php:46 msgid "Log in" msgstr "Meld je aan" -#: templates/login.php:46 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "Alternatieve inlogs" diff --git a/l10n/nn_NO/core.po b/l10n/nn_NO/core.po index 085e1a385b..bc6f9b3cc8 100644 --- a/l10n/nn_NO/core.po +++ b/l10n/nn_NO/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:30+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -323,7 +323,7 @@ msgstr "Objekttypen er ikkje spesifisert." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:665 js/share.js:677 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "Feil" @@ -343,7 +343,7 @@ msgstr "Delt" msgid "Share" msgstr "Del" -#: js/share.js:132 js/share.js:705 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Feil ved deling" @@ -375,7 +375,7 @@ msgstr "Del med lenkje" msgid "Password protect" msgstr "Passordvern" -#: js/share.js:194 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Passord" @@ -447,27 +447,27 @@ msgstr "slett" msgid "share" msgstr "del" -#: js/share.js:409 js/share.js:652 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "Passordverna" -#: js/share.js:665 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "Klarte ikkje fjerna utløpsdato" -#: js/share.js:677 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "Klarte ikkje setja utløpsdato" -#: js/share.js:692 +#: js/share.js:694 msgid "Sending ..." msgstr "Sender …" -#: js/share.js:703 +#: js/share.js:705 msgid "Email sent" msgstr "E-post sendt" -#: js/share.js:727 +#: js/share.js:729 msgid "Warning" msgstr "Åtvaring" @@ -507,7 +507,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "Du vil få ein e-post med ei lenkje for å nullstilla passordet." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "Brukarnamn" @@ -712,19 +712,27 @@ msgstr "Viss du ikkje endra passordet ditt nyleg, så kan kontoen din vera kompr msgid "Please change your password to secure your account again." msgstr "Ver venleg og endra passordet for å gjera kontoen din trygg igjen." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "Gløymt passordet?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "hugs" -#: templates/login.php:40 +#: templates/login.php:46 msgid "Log in" msgstr "Logg inn" -#: templates/login.php:46 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "Alternative innloggingar" diff --git a/l10n/nqo/core.po b/l10n/nqo/core.po index 1f88b512be..7eec2a16a1 100644 --- a/l10n/nqo/core.po +++ b/l10n/nqo/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:11+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot \n" "Language-Team: N'ko (http://www.transifex.com/projects/p/owncloud/language/nqo/)\n" "MIME-Version: 1.0\n" @@ -315,7 +315,7 @@ msgstr "" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:665 js/share.js:677 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "" @@ -335,7 +335,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:132 js/share.js:705 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "" @@ -367,7 +367,7 @@ msgstr "" msgid "Password protect" msgstr "" -#: js/share.js:194 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "" @@ -439,27 +439,27 @@ msgstr "" msgid "share" msgstr "" -#: js/share.js:409 js/share.js:652 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "" -#: js/share.js:665 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:677 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "" -#: js/share.js:692 +#: js/share.js:694 msgid "Sending ..." msgstr "" -#: js/share.js:703 +#: js/share.js:705 msgid "Email sent" msgstr "" -#: js/share.js:727 +#: js/share.js:729 msgid "Warning" msgstr "" @@ -499,7 +499,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "" #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "" @@ -704,19 +704,27 @@ msgstr "" msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "" -#: templates/login.php:40 +#: templates/login.php:46 msgid "Log in" msgstr "" -#: templates/login.php:46 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "" diff --git a/l10n/oc/core.po b/l10n/oc/core.po index fb6cba7ca6..d30c1296b4 100644 --- a/l10n/oc/core.po +++ b/l10n/oc/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:11+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -320,7 +320,7 @@ msgstr "" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:665 js/share.js:677 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "Error" @@ -340,7 +340,7 @@ msgstr "" msgid "Share" msgstr "Parteja" -#: js/share.js:132 js/share.js:705 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Error al partejar" @@ -372,7 +372,7 @@ msgstr "Parteja amb lo ligam" msgid "Password protect" msgstr "Parat per senhal" -#: js/share.js:194 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Senhal" @@ -444,27 +444,27 @@ msgstr "escafa" msgid "share" msgstr "parteja" -#: js/share.js:409 js/share.js:652 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "Parat per senhal" -#: js/share.js:665 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "Error al metre de la data d'expiracion" -#: js/share.js:677 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "Error setting expiration date" -#: js/share.js:692 +#: js/share.js:694 msgid "Sending ..." msgstr "" -#: js/share.js:703 +#: js/share.js:705 msgid "Email sent" msgstr "" -#: js/share.js:727 +#: js/share.js:729 msgid "Warning" msgstr "" @@ -504,7 +504,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "Reçaupràs un ligam per tornar botar ton senhal via corrièl." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "Non d'usancièr" @@ -709,19 +709,27 @@ msgstr "" msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "L'as perdut lo senhal ?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "bremba-te" -#: templates/login.php:40 +#: templates/login.php:46 msgid "Log in" msgstr "Dintrada" -#: templates/login.php:46 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "" diff --git a/l10n/pa/core.po b/l10n/pa/core.po index 0550db2c49..fb84b14f27 100644 --- a/l10n/pa/core.po +++ b/l10n/pa/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:31+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot \n" "Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/owncloud/language/pa/)\n" "MIME-Version: 1.0\n" @@ -321,7 +321,7 @@ msgstr "" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:665 js/share.js:677 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "ਗਲ" @@ -341,7 +341,7 @@ msgstr "" msgid "Share" msgstr "ਸਾਂਝਾ ਕਰੋ" -#: js/share.js:132 js/share.js:705 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "" @@ -373,7 +373,7 @@ msgstr "" msgid "Password protect" msgstr "" -#: js/share.js:194 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "ਪਾਸਵਰ" @@ -445,27 +445,27 @@ msgstr "" msgid "share" msgstr "" -#: js/share.js:409 js/share.js:652 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "" -#: js/share.js:665 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:677 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "" -#: js/share.js:692 +#: js/share.js:694 msgid "Sending ..." msgstr "" -#: js/share.js:703 +#: js/share.js:705 msgid "Email sent" msgstr "" -#: js/share.js:727 +#: js/share.js:729 msgid "Warning" msgstr "ਚੇਤਾਵਨੀ" @@ -505,7 +505,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "" #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "ਯੂਜ਼ਰ-ਨਾਂ" @@ -710,19 +710,27 @@ msgstr "" msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "" -#: templates/login.php:40 +#: templates/login.php:46 msgid "Log in" msgstr "" -#: templates/login.php:46 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "" diff --git a/l10n/pl/core.po b/l10n/pl/core.po index 19427c791c..fe247fbe19 100644 --- a/l10n/pl/core.po +++ b/l10n/pl/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:30+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -327,7 +327,7 @@ msgstr "Nie określono typu obiektu." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:665 js/share.js:677 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "Błąd" @@ -347,7 +347,7 @@ msgstr "Udostępniono" msgid "Share" msgstr "Udostępnij" -#: js/share.js:132 js/share.js:705 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Błąd podczas współdzielenia" @@ -379,7 +379,7 @@ msgstr "Współdziel wraz z odnośnikiem" msgid "Password protect" msgstr "Zabezpiecz hasłem" -#: js/share.js:194 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Hasło" @@ -451,27 +451,27 @@ msgstr "usuń" msgid "share" msgstr "współdziel" -#: js/share.js:409 js/share.js:652 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "Zabezpieczone hasłem" -#: js/share.js:665 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "Błąd podczas usuwania daty wygaśnięcia" -#: js/share.js:677 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "Błąd podczas ustawiania daty wygaśnięcia" -#: js/share.js:692 +#: js/share.js:694 msgid "Sending ..." msgstr "Wysyłanie..." -#: js/share.js:703 +#: js/share.js:705 msgid "Email sent" msgstr "E-mail wysłany" -#: js/share.js:727 +#: js/share.js:729 msgid "Warning" msgstr "Ostrzeżenie" @@ -511,7 +511,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "Odnośnik służący do resetowania hasła zostanie wysłany na adres e-mail." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "Nazwa użytkownika" @@ -716,19 +716,27 @@ msgstr "Jeśli hasło było dawno niezmieniane, twoje konto może być zagrożon msgid "Please change your password to secure your account again." msgstr "Zmień swoje hasło, aby ponownie zabezpieczyć swoje konto." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "Nie pamiętasz hasła?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "pamiętaj" -#: templates/login.php:40 +#: templates/login.php:46 msgid "Log in" msgstr "Zaloguj" -#: templates/login.php:46 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "Alternatywne loginy" diff --git a/l10n/pt_BR/core.po b/l10n/pt_BR/core.po index 25cee56e61..50ddb1288b 100644 --- a/l10n/pt_BR/core.po +++ b/l10n/pt_BR/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 18:00+0000\n" -"Last-Translator: Flávio Veras \n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"Last-Translator: I Robot \n" "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" @@ -322,7 +322,7 @@ msgstr "O tipo de objeto não foi especificado." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:665 js/share.js:677 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "Erro" @@ -342,7 +342,7 @@ msgstr "Compartilhados" msgid "Share" msgstr "Compartilhar" -#: js/share.js:132 js/share.js:705 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Erro ao compartilhar" @@ -374,7 +374,7 @@ msgstr "Compartilhar com link" msgid "Password protect" msgstr "Proteger com senha" -#: js/share.js:194 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Senha" @@ -446,27 +446,27 @@ msgstr "remover" msgid "share" msgstr "compartilhar" -#: js/share.js:409 js/share.js:652 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "Protegido com senha" -#: js/share.js:665 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "Erro ao remover data de expiração" -#: js/share.js:677 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "Erro ao definir data de expiração" -#: js/share.js:692 +#: js/share.js:694 msgid "Sending ..." msgstr "Enviando ..." -#: js/share.js:703 +#: js/share.js:705 msgid "Email sent" msgstr "E-mail enviado" -#: js/share.js:727 +#: js/share.js:729 msgid "Warning" msgstr "Aviso" @@ -506,7 +506,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "Você receberá um link para redefinir sua senha por e-mail." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "Nome de usuário" @@ -711,19 +711,27 @@ msgstr "Se você não mudou a sua senha recentemente, a sua conta pode estar com msgid "Please change your password to secure your account again." msgstr "Por favor troque sua senha para tornar sua conta segura novamente." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "Esqueceu sua senha?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "lembrar" -#: templates/login.php:40 +#: templates/login.php:46 msgid "Log in" msgstr "Fazer login" -#: templates/login.php:46 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "Logins alternativos" diff --git a/l10n/pt_BR/files_encryption.po b/l10n/pt_BR/files_encryption.po index 81c0e4715e..58972c4590 100644 --- a/l10n/pt_BR/files_encryption.po +++ b/l10n/pt_BR/files_encryption.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-06 23:07+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-10-07 12:14-0400\n" +"PO-Revision-Date: 2013-10-07 10:00+0000\n" +"Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -61,7 +61,7 @@ msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." -msgstr "" +msgstr "Aplicativo de criptografia não foi inicializado! Talvez o aplicativo de criptografia tenha sido reativado durante essa sessão. Por favor, tente fazer logoff e login novamente para inicializar o aplicativo de criptografia." #: files/error.php:12 msgid "" @@ -92,7 +92,7 @@ msgstr "Salvando..." #: templates/invalid_private_key.php:8 msgid "Go directly to your " -msgstr "" +msgstr "Ir diretamente para o seu" #: templates/invalid_private_key.php:8 msgid "personal settings" @@ -113,7 +113,7 @@ msgstr "Senha da chave de recuperação" #: templates/settings-admin.php:17 msgid "Repeat Recovery key password" -msgstr "" +msgstr "Repita Recuperação de senha da chave" #: templates/settings-admin.php:24 templates/settings-personal.php:54 msgid "Enabled" @@ -137,7 +137,7 @@ msgstr "Nova senha da chave de recuperação" #: templates/settings-admin.php:56 msgid "Repeat New Recovery key password" -msgstr "" +msgstr "Repita Nova senha da chave de recuperação" #: templates/settings-admin.php:61 msgid "Change Password" diff --git a/l10n/pt_PT/core.po b/l10n/pt_PT/core.po index 140ca75e36..f0d8523639 100644 --- a/l10n/pt_PT/core.po +++ b/l10n/pt_PT/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:30+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -325,7 +325,7 @@ msgstr "O tipo de objecto não foi especificado" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:665 js/share.js:677 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "Erro" @@ -345,7 +345,7 @@ msgstr "Partilhado" msgid "Share" msgstr "Partilhar" -#: js/share.js:132 js/share.js:705 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Erro ao partilhar" @@ -377,7 +377,7 @@ msgstr "Partilhar com link" msgid "Password protect" msgstr "Proteger com palavra-passe" -#: js/share.js:194 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Password" @@ -449,27 +449,27 @@ msgstr "apagar" msgid "share" msgstr "partilhar" -#: js/share.js:409 js/share.js:652 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "Protegido com palavra-passe" -#: js/share.js:665 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "Erro ao retirar a data de expiração" -#: js/share.js:677 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "Erro ao aplicar a data de expiração" -#: js/share.js:692 +#: js/share.js:694 msgid "Sending ..." msgstr "A Enviar..." -#: js/share.js:703 +#: js/share.js:705 msgid "Email sent" msgstr "E-mail enviado" -#: js/share.js:727 +#: js/share.js:729 msgid "Warning" msgstr "Aviso" @@ -509,7 +509,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "Vai receber um endereço para repor a sua password" #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "Nome de utilizador" @@ -714,19 +714,27 @@ msgstr "Se não mudou a sua palavra-passe recentemente, a sua conta pode ter sid msgid "Please change your password to secure your account again." msgstr "Por favor mude a sua palavra-passe para assegurar a sua conta de novo." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "Esqueceu-se da sua password?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "lembrar" -#: templates/login.php:40 +#: templates/login.php:46 msgid "Log in" msgstr "Entrar" -#: templates/login.php:46 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "Contas de acesso alternativas" diff --git a/l10n/ro/core.po b/l10n/ro/core.po index f926d7d859..2ec3d7e662 100644 --- a/l10n/ro/core.po +++ b/l10n/ro/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:30+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -329,7 +329,7 @@ msgstr "Tipul obiectului nu este specificat." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:665 js/share.js:677 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "Eroare" @@ -349,7 +349,7 @@ msgstr "Partajat" msgid "Share" msgstr "Partajează" -#: js/share.js:132 js/share.js:705 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Eroare la partajare" @@ -381,7 +381,7 @@ msgstr "Partajare cu legătură" msgid "Password protect" msgstr "Protejare cu parolă" -#: js/share.js:194 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Parolă" @@ -453,27 +453,27 @@ msgstr "ștergere" msgid "share" msgstr "partajare" -#: js/share.js:409 js/share.js:652 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "Protejare cu parolă" -#: js/share.js:665 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "Eroare la anularea datei de expirare" -#: js/share.js:677 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "Eroare la specificarea datei de expirare" -#: js/share.js:692 +#: js/share.js:694 msgid "Sending ..." msgstr "Se expediază..." -#: js/share.js:703 +#: js/share.js:705 msgid "Email sent" msgstr "Mesajul a fost expediat" -#: js/share.js:727 +#: js/share.js:729 msgid "Warning" msgstr "Atenție" @@ -513,7 +513,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "Vei primi un mesaj prin care vei putea reseta parola via email." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "Nume utilizator" @@ -718,19 +718,27 @@ msgstr "Dacă nu ți-ai schimbat parola recent, contul tău ar putea fi compromi msgid "Please change your password to secure your account again." msgstr "Te rog schimbă-ți parola pentru a-ți securiza din nou contul." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "Ai uitat parola?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "amintește" -#: templates/login.php:40 +#: templates/login.php:46 msgid "Log in" msgstr "Autentificare" -#: templates/login.php:46 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "Conectări alternative" diff --git a/l10n/ru/core.po b/l10n/ru/core.po index d3ff4ab2aa..321b632ae0 100644 --- a/l10n/ru/core.po +++ b/l10n/ru/core.po @@ -19,8 +19,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:30+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -337,7 +337,7 @@ msgstr "Тип объекта не указан" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:665 js/share.js:677 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "Ошибка" @@ -357,7 +357,7 @@ msgstr "Общие" msgid "Share" msgstr "Открыть доступ" -#: js/share.js:132 js/share.js:705 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Ошибка при открытии доступа" @@ -389,7 +389,7 @@ msgstr "Поделиться с ссылкой" msgid "Password protect" msgstr "Защитить паролем" -#: js/share.js:194 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Пароль" @@ -461,27 +461,27 @@ msgstr "удалить" msgid "share" msgstr "открыть доступ" -#: js/share.js:409 js/share.js:652 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "Защищено паролем" -#: js/share.js:665 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "Ошибка при отмене срока доступа" -#: js/share.js:677 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "Ошибка при установке срока доступа" -#: js/share.js:692 +#: js/share.js:694 msgid "Sending ..." msgstr "Отправляется ..." -#: js/share.js:703 +#: js/share.js:705 msgid "Email sent" msgstr "Письмо отправлено" -#: js/share.js:727 +#: js/share.js:729 msgid "Warning" msgstr "Предупреждение" @@ -521,7 +521,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "На ваш адрес Email выслана ссылка для сброса пароля." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "Имя пользователя" @@ -726,19 +726,27 @@ msgstr "Если Вы недавно не меняли свой пароль, т msgid "Please change your password to secure your account again." msgstr "Пожалуйста, смените пароль, чтобы обезопасить свою учетную запись." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "Забыли пароль?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "запомнить" -#: templates/login.php:40 +#: templates/login.php:46 msgid "Log in" msgstr "Войти" -#: templates/login.php:46 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "Альтернативные имена пользователя" diff --git a/l10n/si_LK/core.po b/l10n/si_LK/core.po index 132a607f50..97b9ea909e 100644 --- a/l10n/si_LK/core.po +++ b/l10n/si_LK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:30+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -320,7 +320,7 @@ msgstr "" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:665 js/share.js:677 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "දෝෂයක්" @@ -340,7 +340,7 @@ msgstr "" msgid "Share" msgstr "බෙදා හදා ගන්න" -#: js/share.js:132 js/share.js:705 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "" @@ -372,7 +372,7 @@ msgstr "යොමුවක් මඟින් බෙදාගන්න" msgid "Password protect" msgstr "මුර පදයකින් ආරක්ශාකරන්න" -#: js/share.js:194 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "මුර පදය" @@ -444,27 +444,27 @@ msgstr "මකන්න" msgid "share" msgstr "බෙදාහදාගන්න" -#: js/share.js:409 js/share.js:652 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "මුර පදයකින් ආරක්ශාකර ඇත" -#: js/share.js:665 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "කල් ඉකුත් දිනය ඉවත් කිරීමේ දෝෂයක්" -#: js/share.js:677 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "කල් ඉකුත් දිනය ස්ථාපනය කිරීමේ දෝෂයක්" -#: js/share.js:692 +#: js/share.js:694 msgid "Sending ..." msgstr "" -#: js/share.js:703 +#: js/share.js:705 msgid "Email sent" msgstr "" -#: js/share.js:727 +#: js/share.js:729 msgid "Warning" msgstr "අවවාදය" @@ -504,7 +504,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "ඔබගේ මුරපදය ප්‍රත්‍යාරම්භ කිරීම සඳහා යොමුව විද්‍යුත් තැපෑලෙන් ලැබෙනු ඇත" #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "පරිශීලක නම" @@ -709,19 +709,27 @@ msgstr "" msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "මුරපදය අමතකද?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "මතක තබාගන්න" -#: templates/login.php:40 +#: templates/login.php:46 msgid "Log in" msgstr "ප්‍රවේශවන්න" -#: templates/login.php:46 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "" diff --git a/l10n/sk/core.po b/l10n/sk/core.po index 3638e7e767..caf14391ec 100644 --- a/l10n/sk/core.po +++ b/l10n/sk/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:11+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" @@ -325,7 +325,7 @@ msgstr "" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:665 js/share.js:677 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "" @@ -345,7 +345,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:132 js/share.js:705 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "" @@ -377,7 +377,7 @@ msgstr "" msgid "Password protect" msgstr "" -#: js/share.js:194 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "" @@ -449,27 +449,27 @@ msgstr "" msgid "share" msgstr "" -#: js/share.js:409 js/share.js:652 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "" -#: js/share.js:665 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:677 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "" -#: js/share.js:692 +#: js/share.js:694 msgid "Sending ..." msgstr "" -#: js/share.js:703 +#: js/share.js:705 msgid "Email sent" msgstr "" -#: js/share.js:727 +#: js/share.js:729 msgid "Warning" msgstr "" @@ -509,7 +509,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "" #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "" @@ -714,19 +714,27 @@ msgstr "" msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "" -#: templates/login.php:40 +#: templates/login.php:46 msgid "Log in" msgstr "" -#: templates/login.php:46 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "" diff --git a/l10n/sk_SK/core.po b/l10n/sk_SK/core.po index a2ea5a4fb8..4833b4b058 100644 --- a/l10n/sk_SK/core.po +++ b/l10n/sk_SK/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:30+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -327,7 +327,7 @@ msgstr "Nešpecifikovaný typ objektu." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:665 js/share.js:677 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "Chyba" @@ -347,7 +347,7 @@ msgstr "Zdieľané" msgid "Share" msgstr "Zdieľať" -#: js/share.js:132 js/share.js:705 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Chyba počas zdieľania" @@ -379,7 +379,7 @@ msgstr "Zdieľať cez odkaz" msgid "Password protect" msgstr "Chrániť heslom" -#: js/share.js:194 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Heslo" @@ -451,27 +451,27 @@ msgstr "vymazať" msgid "share" msgstr "zdieľať" -#: js/share.js:409 js/share.js:652 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "Chránené heslom" -#: js/share.js:665 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "Chyba pri odstraňovaní dátumu expirácie" -#: js/share.js:677 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "Chyba pri nastavení dátumu expirácie" -#: js/share.js:692 +#: js/share.js:694 msgid "Sending ..." msgstr "Odosielam ..." -#: js/share.js:703 +#: js/share.js:705 msgid "Email sent" msgstr "Email odoslaný" -#: js/share.js:727 +#: js/share.js:729 msgid "Warning" msgstr "Varovanie" @@ -511,7 +511,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "Odkaz pre obnovenie hesla obdržíte e-mailom." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "Meno používateľa" @@ -716,19 +716,27 @@ msgstr "V nedávnej dobe ste nezmenili svoje heslo, Váš účet môže byť kom msgid "Please change your password to secure your account again." msgstr "Prosím, zmeňte svoje heslo pre opätovné zabezpečenie Vášho účtu" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "Zabudli ste heslo?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "zapamätať" -#: templates/login.php:40 +#: templates/login.php:46 msgid "Log in" msgstr "Prihlásiť sa" -#: templates/login.php:46 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "Alternatívne prihlasovanie" diff --git a/l10n/sl/core.po b/l10n/sl/core.po index 59fcc52a00..6b2374ddc6 100644 --- a/l10n/sl/core.po +++ b/l10n/sl/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:30+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -332,7 +332,7 @@ msgstr "Vrsta predmeta ni podana." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:665 js/share.js:677 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "Napaka" @@ -352,7 +352,7 @@ msgstr "V souporabi" msgid "Share" msgstr "Souporaba" -#: js/share.js:132 js/share.js:705 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Napaka med souporabo" @@ -384,7 +384,7 @@ msgstr "Omogoči souporabo preko povezave" msgid "Password protect" msgstr "Zaščiti z geslom" -#: js/share.js:194 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Geslo" @@ -456,27 +456,27 @@ msgstr "izbriši" msgid "share" msgstr "določi souporabo" -#: js/share.js:409 js/share.js:652 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "Zaščiteno z geslom" -#: js/share.js:665 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "Napaka brisanja datuma preteka" -#: js/share.js:677 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "Napaka med nastavljanjem datuma preteka" -#: js/share.js:692 +#: js/share.js:694 msgid "Sending ..." msgstr "Pošiljanje ..." -#: js/share.js:703 +#: js/share.js:705 msgid "Email sent" msgstr "Elektronska pošta je poslana" -#: js/share.js:727 +#: js/share.js:729 msgid "Warning" msgstr "Opozorilo" @@ -516,7 +516,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "Na elektronski naslov boste prejeli povezavo za ponovno nastavitev gesla." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "Uporabniško ime" @@ -721,19 +721,27 @@ msgstr "V primeru, da gesla za dostop že nekaj časa niste spremenili, je raču msgid "Please change your password to secure your account again." msgstr "Spremenite geslo za izboljšanje zaščite računa." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "Ali ste pozabili geslo?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "zapomni si" -#: templates/login.php:40 +#: templates/login.php:46 msgid "Log in" msgstr "Prijava" -#: templates/login.php:46 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "Druge prijavne možnosti" diff --git a/l10n/sq/core.po b/l10n/sq/core.po index 14e52efa76..194c8b6eb0 100644 --- a/l10n/sq/core.po +++ b/l10n/sq/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:11+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -322,7 +322,7 @@ msgstr "Nuk është specifikuar tipi i objektit." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:665 js/share.js:677 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "Veprim i gabuar" @@ -342,7 +342,7 @@ msgstr "Ndarë" msgid "Share" msgstr "Nda" -#: js/share.js:132 js/share.js:705 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Veprim i gabuar gjatë ndarjes" @@ -374,7 +374,7 @@ msgstr "Nda me lidhje" msgid "Password protect" msgstr "Mbro me kod" -#: js/share.js:194 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Kodi" @@ -446,27 +446,27 @@ msgstr "elimino" msgid "share" msgstr "nda" -#: js/share.js:409 js/share.js:652 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "Mbrojtur me kod" -#: js/share.js:665 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "Veprim i gabuar gjatë heqjes së datës së përfundimit" -#: js/share.js:677 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "Veprim i gabuar gjatë caktimit të datës së përfundimit" -#: js/share.js:692 +#: js/share.js:694 msgid "Sending ..." msgstr "Duke dërguar..." -#: js/share.js:703 +#: js/share.js:705 msgid "Email sent" msgstr "Email-i u dërgua" -#: js/share.js:727 +#: js/share.js:729 msgid "Warning" msgstr "" @@ -506,7 +506,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "Do t'iu vijë një email që përmban një lidhje për ta rivendosur kodin." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "Përdoruesi" @@ -711,19 +711,27 @@ msgstr "Nqse nuk keni ndryshuar kodin kohët e fundit, llogaria juaj mund të je msgid "Please change your password to secure your account again." msgstr "Ju lutemi, ndryshoni kodin për ta siguruar përsëri llogarinë tuaj." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "Ke humbur kodin?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "kujto" -#: templates/login.php:40 +#: templates/login.php:46 msgid "Log in" msgstr "Hyrje" -#: templates/login.php:46 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "Hyrje alternative" diff --git a/l10n/sr/core.po b/l10n/sr/core.po index 5f083615e3..5981837809 100644 --- a/l10n/sr/core.po +++ b/l10n/sr/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:30+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -325,7 +325,7 @@ msgstr "Врста објекта није подешена." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:665 js/share.js:677 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "Грешка" @@ -345,7 +345,7 @@ msgstr "" msgid "Share" msgstr "Дели" -#: js/share.js:132 js/share.js:705 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Грешка у дељењу" @@ -377,7 +377,7 @@ msgstr "Подели линк" msgid "Password protect" msgstr "Заштићено лозинком" -#: js/share.js:194 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Лозинка" @@ -449,27 +449,27 @@ msgstr "обриши" msgid "share" msgstr "подели" -#: js/share.js:409 js/share.js:652 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "Заштићено лозинком" -#: js/share.js:665 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "Грешка код поништавања датума истека" -#: js/share.js:677 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "Грешка код постављања датума истека" -#: js/share.js:692 +#: js/share.js:694 msgid "Sending ..." msgstr "Шаљем..." -#: js/share.js:703 +#: js/share.js:705 msgid "Email sent" msgstr "Порука је послата" -#: js/share.js:727 +#: js/share.js:729 msgid "Warning" msgstr "Упозорење" @@ -509,7 +509,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "Добићете везу за ресетовање лозинке путем е-поште." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "Корисничко име" @@ -714,19 +714,27 @@ msgstr "Ако ускоро не промените лозинку ваш нал msgid "Please change your password to secure your account again." msgstr "Промените лозинку да бисте обезбедили налог." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "Изгубили сте лозинку?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "упамти" -#: templates/login.php:40 +#: templates/login.php:46 msgid "Log in" msgstr "Пријава" -#: templates/login.php:46 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "" diff --git a/l10n/sr@latin/core.po b/l10n/sr@latin/core.po index 24bc1b3347..4ed4e7b987 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: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:11+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -326,7 +326,7 @@ msgstr "Tip objekta nije zadan." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:665 js/share.js:677 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "Greška" @@ -346,7 +346,7 @@ msgstr "Deljeno" msgid "Share" msgstr "Podeli" -#: js/share.js:132 js/share.js:705 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Greška pri deljenju" @@ -378,7 +378,7 @@ msgstr "Podeli koristei link" msgid "Password protect" msgstr "Zaštita lozinkom" -#: js/share.js:194 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Lozinka" @@ -450,27 +450,27 @@ msgstr "brisanje" msgid "share" msgstr "deljenje" -#: js/share.js:409 js/share.js:652 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "Zaštćeno lozinkom" -#: js/share.js:665 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "Greška u uklanjanju datuma isteka" -#: js/share.js:677 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "Greška u postavljanju datuma isteka" -#: js/share.js:692 +#: js/share.js:694 msgid "Sending ..." msgstr "Slanje..." -#: js/share.js:703 +#: js/share.js:705 msgid "Email sent" msgstr "Email poslat" -#: js/share.js:727 +#: js/share.js:729 msgid "Warning" msgstr "" @@ -510,7 +510,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "Dobićete vezu za resetovanje lozinke putem e-pošte." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "Korisničko ime" @@ -715,19 +715,27 @@ msgstr "" msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "Izgubili ste lozinku?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "upamti" -#: templates/login.php:40 +#: templates/login.php:46 msgid "Log in" msgstr "" -#: templates/login.php:46 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "" diff --git a/l10n/sv/core.po b/l10n/sv/core.po index adcde6fe3b..4a8fddec11 100644 --- a/l10n/sv/core.po +++ b/l10n/sv/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:30+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -325,7 +325,7 @@ msgstr "Objekttypen är inte specificerad." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:665 js/share.js:677 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "Fel" @@ -345,7 +345,7 @@ msgstr "Delad" msgid "Share" msgstr "Dela" -#: js/share.js:132 js/share.js:705 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Fel vid delning" @@ -377,7 +377,7 @@ msgstr "Delad med länk" msgid "Password protect" msgstr "Lösenordsskydda" -#: js/share.js:194 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Lösenord" @@ -449,27 +449,27 @@ msgstr "radera" msgid "share" msgstr "dela" -#: js/share.js:409 js/share.js:652 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "Lösenordsskyddad" -#: js/share.js:665 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "Fel vid borttagning av utgångsdatum" -#: js/share.js:677 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "Fel vid sättning av utgångsdatum" -#: js/share.js:692 +#: js/share.js:694 msgid "Sending ..." msgstr "Skickar ..." -#: js/share.js:703 +#: js/share.js:705 msgid "Email sent" msgstr "E-post skickat" -#: js/share.js:727 +#: js/share.js:729 msgid "Warning" msgstr "Varning" @@ -509,7 +509,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "Du får en länk att återställa ditt lösenord via e-post." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "Användarnamn" @@ -714,19 +714,27 @@ msgstr "Om du inte har ändrat ditt lösenord nyligen så kan ditt konto vara ma msgid "Please change your password to secure your account again." msgstr "Ändra genast lösenord för att säkra ditt konto." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "Glömt ditt lösenord?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "kom ihåg" -#: templates/login.php:40 +#: templates/login.php:46 msgid "Log in" msgstr "Logga in" -#: templates/login.php:46 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "Alternativa inloggningar" diff --git a/l10n/sw_KE/core.po b/l10n/sw_KE/core.po index e3c4f8018e..dceb4c8691 100644 --- a/l10n/sw_KE/core.po +++ b/l10n/sw_KE/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:11+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" @@ -320,7 +320,7 @@ msgstr "" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:665 js/share.js:677 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "" @@ -340,7 +340,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:132 js/share.js:705 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "" @@ -372,7 +372,7 @@ msgstr "" msgid "Password protect" msgstr "" -#: js/share.js:194 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "" @@ -444,27 +444,27 @@ msgstr "" msgid "share" msgstr "" -#: js/share.js:409 js/share.js:652 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "" -#: js/share.js:665 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:677 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "" -#: js/share.js:692 +#: js/share.js:694 msgid "Sending ..." msgstr "" -#: js/share.js:703 +#: js/share.js:705 msgid "Email sent" msgstr "" -#: js/share.js:727 +#: js/share.js:729 msgid "Warning" msgstr "" @@ -504,7 +504,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "" #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "" @@ -709,19 +709,27 @@ msgstr "" msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "" -#: templates/login.php:40 +#: templates/login.php:46 msgid "Log in" msgstr "" -#: templates/login.php:46 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "" diff --git a/l10n/ta_LK/core.po b/l10n/ta_LK/core.po index 69d4c7beb2..1b4795931a 100644 --- a/l10n/ta_LK/core.po +++ b/l10n/ta_LK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:30+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -320,7 +320,7 @@ msgstr "பொருள் வகை குறிப்பிடப்படவ #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:665 js/share.js:677 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "வழு" @@ -340,7 +340,7 @@ msgstr "" msgid "Share" msgstr "பகிர்வு" -#: js/share.js:132 js/share.js:705 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "பகிரும் போதான வழு" @@ -372,7 +372,7 @@ msgstr "இணைப்புடன் பகிர்தல்" msgid "Password protect" msgstr "கடவுச்சொல்லை பாதுகாத்தல்" -#: js/share.js:194 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "கடவுச்சொல்" @@ -444,27 +444,27 @@ msgstr "நீக்குக" msgid "share" msgstr "பகிர்தல்" -#: js/share.js:409 js/share.js:652 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "கடவுச்சொல் பாதுகாக்கப்பட்டது" -#: js/share.js:665 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "காலாவதியாகும் திகதியை குறிப்பிடாமைக்கான வழு" -#: js/share.js:677 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "காலாவதியாகும் திகதியை குறிப்பிடுவதில் வழு" -#: js/share.js:692 +#: js/share.js:694 msgid "Sending ..." msgstr "" -#: js/share.js:703 +#: js/share.js:705 msgid "Email sent" msgstr "" -#: js/share.js:727 +#: js/share.js:729 msgid "Warning" msgstr "எச்சரிக்கை" @@ -504,7 +504,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "நீங்கள் மின்னஞ்சல் மூலம் உங்களுடைய கடவுச்சொல்லை மீளமைப்பதற்கான இணைப்பை பெறுவீர்கள். " #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "பயனாளர் பெயர்" @@ -709,19 +709,27 @@ msgstr "உங்களுடைய கடவுச்சொல்லை அண msgid "Please change your password to secure your account again." msgstr "உங்களுடைய கணக்கை மீண்டும் பாதுகாக்க தயவுசெய்து உங்களுடைய கடவுச்சொல்லை மாற்றவும்." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "உங்கள் கடவுச்சொல்லை தொலைத்துவிட்டீர்களா?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "ஞாபகப்படுத்துக" -#: templates/login.php:40 +#: templates/login.php:46 msgid "Log in" msgstr "புகுபதிகை" -#: templates/login.php:46 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "" diff --git a/l10n/te/core.po b/l10n/te/core.po index f44b287c48..28a4577388 100644 --- a/l10n/te/core.po +++ b/l10n/te/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:11+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -320,7 +320,7 @@ msgstr "" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:665 js/share.js:677 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "పొరపాటు" @@ -340,7 +340,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:132 js/share.js:705 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "" @@ -372,7 +372,7 @@ msgstr "" msgid "Password protect" msgstr "" -#: js/share.js:194 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "సంకేతపదం" @@ -444,27 +444,27 @@ msgstr "తొలగించు" msgid "share" msgstr "" -#: js/share.js:409 js/share.js:652 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "" -#: js/share.js:665 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:677 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "" -#: js/share.js:692 +#: js/share.js:694 msgid "Sending ..." msgstr "" -#: js/share.js:703 +#: js/share.js:705 msgid "Email sent" msgstr "" -#: js/share.js:727 +#: js/share.js:729 msgid "Warning" msgstr "" @@ -504,7 +504,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "" #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "వాడుకరి పేరు" @@ -709,19 +709,27 @@ msgstr "" msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "మీ సంకేతపదం పోయిందా?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "" -#: templates/login.php:40 +#: templates/login.php:46 msgid "Log in" msgstr "" -#: templates/login.php:46 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 0280fddae4..541877435d 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: ownCloud Core 5.0.0\n" +"Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -321,7 +321,7 @@ msgstr "" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:665 js/share.js:677 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "" @@ -341,7 +341,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:132 js/share.js:705 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "" @@ -373,7 +373,7 @@ msgstr "" msgid "Password protect" msgstr "" -#: js/share.js:194 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "" @@ -445,27 +445,27 @@ msgstr "" msgid "share" msgstr "" -#: js/share.js:409 js/share.js:652 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "" -#: js/share.js:665 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:677 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "" -#: js/share.js:692 +#: js/share.js:694 msgid "Sending ..." msgstr "" -#: js/share.js:703 +#: js/share.js:705 msgid "Email sent" msgstr "" -#: js/share.js:727 +#: js/share.js:729 msgid "Warning" msgstr "" @@ -505,7 +505,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "" #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "" @@ -710,19 +710,27 @@ msgstr "" msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "" -#: templates/login.php:40 +#: templates/login.php:46 msgid "Log in" msgstr "" -#: templates/login.php:46 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 9f6058029e..aac13557b5 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: ownCloud Core 5.0.0\n" +"Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"POT-Creation-Date: 2013-10-07 12:14-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -91,36 +91,36 @@ msgstr "" msgid "Files" msgstr "" -#: js/file-upload.js:244 +#: js/file-upload.js:224 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:255 +#: js/file-upload.js:235 msgid "Not enough space available" msgstr "" -#: js/file-upload.js:322 +#: js/file-upload.js:302 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:356 +#: js/file-upload.js:336 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:446 +#: js/file-upload.js:426 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:520 +#: js/file-upload.js:500 msgid "URL cannot be empty." msgstr "" -#: js/file-upload.js:525 lib/app.php:53 +#: js/file-upload.js:505 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 +#: js/file-upload.js:537 js/file-upload.js:553 js/files.js:518 js/files.js:556 msgid "Error" msgstr "" @@ -132,7 +132,7 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:197 +#: js/fileactions.js:184 msgid "Rename" msgstr "" @@ -164,13 +164,13 @@ msgstr "" msgid "undo" msgstr "" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -226,25 +226,25 @@ msgid "" "your personal settings to decrypt your files." msgstr "" -#: js/files.js:305 +#: js/files.js:307 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:516 js/files.js:554 +#: js/files.js:518 js/files.js:556 msgid "Error moving file" msgstr "" -#: js/files.js:567 templates/index.php:59 +#: js/files.js:569 templates/index.php:57 msgid "Name" msgstr "" -#: js/files.js:568 templates/index.php:71 +#: js/files.js:570 templates/index.php:69 msgid "Size" msgstr "" -#: js/files.js:569 templates/index.php:73 +#: js/files.js:571 templates/index.php:71 msgid "Modified" msgstr "" @@ -305,49 +305,49 @@ msgstr "" msgid "From link" msgstr "" -#: templates/index.php:32 +#: templates/index.php:30 msgid "Deleted files" msgstr "" -#: templates/index.php:37 +#: templates/index.php:35 msgid "Cancel upload" msgstr "" -#: templates/index.php:43 +#: templates/index.php:41 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:65 +#: templates/index.php:63 msgid "Download" msgstr "" -#: templates/index.php:78 templates/index.php:79 +#: templates/index.php:76 templates/index.php:77 msgid "Unshare" msgstr "" -#: templates/index.php:84 templates/index.php:85 +#: templates/index.php:82 templates/index.php:83 msgid "Delete" msgstr "" -#: templates/index.php:98 +#: templates/index.php:96 msgid "Upload too large" msgstr "" -#: templates/index.php:100 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:105 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:108 +#: templates/index.php:106 msgid "Current scanning" msgstr "" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index f9c4c80753..9c0e1c7acd 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: ownCloud Core 5.0.0\n" +"Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"POT-Creation-Date: 2013-10-07 12:14-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index 25ae38c103..ccd2902034 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: ownCloud Core 5.0.0\n" +"Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index a9e6278302..89ca241853 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: ownCloud Core 5.0.0\n" +"Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -53,28 +53,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:16 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:19 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:27 templates/public.php:93 msgid "Download" msgstr "" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:44 templates/public.php:47 msgid "Upload" msgstr "" -#: templates/public.php:56 +#: templates/public.php:57 msgid "Cancel upload" msgstr "" -#: templates/public.php:89 +#: templates/public.php:90 msgid "No preview available for" msgstr "" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index 909543a021..71a310eaf0 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: ownCloud Core 5.0.0\n" +"Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 3353d0cab9..c9d3851c6b 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: ownCloud Core 5.0.0\n" +"Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index a65197deb5..43d1f696e2 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: ownCloud Core 5.0.0\n" +"Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"POT-Creation-Date: 2013-10-07 12:17-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/private.pot b/l10n/templates/private.pot index 066618ce98..9eb4e47d7c 100644 --- a/l10n/templates/private.pot +++ b/l10n/templates/private.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: ownCloud Core 5.0.0\n" +"Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"POT-Creation-Date: 2013-10-07 12:17-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 9cfa750026..6403c9cc46 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: ownCloud Core 5.0.0\n" +"Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"POT-Creation-Date: 2013-10-07 12:17-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -180,32 +180,32 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "" -#: js/users.js:277 +#: js/users.js:280 msgid "add group" msgstr "" -#: js/users.js:436 +#: js/users.js:442 msgid "A valid username must be provided" msgstr "" -#: js/users.js:437 js/users.js:443 js/users.js:458 +#: js/users.js:443 js/users.js:449 js/users.js:464 msgid "Error creating user" msgstr "" -#: js/users.js:442 +#: js/users.js:448 msgid "A valid password must be provided" msgstr "" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 6e22c56117..448d4b6c3a 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: ownCloud Core 5.0.0\n" +"Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index b1e4e8fff6..3d3aa1e694 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: ownCloud Core 5.0.0\n" +"Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/th_TH/core.po b/l10n/th_TH/core.po index 50151bd737..ba1a5c7ddb 100644 --- a/l10n/th_TH/core.po +++ b/l10n/th_TH/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:30+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -315,7 +315,7 @@ msgstr "ชนิดของวัตถุยังไม่ได้รับ #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:665 js/share.js:677 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "ข้อผิดพลาด" @@ -335,7 +335,7 @@ msgstr "แชร์แล้ว" msgid "Share" msgstr "แชร์" -#: js/share.js:132 js/share.js:705 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "เกิดข้อผิดพลาดในระหว่างการแชร์ข้อมูล" @@ -367,7 +367,7 @@ msgstr "แชร์ด้วยลิงก์" msgid "Password protect" msgstr "ใส่รหัสผ่านไว้" -#: js/share.js:194 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "รหัสผ่าน" @@ -439,27 +439,27 @@ msgstr "ลบ" msgid "share" msgstr "แชร์" -#: js/share.js:409 js/share.js:652 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "ใส่รหัสผ่านไว้" -#: js/share.js:665 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "เกิดข้อผิดพลาดในการยกเลิกการตั้งค่าวันที่หมดอายุ" -#: js/share.js:677 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "เกิดข้อผิดพลาดในการตั้งค่าวันที่หมดอายุ" -#: js/share.js:692 +#: js/share.js:694 msgid "Sending ..." msgstr "กำลังส่ง..." -#: js/share.js:703 +#: js/share.js:705 msgid "Email sent" msgstr "ส่งอีเมล์แล้ว" -#: js/share.js:727 +#: js/share.js:729 msgid "Warning" msgstr "คำเตือน" @@ -499,7 +499,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "คุณจะได้รับลิงค์เพื่อกำหนดรหัสผ่านใหม่ทางอีเมล์" #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "ชื่อผู้ใช้งาน" @@ -704,19 +704,27 @@ msgstr "หากคุณยังไม่ได้เปลี่ยนรห msgid "Please change your password to secure your account again." msgstr "กรุณาเปลี่ยนรหัสผ่านของคุณอีกครั้ง เพื่อป้องกันบัญชีของคุณให้ปลอดภัย" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "ลืมรหัสผ่าน?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "จำรหัสผ่าน" -#: templates/login.php:40 +#: templates/login.php:46 msgid "Log in" msgstr "เข้าสู่ระบบ" -#: templates/login.php:46 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "" diff --git a/l10n/tr/core.po b/l10n/tr/core.po index 8e924aff4d..6ba5e5d6be 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:30+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -323,7 +323,7 @@ msgstr "Nesne türü belirtilmemiş." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:665 js/share.js:677 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "Hata" @@ -343,7 +343,7 @@ msgstr "Paylaşılan" msgid "Share" msgstr "Paylaş" -#: js/share.js:132 js/share.js:705 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Paylaşım sırasında hata " @@ -375,7 +375,7 @@ msgstr "Bağlantı ile paylaş" msgid "Password protect" msgstr "Şifre korunması" -#: js/share.js:194 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Parola" @@ -447,27 +447,27 @@ msgstr "sil" msgid "share" msgstr "paylaş" -#: js/share.js:409 js/share.js:652 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "Paralo korumalı" -#: js/share.js:665 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "Geçerlilik tarihi tanımlama kaldırma hatası" -#: js/share.js:677 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "Geçerlilik tarihi tanımlama hatası" -#: js/share.js:692 +#: js/share.js:694 msgid "Sending ..." msgstr "Gönderiliyor..." -#: js/share.js:703 +#: js/share.js:705 msgid "Email sent" msgstr "Eposta gönderildi" -#: js/share.js:727 +#: js/share.js:729 msgid "Warning" msgstr "Uyarı" @@ -507,7 +507,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "Parolanızı sıfırlamak için bir bağlantı Eposta olarak gönderilecek." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "Kullanıcı Adı" @@ -712,19 +712,27 @@ msgstr "Yakın zamanda parolanızı değiştirmedi iseniz hesabınız riske gire msgid "Please change your password to secure your account again." msgstr "Hesabınızı korumak için lütfen parolanızı değiştirin." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "Parolanızı mı unuttunuz?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "hatırla" -#: templates/login.php:40 +#: templates/login.php:46 msgid "Log in" msgstr "Giriş yap" -#: templates/login.php:46 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "Alternatif Girişler" diff --git a/l10n/ug/core.po b/l10n/ug/core.po index a53d2a196b..75bc1a3a1f 100644 --- a/l10n/ug/core.po +++ b/l10n/ug/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:30+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" @@ -315,7 +315,7 @@ msgstr "" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:665 js/share.js:677 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "خاتالىق" @@ -335,7 +335,7 @@ msgstr "" msgid "Share" msgstr "ھەمبەھىر" -#: js/share.js:132 js/share.js:705 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "" @@ -367,7 +367,7 @@ msgstr "" msgid "Password protect" msgstr "" -#: js/share.js:194 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "ئىم" @@ -439,27 +439,27 @@ msgstr "ئۆچۈر" msgid "share" msgstr "ھەمبەھىر" -#: js/share.js:409 js/share.js:652 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "" -#: js/share.js:665 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:677 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "" -#: js/share.js:692 +#: js/share.js:694 msgid "Sending ..." msgstr "" -#: js/share.js:703 +#: js/share.js:705 msgid "Email sent" msgstr "" -#: js/share.js:727 +#: js/share.js:729 msgid "Warning" msgstr "ئاگاھلاندۇرۇش" @@ -499,7 +499,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "" #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "ئىشلەتكۈچى ئاتى" @@ -704,19 +704,27 @@ msgstr "" msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "" -#: templates/login.php:40 +#: templates/login.php:46 msgid "Log in" msgstr "" -#: templates/login.php:46 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "" diff --git a/l10n/uk/core.po b/l10n/uk/core.po index a8da69503b..90400bb72e 100644 --- a/l10n/uk/core.po +++ b/l10n/uk/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:31+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -325,7 +325,7 @@ msgstr "Не визначено тип об'єкту." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:665 js/share.js:677 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "Помилка" @@ -345,7 +345,7 @@ msgstr "Опубліковано" msgid "Share" msgstr "Поділитися" -#: js/share.js:132 js/share.js:705 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Помилка під час публікації" @@ -377,7 +377,7 @@ msgstr "Опублікувати через посилання" msgid "Password protect" msgstr "Захистити паролем" -#: js/share.js:194 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Пароль" @@ -449,27 +449,27 @@ msgstr "видалити" msgid "share" msgstr "опублікувати" -#: js/share.js:409 js/share.js:652 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "Захищено паролем" -#: js/share.js:665 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "Помилка при відміні терміна дії" -#: js/share.js:677 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "Помилка при встановленні терміна дії" -#: js/share.js:692 +#: js/share.js:694 msgid "Sending ..." msgstr "Надсилання..." -#: js/share.js:703 +#: js/share.js:705 msgid "Email sent" msgstr "Ел. пошта надіслана" -#: js/share.js:727 +#: js/share.js:729 msgid "Warning" msgstr "Попередження" @@ -509,7 +509,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "Ви отримаєте посилання для скидання вашого паролю на Ел. пошту." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "Ім'я користувача" @@ -714,19 +714,27 @@ msgstr "Якщо Ви не міняли пароль останнім часом msgid "Please change your password to secure your account again." msgstr "Будь ласка, змініть свій пароль, щоб знову захистити Ваш обліковий запис." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "Забули пароль?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "запам'ятати" -#: templates/login.php:40 +#: templates/login.php:46 msgid "Log in" msgstr "Вхід" -#: templates/login.php:46 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "Альтернативні Логіни" diff --git a/l10n/ur_PK/core.po b/l10n/ur_PK/core.po index 3133d29f6c..9f41f5bb7e 100644 --- a/l10n/ur_PK/core.po +++ b/l10n/ur_PK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:11+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -320,7 +320,7 @@ msgstr "" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:665 js/share.js:677 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "ایرر" @@ -340,7 +340,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:132 js/share.js:705 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "شئیرنگ کے دوران ایرر" @@ -372,7 +372,7 @@ msgstr "لنک کے ساتھ شئیر کریں" msgid "Password protect" msgstr "پاسورڈ سے محفوظ کریں" -#: js/share.js:194 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "پاسورڈ" @@ -444,27 +444,27 @@ msgstr "ختم کریں" msgid "share" msgstr "شئیر کریں" -#: js/share.js:409 js/share.js:652 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "پاسورڈ سے محفوظ کیا گیا ہے" -#: js/share.js:665 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:677 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "" -#: js/share.js:692 +#: js/share.js:694 msgid "Sending ..." msgstr "" -#: js/share.js:703 +#: js/share.js:705 msgid "Email sent" msgstr "" -#: js/share.js:727 +#: js/share.js:729 msgid "Warning" msgstr "" @@ -504,7 +504,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "آپ ای میل کے ذریعے اپنے پاسورڈ ری سیٹ کا لنک موصول کریں گے" #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "یوزر نیم" @@ -709,19 +709,27 @@ msgstr "" msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "کیا آپ پاسورڈ بھول گئے ہیں؟" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "یاد رکھیں" -#: templates/login.php:40 +#: templates/login.php:46 msgid "Log in" msgstr "لاگ ان" -#: templates/login.php:46 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "" diff --git a/l10n/vi/core.po b/l10n/vi/core.po index fd046e18f1..0304dc8ded 100644 --- a/l10n/vi/core.po +++ b/l10n/vi/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:30+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -316,7 +316,7 @@ msgstr "Loại đối tượng không được chỉ định." #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:665 js/share.js:677 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "Lỗi" @@ -336,7 +336,7 @@ msgstr "Được chia sẻ" msgid "Share" msgstr "Chia sẻ" -#: js/share.js:132 js/share.js:705 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Lỗi trong quá trình chia sẻ" @@ -368,7 +368,7 @@ msgstr "Chia sẻ với liên kết" msgid "Password protect" msgstr "Mật khẩu bảo vệ" -#: js/share.js:194 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Mật khẩu" @@ -440,27 +440,27 @@ msgstr "xóa" msgid "share" msgstr "chia sẻ" -#: js/share.js:409 js/share.js:652 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "Mật khẩu bảo vệ" -#: js/share.js:665 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "Lỗi không thiết lập ngày kết thúc" -#: js/share.js:677 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "Lỗi cấu hình ngày kết thúc" -#: js/share.js:692 +#: js/share.js:694 msgid "Sending ..." msgstr "Đang gởi ..." -#: js/share.js:703 +#: js/share.js:705 msgid "Email sent" msgstr "Email đã được gửi" -#: js/share.js:727 +#: js/share.js:729 msgid "Warning" msgstr "Cảnh báo" @@ -500,7 +500,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "Vui lòng kiểm tra Email để khôi phục lại mật khẩu." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "Tên đăng nhập" @@ -705,19 +705,27 @@ msgstr "Nếu bạn không thay đổi mật khẩu gần đây của bạn, tà msgid "Please change your password to secure your account again." msgstr "Vui lòng thay đổi mật khẩu của bạn để đảm bảo tài khoản của bạn một lần nữa." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "Bạn quên mật khẩu ?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "ghi nhớ" -#: templates/login.php:40 +#: templates/login.php:46 msgid "Log in" msgstr "Đăng nhập" -#: templates/login.php:46 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "Đăng nhập khác" diff --git a/l10n/zh_CN/core.po b/l10n/zh_CN/core.po index 6ccbe49cfa..ea7c79d482 100644 --- a/l10n/zh_CN/core.po +++ b/l10n/zh_CN/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:30+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -318,7 +318,7 @@ msgstr "未指定对象类型。" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:665 js/share.js:677 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "错误" @@ -338,7 +338,7 @@ msgstr "已共享" msgid "Share" msgstr "分享" -#: js/share.js:132 js/share.js:705 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "共享时出错" @@ -370,7 +370,7 @@ msgstr "共享链接" msgid "Password protect" msgstr "密码保护" -#: js/share.js:194 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "密码" @@ -442,27 +442,27 @@ msgstr "删除" msgid "share" msgstr "共享" -#: js/share.js:409 js/share.js:652 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "密码已受保护" -#: js/share.js:665 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "取消设置过期日期时出错" -#: js/share.js:677 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "设置过期日期时出错" -#: js/share.js:692 +#: js/share.js:694 msgid "Sending ..." msgstr "正在发送..." -#: js/share.js:703 +#: js/share.js:705 msgid "Email sent" msgstr "邮件已发送" -#: js/share.js:727 +#: js/share.js:729 msgid "Warning" msgstr "警告" @@ -502,7 +502,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "您将会收到包含可以重置密码链接的邮件。" #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "用户名" @@ -707,19 +707,27 @@ msgstr "如果您没有最近修改您的密码,您的帐户可能会受到影 msgid "Please change your password to secure your account again." msgstr "请修改您的密码,以保护您的账户安全。" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "忘记密码?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "记住" -#: templates/login.php:40 +#: templates/login.php:46 msgid "Log in" msgstr "登录" -#: templates/login.php:46 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "其他登录方式" diff --git a/l10n/zh_HK/core.po b/l10n/zh_HK/core.po index 6847c84181..9c319138ec 100644 --- a/l10n/zh_HK/core.po +++ b/l10n/zh_HK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:11+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -315,7 +315,7 @@ msgstr "" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:665 js/share.js:677 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "錯誤" @@ -335,7 +335,7 @@ msgstr "已分享" msgid "Share" msgstr "分享" -#: js/share.js:132 js/share.js:705 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "分享時發生錯誤" @@ -367,7 +367,7 @@ msgstr "以連結分享" msgid "Password protect" msgstr "密碼保護" -#: js/share.js:194 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "密碼" @@ -439,27 +439,27 @@ msgstr "刪除" msgid "share" msgstr "分享" -#: js/share.js:409 js/share.js:652 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "密碼保護" -#: js/share.js:665 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:677 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "" -#: js/share.js:692 +#: js/share.js:694 msgid "Sending ..." msgstr "傳送中" -#: js/share.js:703 +#: js/share.js:705 msgid "Email sent" msgstr "郵件已傳" -#: js/share.js:727 +#: js/share.js:729 msgid "Warning" msgstr "" @@ -499,7 +499,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "你將收到一封電郵" #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "用戶名稱" @@ -704,19 +704,27 @@ msgstr "如果你近期未曾更改密碼, 你的帳號可能被洩露!" msgid "Please change your password to secure your account again." msgstr "請更改你的密碼以保護你的帳戶" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "忘記密碼" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "記住" -#: templates/login.php:40 +#: templates/login.php:46 msgid "Log in" msgstr "登入" -#: templates/login.php:46 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "" diff --git a/l10n/zh_TW/core.po b/l10n/zh_TW/core.po index bf17c029d7..060ef0108c 100644 --- a/l10n/zh_TW/core.po +++ b/l10n/zh_TW/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 16:00+0000\n" -"Last-Translator: pellaeon \n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -317,7 +317,7 @@ msgstr "未指定物件類型。" #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 #: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 -#: js/share.js:665 js/share.js:677 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "錯誤" @@ -337,7 +337,7 @@ msgstr "已分享" msgid "Share" msgstr "分享" -#: js/share.js:132 js/share.js:705 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "分享時發生錯誤" @@ -369,7 +369,7 @@ msgstr "使用連結分享" msgid "Password protect" msgstr "密碼保護" -#: js/share.js:194 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "密碼" @@ -441,27 +441,27 @@ msgstr "刪除" msgid "share" msgstr "分享" -#: js/share.js:409 js/share.js:652 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "受密碼保護" -#: js/share.js:665 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "取消到期日設定失敗" -#: js/share.js:677 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "設定到期日發生錯誤" -#: js/share.js:692 +#: js/share.js:694 msgid "Sending ..." msgstr "正在傳送…" -#: js/share.js:703 +#: js/share.js:705 msgid "Email sent" msgstr "Email 已寄出" -#: js/share.js:727 +#: js/share.js:729 msgid "Warning" msgstr "警告" @@ -501,7 +501,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "重設密碼的連結將會寄到您的電子郵件信箱。" #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "使用者名稱" @@ -706,19 +706,27 @@ msgstr "如果您最近並未更改密碼,您的帳號可能已經遭到入侵 msgid "Please change your password to secure your account again." msgstr "請更改您的密碼以再次取得您帳戶的控制權。" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "忘記密碼?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "記住" -#: templates/login.php:40 +#: templates/login.php:46 msgid "Log in" msgstr "登入" -#: templates/login.php:46 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "其他登入方法" diff --git a/lib/l10n/ady.php b/lib/l10n/ady.php new file mode 100644 index 0000000000..15f78e0bce --- /dev/null +++ b/lib/l10n/ady.php @@ -0,0 +1,8 @@ + array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), +"_%n day go_::_%n days ago_" => array("",""), +"_%n month ago_::_%n months ago_" => array("","") +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/settings/l10n/ca.php b/settings/l10n/ca.php index c4c61c0354..de3be7c357 100644 --- a/settings/l10n/ca.php +++ b/settings/l10n/ca.php @@ -73,6 +73,8 @@ $TRANSLATIONS = array( "Allow users to share items shared with them again" => "Permet als usuaris compartir de nou elements ja compartits amb ells", "Allow users to share with anyone" => "Permet compartir amb qualsevol", "Allow users to only share with users in their groups" => "Permet als usuaris compartir només amb els usuaris del seu grup", +"Allow mail notification" => "Permet notificacions per correu electrónic", +"Allow user to send mail notification for shared files" => "Permet a l'usuari enviar notificacions de fitxers compartits per correu ", "Security" => "Seguretat", "Enforce HTTPS" => "Força HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Força la connexió dels clients a %s a través d'una connexió encriptada.", From 77f43c357c01f43a8136f5def0d4768545fda88a Mon Sep 17 00:00:00 2001 From: Victor Dubiniuk Date: Mon, 7 Oct 2013 22:24:25 +0300 Subject: [PATCH 026/107] User::delete should return bool --- lib/private/user.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/private/user.php b/lib/private/user.php index 04cd06b08b..b68786c773 100644 --- a/lib/private/user.php +++ b/lib/private/user.php @@ -198,6 +198,10 @@ class OC_User { // Delete user files in /data/ OC_Helper::rmdirr(OC_Config::getValue('datadirectory', OC::$SERVERROOT . '/data') . '/' . $uid . '/'); + + return true; + } else { + return false; } } From c99c3ea9e62d5c150aaaecc4075f4ea35b4034ea Mon Sep 17 00:00:00 2001 From: kondou Date: Tue, 8 Oct 2013 02:40:13 +0200 Subject: [PATCH 027/107] Optimize confirm.[svg|png] with optipng and scour --- core/img/actions/confirm.png | Bin 190 -> 132 bytes core/img/actions/confirm.svg | 67 +++-------------------------------- 2 files changed, 4 insertions(+), 63 deletions(-) diff --git a/core/img/actions/confirm.png b/core/img/actions/confirm.png index ccde88fb1e2185a58924ca8d5fc660db58f6ec0f..3021d4c27d6db047a0355b801a376d8f06b3e734 100644 GIT binary patch delta 9 QcmdnT*upqLWnx?c01%J^NB{r; delta 65 zcmZo++{ZXU#hfk4+ueoXKL{?^yL>VO0|RG)M`SSr1MhVZW^~e+T>%tiFY)wsWxvb8 P#>Hp2b*ZG@M8#wPo< - - - - - - - - - image/svg+xml - - - - - - - - + + + + From 0293d8e04f614c330be8aac7e968eec8469fb0e5 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Tue, 8 Oct 2013 11:26:49 +0200 Subject: [PATCH 028/107] If a existing file in Shared/ with update permissions gets updated we need to write the .part file to a different place because we can't create new files in the Shared folder --- lib/private/connector/sabre/file.php | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/lib/private/connector/sabre/file.php b/lib/private/connector/sabre/file.php index 12d7585884..43e25de40c 100644 --- a/lib/private/connector/sabre/file.php +++ b/lib/private/connector/sabre/file.php @@ -45,7 +45,9 @@ class OC_Connector_Sabre_File extends OC_Connector_Sabre_Node implements Sabre_D * @return string|null */ public function put($data) { + $fs = $this->getFS(); + if ($fs->file_exists($this->path) && !$fs->isUpdatable($this->path)) { throw new \Sabre_DAV_Exception_Forbidden(); @@ -58,12 +60,14 @@ class OC_Connector_Sabre_File extends OC_Connector_Sabre_Node implements Sabre_D // chunked handling if (isset($_SERVER['HTTP_OC_CHUNKED'])) { + list($path, $name) = \Sabre_DAV_URLUtil::splitPath($this->path); $info = OC_FileChunking::decodeName($name); if (empty($info)) { throw new Sabre_DAV_Exception_NotImplemented(); } + $chunk_handler = new OC_FileChunking($info); $chunk_handler->store($info['index'], $data); if ($chunk_handler->isComplete()) { @@ -78,6 +82,13 @@ class OC_Connector_Sabre_File extends OC_Connector_Sabre_Node implements Sabre_D // mark file as partial while uploading (ignored by the scanner) $partpath = $this->path . '.part'; + // if file is located in /Shared we write the part file to the users + // root folder because we can't create new files in /shared + // we extend the name with a random number to avoid overwriting a existing file + if (dirname($partpath) === 'Shared') { + $partpath = pathinfo($partpath, PATHINFO_FILENAME) . rand(); + } + try { $putOkay = $fs->file_put_contents($partpath, $data); if ($putOkay === false) { From dd202d9ad3a542cb4c86baad92cadb2cb975afcf Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Tue, 8 Oct 2013 11:27:08 +0200 Subject: [PATCH 029/107] updating a existing large file creates new file chunks. Therefore createFile() needs to check not only if we can write to the parent folder but also if we can update the existing file" --- lib/private/connector/sabre/directory.php | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/lib/private/connector/sabre/directory.php b/lib/private/connector/sabre/directory.php index af0dfd70f0..d033478036 100644 --- a/lib/private/connector/sabre/directory.php +++ b/lib/private/connector/sabre/directory.php @@ -50,8 +50,22 @@ class OC_Connector_Sabre_Directory extends OC_Connector_Sabre_Node implements Sa */ public function createFile($name, $data = null) { - if (!\OC\Files\Filesystem::isCreatable($this->path)) { - throw new \Sabre_DAV_Exception_Forbidden(); + // for chunked upload also updating a existing file is a "createFile" + // because we create all the chunks before reasamble them to the existing file. + if (isset($_SERVER['HTTP_OC_CHUNKED'])) { + + // exit if we can't create a new file and we don't updatable existing file + $info = OC_FileChunking::decodeName($name); + if (!\OC\Files\Filesystem::isCreatable($this->path) && + !\OC\Files\Filesystem::isUpdatable($this->path . '/' . $info['name'])) { + throw new \Sabre_DAV_Exception_Forbidden(); + } + + } else { + // For non-chunked upload it is enough to check if we can create a new file + if (!\OC\Files\Filesystem::isCreatable($this->path)) { + throw new \Sabre_DAV_Exception_Forbidden(); + } } $path = $this->path . '/' . $name; From c77f74e1defddaa277f85bc9b6242371a13fda42 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Tue, 8 Oct 2013 11:43:44 +0200 Subject: [PATCH 030/107] adding check isDeletable() on $sourcePath --- lib/private/connector/sabre/objecttree.php | 3 ++ tests/lib/connector/sabre/objecttree.php | 32 +++++++++++++--------- 2 files changed, 22 insertions(+), 13 deletions(-) diff --git a/lib/private/connector/sabre/objecttree.php b/lib/private/connector/sabre/objecttree.php index 80c3840b99..df8902f66e 100644 --- a/lib/private/connector/sabre/objecttree.php +++ b/lib/private/connector/sabre/objecttree.php @@ -87,6 +87,9 @@ class ObjectTree extends \Sabre_DAV_ObjectTree { if (!$fs->isUpdatable($destinationDir)) { throw new \Sabre_DAV_Exception_Forbidden(); } + if (!$fs->isDeletable($sourcePath)) { + throw new \Sabre_DAV_Exception_Forbidden(); + } } $renameOkay = $fs->rename($sourcePath, $destinationPath); diff --git a/tests/lib/connector/sabre/objecttree.php b/tests/lib/connector/sabre/objecttree.php index 1d76bb5967..e32f2365f9 100644 --- a/tests/lib/connector/sabre/objecttree.php +++ b/tests/lib/connector/sabre/objecttree.php @@ -15,8 +15,9 @@ use Sabre_DAV_Exception_Forbidden; class TestDoubleFileView extends \OC\Files\View{ - public function __construct($updatables, $canRename = true) { + public function __construct($updatables, $deletables, $canRename = true) { $this->updatables = $updatables; + $this->deletables = $deletables; $this->canRename = $canRename; } @@ -24,6 +25,10 @@ class TestDoubleFileView extends \OC\Files\View{ return $this->updatables[$path]; } + public function isDeletable($path) { + return $this->deletables[$path]; + } + public function rename($path1, $path2) { return $this->canRename; } @@ -35,31 +40,32 @@ class ObjectTree extends PHPUnit_Framework_TestCase { * @dataProvider moveFailedProvider * @expectedException Sabre_DAV_Exception_Forbidden */ - public function testMoveFailed($source, $dest, $updatables) { - $this->moveTest($source, $dest, $updatables); + public function testMoveFailed($source, $dest, $updatables, $deletables) { + $this->moveTest($source, $dest, $updatables, $deletables); } /** * @dataProvider moveSuccessProvider */ - public function testMoveSuccess($source, $dest, $updatables) { - $this->moveTest($source, $dest, $updatables); + public function testMoveSuccess($source, $dest, $updatables, $deletables) { + $this->moveTest($source, $dest, $updatables, $deletables); $this->assertTrue(true); } function moveFailedProvider() { return array( - array('a/b', 'a/c', array('a' => false, 'a/b' => false, 'a/c' => false)), - array('a/b', 'b/b', array('a' => false, 'a/b' => false, 'b' => false, 'b/b' => false)), - array('a/b', 'b/b', array('a' => false, 'a/b' => true, 'b' => false, 'b/b' => false)), - array('a/b', 'b/b', array('a' => true, 'a/b' => true, 'b' => false, 'b/b' => false)), + array('a/b', 'a/c', array('a' => false, 'a/b' => false, 'a/c' => false), array()), + array('a/b', 'b/b', array('a' => false, 'a/b' => false, 'b' => false, 'b/b' => false), array()), + array('a/b', 'b/b', array('a' => false, 'a/b' => true, 'b' => false, 'b/b' => false), array()), + array('a/b', 'b/b', array('a' => true, 'a/b' => true, 'b' => false, 'b/b' => false), array()), + array('a/b', 'b/b', array('a' => true, 'a/b' => true, 'b' => true, 'b/b' => false), array('a/b' => false)), ); } function moveSuccessProvider() { return array( - array('a/b', 'a/c', array('a' => false, 'a/b' => true, 'a/c' => false)), - array('a/b', 'b/b', array('a' => true, 'a/b' => true, 'b' => true, 'b/b' => false)), + array('a/b', 'a/c', array('a' => false, 'a/b' => true, 'a/c' => false), array()), + array('a/b', 'b/b', array('a' => true, 'a/b' => true, 'b' => true, 'b/b' => false), array('a/b' => true)), ); } @@ -68,7 +74,7 @@ class ObjectTree extends PHPUnit_Framework_TestCase { * @param $dest * @param $updatables */ - private function moveTest($source, $dest, $updatables) { + private function moveTest($source, $dest, $updatables, $deletables) { $rootDir = new OC_Connector_Sabre_Directory(''); $objectTree = $this->getMock('\OC\Connector\Sabre\ObjectTree', array('nodeExists', 'getNodeForPath'), @@ -80,7 +86,7 @@ class ObjectTree extends PHPUnit_Framework_TestCase { ->will($this->returnValue(false)); /** @var $objectTree \OC\Connector\Sabre\ObjectTree */ - $objectTree->fileView = new TestDoubleFileView($updatables); + $objectTree->fileView = new TestDoubleFileView($updatables, $deletables); $objectTree->move($source, $dest); } From 6c45fab0375bd8e6c02ba3081da7442b6d783c86 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Tue, 8 Oct 2013 12:00:32 +0200 Subject: [PATCH 031/107] part file needs to have .part extension --- lib/private/connector/sabre/file.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/private/connector/sabre/file.php b/lib/private/connector/sabre/file.php index 43e25de40c..037dba7f37 100644 --- a/lib/private/connector/sabre/file.php +++ b/lib/private/connector/sabre/file.php @@ -86,7 +86,7 @@ class OC_Connector_Sabre_File extends OC_Connector_Sabre_Node implements Sabre_D // root folder because we can't create new files in /shared // we extend the name with a random number to avoid overwriting a existing file if (dirname($partpath) === 'Shared') { - $partpath = pathinfo($partpath, PATHINFO_FILENAME) . rand(); + $partpath = pathinfo($partpath, PATHINFO_FILENAME) . rand() . '.part'; } try { From 209392587f594c0292bf39daf44657d20342aea4 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Tue, 8 Oct 2013 07:24:19 -0400 Subject: [PATCH 032/107] [tx-robot] updated from transifex --- apps/files_encryption/l10n/de.php | 4 ++ apps/files_encryption/l10n/de_DE.php | 4 ++ apps/user_webdavauth/l10n/mk.php | 6 ++- core/l10n/de.php | 2 + core/l10n/de_DE.php | 2 + core/l10n/fi_FI.php | 2 + core/l10n/gl.php | 2 + core/l10n/mk.php | 26 ++++++++++++- core/l10n/pt_BR.php | 2 + l10n/de/core.po | 10 ++--- l10n/de/files_encryption.po | 14 +++---- l10n/de_DE/core.po | 10 ++--- l10n/de_DE/files_encryption.po | 14 +++---- l10n/fi_FI/core.po | 10 ++--- l10n/gl/core.po | 10 ++--- l10n/mk/core.po | 55 ++++++++++++++------------- l10n/mk/lib.po | 6 +-- l10n/mk/settings.po | 57 ++++++++++++++-------------- l10n/mk/user_webdavauth.po | 9 +++-- l10n/pt_BR/core.po | 10 ++--- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/private.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- lib/l10n/mk.php | 1 + settings/l10n/mk.php | 15 ++++++++ 34 files changed, 179 insertions(+), 116 deletions(-) diff --git a/apps/files_encryption/l10n/de.php b/apps/files_encryption/l10n/de.php index 93a715d341..99548cb1ca 100644 --- a/apps/files_encryption/l10n/de.php +++ b/apps/files_encryption/l10n/de.php @@ -8,20 +8,24 @@ $TRANSLATIONS = array( "Could not change the password. Maybe the old password was not correct." => "Das Passwort konnte nicht geändert werden. Vielleicht war das alte Passwort falsch.", "Private key password successfully updated." => "Passwort des privaten Schlüssels erfolgreich aktualisiert", "Could not update the private key password. Maybe the old password was not correct." => "Das Passwort des privaten Schlüssels konnte nicht aktualisiert werden. Eventuell war das alte Passwort falsch.", +"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." => "Verschlüsselung-App ist nicht initialisiert! Vielleicht wurde die Verschlüsselung-App in der aktuellen Sitzung reaktiviert. Bitte versuche Dich ab- und wieder anzumelden, um die Verschlüsselung-App zu initialisieren.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Dein privater Schlüssel ist ungültig. Möglicher Weise wurde von außerhalb Dein Passwort geändert (z.B. in deinem gemeinsamen Verzeichnis). Du kannst das Passwort deines privaten Schlüssels in den persönlichen Einstellungen aktualisieren, um wieder an deine Dateien zu gelangen.", "Missing requirements." => "Fehlende Vorraussetzungen", "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Bitte stelle sicher, dass PHP 5.3.3 oder neuer installiert und das OpenSSL zusammen mit der PHP-Erweiterung aktiviert und richtig konfiguriert ist. Zur Zeit ist die Verschlüsselungs-App deaktiviert.", "Following users are not set up for encryption:" => "Für folgende Nutzer ist keine Verschlüsselung eingerichtet:", "Saving..." => "Speichern...", +"Go directly to your " => "Direkt wechseln zu Deinem", "personal settings" => "Private Einstellungen", "Encryption" => "Verschlüsselung", "Enable recovery key (allow to recover users files in case of password loss):" => "Wiederherstellungsschlüssel aktivieren (ermöglicht das Wiederherstellen von Dateien, falls das Passwort vergessen wurde):", "Recovery key password" => "Wiederherstellungsschlüssel-Passwort", +"Repeat Recovery key password" => "Schlüssel-Passwort zur Wiederherstellung wiederholen", "Enabled" => "Aktiviert", "Disabled" => "Deaktiviert", "Change recovery key password:" => "Wiederherstellungsschlüssel-Passwort ändern:", "Old Recovery key password" => "Altes Wiederherstellungsschlüssel-Passwort", "New Recovery key password" => "Neues Wiederherstellungsschlüssel-Passwort", +"Repeat New Recovery key password" => "Neues Schlüssel-Passwort zur Wiederherstellung wiederholen", "Change Password" => "Passwort ändern", "Your private key password no longer match your log-in password:" => "Ihr Passwort für ihren privaten Schlüssel stimmt nicht mehr mit ihrem Loginpasswort überein.", "Set your old private key password to your current log-in password." => "Setzen Sie ihr altes Passwort für ihren privaten Schlüssel auf ihr aktuelles Login-Passwort", diff --git a/apps/files_encryption/l10n/de_DE.php b/apps/files_encryption/l10n/de_DE.php index 79fdbe995e..9d33d2100d 100644 --- a/apps/files_encryption/l10n/de_DE.php +++ b/apps/files_encryption/l10n/de_DE.php @@ -8,20 +8,24 @@ $TRANSLATIONS = array( "Could not change the password. Maybe the old password was not correct." => "Das Passwort konnte nicht geändert werden. Vielleicht war das alte Passwort nicht richtig.", "Private key password successfully updated." => "Das Passwort des privaten Schlüssels wurde erfolgreich aktualisiert.", "Could not update the private key password. Maybe the old password was not correct." => "Das Passwort des privaten Schlüssels konnte nicht aktualisiert werden. Vielleicht war das alte Passwort nicht richtig.", +"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." => "Verschlüsselung-App ist nicht initialisiert! Vielleicht wurde die Verschlüsselung-App in der aktuellen Sitzung reaktiviert. Bitte versuchen Sie sich ab- und wieder anzumelden, um die Verschlüsselung-App zu initialisieren.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Ihr privater Schlüssel ist ungültig. Möglicher Weise wurde von außerhalb Ihr Passwort geändert (z.B. in Ihrem gemeinsamen Verzeichnis). Sie können das Passwort Ihres privaten Schlüssels in den persönlichen Einstellungen aktualisieren, um wieder an Ihre Dateien zu gelangen.", "Missing requirements." => "Fehlende Voraussetzungen", "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Bitte stellen Sie sicher, dass PHP 5.3.3 oder neuer installiert und das OpenSSL zusammen mit der PHP-Erweiterung aktiviert und richtig konfiguriert ist. Zur Zeit ist die Verschlüsselungs-App deaktiviert.", "Following users are not set up for encryption:" => "Für folgende Nutzer ist keine Verschlüsselung eingerichtet:", "Saving..." => "Speichern...", +"Go directly to your " => "Direkt wechseln zu Ihrem", "personal settings" => "Persönliche Einstellungen", "Encryption" => "Verschlüsselung", "Enable recovery key (allow to recover users files in case of password loss):" => "Aktivieren Sie den Wiederherstellungsschlüssel (erlaubt die Wiederherstellung des Zugangs zu den Benutzerdateien, wenn das Passwort verloren geht).", "Recovery key password" => "Wiederherstellungschlüsselpasswort", +"Repeat Recovery key password" => "Schlüssel-Passwort zur Wiederherstellung wiederholen", "Enabled" => "Aktiviert", "Disabled" => "Deaktiviert", "Change recovery key password:" => "Wiederherstellungsschlüsselpasswort ändern", "Old Recovery key password" => "Altes Wiederherstellungsschlüsselpasswort", "New Recovery key password" => "Neues Wiederherstellungsschlüsselpasswort ", +"Repeat New Recovery key password" => "Neues Schlüssel-Passwort zur Wiederherstellung wiederholen", "Change Password" => "Passwort ändern", "Your private key password no longer match your log-in password:" => "Das Privatschlüsselpasswort darf nicht länger mit den Login-Passwort übereinstimmen.", "Set your old private key password to your current log-in password." => "Setzen Sie Ihr altes Privatschlüsselpasswort auf Ihr aktuelles LogIn-Passwort.", diff --git a/apps/user_webdavauth/l10n/mk.php b/apps/user_webdavauth/l10n/mk.php index 245a510134..6ebe36423b 100644 --- a/apps/user_webdavauth/l10n/mk.php +++ b/apps/user_webdavauth/l10n/mk.php @@ -1,3 +1,5 @@ - "URL: http://" + "Адреса:" ); +$PLURAL_FORMS = "nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;"; diff --git a/core/l10n/de.php b/core/l10n/de.php index 7e292adcf3..d0513ea0b7 100644 --- a/core/l10n/de.php +++ b/core/l10n/de.php @@ -157,6 +157,8 @@ $TRANSLATIONS = array( "Automatic logon rejected!" => "Automatischer Login zurückgewiesen!", "If you did not change your password recently, your account may be compromised!" => "Wenn Du Dein Passwort nicht vor kurzem geändert hast, könnte Dein\nAccount kompromittiert sein!", "Please change your password to secure your account again." => "Bitte ändere Dein Passwort, um Deinen Account wieder zu schützen.", +"Server side authentication failed!" => "Serverseitige Authentifizierung fehlgeschlagen!", +"Please contact your administrator." => "Bitte kontaktiere Deinen Administrator.", "Lost your password?" => "Passwort vergessen?", "remember" => "merken", "Log in" => "Einloggen", diff --git a/core/l10n/de_DE.php b/core/l10n/de_DE.php index 95519c7d41..2dddea5e55 100644 --- a/core/l10n/de_DE.php +++ b/core/l10n/de_DE.php @@ -157,6 +157,8 @@ $TRANSLATIONS = array( "Automatic logon rejected!" => "Automatische Anmeldung verweigert!", "If you did not change your password recently, your account may be compromised!" => "Wenn Sie Ihr Passwort nicht vor kurzem geändert haben, könnte Ihr\nAccount kompromittiert sein!", "Please change your password to secure your account again." => "Bitte ändern Sie Ihr Passwort, um Ihr Konto wieder zu sichern.", +"Server side authentication failed!" => "Serverseitige Authentifizierung fehlgeschlagen!", +"Please contact your administrator." => "Bitte kontaktieren Sie Ihren Administrator.", "Lost your password?" => "Passwort vergessen?", "remember" => "merken", "Log in" => "Einloggen", diff --git a/core/l10n/fi_FI.php b/core/l10n/fi_FI.php index c6c9f09e1d..62a8ec294e 100644 --- a/core/l10n/fi_FI.php +++ b/core/l10n/fi_FI.php @@ -146,6 +146,8 @@ $TRANSLATIONS = array( "Automatic logon rejected!" => "Automaattinen sisäänkirjautuminen hylättiin!", "If you did not change your password recently, your account may be compromised!" => "Jos et vaihtanut salasanaasi äskettäin, tilisi saattaa olla murrettu.", "Please change your password to secure your account again." => "Vaihda salasanasi suojataksesi tilisi uudelleen.", +"Server side authentication failed!" => "Palvelimen puoleinen tunnistautuminen epäonnistui!", +"Please contact your administrator." => "Ota yhteys ylläpitäjään.", "Lost your password?" => "Unohditko salasanasi?", "remember" => "muista", "Log in" => "Kirjaudu sisään", diff --git a/core/l10n/gl.php b/core/l10n/gl.php index 3325a894f4..531788f171 100644 --- a/core/l10n/gl.php +++ b/core/l10n/gl.php @@ -157,6 +157,8 @@ $TRANSLATIONS = array( "Automatic logon rejected!" => "Rexeitouse a entrada automática", "If you did not change your password recently, your account may be compromised!" => "Se non fixo recentemente cambios de contrasinal é posíbel que a súa conta estea comprometida!", "Please change your password to secure your account again." => "Cambie de novo o seu contrasinal para asegurar a súa conta.", +"Server side authentication failed!" => "A autenticación fracasou do lado do servidor!", +"Please contact your administrator." => "Contacte co administrador.", "Lost your password?" => "Perdeu o contrasinal?", "remember" => "lembrar", "Log in" => "Conectar", diff --git a/core/l10n/mk.php b/core/l10n/mk.php index dffd20ab3b..e574389652 100644 --- a/core/l10n/mk.php +++ b/core/l10n/mk.php @@ -1,13 +1,17 @@ "група", +"Updated database" => "Базата е надградена", +"Updated filecache" => "Кешот е надграден", "Category type not provided." => "Не беше доставен тип на категорија.", "No category to add?" => "Нема категорија да се додаде?", +"This category already exists: %s" => "Оваа категорија веќе постои: %s", "Object type not provided." => "Не беше доставен тип на објект.", "%s ID not provided." => "%s ID не беше доставено.", "Error adding %s to favorites." => "Грешка при додавање %s во омилени.", "No categories selected for deletion." => "Не е одбрана категорија за бришење.", "Error removing %s from favorites." => "Грешка при бришење на %s од омилени.", +"Invalid image" => "Невалидна фотографија", "Sunday" => "Недела", "Monday" => "Понеделник", "Tuesday" => "Вторник", @@ -45,10 +49,15 @@ $TRANSLATIONS = array( "Ok" => "Во ред", "_{count} file conflict_::_{count} file conflicts_" => array("",""), "Cancel" => "Откажи", +"Continue" => "Продолжи", +"(all selected)" => "(сите одбрани)", +"({count} selected)" => "({count} одбраните)", +"Error loading file exists template" => "Грешка при вчитување на датотеката, шаблонот постои ", "The object type is not specified." => "Не е специфициран типот на објект.", "Error" => "Грешка", "The app name is not specified." => "Името на апликацијата не е специфицирано.", "The required file {file} is not installed!" => "Задолжителната датотека {file} не е инсталирана!", +"Shared" => "Споделен", "Share" => "Сподели", "Error while sharing" => "Грешка при споделување", "Error while unsharing" => "Грешка при прекин на споделување", @@ -59,6 +68,7 @@ $TRANSLATIONS = array( "Share with link" => "Сподели со врска", "Password protect" => "Заштити со лозинка", "Password" => "Лозинка", +"Allow Public Upload" => "Дозволи јавен аплоуд", "Email link to person" => "Прати врска по е-пошта на личност", "Send" => "Прати", "Set expiration date" => "Постави рок на траење", @@ -68,6 +78,7 @@ $TRANSLATIONS = array( "Resharing is not allowed" => "Повторно споделување не е дозволено", "Shared in {item} with {user}" => "Споделено во {item} со {user}", "Unshare" => "Не споделувај", +"notify user by email" => "извести го корисникот преку електронска пошта", "can edit" => "може да се измени", "access control" => "контрола на пристап", "create" => "креирај", @@ -80,9 +91,13 @@ $TRANSLATIONS = array( "Sending ..." => "Праќање...", "Email sent" => "Е-порака пратена", "Warning" => "Предупредување", +"The update was unsuccessful. Please report this issue to the ownCloud community." => "Надградбата беше неуспешна. Ве молиме пријавете го овој проблем на ownCloud community.", +"The update was successful. Redirecting you to ownCloud now." => "Надградбата беше успешна. Веднаш ве префрлам на вашиот ownCloud.", +"%s password reset" => "%s ресетирање на лозинката", "Use the following link to reset your password: {link}" => "Користете ја следната врска да ја ресетирате Вашата лозинка: {link}", "You will receive a link to reset your password via Email." => "Ќе добиете врска по е-пошта за да може да ја ресетирате Вашата лозинка.", "Username" => "Корисничко име", +"Yes, I really want to reset my password now" => "Да, јас сега навистина сакам да ја поништам својата лозинка", "Request reset" => "Побарајте ресетирање", "Your password was reset" => "Вашата лозинка беше ресетирана", "To login page" => "Кон страницата за најава", @@ -95,11 +110,16 @@ $TRANSLATIONS = array( "Help" => "Помош", "Access forbidden" => "Забранет пристап", "Cloud not found" => "Облакот не е најден", +"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Здраво,\n\nСамо да ве известам дека %s shared %s with you.\nView it: %s\n\n", +"The share will expire on %s.\n\n" => "Споделувањето ќе заврши на %s.\n\n", +"Cheers!" => "Поздрав!", "Edit categories" => "Уреди категории", "Add" => "Додади", "Security Warning" => "Безбедносно предупредување", +"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Вашата верзија на PHP е ранлива на NULL Byte attack (CVE-2006-7243)", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Не е достапен безбеден генератор на случајни броеви, Ве молам озвоможете го OpenSSL PHP додатокот.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Без сигурен генератор на случајни броеви напаѓач може да ги предвиди жетоните за ресетирање на лозинка и да преземе контрола врз Вашата сметка. ", +"Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Вашиот директориум со податоци и датотеки се веројатно достапни преку интенернт поради што .htaccess датотеката не функционира.", "Create an admin account" => "Направете администраторска сметка", "Advanced" => "Напредно", "Data folder" => "Фолдер со податоци", @@ -111,12 +131,16 @@ $TRANSLATIONS = array( "Database tablespace" => "Табела во базата на податоци", "Database host" => "Сервер со база", "Finish setup" => "Заврши го подесувањето", +"Finishing …" => "Завршувам ...", "Log out" => "Одјава", "Automatic logon rejected!" => "Одбиена автоматска најава!", "If you did not change your password recently, your account may be compromised!" => "Ако не сте ја промениле лозинката во скоро време, вашата сметка може да е компромитирана", "Please change your password to secure your account again." => "Ве молам сменете ја лозинката да ја обезбедите вашата сметка повторно.", +"Please contact your administrator." => "Ве молиме контактирајте го вашиот администратор.", "Lost your password?" => "Ја заборавивте лозинката?", "remember" => "запамти", -"Log in" => "Најава" +"Log in" => "Најава", +"Alternative Logins" => "Алтернативни најавувања", +"Updating ownCloud to version %s, this may take a while." => "Надградбата на ownCloud на верзијата %s, може да потрае." ); $PLURAL_FORMS = "nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;"; diff --git a/core/l10n/pt_BR.php b/core/l10n/pt_BR.php index fc43814ae0..14e92921f4 100644 --- a/core/l10n/pt_BR.php +++ b/core/l10n/pt_BR.php @@ -157,6 +157,8 @@ $TRANSLATIONS = array( "Automatic logon rejected!" => "Entrada Automática no Sistema Rejeitada!", "If you did not change your password recently, your account may be compromised!" => "Se você não mudou a sua senha recentemente, a sua conta pode estar comprometida!", "Please change your password to secure your account again." => "Por favor troque sua senha para tornar sua conta segura novamente.", +"Server side authentication failed!" => "Autenticação do servidor falhou!", +"Please contact your administrator." => "Por favor, contate o administrador.", "Lost your password?" => "Esqueceu sua senha?", "remember" => "lembrar", "Log in" => "Fazer login", diff --git a/l10n/de/core.po b/l10n/de/core.po index a8c37a2967..6fc00e3c01 100644 --- a/l10n/de/core.po +++ b/l10n/de/core.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-10-08 07:20-0400\n" +"PO-Revision-Date: 2013-10-08 06:50+0000\n" +"Last-Translator: Mario Siegmann \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -719,11 +719,11 @@ msgstr "Bitte ändere Dein Passwort, um Deinen Account wieder zu schützen." #: templates/login.php:17 msgid "Server side authentication failed!" -msgstr "" +msgstr "Serverseitige Authentifizierung fehlgeschlagen!" #: templates/login.php:18 msgid "Please contact your administrator." -msgstr "" +msgstr "Bitte kontaktiere Deinen Administrator." #: templates/login.php:38 msgid "Lost your password?" diff --git a/l10n/de/files_encryption.po b/l10n/de/files_encryption.po index 3599eb69e5..339fbbd064 100644 --- a/l10n/de/files_encryption.po +++ b/l10n/de/files_encryption.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-06 23:07+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-10-08 07:18-0400\n" +"PO-Revision-Date: 2013-10-08 07:00+0000\n" +"Last-Translator: Mario Siegmann \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -65,7 +65,7 @@ msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." -msgstr "" +msgstr "Verschlüsselung-App ist nicht initialisiert! Vielleicht wurde die Verschlüsselung-App in der aktuellen Sitzung reaktiviert. Bitte versuche Dich ab- und wieder anzumelden, um die Verschlüsselung-App zu initialisieren." #: files/error.php:12 msgid "" @@ -96,7 +96,7 @@ msgstr "Speichern..." #: templates/invalid_private_key.php:8 msgid "Go directly to your " -msgstr "" +msgstr "Direkt wechseln zu Deinem" #: templates/invalid_private_key.php:8 msgid "personal settings" @@ -117,7 +117,7 @@ msgstr "Wiederherstellungsschlüssel-Passwort" #: templates/settings-admin.php:17 msgid "Repeat Recovery key password" -msgstr "" +msgstr "Schlüssel-Passwort zur Wiederherstellung wiederholen" #: templates/settings-admin.php:24 templates/settings-personal.php:54 msgid "Enabled" @@ -141,7 +141,7 @@ msgstr "Neues Wiederherstellungsschlüssel-Passwort" #: templates/settings-admin.php:56 msgid "Repeat New Recovery key password" -msgstr "" +msgstr "Neues Schlüssel-Passwort zur Wiederherstellung wiederholen" #: templates/settings-admin.php:61 msgid "Change Password" diff --git a/l10n/de_DE/core.po b/l10n/de_DE/core.po index edd750f391..771cfbed42 100644 --- a/l10n/de_DE/core.po +++ b/l10n/de_DE/core.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-10-08 07:20-0400\n" +"PO-Revision-Date: 2013-10-08 06:50+0000\n" +"Last-Translator: Mario Siegmann \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -719,11 +719,11 @@ msgstr "Bitte ändern Sie Ihr Passwort, um Ihr Konto wieder zu sichern." #: templates/login.php:17 msgid "Server side authentication failed!" -msgstr "" +msgstr "Serverseitige Authentifizierung fehlgeschlagen!" #: templates/login.php:18 msgid "Please contact your administrator." -msgstr "" +msgstr "Bitte kontaktieren Sie Ihren Administrator." #: templates/login.php:38 msgid "Lost your password?" diff --git a/l10n/de_DE/files_encryption.po b/l10n/de_DE/files_encryption.po index d5577daf92..93cf6b98e2 100644 --- a/l10n/de_DE/files_encryption.po +++ b/l10n/de_DE/files_encryption.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-06 23:07+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-10-08 07:18-0400\n" +"PO-Revision-Date: 2013-10-08 07:00+0000\n" +"Last-Translator: Mario Siegmann \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -62,7 +62,7 @@ msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." -msgstr "" +msgstr "Verschlüsselung-App ist nicht initialisiert! Vielleicht wurde die Verschlüsselung-App in der aktuellen Sitzung reaktiviert. Bitte versuchen Sie sich ab- und wieder anzumelden, um die Verschlüsselung-App zu initialisieren." #: files/error.php:12 msgid "" @@ -93,7 +93,7 @@ msgstr "Speichern..." #: templates/invalid_private_key.php:8 msgid "Go directly to your " -msgstr "" +msgstr "Direkt wechseln zu Ihrem" #: templates/invalid_private_key.php:8 msgid "personal settings" @@ -114,7 +114,7 @@ msgstr "Wiederherstellungschlüsselpasswort" #: templates/settings-admin.php:17 msgid "Repeat Recovery key password" -msgstr "" +msgstr "Schlüssel-Passwort zur Wiederherstellung wiederholen" #: templates/settings-admin.php:24 templates/settings-personal.php:54 msgid "Enabled" @@ -138,7 +138,7 @@ msgstr "Neues Wiederherstellungsschlüsselpasswort " #: templates/settings-admin.php:56 msgid "Repeat New Recovery key password" -msgstr "" +msgstr "Neues Schlüssel-Passwort zur Wiederherstellung wiederholen" #: templates/settings-admin.php:61 msgid "Change Password" diff --git a/l10n/fi_FI/core.po b/l10n/fi_FI/core.po index ba49002c8a..3b4f3373ca 100644 --- a/l10n/fi_FI/core.po +++ b/l10n/fi_FI/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-10-08 07:20-0400\n" +"PO-Revision-Date: 2013-10-07 20:40+0000\n" +"Last-Translator: Jiri Grönroos \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -713,11 +713,11 @@ msgstr "Vaihda salasanasi suojataksesi tilisi uudelleen." #: templates/login.php:17 msgid "Server side authentication failed!" -msgstr "" +msgstr "Palvelimen puoleinen tunnistautuminen epäonnistui!" #: templates/login.php:18 msgid "Please contact your administrator." -msgstr "" +msgstr "Ota yhteys ylläpitäjään." #: templates/login.php:38 msgid "Lost your password?" diff --git a/l10n/gl/core.po b/l10n/gl/core.po index bf4f91c64b..bd36dc037f 100644 --- a/l10n/gl/core.po +++ b/l10n/gl/core.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-10-08 07:20-0400\n" +"PO-Revision-Date: 2013-10-07 17:50+0000\n" +"Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -712,11 +712,11 @@ msgstr "Cambie de novo o seu contrasinal para asegurar a súa conta." #: templates/login.php:17 msgid "Server side authentication failed!" -msgstr "" +msgstr "A autenticación fracasou do lado do servidor!" #: templates/login.php:18 msgid "Please contact your administrator." -msgstr "" +msgstr "Contacte co administrador." #: templates/login.php:38 msgid "Lost your password?" diff --git a/l10n/mk/core.po b/l10n/mk/core.po index 9cc2a9ee06..8d2ed27ed9 100644 --- a/l10n/mk/core.po +++ b/l10n/mk/core.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# miroj , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-10-08 07:20-0400\n" +"PO-Revision-Date: 2013-10-07 21:00+0000\n" +"Last-Translator: miroj \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -41,7 +42,7 @@ msgstr "" #: ajax/update.php:17 msgid "Updated database" -msgstr "" +msgstr "Базата е надградена" #: ajax/update.php:20 msgid "Updating filecache, this may take really long..." @@ -49,7 +50,7 @@ msgstr "" #: ajax/update.php:23 msgid "Updated filecache" -msgstr "" +msgstr "Кешот е надграден" #: ajax/update.php:26 #, php-format @@ -67,7 +68,7 @@ msgstr "Нема категорија да се додаде?" #: ajax/vcategories/add.php:37 #, php-format msgid "This category already exists: %s" -msgstr "" +msgstr "Оваа категорија веќе постои: %s" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -105,7 +106,7 @@ msgstr "" #: avatar/controller.php:85 msgid "Invalid image" -msgstr "" +msgstr "Невалидна фотографија" #: avatar/controller.php:115 avatar/controller.php:142 msgid "No temporary profile picture available, try again" @@ -297,19 +298,19 @@ msgstr "Откажи" #: js/oc-dialogs.js:386 msgid "Continue" -msgstr "" +msgstr "Продолжи" #: js/oc-dialogs.js:433 js/oc-dialogs.js:446 msgid "(all selected)" -msgstr "" +msgstr "(сите одбрани)" #: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "({count} selected)" -msgstr "" +msgstr "({count} одбраните)" #: js/oc-dialogs.js:457 msgid "Error loading file exists template" -msgstr "" +msgstr "Грешка при вчитување на датотеката, шаблонот постои " #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -334,7 +335,7 @@ msgstr "Задолжителната датотека {file} не е инста #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" -msgstr "" +msgstr "Споделен" #: js/share.js:90 msgid "Share" @@ -378,7 +379,7 @@ msgstr "Лозинка" #: js/share.js:199 msgid "Allow Public Upload" -msgstr "" +msgstr "Дозволи јавен аплоуд" #: js/share.js:203 msgid "Email link to person" @@ -418,7 +419,7 @@ msgstr "Не споделувај" #: js/share.js:353 msgid "notify user by email" -msgstr "" +msgstr "извести го корисникот преку електронска пошта" #: js/share.js:361 msgid "can edit" @@ -473,16 +474,16 @@ msgid "" "The update was unsuccessful. Please report this issue to the ownCloud " "community." -msgstr "" +msgstr "Надградбата беше неуспешна. Ве молиме пријавете го овој проблем на ownCloud community." #: js/update.js:21 msgid "The update was successful. Redirecting you to ownCloud now." -msgstr "" +msgstr "Надградбата беше успешна. Веднаш ве префрлам на вашиот ownCloud." #: lostpassword/controller.php:62 #, php-format msgid "%s password reset" -msgstr "" +msgstr "%s ресетирање на лозинката" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" @@ -518,7 +519,7 @@ msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" -msgstr "" +msgstr "Да, јас сега навистина сакам да ја поништам својата лозинка" #: lostpassword/templates/lostpassword.php:27 msgid "Request reset" @@ -576,18 +577,18 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -msgstr "" +msgstr "Здраво,\n\nСамо да ве известам дека %s shared %s with you.\nView it: %s\n\n" #: templates/altmail.php:4 #, php-format msgid "" "The share will expire on %s.\n" "\n" -msgstr "" +msgstr "Споделувањето ќе заврши на %s.\n\n" #: templates/altmail.php:6 templates/mail.php:19 msgid "Cheers!" -msgstr "" +msgstr "Поздрав!" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" @@ -604,7 +605,7 @@ msgstr "Безбедносно предупредување" #: templates/installation.php:25 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" -msgstr "" +msgstr "Вашата верзија на PHP е ранлива на NULL Byte attack (CVE-2006-7243)" #: templates/installation.php:26 #, php-format @@ -627,7 +628,7 @@ msgstr "Без сигурен генератор на случајни брое msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." -msgstr "" +msgstr "Вашиот директориум со податоци и датотеки се веројатно достапни преку интенернт поради што .htaccess датотеката не функционира." #: templates/installation.php:41 #, php-format @@ -684,7 +685,7 @@ msgstr "Заврши го подесувањето" #: templates/installation.php:184 msgid "Finishing …" -msgstr "" +msgstr "Завршувам ..." #: templates/layout.user.php:41 #, php-format @@ -715,7 +716,7 @@ msgstr "" #: templates/login.php:18 msgid "Please contact your administrator." -msgstr "" +msgstr "Ве молиме контактирајте го вашиот администратор." #: templates/login.php:38 msgid "Lost your password?" @@ -731,7 +732,7 @@ msgstr "Најава" #: templates/login.php:52 msgid "Alternative Logins" -msgstr "" +msgstr "Алтернативни најавувања" #: templates/mail.php:15 #, php-format @@ -748,4 +749,4 @@ msgstr "" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "" +msgstr "Надградбата на ownCloud на верзијата %s, може да потрае." diff --git a/l10n/mk/lib.po b/l10n/mk/lib.po index 8b7a7df882..cc59cb6e64 100644 --- a/l10n/mk/lib.po +++ b/l10n/mk/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-02 13:20+0000\n" +"POT-Creation-Date: 2013-10-08 07:21-0400\n" +"PO-Revision-Date: 2013-10-07 21:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -63,7 +63,7 @@ msgstr "" #: private/avatar.php:69 msgid "Invalid image" -msgstr "" +msgstr "Невалидна фотографија" #: private/defaults.php:36 msgid "web services under your control" diff --git a/l10n/mk/settings.po b/l10n/mk/settings.po index 17598ec848..954528d737 100644 --- a/l10n/mk/settings.po +++ b/l10n/mk/settings.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# miroj , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-05 15:12+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-10-08 07:22-0400\n" +"PO-Revision-Date: 2013-10-07 20:40+0000\n" +"Last-Translator: miroj \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,11 +29,11 @@ msgstr "Грешка во автентикација" #: ajax/changedisplayname.php:31 msgid "Your display name has been changed." -msgstr "" +msgstr "Вашето прикажано име се промени." #: ajax/changedisplayname.php:34 msgid "Unable to change display name" -msgstr "" +msgstr "Не можам да го сменам прикажанато име" #: ajax/creategroup.php:10 msgid "Group already exists" @@ -82,7 +83,7 @@ msgstr "Неможе да избришам корисник од група %s" #: ajax/updateapp.php:14 msgid "Couldn't update app." -msgstr "" +msgstr "Не можам да ја надградам апликацијата." #: changepassword/controller.php:20 msgid "Wrong password" @@ -115,7 +116,7 @@ msgstr "" #: js/apps.js:43 msgid "Update to {appversion}" -msgstr "" +msgstr "Надгради на {appversion}" #: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" @@ -127,7 +128,7 @@ msgstr "Овозможи" #: js/apps.js:71 msgid "Please wait...." -msgstr "" +msgstr "Ве молам почекајте ..." #: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" @@ -139,11 +140,11 @@ msgstr "" #: js/apps.js:125 msgid "Updating...." -msgstr "" +msgstr "Надградувам ..." #: js/apps.js:128 msgid "Error while updating app" -msgstr "" +msgstr "Грешка додека ја надградувам апликацијата" #: js/apps.js:128 msgid "Error" @@ -155,7 +156,7 @@ msgstr "Ажурирај" #: js/apps.js:132 msgid "Updated" -msgstr "" +msgstr "Надграден" #: js/personal.js:225 msgid "Select a profile picture" @@ -171,7 +172,7 @@ msgstr "Снимам..." #: js/users.js:47 msgid "deleted" -msgstr "" +msgstr "избришан" #: js/users.js:47 msgid "undo" @@ -179,36 +180,36 @@ msgstr "врати" #: js/users.js:79 msgid "Unable to remove user" -msgstr "" +msgstr "Не можам да го одстранам корисникот" -#: js/users.js:92 templates/users.php:26 templates/users.php:90 +#: js/users.js:95 templates/users.php:26 templates/users.php:90 #: templates/users.php:118 msgid "Groups" msgstr "Групи" -#: js/users.js:97 templates/users.php:92 templates/users.php:130 +#: js/users.js:100 templates/users.php:92 templates/users.php:130 msgid "Group Admin" msgstr "Администратор на група" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Избриши" -#: js/users.js:277 +#: js/users.js:280 msgid "add group" -msgstr "" - -#: js/users.js:436 -msgid "A valid username must be provided" -msgstr "" - -#: js/users.js:437 js/users.js:443 js/users.js:458 -msgid "Error creating user" -msgstr "" +msgstr "додади група" #: js/users.js:442 +msgid "A valid username must be provided" +msgstr "Мора да се обезбеди валидно корисничко име " + +#: js/users.js:443 js/users.js:449 js/users.js:464 +msgid "Error creating user" +msgstr "Грешка при креирање на корисникот" + +#: js/users.js:448 msgid "A valid password must be provided" -msgstr "" +msgstr "Мора да се обезбеди валидна лозинка" #: personal.php:45 personal.php:46 msgid "__language_name__" @@ -229,7 +230,7 @@ msgstr "" #: templates/admin.php:29 msgid "Setup Warning" -msgstr "" +msgstr "Предупредување при подесување" #: templates/admin.php:32 msgid "" diff --git a/l10n/mk/user_webdavauth.po b/l10n/mk/user_webdavauth.po index 0de649364a..613044a3e8 100644 --- a/l10n/mk/user_webdavauth.po +++ b/l10n/mk/user_webdavauth.po @@ -4,13 +4,14 @@ # # Translators: # Georgi Stanojevski , 2012 +# miroj , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:57+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-10-08 07:20-0400\n" +"PO-Revision-Date: 2013-10-07 20:10+0000\n" +"Last-Translator: miroj \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,7 +25,7 @@ msgstr "" #: templates/settings.php:4 msgid "Address: " -msgstr "" +msgstr "Адреса:" #: templates/settings.php:7 msgid "" diff --git a/l10n/pt_BR/core.po b/l10n/pt_BR/core.po index 50ddb1288b..dfd0add652 100644 --- a/l10n/pt_BR/core.po +++ b/l10n/pt_BR/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 16:17+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-10-08 07:20-0400\n" +"PO-Revision-Date: 2013-10-07 21:00+0000\n" +"Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -713,11 +713,11 @@ msgstr "Por favor troque sua senha para tornar sua conta segura novamente." #: templates/login.php:17 msgid "Server side authentication failed!" -msgstr "" +msgstr "Autenticação do servidor falhou!" #: templates/login.php:18 msgid "Please contact your administrator." -msgstr "" +msgstr "Por favor, contate o administrador." #: templates/login.php:38 msgid "Lost your password?" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 541877435d..abc217e840 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"POT-Creation-Date: 2013-10-08 07:20-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index aac13557b5..55994f472e 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-10-07 12:14-0400\n" +"POT-Creation-Date: 2013-10-08 07:17-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 9c0e1c7acd..4d1d6082ad 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-10-07 12:14-0400\n" +"POT-Creation-Date: 2013-10-08 07:18-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index ccd2902034..63ca02e1ce 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"POT-Creation-Date: 2013-10-08 07:20-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index 89ca241853..f9243675ac 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"POT-Creation-Date: 2013-10-08 07:20-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index 71a310eaf0..a18bdeebff 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"POT-Creation-Date: 2013-10-08 07:20-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index c9d3851c6b..d9c63462a0 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"POT-Creation-Date: 2013-10-08 07:20-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index 43d1f696e2..c0fc8d680b 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-10-07 12:17-0400\n" +"POT-Creation-Date: 2013-10-08 07:21-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/private.pot b/l10n/templates/private.pot index 9eb4e47d7c..58342afc80 100644 --- a/l10n/templates/private.pot +++ b/l10n/templates/private.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-10-07 12:17-0400\n" +"POT-Creation-Date: 2013-10-08 07:22-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 6403c9cc46..b52101627c 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-10-07 12:17-0400\n" +"POT-Creation-Date: 2013-10-08 07:22-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 448d4b6c3a..ee5c4a8361 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"POT-Creation-Date: 2013-10-08 07:20-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index 3d3aa1e694..3765664815 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"POT-Creation-Date: 2013-10-08 07:20-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/lib/l10n/mk.php b/lib/l10n/mk.php index 285dfd682a..19e36c868d 100644 --- a/lib/l10n/mk.php +++ b/lib/l10n/mk.php @@ -5,6 +5,7 @@ $TRANSLATIONS = array( "Settings" => "Подесувања", "Users" => "Корисници", "Admin" => "Админ", +"Invalid image" => "Невалидна фотографија", "web services under your control" => "веб сервиси под Ваша контрола", "ZIP download is turned off." => "Преземање во ZIP е исклучено", "Files need to be downloaded one by one." => "Датотеките треба да се симнат една по една.", diff --git a/settings/l10n/mk.php b/settings/l10n/mk.php index 901ef9106e..77e7e52f99 100644 --- a/settings/l10n/mk.php +++ b/settings/l10n/mk.php @@ -2,6 +2,8 @@ $TRANSLATIONS = array( "Unable to load list from App Store" => "Неможам да вчитам листа од App Store", "Authentication error" => "Грешка во автентикација", +"Your display name has been changed." => "Вашето прикажано име се промени.", +"Unable to change display name" => "Не можам да го сменам прикажанато име", "Group already exists" => "Групата веќе постои", "Unable to add group" => "Неможе да додадам група", "Email saved" => "Електронската пошта е снимена", @@ -13,17 +15,30 @@ $TRANSLATIONS = array( "Admins can't remove themself from the admin group" => "Администраторите неможе да се избришат себеси од админ групата", "Unable to add user to group %s" => "Неможе да додадам корисник во група %s", "Unable to remove user from group %s" => "Неможе да избришам корисник од група %s", +"Couldn't update app." => "Не можам да ја надградам апликацијата.", +"Update to {appversion}" => "Надгради на {appversion}", "Disable" => "Оневозможи", "Enable" => "Овозможи", +"Please wait...." => "Ве молам почекајте ...", +"Updating...." => "Надградувам ...", +"Error while updating app" => "Грешка додека ја надградувам апликацијата", "Error" => "Грешка", "Update" => "Ажурирај", +"Updated" => "Надграден", "Saving..." => "Снимам...", +"deleted" => "избришан", "undo" => "врати", +"Unable to remove user" => "Не можам да го одстранам корисникот", "Groups" => "Групи", "Group Admin" => "Администратор на група", "Delete" => "Избриши", +"add group" => "додади група", +"A valid username must be provided" => "Мора да се обезбеди валидно корисничко име ", +"Error creating user" => "Грешка при креирање на корисникот", +"A valid password must be provided" => "Мора да се обезбеди валидна лозинка", "__language_name__" => "__language_name__", "Security Warning" => "Безбедносно предупредување", +"Setup Warning" => "Предупредување при подесување", "Log" => "Записник", "Log level" => "Ниво на логирање", "More" => "Повеќе", From 7c6ed6ab33e8487d6de135b5e956a82685bf4463 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Tue, 8 Oct 2013 15:03:24 +0200 Subject: [PATCH 033/107] catch exceptions while uploading and pass on the error message --- apps/files/ajax/upload.php | 51 ++++++++++++++++++++---------------- apps/files/js/file-upload.js | 2 +- 2 files changed, 29 insertions(+), 24 deletions(-) diff --git a/apps/files/ajax/upload.php b/apps/files/ajax/upload.php index 0920bf6210..45fb17de94 100644 --- a/apps/files/ajax/upload.php +++ b/apps/files/ajax/upload.php @@ -110,30 +110,35 @@ if (strpos($dir, '..') === false) { || (isset($_POST['resolution']) && $_POST['resolution']==='replace') ) { // upload and overwrite file - if (is_uploaded_file($files['tmp_name'][$i]) and \OC\Files\Filesystem::fromTmpFile($files['tmp_name'][$i], $target)) { - - // updated max file size after upload - $storageStats = \OCA\Files\Helper::buildFileStorageStatistics($dir); - - $meta = \OC\Files\Filesystem::getFileInfo($target); - if ($meta === false) { - $error = $l->t('Upload failed. Could not get file info.'); + try + { + if (is_uploaded_file($files['tmp_name'][$i]) and \OC\Files\Filesystem::fromTmpFile($files['tmp_name'][$i], $target)) { + + // updated max file size after upload + $storageStats = \OCA\Files\Helper::buildFileStorageStatistics($dir); + + $meta = \OC\Files\Filesystem::getFileInfo($target); + if ($meta === false) { + $error = $l->t('Upload failed. Could not get file info.'); + } else { + $result[] = array('status' => 'success', + 'mime' => $meta['mimetype'], + 'mtime' => $meta['mtime'], + 'size' => $meta['size'], + 'id' => $meta['fileid'], + 'name' => basename($target), + 'originalname' => $files['tmp_name'][$i], + 'uploadMaxFilesize' => $maxUploadFileSize, + 'maxHumanFilesize' => $maxHumanFileSize, + 'permissions' => $meta['permissions'], + ); + } + } else { - $result[] = array('status' => 'success', - 'mime' => $meta['mimetype'], - 'mtime' => $meta['mtime'], - 'size' => $meta['size'], - 'id' => $meta['fileid'], - 'name' => basename($target), - 'originalname' => $files['tmp_name'][$i], - 'uploadMaxFilesize' => $maxUploadFileSize, - 'maxHumanFilesize' => $maxHumanFileSize, - 'permissions' => $meta['permissions'], - ); + $error = $l->t('Upload failed. Could not find uploaded file'); } - - } else { - $error = $l->t('Upload failed. Could not find uploaded file'); + } catch(Exception $ex) { + $error = $ex->getMessage(); } } else { @@ -164,5 +169,5 @@ if ($error === false) { OCP\JSON::encodedPrint($result); exit(); } else { - OCP\JSON::error(array('data' => array_merge(array('message' => $error), $storageStats))); + OCP\JSON::error(array(array('data' => array_merge(array('message' => $error), $storageStats)))); } diff --git a/apps/files/js/file-upload.js b/apps/files/js/file-upload.js index b52221ac1f..88d5a05107 100644 --- a/apps/files/js/file-upload.js +++ b/apps/files/js/file-upload.js @@ -365,7 +365,7 @@ $(document).ready(function() { } else if (result[0].status !== 'success') { //delete data.jqXHR; data.textStatus = 'servererror'; - data.errorThrown = result.data.message; // error message has been translated on server + data.errorThrown = result[0].data.message; // error message has been translated on server var fu = $(this).data('blueimp-fileupload') || $(this).data('fileupload'); fu._trigger('fail', e, data); } From caa27824a94e3af757ea33b01b5682ef963ae714 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Tue, 8 Oct 2013 15:04:31 +0200 Subject: [PATCH 034/107] catch specific file exceptions and convert them to proper http status code via webdav --- lib/private/connector/sabre/file.php | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/lib/private/connector/sabre/file.php b/lib/private/connector/sabre/file.php index 3c19da7c61..84154ee855 100644 --- a/lib/private/connector/sabre/file.php +++ b/lib/private/connector/sabre/file.php @@ -87,14 +87,21 @@ class OC_Connector_Sabre_File extends OC_Connector_Sabre_Node implements Sabre_D throw new Sabre_DAV_Exception(); } } catch (\OCP\Files\NotPermittedException $e) { - throw new Sabre_DAV_Exception_Forbidden(); + // a more general case - due to whatever reason the content could not be written + throw new Sabre_DAV_Exception_Forbidden($e->getMessage()); + } catch (\OCP\Files\EntityTooLargeException $e) { - throw new OC_Connector_Sabre_Exception_EntityTooLarge(); + // the file is too big to be stored + throw new OC_Connector_Sabre_Exception_EntityTooLarge($e->getMessage()); + } catch (\OCP\Files\InvalidContentException $e) { - throw new OC_Connector_Sabre_Exception_UnsupportedMediaType(); + // the file content is not permitted + throw new OC_Connector_Sabre_Exception_UnsupportedMediaType($e->getMessage()); + } catch (\OCP\Files\InvalidPathException $e) { - // TODO: add specific exception here - throw new Sabre_DAV_Exception_Forbidden(); + // the path for the file was not valid + // TODO: find proper http status code for this case + throw new Sabre_DAV_Exception_Forbidden($e->getMessage()); } // rename to correct path From 176c2f150299e9ddc335158b27f4a61e45ef80ac Mon Sep 17 00:00:00 2001 From: Victor Dubiniuk Date: Tue, 8 Oct 2013 16:33:56 +0300 Subject: [PATCH 035/107] Add unit tests --- tests/lib/user.php | 52 ++++++++++++++++++++++++++++++++++++---------- 1 file changed, 41 insertions(+), 11 deletions(-) diff --git a/tests/lib/user.php b/tests/lib/user.php index 66c7f3f0d7..fdf9e7a08e 100644 --- a/tests/lib/user.php +++ b/tests/lib/user.php @@ -12,18 +12,26 @@ namespace Test; use OC\Hooks\PublicEmitter; class User extends \PHPUnit_Framework_TestCase { - + /** + * @var \OC_User_Backend | \PHPUnit_Framework_MockObject_MockObject $backend + */ + private $backend; + + protected function setUp(){ + $this->backend = $this->getMock('\OC_User_Dummy'); + $manager = \OC_User::getManager(); + $manager->registerBackend($this->backend); + } + public function testCheckPassword() { - /** - * @var \OC_User_Backend | \PHPUnit_Framework_MockObject_MockObject $backend - */ - $backend = $this->getMock('\OC_User_Dummy'); - $backend->expects($this->once()) + + $this->backend->expects($this->once()) ->method('checkPassword') ->with($this->equalTo('foo'), $this->equalTo('bar')) - ->will($this->returnValue('foo')); + ->will($this->returnValue('foo')) + ; - $backend->expects($this->any()) + $this->backend->expects($this->any()) ->method('implementsActions') ->will($this->returnCallback(function ($actions) { if ($actions === \OC_USER_BACKEND_CHECK_PASSWORD) { @@ -33,11 +41,33 @@ class User extends \PHPUnit_Framework_TestCase { } })); - $manager = \OC_User::getManager(); - $manager->registerBackend($backend); - $uid = \OC_User::checkPassword('foo', 'bar'); $this->assertEquals($uid, 'foo'); } + + public function testDeleteUser() { + $fail = \OC_User::deleteUser('victim'); + $this->assertFalse($fail); + + $success = \OC_User::createUser('victim', 'password'); + + $success = \OC_User::deleteUser('victim'); + $this->assertTrue($success); + } + + public function testCreateUser(){ + $this->backend->expects($this->any()) + ->method('implementsActions') + ->will($this->returnCallback(function ($actions) { + if ($actions === \OC_USER_BACKEND_CREATE_USER) { + return true; + } else { + return false; + } + })); + + $user = \OC_User::createUser('newuser', 'newpassword'); + $this->assertEquals('newuser', $user->getUid()); + } } \ No newline at end of file From 3f27fefdbe1342701161bf0949dd719f34dab76d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Tue, 8 Oct 2013 15:40:42 +0200 Subject: [PATCH 036/107] fixing status code and formatting --- .../sabre/exception/entitytoolarge.php | 19 +++++++++---------- .../sabre/exception/unsupportedmediatype.php | 16 ++++++++-------- 2 files changed, 17 insertions(+), 18 deletions(-) diff --git a/lib/private/connector/sabre/exception/entitytoolarge.php b/lib/private/connector/sabre/exception/entitytoolarge.php index aa9b37a049..2bda51f2f3 100644 --- a/lib/private/connector/sabre/exception/entitytoolarge.php +++ b/lib/private/connector/sabre/exception/entitytoolarge.php @@ -1,23 +1,22 @@ Date: Tue, 8 Oct 2013 15:16:33 +0200 Subject: [PATCH 037/107] make sure that we only remove file/folder shares --- apps/files_sharing/appinfo/update.php | 4 ++-- apps/files_sharing/appinfo/version | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/files_sharing/appinfo/update.php b/apps/files_sharing/appinfo/update.php index bc33dd4043..87635a10b1 100644 --- a/apps/files_sharing/appinfo/update.php +++ b/apps/files_sharing/appinfo/update.php @@ -70,10 +70,10 @@ if (version_compare($installedVersion, '0.3', '<')) { } // clean up oc_share table from files which are no longer exists -if (version_compare($installedVersion, '0.3.4', '<')) { +if (version_compare($installedVersion, '0.3.5', '<')) { // get all shares where the original file no longer exists - $findShares = \OC_DB::prepare('SELECT `file_source` FROM `*PREFIX*share` LEFT JOIN `*PREFIX*filecache` ON `file_source` = `*PREFIX*filecache`.`fileid` WHERE `*PREFIX*filecache`.`fileid` IS NULL'); + $findShares = \OC_DB::prepare('SELECT `file_source` FROM `*PREFIX*share` LEFT JOIN `*PREFIX*filecache` ON `file_source` = `*PREFIX*filecache`.`fileid` WHERE `*PREFIX*filecache`.`fileid` IS NULL AND `*PREFIX*share`.`item_type` IN (`file`, `folder`)'); $sharesFound = $findShares->execute(array())->fetchAll(); // delete those shares from the oc_share table diff --git a/apps/files_sharing/appinfo/version b/apps/files_sharing/appinfo/version index 448a0fa11c..09e9157034 100644 --- a/apps/files_sharing/appinfo/version +++ b/apps/files_sharing/appinfo/version @@ -1 +1 @@ -0.3.4 \ No newline at end of file +0.3.5 \ No newline at end of file From 6284ab31de660e4400e7e244e2a71096e6ed8f3b Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Tue, 8 Oct 2013 15:45:52 +0200 Subject: [PATCH 038/107] fix escaping --- apps/files_sharing/appinfo/update.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files_sharing/appinfo/update.php b/apps/files_sharing/appinfo/update.php index 87635a10b1..0d827da28e 100644 --- a/apps/files_sharing/appinfo/update.php +++ b/apps/files_sharing/appinfo/update.php @@ -73,7 +73,7 @@ if (version_compare($installedVersion, '0.3', '<')) { if (version_compare($installedVersion, '0.3.5', '<')) { // get all shares where the original file no longer exists - $findShares = \OC_DB::prepare('SELECT `file_source` FROM `*PREFIX*share` LEFT JOIN `*PREFIX*filecache` ON `file_source` = `*PREFIX*filecache`.`fileid` WHERE `*PREFIX*filecache`.`fileid` IS NULL AND `*PREFIX*share`.`item_type` IN (`file`, `folder`)'); + $findShares = \OC_DB::prepare('SELECT `file_source` FROM `*PREFIX*share` LEFT JOIN `*PREFIX*filecache` ON `file_source` = `*PREFIX*filecache`.`fileid` WHERE `*PREFIX*filecache`.`fileid` IS NULL AND `*PREFIX*share`.`item_type` IN (\'file\', \'folder\')'); $sharesFound = $findShares->execute(array())->fetchAll(); // delete those shares from the oc_share table From 835f36cb09c9eb13e7475ba49c89802e50b8eec9 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Tue, 8 Oct 2013 16:43:23 +0200 Subject: [PATCH 039/107] find users which are in the same group --- core/ajax/share.php | 2 +- lib/private/group.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/core/ajax/share.php b/core/ajax/share.php index 1166ea3198..dbad8f2e97 100644 --- a/core/ajax/share.php +++ b/core/ajax/share.php @@ -293,7 +293,7 @@ if (isset($_POST['action']) && isset($_POST['itemType']) && isset($_POST['itemSo while ($count < 15 && count($users) == $limit) { $limit = 15 - $count; if ($sharePolicy == 'groups_only') { - $users = OC_Group::DisplayNamesInGroups($groups, $_GET['search'], $limit, $offset); + $users = OC_Group::DisplayNamesInGroups($usergroups, $_GET['search'], $limit, $offset); } else { $users = OC_User::getDisplayNames($_GET['search'], $limit, $offset); } diff --git a/lib/private/group.php b/lib/private/group.php index ba93dc129a..9144ef683b 100644 --- a/lib/private/group.php +++ b/lib/private/group.php @@ -265,7 +265,7 @@ class OC_Group { public static function displayNamesInGroup($gid, $search = '', $limit = -1, $offset = 0) { $group = self::getManager()->get($gid); if ($group) { - $users = $group->searchDisplayName($search . $limit, $offset); + $users = $group->searchDisplayName($search, $limit, $offset); $displayNames = array(); foreach ($users as $user) { $displayNames[] = $user->getDisplayName(); From cddb85c5886498771d0b92f1a22f17eeb98f44eb Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Tue, 8 Oct 2013 17:19:58 +0200 Subject: [PATCH 040/107] Added filesApp flag as input field for files app detection Since the files app can be reached under multiple URLs, either root, files.php or public.php, a flag has been added to the DOM to help apps (like file viewers) to detect whether they are currently in the files app. --- apps/files/templates/index.php | 1 + apps/files_sharing/templates/public.php | 1 + 2 files changed, 2 insertions(+) diff --git a/apps/files/templates/index.php b/apps/files/templates/index.php index 5e7ad41b0f..ebdca097e7 100644 --- a/apps/files/templates/index.php +++ b/apps/files/templates/index.php @@ -108,6 +108,7 @@ + diff --git a/apps/files_sharing/templates/public.php b/apps/files_sharing/templates/public.php index e53887c359..5d935f645e 100644 --- a/apps/files_sharing/templates/public.php +++ b/apps/files_sharing/templates/public.php @@ -2,6 +2,7 @@ + From 00a0588807d718119b52ae66ec7eb01678bf0369 Mon Sep 17 00:00:00 2001 From: Andreas Fischer Date: Sun, 29 Sep 2013 22:37:33 +0200 Subject: [PATCH 041/107] Test OC_User_Database in Test_User_Database instead of OC_User_Dummy. --- tests/lib/user/database.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/lib/user/database.php b/tests/lib/user/database.php index fe7d87c44d..9f21265c98 100644 --- a/tests/lib/user/database.php +++ b/tests/lib/user/database.php @@ -33,7 +33,7 @@ class Test_User_Database extends Test_User_Backend { } public function setUp() { - $this->backend=new OC_User_Dummy(); + $this->backend=new OC_User_Database(); } public function tearDown() { From 46cd3082b013f90fb8ce7269f40bb26d85bbee00 Mon Sep 17 00:00:00 2001 From: Andreas Fischer Date: Tue, 8 Oct 2013 19:14:13 +0200 Subject: [PATCH 042/107] Test_User_Backend::getUser() does not return an array, it returns a string. --- tests/lib/user/backend.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/lib/user/backend.php b/tests/lib/user/backend.php index 40674424c9..62ea0befbd 100644 --- a/tests/lib/user/backend.php +++ b/tests/lib/user/backend.php @@ -39,7 +39,7 @@ abstract class Test_User_Backend extends PHPUnit_Framework_TestCase { /** * get a new unique user name * test cases can override this in order to clean up created user - * @return array + * @return string */ public function getUser() { return uniqid('test_'); From 1f11dc72009e25ba0c6259289431c192eae740df Mon Sep 17 00:00:00 2001 From: Andreas Fischer Date: Tue, 8 Oct 2013 19:22:45 +0200 Subject: [PATCH 043/107] Use parent:: in Test_User_Database::getUser(). --- tests/lib/user/database.php | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/tests/lib/user/database.php b/tests/lib/user/database.php index 9f21265c98..d7cc39ae38 100644 --- a/tests/lib/user/database.php +++ b/tests/lib/user/database.php @@ -21,13 +21,8 @@ */ class Test_User_Database extends Test_User_Backend { - /** - * get a new unique user name - * test cases can override this in order to clean up created user - * @return array - */ public function getUser() { - $user=uniqid('test_'); + $user = parent::getUser(); $this->users[]=$user; return $user; } From 6eab36a89b790e2a9355384010f640c4017c03b2 Mon Sep 17 00:00:00 2001 From: Andreas Fischer Date: Tue, 8 Oct 2013 19:48:49 +0200 Subject: [PATCH 044/107] Make OC_User_Dummy::checkPassword() compatible with OC_User_Example. The user id has to be returned. --- lib/private/user/dummy.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/private/user/dummy.php b/lib/private/user/dummy.php index b5b7a6c3c7..f4d11428f2 100644 --- a/lib/private/user/dummy.php +++ b/lib/private/user/dummy.php @@ -88,8 +88,8 @@ class OC_User_Dummy extends OC_User_Backend { * returns the user id or false */ public function checkPassword($uid, $password) { - if (isset($this->users[$uid])) { - return ($this->users[$uid] == $password); + if (isset($this->users[$uid]) && $this->users[$uid] == $password) { + return $uid; } else { return false; } From 114e9d44032bdaf4e1c117e5859f4fe864b23c78 Mon Sep 17 00:00:00 2001 From: Andreas Fischer Date: Tue, 8 Oct 2013 19:53:20 +0200 Subject: [PATCH 045/107] Adjust return value tests for checkPassword() to what OC_User_Example says. --- tests/lib/user/backend.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/lib/user/backend.php b/tests/lib/user/backend.php index 62ea0befbd..1384c54a92 100644 --- a/tests/lib/user/backend.php +++ b/tests/lib/user/backend.php @@ -82,8 +82,8 @@ abstract class Test_User_Backend extends PHPUnit_Framework_TestCase { $this->assertTrue($this->backend->userExists($name1)); $this->assertTrue($this->backend->userExists($name2)); - $this->assertTrue($this->backend->checkPassword($name1, 'pass1')); - $this->assertTrue($this->backend->checkPassword($name2, 'pass2')); + $this->assertSame($name1, $this->backend->checkPassword($name1, 'pass1')); + $this->assertSame($name2, $this->backend->checkPassword($name2, 'pass2')); $this->assertFalse($this->backend->checkPassword($name1, 'pass2')); $this->assertFalse($this->backend->checkPassword($name2, 'pass1')); @@ -93,7 +93,7 @@ abstract class Test_User_Backend extends PHPUnit_Framework_TestCase { $this->backend->setPassword($name1, 'newpass1'); $this->assertFalse($this->backend->checkPassword($name1, 'pass1')); - $this->assertTrue($this->backend->checkPassword($name1, 'newpass1')); + $this->assertSame($name1, $this->backend->checkPassword($name1, 'newpass1')); $this->assertFalse($this->backend->checkPassword($name2, 'newpass1')); } } From 75588fc0b6556d64825e842d4cf62ea572792723 Mon Sep 17 00:00:00 2001 From: Andreas Fischer Date: Tue, 8 Oct 2013 20:03:16 +0200 Subject: [PATCH 046/107] Use strict comparison === instead of ==. --- lib/private/user/dummy.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/private/user/dummy.php b/lib/private/user/dummy.php index f4d11428f2..52be7edfa7 100644 --- a/lib/private/user/dummy.php +++ b/lib/private/user/dummy.php @@ -88,7 +88,7 @@ class OC_User_Dummy extends OC_User_Backend { * returns the user id or false */ public function checkPassword($uid, $password) { - if (isset($this->users[$uid]) && $this->users[$uid] == $password) { + if (isset($this->users[$uid]) && $this->users[$uid] === $password) { return $uid; } else { return false; From 3cf4c46c43e7ee7221eb26173bd530c3dd97d0b4 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Tue, 8 Oct 2013 20:42:35 +0200 Subject: [PATCH 047/107] catch unknown timezone and fall-back to UTC --- lib/private/log/owncloud.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lib/private/log/owncloud.php b/lib/private/log/owncloud.php index 528c6bc38b..5123ba7f17 100644 --- a/lib/private/log/owncloud.php +++ b/lib/private/log/owncloud.php @@ -52,7 +52,11 @@ class OC_Log_Owncloud { // default to ISO8601 $format = OC_Config::getValue('logdateformat', 'Y-m-d H:i:s'); $logtimezone=OC_Config::getValue( "logtimezone", 'UTC' ); - $timezone = new DateTimeZone($logtimezone); + try { + $timezone = new DateTimeZone($logtimezone); + } catch (Exception $e) { + $timezone = new DateTimeZone('UTC'); + } $time = new DateTime(null, $timezone); $entry=array('app'=>$app, 'message'=>$message, 'level'=>$level, 'time'=> $time->format($format)); $handle = @fopen(self::$logFile, 'a'); From 6f3c49dabbc046f5a160565467a2735f3264d7ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Tue, 8 Oct 2013 21:52:54 +0200 Subject: [PATCH 048/107] fixing php 5.3 compatibility PHP Fatal error: Can't inherit abstract function OCP\ISession::set() (previously declared abstract in OC\Session\Session) --- lib/private/session/session.php | 35 ++++----------------------------- 1 file changed, 4 insertions(+), 31 deletions(-) diff --git a/lib/private/session/session.php b/lib/private/session/session.php index c55001ecca..fe160faa26 100644 --- a/lib/private/session/session.php +++ b/lib/private/session/session.php @@ -8,7 +8,10 @@ namespace OC\Session; -abstract class Session implements \ArrayAccess, \OCP\ISession { +use OCP\ISession; + +abstract class Session implements \ArrayAccess, ISession { + /** * $name serves as a namespace for the session keys * @@ -16,36 +19,6 @@ abstract class Session implements \ArrayAccess, \OCP\ISession { */ abstract public function __construct($name); - /** - * @param string $key - * @param mixed $value - */ - abstract public function set($key, $value); - - /** - * @param string $key - * @return mixed should return null if $key does not exist - */ - abstract public function get($key); - - /** - * @param string $key - * @return bool - */ - abstract public function exists($key); - - /** - * should not throw any errors if $key does not exist - * - * @param string $key - */ - abstract public function remove($key); - - /** - * removes all entries within the cache namespace - */ - abstract public function clear(); - /** * @param mixed $offset * @return bool From 51b581a84d6cb8e984605551599b7c37e7ff1386 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Tue, 8 Oct 2013 23:00:41 +0200 Subject: [PATCH 049/107] php 5.3 compatibility for \OC\Files\Storage --- lib/private/files/storage/storage.php | 279 -------------------------- 1 file changed, 279 deletions(-) diff --git a/lib/private/files/storage/storage.php b/lib/private/files/storage/storage.php index b673bb9a32..5be90f2475 100644 --- a/lib/private/files/storage/storage.php +++ b/lib/private/files/storage/storage.php @@ -14,278 +14,6 @@ namespace OC\Files\Storage; * All paths passed to the storage are relative to the storage and should NOT have a leading slash. */ interface Storage extends \OCP\Files\Storage { - /** - * $parameters is a free form array with the configuration options needed to construct the storage - * - * @param array $parameters - */ - public function __construct($parameters); - - /** - * Get the identifier for the storage, - * the returned id should be the same for every storage object that is created with the same parameters - * and two storage objects with the same id should refer to two storages that display the same files. - * - * @return string - */ - public function getId(); - - /** - * see http://php.net/manual/en/function.mkdir.php - * - * @param string $path - * @return bool - */ - public function mkdir($path); - - /** - * see http://php.net/manual/en/function.rmdir.php - * - * @param string $path - * @return bool - */ - public function rmdir($path); - - /** - * see http://php.net/manual/en/function.opendir.php - * - * @param string $path - * @return resource - */ - public function opendir($path); - - /** - * see http://php.net/manual/en/function.is_dir.php - * - * @param string $path - * @return bool - */ - public function is_dir($path); - - /** - * see http://php.net/manual/en/function.is_file.php - * - * @param string $path - * @return bool - */ - public function is_file($path); - - /** - * see http://php.net/manual/en/function.stat.php - * only the following keys are required in the result: size and mtime - * - * @param string $path - * @return array - */ - public function stat($path); - - /** - * see http://php.net/manual/en/function.filetype.php - * - * @param string $path - * @return bool - */ - public function filetype($path); - - /** - * see http://php.net/manual/en/function.filesize.php - * The result for filesize when called on a folder is required to be 0 - * - * @param string $path - * @return int - */ - public function filesize($path); - - /** - * check if a file can be created in $path - * - * @param string $path - * @return bool - */ - public function isCreatable($path); - - /** - * check if a file can be read - * - * @param string $path - * @return bool - */ - public function isReadable($path); - - /** - * check if a file can be written to - * - * @param string $path - * @return bool - */ - public function isUpdatable($path); - - /** - * check if a file can be deleted - * - * @param string $path - * @return bool - */ - public function isDeletable($path); - - /** - * check if a file can be shared - * - * @param string $path - * @return bool - */ - public function isSharable($path); - - /** - * get the full permissions of a path. - * Should return a combination of the PERMISSION_ constants defined in lib/public/constants.php - * - * @param string $path - * @return int - */ - public function getPermissions($path); - - /** - * see http://php.net/manual/en/function.file_exists.php - * - * @param string $path - * @return bool - */ - public function file_exists($path); - - /** - * see http://php.net/manual/en/function.filemtime.php - * - * @param string $path - * @return int - */ - public function filemtime($path); - - /** - * see http://php.net/manual/en/function.file_get_contents.php - * - * @param string $path - * @return string - */ - public function file_get_contents($path); - - /** - * see http://php.net/manual/en/function.file_put_contents.php - * - * @param string $path - * @param string $data - * @return bool - */ - public function file_put_contents($path, $data); - - /** - * see http://php.net/manual/en/function.unlink.php - * - * @param string $path - * @return bool - */ - public function unlink($path); - - /** - * see http://php.net/manual/en/function.rename.php - * - * @param string $path1 - * @param string $path2 - * @return bool - */ - public function rename($path1, $path2); - - /** - * see http://php.net/manual/en/function.copy.php - * - * @param string $path1 - * @param string $path2 - * @return bool - */ - public function copy($path1, $path2); - - /** - * see http://php.net/manual/en/function.fopen.php - * - * @param string $path - * @param string $mode - * @return resource - */ - public function fopen($path, $mode); - - /** - * get the mimetype for a file or folder - * The mimetype for a folder is required to be "httpd/unix-directory" - * - * @param string $path - * @return string - */ - public function getMimeType($path); - - /** - * see http://php.net/manual/en/function.hash.php - * - * @param string $type - * @param string $path - * @param bool $raw - * @return string - */ - public function hash($type, $path, $raw = false); - - /** - * see http://php.net/manual/en/function.free_space.php - * - * @param string $path - * @return int - */ - public function free_space($path); - - /** - * search for occurrences of $query in file names - * - * @param string $query - * @return array - */ - public function search($query); - - /** - * see http://php.net/manual/en/function.touch.php - * If the backend does not support the operation, false should be returned - * - * @param string $path - * @param int $mtime - * @return bool - */ - public function touch($path, $mtime = null); - - /** - * get the path to a local version of the file. - * The local version of the file can be temporary and doesn't have to be persistent across requests - * - * @param string $path - * @return string - */ - public function getLocalFile($path); - - /** - * get the path to a local version of the folder. - * The local version of the folder can be temporary and doesn't have to be persistent across requests - * - * @param string $path - * @return string - */ - public function getLocalFolder($path); - /** - * check if a file or folder has been updated since $time - * - * @param string $path - * @param int $time - * @return bool - * - * hasUpdated for folders should return at least true if a file inside the folder is add, removed or renamed. - * returning true for other changes in the folder is optional - */ - public function hasUpdated($path, $time); /** * get a cache instance for the storage @@ -333,11 +61,4 @@ interface Storage extends \OCP\Files\Storage { */ public function getStorageCache(); - /** - * get the ETag for a file or folder - * - * @param string $path - * @return string - */ - public function getETag($path); } From 8a06f2e12882a883e1aaae41e7450d17cf746946 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Tue, 8 Oct 2013 23:05:19 +0200 Subject: [PATCH 050/107] php 5.3 compatibility for Test_Files_Sharing_Api --- apps/files_sharing/tests/api.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/apps/files_sharing/tests/api.php b/apps/files_sharing/tests/api.php index c55c186f08..63df0dd7dc 100644 --- a/apps/files_sharing/tests/api.php +++ b/apps/files_sharing/tests/api.php @@ -295,7 +295,8 @@ class Test_Files_Sharing_Api extends \PHPUnit_Framework_TestCase { $result = Share\Api::getShare($params); $this->assertEquals(404, $result->getStatusCode()); - $this->assertEquals('share doesn\'t exist', $result->getMeta()['message']); + $meta = $result->getMeta(); + $this->assertEquals('share doesn\'t exist', $meta['message']); } @@ -351,7 +352,8 @@ class Test_Files_Sharing_Api extends \PHPUnit_Framework_TestCase { $result = Share\Api::updateShare($params); - $this->assertTrue($result->succeeded(), $result->getMeta()['message']); + $meta = $result->getMeta(); + $this->assertTrue($result->succeeded(), $meta['message']); $items = \OCP\Share::getItemShared('file', $userShare['file_source']); From 7bd5352509e9d2dd51bded32144719bd83296fc1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Tue, 8 Oct 2013 23:14:08 +0200 Subject: [PATCH 051/107] php 5.3 compatibility for \OC\AppFramework\DependencyInjection\DIContainer --- lib/private/appframework/dependencyinjection/dicontainer.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/private/appframework/dependencyinjection/dicontainer.php b/lib/private/appframework/dependencyinjection/dicontainer.php index 3755d45fa0..e62b72fd97 100644 --- a/lib/private/appframework/dependencyinjection/dicontainer.php +++ b/lib/private/appframework/dependencyinjection/dicontainer.php @@ -89,11 +89,12 @@ class DIContainer extends SimpleContainer implements IAppContainer{ return new SecurityMiddleware($c['API'], $c['Request']); }); - $this['MiddlewareDispatcher'] = $this->share(function($c){ + $middleWares = $this->middleWares; + $this['MiddlewareDispatcher'] = $this->share(function($c) use ($middleWares) { $dispatcher = new MiddlewareDispatcher(); $dispatcher->registerMiddleware($c['SecurityMiddleware']); - foreach($this->middleWares as $middleWare) { + foreach($middleWares as $middleWare) { $dispatcher->registerMiddleware($middleWare); } From c1e5725db99e046792ce68edfea406259a8a2877 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Wed, 9 Oct 2013 10:40:20 +0200 Subject: [PATCH 052/107] changed default time format to ISO8601 --- lib/private/log/owncloud.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/private/log/owncloud.php b/lib/private/log/owncloud.php index 5123ba7f17..f3b4358440 100644 --- a/lib/private/log/owncloud.php +++ b/lib/private/log/owncloud.php @@ -50,7 +50,7 @@ class OC_Log_Owncloud { $minLevel=min(OC_Config::getValue( "loglevel", OC_Log::WARN ), OC_Log::ERROR); if($level>=$minLevel) { // default to ISO8601 - $format = OC_Config::getValue('logdateformat', 'Y-m-d H:i:s'); + $format = OC_Config::getValue('logdateformat', 'c'); $logtimezone=OC_Config::getValue( "logtimezone", 'UTC' ); try { $timezone = new DateTimeZone($logtimezone); From 44049639189b8f93b34039ba063e4151e03dfaa7 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Wed, 9 Oct 2013 11:11:55 +0200 Subject: [PATCH 053/107] fix trashbin layout --- apps/files_trashbin/templates/index.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/apps/files_trashbin/templates/index.php b/apps/files_trashbin/templates/index.php index 82ba060883..9b01a2589a 100644 --- a/apps/files_trashbin/templates/index.php +++ b/apps/files_trashbin/templates/index.php @@ -17,7 +17,9 @@ + t( 'Deleted' )); ?> From 01371e318713183cef45b2471af2e80c9dc18e72 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Mon, 7 Oct 2013 18:06:27 +0200 Subject: [PATCH 054/107] Fixed login warning style #5065 Removed bold so it takes less space and set alignment to left. --- core/css/styles.css | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/core/css/styles.css b/core/css/styles.css index 6406bcd7e6..be53b67c85 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -431,7 +431,7 @@ label.infield { cursor:text !important; top:1.05em; left:.85em; } padding: 10px; color: #d2322d; background-color: rgba(0,0,0,.3); - text-align: center; + text-align: left; border-radius: 3px; cursor: default; } @@ -466,7 +466,6 @@ label.infield { cursor:text !important; top:1.05em; left:.85em; } } #body-login .warning { margin: 0 7px 5px; - font-weight: bold; } #body-login .warning legend { -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; From 9e3d28871e837d42fa495a9237bea24b0f0fd414 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Wed, 9 Oct 2013 12:01:25 +0200 Subject: [PATCH 055/107] fix delete/restore individual files --- apps/files_trashbin/js/trash.js | 49 ++++++++++++++++----------------- 1 file changed, 23 insertions(+), 26 deletions(-) diff --git a/apps/files_trashbin/js/trash.js b/apps/files_trashbin/js/trash.js index d73eadb601..c530727e62 100644 --- a/apps/files_trashbin/js/trash.js +++ b/apps/files_trashbin/js/trash.js @@ -4,14 +4,13 @@ $(document).ready(function() { if (typeof FileActions !== 'undefined') { FileActions.register('all', 'Restore', OC.PERMISSION_READ, OC.imagePath('core', 'actions/history'), function(filename) { var tr=$('tr').filterAttr('data-file', filename); - var spinner = ''; - var undeleteAction = $('tr').filterAttr('data-file',filename).children("td.date"); - var files = tr.attr('data-file'); - undeleteAction[0].innerHTML = undeleteAction[0].innerHTML+spinner; + var deleteAction = $('tr').filterAttr('data-file',filename).children("td.date").children(".action.delete"); + deleteAction.removeClass('delete-icon').addClass('progress-icon'); disableActions(); $.post(OC.filePath('files_trashbin','ajax','undelete.php'), - {files:JSON.stringify([files]), dirlisting:tr.attr('data-dirlisting') }, + {files:JSON.stringify([filename]), dirlisting:tr.attr('data-dirlisting') }, function(result){ + console.log("get result"); for (var i = 0; i < result.data.success.length; i++) { var row = document.getElementById(result.data.success[i].filename); row.parentNode.removeChild(row); @@ -30,16 +29,12 @@ $(document).ready(function() { return OC.imagePath('core', 'actions/delete'); }, function (filename) { $('.tipsy').remove(); - var tr=$('tr').filterAttr('data-file', filename); var deleteAction = $('tr').filterAttr('data-file',filename).children("td.date").children(".action.delete"); - var oldHTML = deleteAction[0].outerHTML; - var newHTML = ''; - var files = tr.attr('data-file'); - deleteAction[0].outerHTML = newHTML; + deleteAction.removeClass('delete-icon').addClass('progress-icon'); disableActions(); $.post(OC.filePath('files_trashbin','ajax','delete.php'), - {files:JSON.stringify([files]), dirlisting:tr.attr('data-dirlisting') }, + {files:JSON.stringify([filename]), dirlisting:tr.attr('data-dirlisting') }, function(result){ for (var i = 0; i < result.data.success.length; i++) { var row = document.getElementById(result.data.success[i].filename); @@ -50,9 +45,10 @@ $(document).ready(function() { } enableActions(); FileList.updateFileSummary(); - }); + } + ); - }); + }); // Sets the select_all checkbox behaviour : $('#select_all').click(function() { @@ -110,22 +106,23 @@ $(document).ready(function() { } $.post(OC.filePath('files_trashbin','ajax','undelete.php'), - {files:fileslist, dirlisting:dirlisting}, - function(result){ - for (var i = 0; i < result.data.success.length; i++) { - var row = document.getElementById(result.data.success[i].filename); - row.parentNode.removeChild(row); - } - if (result.status !== 'success') { - OC.dialogs.alert(result.data.message, t('core', 'Error')); - } - enableActions(); - }); - }); + {files:fileslist, dirlisting:dirlisting}, + function(result){ + for (var i = 0; i < result.data.success.length; i++) { + var row = document.getElementById(result.data.success[i].filename); + row.parentNode.removeChild(row); + } + if (result.status !== 'success') { + OC.dialogs.alert(result.data.message, t('core', 'Error')); + } + enableActions(); + } + ); + + }); $('.delete').click('click',function(event) { event.preventDefault(); - console.log("delete selected"); var spinner = ''; var files=getSelectedFiles('file'); var fileslist = JSON.stringify(files); From 31a91ef89294087335077b3ffea1b2a6d882c3ef Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Wed, 9 Oct 2013 12:35:15 +0200 Subject: [PATCH 056/107] fix group delete/restore --- apps/files_trashbin/index.php | 2 +- apps/files_trashbin/js/trash.js | 35 ++++++++++++++++----------------- 2 files changed, 18 insertions(+), 19 deletions(-) diff --git a/apps/files_trashbin/index.php b/apps/files_trashbin/index.php index d8661e170a..d079af3fb6 100644 --- a/apps/files_trashbin/index.php +++ b/apps/files_trashbin/index.php @@ -5,7 +5,6 @@ OCP\User::checkLoggedIn(); OCP\App::setActiveNavigationEntry('files_index'); -OCP\Util::addScript('files_trashbin', 'trash'); OCP\Util::addScript('files_trashbin', 'disableDefaultActions'); OCP\Util::addScript('files', 'fileactions'); $tmpl = new OCP\Template('files_trashbin', 'index', 'user'); @@ -15,6 +14,7 @@ OCP\Util::addScript('files', 'filelist'); // filelist overrides OCP\Util::addScript('files_trashbin', 'filelist'); OCP\Util::addscript('files', 'files'); +OCP\Util::addScript('files_trashbin', 'trash'); $dir = isset($_GET['dir']) ? stripslashes($_GET['dir']) : ''; diff --git a/apps/files_trashbin/js/trash.js b/apps/files_trashbin/js/trash.js index c530727e62..3cbe79686d 100644 --- a/apps/files_trashbin/js/trash.js +++ b/apps/files_trashbin/js/trash.js @@ -95,14 +95,13 @@ $(document).ready(function() { $('.undelete').click('click',function(event) { event.preventDefault(); - var spinner = ''; var files=getSelectedFiles('file'); var fileslist = JSON.stringify(files); var dirlisting=getSelectedFiles('dirlisting')[0]; disableActions(); for (var i=0; i'; var files=getSelectedFiles('file'); var fileslist = JSON.stringify(files); var dirlisting=getSelectedFiles('dirlisting')[0]; disableActions(); for (var i=0; i Date: Wed, 9 Oct 2013 12:43:56 +0200 Subject: [PATCH 057/107] fix indention --- apps/files_trashbin/js/trash.js | 228 ++++++++++++++++---------------- 1 file changed, 114 insertions(+), 114 deletions(-) diff --git a/apps/files_trashbin/js/trash.js b/apps/files_trashbin/js/trash.js index 3cbe79686d..58821cd300 100644 --- a/apps/files_trashbin/js/trash.js +++ b/apps/files_trashbin/js/trash.js @@ -3,110 +3,110 @@ $(document).ready(function() { if (typeof FileActions !== 'undefined') { FileActions.register('all', 'Restore', OC.PERMISSION_READ, OC.imagePath('core', 'actions/history'), function(filename) { - var tr=$('tr').filterAttr('data-file', filename); - var deleteAction = $('tr').filterAttr('data-file',filename).children("td.date").children(".action.delete"); + var tr = $('tr').filterAttr('data-file', filename); + var deleteAction = $('tr').filterAttr('data-file', filename).children("td.date").children(".action.delete"); deleteAction.removeClass('delete-icon').addClass('progress-icon'); disableActions(); - $.post(OC.filePath('files_trashbin','ajax','undelete.php'), - {files:JSON.stringify([filename]), dirlisting:tr.attr('data-dirlisting') }, - function(result){ - console.log("get result"); - for (var i = 0; i < result.data.success.length; i++) { - var row = document.getElementById(result.data.success[i].filename); - row.parentNode.removeChild(row); - } - if (result.status !== 'success') { - OC.dialogs.alert(result.data.message, t('core', 'Error')); - } - enableActions(); - FileList.updateFileSummary(); - }); - - }); - }; - - FileActions.register('all', 'Delete', OC.PERMISSION_READ, function () { - return OC.imagePath('core', 'actions/delete'); - }, function (filename) { - $('.tipsy').remove(); - var tr=$('tr').filterAttr('data-file', filename); - var deleteAction = $('tr').filterAttr('data-file',filename).children("td.date").children(".action.delete"); - deleteAction.removeClass('delete-icon').addClass('progress-icon'); - disableActions(); - $.post(OC.filePath('files_trashbin','ajax','delete.php'), - {files:JSON.stringify([filename]), dirlisting:tr.attr('data-dirlisting') }, - function(result){ - for (var i = 0; i < result.data.success.length; i++) { - var row = document.getElementById(result.data.success[i].filename); - row.parentNode.removeChild(row); - } - if (result.status !== 'success') { - OC.dialogs.alert(result.data.message, t('core', 'Error')); - } - enableActions(); - FileList.updateFileSummary(); - } - ); - - }); - - // Sets the select_all checkbox behaviour : - $('#select_all').click(function() { - if($(this).attr('checked')){ - // Check all - $('td.filename input:checkbox').attr('checked', true); - $('td.filename input:checkbox').parent().parent().addClass('selected'); - }else{ - // Uncheck all - $('td.filename input:checkbox').attr('checked', false); - $('td.filename input:checkbox').parent().parent().removeClass('selected'); - } - processSelection(); - }); - - $('td.filename input:checkbox').live('change',function(event) { - if (event.shiftKey) { - var last = $(lastChecked).parent().parent().prevAll().length; - var first = $(this).parent().parent().prevAll().length; - var start = Math.min(first, last); - var end = Math.max(first, last); - var rows = $(this).parent().parent().parent().children('tr'); - for (var i = start; i < end; i++) { - $(rows).each(function(index) { - if (index === i) { - var checkbox = $(this).children().children('input:checkbox'); - $(checkbox).attr('checked', 'checked'); - $(checkbox).parent().parent().addClass('selected'); + $.post(OC.filePath('files_trashbin', 'ajax', 'undelete.php'), + {files: JSON.stringify([filename]), dirlisting: tr.attr('data-dirlisting')}, + function(result) { + for (var i = 0; i < result.data.success.length; i++) { + var row = document.getElementById(result.data.success[i].filename); + row.parentNode.removeChild(row); } - }); - } - } - var selectedCount=$('td.filename input:checkbox:checked').length; - $(this).parent().parent().toggleClass('selected'); - if(!$(this).attr('checked')){ - $('#select_all').attr('checked',false); - }else{ - if(selectedCount==$('td.filename input:checkbox').length){ - $('#select_all').attr('checked',true); - } - } - processSelection(); + if (result.status !== 'success') { + OC.dialogs.alert(result.data.message, t('core', 'Error')); + } + enableActions(); + FileList.updateFileSummary(); + } + ); + }); + }; - $('.undelete').click('click',function(event) { - event.preventDefault(); - var files=getSelectedFiles('file'); - var fileslist = JSON.stringify(files); - var dirlisting=getSelectedFiles('dirlisting')[0]; - disableActions(); - for (var i=0; i Date: Wed, 9 Oct 2013 13:15:53 +0200 Subject: [PATCH 058/107] fix checkbox --- apps/files_trashbin/js/trash.js | 52 ++++++++++----------------------- 1 file changed, 15 insertions(+), 37 deletions(-) diff --git a/apps/files_trashbin/js/trash.js b/apps/files_trashbin/js/trash.js index 58821cd300..5fcc60100b 100644 --- a/apps/files_trashbin/js/trash.js +++ b/apps/files_trashbin/js/trash.js @@ -61,11 +61,12 @@ $(document).ready(function() { $('td.filename input:checkbox').attr('checked', false); $('td.filename input:checkbox').parent().parent().removeClass('selected'); } - processSelection(); + procesSelection(); }); - $('td.filename input:checkbox').live('change', function(event) { + $('#fileList').on('click', 'td.filename a', function(event) { if (event.shiftKey) { + event.preventDefault(); var last = $(lastChecked).parent().parent().prevAll().length; var first = $(this).parent().parent().prevAll().length; var start = Math.min(first, last); @@ -73,7 +74,7 @@ $(document).ready(function() { var rows = $(this).parent().parent().parent().children('tr'); for (var i = start; i < end; i++) { $(rows).each(function(index) { - if (index === i) { + if (index == i) { var checkbox = $(this).children().children('input:checkbox'); $(checkbox).attr('checked', 'checked'); $(checkbox).parent().parent().addClass('selected'); @@ -81,16 +82,21 @@ $(document).ready(function() { }); } } - var selectedCount = $('td.filename input:checkbox:checked').length; - $(this).parent().parent().toggleClass('selected'); - if (!$(this).attr('checked')) { - $('#select_all').attr('checked', false); + var checkbox = $(this).parent().children('input:checkbox'); + lastChecked = checkbox; + if ($(checkbox).attr('checked')) { + $(checkbox).removeAttr('checked'); + $(checkbox).parent().parent().removeClass('selected'); + $('#select_all').removeAttr('checked'); } else { + $(checkbox).attr('checked', 'checked'); + $(checkbox).parent().parent().toggleClass('selected'); + var selectedCount = $('td.filename input:checkbox:checked').length; if (selectedCount == $('td.filename input:checkbox').length) { - $('#select_all').attr('checked', true); + $('#select_all').attr('checked', 'checked'); } } - processSelection(); + procesSelection(); }); $('.undelete').click('click', function(event) { @@ -178,34 +184,6 @@ $(document).ready(function() { }; }); -function processSelection(){ - var selected=getSelectedFiles(); - var selectedFiles=selected.filter(function(el){return el.type === 'file'}); - var selectedFolders=selected.filter(function(el){return el.type === 'dir'}); - if(selectedFiles.length === 0 && selectedFolders.length === 0) { - $('#headerName>span.name').text(t('files','Name')); - $('#modified').text(t('files','Deleted')); - $('table').removeClass('multiselect'); - $('.selectedActions').hide(); - } - else { - $('.selectedActions').show(); - var selection=''; - if(selectedFolders.length>0){ - selection += n('files', '%n folder', '%n folders', selectedFolders.length); - if(selectedFiles.length>0){ - selection+=' & '; - } - } - if(selectedFiles.length>0){ - selection += n('files', '%n file', '%n files', selectedFiles.length); - } - $('#headerName>span.name').text(selection); - $('#modified').text(''); - $('table').addClass('multiselect'); - } -} - /** * @brief get a list of selected files * @param string property (option) the property of the file requested From 45510f2fe0c393ceee905a5a2227015bf212e6dc Mon Sep 17 00:00:00 2001 From: Frank Karlitschek Date: Wed, 9 Oct 2013 13:54:41 +0200 Subject: [PATCH 059/107] 6.0 alpha 1 --- version.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/version.php b/version.php index b4396d1d2d..b3e34b5df4 100644 --- a/version.php +++ b/version.php @@ -1,10 +1,10 @@ Date: Wed, 9 Oct 2013 15:35:09 +0200 Subject: [PATCH 060/107] due to internal implementations touch will always be successful - $mtime will be stored in the cache from desktop client perspective it is necessary to set the mtime under every condition --- lib/private/connector/sabre/node.php | 6 ------ 1 file changed, 6 deletions(-) diff --git a/lib/private/connector/sabre/node.php b/lib/private/connector/sabre/node.php index fa27abb381..c38e9f8637 100644 --- a/lib/private/connector/sabre/node.php +++ b/lib/private/connector/sabre/node.php @@ -147,12 +147,6 @@ abstract class OC_Connector_Sabre_Node implements Sabre_DAV_INode, Sabre_DAV_IPr * Even if the modification time is set to a custom value the access time is set to now. */ public function touch($mtime) { - - // touch is only allowed if the update privilege is granted - if (!\OC\Files\Filesystem::isUpdatable($this->path)) { - throw new \Sabre_DAV_Exception_Forbidden(); - } - \OC\Files\Filesystem::touch($this->path, $mtime); } From 38e5da05afede2e6dcd5465f47b3e4576ad37d64 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Wed, 9 Oct 2013 15:56:21 +0200 Subject: [PATCH 061/107] only encrypt file to users with encryption keys --- apps/files_encryption/hooks/hooks.php | 2 -- apps/files_encryption/lib/stream.php | 3 ++- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/apps/files_encryption/hooks/hooks.php b/apps/files_encryption/hooks/hooks.php index 2df860a8e5..d9a76becf2 100644 --- a/apps/files_encryption/hooks/hooks.php +++ b/apps/files_encryption/hooks/hooks.php @@ -92,8 +92,6 @@ class Hooks { } // Encrypt existing user files: - // This serves to upgrade old versions of the encryption - // app (see appinfo/spec.txt) if ( $util->encryptAll('/' . $params['uid'] . '/' . 'files', $session->getLegacyKey(), $params['password']) ) { diff --git a/apps/files_encryption/lib/stream.php b/apps/files_encryption/lib/stream.php index 02955bb064..b25ba7bb67 100644 --- a/apps/files_encryption/lib/stream.php +++ b/apps/files_encryption/lib/stream.php @@ -506,9 +506,10 @@ class Stream { // Get all users sharing the file includes current user $uniqueUserIds = $util->getSharingUsersArray($sharingEnabled, $this->relPath, $this->userId); + $checkedUserIds = $util->filterShareReadyUsers($uniqueUserIds); // Fetch public keys for all sharing users - $publicKeys = Keymanager::getPublicKeys($this->rootView, $uniqueUserIds); + $publicKeys = Keymanager::getPublicKeys($this->rootView, $checkedUserIds['ready']); // Encrypt enc key for all sharing users $this->encKeyfiles = Crypt::multiKeyEncrypt($this->plainKey, $publicKeys); From 7ab4fef7a9bee5ecad7ccf6fbc30cb8087861d4b Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Wed, 9 Oct 2013 16:17:43 +0200 Subject: [PATCH 062/107] update file summary after group delete/restore --- apps/files_trashbin/js/trash.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/files_trashbin/js/trash.js b/apps/files_trashbin/js/trash.js index 5fcc60100b..4e83afcdb0 100644 --- a/apps/files_trashbin/js/trash.js +++ b/apps/files_trashbin/js/trash.js @@ -121,6 +121,7 @@ $(document).ready(function() { OC.dialogs.alert(result.data.message, t('core', 'Error')); } enableActions(); + FileList.updateFileSummary(); } ); }); @@ -148,6 +149,7 @@ $(document).ready(function() { OC.dialogs.alert(result.data.message, t('core', 'Error')); } enableActions(); + FileList.updateFileSummary(); } ); From 08a04357042e5f0b8946f2bdc13990b00db1cad7 Mon Sep 17 00:00:00 2001 From: Axel Roenn Date: Wed, 9 Oct 2013 17:21:35 +0200 Subject: [PATCH 063/107] Added the config option to log ip addresses , default false --- config/config.sample.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/config/config.sample.php b/config/config.sample.php index 0afad880c1..fc0ff15cc9 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -145,6 +145,9 @@ $CONFIG = array( (watch out, this option can increase the size of your log file)*/ "log_query" => false, +/* Enable or disable the logging of IP addresses in case of webform auth failures */ +"log_authfailip" => false, + /* * Configure the size in bytes log rotation should happen, 0 or false disables the rotation. * This rotates the current owncloud logfile to a new name, this way the total log usage From 7fe493fdb8d662b20b435c86aa23eb3b38a271b1 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Wed, 9 Oct 2013 17:25:58 +0200 Subject: [PATCH 064/107] make sure that we only find file/folder shares --- lib/public/share.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/public/share.php b/lib/public/share.php index e6a74117aa..66605dafee 100644 --- a/lib/public/share.php +++ b/lib/public/share.php @@ -155,13 +155,13 @@ class Share { while ($source !== -1) { - // Fetch all shares of this file path from DB + // Fetch all shares with another user $query = \OC_DB::prepare( 'SELECT `share_with` FROM `*PREFIX*share` WHERE - `item_source` = ? AND `share_type` = ?' + `item_source` = ? AND `share_type` = ? AND `item_type` IN (\'file\', \'folder\')' ); $result = $query->execute(array($source, self::SHARE_TYPE_USER)); @@ -180,7 +180,7 @@ class Share { FROM `*PREFIX*share` WHERE - `item_source` = ? AND `share_type` = ?' + `item_source` = ? AND `share_type` = ? AND `item_type` IN (\'file\', \'folder\')' ); $result = $query->execute(array($source, self::SHARE_TYPE_GROUP)); @@ -201,7 +201,7 @@ class Share { FROM `*PREFIX*share` WHERE - `item_source` = ? AND `share_type` = ?' + `item_source` = ? AND `share_type` = ? AND `item_type` IN (\'file\', \'folder\')' ); $result = $query->execute(array($source, self::SHARE_TYPE_LINK)); From 38c563dcdcfc46742a55be3b9b84a37512e203d3 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Wed, 9 Oct 2013 20:34:18 +0200 Subject: [PATCH 065/107] don't trigger the create hooks when if the file already exists for file_put_contents --- lib/private/files/view.php | 3 ++- tests/lib/files/view.php | 25 +++++++++++++++++++++++++ 2 files changed, 27 insertions(+), 1 deletion(-) diff --git a/lib/private/files/view.php b/lib/private/files/view.php index aa08a5f7cc..f74b595c8d 100644 --- a/lib/private/files/view.php +++ b/lib/private/files/view.php @@ -324,7 +324,8 @@ class View { return false; } } else { - return $this->basicOperation('file_put_contents', $path, array('create', 'write'), $data); + $hooks = ($this->file_exists($path)) ? array('write') : array('create', 'write'); + return $this->basicOperation('file_put_contents', $path, $hooks, $data); } } diff --git a/tests/lib/files/view.php b/tests/lib/files/view.php index 3043f132b7..a5107c351f 100644 --- a/tests/lib/files/view.php +++ b/tests/lib/files/view.php @@ -391,4 +391,29 @@ class View extends \PHPUnit_Framework_TestCase { $this->storages[] = $storage; return $storage; } + + private $createHookPath; + + function dummyCreateHook($params) { + $this->createHookPath = $params['path']; + } + + public function testEditNoCreateHook() { + $storage1 = $this->getTestStorage(); + $storage2 = $this->getTestStorage(); + $defaultRoot = \OC\Files\Filesystem::getRoot(); + \OC\Files\Filesystem::mount($storage1, array(), '/'); + \OC\Files\Filesystem::mount($storage2, array(), $defaultRoot); + \OC_Hook::connect('OC_Filesystem', 'post_create', $this, 'dummyCreateHook'); + + $view = new \OC\Files\View($defaultRoot); + $this->hookPath = null; + + $view->file_put_contents('/asd.txt', 'foo'); + $this->assertEquals('/asd.txt', $this->createHookPath); + $this->createHookPath = null; + + $view->file_put_contents('/asd.txt', 'foo'); + $this->assertNull($this->createHookPath); + } } From 7f8eeb04747e88770a9eb49dffa028a36ab6cadc Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Wed, 9 Oct 2013 20:46:43 +0200 Subject: [PATCH 066/107] ensure the view's root is a subfolder of the the default root, not only starting the same --- lib/private/files/view.php | 5 ++++- tests/lib/files/view.php | 18 ++++++++++++++++++ 2 files changed, 22 insertions(+), 1 deletion(-) diff --git a/lib/private/files/view.php b/lib/private/files/view.php index aa08a5f7cc..76c73ea23d 100644 --- a/lib/private/files/view.php +++ b/lib/private/files/view.php @@ -709,7 +709,10 @@ class View { return false; } $defaultRoot = Filesystem::getRoot(); - return (strlen($this->fakeRoot) >= strlen($defaultRoot)) && (substr($this->fakeRoot, 0, strlen($defaultRoot)) === $defaultRoot); + if($this->fakeRoot === $defaultRoot){ + return true; + } + return (strlen($this->fakeRoot) > strlen($defaultRoot)) && (substr($this->fakeRoot, 0, strlen($defaultRoot) + 1) === $defaultRoot . '/'); } private function runHooks($hooks, $path, $post = false) { diff --git a/tests/lib/files/view.php b/tests/lib/files/view.php index 3043f132b7..e2107a0361 100644 --- a/tests/lib/files/view.php +++ b/tests/lib/files/view.php @@ -391,4 +391,22 @@ class View extends \PHPUnit_Framework_TestCase { $this->storages[] = $storage; return $storage; } + + /** + * @medium + */ + function testViewHooksIfRootStartsTheSame() { + $storage1 = $this->getTestStorage(); + $storage2 = $this->getTestStorage(); + $defaultRoot = \OC\Files\Filesystem::getRoot(); + \OC\Files\Filesystem::mount($storage1, array(), '/'); + \OC\Files\Filesystem::mount($storage2, array(), $defaultRoot . '_substorage'); + \OC_Hook::connect('OC_Filesystem', 'post_write', $this, 'dummyHook'); + + $subView = new \OC\Files\View($defaultRoot . '_substorage'); + $this->hookPath = null; + + $subView->file_put_contents('/foo.txt', 'asd'); + $this->assertNull($this->hookPath); + } } From a1719deabed4296c7daec51d926640100ac94980 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Thu, 10 Oct 2013 10:47:35 +0200 Subject: [PATCH 067/107] make sure that we are logged in ad user1 while performing the tests --- apps/files_sharing/tests/api.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/apps/files_sharing/tests/api.php b/apps/files_sharing/tests/api.php index c55c186f08..2feea9e7e2 100644 --- a/apps/files_sharing/tests/api.php +++ b/apps/files_sharing/tests/api.php @@ -58,6 +58,10 @@ class Test_Files_Sharing_Api extends \PHPUnit_Framework_TestCase { } function setUp() { + + //login as user1 + \Test_Files_Sharing_Api::loginHelper(\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER1); + $this->data = 'foobar'; $this->view = new \OC_FilesystemView('/' . \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER1 . '/files'); @@ -104,9 +108,6 @@ class Test_Files_Sharing_Api extends \PHPUnit_Framework_TestCase { */ function testCreateShare() { - //login as user1 - \Test_Files_Sharing_Api::loginHelper(\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER1); - // share to user // simulate a post request From e88b493136f2378ff403d920217e9a5af1231ee3 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Thu, 10 Oct 2013 11:10:32 +0200 Subject: [PATCH 068/107] Fixed external storage status indicator in admin page - Fixes #5241 - Fixed indicator to appear, its selector was wrong - Added spinner while saving an entry's settings - Removed ajax "async: false" that blocked the browser while saving --- apps/files_external/css/settings.css | 7 ++-- apps/files_external/js/settings.js | 51 ++++++++++++++++------------ 2 files changed, 32 insertions(+), 26 deletions(-) diff --git a/apps/files_external/css/settings.css b/apps/files_external/css/settings.css index f2f40247b2..74b1402846 100644 --- a/apps/files_external/css/settings.css +++ b/apps/files_external/css/settings.css @@ -4,7 +4,9 @@ td.status > span { width: 16px; vertical-align: text-bottom; } - +span.loading{ + background-size: 16px 16px; +} span.success { background: #37ce02; border-radius: 8px; @@ -12,9 +14,6 @@ span.success { span.error { background: #ce3702; } -span.waiting { - background: none; -} td.mountPoint, td.backend { width:10em; } td.remove>img { visibility:hidden; padding-top:0.8em; } diff --git a/apps/files_external/js/settings.js b/apps/files_external/js/settings.js index 3e605c59a9..3e92bc87e8 100644 --- a/apps/files_external/js/settings.js +++ b/apps/files_external/js/settings.js @@ -1,10 +1,23 @@ +(function(){ + +function updateStatus(statusEl, result){ + statusEl.removeClass('success error loading'); + if (result && result.status == 'success' && result.data.message) { + statusEl.addClass('success'); + return true; + } else { + statusEl.addClass('error'); + return false; + } +} + OC.MountConfig={ saveStorage:function(tr) { var mountPoint = $(tr).find('.mountPoint input').val(); if (mountPoint == '') { return false; } - var statusSpan = $(tr).find('.status span'); + var statusSpan = $(tr).closest('tr').find('.status span'); var backendClass = $(tr).find('.backend').data('class'); var configuration = $(tr).find('.configuration input'); var addMountPoint = true; @@ -58,6 +71,7 @@ OC.MountConfig={ } users.push(applicable); } + statusSpan.addClass('loading').removeClass('error success'); $.ajax({type: 'POST', url: OC.filePath('files_external', 'ajax', 'addMountPoint.php'), data: { @@ -68,15 +82,11 @@ OC.MountConfig={ applicable: applicable, isPersonal: isPersonal }, - async: false, success: function(result) { - statusSpan.removeClass(); - if (result && result.status == 'success' && result.data.message) { - status = true; - statusSpan.addClass('success'); - } else { - statusSpan.addClass('error'); - } + status = updateStatus(statusSpan, result); + }, + error: function(result){ + status = updateStatus(statusSpan, result); } }); }); @@ -93,8 +103,7 @@ OC.MountConfig={ mountType: mountType, applicable: applicable, isPersonal: isPersonal - }, - async: false + } }); }); var mountType = 'user'; @@ -108,14 +117,14 @@ OC.MountConfig={ mountType: mountType, applicable: applicable, isPersonal: isPersonal - }, - async: false + } }); }); } else { var isPersonal = true; var mountType = 'user'; var applicable = OC.currentUser; + statusSpan.addClass('loading').removeClass('error success'); $.ajax({type: 'POST', url: OC.filePath('files_external', 'ajax', 'addMountPoint.php'), data: { @@ -126,15 +135,11 @@ OC.MountConfig={ applicable: applicable, isPersonal: isPersonal }, - async: false, success: function(result) { - statusSpan.removeClass(); - if (result && result.status == 'success' && result.data.message) { - status = true; - statusSpan.addClass('success'); - } else { - statusSpan.addClass('error'); - } + status = updateStatus(statusSpan, result); + }, + error: function(result){ + status = updateStatus(statusSpan, result); } }); } @@ -157,7 +162,7 @@ $(document).ready(function() { $(tr).find('.mountPoint input').val(suggestMountPoint(selected)); } $(tr).addClass(backendClass); - $(tr).find('.status').append(''); + $(tr).find('.status').append(''); $(tr).find('.backend').data('class', backendClass); var configurations = $(this).data('configurations'); var td = $(tr).find('td.configuration'); @@ -293,3 +298,5 @@ $(document).ready(function() { }); }); + +})(); From bf00ccd1d6e3ca6ab21458f73a270c1a07c54fd6 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Thu, 10 Oct 2013 12:21:02 +0200 Subject: [PATCH 069/107] Fixed files view regular file actions in IE8 Fixes #5256 A missing closing span broken the container in IE8 which prevented the file actions to be appended properly. --- apps/files/templates/part.list.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files/templates/part.list.php b/apps/files/templates/part.list.php index 0679da334d..a6d2e44f34 100644 --- a/apps/files/templates/part.list.php +++ b/apps/files/templates/part.list.php @@ -36,7 +36,7 @@ $totalsize = 0; ?> - + From 9b0454380ccef34368a0a5227857788877722085 Mon Sep 17 00:00:00 2001 From: Axel Roenn Date: Thu, 10 Oct 2013 14:15:13 +0200 Subject: [PATCH 070/107] changed the argument to false for getValue , reformated else statement --- lib/base.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/lib/base.php b/lib/base.php index e8a4d3f87a..cceb82ef47 100644 --- a/lib/base.php +++ b/lib/base.php @@ -730,11 +730,10 @@ class OC { // Someone wants to log in : } elseif (OC::tryFormLogin()) { $error[] = 'invalidpassword'; - if ( OC_Config::getValue('log_authfailip', '') ) { + if ( OC_Config::getValue('log_authfailip', false) ) { OC_Log::write('core', 'Login failed: user \''.$_POST["user"].'\' , wrong password, IP:'.$_SERVER['REMOTE_ADDR'], OC_Log::WARN); - } - else { + } else { OC_Log::write('core', 'Login failed: user \''.$_POST["user"].'\' , wrong password, IP:set log_authfailip=true in conf', OC_Log::WARN); } From e56947255e0760c6c560fa15f67468c966919685 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Thu, 10 Oct 2013 14:43:40 +0200 Subject: [PATCH 071/107] don't use glob() and getLocalFile(), this can lead to problems on windows servers --- apps/files_versions/lib/versions.php | 146 +++++++++++---------------- 1 file changed, 61 insertions(+), 85 deletions(-) diff --git a/apps/files_versions/lib/versions.php b/apps/files_versions/lib/versions.php index fc8d0365c7..4ad272e43c 100644 --- a/apps/files_versions/lib/versions.php +++ b/apps/files_versions/lib/versions.php @@ -238,60 +238,35 @@ class Storage { * @param $filename file to find versions of, relative to the user files dir * @returns array */ - public static function getVersions($uid, $filename ) { - if( \OCP\Config::getSystemValue('files_versions', Storage::DEFAULTENABLED)=='true' ) { - $versions_fileview = new \OC\Files\View('/' . $uid . '/files_versions'); - $versionsName = $versions_fileview->getLocalFile($filename).'.v'; - $escapedVersionName = preg_replace('/(\*|\?|\[)/', '[$1]', $versionsName); + public static function getVersions($uid, $filename) { + $versions = array(); + // fetch for old versions + $view = new \OC\Files\View('/' . $uid . '/files_versions/'); + $files = $view->getDirectoryContent(dirname($filename)); - $versions = array(); - // fetch for old versions - $matches = glob($escapedVersionName.'*'); + $versionedFile = pathinfo($filename, PATHINFO_BASENAME); - if ( !$matches ) { - return $versions; - } - - sort( $matches ); - - $files_view = new \OC\Files\View('/'.$uid.'/files'); - $local_file = $files_view->getLocalFile($filename); - $local_file_md5 = \md5_file( $local_file ); - - foreach( $matches as $ma ) { - $parts = explode( '.v', $ma ); - $version = ( end( $parts ) ); - $key = $version.'#'.$filename; - $versions[$key]['cur'] = 0; - $versions[$key]['version'] = $version; - $versions[$key]['humanReadableTimestamp'] = self::getHumanReadableTimestamp($version); - $versions[$key]['path'] = $filename; - $versions[$key]['preview'] = \OCP\Util::linkToRoute('core_ajax_versions_preview', array('file' => $filename, 'version' => $version)); - $versions[$key]['size'] = $versions_fileview->filesize($filename.'.v'.$version); - - // if file with modified date exists, flag it in array as currently enabled version - ( \md5_file( $ma ) == $local_file_md5 ? $versions[$key]['fileMatch'] = 1 : $versions[$key]['fileMatch'] = 0 ); - - } - - // newest versions first - $versions = array_reverse( $versions ); - - foreach( $versions as $key => $value ) { - // flag the first matched file in array (which will have latest modification date) as current version - if ( $value['fileMatch'] ) { - $value['cur'] = 1; - break; + foreach ($files as $file) { + if ($file['type'] === 'file') { + $pos = strrpos($file['path'], '.v'); + $length = $pos - strlen('files_versions/'); + if (substr($file['path'], strlen('files_versions/'), $length) === $versionedFile) { + $version = substr($file['path'], $pos + 2); + $key = $version . '#' . $filename; + $versions[$key]['cur'] = 0; + $versions[$key]['version'] = $version; + $versions[$key]['humanReadableTimestamp'] = self::getHumanReadableTimestamp($version); + $versions[$key]['path'] = $filename; + $versions[$key]['size'] = $file['size']; } } - - return( $versions ); - - } else { - // if versioning isn't enabled then return an empty array - return( array() ); } + // sort with oldest version first + ksort($versions); + + // return newest versions first + return array_reverse($versions); } /** @@ -366,48 +341,49 @@ class Storage { * @return array with contains two arrays 'all' which contains all versions sorted by age and 'by_file' which contains all versions sorted by filename */ private static function getAllVersions($uid) { - if( \OCP\Config::getSystemValue('files_versions', Storage::DEFAULTENABLED)=='true' ) { - $versions_fileview = new \OC\Files\View('/'.$uid.'/files_versions'); - $versionsRoot = $versions_fileview->getLocalFolder(''); + $view = new \OC\Files\View('/' . $uid . '/'); + $versionsPath = 'files_versions/'; + $dirs = array($versionsPath); - $iterator = new \RecursiveIteratorIterator( - new \RecursiveDirectoryIterator($versionsRoot), - \RecursiveIteratorIterator::CHILD_FIRST - ); + while (!empty($dirs)) { + $dir = array_pop($dirs); + $files = $view->getDirectoryContent($dir); - $versions = array(); - - foreach ($iterator as $path) { - if ( preg_match('/^.+\.v(\d+)$/', $path, $match) ) { - $relpath = substr($path, strlen($versionsRoot)-1); - $versions[$match[1].'#'.$relpath] = array('path' => $relpath, 'timestamp' => $match[1]); + foreach ($files as $file) { + if ($file['type'] === 'dir') { + array_push($dirs, $file['path']); + } else { + $versionsBegin = strrpos($file['path'], '.v'); + $relPathStart = strlen($versionsPath); + $version = substr($file['path'], $versionsBegin + 2); + $relpath = substr($file['path'], $relPathStart, $versionsBegin - $relPathStart); + $key = $version . '#' . $relpath; + $versions[$key] = array('path' => $relpath, 'timestamp' => $version); } } - - ksort($versions); - - $i = 0; - - $result = array(); - - foreach( $versions as $key => $value ) { - $i++; - $size = $versions_fileview->filesize($value['path']); - $filename = substr($value['path'], 0, -strlen($value['timestamp'])-2); - - $result['all'][$key]['version'] = $value['timestamp']; - $result['all'][$key]['path'] = $filename; - $result['all'][$key]['size'] = $size; - - $filename = substr($value['path'], 0, -strlen($value['timestamp'])-2); - $result['by_file'][$filename][$key]['version'] = $value['timestamp']; - $result['by_file'][$filename][$key]['path'] = $filename; - $result['by_file'][$filename][$key]['size'] = $size; - - } - - return $result; } + + ksort($versions); + + $i = 0; + + $result = array(); + + foreach ($versions as $key => $value) { + $i++; + $size = $view->filesize($value['path']); + $filename = $value['path']; + + $result['all'][$key]['version'] = $value['timestamp']; + $result['all'][$key]['path'] = $filename; + $result['all'][$key]['size'] = $size; + + $result['by_file'][$filename][$key]['version'] = $value['timestamp']; + $result['by_file'][$filename][$key]['path'] = $filename; + $result['by_file'][$filename][$key]['size'] = $size; + } + + return $result; } /** From bb3b38947d2b012b4fef0cdd32f62524b2c5898c Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Thu, 10 Oct 2013 14:57:25 +0200 Subject: [PATCH 072/107] add missing preview link --- apps/files_versions/lib/versions.php | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/files_versions/lib/versions.php b/apps/files_versions/lib/versions.php index 4ad272e43c..5b291dfa10 100644 --- a/apps/files_versions/lib/versions.php +++ b/apps/files_versions/lib/versions.php @@ -256,6 +256,7 @@ class Storage { $versions[$key]['cur'] = 0; $versions[$key]['version'] = $version; $versions[$key]['humanReadableTimestamp'] = self::getHumanReadableTimestamp($version); + $versions[$key]['preview'] = \OCP\Util::linkToRoute('core_ajax_versions_preview', array('file' => $filename, 'version' => $version)); $versions[$key]['path'] = $filename; $versions[$key]['size'] = $file['size']; } From 909af2b62e75d1a5db866466074f2bcb95b864dc Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Thu, 10 Oct 2013 15:02:52 +0200 Subject: [PATCH 073/107] don't cache if the encryption is enabled, this can lead to problems during unit testing --- apps/files_encryption/lib/proxy.php | 28 +--------------------------- 1 file changed, 1 insertion(+), 27 deletions(-) diff --git a/apps/files_encryption/lib/proxy.php b/apps/files_encryption/lib/proxy.php index 6f630c83a3..8621c1ba51 100644 --- a/apps/files_encryption/lib/proxy.php +++ b/apps/files_encryption/lib/proxy.php @@ -38,8 +38,6 @@ class Proxy extends \OC_FileProxy { private static $blackList = null; //mimetypes blacklisted from encryption - private static $enableEncryption = null; - /** * Check if a file requires encryption * @param string $path @@ -49,46 +47,22 @@ class Proxy extends \OC_FileProxy { */ private static function shouldEncrypt($path) { - if (is_null(self::$enableEncryption)) { - if ( - \OCP\App::isEnabled('files_encryption') === true - && Crypt::mode() === 'server' - ) { - - self::$enableEncryption = true; - - } else { - - self::$enableEncryption = false; - - } - - } - - if (!self::$enableEncryption) { - + if (\OCP\App::isEnabled('files_encryption') === false || Crypt::mode() !== 'server') { return false; - } if (is_null(self::$blackList)) { - self::$blackList = explode(',', \OCP\Config::getAppValue('files_encryption', 'type_blacklist', '')); - } if (Crypt::isCatfileContent($path)) { - return true; - } $extension = substr($path, strrpos($path, '.') + 1); if (array_search($extension, self::$blackList) === false) { - return true; - } return false; From bc6e352ccd41f0641144fc1fc2d4e52e8f5532c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Thu, 10 Oct 2013 16:06:26 +0200 Subject: [PATCH 074/107] the path need to be normalized before putting it into resolvePath() otherwise the returned internalPath will not match followup calls to e.g. Cache::getID() --- lib/private/files/view.php | 4 +++- tests/lib/files/view.php | 34 ++++++++++++++++++++++++++++++++++ 2 files changed, 37 insertions(+), 1 deletion(-) diff --git a/lib/private/files/view.php b/lib/private/files/view.php index f74b595c8d..086e7487a6 100644 --- a/lib/private/files/view.php +++ b/lib/private/files/view.php @@ -110,7 +110,9 @@ class View { * @return array consisting of the storage and the internal path */ public function resolvePath($path) { - return Filesystem::resolvePath($this->getAbsolutePath($path)); + $a = $this->getAbsolutePath($path); + $p = Filesystem::normalizePath($a); + return Filesystem::resolvePath($p); } /** diff --git a/tests/lib/files/view.php b/tests/lib/files/view.php index a5107c351f..205afba707 100644 --- a/tests/lib/files/view.php +++ b/tests/lib/files/view.php @@ -416,4 +416,38 @@ class View extends \PHPUnit_Framework_TestCase { $view->file_put_contents('/asd.txt', 'foo'); $this->assertNull($this->createHookPath); } + + /** + * @dataProvider resolvePathTestProvider + */ + public function testResolvePath($expected, $pathToTest) { + $storage1 = $this->getTestStorage(); + \OC\Files\Filesystem::mount($storage1, array(), '/'); + + $view = new \OC\Files\View(''); + + $result = $view->resolvePath($pathToTest); + $this->assertEquals($expected, $result[1]); + + $exists = $view->file_exists($pathToTest); + $this->assertTrue($exists); + + $exists = $view->file_exists($result[1]); + $this->assertTrue($exists); + } + + function resolvePathTestProvider() { + return array( + array('foo.txt', 'foo.txt'), + array('foo.txt', '/foo.txt'), + array('folder', 'folder'), + array('folder', '/folder'), + array('folder', 'folder/'), + array('folder', '/folder/'), + array('folder/bar.txt', 'folder/bar.txt'), + array('folder/bar.txt', '/folder/bar.txt'), + array('', ''), + array('', '/'), + ); + } } From 92009c5d8eb48d8ea89ab6ee803d8a47a7ff98c0 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Thu, 10 Oct 2013 16:58:11 +0200 Subject: [PATCH 075/107] fix getVersions() for sub directories --- apps/files_versions/lib/versions.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/apps/files_versions/lib/versions.php b/apps/files_versions/lib/versions.php index 5b291dfa10..8151324696 100644 --- a/apps/files_versions/lib/versions.php +++ b/apps/files_versions/lib/versions.php @@ -249,8 +249,9 @@ class Storage { foreach ($files as $file) { if ($file['type'] === 'file') { $pos = strrpos($file['path'], '.v'); - $length = $pos - strlen('files_versions/'); - if (substr($file['path'], strlen('files_versions/'), $length) === $versionedFile) { + $length = $pos - strlen('files_versions/'.dirname($filename)); + $currentFile = substr($file['name'], 0, strrpos($file['name'], '.v')); + if ($currentFile === $versionedFile) { $version = substr($file['path'], $pos + 2); $key = $version . '#' . $filename; $versions[$key]['cur'] = 0; From 4c2e3919dec7077b00c2df836658dc41338e7d09 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Thu, 10 Oct 2013 17:23:27 +0200 Subject: [PATCH 076/107] make previews work for shared files in the versions drop-down --- apps/files_versions/ajax/preview.php | 15 +++++++++++---- apps/files_versions/lib/versions.php | 2 +- 2 files changed, 12 insertions(+), 5 deletions(-) diff --git a/apps/files_versions/ajax/preview.php b/apps/files_versions/ajax/preview.php index c24134df53..6fd374711c 100644 --- a/apps/files_versions/ajax/preview.php +++ b/apps/files_versions/ajax/preview.php @@ -6,31 +6,38 @@ * See the COPYING-README file. */ \OC_Util::checkLoggedIn(); - +error_log("get preview!"); if(!\OC_App::isEnabled('files_versions')){ exit; } $file = array_key_exists('file', $_GET) ? (string) urldecode($_GET['file']) : ''; +$user = array_key_exists('user', $_GET) ? $_GET['user'] : ''; $maxX = array_key_exists('x', $_GET) ? (int) $_GET['x'] : 44; $maxY = array_key_exists('y', $_GET) ? (int) $_GET['y'] : 44; $version = array_key_exists('version', $_GET) ? $_GET['version'] : ''; $scalingUp = array_key_exists('scalingup', $_GET) ? (bool) $_GET['scalingup'] : true; +if($user === '') { + \OC_Response::setStatus(400); //400 Bad Request + \OC_Log::write('versions-preview', 'No user parameter was passed', \OC_Log::DEBUG); + exit; +} + if($file === '' && $version === '') { \OC_Response::setStatus(400); //400 Bad Request - \OC_Log::write('core-preview', 'No file parameter was passed', \OC_Log::DEBUG); + \OC_Log::write('versions-preview', 'No file parameter was passed', \OC_Log::DEBUG); exit; } if($maxX === 0 || $maxY === 0) { \OC_Response::setStatus(400); //400 Bad Request - \OC_Log::write('core-preview', 'x and/or y set to 0', \OC_Log::DEBUG); + \OC_Log::write('versions-preview', 'x and/or y set to 0', \OC_Log::DEBUG); exit; } try{ - $preview = new \OC\Preview(\OC_User::getUser(), 'files_versions'); + $preview = new \OC\Preview($user, 'files_versions'); $preview->setFile($file.'.v'.$version); $preview->setMaxX($maxX); $preview->setMaxY($maxY); diff --git a/apps/files_versions/lib/versions.php b/apps/files_versions/lib/versions.php index 8151324696..7d765e28ce 100644 --- a/apps/files_versions/lib/versions.php +++ b/apps/files_versions/lib/versions.php @@ -257,7 +257,7 @@ class Storage { $versions[$key]['cur'] = 0; $versions[$key]['version'] = $version; $versions[$key]['humanReadableTimestamp'] = self::getHumanReadableTimestamp($version); - $versions[$key]['preview'] = \OCP\Util::linkToRoute('core_ajax_versions_preview', array('file' => $filename, 'version' => $version)); + $versions[$key]['preview'] = \OCP\Util::linkToRoute('core_ajax_versions_preview', array('file' => $filename, 'version' => $version, 'user' => $uid)); $versions[$key]['path'] = $filename; $versions[$key]['size'] = $file['size']; } From 87cccb2e32a7e09f9df95b41909964bad5b4acb7 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Thu, 10 Oct 2013 20:06:42 +0200 Subject: [PATCH 077/107] some small changes/fixes --- apps/files_versions/lib/versions.php | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/apps/files_versions/lib/versions.php b/apps/files_versions/lib/versions.php index 8151324696..48c25831eb 100644 --- a/apps/files_versions/lib/versions.php +++ b/apps/files_versions/lib/versions.php @@ -242,14 +242,16 @@ class Storage { $versions = array(); // fetch for old versions $view = new \OC\Files\View('/' . $uid . '/files_versions/'); - $files = $view->getDirectoryContent(dirname($filename)); - $versionedFile = pathinfo($filename, PATHINFO_BASENAME); + $pathinfo = pathinfo($filename); + + $files = $view->getDirectoryContent($pathinfo['dirname']); + + $versionedFile = $pathinfo['basename']; foreach ($files as $file) { if ($file['type'] === 'file') { $pos = strrpos($file['path'], '.v'); - $length = $pos - strlen('files_versions/'.dirname($filename)); $currentFile = substr($file['name'], 0, strrpos($file['name'], '.v')); if ($currentFile === $versionedFile) { $version = substr($file['path'], $pos + 2); @@ -264,11 +266,10 @@ class Storage { } } - // sort with oldest version first - ksort($versions); + // sort with newest version first + krsort($versions); - // return newest versions first - return array_reverse($versions); + return $versions; } /** @@ -367,8 +368,6 @@ class Storage { ksort($versions); - $i = 0; - $result = array(); foreach ($versions as $key => $value) { From f4e86045dee9578e80cd323d7ea56823388dd4ec Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Thu, 10 Oct 2013 20:09:38 +0200 Subject: [PATCH 078/107] make files versions root a class constant --- apps/files_versions/lib/versions.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/files_versions/lib/versions.php b/apps/files_versions/lib/versions.php index 48c25831eb..7724221665 100644 --- a/apps/files_versions/lib/versions.php +++ b/apps/files_versions/lib/versions.php @@ -19,6 +19,7 @@ class Storage { const DEFAULTENABLED=true; const DEFAULTMAXSIZE=50; // unit: percentage; 50% of available disk space/quota + const VERSIONS_ROOT = 'files_versions/'; private static $max_versions_per_interval = array( //first 10sec, one version every 2sec @@ -241,7 +242,7 @@ class Storage { public static function getVersions($uid, $filename) { $versions = array(); // fetch for old versions - $view = new \OC\Files\View('/' . $uid . '/files_versions/'); + $view = new \OC\Files\View('/' . $uid . '/' . self::VERSIONS_ROOT); $pathinfo = pathinfo($filename); @@ -345,8 +346,7 @@ class Storage { */ private static function getAllVersions($uid) { $view = new \OC\Files\View('/' . $uid . '/'); - $versionsPath = 'files_versions/'; - $dirs = array($versionsPath); + $dirs = array(self::VERSIONS_ROOT); while (!empty($dirs)) { $dir = array_pop($dirs); From 01d3536a76a053aaae398fbc10ee6a1e61dc0898 Mon Sep 17 00:00:00 2001 From: Felix Niklas Date: Thu, 10 Oct 2013 23:10:06 +0200 Subject: [PATCH 079/107] fix checkbox <-> label binding clicking the label will trigger the checkbox --- settings/templates/admin.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/settings/templates/admin.php b/settings/templates/admin.php index 6450cd62d9..c4782606e2 100644 --- a/settings/templates/admin.php +++ b/settings/templates/admin.php @@ -179,7 +179,7 @@ if (!$_['internetconnectionworking']) {
    - Date: Fri, 11 Oct 2013 00:15:32 +0200 Subject: [PATCH 080/107] Fixed delete icon alignment in IE8 Removed old inline CSS that forced every td to have position:static in the files app. (#5056) --- apps/files/templates/index.php | 2 +- apps/files_trashbin/templates/index.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/files/templates/index.php b/apps/files/templates/index.php index ebdca097e7..1c07d14ea8 100644 --- a/apps/files/templates/index.php +++ b/apps/files/templates/index.php @@ -1,4 +1,4 @@ - +
    diff --git a/apps/files_trashbin/templates/index.php b/apps/files_trashbin/templates/index.php index 9b01a2589a..17045313d6 100644 --- a/apps/files_trashbin/templates/index.php +++ b/apps/files_trashbin/templates/index.php @@ -1,4 +1,4 @@ - +
    From 44a5b0bad0e0dbcb0c11de663897ace69b4fd776 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Thu, 10 Oct 2013 22:30:58 -0400 Subject: [PATCH 081/107] [tx-robot] updated from transifex --- apps/files/l10n/en_GB.php | 2 + apps/files/l10n/es.php | 2 + apps/files/l10n/et_EE.php | 3 ++ apps/files/l10n/fr.php | 2 + apps/files/l10n/pt_PT.php | 3 ++ apps/files_encryption/l10n/en_GB.php | 10 ++-- apps/files_encryption/l10n/es.php | 1 + apps/files_encryption/l10n/et_EE.php | 4 ++ apps/files_encryption/l10n/fr.php | 4 ++ apps/files_encryption/l10n/pl.php | 4 ++ apps/files_encryption/l10n/pt_PT.php | 1 + apps/files_external/l10n/ar.php | 2 + apps/files_sharing/l10n/ar.php | 1 - apps/files_sharing/l10n/bg_BG.php | 1 - apps/files_sharing/l10n/bn_BD.php | 1 - apps/files_sharing/l10n/ca.php | 1 - apps/files_sharing/l10n/cs_CZ.php | 1 - apps/files_sharing/l10n/cy_GB.php | 1 - apps/files_sharing/l10n/da.php | 1 - apps/files_sharing/l10n/de.php | 1 - apps/files_sharing/l10n/de_CH.php | 1 - apps/files_sharing/l10n/de_DE.php | 1 - apps/files_sharing/l10n/el.php | 1 - apps/files_sharing/l10n/en@pirate.php | 1 - apps/files_sharing/l10n/en_GB.php | 1 - apps/files_sharing/l10n/eo.php | 1 - apps/files_sharing/l10n/es.php | 1 - apps/files_sharing/l10n/es_AR.php | 1 - apps/files_sharing/l10n/et_EE.php | 1 - apps/files_sharing/l10n/eu.php | 1 - apps/files_sharing/l10n/fa.php | 1 - apps/files_sharing/l10n/fi_FI.php | 1 - apps/files_sharing/l10n/fr.php | 1 - apps/files_sharing/l10n/gl.php | 1 - apps/files_sharing/l10n/he.php | 1 - apps/files_sharing/l10n/hr.php | 1 - apps/files_sharing/l10n/hu_HU.php | 1 - apps/files_sharing/l10n/hy.php | 1 - apps/files_sharing/l10n/ia.php | 1 - apps/files_sharing/l10n/id.php | 1 - apps/files_sharing/l10n/is.php | 1 - apps/files_sharing/l10n/it.php | 1 - apps/files_sharing/l10n/ja_JP.php | 1 - apps/files_sharing/l10n/ka_GE.php | 1 - apps/files_sharing/l10n/ko.php | 1 - apps/files_sharing/l10n/ku_IQ.php | 1 - apps/files_sharing/l10n/lb.php | 1 - apps/files_sharing/l10n/lt_LT.php | 1 - apps/files_sharing/l10n/lv.php | 1 - apps/files_sharing/l10n/mk.php | 1 - apps/files_sharing/l10n/ms_MY.php | 1 - apps/files_sharing/l10n/my_MM.php | 1 - apps/files_sharing/l10n/nb_NO.php | 1 - apps/files_sharing/l10n/nl.php | 1 - apps/files_sharing/l10n/nn_NO.php | 1 - apps/files_sharing/l10n/oc.php | 1 - apps/files_sharing/l10n/pl.php | 1 - apps/files_sharing/l10n/pt_BR.php | 1 - apps/files_sharing/l10n/pt_PT.php | 1 - apps/files_sharing/l10n/ro.php | 1 - apps/files_sharing/l10n/ru.php | 1 - apps/files_sharing/l10n/si_LK.php | 1 - apps/files_sharing/l10n/sk_SK.php | 1 - apps/files_sharing/l10n/sl.php | 1 - apps/files_sharing/l10n/sq.php | 1 - apps/files_sharing/l10n/sr.php | 1 - apps/files_sharing/l10n/sr@latin.php | 1 - apps/files_sharing/l10n/sv.php | 1 - apps/files_sharing/l10n/ta_LK.php | 1 - apps/files_sharing/l10n/th_TH.php | 1 - apps/files_sharing/l10n/tr.php | 1 - apps/files_sharing/l10n/ug.php | 1 - apps/files_sharing/l10n/uk.php | 1 - apps/files_sharing/l10n/vi.php | 1 - apps/files_sharing/l10n/zh_CN.php | 1 - apps/files_sharing/l10n/zh_TW.php | 1 - apps/files_trashbin/l10n/ar.php | 9 +--- apps/files_trashbin/l10n/bg_BG.php | 9 +--- apps/files_trashbin/l10n/bn_BD.php | 2 - apps/files_trashbin/l10n/bs.php | 4 +- apps/files_trashbin/l10n/ca.php | 9 +--- apps/files_trashbin/l10n/cs_CZ.php | 9 +--- apps/files_trashbin/l10n/cy_GB.php | 9 +--- apps/files_trashbin/l10n/da.php | 9 +--- apps/files_trashbin/l10n/de.php | 9 +--- apps/files_trashbin/l10n/de_CH.php | 9 +--- apps/files_trashbin/l10n/de_DE.php | 9 +--- apps/files_trashbin/l10n/el.php | 9 +--- apps/files_trashbin/l10n/en_GB.php | 9 +--- apps/files_trashbin/l10n/eo.php | 3 -- apps/files_trashbin/l10n/es.php | 9 +--- apps/files_trashbin/l10n/es_AR.php | 9 +--- apps/files_trashbin/l10n/et_EE.php | 9 +--- apps/files_trashbin/l10n/eu.php | 9 +--- apps/files_trashbin/l10n/fa.php | 9 +--- apps/files_trashbin/l10n/fi_FI.php | 9 +--- apps/files_trashbin/l10n/fr.php | 9 +--- apps/files_trashbin/l10n/gl.php | 9 +--- apps/files_trashbin/l10n/he.php | 9 +--- apps/files_trashbin/l10n/hi.php | 4 +- apps/files_trashbin/l10n/hr.php | 2 - apps/files_trashbin/l10n/hu_HU.php | 9 +--- apps/files_trashbin/l10n/hy.php | 2 - apps/files_trashbin/l10n/ia.php | 2 - apps/files_trashbin/l10n/id.php | 9 +--- apps/files_trashbin/l10n/is.php | 2 - apps/files_trashbin/l10n/it.php | 9 +--- apps/files_trashbin/l10n/ja_JP.php | 9 +--- apps/files_trashbin/l10n/ka_GE.php | 9 +--- apps/files_trashbin/l10n/ko.php | 9 +--- apps/files_trashbin/l10n/ku_IQ.php | 4 +- apps/files_trashbin/l10n/lb.php | 2 - apps/files_trashbin/l10n/lt_LT.php | 9 +--- apps/files_trashbin/l10n/lv.php | 9 +--- apps/files_trashbin/l10n/mk.php | 2 - apps/files_trashbin/l10n/ms_MY.php | 2 - apps/files_trashbin/l10n/nb_NO.php | 9 +--- apps/files_trashbin/l10n/nl.php | 9 +--- apps/files_trashbin/l10n/nn_NO.php | 9 +--- apps/files_trashbin/l10n/oc.php | 2 - apps/files_trashbin/l10n/pa.php | 2 - apps/files_trashbin/l10n/pl.php | 9 +--- apps/files_trashbin/l10n/pt_BR.php | 9 +--- apps/files_trashbin/l10n/pt_PT.php | 9 +--- apps/files_trashbin/l10n/ro.php | 3 -- apps/files_trashbin/l10n/ru.php | 9 +--- apps/files_trashbin/l10n/si_LK.php | 2 - apps/files_trashbin/l10n/sk_SK.php | 9 +--- apps/files_trashbin/l10n/sl.php | 9 +--- apps/files_trashbin/l10n/sq.php | 9 +--- apps/files_trashbin/l10n/sr.php | 8 +--- apps/files_trashbin/l10n/sr@latin.php | 2 - apps/files_trashbin/l10n/sv.php | 9 +--- apps/files_trashbin/l10n/ta_LK.php | 2 - apps/files_trashbin/l10n/te.php | 3 -- apps/files_trashbin/l10n/th_TH.php | 7 +-- apps/files_trashbin/l10n/tr.php | 9 +--- apps/files_trashbin/l10n/ug.php | 5 +- apps/files_trashbin/l10n/uk.php | 9 +--- apps/files_trashbin/l10n/ur_PK.php | 4 +- apps/files_trashbin/l10n/vi.php | 9 +--- apps/files_trashbin/l10n/zh_CN.php | 9 +--- apps/files_trashbin/l10n/zh_HK.php | 2 - apps/files_trashbin/l10n/zh_TW.php | 9 +--- apps/user_ldap/l10n/ca.php | 1 - apps/user_ldap/l10n/cs_CZ.php | 1 - apps/user_ldap/l10n/de.php | 1 - apps/user_ldap/l10n/de_CH.php | 1 - apps/user_ldap/l10n/de_DE.php | 1 - apps/user_ldap/l10n/en_GB.php | 1 - apps/user_ldap/l10n/es.php | 1 - apps/user_ldap/l10n/es_AR.php | 1 - apps/user_ldap/l10n/et_EE.php | 1 - apps/user_ldap/l10n/fa.php | 1 - apps/user_ldap/l10n/fr.php | 1 - apps/user_ldap/l10n/gl.php | 1 - apps/user_ldap/l10n/hu_HU.php | 1 - apps/user_ldap/l10n/it.php | 1 - apps/user_ldap/l10n/ja_JP.php | 1 - apps/user_ldap/l10n/lt_LT.php | 1 - apps/user_ldap/l10n/nl.php | 1 - apps/user_ldap/l10n/pl.php | 1 - apps/user_ldap/l10n/pt_BR.php | 1 - apps/user_ldap/l10n/pt_PT.php | 1 - apps/user_ldap/l10n/ru.php | 1 - apps/user_ldap/l10n/sk_SK.php | 1 - apps/user_ldap/l10n/sl.php | 1 - apps/user_ldap/l10n/sv.php | 1 - apps/user_ldap/l10n/zh_CN.php | 1 - core/l10n/en_GB.php | 10 ++++ core/l10n/es.php | 10 ++++ core/l10n/et_EE.php | 4 ++ core/l10n/fr.php | 10 ++++ core/l10n/pl.php | 9 ++++ core/l10n/tr.php | 2 + l10n/ach/files_sharing.po | 24 +++++----- l10n/ach/files_trashbin.po | 52 ++++++--------------- l10n/ach/user_ldap.po | 26 ++++++----- l10n/ady/files_sharing.po | 24 +++++----- l10n/ady/files_trashbin.po | 50 ++++++-------------- l10n/ady/user_ldap.po | 20 ++++---- l10n/af_ZA/files_sharing.po | 26 +++++------ l10n/af_ZA/files_trashbin.po | 52 ++++++--------------- l10n/af_ZA/user_ldap.po | 20 ++++---- l10n/ar/files_external.po | 11 +++-- l10n/ar/files_sharing.po | 26 +++++------ l10n/ar/files_trashbin.po | 58 ++++++----------------- l10n/ar/user_ldap.po | 20 ++++---- l10n/be/files_sharing.po | 24 +++++----- l10n/be/files_trashbin.po | 56 ++++++----------------- l10n/be/user_ldap.po | 26 ++++++----- l10n/bg_BG/files_sharing.po | 26 +++++------ l10n/bg_BG/files_trashbin.po | 50 ++++++-------------- l10n/bg_BG/user_ldap.po | 20 ++++---- l10n/bn_BD/files_sharing.po | 26 +++++------ l10n/bn_BD/files_trashbin.po | 50 ++++++-------------- l10n/bn_BD/user_ldap.po | 20 ++++---- l10n/bs/files_sharing.po | 24 +++++----- l10n/bs/files_trashbin.po | 54 ++++++---------------- l10n/bs/user_ldap.po | 26 ++++++----- l10n/ca/files_sharing.po | 28 ++++++------ l10n/ca/files_trashbin.po | 50 ++++++-------------- l10n/ca/user_ldap.po | 24 ++++++---- l10n/cs_CZ/files_sharing.po | 28 ++++++------ l10n/cs_CZ/files_trashbin.po | 54 ++++++---------------- l10n/cs_CZ/user_ldap.po | 24 ++++++---- l10n/cy_GB/files_sharing.po | 26 +++++------ l10n/cy_GB/files_trashbin.po | 54 ++++++---------------- l10n/cy_GB/user_ldap.po | 20 ++++---- l10n/da/files_sharing.po | 28 ++++++------ l10n/da/files_trashbin.po | 52 ++++++--------------- l10n/da/user_ldap.po | 22 +++++---- l10n/de/files_sharing.po | 30 ++++++------ l10n/de/files_trashbin.po | 52 ++++++--------------- l10n/de/user_ldap.po | 26 ++++++----- l10n/de_AT/files_sharing.po | 24 +++++----- l10n/de_AT/files_trashbin.po | 52 ++++++--------------- l10n/de_AT/user_ldap.po | 26 ++++++----- l10n/de_CH/files_sharing.po | 28 ++++++------ l10n/de_CH/files_trashbin.po | 52 ++++++--------------- l10n/de_CH/user_ldap.po | 24 ++++++---- l10n/de_DE/files_sharing.po | 30 ++++++------ l10n/de_DE/files_trashbin.po | 54 ++++++---------------- l10n/de_DE/user_ldap.po | 26 ++++++----- l10n/el/files_sharing.po | 28 ++++++------ l10n/el/files_trashbin.po | 50 ++++++-------------- l10n/el/user_ldap.po | 20 ++++---- l10n/en@pirate/files_sharing.po | 26 +++++------ l10n/en@pirate/files_trashbin.po | 52 ++++++--------------- l10n/en@pirate/user_ldap.po | 26 ++++++----- l10n/en_GB/core.po | 32 ++++++------- l10n/en_GB/files.po | 64 +++++++++++++------------- l10n/en_GB/files_encryption.po | 20 ++++---- l10n/en_GB/files_sharing.po | 28 ++++++------ l10n/en_GB/files_trashbin.po | 52 ++++++--------------- l10n/en_GB/settings.po | 24 +++++----- l10n/en_GB/user_ldap.po | 24 ++++++---- l10n/eo/files_sharing.po | 26 +++++------ l10n/eo/files_trashbin.po | 50 ++++++-------------- l10n/eo/user_ldap.po | 22 +++++---- l10n/es/core.po | 32 ++++++------- l10n/es/files.po | 65 +++++++++++++------------- l10n/es/files_encryption.po | 9 ++-- l10n/es/files_sharing.po | 28 ++++++------ l10n/es/files_trashbin.po | 52 ++++++--------------- l10n/es/settings.po | 25 +++++----- l10n/es/user_ldap.po | 24 ++++++---- l10n/es_AR/files_sharing.po | 28 ++++++------ l10n/es_AR/files_trashbin.po | 52 ++++++--------------- l10n/es_AR/user_ldap.po | 24 ++++++---- l10n/es_MX/files_sharing.po | 24 +++++----- l10n/es_MX/files_trashbin.po | 52 ++++++--------------- l10n/es_MX/user_ldap.po | 26 ++++++----- l10n/et_EE/core.po | 20 ++++---- l10n/et_EE/files.po | 66 +++++++++++++-------------- l10n/et_EE/files_encryption.po | 14 +++--- l10n/et_EE/files_sharing.po | 28 ++++++------ l10n/et_EE/files_trashbin.po | 52 ++++++--------------- l10n/et_EE/user_ldap.po | 24 ++++++---- l10n/eu/files_sharing.po | 28 ++++++------ l10n/eu/files_trashbin.po | 52 ++++++--------------- l10n/eu/user_ldap.po | 20 ++++---- l10n/fa/files_sharing.po | 26 +++++------ l10n/fa/files_trashbin.po | 48 ++++++------------- l10n/fa/user_ldap.po | 22 +++++---- l10n/fi_FI/files_sharing.po | 28 ++++++------ l10n/fi_FI/files_trashbin.po | 52 ++++++--------------- l10n/fi_FI/user_ldap.po | 20 ++++---- l10n/fr/core.po | 33 +++++++------- l10n/fr/files.po | 64 +++++++++++++------------- l10n/fr/files_encryption.po | 16 ++++--- l10n/fr/files_sharing.po | 28 ++++++------ l10n/fr/files_trashbin.po | 52 ++++++--------------- l10n/fr/settings.po | 24 +++++----- l10n/fr/user_ldap.po | 24 ++++++---- l10n/gl/files_sharing.po | 28 ++++++------ l10n/gl/files_trashbin.po | 52 ++++++--------------- l10n/gl/user_ldap.po | 24 ++++++---- l10n/he/files_sharing.po | 26 +++++------ l10n/he/files_trashbin.po | 50 ++++++-------------- l10n/he/user_ldap.po | 20 ++++---- l10n/hi/files_sharing.po | 26 +++++------ l10n/hi/files_trashbin.po | 50 ++++++-------------- l10n/hi/user_ldap.po | 20 ++++---- l10n/hr/files_sharing.po | 26 +++++------ l10n/hr/files_trashbin.po | 52 ++++++--------------- l10n/hr/user_ldap.po | 20 ++++---- l10n/hu_HU/files_sharing.po | 28 ++++++------ l10n/hu_HU/files_trashbin.po | 50 ++++++-------------- l10n/hu_HU/user_ldap.po | 24 ++++++---- l10n/hy/files_sharing.po | 26 +++++------ l10n/hy/files_trashbin.po | 50 ++++++-------------- l10n/hy/user_ldap.po | 26 ++++++----- l10n/ia/files_sharing.po | 26 +++++------ l10n/ia/files_trashbin.po | 50 ++++++-------------- l10n/ia/user_ldap.po | 20 ++++---- l10n/id/files_sharing.po | 26 +++++------ l10n/id/files_trashbin.po | 48 ++++++------------- l10n/id/user_ldap.po | 20 ++++---- l10n/is/files_sharing.po | 26 +++++------ l10n/is/files_trashbin.po | 50 ++++++-------------- l10n/is/user_ldap.po | 20 ++++---- l10n/it/files_sharing.po | 28 ++++++------ l10n/it/files_trashbin.po | 52 ++++++--------------- l10n/it/user_ldap.po | 24 ++++++---- l10n/ja_JP/files_sharing.po | 28 ++++++------ l10n/ja_JP/files_trashbin.po | 50 ++++++-------------- l10n/ja_JP/user_ldap.po | 24 ++++++---- l10n/ka/files_sharing.po | 26 +++++------ l10n/ka/files_trashbin.po | 50 ++++++-------------- l10n/ka/user_ldap.po | 20 ++++---- l10n/ka_GE/files_sharing.po | 26 +++++------ l10n/ka_GE/files_trashbin.po | 48 ++++++------------- l10n/ka_GE/user_ldap.po | 20 ++++---- l10n/km/files_sharing.po | 24 +++++----- l10n/km/files_trashbin.po | 50 ++++++-------------- l10n/km/user_ldap.po | 26 ++++++----- l10n/kn/files_sharing.po | 24 +++++----- l10n/kn/files_trashbin.po | 50 ++++++-------------- l10n/kn/user_ldap.po | 26 ++++++----- l10n/ko/files_sharing.po | 28 ++++++------ l10n/ko/files_trashbin.po | 50 ++++++-------------- l10n/ko/user_ldap.po | 20 ++++---- l10n/ku_IQ/files_sharing.po | 26 +++++------ l10n/ku_IQ/files_trashbin.po | 50 ++++++-------------- l10n/ku_IQ/user_ldap.po | 20 ++++---- l10n/lb/files_sharing.po | 26 +++++------ l10n/lb/files_trashbin.po | 50 ++++++-------------- l10n/lb/user_ldap.po | 20 ++++---- l10n/lt_LT/files_sharing.po | 28 ++++++------ l10n/lt_LT/files_trashbin.po | 54 ++++++---------------- l10n/lt_LT/user_ldap.po | 24 ++++++---- l10n/lv/files_sharing.po | 26 +++++------ l10n/lv/files_trashbin.po | 54 ++++++---------------- l10n/lv/user_ldap.po | 20 ++++---- l10n/mk/files_sharing.po | 26 +++++------ l10n/mk/files_trashbin.po | 50 ++++++-------------- l10n/mk/user_ldap.po | 20 ++++---- l10n/ml_IN/files_sharing.po | 24 +++++----- l10n/ml_IN/files_trashbin.po | 52 ++++++--------------- l10n/ml_IN/user_ldap.po | 26 ++++++----- l10n/ms_MY/files_sharing.po | 26 +++++------ l10n/ms_MY/files_trashbin.po | 48 ++++++------------- l10n/ms_MY/user_ldap.po | 20 ++++---- l10n/my_MM/files_sharing.po | 26 +++++------ l10n/my_MM/files_trashbin.po | 50 ++++++-------------- l10n/my_MM/user_ldap.po | 20 ++++---- l10n/nb_NO/files_sharing.po | 26 +++++------ l10n/nb_NO/files_trashbin.po | 50 ++++++-------------- l10n/nb_NO/user_ldap.po | 20 ++++---- l10n/ne/files_sharing.po | 24 +++++----- l10n/ne/files_trashbin.po | 52 ++++++--------------- l10n/ne/user_ldap.po | 26 ++++++----- l10n/nl/files_sharing.po | 28 ++++++------ l10n/nl/files_trashbin.po | 52 ++++++--------------- l10n/nl/user_ldap.po | 24 ++++++---- l10n/nn_NO/files_sharing.po | 28 ++++++------ l10n/nn_NO/files_trashbin.po | 52 ++++++--------------- l10n/nn_NO/user_ldap.po | 20 ++++---- l10n/nqo/files_sharing.po | 24 +++++----- l10n/nqo/files_trashbin.po | 50 ++++++-------------- l10n/nqo/user_ldap.po | 26 ++++++----- l10n/oc/files_sharing.po | 26 +++++------ l10n/oc/files_trashbin.po | 50 ++++++-------------- l10n/oc/user_ldap.po | 20 ++++---- l10n/pa/files_sharing.po | 26 +++++------ l10n/pa/files_trashbin.po | 50 ++++++-------------- l10n/pa/user_ldap.po | 20 ++++---- l10n/pl/core.po | 30 ++++++------ l10n/pl/files_encryption.po | 14 +++--- l10n/pl/files_sharing.po | 28 ++++++------ l10n/pl/files_trashbin.po | 52 ++++++--------------- l10n/pl/settings.po | 24 +++++----- l10n/pl/user_ldap.po | 22 +++++---- l10n/pt_BR/files_sharing.po | 28 ++++++------ l10n/pt_BR/files_trashbin.po | 52 ++++++--------------- l10n/pt_BR/user_ldap.po | 24 ++++++---- l10n/pt_PT/files.po | 66 +++++++++++++-------------- l10n/pt_PT/files_encryption.po | 9 ++-- l10n/pt_PT/files_sharing.po | 28 ++++++------ l10n/pt_PT/files_trashbin.po | 52 ++++++--------------- l10n/pt_PT/lib.po | 36 +++++++-------- l10n/pt_PT/settings.po | 47 +++++++++---------- l10n/pt_PT/user_ldap.po | 22 +++++---- l10n/ro/files_sharing.po | 26 +++++------ l10n/ro/files_trashbin.po | 52 ++++++--------------- l10n/ro/user_ldap.po | 20 ++++---- l10n/ru/files_sharing.po | 28 ++++++------ l10n/ru/files_trashbin.po | 52 ++++++--------------- l10n/ru/user_ldap.po | 24 ++++++---- l10n/si_LK/files_sharing.po | 26 +++++------ l10n/si_LK/files_trashbin.po | 50 ++++++-------------- l10n/si_LK/user_ldap.po | 20 ++++---- l10n/sk/files_sharing.po | 24 +++++----- l10n/sk/files_trashbin.po | 54 ++++++---------------- l10n/sk/user_ldap.po | 26 ++++++----- l10n/sk_SK/files_sharing.po | 28 ++++++------ l10n/sk_SK/files_trashbin.po | 54 ++++++---------------- l10n/sk_SK/user_ldap.po | 24 ++++++---- l10n/sl/files_sharing.po | 26 +++++------ l10n/sl/files_trashbin.po | 54 ++++++---------------- l10n/sl/user_ldap.po | 22 +++++---- l10n/sq/files_sharing.po | 28 ++++++------ l10n/sq/files_trashbin.po | 52 ++++++--------------- l10n/sq/user_ldap.po | 20 ++++---- l10n/sr/files_sharing.po | 26 +++++------ l10n/sr/files_trashbin.po | 52 ++++++--------------- l10n/sr/user_ldap.po | 20 ++++---- l10n/sr@latin/files_sharing.po | 26 +++++------ l10n/sr@latin/files_trashbin.po | 52 ++++++--------------- l10n/sr@latin/user_ldap.po | 20 ++++---- l10n/sv/files_sharing.po | 28 ++++++------ l10n/sv/files_trashbin.po | 52 ++++++--------------- l10n/sv/user_ldap.po | 24 ++++++---- l10n/sw_KE/files_sharing.po | 24 +++++----- l10n/sw_KE/files_trashbin.po | 52 ++++++--------------- l10n/sw_KE/user_ldap.po | 26 ++++++----- l10n/ta_LK/files_sharing.po | 26 +++++------ l10n/ta_LK/files_trashbin.po | 50 ++++++-------------- l10n/ta_LK/user_ldap.po | 20 ++++---- l10n/te/files_sharing.po | 26 +++++------ l10n/te/files_trashbin.po | 50 ++++++-------------- l10n/te/user_ldap.po | 20 ++++---- l10n/templates/core.pot | 8 ++-- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 22 ++++----- l10n/templates/files_trashbin.pot | 49 +++++--------------- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 18 ++++---- l10n/templates/private.pot | 18 ++++---- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 18 +++++--- l10n/templates/user_webdavauth.pot | 2 +- l10n/th_TH/files_sharing.po | 26 +++++------ l10n/th_TH/files_trashbin.po | 48 ++++++------------- l10n/th_TH/user_ldap.po | 20 ++++---- l10n/tr/core.po | 14 +++--- l10n/tr/files_sharing.po | 26 +++++------ l10n/tr/files_trashbin.po | 52 ++++++--------------- l10n/tr/lib.po | 29 ++++++------ l10n/tr/user_ldap.po | 20 ++++---- l10n/ug/files_sharing.po | 28 ++++++------ l10n/ug/files_trashbin.po | 50 ++++++-------------- l10n/ug/user_ldap.po | 22 +++++---- l10n/uk/files_sharing.po | 26 +++++------ l10n/uk/files_trashbin.po | 52 ++++++--------------- l10n/uk/user_ldap.po | 20 ++++---- l10n/ur_PK/files_sharing.po | 26 +++++------ l10n/ur_PK/files_trashbin.po | 50 ++++++-------------- l10n/ur_PK/user_ldap.po | 20 ++++---- l10n/vi/files_sharing.po | 26 +++++------ l10n/vi/files_trashbin.po | 48 ++++++------------- l10n/vi/user_ldap.po | 20 ++++---- l10n/zh_CN/files_sharing.po | 28 ++++++------ l10n/zh_CN/files_trashbin.po | 50 ++++++-------------- l10n/zh_CN/user_ldap.po | 22 +++++---- l10n/zh_HK/files_sharing.po | 26 +++++------ l10n/zh_HK/files_trashbin.po | 48 ++++++------------- l10n/zh_HK/user_ldap.po | 20 ++++---- l10n/zh_TW/files_sharing.po | 28 ++++++------ l10n/zh_TW/files_trashbin.po | 50 ++++++-------------- l10n/zh_TW/user_ldap.po | 22 +++++---- lib/l10n/pt_PT.php | 7 +++ lib/l10n/tr.php | 3 ++ settings/l10n/en_GB.php | 2 + settings/l10n/es.php | 2 + settings/l10n/fr.php | 2 + settings/l10n/pl.php | 2 + settings/l10n/pt_PT.php | 13 ++++++ 471 files changed, 4021 insertions(+), 5980 deletions(-) diff --git a/apps/files/l10n/en_GB.php b/apps/files/l10n/en_GB.php index c747555e40..96a4be20b5 100644 --- a/apps/files/l10n/en_GB.php +++ b/apps/files/l10n/en_GB.php @@ -44,6 +44,8 @@ $TRANSLATIONS = array( "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Invalid name: '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed.", "Your storage is full, files can not be updated or synced anymore!" => "Your storage is full, files can not be updated or synced anymore!", "Your storage is almost full ({usedSpacePercent}%)" => "Your storage is almost full ({usedSpacePercent}%)", +"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "Encryption App is enabled but your keys are not initialised, please log-out and log-in again", +"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files.", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files.", "Your download is being prepared. This might take some time if the files are big." => "Your download is being prepared. This might take some time if the files are big.", "Error moving file" => "Error moving file", diff --git a/apps/files/l10n/es.php b/apps/files/l10n/es.php index bfed4b2227..b7091fe544 100644 --- a/apps/files/l10n/es.php +++ b/apps/files/l10n/es.php @@ -44,6 +44,8 @@ $TRANSLATIONS = array( "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nombre Invalido, \"\\\", \"/\", \"<\", \">\", \":\", \"\", \"|\" \"?\" y \"*\" no están permitidos ", "Your storage is full, files can not be updated or synced anymore!" => "Su almacenamiento está lleno, ¡no se pueden actualizar o sincronizar más!", "Your storage is almost full ({usedSpacePercent}%)" => "Su almacenamiento está casi lleno ({usedSpacePercent}%)", +"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "Encryption App está habilitada pero tus claves no han sido inicializadas, por favor, cierra la sesión y vuelva a iniciarla de nuevo.", +"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "La clave privada no es válida para Encryption App. Por favor, actualiza la contraseña de tu clave privada en tus ajustes personales para recuperar el acceso a tus archivos encriptados.", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "El cifrado ha sido deshabilitado pero tus archivos permanecen cifrados. Por favor, ve a tus ajustes personales para descifrar tus archivos.", "Your download is being prepared. This might take some time if the files are big." => "Su descarga está siendo preparada. Esto puede tardar algún tiempo si los archivos son grandes.", "Error moving file" => "Error moviendo archivo", diff --git a/apps/files/l10n/et_EE.php b/apps/files/l10n/et_EE.php index cb637d849b..d25b737037 100644 --- a/apps/files/l10n/et_EE.php +++ b/apps/files/l10n/et_EE.php @@ -17,6 +17,7 @@ $TRANSLATIONS = array( "Upload failed. Could not find uploaded file" => "Üleslaadimine ebaõnnestus. Üleslaetud faili ei leitud", "Invalid directory." => "Vigane kaust.", "Files" => "Failid", +"Unable to upload {filename} as it is a directory or has 0 bytes" => "Ei saa üles laadida {filename}, kuna see on kataloog või selle suurus on 0 baiti", "Not enough space available" => "Pole piisavalt ruumi", "Upload cancelled." => "Üleslaadimine tühistati.", "Could not get result from server." => "Serverist ei saadud tulemusi", @@ -43,6 +44,8 @@ $TRANSLATIONS = array( "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Vigane nimi, '\\', '/', '<', '>', ':', '\"', '|', '?' ja '*' pole lubatud.", "Your storage is full, files can not be updated or synced anymore!" => "Sinu andmemaht on täis! Faile ei uuendata ega sünkroniseerita!", "Your storage is almost full ({usedSpacePercent}%)" => "Su andmemaht on peaaegu täis ({usedSpacePercent}%)", +"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "Krüpteerimisrakend on lubatud, kuid võtmeid pole lähtestatud. Palun logi välja ning uuesti sisse.", +"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "Vigane Krüpteerimisrakendi privaatvõti . Palun uuenda oma privaatse võtme parool oma personaasete seadete all taastamaks ligipääsu oma krüpteeritud failidele.", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Krüpteering on keelatud, kuid sinu failid on endiselt krüpteeritud. Palun vaata oma personaalseid seadeid oma failide dekrüpteerimiseks.", "Your download is being prepared. This might take some time if the files are big." => "Valmistatakse allalaadimist. See võib võtta veidi aega, kui on tegu suurte failidega. ", "Error moving file" => "Viga faili eemaldamisel", diff --git a/apps/files/l10n/fr.php b/apps/files/l10n/fr.php index 03505a2a26..ca1ed09ef3 100644 --- a/apps/files/l10n/fr.php +++ b/apps/files/l10n/fr.php @@ -44,6 +44,8 @@ $TRANSLATIONS = array( "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nom invalide, les caractères '\\', '/', '<', '>', ':', '\"', '|', '?' et '*' ne sont pas autorisés.", "Your storage is full, files can not be updated or synced anymore!" => "Votre espage de stockage est plein, les fichiers ne peuvent plus être téléversés ou synchronisés !", "Your storage is almost full ({usedSpacePercent}%)" => "Votre espace de stockage est presque plein ({usedSpacePercent}%)", +"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "L'application de chiffrement est activée mais vos clés ne sont pas initialisées, veuillez vous déconnecter et ensuite vous reconnecter.", +"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "Votre clef privée pour l'application de chiffrement est invalide ! Veuillez mettre à jour le mot de passe de votre clef privée dans vos paramètres personnels pour récupérer l'accès à vos fichiers chiffrés.", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Le chiffrement était désactivé mais vos fichiers sont toujours chiffrés. Veuillez vous rendre sur vos Paramètres personnels pour déchiffrer vos fichiers.", "Your download is being prepared. This might take some time if the files are big." => "Votre téléchargement est cours de préparation. Ceci peut nécessiter un certain temps si les fichiers sont volumineux.", "Error moving file" => "Erreur lors du déplacement du fichier", diff --git a/apps/files/l10n/pt_PT.php b/apps/files/l10n/pt_PT.php index f6d61fc987..342cab2bf4 100644 --- a/apps/files/l10n/pt_PT.php +++ b/apps/files/l10n/pt_PT.php @@ -13,10 +13,12 @@ $TRANSLATIONS = array( "Missing a temporary folder" => "Está a faltar a pasta temporária", "Failed to write to disk" => "Falhou a escrita no disco", "Not enough storage available" => "Não há espaço suficiente em disco", +"Upload failed. Could not get file info." => "O carregamento falhou. Não foi possível obter a informação do ficheiro.", "Invalid directory." => "Directório Inválido", "Files" => "Ficheiros", "Not enough space available" => "Espaço em disco insuficiente!", "Upload cancelled." => "Envio cancelado.", +"Could not get result from server." => "Não foi possível obter o resultado do servidor.", "File upload is in progress. Leaving the page now will cancel the upload." => "Envio de ficheiro em progresso. Irá cancelar o envio se sair da página agora.", "URL cannot be empty." => "O URL não pode estar vazio.", "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" => "Nome da pasta inválido. Palavra 'Shared' é reservado pela ownCloud", @@ -42,6 +44,7 @@ $TRANSLATIONS = array( "Your storage is almost full ({usedSpacePercent}%)" => "O seu espaço de armazenamento está quase cheiro ({usedSpacePercent}%)", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "A encriptação foi desactivada mas os seus ficheiros continuam encriptados. Por favor consulte as suas definições pessoais para desencriptar os ficheiros.", "Your download is being prepared. This might take some time if the files are big." => "O seu download está a ser preparado. Este processo pode demorar algum tempo se os ficheiros forem grandes.", +"Error moving file" => "Erro ao mover o ficheiro", "Name" => "Nome", "Size" => "Tamanho", "Modified" => "Modificado", diff --git a/apps/files_encryption/l10n/en_GB.php b/apps/files_encryption/l10n/en_GB.php index d2bfdfa9ea..53eef77eb5 100644 --- a/apps/files_encryption/l10n/en_GB.php +++ b/apps/files_encryption/l10n/en_GB.php @@ -8,22 +8,26 @@ $TRANSLATIONS = array( "Could not change the password. Maybe the old password was not correct." => "Could not change the password. Maybe the old password was incorrect.", "Private key password successfully updated." => "Private key password updated successfully.", "Could not update the private key password. Maybe the old password was not correct." => "Could not update the private key password. Maybe the old password was not correct.", +"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." => "Encryption app not initialised! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialise the encryption app.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files.", "Missing requirements." => "Missing requirements.", "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled.", "Following users are not set up for encryption:" => "Following users are not set up for encryption:", "Saving..." => "Saving...", +"Go directly to your " => "Go directly to your ", "personal settings" => "personal settings", "Encryption" => "Encryption", "Enable recovery key (allow to recover users files in case of password loss):" => "Enable recovery key (allow to recover users files in case of password loss):", "Recovery key password" => "Recovery key password", +"Repeat Recovery key password" => "Repeat recovery key password", "Enabled" => "Enabled", "Disabled" => "Disabled", "Change recovery key password:" => "Change recovery key password:", -"Old Recovery key password" => "Old Recovery key password", -"New Recovery key password" => "New Recovery key password", +"Old Recovery key password" => "Old recovery key password", +"New Recovery key password" => "New recovery key password", +"Repeat New Recovery key password" => "Repeat new recovery key password", "Change Password" => "Change Password", -"Your private key password no longer match your log-in password:" => "Your private key password no longer match your login password:", +"Your private key password no longer match your log-in password:" => "Your private key password no longer matches your login password:", "Set your old private key password to your current log-in password." => "Set your old private key password to your current login password.", " If you don't remember your old password you can ask your administrator to recover your files." => " If you don't remember your old password you can ask your administrator to recover your files.", "Old log-in password" => "Old login password", diff --git a/apps/files_encryption/l10n/es.php b/apps/files_encryption/l10n/es.php index 138d51b09b..2e3c7c5816 100644 --- a/apps/files_encryption/l10n/es.php +++ b/apps/files_encryption/l10n/es.php @@ -8,6 +8,7 @@ $TRANSLATIONS = array( "Could not change the password. Maybe the old password was not correct." => "No se pudo cambiar la contraseña. Compruebe que la contraseña actual sea correcta.", "Private key password successfully updated." => "Contraseña de clave privada actualizada con éxito.", "Could not update the private key password. Maybe the old password was not correct." => "No se pudo cambiar la contraseña. Puede que la contraseña antigua no sea correcta.", +"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." => "¡Encryption App no está inicializada!. Quizás la aplicación fue reiniciada durante tu sesión. Por favor, cierra la sesión y vuelva a iniciarla para intentar inicializar la Encryption App.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "¡Su clave privada no es válida! Tal vez su contraseña ha sido cambiada desde fuera. Puede actualizar su clave privada en sus opciones personales para recuperar el acceso a sus ficheros.", "Missing requirements." => "Requisitos incompletos.", "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Por favor, asegúrese de que PHP 5.3.3 o posterior está instalado y que la extensión OpenSSL de PHP está habilitada y configurada correctamente. Por el momento, la aplicación de cifrado ha sido deshabilitada.", diff --git a/apps/files_encryption/l10n/et_EE.php b/apps/files_encryption/l10n/et_EE.php index 0c9234d3a5..c49e4e9e5a 100644 --- a/apps/files_encryption/l10n/et_EE.php +++ b/apps/files_encryption/l10n/et_EE.php @@ -8,20 +8,24 @@ $TRANSLATIONS = array( "Could not change the password. Maybe the old password was not correct." => "Ei suutnud vahetada parooli. Võib-olla on vana parool valesti sisestatud.", "Private key password successfully updated." => "Privaatse võtme parool edukalt uuendatud.", "Could not update the private key password. Maybe the old password was not correct." => "Ei suutnud uuendada privaatse võtme parooli. Võib-olla polnud vana parool õige.", +"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." => "Krüpteerimise rakend pole käivitatud. Võib-olla krüpteerimise rakend taaskäivitati sinu sessiooni kestel. Palun proovi logida välja ning uuesti sisse käivitamaks krüpteerimise rakendit.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Sinu privaatne võti pole toimiv! Tõenäoliselt on sinu parool muutunud väljaspool ownCloud süsteemi (näiteks ettevõtte keskhaldus). Sa saad uuendada oma privaatse võtme parooli seadete all taastamaks ligipääsu oma krüpteeritud failidele.", "Missing requirements." => "Nõutavad on puudu.", "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Palun veendu, et on paigaldatud PHP 5.3.3 või uuem ning PHP OpenSSL laiendus on lubatud ning seadistatud korrektselt. Hetkel krüpteerimise rakendus on peatatud.", "Following users are not set up for encryption:" => "Järgmised kasutajad pole seadistatud krüpteeringuks:", "Saving..." => "Salvestamine...", +"Go directly to your " => "Liigu otse oma", "personal settings" => "isiklikes seadetes", "Encryption" => "Krüpteerimine", "Enable recovery key (allow to recover users files in case of password loss):" => "Luba taastevõti (võimada kasutaja failide taastamine parooli kaotuse puhul):", "Recovery key password" => "Taastevõtme parool", +"Repeat Recovery key password" => "Korda taastevõtme parooli", "Enabled" => "Sisse lülitatud", "Disabled" => "Väljalülitatud", "Change recovery key password:" => "Muuda taastevõtme parooli:", "Old Recovery key password" => "Vana taastevõtme parool", "New Recovery key password" => "Uus taastevõtme parool", +"Repeat New Recovery key password" => "Korda uut taastevõtme parooli", "Change Password" => "Muuda parooli", "Your private key password no longer match your log-in password:" => "Sinu privaatse võtme parool ei ühti enam sinu sisselogimise parooliga:", "Set your old private key password to your current log-in password." => "Pane oma vana privaatvõtme parooliks oma praegune sisselogimise parool.", diff --git a/apps/files_encryption/l10n/fr.php b/apps/files_encryption/l10n/fr.php index b222aa10e4..afce2ccfd3 100644 --- a/apps/files_encryption/l10n/fr.php +++ b/apps/files_encryption/l10n/fr.php @@ -8,20 +8,24 @@ $TRANSLATIONS = array( "Could not change the password. Maybe the old password was not correct." => "Ne peut pas changer le mot de passe. L'ancien mot de passe est peut-être incorrect.", "Private key password successfully updated." => "Mot de passe de la clé privé mis à jour avec succès.", "Could not update the private key password. Maybe the old password was not correct." => "Impossible de mettre à jour le mot de passe de la clé privé. Peut-être que l'ancien mot de passe n'était pas correcte.", +"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." => "L'application de chiffrement n'est pas initialisée ! Peut-être que cette application a été réactivée pendant votre session. Veuillez essayer de vous déconnecter et ensuite de vous reconnecter pour initialiser l'application de chiffrement.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Votre clé de sécurité privée n'est pas valide! Il est probable que votre mot de passe ait été changé sans passer par le système ownCloud (par éxemple: le serveur de votre entreprise). Ain d'avoir à nouveau accès à vos fichiers cryptés, vous pouvez mettre à jour votre clé de sécurité privée dans les paramètres personnels de votre compte.", "Missing requirements." => "Système minimum requis non respecté.", "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Veuillez vous assurer qu'une version de PHP 5.3.3 ou supérieure est installée et qu'OpenSSL et son extension PHP sont activés et configurés correctement. En attendant, l'application de chiffrement été désactivée.", "Following users are not set up for encryption:" => "Les utilisateurs suivants ne sont pas configurés pour le chiffrement :", "Saving..." => "Enregistrement...", +"Go directly to your " => "Allez directement à votre", "personal settings" => "paramètres personnel", "Encryption" => "Chiffrement", "Enable recovery key (allow to recover users files in case of password loss):" => "Activer la clef de récupération (permet de récupérer les fichiers des utilisateurs en cas de perte de mot de passe).", "Recovery key password" => "Mot de passe de la clef de récupération", +"Repeat Recovery key password" => "Répétez le mot de passe de la clé de récupération", "Enabled" => "Activer", "Disabled" => "Désactiver", "Change recovery key password:" => "Modifier le mot de passe de la clef de récupération :", "Old Recovery key password" => "Ancien mot de passe de la clef de récupération", "New Recovery key password" => "Nouveau mot de passe de la clef de récupération", +"Repeat New Recovery key password" => "Répétez le nouveau mot de passe de la clé de récupération", "Change Password" => "Changer de mot de passe", "Your private key password no longer match your log-in password:" => "Le mot de passe de votre clef privée ne correspond plus à votre mot de passe de connexion :", "Set your old private key password to your current log-in password." => "Configurez le mot de passe de votre ancienne clef privée avec votre mot de passe courant de connexion. ", diff --git a/apps/files_encryption/l10n/pl.php b/apps/files_encryption/l10n/pl.php index 4eb1ca00dd..b448aaef14 100644 --- a/apps/files_encryption/l10n/pl.php +++ b/apps/files_encryption/l10n/pl.php @@ -8,20 +8,24 @@ $TRANSLATIONS = array( "Could not change the password. Maybe the old password was not correct." => "Nie można zmienić hasła. Może stare hasło nie było poprawne.", "Private key password successfully updated." => "Pomyślnie zaktualizowano hasło klucza prywatnego.", "Could not update the private key password. Maybe the old password was not correct." => "Nie można zmienić prywatnego hasła. Może stare hasło nie było poprawne.", +"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." => "Szyfrowanie aplikacja nie została zainicjowane! Może szyfrowanie aplikacji zostało ponownie włączone podczas tej sesji. Spróbuj się wylogować i zalogować ponownie aby zainicjować szyfrowanie aplikacji.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Klucz prywatny nie jest ważny! Prawdopodobnie Twoje hasło zostało zmienione poza systemem ownCloud (np. w katalogu firmy). Aby odzyskać dostęp do zaszyfrowanych plików można zaktualizować hasło klucza prywatnego w ustawieniach osobistych.", "Missing requirements." => "Brak wymagań.", "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Proszę upewnić się, że PHP 5.3.3 lub nowszy jest zainstalowany i że OpenSSL oraz rozszerzenie PHP jest włączone i poprawnie skonfigurowane. Obecnie szyfrowanie aplikacji zostało wyłączone.", "Following users are not set up for encryption:" => "Następujący użytkownicy nie mają skonfigurowanego szyfrowania:", "Saving..." => "Zapisywanie...", +"Go directly to your " => "Przejdź bezpośrednio do", "personal settings" => "Ustawienia osobiste", "Encryption" => "Szyfrowanie", "Enable recovery key (allow to recover users files in case of password loss):" => "Włączhasło klucza odzyskiwania (pozwala odzyskać pliki użytkowników w przypadku utraty hasła):", "Recovery key password" => "Hasło klucza odzyskiwania", +"Repeat Recovery key password" => "Powtórz hasło klucza odzyskiwania", "Enabled" => "Włączone", "Disabled" => "Wyłączone", "Change recovery key password:" => "Zmień hasło klucza odzyskiwania", "Old Recovery key password" => "Stare hasło klucza odzyskiwania", "New Recovery key password" => "Nowe hasło klucza odzyskiwania", +"Repeat New Recovery key password" => "Powtórz nowe hasło klucza odzyskiwania", "Change Password" => "Zmień hasło", "Your private key password no longer match your log-in password:" => "Hasło klucza prywatnego nie pasuje do hasła logowania:", "Set your old private key password to your current log-in password." => "Podaj swoje stare prywatne hasło aby ustawić nowe", diff --git a/apps/files_encryption/l10n/pt_PT.php b/apps/files_encryption/l10n/pt_PT.php index 53335ab729..788e102dd6 100644 --- a/apps/files_encryption/l10n/pt_PT.php +++ b/apps/files_encryption/l10n/pt_PT.php @@ -9,6 +9,7 @@ $TRANSLATIONS = array( "Could not update the private key password. Maybe the old password was not correct." => "Não foi possível alterar a chave. Possivelmente a password antiga não está correcta.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Chave privada não é válida! Provavelmente senha foi alterada fora do sistema ownCloud (exemplo, o diretório corporativo). Pode atualizar password da chave privada em configurações personalizadas para recuperar o acesso aos seus arquivos encriptados.", "Missing requirements." => "Faltam alguns requisitos.", +"Following users are not set up for encryption:" => "Os utilizadores seguintes não estão marcados para cifragem:", "Saving..." => "A guardar...", "personal settings" => "configurações personalizadas ", "Encryption" => "Encriptação", diff --git a/apps/files_external/l10n/ar.php b/apps/files_external/l10n/ar.php index 905d221e88..055c689582 100644 --- a/apps/files_external/l10n/ar.php +++ b/apps/files_external/l10n/ar.php @@ -1,5 +1,7 @@ "اسم المجلد", +"All Users" => "كل المستخدمين", "Groups" => "مجموعات", "Users" => "المستخدمين", "Delete" => "إلغاء" diff --git a/apps/files_sharing/l10n/ar.php b/apps/files_sharing/l10n/ar.php index ff7b40d16b..2625af1cc0 100644 --- a/apps/files_sharing/l10n/ar.php +++ b/apps/files_sharing/l10n/ar.php @@ -1,7 +1,6 @@ "كلمة المرور", -"Submit" => "تطبيق", "%s shared the folder %s with you" => "%s شارك المجلد %s معك", "%s shared the file %s with you" => "%s شارك الملف %s معك", "Download" => "تحميل", diff --git a/apps/files_sharing/l10n/bg_BG.php b/apps/files_sharing/l10n/bg_BG.php index 1094870fd0..f4b9e2dd5f 100644 --- a/apps/files_sharing/l10n/bg_BG.php +++ b/apps/files_sharing/l10n/bg_BG.php @@ -1,7 +1,6 @@ "Парола", -"Submit" => "Потвърждение", "%s shared the folder %s with you" => "%s сподели папката %s с Вас", "%s shared the file %s with you" => "%s сподели файла %s с Вас", "Download" => "Изтегляне", diff --git a/apps/files_sharing/l10n/bn_BD.php b/apps/files_sharing/l10n/bn_BD.php index 71b948e347..aaed904d9d 100644 --- a/apps/files_sharing/l10n/bn_BD.php +++ b/apps/files_sharing/l10n/bn_BD.php @@ -1,7 +1,6 @@ "কূটশব্দ", -"Submit" => "জমা দিন", "%s shared the folder %s with you" => "%s আপনার সাথে %s ফোল্ডারটি ভাগাভাগি করেছেন", "%s shared the file %s with you" => "%s আপনার সাথে %s ফাইলটি ভাগাভাগি করেছেন", "Download" => "ডাউনলোড", diff --git a/apps/files_sharing/l10n/ca.php b/apps/files_sharing/l10n/ca.php index cbe8f86e25..e5e5910f8c 100644 --- a/apps/files_sharing/l10n/ca.php +++ b/apps/files_sharing/l10n/ca.php @@ -2,7 +2,6 @@ $TRANSLATIONS = array( "The password is wrong. Try again." => "la contrasenya és incorrecta. Intenteu-ho de nou.", "Password" => "Contrasenya", -"Submit" => "Envia", "Sorry, this link doesn’t seem to work anymore." => "Aquest enllaç sembla que no funciona.", "Reasons might be:" => "Les raons podrien ser:", "the item was removed" => "l'element ha estat eliminat", diff --git a/apps/files_sharing/l10n/cs_CZ.php b/apps/files_sharing/l10n/cs_CZ.php index 7258dedcf6..7888ec2587 100644 --- a/apps/files_sharing/l10n/cs_CZ.php +++ b/apps/files_sharing/l10n/cs_CZ.php @@ -2,7 +2,6 @@ $TRANSLATIONS = array( "The password is wrong. Try again." => "Heslo není správné. Zkuste to znovu.", "Password" => "Heslo", -"Submit" => "Odeslat", "Sorry, this link doesn’t seem to work anymore." => "Je nám líto, ale tento odkaz již není funkční.", "Reasons might be:" => "Možné důvody:", "the item was removed" => "položka byla odebrána", diff --git a/apps/files_sharing/l10n/cy_GB.php b/apps/files_sharing/l10n/cy_GB.php index 66fbc4e1d1..d2ae28141d 100644 --- a/apps/files_sharing/l10n/cy_GB.php +++ b/apps/files_sharing/l10n/cy_GB.php @@ -1,7 +1,6 @@ "Cyfrinair", -"Submit" => "Cyflwyno", "%s shared the folder %s with you" => "Rhannodd %s blygell %s â chi", "%s shared the file %s with you" => "Rhannodd %s ffeil %s â chi", "Download" => "Llwytho i lawr", diff --git a/apps/files_sharing/l10n/da.php b/apps/files_sharing/l10n/da.php index 0ca0f38161..aef3ad9881 100644 --- a/apps/files_sharing/l10n/da.php +++ b/apps/files_sharing/l10n/da.php @@ -2,7 +2,6 @@ $TRANSLATIONS = array( "The password is wrong. Try again." => "Kodeordet er forkert. Prøv igen.", "Password" => "Kodeord", -"Submit" => "Send", "Sorry, this link doesn’t seem to work anymore." => "Desværre, dette link ser ikke ud til at fungerer længere.", "Reasons might be:" => "Årsagen kan være:", "the item was removed" => "Filen blev fjernet", diff --git a/apps/files_sharing/l10n/de.php b/apps/files_sharing/l10n/de.php index afed17d883..d65079bec4 100644 --- a/apps/files_sharing/l10n/de.php +++ b/apps/files_sharing/l10n/de.php @@ -2,7 +2,6 @@ $TRANSLATIONS = array( "The password is wrong. Try again." => "Bitte überprüfen sie Ihr Passwort und versuchen Sie es erneut.", "Password" => "Passwort", -"Submit" => "Absenden", "Sorry, this link doesn’t seem to work anymore." => "Entschuldigung, dieser Link scheint nicht mehr zu funktionieren.", "Reasons might be:" => "Gründe könnten sein:", "the item was removed" => "Die Elemente wurden entfernt", diff --git a/apps/files_sharing/l10n/de_CH.php b/apps/files_sharing/l10n/de_CH.php index 1bd24f9d9c..f63714b902 100644 --- a/apps/files_sharing/l10n/de_CH.php +++ b/apps/files_sharing/l10n/de_CH.php @@ -2,7 +2,6 @@ $TRANSLATIONS = array( "The password is wrong. Try again." => "Das Passwort ist falsch. Bitte versuchen Sie es erneut.", "Password" => "Passwort", -"Submit" => "Bestätigen", "Sorry, this link doesn’t seem to work anymore." => "Entschuldigung, dieser Link scheint nicht mehr zu funktionieren.", "Reasons might be:" => "Gründe könnten sein:", "the item was removed" => "Das Element wurde entfernt", diff --git a/apps/files_sharing/l10n/de_DE.php b/apps/files_sharing/l10n/de_DE.php index 1bd24f9d9c..f63714b902 100644 --- a/apps/files_sharing/l10n/de_DE.php +++ b/apps/files_sharing/l10n/de_DE.php @@ -2,7 +2,6 @@ $TRANSLATIONS = array( "The password is wrong. Try again." => "Das Passwort ist falsch. Bitte versuchen Sie es erneut.", "Password" => "Passwort", -"Submit" => "Bestätigen", "Sorry, this link doesn’t seem to work anymore." => "Entschuldigung, dieser Link scheint nicht mehr zu funktionieren.", "Reasons might be:" => "Gründe könnten sein:", "the item was removed" => "Das Element wurde entfernt", diff --git a/apps/files_sharing/l10n/el.php b/apps/files_sharing/l10n/el.php index 93486a831b..4584e261b0 100644 --- a/apps/files_sharing/l10n/el.php +++ b/apps/files_sharing/l10n/el.php @@ -2,7 +2,6 @@ $TRANSLATIONS = array( "The password is wrong. Try again." => "Εσφαλμένο συνθηματικό. Προσπαθήστε ξανά.", "Password" => "Συνθηματικό", -"Submit" => "Καταχώρηση", "Sorry, this link doesn’t seem to work anymore." => "Συγγνώμη, αυτός ο σύνδεσμος μοιάζει να μην ισχύει πια.", "Reasons might be:" => "Οι λόγοι μπορεί να είναι:", "the item was removed" => "το αντικείμενο απομακρύνθηκε", diff --git a/apps/files_sharing/l10n/en@pirate.php b/apps/files_sharing/l10n/en@pirate.php index a60f1fe72f..cd3c00d29d 100644 --- a/apps/files_sharing/l10n/en@pirate.php +++ b/apps/files_sharing/l10n/en@pirate.php @@ -1,7 +1,6 @@ "Secret Code", -"Submit" => "Submit", "%s shared the folder %s with you" => "%s shared the folder %s with you", "%s shared the file %s with you" => "%s shared the file %s with you", "Download" => "Download", diff --git a/apps/files_sharing/l10n/en_GB.php b/apps/files_sharing/l10n/en_GB.php index 337c108651..958f38557d 100644 --- a/apps/files_sharing/l10n/en_GB.php +++ b/apps/files_sharing/l10n/en_GB.php @@ -2,7 +2,6 @@ $TRANSLATIONS = array( "The password is wrong. Try again." => "The password is wrong. Try again.", "Password" => "Password", -"Submit" => "Submit", "Sorry, this link doesn’t seem to work anymore." => "Sorry, this link doesn’t seem to work anymore.", "Reasons might be:" => "Reasons might be:", "the item was removed" => "the item was removed", diff --git a/apps/files_sharing/l10n/eo.php b/apps/files_sharing/l10n/eo.php index 70e703bda9..294dc0314c 100644 --- a/apps/files_sharing/l10n/eo.php +++ b/apps/files_sharing/l10n/eo.php @@ -1,7 +1,6 @@ "Pasvorto", -"Submit" => "Sendi", "%s shared the folder %s with you" => "%s kunhavigis la dosierujon %s kun vi", "%s shared the file %s with you" => "%s kunhavigis la dosieron %s kun vi", "Download" => "Elŝuti", diff --git a/apps/files_sharing/l10n/es.php b/apps/files_sharing/l10n/es.php index e163da766f..45e4563b69 100644 --- a/apps/files_sharing/l10n/es.php +++ b/apps/files_sharing/l10n/es.php @@ -2,7 +2,6 @@ $TRANSLATIONS = array( "The password is wrong. Try again." => "La contraseña introducida es errónea. Inténtelo de nuevo.", "Password" => "Contraseña", -"Submit" => "Enviar", "Sorry, this link doesn’t seem to work anymore." => "Vaya, este enlace parece que no volverá a funcionar.", "Reasons might be:" => "Las causas podrían ser:", "the item was removed" => "el elemento fue eliminado", diff --git a/apps/files_sharing/l10n/es_AR.php b/apps/files_sharing/l10n/es_AR.php index 7c9dcb94ac..989a91a450 100644 --- a/apps/files_sharing/l10n/es_AR.php +++ b/apps/files_sharing/l10n/es_AR.php @@ -2,7 +2,6 @@ $TRANSLATIONS = array( "The password is wrong. Try again." => "La contraseña no es correcta. Probá de nuevo.", "Password" => "Contraseña", -"Submit" => "Enviar", "Sorry, this link doesn’t seem to work anymore." => "Perdón, este enlace parece no funcionar más.", "Reasons might be:" => "Las causas podrían ser:", "the item was removed" => "el elemento fue borrado", diff --git a/apps/files_sharing/l10n/et_EE.php b/apps/files_sharing/l10n/et_EE.php index fe230902ff..b70cbb3e7e 100644 --- a/apps/files_sharing/l10n/et_EE.php +++ b/apps/files_sharing/l10n/et_EE.php @@ -2,7 +2,6 @@ $TRANSLATIONS = array( "The password is wrong. Try again." => "Parool on vale. Proovi uuesti.", "Password" => "Parool", -"Submit" => "Saada", "Sorry, this link doesn’t seem to work anymore." => "Vabandust, see link ei tundu enam toimivat.", "Reasons might be:" => "Põhjused võivad olla:", "the item was removed" => "üksus on eemaldatud", diff --git a/apps/files_sharing/l10n/eu.php b/apps/files_sharing/l10n/eu.php index 7b6a4b08b3..91be195368 100644 --- a/apps/files_sharing/l10n/eu.php +++ b/apps/files_sharing/l10n/eu.php @@ -2,7 +2,6 @@ $TRANSLATIONS = array( "The password is wrong. Try again." => "Pasahitza ez da egokia. Saiatu berriro.", "Password" => "Pasahitza", -"Submit" => "Bidali", "Sorry, this link doesn’t seem to work anymore." => "Barkatu, lotura ez dirudi eskuragarria dagoenik.", "Reasons might be:" => "Arrazoiak hurrengoak litezke:", "the item was removed" => "fitxategia ezbatua izan da", diff --git a/apps/files_sharing/l10n/fa.php b/apps/files_sharing/l10n/fa.php index 48888f798a..664338723c 100644 --- a/apps/files_sharing/l10n/fa.php +++ b/apps/files_sharing/l10n/fa.php @@ -2,7 +2,6 @@ $TRANSLATIONS = array( "The password is wrong. Try again." => "رمزعبور اشتباه می باشد. دوباره امتحان کنید.", "Password" => "گذرواژه", -"Submit" => "ثبت", "%s shared the folder %s with you" => "%sپوشه %s را با شما به اشتراک گذاشت", "%s shared the file %s with you" => "%sفایل %s را با شما به اشتراک گذاشت", "Download" => "دانلود", diff --git a/apps/files_sharing/l10n/fi_FI.php b/apps/files_sharing/l10n/fi_FI.php index 42905be57a..75042ad375 100644 --- a/apps/files_sharing/l10n/fi_FI.php +++ b/apps/files_sharing/l10n/fi_FI.php @@ -2,7 +2,6 @@ $TRANSLATIONS = array( "The password is wrong. Try again." => "Väärä salasana. Yritä uudelleen.", "Password" => "Salasana", -"Submit" => "Lähetä", "Sorry, this link doesn’t seem to work anymore." => "Valitettavasti linkki ei vaikuta enää toimivan.", "Reasons might be:" => "Mahdollisia syitä:", "the item was removed" => "kohde poistettiin", diff --git a/apps/files_sharing/l10n/fr.php b/apps/files_sharing/l10n/fr.php index c97a1db97e..d5227ef3c4 100644 --- a/apps/files_sharing/l10n/fr.php +++ b/apps/files_sharing/l10n/fr.php @@ -2,7 +2,6 @@ $TRANSLATIONS = array( "The password is wrong. Try again." => "Le mot de passe est incorrect. Veuillez réessayer.", "Password" => "Mot de passe", -"Submit" => "Envoyer", "Sorry, this link doesn’t seem to work anymore." => "Désolé, mais le lien semble ne plus fonctionner.", "Reasons might be:" => "Les raisons peuvent être :", "the item was removed" => "l'item a été supprimé", diff --git a/apps/files_sharing/l10n/gl.php b/apps/files_sharing/l10n/gl.php index 66b1f0e5ff..a4e91cf3b5 100644 --- a/apps/files_sharing/l10n/gl.php +++ b/apps/files_sharing/l10n/gl.php @@ -2,7 +2,6 @@ $TRANSLATIONS = array( "The password is wrong. Try again." => "O contrasinal é incorrecto. Ténteo de novo.", "Password" => "Contrasinal", -"Submit" => "Enviar", "Sorry, this link doesn’t seem to work anymore." => "Semella que esta ligazón non funciona.", "Reasons might be:" => "As razóns poderían ser:", "the item was removed" => "o elemento foi retirado", diff --git a/apps/files_sharing/l10n/he.php b/apps/files_sharing/l10n/he.php index f8b304898c..217298fedd 100644 --- a/apps/files_sharing/l10n/he.php +++ b/apps/files_sharing/l10n/he.php @@ -1,7 +1,6 @@ "סיסמא", -"Submit" => "שליחה", "%s shared the folder %s with you" => "%s שיתף עמך את התיקייה %s", "%s shared the file %s with you" => "%s שיתף עמך את הקובץ %s", "Download" => "הורדה", diff --git a/apps/files_sharing/l10n/hr.php b/apps/files_sharing/l10n/hr.php index 87eb956706..4a82dd7f71 100644 --- a/apps/files_sharing/l10n/hr.php +++ b/apps/files_sharing/l10n/hr.php @@ -1,7 +1,6 @@ "Lozinka", -"Submit" => "Pošalji", "Download" => "Preuzimanje", "Upload" => "Učitaj", "Cancel upload" => "Prekini upload" diff --git a/apps/files_sharing/l10n/hu_HU.php b/apps/files_sharing/l10n/hu_HU.php index 7ef69b1e0b..423af30aae 100644 --- a/apps/files_sharing/l10n/hu_HU.php +++ b/apps/files_sharing/l10n/hu_HU.php @@ -2,7 +2,6 @@ $TRANSLATIONS = array( "The password is wrong. Try again." => "A megadott jelszó nem megfelelő. Próbálja újra!", "Password" => "Jelszó", -"Submit" => "Elküld", "Sorry, this link doesn’t seem to work anymore." => "Sajnos úgy tűnik, ez a link már nem működik.", "Reasons might be:" => "Ennek az oka a következő lehet:", "the item was removed" => "az állományt időközben eltávolították", diff --git a/apps/files_sharing/l10n/hy.php b/apps/files_sharing/l10n/hy.php index d4cb416f45..da200623e0 100644 --- a/apps/files_sharing/l10n/hy.php +++ b/apps/files_sharing/l10n/hy.php @@ -1,6 +1,5 @@ "Հաստատել", "Download" => "Բեռնել" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/ia.php b/apps/files_sharing/l10n/ia.php index 5112501073..f9d6c33a0b 100644 --- a/apps/files_sharing/l10n/ia.php +++ b/apps/files_sharing/l10n/ia.php @@ -1,7 +1,6 @@ "Contrasigno", -"Submit" => "Submitter", "Download" => "Discargar", "Upload" => "Incargar" ); diff --git a/apps/files_sharing/l10n/id.php b/apps/files_sharing/l10n/id.php index a4d73bd2b7..e91ef94bf3 100644 --- a/apps/files_sharing/l10n/id.php +++ b/apps/files_sharing/l10n/id.php @@ -1,7 +1,6 @@ "Sandi", -"Submit" => "Kirim", "%s shared the folder %s with you" => "%s membagikan folder %s dengan Anda", "%s shared the file %s with you" => "%s membagikan file %s dengan Anda", "Download" => "Unduh", diff --git a/apps/files_sharing/l10n/is.php b/apps/files_sharing/l10n/is.php index 05241d3f9e..8ae8e48eff 100644 --- a/apps/files_sharing/l10n/is.php +++ b/apps/files_sharing/l10n/is.php @@ -1,7 +1,6 @@ "Lykilorð", -"Submit" => "Senda", "%s shared the folder %s with you" => "%s deildi möppunni %s með þér", "%s shared the file %s with you" => "%s deildi skránni %s með þér", "Download" => "Niðurhal", diff --git a/apps/files_sharing/l10n/it.php b/apps/files_sharing/l10n/it.php index a611e0641c..b5d3713464 100644 --- a/apps/files_sharing/l10n/it.php +++ b/apps/files_sharing/l10n/it.php @@ -2,7 +2,6 @@ $TRANSLATIONS = array( "The password is wrong. Try again." => "La password è errata. Prova ancora.", "Password" => "Password", -"Submit" => "Invia", "Sorry, this link doesn’t seem to work anymore." => "Spiacenti, questo collegamento sembra non essere più attivo.", "Reasons might be:" => "I motivi potrebbero essere:", "the item was removed" => "l'elemento è stato rimosso", diff --git a/apps/files_sharing/l10n/ja_JP.php b/apps/files_sharing/l10n/ja_JP.php index 4f7d5b31c2..6a7500f147 100644 --- a/apps/files_sharing/l10n/ja_JP.php +++ b/apps/files_sharing/l10n/ja_JP.php @@ -2,7 +2,6 @@ $TRANSLATIONS = array( "The password is wrong. Try again." => "パスワードが間違っています。再試行してください。", "Password" => "パスワード", -"Submit" => "送信", "Sorry, this link doesn’t seem to work anymore." => "申し訳ございません。このリンクはもう利用できません。", "Reasons might be:" => "理由は以下の通りと考えられます:", "the item was removed" => "アイテムが削除されました", diff --git a/apps/files_sharing/l10n/ka_GE.php b/apps/files_sharing/l10n/ka_GE.php index a5a80b3c5a..89a6800b3e 100644 --- a/apps/files_sharing/l10n/ka_GE.php +++ b/apps/files_sharing/l10n/ka_GE.php @@ -1,7 +1,6 @@ "პაროლი", -"Submit" => "გაგზავნა", "%s shared the folder %s with you" => "%s–მა გაგიზიარათ ფოლდერი %s", "%s shared the file %s with you" => "%s–მა გაგიზიარათ ფაილი %s", "Download" => "ჩამოტვირთვა", diff --git a/apps/files_sharing/l10n/ko.php b/apps/files_sharing/l10n/ko.php index f7eab1ac55..90f59ed167 100644 --- a/apps/files_sharing/l10n/ko.php +++ b/apps/files_sharing/l10n/ko.php @@ -2,7 +2,6 @@ $TRANSLATIONS = array( "The password is wrong. Try again." => "비밀번호가 틀립니다. 다시 입력해주세요.", "Password" => "암호", -"Submit" => "제출", "Sorry, this link doesn’t seem to work anymore." => "죄송합니다만 이 링크는 더이상 작동되지 않습니다.", "Reasons might be:" => "이유는 다음과 같을 수 있습니다:", "the item was removed" => "이 항목은 삭제되었습니다", diff --git a/apps/files_sharing/l10n/ku_IQ.php b/apps/files_sharing/l10n/ku_IQ.php index 55576a19c3..6b4b7e4ba9 100644 --- a/apps/files_sharing/l10n/ku_IQ.php +++ b/apps/files_sharing/l10n/ku_IQ.php @@ -1,7 +1,6 @@ "وشەی تێپەربو", -"Submit" => "ناردن", "%s shared the folder %s with you" => "%s دابه‌شی کردووه‌ بوخچه‌ی %s له‌گه‌ڵ تۆ", "%s shared the file %s with you" => "%s دابه‌شی کردووه‌ په‌ڕگه‌یی %s له‌گه‌ڵ تۆ", "Download" => "داگرتن", diff --git a/apps/files_sharing/l10n/lb.php b/apps/files_sharing/l10n/lb.php index d37a1d9d22..eeb6a3e2dc 100644 --- a/apps/files_sharing/l10n/lb.php +++ b/apps/files_sharing/l10n/lb.php @@ -2,7 +2,6 @@ $TRANSLATIONS = array( "The password is wrong. Try again." => "Den Passwuert ass incorrect. Probeier ed nach eng keier.", "Password" => "Passwuert", -"Submit" => "Fortschécken", "%s shared the folder %s with you" => "%s huet den Dossier %s mad der gedeelt", "%s shared the file %s with you" => "%s deelt den Fichier %s mad dir", "Download" => "Download", diff --git a/apps/files_sharing/l10n/lt_LT.php b/apps/files_sharing/l10n/lt_LT.php index 90ae6a39a0..fe4a82e064 100644 --- a/apps/files_sharing/l10n/lt_LT.php +++ b/apps/files_sharing/l10n/lt_LT.php @@ -2,7 +2,6 @@ $TRANSLATIONS = array( "The password is wrong. Try again." => "Netinka slaptažodis: Bandykite dar kartą.", "Password" => "Slaptažodis", -"Submit" => "Išsaugoti", "Sorry, this link doesn’t seem to work anymore." => "Atleiskite, panašu, kad nuoroda yra neveiksni.", "Reasons might be:" => "Galimos priežastys:", "the item was removed" => "elementas buvo pašalintas", diff --git a/apps/files_sharing/l10n/lv.php b/apps/files_sharing/l10n/lv.php index 0eb04fb966..a913ba1152 100644 --- a/apps/files_sharing/l10n/lv.php +++ b/apps/files_sharing/l10n/lv.php @@ -1,7 +1,6 @@ "Parole", -"Submit" => "Iesniegt", "%s shared the folder %s with you" => "%s ar jums dalījās ar mapi %s", "%s shared the file %s with you" => "%s ar jums dalījās ar datni %s", "Download" => "Lejupielādēt", diff --git a/apps/files_sharing/l10n/mk.php b/apps/files_sharing/l10n/mk.php index c913b2beaf..c132f7aa26 100644 --- a/apps/files_sharing/l10n/mk.php +++ b/apps/files_sharing/l10n/mk.php @@ -1,7 +1,6 @@ "Лозинка", -"Submit" => "Прати", "%s shared the folder %s with you" => "%s ја сподели папката %s со Вас", "%s shared the file %s with you" => "%s ја сподели датотеката %s со Вас", "Download" => "Преземи", diff --git a/apps/files_sharing/l10n/ms_MY.php b/apps/files_sharing/l10n/ms_MY.php index 0a3d08bbc1..9725dd4d1b 100644 --- a/apps/files_sharing/l10n/ms_MY.php +++ b/apps/files_sharing/l10n/ms_MY.php @@ -1,7 +1,6 @@ "Kata laluan", -"Submit" => "Hantar", "Download" => "Muat turun", "Upload" => "Muat naik", "Cancel upload" => "Batal muat naik" diff --git a/apps/files_sharing/l10n/my_MM.php b/apps/files_sharing/l10n/my_MM.php index f44010004c..ff92e898ed 100644 --- a/apps/files_sharing/l10n/my_MM.php +++ b/apps/files_sharing/l10n/my_MM.php @@ -1,7 +1,6 @@ "စကားဝှက်", -"Submit" => "ထည့်သွင်းမည်", "Download" => "ဒေါင်းလုတ်" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_sharing/l10n/nb_NO.php b/apps/files_sharing/l10n/nb_NO.php index dd8a8edf31..0452b5275c 100644 --- a/apps/files_sharing/l10n/nb_NO.php +++ b/apps/files_sharing/l10n/nb_NO.php @@ -2,7 +2,6 @@ $TRANSLATIONS = array( "The password is wrong. Try again." => "Passordet er feil. Prøv på nytt.", "Password" => "Passord", -"Submit" => "Send inn", "%s shared the folder %s with you" => "%s delte mappen %s med deg", "%s shared the file %s with you" => "%s delte filen %s med deg", "Download" => "Last ned", diff --git a/apps/files_sharing/l10n/nl.php b/apps/files_sharing/l10n/nl.php index 9c46a1ab4b..210acc9cdf 100644 --- a/apps/files_sharing/l10n/nl.php +++ b/apps/files_sharing/l10n/nl.php @@ -2,7 +2,6 @@ $TRANSLATIONS = array( "The password is wrong. Try again." => "Wachtwoord ongeldig. Probeer het nogmaals.", "Password" => "Wachtwoord", -"Submit" => "Verzenden", "Sorry, this link doesn’t seem to work anymore." => "Sorry, deze link lijkt niet meer in gebruik te zijn.", "Reasons might be:" => "Redenen kunnen zijn:", "the item was removed" => "bestand was verwijderd", diff --git a/apps/files_sharing/l10n/nn_NO.php b/apps/files_sharing/l10n/nn_NO.php index 94272943e4..1f1e8001e7 100644 --- a/apps/files_sharing/l10n/nn_NO.php +++ b/apps/files_sharing/l10n/nn_NO.php @@ -2,7 +2,6 @@ $TRANSLATIONS = array( "The password is wrong. Try again." => "Passordet er gale. Prøv igjen.", "Password" => "Passord", -"Submit" => "Send", "Sorry, this link doesn’t seem to work anymore." => "Orsak, denne lenkja fungerer visst ikkje lenger.", "Reasons might be:" => "Moglege grunnar:", "the item was removed" => "fila/mappa er fjerna", diff --git a/apps/files_sharing/l10n/oc.php b/apps/files_sharing/l10n/oc.php index 493ddb4dfd..299d98e58b 100644 --- a/apps/files_sharing/l10n/oc.php +++ b/apps/files_sharing/l10n/oc.php @@ -1,7 +1,6 @@ "Senhal", -"Submit" => "Sosmetre", "Download" => "Avalcarga", "Upload" => "Amontcarga", "Cancel upload" => " Anulla l'amontcargar" diff --git a/apps/files_sharing/l10n/pl.php b/apps/files_sharing/l10n/pl.php index 43c7e2e314..63d373917e 100644 --- a/apps/files_sharing/l10n/pl.php +++ b/apps/files_sharing/l10n/pl.php @@ -2,7 +2,6 @@ $TRANSLATIONS = array( "The password is wrong. Try again." => "To hasło jest niewłaściwe. Spróbuj ponownie.", "Password" => "Hasło", -"Submit" => "Wyślij", "Sorry, this link doesn’t seem to work anymore." => "Przepraszamy ale wygląda na to, że ten link już nie działa.", "Reasons might be:" => "Możliwe powody:", "the item was removed" => "element został usunięty", diff --git a/apps/files_sharing/l10n/pt_BR.php b/apps/files_sharing/l10n/pt_BR.php index 9fc1cacf7c..5705587919 100644 --- a/apps/files_sharing/l10n/pt_BR.php +++ b/apps/files_sharing/l10n/pt_BR.php @@ -2,7 +2,6 @@ $TRANSLATIONS = array( "The password is wrong. Try again." => "Senha incorreta. Tente novamente.", "Password" => "Senha", -"Submit" => "Submeter", "Sorry, this link doesn’t seem to work anymore." => "Desculpe, este link parece não mais funcionar.", "Reasons might be:" => "As razões podem ser:", "the item was removed" => "o item foi removido", diff --git a/apps/files_sharing/l10n/pt_PT.php b/apps/files_sharing/l10n/pt_PT.php index 73dc2a3e1f..7fa1876aaa 100644 --- a/apps/files_sharing/l10n/pt_PT.php +++ b/apps/files_sharing/l10n/pt_PT.php @@ -2,7 +2,6 @@ $TRANSLATIONS = array( "The password is wrong. Try again." => "Password errada, por favor tente de novo", "Password" => "Password", -"Submit" => "Submeter", "Sorry, this link doesn’t seem to work anymore." => "Desculpe, mas este link parece não estar a funcionar.", "Reasons might be:" => "As razões poderão ser:", "the item was removed" => "O item foi removido", diff --git a/apps/files_sharing/l10n/ro.php b/apps/files_sharing/l10n/ro.php index d17152ff1b..54e20ed6bb 100644 --- a/apps/files_sharing/l10n/ro.php +++ b/apps/files_sharing/l10n/ro.php @@ -2,7 +2,6 @@ $TRANSLATIONS = array( "The password is wrong. Try again." => "Parola este incorectă. Încercaţi din nou.", "Password" => "Parolă", -"Submit" => "Trimite", "%s shared the folder %s with you" => "%s a partajat directorul %s cu tine", "%s shared the file %s with you" => "%s a partajat fișierul %s cu tine", "Download" => "Descarcă", diff --git a/apps/files_sharing/l10n/ru.php b/apps/files_sharing/l10n/ru.php index f42f1d9aeb..38581b045e 100644 --- a/apps/files_sharing/l10n/ru.php +++ b/apps/files_sharing/l10n/ru.php @@ -2,7 +2,6 @@ $TRANSLATIONS = array( "The password is wrong. Try again." => "Неверный пароль. Попробуйте еще раз.", "Password" => "Пароль", -"Submit" => "Отправить", "Sorry, this link doesn’t seem to work anymore." => "К сожалению, эта ссылка, похоже не будет работать больше.", "Reasons might be:" => "Причиной может быть:", "the item was removed" => "объект был удалён", diff --git a/apps/files_sharing/l10n/si_LK.php b/apps/files_sharing/l10n/si_LK.php index 6135f09213..e840138564 100644 --- a/apps/files_sharing/l10n/si_LK.php +++ b/apps/files_sharing/l10n/si_LK.php @@ -1,7 +1,6 @@ "මුර පදය", -"Submit" => "යොමු කරන්න", "%s shared the folder %s with you" => "%s ඔබව %s ෆෝල්ඩරයට හවුල් කරගත්තේය", "%s shared the file %s with you" => "%s ඔබ සමඟ %s ගොනුව බෙදාහදාගත්තේය", "Download" => "බාන්න", diff --git a/apps/files_sharing/l10n/sk_SK.php b/apps/files_sharing/l10n/sk_SK.php index 31ecb28b60..d8633c1daf 100644 --- a/apps/files_sharing/l10n/sk_SK.php +++ b/apps/files_sharing/l10n/sk_SK.php @@ -2,7 +2,6 @@ $TRANSLATIONS = array( "The password is wrong. Try again." => "Heslo je chybné. Skúste to znova.", "Password" => "Heslo", -"Submit" => "Odoslať", "Sorry, this link doesn’t seem to work anymore." => "To je nepríjemné, ale tento odkaz už nie je funkčný.", "Reasons might be:" => "Možné dôvody:", "the item was removed" => "položka bola presunutá", diff --git a/apps/files_sharing/l10n/sl.php b/apps/files_sharing/l10n/sl.php index cbd4f5fea2..58bbf87c19 100644 --- a/apps/files_sharing/l10n/sl.php +++ b/apps/files_sharing/l10n/sl.php @@ -1,7 +1,6 @@ "Geslo", -"Submit" => "Pošlji", "%s shared the folder %s with you" => "Oseba %s je določila mapo %s za souporabo", "%s shared the file %s with you" => "Oseba %s je določila datoteko %s za souporabo", "Download" => "Prejmi", diff --git a/apps/files_sharing/l10n/sq.php b/apps/files_sharing/l10n/sq.php index d2077663e8..473049f75e 100644 --- a/apps/files_sharing/l10n/sq.php +++ b/apps/files_sharing/l10n/sq.php @@ -2,7 +2,6 @@ $TRANSLATIONS = array( "The password is wrong. Try again." => "Kodi është i gabuar. Provojeni përsëri.", "Password" => "Kodi", -"Submit" => "Parashtro", "Sorry, this link doesn’t seem to work anymore." => "Ju kërkojmë ndjesë, kjo lidhje duket sikur nuk punon më.", "Reasons might be:" => "Arsyet mund të jenë:", "the item was removed" => "elementi është eliminuar", diff --git a/apps/files_sharing/l10n/sr.php b/apps/files_sharing/l10n/sr.php index 3b97d15419..e484ad25eb 100644 --- a/apps/files_sharing/l10n/sr.php +++ b/apps/files_sharing/l10n/sr.php @@ -1,7 +1,6 @@ "Лозинка", -"Submit" => "Пошаљи", "Download" => "Преузми", "Upload" => "Отпреми", "Cancel upload" => "Прекини отпремање" diff --git a/apps/files_sharing/l10n/sr@latin.php b/apps/files_sharing/l10n/sr@latin.php index 1a6be62576..08463e1510 100644 --- a/apps/files_sharing/l10n/sr@latin.php +++ b/apps/files_sharing/l10n/sr@latin.php @@ -1,7 +1,6 @@ "Lozinka", -"Submit" => "Pošalji", "Download" => "Preuzmi", "Upload" => "Pošalji" ); diff --git a/apps/files_sharing/l10n/sv.php b/apps/files_sharing/l10n/sv.php index b8a5f8629a..23bf17aba4 100644 --- a/apps/files_sharing/l10n/sv.php +++ b/apps/files_sharing/l10n/sv.php @@ -2,7 +2,6 @@ $TRANSLATIONS = array( "The password is wrong. Try again." => "Lösenordet är fel. Försök igen.", "Password" => "Lösenord", -"Submit" => "Skicka", "Sorry, this link doesn’t seem to work anymore." => "Tyvärr, denna länk verkar inte fungera längre.", "Reasons might be:" => "Orsaker kan vara:", "the item was removed" => "objektet togs bort", diff --git a/apps/files_sharing/l10n/ta_LK.php b/apps/files_sharing/l10n/ta_LK.php index b4eb0fb7fb..90a2fb417f 100644 --- a/apps/files_sharing/l10n/ta_LK.php +++ b/apps/files_sharing/l10n/ta_LK.php @@ -1,7 +1,6 @@ "கடவுச்சொல்", -"Submit" => "சமர்ப்பிக்குக", "%s shared the folder %s with you" => "%s கோப்புறையானது %s உடன் பகிரப்பட்டது", "%s shared the file %s with you" => "%s கோப்பானது %s உடன் பகிரப்பட்டது", "Download" => "பதிவிறக்குக", diff --git a/apps/files_sharing/l10n/th_TH.php b/apps/files_sharing/l10n/th_TH.php index 060bd8bed9..e192e0a97c 100644 --- a/apps/files_sharing/l10n/th_TH.php +++ b/apps/files_sharing/l10n/th_TH.php @@ -1,7 +1,6 @@ "รหัสผ่าน", -"Submit" => "ส่ง", "%s shared the folder %s with you" => "%s ได้แชร์โฟลเดอร์ %s ให้กับคุณ", "%s shared the file %s with you" => "%s ได้แชร์ไฟล์ %s ให้กับคุณ", "Download" => "ดาวน์โหลด", diff --git a/apps/files_sharing/l10n/tr.php b/apps/files_sharing/l10n/tr.php index a5bcff82cf..9a2d36e523 100644 --- a/apps/files_sharing/l10n/tr.php +++ b/apps/files_sharing/l10n/tr.php @@ -1,7 +1,6 @@ "Parola", -"Submit" => "Gönder", "%s shared the folder %s with you" => "%s sizinle paylaşılan %s klasör", "%s shared the file %s with you" => "%s sizinle paylaşılan %s klasör", "Download" => "İndir", diff --git a/apps/files_sharing/l10n/ug.php b/apps/files_sharing/l10n/ug.php index 43ee9f77bc..6ffa02f734 100644 --- a/apps/files_sharing/l10n/ug.php +++ b/apps/files_sharing/l10n/ug.php @@ -1,7 +1,6 @@ "ئىم", -"Submit" => "تاپشۇر", "Download" => "چۈشۈر", "Upload" => "يۈكلە", "Cancel upload" => "يۈكلەشتىن ۋاز كەچ" diff --git a/apps/files_sharing/l10n/uk.php b/apps/files_sharing/l10n/uk.php index b6a7784c69..dea1ee6850 100644 --- a/apps/files_sharing/l10n/uk.php +++ b/apps/files_sharing/l10n/uk.php @@ -1,7 +1,6 @@ "Пароль", -"Submit" => "Передати", "%s shared the folder %s with you" => "%s опублікував каталог %s для Вас", "%s shared the file %s with you" => "%s опублікував файл %s для Вас", "Download" => "Завантажити", diff --git a/apps/files_sharing/l10n/vi.php b/apps/files_sharing/l10n/vi.php index 00e8e094c3..4566d3744d 100644 --- a/apps/files_sharing/l10n/vi.php +++ b/apps/files_sharing/l10n/vi.php @@ -1,7 +1,6 @@ "Mật khẩu", -"Submit" => "Xác nhận", "%s shared the folder %s with you" => "%s đã chia sẻ thư mục %s với bạn", "%s shared the file %s with you" => "%s đã chia sẻ tập tin %s với bạn", "Download" => "Tải về", diff --git a/apps/files_sharing/l10n/zh_CN.php b/apps/files_sharing/l10n/zh_CN.php index f541d6c155..956c161b48 100644 --- a/apps/files_sharing/l10n/zh_CN.php +++ b/apps/files_sharing/l10n/zh_CN.php @@ -2,7 +2,6 @@ $TRANSLATIONS = array( "The password is wrong. Try again." => "用户名或密码错误!请重试", "Password" => "密码", -"Submit" => "提交", "Sorry, this link doesn’t seem to work anymore." => "抱歉,此链接已失效", "Reasons might be:" => "可能原因是:", "the item was removed" => "此项已移除", diff --git a/apps/files_sharing/l10n/zh_TW.php b/apps/files_sharing/l10n/zh_TW.php index 5cc33fd383..bc415913e4 100644 --- a/apps/files_sharing/l10n/zh_TW.php +++ b/apps/files_sharing/l10n/zh_TW.php @@ -2,7 +2,6 @@ $TRANSLATIONS = array( "The password is wrong. Try again." => "請檢查您的密碼並再試一次", "Password" => "密碼", -"Submit" => "送出", "Sorry, this link doesn’t seem to work anymore." => "抱歉,此連結已經失效", "Reasons might be:" => "可能的原因:", "the item was removed" => "項目已經移除", diff --git a/apps/files_trashbin/l10n/ar.php b/apps/files_trashbin/l10n/ar.php index 0af6972af5..9733e6b100 100644 --- a/apps/files_trashbin/l10n/ar.php +++ b/apps/files_trashbin/l10n/ar.php @@ -2,16 +2,11 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "تعذّر حذف%s بشكل دائم", "Couldn't restore %s" => "تعذّر استرجاع %s ", -"perform restore operation" => "إبدء عملية الإستعادة", "Error" => "خطأ", -"delete file permanently" => "حذف بشكل دائم", -"Delete permanently" => "حذف بشكل دائم", -"Name" => "اسم", -"Deleted" => "تم الحذف", -"_%n folder_::_%n folders_" => array("","","","","","مجلدات %n"), -"_%n file_::_%n files_" => array("","","","",""," ملفات %n"), "Nothing in here. Your trash bin is empty!" => "لا يوجد شيء هنا. سلة المهملات خاليه.", +"Name" => "اسم", "Restore" => "استعيد", +"Deleted" => "تم الحذف", "Delete" => "إلغاء", "Deleted Files" => "الملفات المحذوفه" ); diff --git a/apps/files_trashbin/l10n/bg_BG.php b/apps/files_trashbin/l10n/bg_BG.php index 3c12e6906e..2f1521feaa 100644 --- a/apps/files_trashbin/l10n/bg_BG.php +++ b/apps/files_trashbin/l10n/bg_BG.php @@ -2,16 +2,11 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Невъзможно перманентното изтриване на %s", "Couldn't restore %s" => "Невъзможно възтановяване на %s", -"perform restore operation" => "извършване на действие по възстановяване", "Error" => "Грешка", -"delete file permanently" => "изтриване на файла завинаги", -"Delete permanently" => "Изтриване завинаги", -"Name" => "Име", -"Deleted" => "Изтрито", -"_%n folder_::_%n folders_" => array("",""), -"_%n file_::_%n files_" => array("",""), "Nothing in here. Your trash bin is empty!" => "Няма нищо. Кофата е празна!", +"Name" => "Име", "Restore" => "Възтановяване", +"Deleted" => "Изтрито", "Delete" => "Изтриване", "Deleted Files" => "Изтрити файлове" ); diff --git a/apps/files_trashbin/l10n/bn_BD.php b/apps/files_trashbin/l10n/bn_BD.php index c3741dbd1d..d3a9f23b37 100644 --- a/apps/files_trashbin/l10n/bn_BD.php +++ b/apps/files_trashbin/l10n/bn_BD.php @@ -2,8 +2,6 @@ $TRANSLATIONS = array( "Error" => "সমস্যা", "Name" => "রাম", -"_%n folder_::_%n folders_" => array("",""), -"_%n file_::_%n files_" => array("",""), "Delete" => "মুছে" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/bs.php b/apps/files_trashbin/l10n/bs.php index af7033bd18..08ef9b4fdb 100644 --- a/apps/files_trashbin/l10n/bs.php +++ b/apps/files_trashbin/l10n/bs.php @@ -1,7 +1,5 @@ "Ime", -"_%n folder_::_%n folders_" => array("","",""), -"_%n file_::_%n files_" => array("","","") +"Name" => "Ime" ); $PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/apps/files_trashbin/l10n/ca.php b/apps/files_trashbin/l10n/ca.php index eb57aa16aa..fa3f63ddb2 100644 --- a/apps/files_trashbin/l10n/ca.php +++ b/apps/files_trashbin/l10n/ca.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "No s'ha pogut esborrar permanentment %s", "Couldn't restore %s" => "No s'ha pogut restaurar %s", -"perform restore operation" => "executa l'operació de restauració", "Error" => "Error", -"delete file permanently" => "esborra el fitxer permanentment", -"Delete permanently" => "Esborra permanentment", -"Name" => "Nom", -"Deleted" => "Eliminat", -"_%n folder_::_%n folders_" => array("","%n carpetes"), -"_%n file_::_%n files_" => array("","%n fitxers"), "restored" => "restaurat", "Nothing in here. Your trash bin is empty!" => "La paperera està buida!", +"Name" => "Nom", "Restore" => "Recupera", +"Deleted" => "Eliminat", "Delete" => "Esborra", "Deleted Files" => "Fitxers eliminats" ); diff --git a/apps/files_trashbin/l10n/cs_CZ.php b/apps/files_trashbin/l10n/cs_CZ.php index f0bebee742..ff0a69572f 100644 --- a/apps/files_trashbin/l10n/cs_CZ.php +++ b/apps/files_trashbin/l10n/cs_CZ.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Nelze trvale odstranit %s", "Couldn't restore %s" => "Nelze obnovit %s", -"perform restore operation" => "provést obnovu", "Error" => "Chyba", -"delete file permanently" => "trvale odstranit soubor", -"Delete permanently" => "Trvale odstranit", -"Name" => "Název", -"Deleted" => "Smazáno", -"_%n folder_::_%n folders_" => array("%n adresář","%n adresáře","%n adresářů"), -"_%n file_::_%n files_" => array("%n soubor","%n soubory","%n souborů"), "restored" => "obnoveno", "Nothing in here. Your trash bin is empty!" => "Žádný obsah. Váš koš je prázdný.", +"Name" => "Název", "Restore" => "Obnovit", +"Deleted" => "Smazáno", "Delete" => "Smazat", "Deleted Files" => "Smazané soubory" ); diff --git a/apps/files_trashbin/l10n/cy_GB.php b/apps/files_trashbin/l10n/cy_GB.php index 123a445c2c..f2eb81d67d 100644 --- a/apps/files_trashbin/l10n/cy_GB.php +++ b/apps/files_trashbin/l10n/cy_GB.php @@ -2,16 +2,11 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Methwyd dileu %s yn barhaol", "Couldn't restore %s" => "Methwyd adfer %s", -"perform restore operation" => "gweithrediad adfer", "Error" => "Gwall", -"delete file permanently" => "dileu ffeil yn barhaol", -"Delete permanently" => "Dileu'n barhaol", -"Name" => "Enw", -"Deleted" => "Wedi dileu", -"_%n folder_::_%n folders_" => array("","","",""), -"_%n file_::_%n files_" => array("","","",""), "Nothing in here. Your trash bin is empty!" => "Does dim byd yma. Mae eich bin sbwriel yn wag!", +"Name" => "Enw", "Restore" => "Adfer", +"Deleted" => "Wedi dileu", "Delete" => "Dileu", "Deleted Files" => "Ffeiliau Ddilewyd" ); diff --git a/apps/files_trashbin/l10n/da.php b/apps/files_trashbin/l10n/da.php index 2fbc089387..c396706d15 100644 --- a/apps/files_trashbin/l10n/da.php +++ b/apps/files_trashbin/l10n/da.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Kunne ikke slette %s permanent", "Couldn't restore %s" => "Kunne ikke gendanne %s", -"perform restore operation" => "udfør gendannelsesoperation", "Error" => "Fejl", -"delete file permanently" => "slet fil permanent", -"Delete permanently" => "Slet permanent", -"Name" => "Navn", -"Deleted" => "Slettet", -"_%n folder_::_%n folders_" => array("%n mappe","%n mapper"), -"_%n file_::_%n files_" => array("%n fil","%n filer"), "restored" => "Gendannet", "Nothing in here. Your trash bin is empty!" => "Intet at se her. Din papirkurv er tom!", +"Name" => "Navn", "Restore" => "Gendan", +"Deleted" => "Slettet", "Delete" => "Slet", "Deleted Files" => "Slettede filer" ); diff --git a/apps/files_trashbin/l10n/de.php b/apps/files_trashbin/l10n/de.php index ad6e0839bd..2b6703dd05 100644 --- a/apps/files_trashbin/l10n/de.php +++ b/apps/files_trashbin/l10n/de.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Konnte %s nicht dauerhaft löschen", "Couldn't restore %s" => "Konnte %s nicht wiederherstellen", -"perform restore operation" => "Wiederherstellung ausführen", "Error" => "Fehler", -"delete file permanently" => "Datei dauerhaft löschen", -"Delete permanently" => "Endgültig löschen", -"Name" => "Name", -"Deleted" => "gelöscht", -"_%n folder_::_%n folders_" => array("","%n Ordner"), -"_%n file_::_%n files_" => array("","%n Dateien"), "restored" => "Wiederhergestellt", "Nothing in here. Your trash bin is empty!" => "Nichts zu löschen, der Papierkorb ist leer!", +"Name" => "Name", "Restore" => "Wiederherstellen", +"Deleted" => "gelöscht", "Delete" => "Löschen", "Deleted Files" => "Gelöschte Dateien" ); diff --git a/apps/files_trashbin/l10n/de_CH.php b/apps/files_trashbin/l10n/de_CH.php index 92290a0de5..ec9f0b5309 100644 --- a/apps/files_trashbin/l10n/de_CH.php +++ b/apps/files_trashbin/l10n/de_CH.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Konnte %s nicht dauerhaft löschen", "Couldn't restore %s" => "Konnte %s nicht wiederherstellen", -"perform restore operation" => "Wiederherstellung ausführen", "Error" => "Fehler", -"delete file permanently" => "Datei dauerhaft löschen", -"Delete permanently" => "Endgültig löschen", -"Name" => "Name", -"Deleted" => "Gelöscht", -"_%n folder_::_%n folders_" => array("%n Ordner","%n Ordner"), -"_%n file_::_%n files_" => array("%n Datei","%n Dateien"), "restored" => "Wiederhergestellt", "Nothing in here. Your trash bin is empty!" => "Nichts zu löschen, Ihr Papierkorb ist leer!", +"Name" => "Name", "Restore" => "Wiederherstellen", +"Deleted" => "Gelöscht", "Delete" => "Löschen", "Deleted Files" => "Gelöschte Dateien" ); diff --git a/apps/files_trashbin/l10n/de_DE.php b/apps/files_trashbin/l10n/de_DE.php index 0df6941280..ec9f0b5309 100644 --- a/apps/files_trashbin/l10n/de_DE.php +++ b/apps/files_trashbin/l10n/de_DE.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Konnte %s nicht dauerhaft löschen", "Couldn't restore %s" => "Konnte %s nicht wiederherstellen", -"perform restore operation" => "Wiederherstellung ausführen", "Error" => "Fehler", -"delete file permanently" => "Datei dauerhaft löschen", -"Delete permanently" => "Endgültig löschen", -"Name" => "Name", -"Deleted" => "Gelöscht", -"_%n folder_::_%n folders_" => array("%n Ordner","%n Ordner"), -"_%n file_::_%n files_" => array("%n Dateien","%n Dateien"), "restored" => "Wiederhergestellt", "Nothing in here. Your trash bin is empty!" => "Nichts zu löschen, Ihr Papierkorb ist leer!", +"Name" => "Name", "Restore" => "Wiederherstellen", +"Deleted" => "Gelöscht", "Delete" => "Löschen", "Deleted Files" => "Gelöschte Dateien" ); diff --git a/apps/files_trashbin/l10n/el.php b/apps/files_trashbin/l10n/el.php index 939c7fed61..ffeafb7e9d 100644 --- a/apps/files_trashbin/l10n/el.php +++ b/apps/files_trashbin/l10n/el.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Αδύνατη η μόνιμη διαγραφή του %s", "Couldn't restore %s" => "Αδυναμία επαναφοράς %s", -"perform restore operation" => "εκτέλεση λειτουργία επαναφοράς", "Error" => "Σφάλμα", -"delete file permanently" => "μόνιμη διαγραφή αρχείου", -"Delete permanently" => "Μόνιμη διαγραφή", -"Name" => "Όνομα", -"Deleted" => "Διαγράφηκε", -"_%n folder_::_%n folders_" => array("","%n φάκελοι"), -"_%n file_::_%n files_" => array("","%n αρχεία"), "restored" => "έγινε επαναφορά", "Nothing in here. Your trash bin is empty!" => "Δεν υπάρχει τίποτα εδώ. Ο κάδος σας είναι άδειος!", +"Name" => "Όνομα", "Restore" => "Επαναφορά", +"Deleted" => "Διαγράφηκε", "Delete" => "Διαγραφή", "Deleted Files" => "Διαγραμμένα Αρχεία" ); diff --git a/apps/files_trashbin/l10n/en_GB.php b/apps/files_trashbin/l10n/en_GB.php index be9d8b9f52..6b179c8653 100644 --- a/apps/files_trashbin/l10n/en_GB.php +++ b/apps/files_trashbin/l10n/en_GB.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Couldn't delete %s permanently", "Couldn't restore %s" => "Couldn't restore %s", -"perform restore operation" => "perform restore operation", "Error" => "Error", -"delete file permanently" => "delete file permanently", -"Delete permanently" => "Delete permanently", -"Name" => "Name", -"Deleted" => "Deleted", -"_%n folder_::_%n folders_" => array("%n folder","%n folders"), -"_%n file_::_%n files_" => array("%n file","%n files"), "restored" => "restored", "Nothing in here. Your trash bin is empty!" => "Nothing in here. Your recycle bin is empty!", +"Name" => "Name", "Restore" => "Restore", +"Deleted" => "Deleted", "Delete" => "Delete", "Deleted Files" => "Deleted Files" ); diff --git a/apps/files_trashbin/l10n/eo.php b/apps/files_trashbin/l10n/eo.php index d1e30cba58..3f4023c640 100644 --- a/apps/files_trashbin/l10n/eo.php +++ b/apps/files_trashbin/l10n/eo.php @@ -1,10 +1,7 @@ "Eraro", -"Delete permanently" => "Forigi por ĉiam", "Name" => "Nomo", -"_%n folder_::_%n folders_" => array("",""), -"_%n file_::_%n files_" => array("",""), "Restore" => "Restaŭri", "Delete" => "Forigi", "Deleted Files" => "Forigitaj dosieroj" diff --git a/apps/files_trashbin/l10n/es.php b/apps/files_trashbin/l10n/es.php index a5639c2c71..db7a617729 100644 --- a/apps/files_trashbin/l10n/es.php +++ b/apps/files_trashbin/l10n/es.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "No se puede eliminar %s permanentemente", "Couldn't restore %s" => "No se puede restaurar %s", -"perform restore operation" => "restaurar", "Error" => "Error", -"delete file permanently" => "eliminar archivo permanentemente", -"Delete permanently" => "Eliminar permanentemente", -"Name" => "Nombre", -"Deleted" => "Eliminado", -"_%n folder_::_%n folders_" => array("%n carpeta","%n carpetas"), -"_%n file_::_%n files_" => array("%n archivo","%n archivos"), "restored" => "recuperado", "Nothing in here. Your trash bin is empty!" => "No hay nada aquí. ¡Tu papelera esta vacía!", +"Name" => "Nombre", "Restore" => "Recuperar", +"Deleted" => "Eliminado", "Delete" => "Eliminar", "Deleted Files" => "Archivos Eliminados" ); diff --git a/apps/files_trashbin/l10n/es_AR.php b/apps/files_trashbin/l10n/es_AR.php index 0cb969a348..842101d33b 100644 --- a/apps/files_trashbin/l10n/es_AR.php +++ b/apps/files_trashbin/l10n/es_AR.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "No fue posible borrar %s de manera permanente", "Couldn't restore %s" => "No se pudo restaurar %s", -"perform restore operation" => "Restaurar", "Error" => "Error", -"delete file permanently" => "Borrar archivo de manera permanente", -"Delete permanently" => "Borrar de manera permanente", -"Name" => "Nombre", -"Deleted" => "Borrado", -"_%n folder_::_%n folders_" => array("%n directorio","%n directorios"), -"_%n file_::_%n files_" => array("%n archivo","%n archivos"), "restored" => "recuperado", "Nothing in here. Your trash bin is empty!" => "No hay nada acá. ¡La papelera está vacía!", +"Name" => "Nombre", "Restore" => "Recuperar", +"Deleted" => "Borrado", "Delete" => "Borrar", "Deleted Files" => "Archivos eliminados" ); diff --git a/apps/files_trashbin/l10n/et_EE.php b/apps/files_trashbin/l10n/et_EE.php index 43c182ea7b..56eebc79f0 100644 --- a/apps/files_trashbin/l10n/et_EE.php +++ b/apps/files_trashbin/l10n/et_EE.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "%s jäädavalt kustutamine ebaõnnestus", "Couldn't restore %s" => "%s ei saa taastada", -"perform restore operation" => "soorita taastamine", "Error" => "Viga", -"delete file permanently" => "kustuta fail jäädavalt", -"Delete permanently" => "Kustuta jäädavalt", -"Name" => "Nimi", -"Deleted" => "Kustutatud", -"_%n folder_::_%n folders_" => array("","%n kataloogi"), -"_%n file_::_%n files_" => array("%n fail","%n faili"), "restored" => "taastatud", "Nothing in here. Your trash bin is empty!" => "Siin pole midagi. Sinu prügikast on tühi!", +"Name" => "Nimi", "Restore" => "Taasta", +"Deleted" => "Kustutatud", "Delete" => "Kustuta", "Deleted Files" => "Kustutatud failid" ); diff --git a/apps/files_trashbin/l10n/eu.php b/apps/files_trashbin/l10n/eu.php index 240582a7ea..04d92e01b3 100644 --- a/apps/files_trashbin/l10n/eu.php +++ b/apps/files_trashbin/l10n/eu.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Ezin izan da %s betirako ezabatu", "Couldn't restore %s" => "Ezin izan da %s berreskuratu", -"perform restore operation" => "berreskuratu", "Error" => "Errorea", -"delete file permanently" => "ezabatu fitxategia betirako", -"Delete permanently" => "Ezabatu betirako", -"Name" => "Izena", -"Deleted" => "Ezabatuta", -"_%n folder_::_%n folders_" => array("karpeta %n","%n karpeta"), -"_%n file_::_%n files_" => array("fitxategi %n","%n fitxategi"), "restored" => "Berrezarrita", "Nothing in here. Your trash bin is empty!" => "Ez dago ezer ez. Zure zakarrontzia hutsik dago!", +"Name" => "Izena", "Restore" => "Berrezarri", +"Deleted" => "Ezabatuta", "Delete" => "Ezabatu", "Deleted Files" => "Ezabatutako Fitxategiak" ); diff --git a/apps/files_trashbin/l10n/fa.php b/apps/files_trashbin/l10n/fa.php index 654f20a5f1..8409987b89 100644 --- a/apps/files_trashbin/l10n/fa.php +++ b/apps/files_trashbin/l10n/fa.php @@ -2,16 +2,11 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "%s را نمی توان برای همیشه حذف کرد", "Couldn't restore %s" => "%s را نمی توان بازگرداند", -"perform restore operation" => "انجام عمل بازگرداندن", "Error" => "خطا", -"delete file permanently" => "حذف فایل برای همیشه", -"Delete permanently" => "حذف قطعی", -"Name" => "نام", -"Deleted" => "حذف شده", -"_%n folder_::_%n folders_" => array(""), -"_%n file_::_%n files_" => array(""), "Nothing in here. Your trash bin is empty!" => "هیچ چیزی اینجا نیست. سطل زباله ی شما خالی است.", +"Name" => "نام", "Restore" => "بازیابی", +"Deleted" => "حذف شده", "Delete" => "حذف", "Deleted Files" => "فایلهای حذف شده" ); diff --git a/apps/files_trashbin/l10n/fi_FI.php b/apps/files_trashbin/l10n/fi_FI.php index f03950981c..b956c1c1e4 100644 --- a/apps/files_trashbin/l10n/fi_FI.php +++ b/apps/files_trashbin/l10n/fi_FI.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Kohdetta %s ei voitu poistaa pysyvästi", "Couldn't restore %s" => "Kohteen %s palautus epäonnistui", -"perform restore operation" => "suorita palautustoiminto", "Error" => "Virhe", -"delete file permanently" => "poista tiedosto pysyvästi", -"Delete permanently" => "Poista pysyvästi", -"Name" => "Nimi", -"Deleted" => "Poistettu", -"_%n folder_::_%n folders_" => array("%n kansio","%n kansiota"), -"_%n file_::_%n files_" => array("%n tiedosto","%n tiedostoa"), "restored" => "palautettu", "Nothing in here. Your trash bin is empty!" => "Tyhjää täynnä! Roskakorissa ei ole mitään.", +"Name" => "Nimi", "Restore" => "Palauta", +"Deleted" => "Poistettu", "Delete" => "Poista", "Deleted Files" => "Poistetut tiedostot" ); diff --git a/apps/files_trashbin/l10n/fr.php b/apps/files_trashbin/l10n/fr.php index 39e1ac8614..593310e2c3 100644 --- a/apps/files_trashbin/l10n/fr.php +++ b/apps/files_trashbin/l10n/fr.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Impossible d'effacer %s de façon permanente", "Couldn't restore %s" => "Impossible de restaurer %s", -"perform restore operation" => "effectuer l'opération de restauration", "Error" => "Erreur", -"delete file permanently" => "effacer définitivement le fichier", -"Delete permanently" => "Supprimer de façon définitive", -"Name" => "Nom", -"Deleted" => "Effacé", -"_%n folder_::_%n folders_" => array("%n dossier","%n dossiers"), -"_%n file_::_%n files_" => array("%n fichier","%n fichiers"), "restored" => "restauré", "Nothing in here. Your trash bin is empty!" => "Il n'y a rien ici. Votre corbeille est vide !", +"Name" => "Nom", "Restore" => "Restaurer", +"Deleted" => "Effacé", "Delete" => "Supprimer", "Deleted Files" => "Fichiers effacés" ); diff --git a/apps/files_trashbin/l10n/gl.php b/apps/files_trashbin/l10n/gl.php index 568c17607f..ae7ef8b319 100644 --- a/apps/files_trashbin/l10n/gl.php +++ b/apps/files_trashbin/l10n/gl.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Non foi posíbel eliminar %s permanente", "Couldn't restore %s" => "Non foi posíbel restaurar %s", -"perform restore operation" => "realizar a operación de restauración", "Error" => "Erro", -"delete file permanently" => "eliminar o ficheiro permanentemente", -"Delete permanently" => "Eliminar permanentemente", -"Name" => "Nome", -"Deleted" => "Eliminado", -"_%n folder_::_%n folders_" => array("%n cartafol","%n cartafoles"), -"_%n file_::_%n files_" => array("%n ficheiro","%n ficheiros"), "restored" => "restaurado", "Nothing in here. Your trash bin is empty!" => "Aquí non hai nada. O cesto do lixo está baleiro!", +"Name" => "Nome", "Restore" => "Restablecer", +"Deleted" => "Eliminado", "Delete" => "Eliminar", "Deleted Files" => "Ficheiros eliminados" ); diff --git a/apps/files_trashbin/l10n/he.php b/apps/files_trashbin/l10n/he.php index 6aa6264a31..d0bcb327d4 100644 --- a/apps/files_trashbin/l10n/he.php +++ b/apps/files_trashbin/l10n/he.php @@ -2,16 +2,11 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "לא ניתן למחוק את %s לצמיתות", "Couldn't restore %s" => "לא ניתן לשחזר את %s", -"perform restore operation" => "ביצוע פעולת שחזור", "Error" => "שגיאה", -"delete file permanently" => "מחיקת קובץ לצמיתות", -"Delete permanently" => "מחיקה לצמיתות", -"Name" => "שם", -"Deleted" => "נמחק", -"_%n folder_::_%n folders_" => array("",""), -"_%n file_::_%n files_" => array("",""), "Nothing in here. Your trash bin is empty!" => "אין כאן שום דבר. סל המיחזור שלך ריק!", +"Name" => "שם", "Restore" => "שחזור", +"Deleted" => "נמחק", "Delete" => "מחיקה", "Deleted Files" => "קבצים שנמחקו" ); diff --git a/apps/files_trashbin/l10n/hi.php b/apps/files_trashbin/l10n/hi.php index 71711218b1..d4a26011b5 100644 --- a/apps/files_trashbin/l10n/hi.php +++ b/apps/files_trashbin/l10n/hi.php @@ -1,7 +1,5 @@ "त्रुटि", -"_%n folder_::_%n folders_" => array("",""), -"_%n file_::_%n files_" => array("","") +"Error" => "त्रुटि" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/hr.php b/apps/files_trashbin/l10n/hr.php index d227b4979a..8e8fd22f8e 100644 --- a/apps/files_trashbin/l10n/hr.php +++ b/apps/files_trashbin/l10n/hr.php @@ -2,8 +2,6 @@ $TRANSLATIONS = array( "Error" => "Greška", "Name" => "Ime", -"_%n folder_::_%n folders_" => array("","",""), -"_%n file_::_%n files_" => array("","",""), "Delete" => "Obriši" ); $PLURAL_FORMS = "nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;"; diff --git a/apps/files_trashbin/l10n/hu_HU.php b/apps/files_trashbin/l10n/hu_HU.php index 766ddcbce4..aa8b45a7d6 100644 --- a/apps/files_trashbin/l10n/hu_HU.php +++ b/apps/files_trashbin/l10n/hu_HU.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Nem sikerült %s végleges törlése", "Couldn't restore %s" => "Nem sikerült %s visszaállítása", -"perform restore operation" => "a visszaállítás végrehajtása", "Error" => "Hiba", -"delete file permanently" => "az állomány végleges törlése", -"Delete permanently" => "Végleges törlés", -"Name" => "Név", -"Deleted" => "Törölve", -"_%n folder_::_%n folders_" => array("","%n mappa"), -"_%n file_::_%n files_" => array("","%n állomány"), "restored" => "visszaállítva", "Nothing in here. Your trash bin is empty!" => "Itt nincs semmi. Az Ön szemetes mappája üres!", +"Name" => "Név", "Restore" => "Visszaállítás", +"Deleted" => "Törölve", "Delete" => "Törlés", "Deleted Files" => "Törölt fájlok" ); diff --git a/apps/files_trashbin/l10n/hy.php b/apps/files_trashbin/l10n/hy.php index 6ff58b5620..f933bec8fe 100644 --- a/apps/files_trashbin/l10n/hy.php +++ b/apps/files_trashbin/l10n/hy.php @@ -1,7 +1,5 @@ array("",""), -"_%n file_::_%n files_" => array("",""), "Delete" => "Ջնջել" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/ia.php b/apps/files_trashbin/l10n/ia.php index c583344a81..7709ef030e 100644 --- a/apps/files_trashbin/l10n/ia.php +++ b/apps/files_trashbin/l10n/ia.php @@ -2,8 +2,6 @@ $TRANSLATIONS = array( "Error" => "Error", "Name" => "Nomine", -"_%n folder_::_%n folders_" => array("",""), -"_%n file_::_%n files_" => array("",""), "Delete" => "Deler" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/id.php b/apps/files_trashbin/l10n/id.php index 6aad1302f4..a55520fc11 100644 --- a/apps/files_trashbin/l10n/id.php +++ b/apps/files_trashbin/l10n/id.php @@ -2,16 +2,11 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Tidak dapat menghapus permanen %s", "Couldn't restore %s" => "Tidak dapat memulihkan %s", -"perform restore operation" => "jalankan operasi pemulihan", "Error" => "Galat", -"delete file permanently" => "hapus berkas secara permanen", -"Delete permanently" => "Hapus secara permanen", -"Name" => "Nama", -"Deleted" => "Dihapus", -"_%n folder_::_%n folders_" => array(""), -"_%n file_::_%n files_" => array(""), "Nothing in here. Your trash bin is empty!" => "Tempat sampah anda kosong!", +"Name" => "Nama", "Restore" => "Pulihkan", +"Deleted" => "Dihapus", "Delete" => "Hapus", "Deleted Files" => "Berkas yang Dihapus" ); diff --git a/apps/files_trashbin/l10n/is.php b/apps/files_trashbin/l10n/is.php index 55ae433646..8ccf89739f 100644 --- a/apps/files_trashbin/l10n/is.php +++ b/apps/files_trashbin/l10n/is.php @@ -2,8 +2,6 @@ $TRANSLATIONS = array( "Error" => "Villa", "Name" => "Nafn", -"_%n folder_::_%n folders_" => array("",""), -"_%n file_::_%n files_" => array("",""), "Delete" => "Eyða" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/it.php b/apps/files_trashbin/l10n/it.php index e4b39c4a6d..b631e0c9e4 100644 --- a/apps/files_trashbin/l10n/it.php +++ b/apps/files_trashbin/l10n/it.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Impossibile eliminare %s definitivamente", "Couldn't restore %s" => "Impossibile ripristinare %s", -"perform restore operation" => "esegui operazione di ripristino", "Error" => "Errore", -"delete file permanently" => "elimina il file definitivamente", -"Delete permanently" => "Elimina definitivamente", -"Name" => "Nome", -"Deleted" => "Eliminati", -"_%n folder_::_%n folders_" => array("%n cartella","%n cartelle"), -"_%n file_::_%n files_" => array("%n file","%n file"), "restored" => "ripristinati", "Nothing in here. Your trash bin is empty!" => "Qui non c'è niente. Il tuo cestino è vuoto.", +"Name" => "Nome", "Restore" => "Ripristina", +"Deleted" => "Eliminati", "Delete" => "Elimina", "Deleted Files" => "File eliminati" ); diff --git a/apps/files_trashbin/l10n/ja_JP.php b/apps/files_trashbin/l10n/ja_JP.php index eb9748d57c..e819a92559 100644 --- a/apps/files_trashbin/l10n/ja_JP.php +++ b/apps/files_trashbin/l10n/ja_JP.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "%s を完全に削除出来ませんでした", "Couldn't restore %s" => "%s を復元出来ませんでした", -"perform restore operation" => "復元操作を実行する", "Error" => "エラー", -"delete file permanently" => "ファイルを完全に削除する", -"Delete permanently" => "完全に削除する", -"Name" => "名前", -"Deleted" => "削除済み", -"_%n folder_::_%n folders_" => array("%n個のフォルダ"), -"_%n file_::_%n files_" => array("%n個のファイル"), "restored" => "復元済", "Nothing in here. Your trash bin is empty!" => "ここには何もありません。ゴミ箱は空です!", +"Name" => "名前", "Restore" => "復元", +"Deleted" => "削除済み", "Delete" => "削除", "Deleted Files" => "削除されたファイル" ); diff --git a/apps/files_trashbin/l10n/ka_GE.php b/apps/files_trashbin/l10n/ka_GE.php index 236d8951e9..7440171dee 100644 --- a/apps/files_trashbin/l10n/ka_GE.php +++ b/apps/files_trashbin/l10n/ka_GE.php @@ -2,16 +2,11 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "ფაილი %s–ის სრულად წაშლა ვერ მოხერხდა", "Couldn't restore %s" => "%s–ის აღდგენა ვერ მოხერხდა", -"perform restore operation" => "მიმდინარეობს აღდგენის ოპერაცია", "Error" => "შეცდომა", -"delete file permanently" => "ფაილის სრულად წაშლა", -"Delete permanently" => "სრულად წაშლა", -"Name" => "სახელი", -"Deleted" => "წაშლილი", -"_%n folder_::_%n folders_" => array(""), -"_%n file_::_%n files_" => array(""), "Nothing in here. Your trash bin is empty!" => "აქ არაფერი არ არის. სანაგვე ყუთი ცარიელია!", +"Name" => "სახელი", "Restore" => "აღდგენა", +"Deleted" => "წაშლილი", "Delete" => "წაშლა", "Deleted Files" => "წაშლილი ფაილები" ); diff --git a/apps/files_trashbin/l10n/ko.php b/apps/files_trashbin/l10n/ko.php index 9ac5f9802c..809ecfea15 100644 --- a/apps/files_trashbin/l10n/ko.php +++ b/apps/files_trashbin/l10n/ko.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "%s를 영구적으로 삭제할수 없습니다", "Couldn't restore %s" => "%s를 복원할수 없습니다", -"perform restore operation" => "복원 작업중", "Error" => "오류", -"delete file permanently" => "영구적으로 파일 삭제하기", -"Delete permanently" => "영원히 삭제", -"Name" => "이름", -"Deleted" => "삭제됨", -"_%n folder_::_%n folders_" => array("폴더 %n개"), -"_%n file_::_%n files_" => array("파일 %n개 "), "restored" => "복원됨", "Nothing in here. Your trash bin is empty!" => "현재 휴지통은 비어있습니다!", +"Name" => "이름", "Restore" => "복원", +"Deleted" => "삭제됨", "Delete" => "삭제", "Deleted Files" => "삭제된 파일들" ); diff --git a/apps/files_trashbin/l10n/ku_IQ.php b/apps/files_trashbin/l10n/ku_IQ.php index 3f110f0600..c1962a4075 100644 --- a/apps/files_trashbin/l10n/ku_IQ.php +++ b/apps/files_trashbin/l10n/ku_IQ.php @@ -1,8 +1,6 @@ "هه‌ڵه", -"Name" => "ناو", -"_%n folder_::_%n folders_" => array("",""), -"_%n file_::_%n files_" => array("","") +"Name" => "ناو" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/lb.php b/apps/files_trashbin/l10n/lb.php index cbfd515a8b..b434ae7217 100644 --- a/apps/files_trashbin/l10n/lb.php +++ b/apps/files_trashbin/l10n/lb.php @@ -2,8 +2,6 @@ $TRANSLATIONS = array( "Error" => "Fehler", "Name" => "Numm", -"_%n folder_::_%n folders_" => array("",""), -"_%n file_::_%n files_" => array("",""), "Delete" => "Läschen" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/lt_LT.php b/apps/files_trashbin/l10n/lt_LT.php index 0a51290f4d..c4a8463fd0 100644 --- a/apps/files_trashbin/l10n/lt_LT.php +++ b/apps/files_trashbin/l10n/lt_LT.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Nepavyko negrįžtamai ištrinti %s", "Couldn't restore %s" => "Nepavyko atkurti %s", -"perform restore operation" => "atkurti", "Error" => "Klaida", -"delete file permanently" => "failą ištrinti negrįžtamai", -"Delete permanently" => "Ištrinti negrįžtamai", -"Name" => "Pavadinimas", -"Deleted" => "Ištrinti", -"_%n folder_::_%n folders_" => array("","","%n aplankų"), -"_%n file_::_%n files_" => array("","","%n failų"), "restored" => "atstatyta", "Nothing in here. Your trash bin is empty!" => "Nieko nėra. Jūsų šiukšliadėžė tuščia!", +"Name" => "Pavadinimas", "Restore" => "Atstatyti", +"Deleted" => "Ištrinti", "Delete" => "Ištrinti", "Deleted Files" => "Ištrinti failai" ); diff --git a/apps/files_trashbin/l10n/lv.php b/apps/files_trashbin/l10n/lv.php index ca833b2420..5c04a0c97d 100644 --- a/apps/files_trashbin/l10n/lv.php +++ b/apps/files_trashbin/l10n/lv.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Nevarēja pilnībā izdzēst %s", "Couldn't restore %s" => "Nevarēja atjaunot %s", -"perform restore operation" => "veikt atjaunošanu", "Error" => "Kļūda", -"delete file permanently" => "dzēst datni pavisam", -"Delete permanently" => "Dzēst pavisam", -"Name" => "Nosaukums", -"Deleted" => "Dzēsts", -"_%n folder_::_%n folders_" => array("Nekas, %n mapes","%n mape","%n mapes"), -"_%n file_::_%n files_" => array("Neviens! %n faaili","%n fails","%n faili"), "restored" => "atjaunots", "Nothing in here. Your trash bin is empty!" => "Šeit nekā nav. Jūsu miskaste ir tukša!", +"Name" => "Nosaukums", "Restore" => "Atjaunot", +"Deleted" => "Dzēsts", "Delete" => "Dzēst", "Deleted Files" => "Dzēstās datnes" ); diff --git a/apps/files_trashbin/l10n/mk.php b/apps/files_trashbin/l10n/mk.php index 965518dbc8..9200be01cd 100644 --- a/apps/files_trashbin/l10n/mk.php +++ b/apps/files_trashbin/l10n/mk.php @@ -2,8 +2,6 @@ $TRANSLATIONS = array( "Error" => "Грешка", "Name" => "Име", -"_%n folder_::_%n folders_" => array("",""), -"_%n file_::_%n files_" => array("",""), "Delete" => "Избриши" ); $PLURAL_FORMS = "nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;"; diff --git a/apps/files_trashbin/l10n/ms_MY.php b/apps/files_trashbin/l10n/ms_MY.php index 1b5ca07c70..1972eba031 100644 --- a/apps/files_trashbin/l10n/ms_MY.php +++ b/apps/files_trashbin/l10n/ms_MY.php @@ -2,8 +2,6 @@ $TRANSLATIONS = array( "Error" => "Ralat", "Name" => "Nama", -"_%n folder_::_%n folders_" => array(""), -"_%n file_::_%n files_" => array(""), "Delete" => "Padam" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_trashbin/l10n/nb_NO.php b/apps/files_trashbin/l10n/nb_NO.php index 8eb3bc1846..eb917e3dde 100644 --- a/apps/files_trashbin/l10n/nb_NO.php +++ b/apps/files_trashbin/l10n/nb_NO.php @@ -2,16 +2,11 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Kunne ikke slette %s fullstendig", "Couldn't restore %s" => "Kunne ikke gjenopprette %s", -"perform restore operation" => "utfør gjenopprettings operasjon", "Error" => "Feil", -"delete file permanently" => "slett filer permanent", -"Delete permanently" => "Slett permanent", -"Name" => "Navn", -"Deleted" => "Slettet", -"_%n folder_::_%n folders_" => array("","%n mapper"), -"_%n file_::_%n files_" => array("","%n filer"), "Nothing in here. Your trash bin is empty!" => "Ingenting her. Søppelkassen din er tom!", +"Name" => "Navn", "Restore" => "Gjenopprett", +"Deleted" => "Slettet", "Delete" => "Slett", "Deleted Files" => "Slettet filer" ); diff --git a/apps/files_trashbin/l10n/nl.php b/apps/files_trashbin/l10n/nl.php index b3ae57da56..37a8ca6540 100644 --- a/apps/files_trashbin/l10n/nl.php +++ b/apps/files_trashbin/l10n/nl.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Kon %s niet permanent verwijderen", "Couldn't restore %s" => "Kon %s niet herstellen", -"perform restore operation" => "uitvoeren restore operatie", "Error" => "Fout", -"delete file permanently" => "verwijder bestanden definitief", -"Delete permanently" => "Verwijder definitief", -"Name" => "Naam", -"Deleted" => "Verwijderd", -"_%n folder_::_%n folders_" => array("%n map","%n mappen"), -"_%n file_::_%n files_" => array("%n bestand","%n bestanden"), "restored" => "hersteld", "Nothing in here. Your trash bin is empty!" => "Niets te vinden. Uw prullenbak is leeg!", +"Name" => "Naam", "Restore" => "Herstellen", +"Deleted" => "Verwijderd", "Delete" => "Verwijder", "Deleted Files" => "Verwijderde bestanden" ); diff --git a/apps/files_trashbin/l10n/nn_NO.php b/apps/files_trashbin/l10n/nn_NO.php index 73fe48211c..39e2d5cda9 100644 --- a/apps/files_trashbin/l10n/nn_NO.php +++ b/apps/files_trashbin/l10n/nn_NO.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Klarte ikkje sletta %s for godt", "Couldn't restore %s" => "Klarte ikkje gjenoppretta %s", -"perform restore operation" => "utfør gjenoppretting", "Error" => "Feil", -"delete file permanently" => "slett fila for godt", -"Delete permanently" => "Slett for godt", -"Name" => "Namn", -"Deleted" => "Sletta", -"_%n folder_::_%n folders_" => array("%n mappe","%n mapper"), -"_%n file_::_%n files_" => array("%n fil","%n filer"), "restored" => "gjenoppretta", "Nothing in here. Your trash bin is empty!" => "Ingenting her. Papirkorga di er tom!", +"Name" => "Namn", "Restore" => "Gjenopprett", +"Deleted" => "Sletta", "Delete" => "Slett", "Deleted Files" => "Sletta filer" ); diff --git a/apps/files_trashbin/l10n/oc.php b/apps/files_trashbin/l10n/oc.php index a62902c3b7..b472683f08 100644 --- a/apps/files_trashbin/l10n/oc.php +++ b/apps/files_trashbin/l10n/oc.php @@ -2,8 +2,6 @@ $TRANSLATIONS = array( "Error" => "Error", "Name" => "Nom", -"_%n folder_::_%n folders_" => array("",""), -"_%n file_::_%n files_" => array("",""), "Delete" => "Escafa" ); $PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/apps/files_trashbin/l10n/pa.php b/apps/files_trashbin/l10n/pa.php index e53707fd70..825a49aaea 100644 --- a/apps/files_trashbin/l10n/pa.php +++ b/apps/files_trashbin/l10n/pa.php @@ -1,8 +1,6 @@ "ਗਲਤੀ", -"_%n folder_::_%n folders_" => array("",""), -"_%n file_::_%n files_" => array("",""), "Delete" => "ਹਟਾਓ" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/pl.php b/apps/files_trashbin/l10n/pl.php index c838a6b956..961b772782 100644 --- a/apps/files_trashbin/l10n/pl.php +++ b/apps/files_trashbin/l10n/pl.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Nie można trwale usunąć %s", "Couldn't restore %s" => "Nie można przywrócić %s", -"perform restore operation" => "wykonywanie operacji przywracania", "Error" => "Błąd", -"delete file permanently" => "trwale usuń plik", -"Delete permanently" => "Trwale usuń", -"Name" => "Nazwa", -"Deleted" => "Usunięte", -"_%n folder_::_%n folders_" => array("","","%n katalogów"), -"_%n file_::_%n files_" => array("","","%n plików"), "restored" => "przywrócony", "Nothing in here. Your trash bin is empty!" => "Nic tu nie ma. Twój kosz jest pusty!", +"Name" => "Nazwa", "Restore" => "Przywróć", +"Deleted" => "Usunięte", "Delete" => "Usuń", "Deleted Files" => "Usunięte pliki" ); diff --git a/apps/files_trashbin/l10n/pt_BR.php b/apps/files_trashbin/l10n/pt_BR.php index e0e8c8faec..c2100efe96 100644 --- a/apps/files_trashbin/l10n/pt_BR.php +++ b/apps/files_trashbin/l10n/pt_BR.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Não foi possível excluir %s permanentemente", "Couldn't restore %s" => "Não foi possível restaurar %s", -"perform restore operation" => "realizar operação de restauração", "Error" => "Erro", -"delete file permanently" => "excluir arquivo permanentemente", -"Delete permanently" => "Excluir permanentemente", -"Name" => "Nome", -"Deleted" => "Excluído", -"_%n folder_::_%n folders_" => array("","%n pastas"), -"_%n file_::_%n files_" => array("%n arquivo","%n arquivos"), "restored" => "restaurado", "Nothing in here. Your trash bin is empty!" => "Nada aqui. Sua lixeira está vazia!", +"Name" => "Nome", "Restore" => "Restaurar", +"Deleted" => "Excluído", "Delete" => "Excluir", "Deleted Files" => "Arquivos Apagados" ); diff --git a/apps/files_trashbin/l10n/pt_PT.php b/apps/files_trashbin/l10n/pt_PT.php index 9dccc773cb..89e84a84d2 100644 --- a/apps/files_trashbin/l10n/pt_PT.php +++ b/apps/files_trashbin/l10n/pt_PT.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Não foi possível eliminar %s de forma permanente", "Couldn't restore %s" => "Não foi possível restaurar %s", -"perform restore operation" => "executar a operação de restauro", "Error" => "Erro", -"delete file permanently" => "Eliminar permanentemente o(s) ficheiro(s)", -"Delete permanently" => "Eliminar permanentemente", -"Name" => "Nome", -"Deleted" => "Apagado", -"_%n folder_::_%n folders_" => array("%n pasta","%n pastas"), -"_%n file_::_%n files_" => array("%n ficheiro","%n ficheiros"), "restored" => "Restaurado", "Nothing in here. Your trash bin is empty!" => "Não hà ficheiros. O lixo está vazio!", +"Name" => "Nome", "Restore" => "Restaurar", +"Deleted" => "Apagado", "Delete" => "Eliminar", "Deleted Files" => "Ficheiros Apagados" ); diff --git a/apps/files_trashbin/l10n/ro.php b/apps/files_trashbin/l10n/ro.php index 12377bb065..f285dcc164 100644 --- a/apps/files_trashbin/l10n/ro.php +++ b/apps/files_trashbin/l10n/ro.php @@ -1,10 +1,7 @@ "Eroare", -"Delete permanently" => "Stergere permanenta", "Name" => "Nume", -"_%n folder_::_%n folders_" => array("","","%n directoare"), -"_%n file_::_%n files_" => array("","","%n fișiere"), "Delete" => "Șterge" ); $PLURAL_FORMS = "nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));"; diff --git a/apps/files_trashbin/l10n/ru.php b/apps/files_trashbin/l10n/ru.php index 5f52263a11..06a4f864c6 100644 --- a/apps/files_trashbin/l10n/ru.php +++ b/apps/files_trashbin/l10n/ru.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "%s не может быть удалён навсегда", "Couldn't restore %s" => "%s не может быть восстановлен", -"perform restore operation" => "выполнить операцию восстановления", "Error" => "Ошибка", -"delete file permanently" => "удалить файл навсегда", -"Delete permanently" => "Удалено навсегда", -"Name" => "Имя", -"Deleted" => "Удалён", -"_%n folder_::_%n folders_" => array("","","%n папок"), -"_%n file_::_%n files_" => array("","","%n файлов"), "restored" => "восстановлен", "Nothing in here. Your trash bin is empty!" => "Здесь ничего нет. Ваша корзина пуста!", +"Name" => "Имя", "Restore" => "Восстановить", +"Deleted" => "Удалён", "Delete" => "Удалить", "Deleted Files" => "Удаленные файлы" ); diff --git a/apps/files_trashbin/l10n/si_LK.php b/apps/files_trashbin/l10n/si_LK.php index 6dad84437c..87e928989e 100644 --- a/apps/files_trashbin/l10n/si_LK.php +++ b/apps/files_trashbin/l10n/si_LK.php @@ -2,8 +2,6 @@ $TRANSLATIONS = array( "Error" => "දෝෂයක්", "Name" => "නම", -"_%n folder_::_%n folders_" => array("",""), -"_%n file_::_%n files_" => array("",""), "Delete" => "මකා දමන්න" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/sk_SK.php b/apps/files_trashbin/l10n/sk_SK.php index 50fb58a44e..b23383c121 100644 --- a/apps/files_trashbin/l10n/sk_SK.php +++ b/apps/files_trashbin/l10n/sk_SK.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Nemožno zmazať %s navždy", "Couldn't restore %s" => "Nemožno obnoviť %s", -"perform restore operation" => "vykonať obnovu", "Error" => "Chyba", -"delete file permanently" => "trvalo zmazať súbor", -"Delete permanently" => "Zmazať trvalo", -"Name" => "Názov", -"Deleted" => "Zmazané", -"_%n folder_::_%n folders_" => array("%n priečinok","%n priečinky","%n priečinkov"), -"_%n file_::_%n files_" => array("%n súbor","%n súbory","%n súborov"), "restored" => "obnovené", "Nothing in here. Your trash bin is empty!" => "Žiadny obsah. Kôš je prázdny!", +"Name" => "Názov", "Restore" => "Obnoviť", +"Deleted" => "Zmazané", "Delete" => "Zmazať", "Deleted Files" => "Zmazané súbory" ); diff --git a/apps/files_trashbin/l10n/sl.php b/apps/files_trashbin/l10n/sl.php index eb2d42a18f..a3c0bcf92a 100644 --- a/apps/files_trashbin/l10n/sl.php +++ b/apps/files_trashbin/l10n/sl.php @@ -2,16 +2,11 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Datoteke %s ni mogoče dokončno izbrisati.", "Couldn't restore %s" => "Ni mogoče obnoviti %s", -"perform restore operation" => "izvedi opravilo obnavljanja", "Error" => "Napaka", -"delete file permanently" => "dokončno izbriši datoteko", -"Delete permanently" => "Izbriši dokončno", -"Name" => "Ime", -"Deleted" => "Izbrisano", -"_%n folder_::_%n folders_" => array("","","",""), -"_%n file_::_%n files_" => array("","","",""), "Nothing in here. Your trash bin is empty!" => "Mapa smeti je prazna.", +"Name" => "Ime", "Restore" => "Obnovi", +"Deleted" => "Izbrisano", "Delete" => "Izbriši", "Deleted Files" => "Izbrisane datoteke" ); diff --git a/apps/files_trashbin/l10n/sq.php b/apps/files_trashbin/l10n/sq.php index 50ca7d901b..63957080f3 100644 --- a/apps/files_trashbin/l10n/sq.php +++ b/apps/files_trashbin/l10n/sq.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Nuk munda ta eliminoj përfundimisht %s", "Couldn't restore %s" => "Nuk munda ta rivendos %s", -"perform restore operation" => "ekzekuto operacionin e rivendosjes", "Error" => "Veprim i gabuar", -"delete file permanently" => "eliminoje përfundimisht skedarin", -"Delete permanently" => "Elimino përfundimisht", -"Name" => "Emri", -"Deleted" => "Eliminuar", -"_%n folder_::_%n folders_" => array("%n dosje","%n dosje"), -"_%n file_::_%n files_" => array("%n skedar","%n skedarë"), "restored" => "rivendosur", "Nothing in here. Your trash bin is empty!" => "Këtu nuk ka asgjë. Koshi juaj është bosh!", +"Name" => "Emri", "Restore" => "Rivendos", +"Deleted" => "Eliminuar", "Delete" => "Elimino", "Deleted Files" => "Skedarë të eliminuar" ); diff --git a/apps/files_trashbin/l10n/sr.php b/apps/files_trashbin/l10n/sr.php index 7311e759f9..c893dba118 100644 --- a/apps/files_trashbin/l10n/sr.php +++ b/apps/files_trashbin/l10n/sr.php @@ -1,14 +1,10 @@ "врати у претходно стање", "Error" => "Грешка", -"Delete permanently" => "Обриши за стално", -"Name" => "Име", -"Deleted" => "Обрисано", -"_%n folder_::_%n folders_" => array("","",""), -"_%n file_::_%n files_" => array("","",""), "Nothing in here. Your trash bin is empty!" => "Овде нема ништа. Корпа за отпатке је празна.", +"Name" => "Име", "Restore" => "Врати", +"Deleted" => "Обрисано", "Delete" => "Обриши" ); $PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/apps/files_trashbin/l10n/sr@latin.php b/apps/files_trashbin/l10n/sr@latin.php index fa30afcf4b..9f18ac8be7 100644 --- a/apps/files_trashbin/l10n/sr@latin.php +++ b/apps/files_trashbin/l10n/sr@latin.php @@ -2,8 +2,6 @@ $TRANSLATIONS = array( "Error" => "Greška", "Name" => "Ime", -"_%n folder_::_%n folders_" => array("","",""), -"_%n file_::_%n files_" => array("","",""), "Delete" => "Obriši" ); $PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/apps/files_trashbin/l10n/sv.php b/apps/files_trashbin/l10n/sv.php index 47a52f2573..21d4d15e9c 100644 --- a/apps/files_trashbin/l10n/sv.php +++ b/apps/files_trashbin/l10n/sv.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Kunde inte radera %s permanent", "Couldn't restore %s" => "Kunde inte återställa %s", -"perform restore operation" => "utför återställning", "Error" => "Fel", -"delete file permanently" => "radera filen permanent", -"Delete permanently" => "Radera permanent", -"Name" => "Namn", -"Deleted" => "Raderad", -"_%n folder_::_%n folders_" => array("%n mapp","%n mappar"), -"_%n file_::_%n files_" => array("%n fil","%n filer"), "restored" => "återställd", "Nothing in here. Your trash bin is empty!" => "Ingenting här. Din papperskorg är tom!", +"Name" => "Namn", "Restore" => "Återskapa", +"Deleted" => "Raderad", "Delete" => "Radera", "Deleted Files" => "Raderade filer" ); diff --git a/apps/files_trashbin/l10n/ta_LK.php b/apps/files_trashbin/l10n/ta_LK.php index ed93b459c7..79349919b5 100644 --- a/apps/files_trashbin/l10n/ta_LK.php +++ b/apps/files_trashbin/l10n/ta_LK.php @@ -2,8 +2,6 @@ $TRANSLATIONS = array( "Error" => "வழு", "Name" => "பெயர்", -"_%n folder_::_%n folders_" => array("",""), -"_%n file_::_%n files_" => array("",""), "Delete" => "நீக்குக" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/te.php b/apps/files_trashbin/l10n/te.php index 0d803a8e64..01262b7823 100644 --- a/apps/files_trashbin/l10n/te.php +++ b/apps/files_trashbin/l10n/te.php @@ -1,10 +1,7 @@ "పొరపాటు", -"Delete permanently" => "శాశ్వతంగా తొలగించు", "Name" => "పేరు", -"_%n folder_::_%n folders_" => array("",""), -"_%n file_::_%n files_" => array("",""), "Delete" => "తొలగించు" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/th_TH.php b/apps/files_trashbin/l10n/th_TH.php index 31caa11aac..65fd081a95 100644 --- a/apps/files_trashbin/l10n/th_TH.php +++ b/apps/files_trashbin/l10n/th_TH.php @@ -1,13 +1,10 @@ "ดำเนินการคืนค่า", "Error" => "ข้อผิดพลาด", -"Name" => "ชื่อ", -"Deleted" => "ลบแล้ว", -"_%n folder_::_%n folders_" => array(""), -"_%n file_::_%n files_" => array(""), "Nothing in here. Your trash bin is empty!" => "ไม่มีอะไรอยู่ในนี้ ถังขยะของคุณยังว่างอยู่", +"Name" => "ชื่อ", "Restore" => "คืนค่า", +"Deleted" => "ลบแล้ว", "Delete" => "ลบ", "Deleted Files" => "ไฟล์ที่ลบทิ้ง" ); diff --git a/apps/files_trashbin/l10n/tr.php b/apps/files_trashbin/l10n/tr.php index f25b179bc1..873dc631fe 100644 --- a/apps/files_trashbin/l10n/tr.php +++ b/apps/files_trashbin/l10n/tr.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "%s Kalıcı olarak silinemedi", "Couldn't restore %s" => "%s Geri yüklenemedi", -"perform restore operation" => "Geri yükleme işlemini gerçekleştir", "Error" => "Hata", -"delete file permanently" => "Dosyayı kalıcı olarak sil", -"Delete permanently" => "Kalıcı olarak sil", -"Name" => "İsim", -"Deleted" => "Silindi", -"_%n folder_::_%n folders_" => array("","%n dizin"), -"_%n file_::_%n files_" => array("","%n dosya"), "restored" => "geri yüklendi", "Nothing in here. Your trash bin is empty!" => "Burası boş. Çöp kutun tamamen boş.", +"Name" => "İsim", "Restore" => "Geri yükle", +"Deleted" => "Silindi", "Delete" => "Sil", "Deleted Files" => "Silinen Dosyalar" ); diff --git a/apps/files_trashbin/l10n/ug.php b/apps/files_trashbin/l10n/ug.php index ad983aee18..54c040c88a 100644 --- a/apps/files_trashbin/l10n/ug.php +++ b/apps/files_trashbin/l10n/ug.php @@ -1,12 +1,9 @@ "خاتالىق", -"Delete permanently" => "مەڭگۈلۈك ئۆچۈر", +"Nothing in here. Your trash bin is empty!" => "بۇ جايدا ھېچنېمە يوق. Your trash bin is empty!", "Name" => "ئاتى", "Deleted" => "ئۆچۈرۈلدى", -"_%n folder_::_%n folders_" => array(""), -"_%n file_::_%n files_" => array(""), -"Nothing in here. Your trash bin is empty!" => "بۇ جايدا ھېچنېمە يوق. Your trash bin is empty!", "Delete" => "ئۆچۈر" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_trashbin/l10n/uk.php b/apps/files_trashbin/l10n/uk.php index aa4b659503..c54d45aaa8 100644 --- a/apps/files_trashbin/l10n/uk.php +++ b/apps/files_trashbin/l10n/uk.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Неможливо видалити %s назавжди", "Couldn't restore %s" => "Неможливо відновити %s", -"perform restore operation" => "виконати операцію відновлення", "Error" => "Помилка", -"delete file permanently" => "видалити файл назавжди", -"Delete permanently" => "Видалити назавжди", -"Name" => "Ім'я", -"Deleted" => "Видалено", -"_%n folder_::_%n folders_" => array("","",""), -"_%n file_::_%n files_" => array("","",""), "restored" => "відновлено", "Nothing in here. Your trash bin is empty!" => "Нічого немає. Ваший кошик для сміття пустий!", +"Name" => "Ім'я", "Restore" => "Відновити", +"Deleted" => "Видалено", "Delete" => "Видалити", "Deleted Files" => "Видалено Файлів" ); diff --git a/apps/files_trashbin/l10n/ur_PK.php b/apps/files_trashbin/l10n/ur_PK.php index f6c6a3da3c..49c82f5387 100644 --- a/apps/files_trashbin/l10n/ur_PK.php +++ b/apps/files_trashbin/l10n/ur_PK.php @@ -1,7 +1,5 @@ "ایرر", -"_%n folder_::_%n folders_" => array("",""), -"_%n file_::_%n files_" => array("","") +"Error" => "ایرر" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/vi.php b/apps/files_trashbin/l10n/vi.php index 072d799fa6..c5e899392b 100644 --- a/apps/files_trashbin/l10n/vi.php +++ b/apps/files_trashbin/l10n/vi.php @@ -2,16 +2,11 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Không thể óa %s vĩnh viễn", "Couldn't restore %s" => "Không thể khôi phục %s", -"perform restore operation" => "thực hiện phục hồi", "Error" => "Lỗi", -"delete file permanently" => "xóa file vĩnh viễn", -"Delete permanently" => "Xóa vĩnh vễn", -"Name" => "Tên", -"Deleted" => "Đã xóa", -"_%n folder_::_%n folders_" => array(""), -"_%n file_::_%n files_" => array(""), "Nothing in here. Your trash bin is empty!" => "Không có gì ở đây. Thùng rác của bạn rỗng!", +"Name" => "Tên", "Restore" => "Khôi phục", +"Deleted" => "Đã xóa", "Delete" => "Xóa", "Deleted Files" => "File đã xóa" ); diff --git a/apps/files_trashbin/l10n/zh_CN.php b/apps/files_trashbin/l10n/zh_CN.php index dc2d5b4c00..24d9002adc 100644 --- a/apps/files_trashbin/l10n/zh_CN.php +++ b/apps/files_trashbin/l10n/zh_CN.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "无法彻底删除文件%s", "Couldn't restore %s" => "无法恢复%s", -"perform restore operation" => "执行恢复操作", "Error" => "错误", -"delete file permanently" => "彻底删除文件", -"Delete permanently" => "永久删除", -"Name" => "名称", -"Deleted" => "已删除", -"_%n folder_::_%n folders_" => array("%n 文件夹"), -"_%n file_::_%n files_" => array("%n个文件"), "restored" => "已恢复", "Nothing in here. Your trash bin is empty!" => "这里没有东西. 你的回收站是空的!", +"Name" => "名称", "Restore" => "恢复", +"Deleted" => "已删除", "Delete" => "删除", "Deleted Files" => "已删除文件" ); diff --git a/apps/files_trashbin/l10n/zh_HK.php b/apps/files_trashbin/l10n/zh_HK.php index 3f0d663bae..877912e9c4 100644 --- a/apps/files_trashbin/l10n/zh_HK.php +++ b/apps/files_trashbin/l10n/zh_HK.php @@ -2,8 +2,6 @@ $TRANSLATIONS = array( "Error" => "錯誤", "Name" => "名稱", -"_%n folder_::_%n folders_" => array(""), -"_%n file_::_%n files_" => array(""), "Delete" => "刪除" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_trashbin/l10n/zh_TW.php b/apps/files_trashbin/l10n/zh_TW.php index bfc2fc659d..1f05a2687b 100644 --- a/apps/files_trashbin/l10n/zh_TW.php +++ b/apps/files_trashbin/l10n/zh_TW.php @@ -2,17 +2,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "無法永久刪除 %s", "Couldn't restore %s" => "無法還原 %s", -"perform restore operation" => "進行還原動作", "Error" => "錯誤", -"delete file permanently" => "永久刪除檔案", -"Delete permanently" => "永久刪除", -"Name" => "名稱", -"Deleted" => "已刪除", -"_%n folder_::_%n folders_" => array("%n 個資料夾"), -"_%n file_::_%n files_" => array("%n 個檔案"), "restored" => "已還原", "Nothing in here. Your trash bin is empty!" => "您的回收桶是空的!", +"Name" => "名稱", "Restore" => "還原", +"Deleted" => "已刪除", "Delete" => "刪除", "Deleted Files" => "已刪除的檔案" ); diff --git a/apps/user_ldap/l10n/ca.php b/apps/user_ldap/l10n/ca.php index 455ad62d84..36a06b99da 100644 --- a/apps/user_ldap/l10n/ca.php +++ b/apps/user_ldap/l10n/ca.php @@ -76,7 +76,6 @@ $TRANSLATIONS = array( "Internal Username Attribute:" => "Atribut nom d'usuari intern:", "Override UUID detection" => "Sobrescriu la detecció UUID", "By default, the UUID attribute is automatically detected. The UUID attribute is used to doubtlessly identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." => "Per defecte, owncloud autodetecta l'atribut UUID. L'atribut UUID s'utilitza per identificar usuaris i grups de forma indubtable. També el nom d'usuari intern es crearà en base a la UUIS, si no heu especificat res diferent a dalt. Podeu sobreescriure l'arranjament i passar l'atribut que desitgeu. Heu d'assegurar-vos que l'atribut que escolliu pot ser recollit tant pels usuaris com pels grups i que és únic. Deixeu-ho en blanc si preferiu el comportament per defecte. els canvis s'aplicaran als usuaris i grups LDAP mapats de nou (afegits).", -"UUID Attribute:" => "Atribut UUID:", "Username-LDAP User Mapping" => "Mapatge d'usuari Nom d'usuari-LDAP", "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have a internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." => "Els noms d'usuari s'usen per desar i assignar (meta)dades. Per tal d'identificar amb precisió i reconèixer els usuaris, cada usuari LDAP tindrà un nom d'usuari intern. Això requereix mapatge del nom d'usuari a l'usuari LDAP. El nom d'usuari creat es mapa a la UUID de l'usuari LDAP. A més, la DN es posa a la memòria de cau per reduir la interacció LDAP, però no s'usa per identificació. En cas que la DN canvïi, els canvis es trobaran. El nom d'usuari intern s'usa a tot arreu. Si esborreu els mapatges quedaran sobrants a tot arreu. Esborrar els mapatges no és sensible a la configuració, afecta a totes les configuracions LDAP! No esborreu mai els mapatges en un entorn de producció, només en un estadi de prova o experimental.", "Clear Username-LDAP User Mapping" => "Elimina el mapatge d'usuari Nom d'usuari-LDAP", diff --git a/apps/user_ldap/l10n/cs_CZ.php b/apps/user_ldap/l10n/cs_CZ.php index 9109a8c710..be84aa2b64 100644 --- a/apps/user_ldap/l10n/cs_CZ.php +++ b/apps/user_ldap/l10n/cs_CZ.php @@ -76,7 +76,6 @@ $TRANSLATIONS = array( "Internal Username Attribute:" => "Atribut interního uživatelského jména:", "Override UUID detection" => "Nastavit ručně UUID atribut", "By default, the UUID attribute is automatically detected. The UUID attribute is used to doubtlessly identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." => "Ve výchozím nastavení je UUID atribut nalezen automaticky. UUID atribut je používán pro nezpochybnitelnou identifikaci uživatelů a skupin z LDAP. Navíc je na základě UUID tvořeno také interní uživatelské jméno, pokud není nastaveno jinak. Můžete výchozí nastavení přepsat a použít atribut, který sami zvolíte. Musíte se ale ujistit, že atribut, který vyberete, bude uveden jak u uživatelů, tak i u skupin a je unikátní. Ponechte prázdné pro výchozí chování. Změna bude mít vliv jen na nově namapované (přidané) uživatele a skupiny z LDAP.", -"UUID Attribute:" => "Atribut UUID:", "Username-LDAP User Mapping" => "Mapování uživatelských jmen z LDAPu", "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have a internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." => "Uživatelská jména jsou používány pro uchovávání a přiřazování (meta)dat. Pro správnou identifikaci a rozpoznání uživatelů bude mít každý uživatel z LDAP interní uživatelské jméno. To vyžaduje mapování uživatelských jmen na uživatele LDAP. Vytvořené uživatelské jméno je mapováno na UUID uživatele v LDAP. Navíc je cachována DN pro zmenšení interakce s LDAP, ale není používána pro identifikaci. Pokud se DN změní, bude to správně rozpoznáno. Interní uživatelské jméno se používá celé. Vyčištění mapování zanechá zbytky všude. Vyčištění navíc není specifické konfiguraci, bude mít vliv na všechny LDAP konfigurace! Nikdy nečistěte mapování v produkčním prostředí, jen v testovací nebo experimentální fázi.", "Clear Username-LDAP User Mapping" => "Zrušit mapování uživatelských jmen LDAPu", diff --git a/apps/user_ldap/l10n/de.php b/apps/user_ldap/l10n/de.php index cb13275faf..211132962a 100644 --- a/apps/user_ldap/l10n/de.php +++ b/apps/user_ldap/l10n/de.php @@ -76,7 +76,6 @@ $TRANSLATIONS = array( "Internal Username Attribute:" => "Attribut für interne Benutzernamen:", "Override UUID detection" => "UUID-Erkennung überschreiben", "By default, the UUID attribute is automatically detected. The UUID attribute is used to doubtlessly identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." => "Standardmäßig wird die UUID-Eigenschaft automatisch erkannt. Die UUID-Eigenschaft wird genutzt, um einen LDAP-Benutzer und Gruppen einwandfrei zu identifizieren. Außerdem wird der interne Benutzername erzeugt, der auf Eigenschaften der UUID basiert, wenn es oben nicht anders angegeben wurde. Du musst allerdings sicherstellen, dass deine gewählten Eigenschaften zur Identifikation der Benutzer und Gruppen eindeutig sind und zugeordnet werden können. Lasse es frei, um es beim Standardverhalten zu belassen. Änderungen wirken sich nur auf neu gemappte (hinzugefügte) LDAP-Benutzer und -Gruppen aus.", -"UUID Attribute:" => "UUID-Attribut:", "Username-LDAP User Mapping" => "LDAP-Benutzernamenzuordnung", "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have a internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." => "Die Benutzernamen werden genutzt, um (Meta)Daten zuzuordnen und zu speichern. Um Benutzer eindeutig und präzise zu identifizieren, hat jeder LDAP-Benutzer einen internen Benutzernamen. Dies erfordert eine Zuordnung (mappen) von Benutzernamen zum LDAP-Benutzer. Der erstellte Benutzername wird der UUID des LDAP-Benutzernamens zugeordnet. Zusätzlich wird der DN zwischengespeichert, um die Interaktion mit dem LDAP zu minimieren, was aber nicht der Identifikation dient. Ändert sich der DN, werden die Änderungen durch gefunden. Der interne Benutzername, wird in überall verwendet. Werden die Zuordnungen gelöscht, bleiben überall Reste zurück. Die Löschung der Zuordnungen kann nicht in der Konfiguration vorgenommen werden, beeinflusst aber die LDAP-Konfiguration! Löschen Sie niemals die Zuordnungen in einer produktiven Umgebung. Lösche die Zuordnungen nur in einer Test- oder Experimentierumgebung.", "Clear Username-LDAP User Mapping" => "Lösche LDAP-Benutzernamenzuordnung", diff --git a/apps/user_ldap/l10n/de_CH.php b/apps/user_ldap/l10n/de_CH.php index df9175e73b..28971ed9e4 100644 --- a/apps/user_ldap/l10n/de_CH.php +++ b/apps/user_ldap/l10n/de_CH.php @@ -76,7 +76,6 @@ $TRANSLATIONS = array( "Internal Username Attribute:" => "Interne Eigenschaften des Benutzers:", "Override UUID detection" => "UUID-Erkennung überschreiben", "By default, the UUID attribute is automatically detected. The UUID attribute is used to doubtlessly identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." => "Standardmässig wird die UUID-Eigenschaft automatisch erkannt. Die UUID-Eigenschaft wird genutzt, um einen LDAP-Benutzer und Gruppen einwandfrei zu identifizieren. Ausserdem wird der interne Benutzername erzeugt, der auf Eigenschaften der UUID basiert, wenn es oben nicht anders angegeben wurde. Sie müssen allerdings sicherstellen, dass Ihre gewählten Eigenschaften zur Identifikation der Benutzer und Gruppen eindeutig sind und zugeordnet werden können. Lassen Sie es frei, um es beim Standardverhalten zu belassen. Änderungen wirken sich nur auf neu gemappte (hinzugefügte) LDAP-Benutzer und -Gruppen aus.", -"UUID Attribute:" => "UUID-Attribut:", "Username-LDAP User Mapping" => "LDAP-Benutzernamenzuordnung", "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have a internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." => "Die Benutzernamen werden genutzt, um (Meta)Daten zuzuordnen und zu speichern. Um Benutzer eindeutig und präzise zu identifizieren, hat jeder LDAP-Benutzer einen internen Benutzernamen. Dies erfordert eine Zuordnung (mappen) von Benutzernamen zum LDAP-Benutzer. Der erstellte Benutzername wird der UUID des LDAP-Benutzernamens zugeordnet. Zusätzlich wird der DN zwischengespeichert, um die Interaktion mit dem LDAP zu minimieren, was aber nicht der Identifikation dient. Ändert sich der DN, werden die Änderungen durch gefunden. Der interne Benutzername, wird in überall verwendet. Werden die Zuordnungen gelöscht, bleiben überall Reste zurück. Die Löschung der Zuordnungen kann nicht in der Konfiguration vorgenommen werden, beeinflusst aber die LDAP-Konfiguration! Löschen Sie niemals die Zuordnungen in einer produktiven Umgebung. Löschen Sie die Zuordnungen nur in einer Test- oder Experimentierumgebung.", "Clear Username-LDAP User Mapping" => "Lösche LDAP-Benutzernamenzuordnung", diff --git a/apps/user_ldap/l10n/de_DE.php b/apps/user_ldap/l10n/de_DE.php index 677d603ffa..cfc9117327 100644 --- a/apps/user_ldap/l10n/de_DE.php +++ b/apps/user_ldap/l10n/de_DE.php @@ -76,7 +76,6 @@ $TRANSLATIONS = array( "Internal Username Attribute:" => "Interne Eigenschaften des Benutzers:", "Override UUID detection" => "UUID-Erkennung überschreiben", "By default, the UUID attribute is automatically detected. The UUID attribute is used to doubtlessly identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." => "Standardmäßig wird die UUID-Eigenschaft automatisch erkannt. Die UUID-Eigenschaft wird genutzt, um einen LDAP-Benutzer und Gruppen einwandfrei zu identifizieren. Außerdem wird der interne Benutzername erzeugt, der auf Eigenschaften der UUID basiert, wenn es oben nicht anders angegeben wurde. Sie müssen allerdings sicherstellen, dass Ihre gewählten Eigenschaften zur Identifikation der Benutzer und Gruppen eindeutig sind und zugeordnet werden können. Lassen Sie es frei, um es beim Standardverhalten zu belassen. Änderungen wirken sich nur auf neu gemappte (hinzugefügte) LDAP-Benutzer und -Gruppen aus.", -"UUID Attribute:" => "UUID-Attribut:", "Username-LDAP User Mapping" => "LDAP-Benutzernamenzuordnung", "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have a internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." => "Die Benutzernamen werden genutzt, um (Meta)Daten zuzuordnen und zu speichern. Um Benutzer eindeutig und präzise zu identifizieren, hat jeder LDAP-Benutzer einen internen Benutzernamen. Dies erfordert eine Zuordnung (mappen) von Benutzernamen zum LDAP-Benutzer. Der erstellte Benutzername wird der UUID des LDAP-Benutzernamens zugeordnet. Zusätzlich wird der DN zwischengespeichert, um die Interaktion mit dem LDAP zu minimieren, was aber nicht der Identifikation dient. Ändert sich der DN, werden die Änderungen durch gefunden. Der interne Benutzername, wird in überall verwendet. Werden die Zuordnungen gelöscht, bleiben überall Reste zurück. Die Löschung der Zuordnungen kann nicht in der Konfiguration vorgenommen werden, beeinflusst aber die LDAP-Konfiguration! Löschen Sie niemals die Zuordnungen in einer produktiven Umgebung. Löschen Sie die Zuordnungen nur in einer Test- oder Experimentierumgebung.", "Clear Username-LDAP User Mapping" => "Lösche LDAP-Benutzernamenzuordnung", diff --git a/apps/user_ldap/l10n/en_GB.php b/apps/user_ldap/l10n/en_GB.php index d613be3486..3be8add83e 100644 --- a/apps/user_ldap/l10n/en_GB.php +++ b/apps/user_ldap/l10n/en_GB.php @@ -76,7 +76,6 @@ $TRANSLATIONS = array( "Internal Username Attribute:" => "Internal Username Attribute:", "Override UUID detection" => "Override UUID detection", "By default, the UUID attribute is automatically detected. The UUID attribute is used to doubtlessly identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." => "By default, the UUID attribute is automatically detected. The UUID attribute is used to unambiguously identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behaviour. Changes will have effect only on newly mapped (added) LDAP users and groups.", -"UUID Attribute:" => "UUID Attribute:", "Username-LDAP User Mapping" => "Username-LDAP User Mapping", "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have a internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." => "Usernames are used to store and assign (meta) data. In order to precisely identify and recognise users, each LDAP user will have a internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage.", "Clear Username-LDAP User Mapping" => "Clear Username-LDAP User Mapping", diff --git a/apps/user_ldap/l10n/es.php b/apps/user_ldap/l10n/es.php index 4f37d5177a..537ee1e4bd 100644 --- a/apps/user_ldap/l10n/es.php +++ b/apps/user_ldap/l10n/es.php @@ -76,7 +76,6 @@ $TRANSLATIONS = array( "Internal Username Attribute:" => "Atributo Nombre de usuario Interno:", "Override UUID detection" => "Sobrescribir la detección UUID", "By default, the UUID attribute is automatically detected. The UUID attribute is used to doubtlessly identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." => "Por defecto, el atributo UUID es autodetectado. Este atributo es usado para identificar indudablemente usuarios y grupos LDAP. Además, el nombre de usuario interno será creado en base al UUID, si no ha sido especificado otro comportamiento arriba. Puedes sobrescribir la configuración y pasar un atributo de tu elección. Debes asegurarte de que el atributo de tu elección sea accesible por los usuarios y grupos y ser único. Déjalo en blanco para usar el comportamiento por defecto. Los cambios tendrán efecto solo en los usuarios y grupos de LDAP mapeados (añadidos) recientemente.", -"UUID Attribute:" => "Atributo UUID:", "Username-LDAP User Mapping" => "Asignación del Nombre de usuario de un usuario LDAP", "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have a internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." => "Los usuarios son usados para almacenar y asignar (meta) datos. Con el fin de identificar de forma precisa y reconocer usuarios, cada usuario de LDAP tendrá un nombre de usuario interno. Esto requiere un mapeo entre el nombre de usuario y el usuario del LDAP. El nombre de usuario creado es mapeado respecto al UUID del usuario en el LDAP. De forma adicional, el DN es cacheado para reducir la interacción entre el LDAP, pero no es usado para identificar. Si el DN cambia, los cambios serán aplicados. El nombre de usuario interno es usado por encima de todo. Limpiar los mapeos dejará restos por todas partes, no es sensible a configuración, ¡afecta a todas las configuraciones del LDAP! Nunca limpies los mapeos en un entorno de producción, únicamente en una fase de desarrollo o experimental.", "Clear Username-LDAP User Mapping" => "Borrar la asignación de los Nombres de usuario de los usuarios LDAP", diff --git a/apps/user_ldap/l10n/es_AR.php b/apps/user_ldap/l10n/es_AR.php index 2436df8de7..c9ea9184b4 100644 --- a/apps/user_ldap/l10n/es_AR.php +++ b/apps/user_ldap/l10n/es_AR.php @@ -76,7 +76,6 @@ $TRANSLATIONS = array( "Internal Username Attribute:" => "Atributo Nombre Interno de usuario:", "Override UUID detection" => "Sobrescribir la detección UUID", "By default, the UUID attribute is automatically detected. The UUID attribute is used to doubtlessly identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." => "Por defecto, el atributo UUID es detectado automáticamente. Este atributo es usado para identificar de manera certera usuarios y grupos LDAP. Además, el nombre de usuario interno será creado en base al UUID, si no fue especificado otro comportamiento más arriba. Podés sobrescribir la configuración y pasar un atributo de tu elección. Tenés que asegurarte que el atributo de tu elección sea accesible por los usuarios y grupos y que sea único. Dejalo en blanco para usar el comportamiento por defecto. Los cambios tendrán efecto sólo en los nuevos usuarios y grupos de LDAP mapeados (agregados).", -"UUID Attribute:" => "Atributo UUID:", "Username-LDAP User Mapping" => "Asignación del Nombre de usuario de un usuario LDAP", "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have a internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." => "Los usuarios son usados para almacenar y asignar datos (metadatos). Con el fin de identificar de forma precisa y reconocer usuarios, a cada usuario de LDAP se será asignado un nombre de usuario interno. Esto requiere un mapeo entre el nombre de usuario y el usuario del LDAP. El nombre de usuario creado es mapeado respecto al UUID del usuario en el LDAP. De forma adicional, el DN es dejado en caché para reducir la interacción entre el LDAP, pero no es usado para la identificación. Si el DN cambia, los cambios van a ser aplicados. El nombre de usuario interno es usado en todos los lugares. Vaciar los mapeos, deja restos por todas partes. Vaciar los mapeos, no es sensible a configuración, ¡afecta a todas las configuraciones del LDAP! Nunca limpies los mapeos en un entorno de producción, solamente en fase de desarrollo o experimental.", "Clear Username-LDAP User Mapping" => "Borrar la asignación de los Nombres de usuario de los usuarios LDAP", diff --git a/apps/user_ldap/l10n/et_EE.php b/apps/user_ldap/l10n/et_EE.php index b949fe0204..943ad0bc11 100644 --- a/apps/user_ldap/l10n/et_EE.php +++ b/apps/user_ldap/l10n/et_EE.php @@ -76,7 +76,6 @@ $TRANSLATIONS = array( "Internal Username Attribute:" => "Sisemise kasutajatunnuse atribuut:", "Override UUID detection" => "Tühista UUID tuvastus", "By default, the UUID attribute is automatically detected. The UUID attribute is used to doubtlessly identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." => "Vaikimis ownCloud tuvastab automaatselt UUID atribuudi. UUID atribuuti kasutatakse LDAP kasutajate ja gruppide kindlaks tuvastamiseks. Samuti tekitatakse sisemine kasutajanimi UUID alusel, kui pole määratud teisiti. Sa saad tühistada selle seadistuse ning määrata atribuudi omal valikul. Pead veenduma, et valitud atribuut toimib nii kasutajate kui gruppide puhul ning on unikaalne. Vaikimisi seadistuseks jäta tühjaks. Muudatused mõjutavad ainult uusi (lisatud) LDAP kasutajate vastendusi.", -"UUID Attribute:" => "UUID atribuut:", "Username-LDAP User Mapping" => "LDAP-Kasutajatunnus Kasutaja Vastendus", "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have a internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." => "ownCloud kasutab kasutajanime talletamaks ja omistamaks (pseudo) andmeid. Et täpselt tuvastada ja määratleda kasutajaid, peab iga LDAP kasutaja omama sisemist kasutajatunnust. See vajab ownCloud kasutajatunnuse vastendust LDAP kasutajaks. Tekitatud kasutajanimi vastendatakse LDAP kasutaja UUID-iks. Lisaks puhverdatakse DN vähendamaks LDAP päringuid, kuid seda ei kasutata tuvastamisel. ownCloud suudab tuvastada ka DN muutumise. ownCloud sisemist kasutajatunnust kasutatakse üle kogu ownCloudi. Eemaldates vastenduse tekivad kõikjal andmejäägid. Vastenduste eemaldamine ei ole konfiguratsiooni tundlik, see mõjutab kõiki LDAP seadistusi! Ära kunagi eemalda vastendusi produktsioonis! Seda võid teha ainult testis või katsetuste masinas.", "Clear Username-LDAP User Mapping" => "Puhasta LDAP-Kasutajatunnus Kasutaja Vastendus", diff --git a/apps/user_ldap/l10n/fa.php b/apps/user_ldap/l10n/fa.php index c4db39521d..89bbe5170b 100644 --- a/apps/user_ldap/l10n/fa.php +++ b/apps/user_ldap/l10n/fa.php @@ -57,7 +57,6 @@ $TRANSLATIONS = array( "Internal Username" => "نام کاربری داخلی", "Internal Username Attribute:" => "ویژگی نام کاربری داخلی:", "Override UUID detection" => "نادیده گرفتن تشخیص UUID ", -"UUID Attribute:" => "صفت UUID:", "Username-LDAP User Mapping" => "نام کاربری - نگاشت کاربر LDAP ", "Clear Username-LDAP User Mapping" => "پاک کردن نام کاربری- LDAP نگاشت کاربر ", "Clear Groupname-LDAP Group Mapping" => "پاک کردن نام گروه -LDAP گروه نقشه برداری", diff --git a/apps/user_ldap/l10n/fr.php b/apps/user_ldap/l10n/fr.php index 8b6027b81e..5ab2f34cb4 100644 --- a/apps/user_ldap/l10n/fr.php +++ b/apps/user_ldap/l10n/fr.php @@ -76,7 +76,6 @@ $TRANSLATIONS = array( "Internal Username Attribute:" => "Nom d'utilisateur interne:", "Override UUID detection" => "Surcharger la détection d'UUID", "By default, the UUID attribute is automatically detected. The UUID attribute is used to doubtlessly identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." => "Par défaut, l'attribut UUID est automatiquement détecté. Cet attribut est utilisé pour identifier les utilisateurs et groupes de façon fiable. Un nom d'utilisateur interne basé sur l'UUID sera automatiquement créé, sauf s'il est spécifié autrement ci-dessus. Vous pouvez modifier ce comportement et définir l'attribut de votre choix. Vous devez alors vous assurer que l'attribut de votre choix peut être récupéré pour les utilisateurs ainsi que pour les groupes et qu'il soit unique. Laisser à blanc pour le comportement par défaut. Les modifications seront effectives uniquement pour les nouveaux (ajoutés) utilisateurs et groupes LDAP.", -"UUID Attribute:" => "Attribut UUID :", "Username-LDAP User Mapping" => "Association Nom d'utilisateur-Utilisateur LDAP", "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have a internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." => "Les noms d'utilisateurs sont utilisés pour le stockage et l'assignation de (meta) données. Pour identifier et reconnaitre précisément les utilisateurs, chaque utilisateur LDAP aura un nom interne spécifique. Cela requiert l'association d'un nom d'utilisateur ownCloud à un nom d'utilisateur LDAP. Le nom d'utilisateur créé est associé à l'attribut UUID de l'utilisateur LDAP. Par ailleurs, le DN est mémorisé en cache pour limiter les interactions LDAP mais il n'est pas utilisé pour l'identification. Si le DN est modifié, ces modifications seront retrouvées. Seul le nom interne à ownCloud est utilisé au sein du produit. Supprimer les associations créera des orphelins et l'action affectera toutes les configurations LDAP. NE JAMAIS SUPPRIMER LES ASSOCIATIONS EN ENVIRONNEMENT DE PRODUCTION, mais uniquement sur des environnements de tests et d'expérimentation.", "Clear Username-LDAP User Mapping" => "Supprimer l'association utilisateur interne-utilisateur LDAP", diff --git a/apps/user_ldap/l10n/gl.php b/apps/user_ldap/l10n/gl.php index 911e481ca7..9698386cd8 100644 --- a/apps/user_ldap/l10n/gl.php +++ b/apps/user_ldap/l10n/gl.php @@ -76,7 +76,6 @@ $TRANSLATIONS = array( "Internal Username Attribute:" => "Atributo do nome de usuario interno:", "Override UUID detection" => "Ignorar a detección do UUID", "By default, the UUID attribute is automatically detected. The UUID attribute is used to doubtlessly identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." => "De xeito predeterminado, o atributo UUID é detectado automaticamente. O atributo UUID utilizase para identificar, sen dúbida, aos usuarios e grupos LDAP. Ademais, crearase o usuario interno baseado no UUID, se non se especifica anteriormente o contrario. Pode anular a configuración e pasar un atributo da súa escolla. Vostede debe asegurarse de que o atributo da súa escolla pode ser recuperado polos usuarios e grupos e de que é único. Déixeo baleiro para o comportamento predeterminado. Os cambios terán efecto só nas novas asignacións (engadidos) de usuarios de LDAP.", -"UUID Attribute:" => "Atributo do UUID:", "Username-LDAP User Mapping" => "Asignación do usuario ao «nome de usuario LDAP»", "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have a internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." => "Os nomes de usuario empreganse para almacenar e asignar (meta) datos. Coa fin de identificar con precisión e recoñecer aos usuarios, cada usuario LDAP terá un nome de usuario interno. Isto require unha asignación de ownCloud nome de usuario a usuario LDAP. O nome de usuario creado asignase ao UUID do usuario LDAP. Ademais o DN almacenase na caché, para así reducir a interacción do LDAP, mais non se utiliza para a identificación. Se o DN cambia, os cambios poden ser atopados polo ownCloud. O nome interno no ownCloud utilizase en todo o ownCloud. A limpeza das asignacións deixará rastros en todas partes. A limpeza das asignacións non é sensíbel á configuración, afecta a todas as configuracións de LDAP! Non limpar nunca as asignacións nun entorno de produción. Limpar as asignacións só en fases de proba ou experimentais.", "Clear Username-LDAP User Mapping" => "Limpar a asignación do usuario ao «nome de usuario LDAP»", diff --git a/apps/user_ldap/l10n/hu_HU.php b/apps/user_ldap/l10n/hu_HU.php index b43dcbc2c8..84f8ca948e 100644 --- a/apps/user_ldap/l10n/hu_HU.php +++ b/apps/user_ldap/l10n/hu_HU.php @@ -75,7 +75,6 @@ $TRANSLATIONS = array( "By default the internal username will be created from the UUID attribute. It makes sure that the username is unique and characters do not need to be converted. The internal username has the restriction that only these characters are allowed: [ a-zA-Z0-9_.@- ]. Other characters are replaced with their ASCII correspondence or simply omitted. On collisions a number will be added/increased. The internal username is used to identify a user internally. It is also the default name for the user home folder. It is also a part of remote URLs, for instance for all *DAV services. With this setting, the default behavior can be overridden. To achieve a similar behavior as before ownCloud 5 enter the user display name attribute in the following field. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users." => "Alapértelmezetten a belső felhasználónév az UUID tulajdonságból jön létre. Ez biztosítja a felhasználónév egyediségét és hogy a nem kell konvertálni a karaktereket benne. A belső felhasználónévnél a megkötés az, hogy csak a következő karakterek engdélyezettek benne: [ a-zA-Z0-9_.@- ]. Ezeken a karaktereken kivül minden karakter le lesz cserélve az adott karakter ASCII kódtáblában használható párjára vagy ha ilyen nincs akkor egyszerűen ki lesz hagyva. Ha így mégis ütköznének a nevek akkor hozzá lesz füzve egy folyamatosan növekvő számláló rész. A belső felhasználónevet lehet használni a felhasználó azonosítására a programon belül. Illetve ez lesz az alapáértelmezett neve a felhasználó kezdő könyvtárának az ownCloud-ban. Illetve...............................", "Internal Username Attribute:" => "A belső felhasználónév attribútuma:", "Override UUID detection" => "Az UUID-felismerés felülbírálása", -"UUID Attribute:" => "UUID attribútum:", "Username-LDAP User Mapping" => "Felhasználó - LDAP felhasználó hozzárendelés", "Clear Username-LDAP User Mapping" => "A felhasználó - LDAP felhasználó hozzárendelés törlése", "Clear Groupname-LDAP Group Mapping" => "A csoport - LDAP csoport hozzárendelés törlése", diff --git a/apps/user_ldap/l10n/it.php b/apps/user_ldap/l10n/it.php index 4b47846f22..914cc3d32a 100644 --- a/apps/user_ldap/l10n/it.php +++ b/apps/user_ldap/l10n/it.php @@ -76,7 +76,6 @@ $TRANSLATIONS = array( "Internal Username Attribute:" => "Attributo nome utente interno:", "Override UUID detection" => "Ignora rilevamento UUID", "By default, the UUID attribute is automatically detected. The UUID attribute is used to doubtlessly identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." => "In modo predefinito, l'attributo UUID viene rilevato automaticamente. L'attributo UUID è utilizzato per identificare senza alcun dubbio gli utenti e i gruppi LDAP. Inoltre, il nome utente interno sarà creato sulla base dell'UUID, se non è specificato in precedenza. Puoi ignorare l'impostazione e fornire un attributo di tua scelta. Assicurati che l'attributo scelto possa essere ottenuto sia per gli utenti che per i gruppi e che sia univoco. Lascialo vuoto per ottenere il comportamento predefinito. Le modifiche avranno effetto solo sui nuovi utenti e gruppi LDAP associati (aggiunti).", -"UUID Attribute:" => "Attributo UUID:", "Username-LDAP User Mapping" => "Associazione Nome utente-Utente LDAP", "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have a internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." => "I nomi utente sono utilizzati per archiviare e assegnare i (meta) dati. Per identificare con precisione e riconoscere gli utenti, ogni utente LDAP avrà un nome utente interno. Ciò richiede un'associazione tra il nome utente e l'utente LDAP. In aggiunta, il DN viene mantenuto in cache per ridurre l'interazione con LDAP, ma non è utilizzato per l'identificazione. Se il DN cambia, le modifiche saranno rilevate. Il nome utente interno è utilizzato dappertutto. La cancellazione delle associazioni lascerà tracce residue ovunque e interesserà esclusivamente la configurazione LDAP. Non cancellare mai le associazioni in un ambiente di produzione, ma solo in una fase sperimentale o di test.", "Clear Username-LDAP User Mapping" => "Cancella associazione Nome utente-Utente LDAP", diff --git a/apps/user_ldap/l10n/ja_JP.php b/apps/user_ldap/l10n/ja_JP.php index e9ef2165bb..904a93e1c2 100644 --- a/apps/user_ldap/l10n/ja_JP.php +++ b/apps/user_ldap/l10n/ja_JP.php @@ -76,7 +76,6 @@ $TRANSLATIONS = array( "Internal Username Attribute:" => "内部ユーザ名属性:", "Override UUID detection" => "UUID検出を再定義する", "By default, the UUID attribute is automatically detected. The UUID attribute is used to doubtlessly identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." => "デフォルトでは、UUID 属性は自動的に検出されます。UUID属性は、LDAPユーザとLDAPグループを間違いなく識別するために利用されます。また、もしこれを指定しない場合は、内部ユーザ名はUUIDに基づいて作成されます。この設定は再定義することができ、あなたの選択した属性を用いることができます。選択した属性がユーザとグループの両方に対して適用でき、かつユニークであることを確認してください。空であればデフォルトの振る舞いとなります。変更は、新しくマッピング(追加)されたLDAPユーザとLDAPグループに対してのみ有効となります。", -"UUID Attribute:" => "UUID属性:", "Username-LDAP User Mapping" => "ユーザ名とLDAPユーザのマッピング", "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have a internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." => "ユーザ名は(メタ)データの保存と割り当てに使用されます。ユーザを正確に識別して認識するために、個々のLDAPユーザは内部ユーザ名を持っています。これは、ユーザ名からLDAPユーザへのマッピングが必要であることを意味しています。この生成されたユーザ名は、LDAPユーザのUUIDにマッピングされます。加えて、DNがLDAPとのインタラクションを削減するためにキャッシュされますが、識別には利用されません。DNが変わった場合は、変更が検出されます。内部ユーザ名は全体に亘って利用されます。マッピングをクリアすると、いたるところに使われないままの物が残るでしょう。マッピングのクリアは設定に敏感ではありませんが、全てのLDAPの設定に影響を与えます!本番の環境では決してマッピングをクリアしないでください。テストもしくは実験の段階でのみマッピングのクリアを行なってください。", "Clear Username-LDAP User Mapping" => "ユーザ名とLDAPユーザのマッピングをクリアする", diff --git a/apps/user_ldap/l10n/lt_LT.php b/apps/user_ldap/l10n/lt_LT.php index f052201682..05edf75e8b 100644 --- a/apps/user_ldap/l10n/lt_LT.php +++ b/apps/user_ldap/l10n/lt_LT.php @@ -47,7 +47,6 @@ $TRANSLATIONS = array( "Internal Username" => "Vidinis naudotojo vardas", "Internal Username Attribute:" => "Vidinis naudotojo vardo atributas:", "Override UUID detection" => "Perrašyti UUID aptikimą", -"UUID Attribute:" => "UUID atributas:", "Username-LDAP User Mapping" => "Naudotojo vardo - LDAP naudotojo sąsaja", "Clear Username-LDAP User Mapping" => "Išvalyti naudotojo vardo - LDAP naudotojo sąsają", "Clear Groupname-LDAP Group Mapping" => "Išvalyti grupės pavadinimo - LDAP naudotojo sąsają", diff --git a/apps/user_ldap/l10n/nl.php b/apps/user_ldap/l10n/nl.php index b56dcf1579..2704d22921 100644 --- a/apps/user_ldap/l10n/nl.php +++ b/apps/user_ldap/l10n/nl.php @@ -76,7 +76,6 @@ $TRANSLATIONS = array( "Internal Username Attribute:" => "Interne gebruikersnaam attribuut:", "Override UUID detection" => "Negeren UUID detectie", "By default, the UUID attribute is automatically detected. The UUID attribute is used to doubtlessly identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." => "Standaard herkent ownCloud het UUID-attribuut automatisch. Het UUID attribuut wordt gebruikt om LDAP-gebruikers en -groepen uniek te identificeren. Ook zal de interne gebruikersnaam worden aangemaakt op basis van het UUID, tenzij deze hierboven anders is aangegeven. U kunt de instelling overschrijven en zelf een waarde voor het attribuut opgeven. U moet ervoor zorgen dat het ingestelde attribuut kan worden opgehaald voor zowel gebruikers als groepen en dat het uniek is. Laat het leeg voor standaard gedrag. Veranderingen worden alleen doorgevoerd op nieuw gekoppelde (toegevoegde) LDAP-gebruikers en-groepen.", -"UUID Attribute:" => "UUID Attribuut:", "Username-LDAP User Mapping" => "Gebruikersnaam-LDAP gebruikers vertaling", "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have a internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." => "ownCloud maakt gebruik van gebruikersnamen om (meta) data op te slaan en toe te wijzen. Om gebruikers uniek te identificeren, krijgt elke LDAP-gebruiker ook een interne gebruikersnaam. Dit vereist een koppeling van de ownCloud gebruikersnaam aan een ​​LDAP-gebruiker. De gecreëerde gebruikersnaam is gekoppeld aan de UUID van de LDAP-gebruiker. Aanvullend wordt ook de 'DN' gecached om het aantal LDAP-interacties te verminderen, maar dit wordt niet gebruikt voor identificatie. Als de DN verandert, zullen de veranderingen worden gevonden. De interne naam wordt overal gebruikt. Het wissen van de koppeling zal overal resten achterlaten. Het wissen van koppelingen is niet configuratiegevoelig, maar het raakt wel alle LDAP instellingen! Zorg ervoor dat deze koppelingen nooit in een productieomgeving gewist worden. Maak ze alleen leeg in een test- of ontwikkelomgeving.", "Clear Username-LDAP User Mapping" => "Leegmaken Gebruikersnaam-LDAP gebruikers vertaling", diff --git a/apps/user_ldap/l10n/pl.php b/apps/user_ldap/l10n/pl.php index 7801f73dc1..7e11e6cfc7 100644 --- a/apps/user_ldap/l10n/pl.php +++ b/apps/user_ldap/l10n/pl.php @@ -66,7 +66,6 @@ $TRANSLATIONS = array( "Internal Username" => "Wewnętrzna nazwa użytkownika", "Internal Username Attribute:" => "Wewnętrzny atrybut nazwy uzżytkownika:", "Override UUID detection" => "Zastąp wykrywanie UUID", -"UUID Attribute:" => "Atrybuty UUID:", "Username-LDAP User Mapping" => "Mapowanie użytkownika LDAP", "Clear Username-LDAP User Mapping" => "Czyść Mapowanie użytkownika LDAP", "Clear Groupname-LDAP Group Mapping" => "Czyść Mapowanie nazwy grupy LDAP", diff --git a/apps/user_ldap/l10n/pt_BR.php b/apps/user_ldap/l10n/pt_BR.php index 9469146d35..a09d2779db 100644 --- a/apps/user_ldap/l10n/pt_BR.php +++ b/apps/user_ldap/l10n/pt_BR.php @@ -76,7 +76,6 @@ $TRANSLATIONS = array( "Internal Username Attribute:" => "Atributo Interno de Nome de Usuário:", "Override UUID detection" => "Substituir detecção UUID", "By default, the UUID attribute is automatically detected. The UUID attribute is used to doubtlessly identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." => "Por padrão, o atributo UUID é detectado automaticamente. O atributo UUID é usado para identificar, sem dúvidas, os usuários e grupos LDAP. Além disso, o nome de usuário interno será criado com base no UUID, se não especificado acima. Você pode substituir a configuração e passar um atributo de sua escolha. Você deve certificar-se de que o atributo de sua escolha pode ser lido tanto para usuários como para grupos, e que seja único. Deixe-o vazio para o comportamento padrão. As alterações terão efeito apenas para usuários e grupos LDAP recém mapeados (adicionados).", -"UUID Attribute:" => "Atributo UUID:", "Username-LDAP User Mapping" => "Usuário-LDAP Mapeamento de Usuário", "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have a internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." => "Nomes de usuários sãi usados para armazenar e atribuir (meta) dados. A fim de identificar com precisão e reconhecer usuários, cada usuário LDAP terá um nome de usuário interno. Isso requer um mapeamento nome de usuário para usuário LDAP. O nome de usuário criado é mapeado para o UUID do usuário LDAP. Adicionalmente, o DN fica em cache, assim como para reduzir a interação LDAP, mas não é utilizado para a identificação. Se o DN muda, as mudanças serão encontradas. O nome de usuário interno é utilizado em todo lugar. Limpar os mapeamentos não influencia a configuração. Limpar os mapeamentos deixará rastros em todo lugar. Limpar os mapeamentos não influencia a configuração, mas afeta as configurações LDAP! Somente limpe os mapeamentos em embiente de testes ou em estágio experimental.", "Clear Username-LDAP User Mapping" => "Limpar Mapeamento de Usuário Nome de Usuário-LDAP", diff --git a/apps/user_ldap/l10n/pt_PT.php b/apps/user_ldap/l10n/pt_PT.php index b88ad18f0f..338d68d1df 100644 --- a/apps/user_ldap/l10n/pt_PT.php +++ b/apps/user_ldap/l10n/pt_PT.php @@ -66,7 +66,6 @@ $TRANSLATIONS = array( "Internal Username" => "Nome de utilizador interno", "Internal Username Attribute:" => "Atributo do nome de utilizador interno", "Override UUID detection" => "Passar a detecção do UUID", -"UUID Attribute:" => "Atributo UUID:", "Username-LDAP User Mapping" => "Mapeamento do utilizador LDAP", "Clear Username-LDAP User Mapping" => "Limpar mapeamento do utilizador-LDAP", "Clear Groupname-LDAP Group Mapping" => "Limpar o mapeamento do nome de grupo LDAP", diff --git a/apps/user_ldap/l10n/ru.php b/apps/user_ldap/l10n/ru.php index f1cf51dc51..a76afa1fe1 100644 --- a/apps/user_ldap/l10n/ru.php +++ b/apps/user_ldap/l10n/ru.php @@ -76,7 +76,6 @@ $TRANSLATIONS = array( "Internal Username Attribute:" => "Аттрибут для внутреннего имени:", "Override UUID detection" => "Переопределить нахождение UUID", "By default, the UUID attribute is automatically detected. The UUID attribute is used to doubtlessly identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." => "По-умолчанию, ownCloud определяет атрибут UUID автоматически. Этот атрибут используется для того, чтобы достоверно индентифицировать пользователей и группы LDAP. Также, на основании атрибута UUID создается внутреннее имя пользователя, если выше не указано иначе. Вы можете переопределить эту настройку и указать свой атрибут по выбору. Вы должны удостовериться, что выбранный вами атрибут может быть выбран для пользователей и групп, а также то, что он уникальный. Оставьте поле пустым для поведения по-умолчанию. Изменения вступят в силу только для новых подключенных (добавленных) пользователей и групп LDAP.", -"UUID Attribute:" => "Аттрибут для UUID:", "Username-LDAP User Mapping" => "Соответствия Имя-Пользователь LDAP", "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have a internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." => "ownCloud использует имена пользователей для хранения и назначения метаданных. Для точной идентификации и распознавания пользователей, каждый пользователь LDAP будет иметь свое внутреннее имя пользователя. Это требует привязки имени пользователя ownCloud к пользователю LDAP. При создании имя пользователя назначается идентификатору UUID пользователя LDAP. Помимо этого кешируется доменное имя (DN) для уменьшения числа обращений к LDAP, однако оно не используется для идентификации. Если доменное имя было изменено, об этом станет известно ownCloud. Внутреннее имя ownCloud используется повсеместно в ownCloud. После сброса привязок в базе могут сохраниться остатки старой информации. Сброс привязок не привязан к конфигурации, он повлияет на все LDAP подключения! Ни в коем случае не рекомендуется сбрасывать привязки если система уже находится в эксплуатации, только на этапе тестирования.", "Clear Username-LDAP User Mapping" => "Очистить соответствия Имя-Пользователь LDAP", diff --git a/apps/user_ldap/l10n/sk_SK.php b/apps/user_ldap/l10n/sk_SK.php index df71a71e93..08b32e75f9 100644 --- a/apps/user_ldap/l10n/sk_SK.php +++ b/apps/user_ldap/l10n/sk_SK.php @@ -76,7 +76,6 @@ $TRANSLATIONS = array( "Internal Username Attribute:" => "Atribút interného používateľského mena:", "Override UUID detection" => "Prepísať UUID detekciu", "By default, the UUID attribute is automatically detected. The UUID attribute is used to doubtlessly identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." => "V predvolenom nastavení je UUID atribút detekovaný automaticky. UUID atribút je použitý na jedinečnú identifikáciu používateľov a skupín z LDAP. Naviac je na základe UUID vytvorené tiež interné použivateľské meno, ak nie je nastavené inak. Môžete predvolené nastavenie prepísať a použiť atribút ktorý si sami zvolíte. Musíte sa ale ubezpečiť, že atribút ktorý vyberiete bude uvedený pri použivateľoch, aj pri skupinách a je jedinečný. Ponechajte prázdne pre predvolené správanie. Zmena bude mať vplyv len na novo namapovaných (pridaných) používateľov a skupiny z LDAP.", -"UUID Attribute:" => "UUID atribút:", "Username-LDAP User Mapping" => "Mapovanie názvov LDAP používateľských mien", "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have a internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." => "Použivateľské mená sa používajú pre uchovávanie a priraďovanie (meta)dát. Pre správnu identifikáciu a rozpoznanie používateľov bude mať každý používateľ z LDAP interné používateľské meno. To je nevyhnutné pre namapovanie používateľských mien na používateľov v LDAP. Vytvorené používateľské meno je namapované na UUID používateľa v LDAP. Naviac je cachovaná DN pre obmedzenie interakcie s LDAP, ale nie je používaná pre identifikáciu. Ak sa DN zmení, bude to správne rozpoznané. Interné používateľské meno sa používa všade. Vyčistenie namapování vymaže zvyšky všade. Vyčistenie naviac nie je špecifické, bude mať vplyv na všetky LDAP konfigurácie! Nikdy nečistite namapovanie v produkčnom prostredí, len v testovacej alebo experimentálnej fáze.", "Clear Username-LDAP User Mapping" => "Zrušiť mapovanie LDAP používateľských mien", diff --git a/apps/user_ldap/l10n/sl.php b/apps/user_ldap/l10n/sl.php index 703b643db5..de81b2c8de 100644 --- a/apps/user_ldap/l10n/sl.php +++ b/apps/user_ldap/l10n/sl.php @@ -66,7 +66,6 @@ $TRANSLATIONS = array( "Internal Username" => "Interno uporabniško ime", "Internal Username Attribute:" => "Atribut Interno uporabniško ime", "Override UUID detection" => "Prezri zaznavo UUID", -"UUID Attribute:" => "Atribut UUID", "Username-LDAP User Mapping" => "Preslikava uporabniško ime - LDAP-uporabnik", "Clear Username-LDAP User Mapping" => "Izbriši preslikavo Uporabniškega imena in LDAP-uporabnika", "Clear Groupname-LDAP Group Mapping" => "Izbriši preslikavo Skupine in LDAP-skupine", diff --git a/apps/user_ldap/l10n/sv.php b/apps/user_ldap/l10n/sv.php index 3288438c09..a5c060c717 100644 --- a/apps/user_ldap/l10n/sv.php +++ b/apps/user_ldap/l10n/sv.php @@ -76,7 +76,6 @@ $TRANSLATIONS = array( "Internal Username Attribute:" => "Internt Användarnamn Attribut:", "Override UUID detection" => "Åsidosätt UUID detektion", "By default, the UUID attribute is automatically detected. The UUID attribute is used to doubtlessly identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." => "Som standard upptäcker ownCloud automatiskt UUID-attributet. Det UUID-attributet används för att utan tvivel identifiera LDAP-användare och grupper. Dessutom kommer interna användarnamn skapas baserat på detta UUID, om inte annat anges ovan. Du kan åsidosätta inställningen och passera ett attribut som du själv väljer. Du måste se till att attributet som du väljer kan hämtas för både användare och grupper och att det är unikt. Lämna det tomt för standard beteende. Förändringar kommer endast att påverka nyligen mappade (tillagda) LDAP-användare och grupper.", -"UUID Attribute:" => "UUID Attribut:", "Username-LDAP User Mapping" => "Användarnamn-LDAP User Mapping", "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have a internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." => "ownCloud använder sig av användarnamn för att lagra och tilldela (meta) data. För att exakt kunna identifiera och känna igen användare, kommer varje LDAP-användare ha ett internt användarnamn. Detta kräver en mappning från ownCloud-användarnamn till LDAP-användare. Det skapade användarnamnet mappas till UUID för LDAP-användaren. Dessutom cachas DN samt minska LDAP-interaktionen, men den används inte för identifiering. Om DN förändras, kommer förändringarna hittas av ownCloud. Det interna ownCloud-namnet används överallt i ownCloud. Om du rensar/raderar mappningarna kommer att lämna referenser överallt i systemet. Men den är inte konfigurationskänslig, den påverkar alla LDAP-konfigurationer! Rensa/radera aldrig mappningarna i en produktionsmiljö. Utan gör detta endast på i testmiljö!", "Clear Username-LDAP User Mapping" => "Rensa Användarnamn-LDAP User Mapping", diff --git a/apps/user_ldap/l10n/zh_CN.php b/apps/user_ldap/l10n/zh_CN.php index c30cb42150..e59b91a0e9 100644 --- a/apps/user_ldap/l10n/zh_CN.php +++ b/apps/user_ldap/l10n/zh_CN.php @@ -66,7 +66,6 @@ $TRANSLATIONS = array( "Internal Username" => "内部用户名", "Internal Username Attribute:" => "内部用户名属性:", "Override UUID detection" => "超越UUID检测", -"UUID Attribute:" => "UUID属性:", "Username-LDAP User Mapping" => "用户名-LDAP用户映射", "Clear Username-LDAP User Mapping" => "清除用户-LDAP用户映射", "Clear Groupname-LDAP Group Mapping" => "清除组用户-LDAP级映射", diff --git a/core/l10n/en_GB.php b/core/l10n/en_GB.php index c69cf59f38..bd967fa8aa 100644 --- a/core/l10n/en_GB.php +++ b/core/l10n/en_GB.php @@ -1,6 +1,7 @@ "%s shared \"%s\" with you", +"Couldn't send mail to following users: %s " => "Couldn't send mail to following users: %s ", "group" => "group", "Turned on maintenance mode" => "Turned on maintenance mode", "Turned off maintenance mode" => "Turned off maintenance mode", @@ -92,6 +93,7 @@ $TRANSLATIONS = array( "Resharing is not allowed" => "Resharing is not allowed", "Shared in {item} with {user}" => "Shared in {item} with {user}", "Unshare" => "Unshare", +"notify user by email" => "notify user by email", "can edit" => "can edit", "access control" => "access control", "create" => "create", @@ -126,6 +128,9 @@ $TRANSLATIONS = array( "Help" => "Help", "Access forbidden" => "Access denied", "Cloud not found" => "Cloud not found", +"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n", +"The share will expire on %s.\n\n" => "The share will expire on %s.\n\n", +"Cheers!" => "Cheers!", "Edit categories" => "Edit categories", "Add" => "Add", "Security Warning" => "Security Warning", @@ -146,15 +151,20 @@ $TRANSLATIONS = array( "Database tablespace" => "Database tablespace", "Database host" => "Database host", "Finish setup" => "Finish setup", +"Finishing …" => "Finishing …", "%s is available. Get more information on how to update." => "%s is available. Get more information on how to update.", "Log out" => "Log out", "Automatic logon rejected!" => "Automatic logon rejected!", "If you did not change your password recently, your account may be compromised!" => "If you did not change your password recently, your account may be compromised!", "Please change your password to secure your account again." => "Please change your password to secure your account again.", +"Server side authentication failed!" => "Server side authentication failed!", +"Please contact your administrator." => "Please contact your administrator.", "Lost your password?" => "Lost your password?", "remember" => "remember", "Log in" => "Log in", "Alternative Logins" => "Alternative Logins", +"Hey there,

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

    " => "Hey there,

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

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

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

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

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

    " => "Hola:

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

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

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

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

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

    " => "Bonjour,

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

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

    " => "Le partage expirera le %s.

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

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

    " => "Cześć,

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

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

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

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

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

    " -msgstr "" +msgstr "Hey there,

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

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

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

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

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

    " -msgstr "" +msgstr "Hola:

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

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

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

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

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

    " -msgstr "" +msgstr "Bonjour,

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

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

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

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

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

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

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

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

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

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

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

    t('Language'));?>

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