From 70b71338cd01b9c5018c63b713ad74c8f302dfa7 Mon Sep 17 00:00:00 2001 From: Frank Karlitschek Date: Tue, 28 Aug 2012 07:22:31 +0200 Subject: [PATCH 001/246] beta 1 --- lib/util.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/util.php b/lib/util.php index 3b2f476ada2..0abdddcbf9b 100755 --- a/lib/util.php +++ b/lib/util.php @@ -75,7 +75,8 @@ class OC_Util { * @return array */ public static function getVersion(){ - return array(4,82,4); + // hint: We only can count up. So the internal version number of ownCloud 4.5 will be 4,9,0. This is not visible to the user + return array(4,83,4); } /** @@ -83,7 +84,7 @@ class OC_Util { * @return string */ public static function getVersionString(){ - return '5 pre alpha 1'; + return '4.5 beta 1'; } /** From 549f69cbc1aafa13be6f011554ee82d26d814e52 Mon Sep 17 00:00:00 2001 From: Frank Karlitschek Date: Tue, 28 Aug 2012 07:35:31 +0200 Subject: [PATCH 002/246] marked as shipped app --- apps/user_webdavauth/appinfo/info.xml | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/user_webdavauth/appinfo/info.xml b/apps/user_webdavauth/appinfo/info.xml index 77fe3b892ca..dc555739f46 100755 --- a/apps/user_webdavauth/appinfo/info.xml +++ b/apps/user_webdavauth/appinfo/info.xml @@ -7,4 +7,5 @@ AGPL Frank Karlitschek 3 + true From 42a996930481783af1a5a3fbbae18dc1201fbb0b Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Tue, 28 Aug 2012 14:24:31 +0200 Subject: [PATCH 003/246] LDAP: implement getHome() function, use either username (default) or specify an LDAP attribute value to use --- apps/user_ldap/lib/connection.php | 4 ++- apps/user_ldap/settings.php | 8 +++++- apps/user_ldap/templates/settings.php | 1 + apps/user_ldap/user_ldap.php | 40 ++++++++++++++++++++++++++- 4 files changed, 50 insertions(+), 3 deletions(-) diff --git a/apps/user_ldap/lib/connection.php b/apps/user_ldap/lib/connection.php index dc160a1642d..1922e7ff1f2 100644 --- a/apps/user_ldap/lib/connection.php +++ b/apps/user_ldap/lib/connection.php @@ -55,6 +55,7 @@ class Connection { 'ldapCacheTTL' => null, 'ldapUuidAttribute' => null, 'ldapOverrideUuidAttribute' => null, + 'homeFolderNamingRule' => null, ); public function __construct($configID = 'user_ldap') { @@ -200,6 +201,7 @@ class Connection { $this->config['ldapCacheTTL'] = \OCP\Config::getAppValue($this->configID, 'ldap_cache_ttl', 10*60); $this->config['ldapUuidAttribute'] = \OCP\Config::getAppValue($this->configID, 'ldap_uuid_attribute', 'auto'); $this->config['ldapOverrideUuidAttribute'] = \OCP\Config::getAppValue($this->configID, 'ldap_override_uuid_attribute', 0); + $this->config['homeFolderNamingRule'] = \OCP\Config::getAppValue($this->configID, 'home_folder_naming_rule', 'opt:username'); $this->configured = $this->validateConfiguration(); } @@ -218,7 +220,7 @@ class Connection { $params = array('ldap_host'=>'ldapHost', 'ldap_port'=>'ldapPort', 'ldap_dn'=>'ldapAgentName', 'ldap_agent_password'=>'ldapAgentPassword', 'ldap_base'=>'ldapBase', 'ldap_base_users'=>'ldapBaseUsers', 'ldap_base_groups'=>'ldapBaseGroups', 'ldap_userlist_filter'=>'ldapUserFilter', 'ldap_login_filter'=>'ldapLoginFilter', 'ldap_group_filter'=>'ldapGroupFilter', 'ldap_display_name'=>'ldapUserDisplayName', 'ldap_group_display_name'=>'ldapGroupDisplayName', - 'ldap_tls'=>'ldapTLS', 'ldap_nocase'=>'ldapNoCase', 'ldap_quota_def'=>'ldapQuotaDefault', 'ldap_quota_attr'=>'ldapQuotaAttribute', 'ldap_email_attr'=>'ldapEmailAttribute', 'ldap_group_member_assoc_attribute'=>'ldapGroupMemberAssocAttr', 'ldap_cache_ttl'=>'ldapCacheTTL'); + 'ldap_tls'=>'ldapTLS', 'ldap_nocase'=>'ldapNoCase', 'ldap_quota_def'=>'ldapQuotaDefault', 'ldap_quota_attr'=>'ldapQuotaAttribute', 'ldap_email_attr'=>'ldapEmailAttribute', 'ldap_group_member_assoc_attribute'=>'ldapGroupMemberAssocAttr', 'ldap_cache_ttl'=>'ldapCacheTTL', 'home_folder_naming_rule' => 'homeFolderNamingRule'); foreach($config as $parameter => $value) { if(isset($this->config[$parameter])) { diff --git a/apps/user_ldap/settings.php b/apps/user_ldap/settings.php index 39aa3296265..23018890eac 100644 --- a/apps/user_ldap/settings.php +++ b/apps/user_ldap/settings.php @@ -20,7 +20,7 @@ * License along with this library. If not, see . * */ -$params = array('ldap_host', 'ldap_port', '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'); +$params = array('ldap_host', 'ldap_port', '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'); @@ -36,6 +36,9 @@ if ($_POST) { $ldap->clearCache(); OCP\Config::setAppValue('user_ldap', $param, $_POST[$param]); } + } elseif('home_folder_naming_rule' == $param) { + $value = empty($_POST[$param]) ? 'opt:username' : 'attr:'.$_POST[$param]; + OCP\Config::setAppValue('user_ldap', $param, $value); } else { OCP\Config::setAppValue('user_ldap', $param, $_POST[$param]); } @@ -67,5 +70,8 @@ $tmpl->assign( 'ldap_group_display_name', OCP\Config::getAppValue('user_ldap', ' $tmpl->assign( 'ldap_group_member_assoc_attribute', OCP\Config::getAppValue('user_ldap', 'ldap_group_member_assoc_attribute', 'uniqueMember')); $tmpl->assign( 'ldap_agent_password', base64_decode(OCP\Config::getAppValue('user_ldap', 'ldap_agent_password'))); $tmpl->assign( 'ldap_cache_ttl', OCP\Config::getAppValue('user_ldap', 'ldap_cache_ttl', '600')); +$hfnr = OCP\Config::getAppValue('user_ldap', 'home_folder_naming_rule', 'opt:username'); +$hfnr = ($hfnr == 'opt:username') ? '' : substr($hfnr, strlen('attr:')); +$tmpl->assign( 'home_folder_naming_rule', $hfnr, ''); return $tmpl->fetchPage(); diff --git a/apps/user_ldap/templates/settings.php b/apps/user_ldap/templates/settings.php index 861c9ba6052..d1aaeedbdf9 100644 --- a/apps/user_ldap/templates/settings.php +++ b/apps/user_ldap/templates/settings.php @@ -27,6 +27,7 @@

+

t('Help');?> diff --git a/apps/user_ldap/user_ldap.php b/apps/user_ldap/user_ldap.php index a97df7b4fd1..d297374600a 100644 --- a/apps/user_ldap/user_ldap.php +++ b/apps/user_ldap/user_ldap.php @@ -161,6 +161,44 @@ class USER_LDAP extends lib\Access implements \OCP\UserInterface { } /** + * @brief determine the user's home directory + * @param string $uid the owncloud username + * @return boolean + */ + private function determineHomeDir($uid) { + if(strpos($this->connection->homeFolderNamingRule, 'attr:') === 0) { + $attr = substr($this->connection->homeFolderNamingRule, strlen('attr:')); + $homedir = $this->readAttribute($this->username2dn($uid), $attr); + if($homedir) { + $homedir = \OCP\Config::getSystemValue( "datadirectory", \OC::$SERVERROOT."/data" ) . '/' . $homedir[0]; + \OCP\Config::setUserValue($uid, 'user_ldap', 'homedir', $homedir); + return $homedir; + } + } + + //fallback and default: username + $homedir = \OCP\Config::getSystemValue( "datadirectory", \OC::$SERVERROOT."/data" ) . '/' . $uid; + \OCP\Config::setUserValue($uid, 'user_ldap', 'homedir', $homedir); + return $homedir; + } + + /** + * @brief get the user's home directory + * @param string $uid the username + * @return boolean + */ + public function getHome($uid){ + if($this->userExists($uid)) { + $homedir = \OCP\Config::getUserValue($uid, 'user_ldap', 'homedir', false); + if(!$homedir) { + $homedir = $this->determineHomeDir($uid); + } + return $homedir; + } + return false; + } + + /** * @brief Check if backend implements actions * @param $actions bitwise-or'ed actions * @returns boolean @@ -169,7 +207,7 @@ class USER_LDAP extends lib\Access implements \OCP\UserInterface { * compared with OC_USER_BACKEND_CREATE_USER etc. */ public function implementsActions($actions) { - return (bool)(OC_USER_BACKEND_CHECK_PASSWORD & $actions); + return (bool)((OC_USER_BACKEND_CHECK_PASSWORD | OC_USER_BACKEND_GET_HOME) & $actions); } } \ No newline at end of file From fd2ca21fc24b6b73a6d75af2e7a7a226e5b186e9 Mon Sep 17 00:00:00 2001 From: Michael Gapczynski Date: Tue, 28 Aug 2012 09:51:00 -0400 Subject: [PATCH 004/246] Allow share_with column to be null for links --- db_structure.xml | 2 +- lib/util.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/db_structure.xml b/db_structure.xml index 8c96fa7c39c..e42dc894e8d 100644 --- a/db_structure.xml +++ b/db_structure.xml @@ -479,7 +479,7 @@ share_with text - true + false 255 diff --git a/lib/util.php b/lib/util.php index 0abdddcbf9b..720f2cdeefd 100755 --- a/lib/util.php +++ b/lib/util.php @@ -76,7 +76,7 @@ class OC_Util { */ public static function getVersion(){ // hint: We only can count up. So the internal version number of ownCloud 4.5 will be 4,9,0. This is not visible to the user - return array(4,83,4); + return array(4,83,5); } /** From 0a1f24142a71e82b59eebcf6c7886a5cbc3fe54e Mon Sep 17 00:00:00 2001 From: Michael Gapczynski Date: Tue, 28 Aug 2012 09:53:31 -0400 Subject: [PATCH 005/246] Change public file from get.php to public.php --- apps/files_sharing/appinfo/info.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/files_sharing/appinfo/info.xml b/apps/files_sharing/appinfo/info.xml index e31d3299f59..3e34d59abdf 100644 --- a/apps/files_sharing/appinfo/info.xml +++ b/apps/files_sharing/appinfo/info.xml @@ -12,7 +12,7 @@ - get.php - get.php + pulblic.php + public.php From 1e2ba8398d9f7df8dc38a425b31a37a2f3fe7f0a Mon Sep 17 00:00:00 2001 From: Michael Gapczynski Date: Tue, 28 Aug 2012 09:55:24 -0400 Subject: [PATCH 006/246] Remove old database xml file for files_sharing, bump version number --- apps/files_sharing/appinfo/database.xml | 42 ------------------------- apps/files_sharing/appinfo/version | 2 +- 2 files changed, 1 insertion(+), 43 deletions(-) delete mode 100644 apps/files_sharing/appinfo/database.xml diff --git a/apps/files_sharing/appinfo/database.xml b/apps/files_sharing/appinfo/database.xml deleted file mode 100644 index c5cb632d4fe..00000000000 --- a/apps/files_sharing/appinfo/database.xml +++ /dev/null @@ -1,42 +0,0 @@ - - - *dbname* - true - false - utf8 - - *dbprefix*sharing - - - uid_owner - text - true - 64 - - - uid_shared_with - text - true - 64 - - - source - text - true - 128 - - - target - text - true - 128 - - - permissions - integer - true - 1 - - -
-
diff --git a/apps/files_sharing/appinfo/version b/apps/files_sharing/appinfo/version index f4778493c50..1d71ef97443 100644 --- a/apps/files_sharing/appinfo/version +++ b/apps/files_sharing/appinfo/version @@ -1 +1 @@ -0.2.2 \ No newline at end of file +0.3 \ No newline at end of file From c53310e49b2da37bb6d4193e2aa540596fe95658 Mon Sep 17 00:00:00 2001 From: Michael Gapczynski Date: Tue, 28 Aug 2012 09:57:09 -0400 Subject: [PATCH 007/246] Remove unnecessary ajax file from files_sharing --- apps/files_sharing/ajax/togglesharewitheveryone.php | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 apps/files_sharing/ajax/togglesharewitheveryone.php diff --git a/apps/files_sharing/ajax/togglesharewitheveryone.php b/apps/files_sharing/ajax/togglesharewitheveryone.php deleted file mode 100644 index 96c43711cb5..00000000000 --- a/apps/files_sharing/ajax/togglesharewitheveryone.php +++ /dev/null @@ -1,11 +0,0 @@ - Date: Tue, 28 Aug 2012 11:08:24 -0400 Subject: [PATCH 008/246] Check if path info is empty for remote.php, prevent error --- remote.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/remote.php b/remote.php index 41d2a7ab349..809a4a9bf54 100644 --- a/remote.php +++ b/remote.php @@ -2,7 +2,7 @@ $RUNTIME_NOAPPS = TRUE; require_once('lib/base.php'); $path_info = OC_Request::getPathInfo(); -if ($path_info === false) { +if ($path_info === false || $path_info === '') { OC_Response::setStatus(OC_Response::STATUS_NOT_FOUND); exit; } From da44e5405a8667afb476d76948554e01a637e89c Mon Sep 17 00:00:00 2001 From: Michael Gapczynski Date: Tue, 28 Aug 2012 11:12:18 -0400 Subject: [PATCH 009/246] Fix typo --- apps/files_sharing/appinfo/info.xml | 2 +- apps/files_sharing/appinfo/version | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/files_sharing/appinfo/info.xml b/apps/files_sharing/appinfo/info.xml index 3e34d59abdf..6a8fc89adae 100644 --- a/apps/files_sharing/appinfo/info.xml +++ b/apps/files_sharing/appinfo/info.xml @@ -12,7 +12,7 @@ - pulblic.php + public.php public.php diff --git a/apps/files_sharing/appinfo/version b/apps/files_sharing/appinfo/version index 1d71ef97443..a2268e2de44 100644 --- a/apps/files_sharing/appinfo/version +++ b/apps/files_sharing/appinfo/version @@ -1 +1 @@ -0.3 \ No newline at end of file +0.3.1 \ No newline at end of file From e05db00468d3707e617a431fb00d8c7c447644e6 Mon Sep 17 00:00:00 2001 From: Michael Gapczynski Date: Tue, 28 Aug 2012 11:13:02 -0400 Subject: [PATCH 010/246] 404 if service is not set for public.php --- public.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/public.php b/public.php index 0581631f41f..e46559595fe 100644 --- a/public.php +++ b/public.php @@ -1,6 +1,10 @@ Date: Tue, 28 Aug 2012 11:28:38 -0400 Subject: [PATCH 011/246] Check usernames in the database as case insensitive, they are still stored case sensitive. Bug fix for oc-422 and oc-1514 --- lib/user/database.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/user/database.php b/lib/user/database.php index a4cffe5d0c1..dc11614cc57 100644 --- a/lib/user/database.php +++ b/lib/user/database.php @@ -121,7 +121,7 @@ class OC_User_Database extends OC_User_Backend { * returns the user id or false */ public function checkPassword( $uid, $password ){ - $query = OC_DB::prepare( 'SELECT `uid`, `password` FROM `*PREFIX*users` WHERE `uid` = ?' ); + $query = OC_DB::prepare( 'SELECT `uid`, `password` FROM `*PREFIX*users` WHERE LOWER(`uid`) = LOWER(?)' ); $result = $query->execute( array( $uid)); $row=$result->fetchRow(); @@ -170,7 +170,7 @@ class OC_User_Database extends OC_User_Backend { * @return boolean */ public function userExists($uid){ - $query = OC_DB::prepare( 'SELECT * FROM `*PREFIX*users` WHERE `uid` = ?' ); + $query = OC_DB::prepare( 'SELECT * FROM `*PREFIX*users` WHERE LOWER(`uid`) = LOWER(?)' ); $result = $query->execute( array( $uid )); return $result->numRows() > 0; From 9ca62903176a92ec2d1f2e43c036bf848b0a40a7 Mon Sep 17 00:00:00 2001 From: Michael Gapczynski Date: Tue, 28 Aug 2012 13:46:16 -0400 Subject: [PATCH 012/246] Remove unused settings log file --- settings/log.php | 44 -------------------------------------------- 1 file changed, 44 deletions(-) delete mode 100644 settings/log.php diff --git a/settings/log.php b/settings/log.php deleted file mode 100644 index ddbf72c4433..00000000000 --- a/settings/log.php +++ /dev/null @@ -1,44 +0,0 @@ -. - * - */ - -require_once('../lib/base.php'); -OC_Util::checkAdminUser(); - -// Load the files we need -OC_Util::addStyle( "settings", "settings" ); -OC_Util::addScript( "settings", "apps" ); -OC_App::setActiveNavigationEntry( "core_log" ); - -$entries=OC_Log_Owncloud::getEntries(); - -OC_Util::addScript('settings','log'); -OC_Util::addStyle('settings','settings'); - -function compareEntries($a,$b){ - return $b->time - $a->time; -} -usort($entries, 'compareEntries'); - -$tmpl = new OC_Template( "settings", "log", "user" ); -$tmpl->assign('entries',$entries); - -$tmpl->printPage(); From 95cd48dea8f33641adeaf110bf37e088a6d116fa Mon Sep 17 00:00:00 2001 From: Michael Gapczynski Date: Tue, 28 Aug 2012 14:00:46 -0400 Subject: [PATCH 013/246] Fix sharing test case --- tests/lib/share/share.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/lib/share/share.php b/tests/lib/share/share.php index 22de5691036..18ca5031ca4 100644 --- a/tests/lib/share/share.php +++ b/tests/lib/share/share.php @@ -360,13 +360,12 @@ class Test_Share extends UnitTestCase { // Attempt user specific target conflict OC_User::setUserId($this->user3); - $this->assertTrue(OCP\Share::shareItem('test', 'test.txt', OCP\Share::SHARE_TYPE_GROUP, $this->group1, OCP\Share::PERMISSION_READ | OCP\Share::PERMISSION_SHARE)); + $this->assertTrue(OCP\Share::shareItem('test', 'share.txt', OCP\Share::SHARE_TYPE_GROUP, $this->group1, OCP\Share::PERMISSION_READ | OCP\Share::PERMISSION_SHARE)); OC_User::setUserId($this->user2); $to_test = OCP\Share::getItemsSharedWith('test', Test_Share_Backend::FORMAT_TARGET); $this->assertEqual(count($to_test), 2); $this->assertTrue(in_array('test.txt', $to_test)); $this->assertTrue(in_array('test1.txt', $to_test)); - $this->dump($to_test, "array of shared items in test"); //$this->assertEqual(OCP\Share::getItemsSharedWith('test', Test_Share_Backend::FORMAT_TARGET), array('test.txt', 'test1.txt')); // // Valid reshare TODO Broken From 8a02a8852fc912398b5348b8e3263cd4048d5b1b Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Tue, 28 Aug 2012 22:39:05 +0200 Subject: [PATCH 014/246] Add background job for global file cache cleanup --- lib/base.php | 3 +++ lib/cache/fileglobal.php | 34 ++++++++++++++++++++++++++++------ 2 files changed, 31 insertions(+), 6 deletions(-) diff --git a/lib/base.php b/lib/base.php index b4f3e667133..af860027c1d 100644 --- a/lib/base.php +++ b/lib/base.php @@ -346,6 +346,9 @@ class OC{ } } + // register cache cleanup + OC_BackgroundJob_RegularTask::register('OC_Cache_FileGlobal', 'gc'); + // Check for blacklisted files OC_Hook::connect('OC_Filesystem','write','OC_Filesystem','isBlacklisted'); OC_Hook::connect('OC_Filesystem', 'rename', 'OC_Filesystem', 'isBlacklisted'); diff --git a/lib/cache/fileglobal.php b/lib/cache/fileglobal.php index 1c2c9bdc82d..d4336553c38 100644 --- a/lib/cache/fileglobal.php +++ b/lib/cache/fileglobal.php @@ -8,7 +8,7 @@ class OC_Cache_FileGlobal{ - protected function getCacheDir() { + static protected function getCacheDir() { $cache_dir = get_temp_dir().'/owncloud-'.OC_Util::getInstanceId().'/'; if (!is_dir($cache_dir)) { mkdir($cache_dir); @@ -23,7 +23,7 @@ class OC_Cache_FileGlobal{ public function get($key) { $key = $this->fixKey($key); if ($this->hasKey($key)) { - $cache_dir = $this->getCacheDir(); + $cache_dir = self::getCacheDir(); return file_get_contents($cache_dir.$key); } return null; @@ -31,7 +31,7 @@ class OC_Cache_FileGlobal{ public function set($key, $value, $ttl=0) { $key = $this->fixKey($key); - $cache_dir = $this->getCacheDir(); + $cache_dir = self::getCacheDir(); if ($cache_dir and file_put_contents($cache_dir.$key, $value)) { if ($ttl === 0) { $ttl = 86400; // 60*60*24 @@ -43,7 +43,7 @@ class OC_Cache_FileGlobal{ public function hasKey($key) { $key = $this->fixKey($key); - $cache_dir = $this->getCacheDir(); + $cache_dir = self::getCacheDir(); if ($cache_dir && is_file($cache_dir.$key)) { $mtime = filemtime($cache_dir.$key); if ($mtime < time()) { @@ -56,7 +56,7 @@ class OC_Cache_FileGlobal{ } public function remove($key) { - $cache_dir = $this->getCacheDir(); + $cache_dir = self::getCacheDir(); if(!$cache_dir){ return false; } @@ -65,7 +65,7 @@ class OC_Cache_FileGlobal{ } public function clear(){ - $cache_dir = $this->getCacheDir(); + $cache_dir = self::getCacheDir(); if($cache_dir and is_dir($cache_dir)){ $dh=opendir($cache_dir); while($file=readdir($dh)){ @@ -75,4 +75,26 @@ class OC_Cache_FileGlobal{ } } } + + static public function gc() { + $last_run = OC_AppConfig::getValue('core', 'global_cache_gc_lastrun', 0); + $now = time(); + if (($now - $last_run) < 300) { + // only do cleanup every 5 minutes + return; + } + OC_AppConfig::setValue('core', 'global_cache_gc_lastrun', $now); + $cache_dir = self::getCacheDir(); + if($cache_dir and is_dir($cache_dir)) { + $dh=opendir($cache_dir); + while($file=readdir($dh)) { + if($file!='.' and $file!='..') { + $mtime = filemtime($cache_dir.$file); + if ($mtime < $now) { + unlink($cache_dir.$file); + } + } + } + } + } } From 53e51fe46b3a78b117bd43de922c0fea67d49670 Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Tue, 28 Aug 2012 23:07:09 +0200 Subject: [PATCH 015/246] Clean user cache on login --- lib/base.php | 3 ++- lib/cache/file.php | 21 +++++++++++++++++++++ 2 files changed, 23 insertions(+), 1 deletion(-) diff --git a/lib/base.php b/lib/base.php index af860027c1d..d3f3c5ba1c6 100644 --- a/lib/base.php +++ b/lib/base.php @@ -346,8 +346,9 @@ class OC{ } } - // register cache cleanup + // register cache cleanup jobs OC_BackgroundJob_RegularTask::register('OC_Cache_FileGlobal', 'gc'); + OC_Hook::connect('OC_User', 'post_login', 'OC_Cache_File', 'loginListener'); // Check for blacklisted files OC_Hook::connect('OC_Filesystem','write','OC_Filesystem','isBlacklisted'); diff --git a/lib/cache/file.php b/lib/cache/file.php index 562c3d17167..7298ba9074c 100644 --- a/lib/cache/file.php +++ b/lib/cache/file.php @@ -74,4 +74,25 @@ class OC_Cache_File{ } return true; } + + public function gc() { + $storage = $this->getStorage(); + if($storage and $storage->is_dir('/')) { + $now = time(); + $dh=$storage->opendir('/'); + while($file=readdir($dh)) { + if($file!='.' and $file!='..') { + $mtime = $storage->filemtime('/'.$file); + if ($mtime < $now) { + $storage->unlink('/'.$file); + } + } + } + } + } + + public static function loginListener() { + $c = new self(); + $c->gc(); + } } From 32721e7b075f9bf0c625cb6f0a6e12d913abe6fc Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Tue, 28 Aug 2012 23:10:32 +0200 Subject: [PATCH 016/246] Remember storage view in OC_Cache_File --- lib/cache/file.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/lib/cache/file.php b/lib/cache/file.php index 7298ba9074c..fa62dd3b162 100644 --- a/lib/cache/file.php +++ b/lib/cache/file.php @@ -8,14 +8,19 @@ class OC_Cache_File{ + protected $storage; protected function getStorage() { + if (isset(self::$storage)) { + return self::$storage; + } if(OC_User::isLoggedIn()){ $subdir = 'cache'; $view = new OC_FilesystemView('/'.OC_User::getUser()); if(!$view->file_exists($subdir)) { $view->mkdir($subdir); } - return new OC_FilesystemView('/'.OC_User::getUser().'/'.$subdir); + self::$storage = new OC_FilesystemView('/'.OC_User::getUser().'/'.$subdir); + return self::$storage; }else{ OC_Log::write('core','Can\'t get cache storage, user not logged in', OC_Log::ERROR); return false; From 6d0737de224f3e0a38e296fd8e08893694cf0f25 Mon Sep 17 00:00:00 2001 From: Thomas Mueller Date: Tue, 28 Aug 2012 23:23:48 +0200 Subject: [PATCH 017/246] removing obsolete .tx --- .tx/config | 182 ----------------------------------------------------- 1 file changed, 182 deletions(-) delete mode 100644 .tx/config diff --git a/.tx/config b/.tx/config deleted file mode 100644 index b51860f8b2f..00000000000 --- a/.tx/config +++ /dev/null @@ -1,182 +0,0 @@ -[main] -host = https://www.transifex.net - -[owncloud.core] -file_filter = l10n//core.po -host = http://www.transifex.net -source_file = l10n/templates/core.pot -source_lang = en -trans.bg_BG = l10n/bg_BG/core.po -trans.ca = l10n/ca/core.po -trans.cs_CZ = l10n/cs_CZ/core.po -trans.da = l10n/da/core.po -trans.de = l10n/de/core.po -trans.el = l10n/el/core.po -trans.es = l10n/es/core.po -trans.et_EE = l10n/et_EE/core.po -trans.fr = l10n/fr/core.po -trans.id = l10n/id/core.po -trans.it = l10n/it/core.po -trans.lb = l10n/lb/core.po -trans.ms_MY = l10n/ms_MY/core.po -trans.nb_NO = l10n/nb_NO/core.po -trans.nl = l10n/nl/core.po -trans.pl = l10n/pl/core.po -trans.pt_BR = l10n/pt_BR/core.po -trans.pt_PT = l10n/pt_PT/core.po -trans.ro = l10n/ro/core.po -trans.ru = l10n/ru/core.po -trans.sr = l10n/sr/core.po -trans.sr@latin = l10n/sr@latin/core.po -trans.sv = l10n/sv/core.po -trans.zh_CN = l10n/zh_CN/core.po - -[owncloud.settings] -file_filter = l10n//settings.po -host = http://www.transifex.net -source_file = l10n/templates/settings.pot -source_lang = en -trans.bg_BG = l10n/bg_BG/settings.po -trans.ca = l10n/ca/settings.po -trans.cs_CZ = l10n/cs_CZ/settings.po -trans.da = l10n/da/settings.po -trans.de = l10n/de/settings.po -trans.el = l10n/el/settings.po -trans.es = l10n/es/settings.po -trans.et_EE = l10n/et_EE/settings.po -trans.fr = l10n/fr/settings.po -trans.id = l10n/id/settings.po -trans.it = l10n/it/settings.po -trans.lb = l10n/lb/settings.po -trans.ms_MY = l10n/ms_MY/settings.po -trans.nb_NO = l10n/nb_NO/settings.po -trans.nl = l10n/nl/settings.po -trans.pl = l10n/pl/settings.po -trans.pt_BR = l10n/pt_BR/settings.po -trans.pt_PT = l10n/pt_PT/settings.po -trans.ro = l10n/ro/settings.po -trans.ru = l10n/ru/settings.po -trans.sr = l10n/sr/settings.po -trans.sr@latin = l10n/sr@latin/settings.po -trans.sv = l10n/sv/settings.po -trans.zh_CN = l10n/zh_CN/settings.po - -[owncloud.files] -file_filter = translations/owncloud.files/.po -host = http://www.transifex.net -source_file = l10n/templates/files.pot -source_lang = en -trans.bg_BG = l10n/bg_BG/files.po -trans.ca = l10n/ca/files.po -trans.cs_CZ = l10n/cs_CZ/files.po -trans.da = l10n/da/files.po -trans.de = l10n/de/files.po -trans.el = l10n/el/files.po -trans.es = l10n/es/files.po -trans.et_EE = l10n/et_EE/files.po -trans.fr = l10n/fr/files.po -trans.id = l10n/id/files.po -trans.it = l10n/it/files.po -trans.lb = l10n/lb/files.po -trans.ms_MY = l10n/ms_MY/files.po -trans.nb_NO = l10n/nb_NO/files.po -trans.nl = l10n/nl/files.po -trans.pl = l10n/pl/files.po -trans.pt_BR = l10n/pt_BR/files.po -trans.pt_PT = l10n/pt_PT/files.po -trans.ro = l10n/ro/files.po -trans.ru = l10n/ru/files.po -trans.sr = l10n/sr/files.po -trans.sr@latin = l10n/sr@latin/files.po -trans.sv = l10n/sv/files.po -trans.zh_CN = l10n/zh_CN/files.po - -[owncloud.media] -file_filter = translations/owncloud.media/.po -host = http://www.transifex.net -source_file = l10n/templates/media.pot -source_lang = en -trans.bg_BG = l10n/bg_BG/media.po -trans.ca = l10n/ca/media.po -trans.cs_CZ = l10n/cs_CZ/media.po -trans.da = l10n/da/media.po -trans.de = l10n/de/media.po -trans.el = l10n/el/media.po -trans.es = l10n/es/media.po -trans.et_EE = l10n/et_EE/media.po -trans.fr = l10n/fr/media.po -trans.id = l10n/id/media.po -trans.it = l10n/it/media.po -trans.lb = l10n/lb/media.po -trans.ms_MY = l10n/ms_MY/media.po -trans.nb_NO = l10n/nb_NO/media.po -trans.nl = l10n/nl/media.po -trans.pl = l10n/pl/media.po -trans.pt_BR = l10n/pt_BR/media.po -trans.pt_PT = l10n/pt_PT/media.po -trans.ro = l10n/ro/media.po -trans.ru = l10n/ru/media.po -trans.sr = l10n/sr/media.po -trans.sr@latin = l10n/sr@latin/media.po -trans.sv = l10n/sv/media.po -trans.zh_CN = l10n/zh_CN/media.po - -[owncloud.calendar] -file_filter = l10n//calendar.po -host = http://www.transifex.net -source_file = l10n/templates/calendar.pot -source_lang = en -trans.bg_BG = l10n/bg_BG/calendar.po -trans.ca = l10n/ca/calendar.po -trans.cs_CZ = l10n/cs_CZ/calendar.po -trans.da = l10n/da/calendar.po -trans.de = l10n/de/calendar.po -trans.el = l10n/el/calendar.po -trans.es = l10n/es/calendar.po -trans.et_EE = l10n/et_EE/calendar.po -trans.fr = l10n/fr/calendar.po -trans.id = l10n/id/calendar.po -trans.it = l10n/it/calendar.po -trans.lb = l10n/lb/calendar.po -trans.ms_MY = l10n/ms_MY/calendar.po -trans.nb_NO = l10n/nb_NO/calendar.po -trans.nl = l10n/nl/calendar.po -trans.pl = l10n/pl/calendar.po -trans.pt_BR = l10n/pt_BR/calendar.po -trans.pt_PT = l10n/pt_PT/calendar.po -trans.ro = l10n/ro/calendar.po -trans.ru = l10n/ru/calendar.po -trans.sr = l10n/sr/calendar.po -trans.sr@latin = l10n/sr@latin/calendar.po -trans.sv = l10n/sv/calendar.po -trans.zh_CN = l10n/zh_CN/calendar.po - -[owncloud.contacts] -file_filter = translations/owncloud.contacts/.po -host = http://www.transifex.net -source_file = l10n/templates/contacts.pot -source_lang = en -trans.bg_BG = l10n/bg_BG/contacts.po -trans.ca = l10n/ca/contacts.po -trans.cs_CZ = l10n/cs_CZ/contacts.po -trans.da = l10n/da/contacts.po -trans.de = l10n/de/contacts.po -trans.el = l10n/el/contacts.po -trans.es = l10n/es/contacts.po -trans.et_EE = l10n/et_EE/contacts.po -trans.fr = l10n/fr/contacts.po -trans.id = l10n/id/contacts.po -trans.it = l10n/it/contacts.po -trans.lb = l10n/lb/contacts.po -trans.ms_MY = l10n/ms_MY/contacts.po -trans.nb_NO = l10n/nb_NO/contacts.po -trans.nl = l10n/nl/contacts.po -trans.pl = l10n/pl/contacts.po -trans.pt_BR = l10n/pt_BR/contacts.po -trans.pt_PT = l10n/pt_PT/contacts.po -trans.ro = l10n/ro/contacts.po -trans.ru = l10n/ru/contacts.po -trans.sr = l10n/sr/contacts.po -trans.sr@latin = l10n/sr@latin/contacts.po -trans.sv = l10n/sv/contacts.po -trans.zh_CN = l10n/zh_CN/contacts.po From f301bfd8c9f6b9beda907888708b0d465dc87a83 Mon Sep 17 00:00:00 2001 From: Thomas Mueller Date: Wed, 29 Aug 2012 00:36:27 +0200 Subject: [PATCH 018/246] apply coding style --- apps/files/ajax/autocomplete.php | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/apps/files/ajax/autocomplete.php b/apps/files/ajax/autocomplete.php index e504bb24bf8..fae38368a85 100644 --- a/apps/files/ajax/autocomplete.php +++ b/apps/files/ajax/autocomplete.php @@ -11,20 +11,20 @@ OCP\JSON::checkLoggedIn(); $query = $_GET['term']; $dirOnly=(isset($_GET['dironly']))?($_GET['dironly']=='true'):false; -if($query[0]!='/'){ +if($query[0]!='/') { $query='/'.$query; } -if(substr($query,-1,1)=='/'){ +if(substr($query, -1, 1)=='/') { $base=$query; -}else{ +} else { $base=dirname($query); } -$query=substr($query,strlen($base)); +$query=substr($query, strlen($base)); -if($base!='/'){ - $query=substr($query,1); +if($base!='/') { + $query=substr($query, 1); } $queryLen=strlen($query); $query=strtolower($query); @@ -33,17 +33,17 @@ $query=strtolower($query); $files=array(); -if(OC_Filesystem::file_exists($base) and OC_Filesystem::is_dir($base)){ +if(OC_Filesystem::file_exists($base) and OC_Filesystem::is_dir($base)) { $dh = OC_Filesystem::opendir($base); - if($dh){ - if(substr($base,-1,1)!='/'){ + if($dh) { + if(substr($base, -1, 1)!='/') { $base=$base.'/'; } while (($file = readdir($dh)) !== false) { - if ($file != "." && $file != ".."){ - if(substr(strtolower($file),0,$queryLen)==$query){ + if ($file != "." && $file != "..") { + if(substr(strtolower($file), 0, $queryLen)==$query) { $item=$base.$file; - if((!$dirOnly or OC_Filesystem::is_dir($item))){ + if((!$dirOnly or OC_Filesystem::is_dir($item))) { $files[]=(object)array('id'=>$item,'label'=>$item,'name'=>$item); } } From fe49cbafc77f8a197dfe5c947360d9e52396d081 Mon Sep 17 00:00:00 2001 From: Thomas Mueller Date: Wed, 29 Aug 2012 00:50:12 +0200 Subject: [PATCH 019/246] apply coding style --- apps/files/ajax/delete.php | 2 +- apps/files/ajax/list.php | 4 ++-- apps/files/ajax/move.php | 4 ++-- apps/files/ajax/newfile.php | 36 +++++++++++++++++------------------ apps/files/ajax/newfolder.php | 2 +- apps/files/ajax/rawlist.php | 6 +++--- apps/files/ajax/scan.php | 27 +++++++++++++------------- apps/files/ajax/upload.php | 8 ++++---- 8 files changed, 45 insertions(+), 44 deletions(-) diff --git a/apps/files/ajax/delete.php b/apps/files/ajax/delete.php index 695f803884e..e9bcea18932 100644 --- a/apps/files/ajax/delete.php +++ b/apps/files/ajax/delete.php @@ -15,7 +15,7 @@ $filesWithError = ''; $success = true; //Now delete foreach($files as $file) { - if( !OC_Files::delete( $dir, $file )){ + if( !OC_Files::delete( $dir, $file )) { $filesWithError .= $file . "\n"; $success = false; } diff --git a/apps/files/ajax/list.php b/apps/files/ajax/list.php index dae0c1a828d..94ddf0364be 100644 --- a/apps/files/ajax/list.php +++ b/apps/files/ajax/list.php @@ -14,11 +14,11 @@ $doBreadcrumb = isset( $_GET['breadcrumb'] ) ? true : false; $data = array(); // Make breadcrumb -if($doBreadcrumb){ +if($doBreadcrumb) { $breadcrumb = array(); $pathtohere = "/"; foreach( explode( "/", $dir ) as $i ){ - if( $i != "" ){ + if( $i != "" ) { $pathtohere .= "$i/"; $breadcrumb[] = array( "dir" => $pathtohere, "name" => $i ); } diff --git a/apps/files/ajax/move.php b/apps/files/ajax/move.php index 3d4003a8edc..8b3149ef14e 100644 --- a/apps/files/ajax/move.php +++ b/apps/files/ajax/move.php @@ -12,8 +12,8 @@ $file = stripslashes($_GET["file"]); $target = stripslashes($_GET["target"]); -if(OC_Files::move($dir,$file,$target,$file)){ +if(OC_Files::move($dir, $file, $target, $file)) { OCP\JSON::success(array("data" => array( "dir" => $dir, "files" => $file ))); -}else{ +} else { OCP\JSON::error(array("data" => array( "message" => "Could not move $file" ))); } diff --git a/apps/files/ajax/newfile.php b/apps/files/ajax/newfile.php index cc9208ad08f..b572a766dac 100644 --- a/apps/files/ajax/newfile.php +++ b/apps/files/ajax/newfile.php @@ -3,7 +3,7 @@ // Init owncloud global $eventSource; -if(!OC_User::isLoggedIn()){ +if(!OC_User::isLoggedIn()) { exit; } @@ -15,9 +15,9 @@ $filename = isset( $_REQUEST['filename'] ) ? stripslashes($_REQUEST['filename']) $content = isset( $_REQUEST['content'] ) ? $_REQUEST['content'] : ''; $source = isset( $_REQUEST['source'] ) ? stripslashes($_REQUEST['source']) : ''; -if($source){ +if($source) { $eventSource=new OC_EventSource(); -}else{ +} else { OC_JSON::callCheck(); } @@ -25,12 +25,12 @@ if($filename == '') { OCP\JSON::error(array("data" => array( "message" => "Empty Filename" ))); exit(); } -if(strpos($filename,'/')!==false){ +if(strpos($filename,'/')!==false) { OCP\JSON::error(array("data" => array( "message" => "Invalid Filename" ))); exit(); } -function progress($notification_code, $severity, $message, $message_code, $bytes_transferred, $bytes_max){ +function progress($notification_code, $severity, $message, $message_code, $bytes_transferred, $bytes_max) { static $filesize = 0; static $lastsize = 0; global $eventSource; @@ -45,8 +45,8 @@ function progress($notification_code, $severity, $message, $message_code, $bytes if (!isset($filesize)) { } else { $progress = (int)(($bytes_transferred/$filesize)*100); - if($progress>$lastsize){//limit the number or messages send - $eventSource->send('progress',$progress); + if($progress>$lastsize) {//limit the number or messages send + $eventSource->send('progress', $progress); } $lastsize=$progress; } @@ -56,30 +56,30 @@ function progress($notification_code, $severity, $message, $message_code, $bytes } if($source){ - if(substr($source,0,8)!='https://' and substr($source,0,7)!='http://'){ + if(substr($source, 0, 8)!='https://' and substr($source, 0, 7)!='http://') { OCP\JSON::error(array("data" => array( "message" => "Not a valid source" ))); exit(); } $ctx = stream_context_create(null, array('notification' =>'progress')); - $sourceStream=fopen($source,'rb', false, $ctx); + $sourceStream=fopen($source, 'rb', false, $ctx); $target=$dir.'/'.$filename; - $result=OC_Filesystem::file_put_contents($target,$sourceStream); - if($result){ + $result=OC_Filesystem::file_put_contents($target, $sourceStream); + if($result) { $mime=OC_Filesystem::getMimetype($target); - $eventSource->send('success',$mime); - }else{ - $eventSource->send('error',"Error while downloading ".$source. ' to '.$target); + $eventSource->send('success', $mime); + } else { + $eventSource->send('error', "Error while downloading ".$source. ' to '.$target); } $eventSource->close(); exit(); -}else{ - if($content){ - if(OC_Filesystem::file_put_contents($dir.'/'.$filename,$content)){ +} else { + if($content) { + if(OC_Filesystem::file_put_contents($dir.'/'.$filename, $content)) { OCP\JSON::success(array("data" => array('content'=>$content))); exit(); } - }elseif(OC_Files::newFile($dir, $filename, 'file')){ + }elseif(OC_Files::newFile($dir, $filename, 'file')) { OCP\JSON::success(array("data" => array('content'=>$content))); exit(); } diff --git a/apps/files/ajax/newfolder.php b/apps/files/ajax/newfolder.php index ae92bcf09bb..34c2d0ca145 100644 --- a/apps/files/ajax/newfolder.php +++ b/apps/files/ajax/newfolder.php @@ -14,7 +14,7 @@ if(trim($foldername) == '') { OCP\JSON::error(array("data" => array( "message" => "Empty Foldername" ))); exit(); } -if(strpos($foldername,'/')!==false){ +if(strpos($foldername, '/')!==false) { OCP\JSON::error(array("data" => array( "message" => "Invalid Foldername" ))); exit(); } diff --git a/apps/files/ajax/rawlist.php b/apps/files/ajax/rawlist.php index d159f6e152f..20094563b17 100644 --- a/apps/files/ajax/rawlist.php +++ b/apps/files/ajax/rawlist.php @@ -5,7 +5,7 @@ $RUNTIME_APPTYPES=array('filesystem'); // Init owncloud -require_once('lib/template.php'); +require_once 'lib/template.php'; OCP\JSON::checkLoggedIn(); @@ -15,9 +15,9 @@ $mimetype = isset($_GET['mimetype']) ? $_GET['mimetype'] : ''; // make filelist $files = array(); -foreach( OC_Files::getdirectorycontent( $dir, $mimetype ) as $i ){ +foreach( OC_Files::getdirectorycontent( $dir, $mimetype ) as $i ) { $i["date"] = OCP\Util::formatDate($i["mtime"] ); - $i['mimetype_icon'] = $i['type'] == 'dir' ? \mimetype_icon('dir'): \mimetype_icon($i['mimetype']); + $i['mimetype_icon'] = $i['type'] == 'dir' ? \mimetype_icon('dir'): \mimetype_icon($i['mimetype']); $files[] = $i; } diff --git a/apps/files/ajax/scan.php b/apps/files/ajax/scan.php index eef38858516..e38484b97dd 100644 --- a/apps/files/ajax/scan.php +++ b/apps/files/ajax/scan.php @@ -6,38 +6,39 @@ $force=isset($_GET['force']) and $_GET['force']=='true'; $dir=isset($_GET['dir'])?$_GET['dir']:''; $checkOnly=isset($_GET['checkonly']) and $_GET['checkonly']=='true'; -if(!$checkOnly){ +if(!$checkOnly) { $eventSource=new OC_EventSource(); } session_write_close(); //create the file cache if necesary -if($force or !OC_FileCache::inCache('')){ - if(!$checkOnly){ +if($force or !OC_FileCache::inCache('')) { + if(!$checkOnly) { OCP\DB::beginTransaction(); - if(OC_Cache::isFast()){ - OC_Cache::clear('fileid/'); //make sure the old fileid's don't mess things up + if(OC_Cache::isFast()) { + //make sure the old fileid's don't mess things up + OC_Cache::clear('fileid/'); } - OC_FileCache::scan($dir,$eventSource); + OC_FileCache::scan($dir, $eventSource); OC_FileCache::clean(); OCP\DB::commit(); - $eventSource->send('success',true); - }else{ + $eventSource->send('success', true); + } else { OCP\JSON::success(array('data'=>array('done'=>true))); exit; } -}else{ - if($checkOnly){ +} else { + if($checkOnly) { OCP\JSON::success(array('data'=>array('done'=>false))); exit; } - if(isset($eventSource)){ + if(isset($eventSource)) { $eventSource->send('success',false); - }else{ + } else { exit; } } -$eventSource->close(); \ No newline at end of file +$eventSource->close(); diff --git a/apps/files/ajax/upload.php b/apps/files/ajax/upload.php index 74e6eb560d8..813a6c67b5c 100644 --- a/apps/files/ajax/upload.php +++ b/apps/files/ajax/upload.php @@ -38,24 +38,24 @@ $totalSize=0; foreach($files['size'] as $size){ $totalSize+=$size; } -if($totalSize>OC_Filesystem::free_space('/')){ +if($totalSize>OC_Filesystem::free_space('/')) { OCP\JSON::error(array("data" => array( "message" => "Not enough space available" ))); exit(); } $result=array(); -if(strpos($dir,'..') === false){ +if(strpos($dir, '..') === false) { $fileCount=count($files['name']); for($i=0;$i<$fileCount;$i++){ $target = OCP\Files::buildNotExistingFileName(stripslashes($dir), $files['name'][$i]); - if(is_uploaded_file($files['tmp_name'][$i]) and OC_Filesystem::fromTmpFile($files['tmp_name'][$i],$target)){ + if(is_uploaded_file($files['tmp_name'][$i]) and OC_Filesystem::fromTmpFile($files['tmp_name'][$i], $target)) { $meta=OC_FileCache_Cached::get($target); $result[]=array( "status" => "success", 'mime'=>$meta['mimetype'],'size'=>$meta['size'],'name'=>basename($target)); } } OCP\JSON::encodedPrint($result); exit(); -}else{ +} else { $error='invalid dir'; } From 4c4aa92eef858a2a96bb5676304acbcaafaa56f2 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Wed, 29 Aug 2012 01:23:36 +0200 Subject: [PATCH 020/246] LDAP: check for existing username from other backends when creating one for an LDAP user or group. Led also to some code cleanup. Fixes oc-1551 in master. --- apps/user_ldap/lib/access.php | 44 ++++++++++++++--------------------- 1 file changed, 18 insertions(+), 26 deletions(-) diff --git a/apps/user_ldap/lib/access.php b/apps/user_ldap/lib/access.php index 68df4c4cb93..a1206de8285 100644 --- a/apps/user_ldap/lib/access.php +++ b/apps/user_ldap/lib/access.php @@ -145,8 +145,11 @@ abstract class Access { )); $result = $this->searchUsers($filter, 'dn'); if(isset($result[0]['dn'])) { - $this->mapComponent($result[0], $name, true); - return $result[0]; + //try mapping, if names equalize return DN + $uid = $this->dn2username($result[0]['dn']); + if($uid == $name) { + return $result[0]['dn']; + } } } @@ -265,18 +268,24 @@ abstract class Access { $ldapname = $this->sanitizeUsername($ldapname); //a new user/group! Then let's try to add it. We're shooting into the blue with the user/group name, assuming that in most cases there will not be a conflict. Otherwise an error will occur and we will continue with our second shot. - if($this->mapComponent($dn, $ldapname, $isUser)) { - return $ldapname; + if(($isUser && !\OCP\User::userExists($ldapname)) || (!$isUser && !\OC_Group::groupExists($ldapname))) { + if($this->mapComponent($dn, $ldapname, $isUser)) { + \OCP\Util::writeLog('user_ldap', 'Username '.ldapname.' OK.', \OCP\Util::DEBUG); + return $ldapname; + } } //doh! There is a conflict. We need to distinguish between users/groups. Adding indexes is an idea, but not much of a help for the user. The DN is ugly, but for now the only reasonable way. But we transform it to a readable format and remove the first part to only give the path where this object is located. $oc_name = $this->alternateOwnCloudName($ldapname, $dn); - if($this->mapComponent($dn, $oc_name, $isUser)) { - return $oc_name; + if(($isUser && !\OCP\User::userExists($oc_name)) || (!$isUser && !\OC_Group::groupExists($oc_name))) { + if($this->mapComponent($dn, $oc_name, $isUser)) { + return $oc_name; + } } //if everything else did not help.. \OCP\Util::writeLog('user_ldap', 'Could not create unique ownCloud name for '.$dn.'.', \OCP\Util::INFO); + return false; } /** @@ -320,28 +329,11 @@ abstract class Access { continue; } - //we do not take empty usernames - if(!isset($ldapObject[$nameAttribute]) || empty($ldapObject[$nameAttribute])) { - \OCP\Util::writeLog('user_ldap', 'No or empty name for '.$ldapObject['dn'].', skipping.', \OCP\Util::INFO); - continue; - } - - //a new group! Then let's try to add it. We're shooting into the blue with the group name, assuming that in most cases there will not be a conflict. But first make sure, that the display name contains only allowed characters. - $ocname = $this->sanitizeUsername($ldapObject[$nameAttribute]); - if($this->mapComponent($ldapObject['dn'], $ocname, $isUsers)) { + $ocname = $this->dn2ocname($ldapObject['dn'], $ldapObject[$nameAttribute], $isUsers); + if($ocname) { $ownCloudNames[] = $ocname; - continue; } - - //doh! There is a conflict. We need to distinguish between groups. Adding indexes is an idea, but not much of a help for the user. The DN is ugly, but for now the only reasonable way. But we transform it to a readable format and remove the first part to only give the path where this entry is located. - $ocname = $this->alternateOwnCloudName($ocname, $ldapObject['dn']); - if($this->mapComponent($ldapObject['dn'], $ocname, $isUsers)) { - $ownCloudNames[] = $ocname; - continue; - } - - //if everything else did not help.. - \OCP\Util::writeLog('user_ldap', 'Could not create unique ownCloud name for '.$ldapObject['dn'].', skipping.', \OCP\Util::INFO); + continue; } return $ownCloudNames; } From b64229a89e638e761264a45ed79fe2bc6b2f9262 Mon Sep 17 00:00:00 2001 From: Thomas Mueller Date: Wed, 29 Aug 2012 01:38:34 +0200 Subject: [PATCH 021/246] apply coding style --- apps/files/ajax/newfile.php | 4 ++-- apps/files/ajax/scan.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/files/ajax/newfile.php b/apps/files/ajax/newfile.php index b572a766dac..6ae9c445425 100644 --- a/apps/files/ajax/newfile.php +++ b/apps/files/ajax/newfile.php @@ -25,7 +25,7 @@ if($filename == '') { OCP\JSON::error(array("data" => array( "message" => "Empty Filename" ))); exit(); } -if(strpos($filename,'/')!==false) { +if(strpos($filename, '/')!==false) { OCP\JSON::error(array("data" => array( "message" => "Invalid Filename" ))); exit(); } @@ -55,7 +55,7 @@ function progress($notification_code, $severity, $message, $message_code, $bytes } } -if($source){ +if($source) { if(substr($source, 0, 8)!='https://' and substr($source, 0, 7)!='http://') { OCP\JSON::error(array("data" => array( "message" => "Not a valid source" ))); exit(); diff --git a/apps/files/ajax/scan.php b/apps/files/ajax/scan.php index e38484b97dd..23d7da44f8d 100644 --- a/apps/files/ajax/scan.php +++ b/apps/files/ajax/scan.php @@ -36,7 +36,7 @@ if($force or !OC_FileCache::inCache('')) { exit; } if(isset($eventSource)) { - $eventSource->send('success',false); + $eventSource->send('success', false); } else { exit; } From d786194ddc0c2f14cccc8bf80ecc2d397b684825 Mon Sep 17 00:00:00 2001 From: Thomas Mueller Date: Wed, 29 Aug 2012 01:39:21 +0200 Subject: [PATCH 022/246] fixing: apps/files/ajax/scan.php --- lib/cache/file.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/cache/file.php b/lib/cache/file.php index fa62dd3b162..a51f0d68f82 100644 --- a/lib/cache/file.php +++ b/lib/cache/file.php @@ -8,7 +8,7 @@ class OC_Cache_File{ - protected $storage; + protected static $storage; protected function getStorage() { if (isset(self::$storage)) { return self::$storage; From 92c782c1b049cbb4b9c8433edec2a08b739202a9 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Wed, 29 Aug 2012 01:57:35 +0200 Subject: [PATCH 023/246] return the jQuery deferred object when using OC.loadScript --- core/js/js.js | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/core/js/js.js b/core/js/js.js index 0c842f05593..c38eebbff29 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -120,18 +120,19 @@ OC={ */ addScript:function(app,script,ready){ var path=OC.filePath(app,'js',script+'.js'); - if(OC.addScript.loaded.indexOf(path)==-1){ - OC.addScript.loaded.push(path); + if(!OC.addScript.loaded[path]){ if(ready){ - $.getScript(path,ready); + var deferred=$.getScript(path,ready); }else{ - $.getScript(path); + var deferred=$.getScript(path); } + OC.addScript.loaded[path]=deferred; }else{ if(ready){ ready(); } } + return OC.addScript.loaded[path]; }, /** * load a css file and load it From 9338d093f9bbcb8b25c088d8777f5803964570c3 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Wed, 29 Aug 2012 02:06:48 +0200 Subject: [PATCH 024/246] [tx-robot] updated from transifex --- apps/files/l10n/id.php | 19 ++ apps/files_external/l10n/cs_CZ.php | 5 + apps/files_versions/l10n/pt_BR.php | 4 + apps/user_ldap/l10n/et_EE.php | 9 + apps/user_ldap/l10n/fa.php | 5 + apps/user_ldap/l10n/fr.php | 24 ++- apps/user_ldap/l10n/ru.php | 10 + core/l10n/hi.php | 14 ++ core/l10n/id.php | 17 ++ core/l10n/it.php | 4 +- l10n/af/core.po | 30 +-- l10n/af/files_sharing.po | 20 +- l10n/af/settings.po | 42 ++++- l10n/af/user_ldap.po | 14 +- l10n/ar/core.po | 30 +-- l10n/ar/files_sharing.po | 20 +- l10n/ar/settings.po | 42 ++++- l10n/ar/user_ldap.po | 14 +- l10n/ar_SA/core.po | 30 +-- l10n/ar_SA/files_sharing.po | 20 +- l10n/ar_SA/settings.po | 42 ++++- l10n/ar_SA/user_ldap.po | 14 +- l10n/bg_BG/core.po | 30 +-- l10n/bg_BG/files_sharing.po | 20 +- l10n/bg_BG/settings.po | 42 ++++- l10n/bg_BG/user_ldap.po | 14 +- l10n/ca/core.po | 30 +-- l10n/ca/files_sharing.po | 24 +-- l10n/ca/settings.po | 44 ++++- l10n/ca/user_ldap.po | 14 +- l10n/cs_CZ/core.po | 30 +-- l10n/cs_CZ/files_external.po | 17 +- l10n/cs_CZ/files_sharing.po | 26 +-- l10n/cs_CZ/settings.po | 42 ++++- l10n/cs_CZ/user_ldap.po | 14 +- l10n/da/core.po | 30 +-- l10n/da/files_sharing.po | 20 +- l10n/da/settings.po | 44 ++++- l10n/da/user_ldap.po | 14 +- l10n/de/core.po | 30 +-- l10n/de/files_sharing.po | 24 +-- l10n/de/settings.po | 44 ++++- l10n/de/user_ldap.po | 14 +- l10n/el/core.po | 30 +-- l10n/el/files_sharing.po | 26 +-- l10n/el/settings.po | 44 ++++- l10n/el/user_ldap.po | 14 +- l10n/eo/core.po | 30 +-- l10n/eo/files_sharing.po | 20 +- l10n/eo/settings.po | 44 ++++- l10n/eo/user_ldap.po | 14 +- l10n/es/core.po | 30 +-- l10n/es/files_sharing.po | 26 +-- l10n/es/settings.po | 44 ++++- l10n/es/user_ldap.po | 14 +- l10n/et_EE/core.po | 30 +-- l10n/et_EE/files_sharing.po | 20 +- l10n/et_EE/settings.po | 44 ++++- l10n/et_EE/user_ldap.po | 29 +-- l10n/eu/core.po | 30 +-- l10n/eu/files_sharing.po | 26 +-- l10n/eu/settings.po | 44 ++++- l10n/eu/user_ldap.po | 14 +- l10n/eu_ES/core.po | 30 +-- l10n/eu_ES/files_sharing.po | 20 +- l10n/eu_ES/settings.po | 42 ++++- l10n/eu_ES/user_ldap.po | 14 +- l10n/fa/core.po | 30 +-- l10n/fa/files_sharing.po | 26 +-- l10n/fa/settings.po | 42 ++++- l10n/fa/user_ldap.po | 21 ++- l10n/fi/core.po | 30 +-- l10n/fi/files_sharing.po | 20 +- l10n/fi/settings.po | 42 ++++- l10n/fi/user_ldap.po | 14 +- l10n/fi_FI/core.po | 30 +-- l10n/fi_FI/files_sharing.po | 26 +-- l10n/fi_FI/settings.po | 44 ++++- l10n/fi_FI/user_ldap.po | 14 +- l10n/fr/core.po | 30 +-- l10n/fr/files_sharing.po | 24 +-- l10n/fr/settings.po | 44 ++++- l10n/fr/user_ldap.po | 44 +++-- l10n/gl/core.po | 30 +-- l10n/gl/files_sharing.po | 20 +- l10n/gl/settings.po | 42 ++++- l10n/gl/user_ldap.po | 14 +- l10n/he/core.po | 30 +-- l10n/he/files_sharing.po | 20 +- l10n/he/settings.po | 42 ++++- l10n/he/user_ldap.po | 14 +- l10n/hi/core.po | 273 +++++++++++++++++++++++++++ l10n/hi/files.po | 218 ++++++++++++++++++++++ l10n/hi/files_encryption.po | 34 ++++ l10n/hi/files_external.po | 82 +++++++++ l10n/hi/files_sharing.po | 26 +++ l10n/hi/files_versions.po | 26 +++ l10n/hi/lib.po | 112 ++++++++++++ l10n/hi/settings.po | 274 ++++++++++++++++++++++++++++ l10n/hi/user_ldap.po | 170 +++++++++++++++++ l10n/hr/core.po | 30 +-- l10n/hr/files_sharing.po | 20 +- l10n/hr/settings.po | 44 ++++- l10n/hr/user_ldap.po | 14 +- l10n/hu_HU/core.po | 30 +-- l10n/hu_HU/files_sharing.po | 26 +-- l10n/hu_HU/settings.po | 42 ++++- l10n/hu_HU/user_ldap.po | 14 +- l10n/hy/core.po | 30 +-- l10n/hy/files_sharing.po | 20 +- l10n/hy/settings.po | 42 ++++- l10n/hy/user_ldap.po | 14 +- l10n/ia/core.po | 30 +-- l10n/ia/files_sharing.po | 20 +- l10n/ia/settings.po | 42 ++++- l10n/ia/user_ldap.po | 14 +- l10n/id/core.po | 65 +++---- l10n/id/files.po | 47 ++--- l10n/id/files_sharing.po | 20 +- l10n/id/settings.po | 59 ++++-- l10n/id/user_ldap.po | 14 +- l10n/id_ID/core.po | 30 +-- l10n/id_ID/files_sharing.po | 20 +- l10n/id_ID/settings.po | 42 ++++- l10n/id_ID/user_ldap.po | 14 +- l10n/it/core.po | 34 ++-- l10n/it/files_sharing.po | 24 +-- l10n/it/settings.po | 44 ++++- l10n/it/user_ldap.po | 14 +- l10n/ja_JP/core.po | 30 +-- l10n/ja_JP/files_sharing.po | 24 +-- l10n/ja_JP/settings.po | 44 ++++- l10n/ja_JP/user_ldap.po | 14 +- l10n/ko/core.po | 30 +-- l10n/ko/files_sharing.po | 20 +- l10n/ko/settings.po | 42 ++++- l10n/ko/user_ldap.po | 14 +- l10n/lb/core.po | 30 +-- l10n/lb/files_sharing.po | 20 +- l10n/lb/settings.po | 42 ++++- l10n/lb/user_ldap.po | 14 +- l10n/lt_LT/core.po | 30 +-- l10n/lt_LT/files_sharing.po | 24 +-- l10n/lt_LT/settings.po | 44 ++++- l10n/lt_LT/user_ldap.po | 14 +- l10n/lv/core.po | 30 +-- l10n/lv/files_sharing.po | 20 +- l10n/lv/settings.po | 52 +++++- l10n/lv/user_ldap.po | 14 +- l10n/mk/core.po | 30 +-- l10n/mk/files_sharing.po | 20 +- l10n/mk/settings.po | 42 ++++- l10n/mk/user_ldap.po | 14 +- l10n/ms_MY/core.po | 30 +-- l10n/ms_MY/files_sharing.po | 20 +- l10n/ms_MY/settings.po | 42 ++++- l10n/ms_MY/user_ldap.po | 14 +- l10n/nb_NO/core.po | 30 +-- l10n/nb_NO/files_sharing.po | 26 +-- l10n/nb_NO/settings.po | 44 ++++- l10n/nb_NO/user_ldap.po | 14 +- l10n/nl/core.po | 30 +-- l10n/nl/files_sharing.po | 26 +-- l10n/nl/settings.po | 44 ++++- l10n/nl/user_ldap.po | 14 +- l10n/nn_NO/core.po | 30 +-- l10n/nn_NO/files_sharing.po | 20 +- l10n/nn_NO/settings.po | 44 ++++- l10n/nn_NO/user_ldap.po | 14 +- l10n/pl/core.po | 30 +-- l10n/pl/files_sharing.po | 24 +-- l10n/pl/settings.po | 44 ++++- l10n/pl/user_ldap.po | 14 +- l10n/pt_BR/core.po | 30 +-- l10n/pt_BR/files_sharing.po | 20 +- l10n/pt_BR/files_versions.po | 11 +- l10n/pt_BR/settings.po | 44 ++++- l10n/pt_BR/user_ldap.po | 14 +- l10n/pt_PT/core.po | 30 +-- l10n/pt_PT/files_sharing.po | 20 +- l10n/pt_PT/settings.po | 44 ++++- l10n/pt_PT/user_ldap.po | 14 +- l10n/ro/core.po | 30 +-- l10n/ro/files_sharing.po | 20 +- l10n/ro/settings.po | 42 ++++- l10n/ro/user_ldap.po | 14 +- l10n/ru/core.po | 30 +-- l10n/ru/files_sharing.po | 26 +-- l10n/ru/settings.po | 44 ++++- l10n/ru/user_ldap.po | 34 ++-- l10n/sk_SK/core.po | 30 +-- l10n/sk_SK/files_sharing.po | 20 +- l10n/sk_SK/settings.po | 42 ++++- l10n/sk_SK/user_ldap.po | 14 +- l10n/sl/core.po | 30 +-- l10n/sl/files_sharing.po | 26 +-- l10n/sl/settings.po | 44 ++++- l10n/sl/user_ldap.po | 14 +- l10n/so/core.po | 30 +-- l10n/so/files_sharing.po | 20 +- l10n/so/settings.po | 42 ++++- l10n/so/user_ldap.po | 14 +- l10n/sr/core.po | 30 +-- l10n/sr/files_sharing.po | 20 +- l10n/sr/settings.po | 42 ++++- l10n/sr/user_ldap.po | 14 +- l10n/sr@latin/core.po | 30 +-- l10n/sr@latin/files_sharing.po | 20 +- l10n/sr@latin/settings.po | 42 ++++- l10n/sr@latin/user_ldap.po | 14 +- l10n/sv/core.po | 30 +-- l10n/sv/files_sharing.po | 24 +-- l10n/sv/settings.po | 44 ++++- l10n/sv/user_ldap.po | 14 +- l10n/templates/core.pot | 28 +-- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 18 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 40 +++- l10n/templates/user_ldap.pot | 9 +- l10n/th_TH/core.po | 30 +-- l10n/th_TH/files_sharing.po | 24 +-- l10n/th_TH/settings.po | 44 ++++- l10n/th_TH/user_ldap.po | 14 +- l10n/tr/core.po | 30 +-- l10n/tr/files_sharing.po | 20 +- l10n/tr/settings.po | 42 ++++- l10n/tr/user_ldap.po | 14 +- l10n/uk/core.po | 30 +-- l10n/uk/files_sharing.po | 20 +- l10n/uk/settings.po | 42 ++++- l10n/uk/user_ldap.po | 14 +- l10n/vi/core.po | 30 +-- l10n/vi/files_sharing.po | 20 +- l10n/vi/settings.po | 42 ++++- l10n/vi/user_ldap.po | 14 +- l10n/zh_CN.GB2312/core.po | 30 +-- l10n/zh_CN.GB2312/files_sharing.po | 20 +- l10n/zh_CN.GB2312/settings.po | 42 ++++- l10n/zh_CN.GB2312/user_ldap.po | 14 +- l10n/zh_CN/core.po | 30 +-- l10n/zh_CN/files_sharing.po | 20 +- l10n/zh_CN/settings.po | 44 ++++- l10n/zh_CN/user_ldap.po | 14 +- l10n/zh_TW/core.po | 30 +-- l10n/zh_TW/files_sharing.po | 20 +- l10n/zh_TW/settings.po | 44 ++++- l10n/zh_TW/user_ldap.po | 14 +- settings/l10n/id.php | 8 + settings/l10n/lv.php | 5 + 253 files changed, 5434 insertions(+), 2207 deletions(-) create mode 100644 apps/files_versions/l10n/pt_BR.php create mode 100644 apps/user_ldap/l10n/et_EE.php create mode 100644 apps/user_ldap/l10n/fa.php create mode 100644 core/l10n/hi.php create mode 100644 l10n/hi/core.po create mode 100644 l10n/hi/files.po create mode 100644 l10n/hi/files_encryption.po create mode 100644 l10n/hi/files_external.po create mode 100644 l10n/hi/files_sharing.po create mode 100644 l10n/hi/files_versions.po create mode 100644 l10n/hi/lib.po create mode 100644 l10n/hi/settings.po create mode 100644 l10n/hi/user_ldap.po diff --git a/apps/files/l10n/id.php b/apps/files/l10n/id.php index 47ce6429c9f..399056bf278 100644 --- a/apps/files/l10n/id.php +++ b/apps/files/l10n/id.php @@ -1,13 +1,32 @@ "Tidak ada galat, berkas sukses diunggah", +"The uploaded file exceeds the upload_max_filesize directive in php.ini" => "File yang diunggah melampaui directive upload_max_filesize di php.ini", +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "File yang diunggah melampaui directive MAX_FILE_SIZE yang disebutan dalam form HTML.", "The uploaded file was only partially uploaded" => "Berkas hanya diunggah sebagian", "No file was uploaded" => "Tidak ada berkas yang diunggah", "Missing a temporary folder" => "Kehilangan folder temporer", "Failed to write to disk" => "Gagal menulis ke disk", "Files" => "Berkas", "Delete" => "Hapus", +"already exists" => "sudah ada", +"replace" => "mengganti", +"cancel" => "batalkan", +"replaced" => "diganti", +"with" => "dengan", +"undo" => "batal dikerjakan", +"deleted" => "dihapus", +"generating ZIP-file, it may take some time." => "membuat berkas ZIP, ini mungkin memakan waktu.", +"Unable to upload your file as it is a directory or has 0 bytes" => "Gagal mengunggah berkas anda karena berupa direktori atau mempunyai ukuran 0 byte", +"Upload Error" => "Terjadi Galat Pengunggahan", +"Pending" => "Menunggu", +"Upload cancelled." => "Pengunggahan dibatalkan.", +"Invalid name, '/' is not allowed." => "Kesalahan nama, '/' tidak diijinkan.", "Size" => "Ukuran", "Modified" => "Dimodifikasi", +"folder" => "folder", +"folders" => "folder-folder", +"file" => "berkas", +"files" => "berkas-berkas", "File handling" => "Penanganan berkas", "Maximum upload size" => "Ukuran unggah maksimum", "max. possible: " => "Kemungkinan maks:", diff --git a/apps/files_external/l10n/cs_CZ.php b/apps/files_external/l10n/cs_CZ.php index 8f11d7da119..e8a38d86619 100644 --- a/apps/files_external/l10n/cs_CZ.php +++ b/apps/files_external/l10n/cs_CZ.php @@ -1,13 +1,18 @@ "Externí úložiště", "Mount point" => "Přípojný bod", +"Backend" => "Končící", "Configuration" => "Konfigurace", "Options" => "Nastavení", +"Applicable" => "Platný", "Add mount point" => "Přidat přípojný bod", +"None set" => "Nenastaveno", "All Users" => "Všichni uživatelé", "Groups" => "Skupiny", "Users" => "Uživatelé", "Delete" => "Smazat", +"SSL root certificates" => "Kořenové SSL certifikáty", +"Import Root Certificate" => "Import kořenového certifikátu", "Enable User External Storage" => "Zapnout uživatelské externí úložiště", "Allow users to mount their own external storage" => "Povolit uživatelů připojit jejich vlastní externí úložiště" ); diff --git a/apps/files_versions/l10n/pt_BR.php b/apps/files_versions/l10n/pt_BR.php new file mode 100644 index 00000000000..a90b48fe3a3 --- /dev/null +++ b/apps/files_versions/l10n/pt_BR.php @@ -0,0 +1,4 @@ + "Expirar todas as versões", +"Enable Files Versioning" => "Habilitar versionamento de arquivos" +); diff --git a/apps/user_ldap/l10n/et_EE.php b/apps/user_ldap/l10n/et_EE.php new file mode 100644 index 00000000000..d62e1212dc7 --- /dev/null +++ b/apps/user_ldap/l10n/et_EE.php @@ -0,0 +1,9 @@ + "Host", +"Password" => "Parool", +"Group Filter" => "Grupi filter", +"Port" => "Port", +"Use TLS" => "Kasutaja TLS", +"in bytes" => "baitides", +"Help" => "Abiinfo" +); diff --git a/apps/user_ldap/l10n/fa.php b/apps/user_ldap/l10n/fa.php new file mode 100644 index 00000000000..44324221168 --- /dev/null +++ b/apps/user_ldap/l10n/fa.php @@ -0,0 +1,5 @@ + "میزبانی", +"Password" => "رمز عبور", +"Help" => "راه‌نما" +); diff --git a/apps/user_ldap/l10n/fr.php b/apps/user_ldap/l10n/fr.php index 64edf3b4680..0754aa01de8 100644 --- a/apps/user_ldap/l10n/fr.php +++ b/apps/user_ldap/l10n/fr.php @@ -1,14 +1,14 @@ "Hôte", "You can omit the protocol, except you require SSL. Then start with ldaps://" => "Vous pouvez omettre le protocole, sauf si vous avez besoin de SSL. Dans ce cas préfixez avec ldaps://", -"Base DN" => "DN de base", -"You can specify Base DN for users and groups in the Advanced tab" => "Vous pouvez spécifier le DN de base pour les utilisateurs et les groupes dans l'onglet Avancé", -"User DN" => "DN Utilisateur", +"Base DN" => "DN Racine", +"You can specify Base DN for users and groups in the Advanced tab" => "Vous pouvez détailler les DN Racines de vos utilisateurs et groupes dans l'onglet Avancé", +"User DN" => "DN Utilisateur (Autorisé à consulter l'annuaire)", "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." => "Le DN de l'utilisateur client avec lequel la liaison doit se faire, par exemple uid=agent,dc=example,dc=com. Pour l'accès anonyme, laisser le DN et le mot de passe vides.", "Password" => "Mot de passe", -"For anonymous access, leave DN and Password empty." => "Pour l'accès anonyme, laisser le DN et le mot de passe vides.", -"User Login Filter" => "Filtre d'identifiants utilisateur", -"Defines the filter to apply, when login is attempted. %%uid replaces the username in the login action." => "Définit le filtre à appliquer lors d'une tentative de connexion. %%uid remplace le nom d'utilisateur lors de la connexion.", +"For anonymous access, leave DN and Password empty." => "Pour un accès anonyme, laisser le DN Utilisateur et le mot de passe vides.", +"User Login Filter" => "Modèle d'authentification utilisateurs", +"Defines the filter to apply, when login is attempted. %%uid replaces the username in the login action." => "Définit le motif à appliquer, lors d'une tentative de connexion. %%uid est remplacé par le nom d'utilisateur lors de la connexion.", "use %%uid placeholder, e.g. \"uid=%%uid\"" => "veuillez utiliser le champ %%uid , ex.: \"uid=%%uid\"", "User List Filter" => "Filtre d'utilisateurs", "Defines the filter to apply, when retrieving users." => "Définit le filtre à appliquer lors de la récupération des utilisateurs.", @@ -17,15 +17,19 @@ "Defines the filter to apply, when retrieving groups." => "Définit le filtre à appliquer lors de la récupération des groupes.", "without any placeholder, e.g. \"objectClass=posixGroup\"." => "sans élément de substitution, par exemple \"objectClass=posixGroup\".", "Port" => "Port", +"Base User Tree" => "DN racine de l'arbre utilisateurs", +"Base Group Tree" => "DN racine de l'arbre groupes", "Group-Member association" => "Association groupe-membre", "Use TLS" => "Utiliser TLS", "Do not use it for SSL connections, it will fail." => "Ne pas utiliser pour les connexions SSL, car cela échouera.", "Case insensitve LDAP server (Windows)" => "Serveur LDAP insensible à la casse (Windows)", -"Turn off SSL certificate validation." => "Désactiver la validation du certificat SSL", +"Turn off SSL certificate validation." => "Désactiver la validation du certificat SSL.", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Si la connexion ne fonctionne qu'avec cette option, importez le certificat SSL du serveur LDAP dans le serveur ownCloud.", -"Not recommended, use for testing only." => "Non recommendé, utilisation pour tests uniquement.", -"The LDAP attribute to use to generate the user`s ownCloud name." => "L'attribut LDAP utilisé pour générer les noms d'utilisateurs d'ownCloud", -"The LDAP attribute to use to generate the groups`s ownCloud name." => "L'attribut LDAP utilisé pour générer les noms de groupes d'ownCloud", +"Not recommended, use for testing only." => "Non recommandé, utilisation pour tests uniquement.", +"User Display Name Field" => "Champ \"nom d'affichage\" de l'utilisateur", +"The LDAP attribute to use to generate the user`s ownCloud name." => "L'attribut LDAP utilisé pour générer les noms d'utilisateurs d'ownCloud.", +"Group Display Name Field" => "Champ \"nom d'affichage\" du groupe", +"The LDAP attribute to use to generate the groups`s ownCloud name." => "L'attribut LDAP utilisé pour générer les noms de groupes d'ownCloud.", "in bytes" => "en octets", "in seconds. A change empties the cache." => "en secondes. Tout changement vide le cache.", "Help" => "Aide" diff --git a/apps/user_ldap/l10n/ru.php b/apps/user_ldap/l10n/ru.php index fc89d998065..65ef8f47f42 100644 --- a/apps/user_ldap/l10n/ru.php +++ b/apps/user_ldap/l10n/ru.php @@ -15,11 +15,21 @@ "without any placeholder, e.g. \"objectClass=person\"." => "без заполнителя, например: \"objectClass=person\".", "Group Filter" => "Фильтр группы", "Defines the filter to apply, when retrieving groups." => "Определяет фильтр для применения при получении группы.", +"without any placeholder, e.g. \"objectClass=posixGroup\"." => "без заполнения, например \"objectClass=posixGroup\".", "Port" => "Порт", +"Base User Tree" => "База пользовательского дерева", +"Base Group Tree" => "База группового дерева", +"Group-Member association" => "Ассоциация Группа-Участник", "Use TLS" => "Использовать TLS", "Do not use it for SSL connections, it will fail." => "Не используйте для соединений SSL", +"Case insensitve LDAP server (Windows)" => "Нечувствительный к регистру сервер LDAP (Windows)", "Turn off SSL certificate validation." => "Отключить проверку сертификата SSL.", +"If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Если соединение работает только с этой опцией, импортируйте на ваш сервер ownCloud сертификат SSL сервера LDAP.", "Not recommended, use for testing only." => "Не рекомендуется, используйте только для тестирования.", +"User Display Name Field" => "Поле отображаемого имени пользователя", +"The LDAP attribute to use to generate the user`s ownCloud name." => "Атрибут LDAP для генерации имени пользователя ownCloud.", +"Group Display Name Field" => "Поле отображаемого имени группы", +"The LDAP attribute to use to generate the groups`s ownCloud name." => "Атрибут LDAP для генерации имени группы ownCloud.", "in bytes" => "в байтах", "in seconds. A change empties the cache." => "в секундах. Изменение очистит кэш.", "Help" => "Помощь" diff --git a/core/l10n/hi.php b/core/l10n/hi.php new file mode 100644 index 00000000000..cc9cbdb22f3 --- /dev/null +++ b/core/l10n/hi.php @@ -0,0 +1,14 @@ + "प्रयोक्ता का नाम", +"Cloud not found" => "क्लौड नहीं मिला ", +"Create an admin account" => "व्यवस्थापक खाता बनाएँ", +"Password" => "पासवर्ड", +"Advanced" => "उन्नत", +"Configure the database" => "डेटाबेस कॉन्फ़िगर करें ", +"Database user" => "डेटाबेस उपयोगकर्ता", +"Database password" => "डेटाबेस पासवर्ड", +"Finish setup" => "सेटअप समाप्त करे", +"You are logged out." => "आप लोग आउट कर दिए गए हैं.", +"prev" => "पिछला", +"next" => "अगला" +); diff --git a/core/l10n/id.php b/core/l10n/id.php index 296e2d62a4a..47758f8861b 100644 --- a/core/l10n/id.php +++ b/core/l10n/id.php @@ -3,6 +3,23 @@ "No category to add?" => "Tidak ada kategori yang akan ditambahkan?", "This category already exists: " => "Kategori ini sudah ada:", "Settings" => "Setelan", +"January" => "Januari", +"February" => "Februari", +"March" => "Maret", +"April" => "April", +"May" => "Mei", +"June" => "Juni", +"July" => "Juli", +"August" => "Agustus", +"September" => "September", +"October" => "Oktober", +"November" => "Nopember", +"December" => "Desember", +"Cancel" => "Batalkan", +"No" => "Tidak", +"Yes" => "Ya", +"Ok" => "Oke", +"No categories selected for deletion." => "Tidak ada kategori terpilih untuk penghapusan.", "ownCloud password reset" => "reset password ownCloud", "Use the following link to reset your password: {link}" => "Gunakan tautan berikut untuk mereset password anda: {link}", "You will receive a link to reset your password via Email." => "Anda akan mendapatkan link untuk mereset password anda lewat Email.", diff --git a/core/l10n/it.php b/core/l10n/it.php index 1c0bf94ca71..ca80770a3c5 100644 --- a/core/l10n/it.php +++ b/core/l10n/it.php @@ -39,7 +39,7 @@ "Admin" => "Admin", "Help" => "Aiuto", "Access forbidden" => "Accesso negato", -"Cloud not found" => "Cloud non trovata", +"Cloud not found" => "Nuvola non trovata", "Edit categories" => "Modifica le categorie", "Add" => "Aggiungi", "Create an admin account" => "Crea un account amministratore", @@ -47,7 +47,7 @@ "Advanced" => "Avanzate", "Data folder" => "Cartella dati", "Configure the database" => "Configura il database", -"will be used" => "sarà usato", +"will be used" => "sarà utilizzato", "Database user" => "Utente del database", "Database password" => "Password del database", "Database name" => "Nome del database", diff --git a/l10n/af/core.po b/l10n/af/core.po index 001cac78bcc..1a1940f9e91 100644 --- a/l10n/af/core.po +++ b/l10n/af/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-28 02:01+0200\n" -"PO-Revision-Date: 2012-08-28 00:02+0000\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (http://www.transifex.com/projects/p/owncloud/language/af/)\n" "MIME-Version: 1.0\n" @@ -33,55 +33,55 @@ msgstr "" msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "" -#: js/js.js:190 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 msgid "Settings" msgstr "" -#: js/js.js:575 +#: js/js.js:586 msgid "January" msgstr "" -#: js/js.js:575 +#: js/js.js:586 msgid "February" msgstr "" -#: js/js.js:575 +#: js/js.js:586 msgid "March" msgstr "" -#: js/js.js:575 +#: js/js.js:586 msgid "April" msgstr "" -#: js/js.js:575 +#: js/js.js:586 msgid "May" msgstr "" -#: js/js.js:575 +#: js/js.js:586 msgid "June" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "July" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "August" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "September" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "October" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "November" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "December" msgstr "" diff --git a/l10n/af/files_sharing.po b/l10n/af/files_sharing.po index 7ca711a2521..b45ee8f65a5 100644 --- a/l10n/af/files_sharing.po +++ b/l10n/af/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: 2012-08-23 02:03+0200\n" -"PO-Revision-Date: 2012-08-23 00:04+0000\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (http://www.transifex.com/projects/p/owncloud/language/af/)\n" "MIME-Version: 1.0\n" @@ -17,18 +17,10 @@ msgstr "" "Language: af\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: templates/get.php:4 -msgid "Size" +#: templates/authenticate.php:4 +msgid "Password" msgstr "" -#: templates/get.php:5 -msgid "Modified" -msgstr "" - -#: templates/get.php:5 -msgid "Delete all" -msgstr "" - -#: templates/get.php:5 -msgid "Delete" +#: templates/authenticate.php:6 +msgid "Submit" msgstr "" diff --git a/l10n/af/settings.po b/l10n/af/settings.po index 1d213427bcb..da858b04af9 100644 --- a/l10n/af/settings.po +++ b/l10n/af/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-18 02:01+0200\n" -"PO-Revision-Date: 2012-08-18 00:02+0000\n" +"POT-Creation-Date: 2012-08-29 02:02+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (http://www.transifex.com/projects/p/owncloud/language/af/)\n" "MIME-Version: 1.0\n" @@ -86,10 +86,46 @@ msgid "use systems cron service" msgstr "" #: templates/admin.php:39 -msgid "Log" +msgid "Share API" +msgstr "" + +#: templates/admin.php:44 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:45 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:49 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:50 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:54 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:55 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:58 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:60 +msgid "Allow users to only share with users in their groups" msgstr "" #: templates/admin.php:67 +msgid "Log" +msgstr "" + +#: templates/admin.php:95 msgid "More" msgstr "" diff --git a/l10n/af/user_ldap.po b/l10n/af/user_ldap.po index 7abe79a5a8a..37f2c1ae38c 100644 --- a/l10n/af/user_ldap.po +++ b/l10n/af/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Afrikaans (http://www.transifex.com/projects/p/owncloud/language/af/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -159,6 +159,12 @@ msgstr "" msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:31 +#: templates/settings.php:30 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:32 msgid "Help" msgstr "" diff --git a/l10n/ar/core.po b/l10n/ar/core.po index 0ec803f64e6..4c37f9bfd9e 100644 --- a/l10n/ar/core.po +++ b/l10n/ar/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-28 02:01+0200\n" -"PO-Revision-Date: 2012-08-28 00:02+0000\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -34,55 +34,55 @@ msgstr "" msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "" -#: js/js.js:190 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 msgid "Settings" msgstr "تعديلات" -#: js/js.js:575 +#: js/js.js:586 msgid "January" msgstr "" -#: js/js.js:575 +#: js/js.js:586 msgid "February" msgstr "" -#: js/js.js:575 +#: js/js.js:586 msgid "March" msgstr "" -#: js/js.js:575 +#: js/js.js:586 msgid "April" msgstr "" -#: js/js.js:575 +#: js/js.js:586 msgid "May" msgstr "" -#: js/js.js:575 +#: js/js.js:586 msgid "June" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "July" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "August" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "September" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "October" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "November" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "December" msgstr "" diff --git a/l10n/ar/files_sharing.po b/l10n/ar/files_sharing.po index f3922ed92a3..c4b91a2774f 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: 2012-08-23 02:03+0200\n" -"PO-Revision-Date: 2012-08-23 00:04+0000\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -17,18 +17,10 @@ msgstr "" "Language: ar\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5\n" -#: templates/get.php:4 -msgid "Size" +#: templates/authenticate.php:4 +msgid "Password" msgstr "" -#: templates/get.php:5 -msgid "Modified" -msgstr "" - -#: templates/get.php:5 -msgid "Delete all" -msgstr "" - -#: templates/get.php:5 -msgid "Delete" +#: templates/authenticate.php:6 +msgid "Submit" msgstr "" diff --git a/l10n/ar/settings.po b/l10n/ar/settings.po index 0f13d4ebb2a..8c023417556 100644 --- a/l10n/ar/settings.po +++ b/l10n/ar/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-18 02:01+0200\n" -"PO-Revision-Date: 2012-08-18 00:02+0000\n" +"POT-Creation-Date: 2012-08-29 02:02+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+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" @@ -88,10 +88,46 @@ msgid "use systems cron service" msgstr "" #: templates/admin.php:39 -msgid "Log" +msgid "Share API" +msgstr "" + +#: templates/admin.php:44 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:45 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:49 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:50 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:54 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:55 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:58 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:60 +msgid "Allow users to only share with users in their groups" msgstr "" #: templates/admin.php:67 +msgid "Log" +msgstr "" + +#: templates/admin.php:95 msgid "More" msgstr "" diff --git a/l10n/ar/user_ldap.po b/l10n/ar/user_ldap.po index fc345689568..51ea5c8216f 100644 --- a/l10n/ar/user_ldap.po +++ b/l10n/ar/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" +"Last-Translator: I Robot \n" "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" @@ -159,6 +159,12 @@ msgstr "" msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:31 +#: templates/settings.php:30 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:32 msgid "Help" msgstr "" diff --git a/l10n/ar_SA/core.po b/l10n/ar_SA/core.po index 5878f907926..af7cb8d90c9 100644 --- a/l10n/ar_SA/core.po +++ b/l10n/ar_SA/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-28 02:01+0200\n" -"PO-Revision-Date: 2012-08-28 00:02+0000\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (Saudi Arabia) (http://www.transifex.com/projects/p/owncloud/language/ar_SA/)\n" "MIME-Version: 1.0\n" @@ -33,55 +33,55 @@ msgstr "" msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "" -#: js/js.js:190 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 msgid "Settings" msgstr "" -#: js/js.js:575 +#: js/js.js:586 msgid "January" msgstr "" -#: js/js.js:575 +#: js/js.js:586 msgid "February" msgstr "" -#: js/js.js:575 +#: js/js.js:586 msgid "March" msgstr "" -#: js/js.js:575 +#: js/js.js:586 msgid "April" msgstr "" -#: js/js.js:575 +#: js/js.js:586 msgid "May" msgstr "" -#: js/js.js:575 +#: js/js.js:586 msgid "June" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "July" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "August" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "September" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "October" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "November" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "December" msgstr "" diff --git a/l10n/ar_SA/files_sharing.po b/l10n/ar_SA/files_sharing.po index c2408734072..b459097ebc3 100644 --- a/l10n/ar_SA/files_sharing.po +++ b/l10n/ar_SA/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: 2012-08-23 02:03+0200\n" -"PO-Revision-Date: 2012-08-23 00:04+0000\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (Saudi Arabia) (http://www.transifex.com/projects/p/owncloud/language/ar_SA/)\n" "MIME-Version: 1.0\n" @@ -17,18 +17,10 @@ msgstr "" "Language: ar_SA\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: templates/get.php:4 -msgid "Size" +#: templates/authenticate.php:4 +msgid "Password" msgstr "" -#: templates/get.php:5 -msgid "Modified" -msgstr "" - -#: templates/get.php:5 -msgid "Delete all" -msgstr "" - -#: templates/get.php:5 -msgid "Delete" +#: templates/authenticate.php:6 +msgid "Submit" msgstr "" diff --git a/l10n/ar_SA/settings.po b/l10n/ar_SA/settings.po index 803e9d5953d..065806d42bb 100644 --- a/l10n/ar_SA/settings.po +++ b/l10n/ar_SA/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-18 02:01+0200\n" -"PO-Revision-Date: 2012-08-18 00:02+0000\n" +"POT-Creation-Date: 2012-08-29 02:02+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (Saudi Arabia) (http://www.transifex.com/projects/p/owncloud/language/ar_SA/)\n" "MIME-Version: 1.0\n" @@ -86,10 +86,46 @@ msgid "use systems cron service" msgstr "" #: templates/admin.php:39 -msgid "Log" +msgid "Share API" +msgstr "" + +#: templates/admin.php:44 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:45 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:49 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:50 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:54 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:55 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:58 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:60 +msgid "Allow users to only share with users in their groups" msgstr "" #: templates/admin.php:67 +msgid "Log" +msgstr "" + +#: templates/admin.php:95 msgid "More" msgstr "" diff --git a/l10n/ar_SA/user_ldap.po b/l10n/ar_SA/user_ldap.po index 92a90a4f3b0..2345855a173 100644 --- a/l10n/ar_SA/user_ldap.po +++ b/l10n/ar_SA/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Arabic (Saudi Arabia) (http://www.transifex.com/projects/p/owncloud/language/ar_SA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -159,6 +159,12 @@ msgstr "" msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:31 +#: templates/settings.php:30 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:32 msgid "Help" msgstr "" diff --git a/l10n/bg_BG/core.po b/l10n/bg_BG/core.po index 02fa44cb786..a4caad873f9 100644 --- a/l10n/bg_BG/core.po +++ b/l10n/bg_BG/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-28 02:01+0200\n" -"PO-Revision-Date: 2012-08-28 00:01+0000\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -37,55 +37,55 @@ msgstr "Категорията вече съществува:" msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "" -#: js/js.js:190 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 msgid "Settings" msgstr "Настройки" -#: js/js.js:575 +#: js/js.js:586 msgid "January" msgstr "Януари" -#: js/js.js:575 +#: js/js.js:586 msgid "February" msgstr "Февруари" -#: js/js.js:575 +#: js/js.js:586 msgid "March" msgstr "Март" -#: js/js.js:575 +#: js/js.js:586 msgid "April" msgstr "Април" -#: js/js.js:575 +#: js/js.js:586 msgid "May" msgstr "Май" -#: js/js.js:575 +#: js/js.js:586 msgid "June" msgstr "Юни" -#: js/js.js:576 +#: js/js.js:587 msgid "July" msgstr "Юли" -#: js/js.js:576 +#: js/js.js:587 msgid "August" msgstr "Август" -#: js/js.js:576 +#: js/js.js:587 msgid "September" msgstr "Септември" -#: js/js.js:576 +#: js/js.js:587 msgid "October" msgstr "Октомври" -#: js/js.js:576 +#: js/js.js:587 msgid "November" msgstr "Ноември" -#: js/js.js:576 +#: js/js.js:587 msgid "December" msgstr "Декември" diff --git a/l10n/bg_BG/files_sharing.po b/l10n/bg_BG/files_sharing.po index f03989ba48d..d1afae484ca 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: 2012-08-23 02:03+0200\n" -"PO-Revision-Date: 2012-08-23 00:04+0000\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -17,18 +17,10 @@ msgstr "" "Language: bg_BG\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: templates/get.php:4 -msgid "Size" +#: templates/authenticate.php:4 +msgid "Password" msgstr "" -#: templates/get.php:5 -msgid "Modified" -msgstr "" - -#: templates/get.php:5 -msgid "Delete all" -msgstr "" - -#: templates/get.php:5 -msgid "Delete" +#: templates/authenticate.php:6 +msgid "Submit" msgstr "" diff --git a/l10n/bg_BG/settings.po b/l10n/bg_BG/settings.po index e7697bb27ee..c1d39344f7f 100644 --- a/l10n/bg_BG/settings.po +++ b/l10n/bg_BG/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-18 02:01+0200\n" -"PO-Revision-Date: 2012-08-18 00:02+0000\n" +"POT-Creation-Date: 2012-08-29 02:02+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -89,10 +89,46 @@ msgid "use systems cron service" msgstr "" #: templates/admin.php:39 -msgid "Log" +msgid "Share API" +msgstr "" + +#: templates/admin.php:44 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:45 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:49 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:50 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:54 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:55 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:58 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:60 +msgid "Allow users to only share with users in their groups" msgstr "" #: templates/admin.php:67 +msgid "Log" +msgstr "" + +#: templates/admin.php:95 msgid "More" msgstr "" diff --git a/l10n/bg_BG/user_ldap.po b/l10n/bg_BG/user_ldap.po index 8b8f5723ced..23f9ad3829b 100644 --- a/l10n/bg_BG/user_ldap.po +++ b/l10n/bg_BG/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -159,6 +159,12 @@ msgstr "" msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:31 +#: templates/settings.php:30 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:32 msgid "Help" msgstr "" diff --git a/l10n/ca/core.po b/l10n/ca/core.po index e8b808d6af7..ce3b9f19f2f 100644 --- a/l10n/ca/core.po +++ b/l10n/ca/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-28 02:01+0200\n" -"PO-Revision-Date: 2012-08-28 00:02+0000\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:02+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" @@ -35,55 +35,55 @@ msgstr "Aquesta categoria ja existeix:" msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -#: js/js.js:190 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 msgid "Settings" msgstr "Arranjament" -#: js/js.js:575 +#: js/js.js:586 msgid "January" msgstr "Gener" -#: js/js.js:575 +#: js/js.js:586 msgid "February" msgstr "Febrer" -#: js/js.js:575 +#: js/js.js:586 msgid "March" msgstr "Març" -#: js/js.js:575 +#: js/js.js:586 msgid "April" msgstr "Abril" -#: js/js.js:575 +#: js/js.js:586 msgid "May" msgstr "Maig" -#: js/js.js:575 +#: js/js.js:586 msgid "June" msgstr "Juny" -#: js/js.js:576 +#: js/js.js:587 msgid "July" msgstr "Juliol" -#: js/js.js:576 +#: js/js.js:587 msgid "August" msgstr "Agost" -#: js/js.js:576 +#: js/js.js:587 msgid "September" msgstr "Setembre" -#: js/js.js:576 +#: js/js.js:587 msgid "October" msgstr "Octubre" -#: js/js.js:576 +#: js/js.js:587 msgid "November" msgstr "Novembre" -#: js/js.js:576 +#: js/js.js:587 msgid "December" msgstr "Desembre" diff --git a/l10n/ca/files_sharing.po b/l10n/ca/files_sharing.po index bc5fa18cf29..9edec9f6b59 100644 --- a/l10n/ca/files_sharing.po +++ b/l10n/ca/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-23 02:03+0200\n" -"PO-Revision-Date: 2012-08-23 00:04+0000\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -18,18 +18,10 @@ msgstr "" "Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: templates/get.php:4 -msgid "Size" -msgstr "Mida" +#: templates/authenticate.php:4 +msgid "Password" +msgstr "" -#: templates/get.php:5 -msgid "Modified" -msgstr "Modificat" - -#: templates/get.php:5 -msgid "Delete all" -msgstr "Esborra-ho tot" - -#: templates/get.php:5 -msgid "Delete" -msgstr "Elimina" +#: templates/authenticate.php:6 +msgid "Submit" +msgstr "" diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index dfacbada2c8..3b453b4c423 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: 2012-08-21 02:03+0200\n" -"PO-Revision-Date: 2012-08-20 07:27+0000\n" -"Last-Translator: rogerc \n" +"POT-Creation-Date: 2012-08-29 02:02+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+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" @@ -88,10 +88,46 @@ msgid "use systems cron service" msgstr "usa el servei cron del sistema" #: templates/admin.php:39 +msgid "Share API" +msgstr "" + +#: templates/admin.php:44 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:45 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:49 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:50 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:54 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:55 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:58 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:60 +msgid "Allow users to only share with users in their groups" +msgstr "" + +#: templates/admin.php:67 msgid "Log" msgstr "Registre" -#: templates/admin.php:67 +#: templates/admin.php:95 msgid "More" msgstr "Més" diff --git a/l10n/ca/user_ldap.po b/l10n/ca/user_ldap.po index 9261cd06e5b..82824c9ad3b 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-13 18:54+0000\n" -"Last-Translator: rogerc \n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" +"Last-Translator: I Robot \n" "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" @@ -160,6 +160,12 @@ msgstr "en bytes" msgid "in seconds. A change empties the cache." msgstr "en segons. Un canvi buidarà la memòria de cau." -#: templates/settings.php:31 +#: templates/settings.php:30 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:32 msgid "Help" msgstr "Ajuda" diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po index 84cea7fb08d..6b09c237119 100644 --- a/l10n/cs_CZ/core.po +++ b/l10n/cs_CZ/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-28 02:01+0200\n" -"PO-Revision-Date: 2012-08-28 00:02+0000\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:02+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" @@ -36,55 +36,55 @@ msgstr "Tato kategorie již existuje:" msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -#: js/js.js:190 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 msgid "Settings" msgstr "Nastavení" -#: js/js.js:575 +#: js/js.js:586 msgid "January" msgstr "Leden" -#: js/js.js:575 +#: js/js.js:586 msgid "February" msgstr "Únor" -#: js/js.js:575 +#: js/js.js:586 msgid "March" msgstr "Březen" -#: js/js.js:575 +#: js/js.js:586 msgid "April" msgstr "Duben" -#: js/js.js:575 +#: js/js.js:586 msgid "May" msgstr "Květen" -#: js/js.js:575 +#: js/js.js:586 msgid "June" msgstr "Červen" -#: js/js.js:576 +#: js/js.js:587 msgid "July" msgstr "Červenec" -#: js/js.js:576 +#: js/js.js:587 msgid "August" msgstr "Srpen" -#: js/js.js:576 +#: js/js.js:587 msgid "September" msgstr "Září" -#: js/js.js:576 +#: js/js.js:587 msgid "October" msgstr "Říjen" -#: js/js.js:576 +#: js/js.js:587 msgid "November" msgstr "Listopad" -#: js/js.js:576 +#: js/js.js:587 msgid "December" msgstr "Prosinec" diff --git a/l10n/cs_CZ/files_external.po b/l10n/cs_CZ/files_external.po index 1c175fb4db6..8c21e144831 100644 --- a/l10n/cs_CZ/files_external.po +++ b/l10n/cs_CZ/files_external.po @@ -4,14 +4,15 @@ # # Translators: # Jan Krejci , 2012. +# Martin , 2012. # Michal Hrušecký , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-23 23:53+0000\n" -"Last-Translator: Jan Krejci \n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-28 19:11+0000\n" +"Last-Translator: Martin \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,7 +30,7 @@ msgstr "Přípojný bod" #: templates/settings.php:8 msgid "Backend" -msgstr "" +msgstr "Končící" #: templates/settings.php:9 msgid "Configuration" @@ -41,7 +42,7 @@ msgstr "Nastavení" #: templates/settings.php:11 msgid "Applicable" -msgstr "" +msgstr "Platný" #: templates/settings.php:23 msgid "Add mount point" @@ -49,7 +50,7 @@ msgstr "Přidat přípojný bod" #: templates/settings.php:54 templates/settings.php:62 msgid "None set" -msgstr "" +msgstr "Nenastaveno" #: templates/settings.php:63 msgid "All Users" @@ -69,11 +70,11 @@ msgstr "Smazat" #: templates/settings.php:88 msgid "SSL root certificates" -msgstr "" +msgstr "Kořenové SSL certifikáty" #: templates/settings.php:102 msgid "Import Root Certificate" -msgstr "" +msgstr "Import kořenového certifikátu" #: templates/settings.php:108 msgid "Enable User External Storage" diff --git a/l10n/cs_CZ/files_sharing.po b/l10n/cs_CZ/files_sharing.po index 232114a8e63..0d2d55dcc93 100644 --- a/l10n/cs_CZ/files_sharing.po +++ b/l10n/cs_CZ/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: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-23 19:58+0000\n" -"Last-Translator: Michal Hrušecký \n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" +"Last-Translator: I Robot \n" "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,18 +19,10 @@ msgstr "" "Language: cs_CZ\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" -#: templates/get.php:4 -msgid "Size" -msgstr "Velikost" +#: templates/authenticate.php:4 +msgid "Password" +msgstr "" -#: templates/get.php:5 -msgid "Modified" -msgstr "Upraveno" - -#: templates/get.php:5 -msgid "Delete all" -msgstr "Smazat vše" - -#: templates/get.php:5 -msgid "Delete" -msgstr "Smazat" +#: templates/authenticate.php:6 +msgid "Submit" +msgstr "" diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po index 64ed6cf9551..56df4dcffee 100644 --- a/l10n/cs_CZ/settings.po +++ b/l10n/cs_CZ/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-18 02:01+0200\n" -"PO-Revision-Date: 2012-08-18 00:02+0000\n" +"POT-Creation-Date: 2012-08-29 02:02+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+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" @@ -91,10 +91,46 @@ msgid "use systems cron service" msgstr "použijte systémovou službu cron" #: templates/admin.php:39 +msgid "Share API" +msgstr "" + +#: templates/admin.php:44 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:45 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:49 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:50 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:54 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:55 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:58 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:60 +msgid "Allow users to only share with users in their groups" +msgstr "" + +#: templates/admin.php:67 msgid "Log" msgstr "Log" -#: templates/admin.php:67 +#: templates/admin.php:95 msgid "More" msgstr "Více" diff --git a/l10n/cs_CZ/user_ldap.po b/l10n/cs_CZ/user_ldap.po index 25f623c83bd..9f1f90c4d44 100644 --- a/l10n/cs_CZ/user_ldap.po +++ b/l10n/cs_CZ/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: 2012-08-18 02:01+0200\n" -"PO-Revision-Date: 2012-08-17 16:01+0000\n" -"Last-Translator: Martin \n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" +"Last-Translator: I Robot \n" "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" @@ -160,6 +160,12 @@ msgstr "v bytech" msgid "in seconds. A change empties the cache." msgstr "ve vteřinách. Změna vyprázdní dočasnou paměť." -#: templates/settings.php:31 +#: templates/settings.php:30 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:32 msgid "Help" msgstr "Nápověda" diff --git a/l10n/da/core.po b/l10n/da/core.po index d5210b045cd..782c53cf39f 100644 --- a/l10n/da/core.po +++ b/l10n/da/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-28 02:01+0200\n" -"PO-Revision-Date: 2012-08-28 00:01+0000\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:02+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" @@ -38,55 +38,55 @@ msgstr "Denne kategori eksisterer allerede: " msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -#: js/js.js:190 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 msgid "Settings" msgstr "Indstillinger" -#: js/js.js:575 +#: js/js.js:586 msgid "January" msgstr "Januar" -#: js/js.js:575 +#: js/js.js:586 msgid "February" msgstr "Februar" -#: js/js.js:575 +#: js/js.js:586 msgid "March" msgstr "Marts" -#: js/js.js:575 +#: js/js.js:586 msgid "April" msgstr "April" -#: js/js.js:575 +#: js/js.js:586 msgid "May" msgstr "Maj" -#: js/js.js:575 +#: js/js.js:586 msgid "June" msgstr "Juni" -#: js/js.js:576 +#: js/js.js:587 msgid "July" msgstr "Juli" -#: js/js.js:576 +#: js/js.js:587 msgid "August" msgstr "August" -#: js/js.js:576 +#: js/js.js:587 msgid "September" msgstr "September" -#: js/js.js:576 +#: js/js.js:587 msgid "October" msgstr "Oktober" -#: js/js.js:576 +#: js/js.js:587 msgid "November" msgstr "November" -#: js/js.js:576 +#: js/js.js:587 msgid "December" msgstr "December" diff --git a/l10n/da/files_sharing.po b/l10n/da/files_sharing.po index 7ed986fd029..7af7f3cce6a 100644 --- a/l10n/da/files_sharing.po +++ b/l10n/da/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: 2012-08-23 02:03+0200\n" -"PO-Revision-Date: 2012-08-23 00:04+0000\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -17,18 +17,10 @@ msgstr "" "Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: templates/get.php:4 -msgid "Size" +#: templates/authenticate.php:4 +msgid "Password" msgstr "" -#: templates/get.php:5 -msgid "Modified" -msgstr "" - -#: templates/get.php:5 -msgid "Delete all" -msgstr "" - -#: templates/get.php:5 -msgid "Delete" +#: templates/authenticate.php:6 +msgid "Submit" msgstr "" diff --git a/l10n/da/settings.po b/l10n/da/settings.po index 52548033030..132eb0965d9 100644 --- a/l10n/da/settings.po +++ b/l10n/da/settings.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-21 02:03+0200\n" -"PO-Revision-Date: 2012-08-20 14:35+0000\n" -"Last-Translator: ressel \n" +"POT-Creation-Date: 2012-08-29 02:02+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -93,10 +93,46 @@ msgid "use systems cron service" msgstr "" #: templates/admin.php:39 +msgid "Share API" +msgstr "" + +#: templates/admin.php:44 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:45 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:49 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:50 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:54 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:55 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:58 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:60 +msgid "Allow users to only share with users in their groups" +msgstr "" + +#: templates/admin.php:67 msgid "Log" msgstr "Log" -#: templates/admin.php:67 +#: templates/admin.php:95 msgid "More" msgstr "Mere" diff --git a/l10n/da/user_ldap.po b/l10n/da/user_ldap.po index 5103ecf98cc..1d87e554059 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: 2012-08-21 02:03+0200\n" -"PO-Revision-Date: 2012-08-20 14:58+0000\n" -"Last-Translator: ressel \n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" +"Last-Translator: I Robot \n" "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" @@ -160,6 +160,12 @@ msgstr "" msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:31 +#: templates/settings.php:30 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:32 msgid "Help" msgstr "Hjælp" diff --git a/l10n/de/core.po b/l10n/de/core.po index b7300133f0f..7fd2379895e 100644 --- a/l10n/de/core.po +++ b/l10n/de/core.po @@ -18,8 +18,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-28 02:01+0200\n" -"PO-Revision-Date: 2012-08-28 00:01+0000\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:02+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" @@ -44,55 +44,55 @@ msgstr "Kategorie existiert bereits:" msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -#: js/js.js:190 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 msgid "Settings" msgstr "Einstellungen" -#: js/js.js:575 +#: js/js.js:586 msgid "January" msgstr "Januar" -#: js/js.js:575 +#: js/js.js:586 msgid "February" msgstr "Februar" -#: js/js.js:575 +#: js/js.js:586 msgid "March" msgstr "März" -#: js/js.js:575 +#: js/js.js:586 msgid "April" msgstr "April" -#: js/js.js:575 +#: js/js.js:586 msgid "May" msgstr "Mai" -#: js/js.js:575 +#: js/js.js:586 msgid "June" msgstr "Juni" -#: js/js.js:576 +#: js/js.js:587 msgid "July" msgstr "Juli" -#: js/js.js:576 +#: js/js.js:587 msgid "August" msgstr "August" -#: js/js.js:576 +#: js/js.js:587 msgid "September" msgstr "September" -#: js/js.js:576 +#: js/js.js:587 msgid "October" msgstr "Oktober" -#: js/js.js:576 +#: js/js.js:587 msgid "November" msgstr "November" -#: js/js.js:576 +#: js/js.js:587 msgid "December" msgstr "Dezember" diff --git a/l10n/de/files_sharing.po b/l10n/de/files_sharing.po index 8f7dfd3059e..c9da23c62ad 100644 --- a/l10n/de/files_sharing.po +++ b/l10n/de/files_sharing.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-23 02:03+0200\n" -"PO-Revision-Date: 2012-08-23 00:04+0000\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" @@ -20,18 +20,10 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: templates/get.php:4 -msgid "Size" -msgstr "Größe" +#: templates/authenticate.php:4 +msgid "Password" +msgstr "" -#: templates/get.php:5 -msgid "Modified" -msgstr "Geändert" - -#: templates/get.php:5 -msgid "Delete all" -msgstr "Alle löschen" - -#: templates/get.php:5 -msgid "Delete" -msgstr "Löschen" +#: templates/authenticate.php:6 +msgid "Submit" +msgstr "" diff --git a/l10n/de/settings.po b/l10n/de/settings.po index 29ec31c8a51..932008355a4 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-23 09:08+0000\n" -"Last-Translator: traductor \n" +"POT-Creation-Date: 2012-08-29 02:02+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -95,10 +95,46 @@ msgid "use systems cron service" msgstr "Nutze System-Cron-Service" #: templates/admin.php:39 +msgid "Share API" +msgstr "" + +#: templates/admin.php:44 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:45 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:49 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:50 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:54 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:55 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:58 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:60 +msgid "Allow users to only share with users in their groups" +msgstr "" + +#: templates/admin.php:67 msgid "Log" msgstr "Log" -#: templates/admin.php:67 +#: templates/admin.php:95 msgid "More" msgstr "Mehr" diff --git a/l10n/de/user_ldap.po b/l10n/de/user_ldap.po index 5cd6c4762f7..6f9cced66a2 100644 --- a/l10n/de/user_ldap.po +++ b/l10n/de/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: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-23 10:14+0000\n" -"Last-Translator: traductor \n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" +"Last-Translator: I Robot \n" "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" @@ -164,6 +164,12 @@ msgstr "in Bytes" msgid "in seconds. A change empties the cache." msgstr "in Sekunden. Eine Änderung leert den Cache." -#: templates/settings.php:31 +#: templates/settings.php:30 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:32 msgid "Help" msgstr "Hilfe" diff --git a/l10n/el/core.po b/l10n/el/core.po index ffd90d39f23..8de9d580dc9 100644 --- a/l10n/el/core.po +++ b/l10n/el/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-28 02:01+0200\n" -"PO-Revision-Date: 2012-08-28 00:01+0000\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -37,55 +37,55 @@ msgstr "Αυτή η κατηγορία υπάρχει ήδη" msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -#: js/js.js:190 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 msgid "Settings" msgstr "Ρυθμίσεις" -#: js/js.js:575 +#: js/js.js:586 msgid "January" msgstr "Ιανουάριος" -#: js/js.js:575 +#: js/js.js:586 msgid "February" msgstr "Φεβρουάριος" -#: js/js.js:575 +#: js/js.js:586 msgid "March" msgstr "Μάρτιος" -#: js/js.js:575 +#: js/js.js:586 msgid "April" msgstr "Απρίλιος" -#: js/js.js:575 +#: js/js.js:586 msgid "May" msgstr "Μάϊος" -#: js/js.js:575 +#: js/js.js:586 msgid "June" msgstr "Ιούνιος" -#: js/js.js:576 +#: js/js.js:587 msgid "July" msgstr "Ιούλιος" -#: js/js.js:576 +#: js/js.js:587 msgid "August" msgstr "Αύγουστος" -#: js/js.js:576 +#: js/js.js:587 msgid "September" msgstr "Σεπτέμβριος" -#: js/js.js:576 +#: js/js.js:587 msgid "October" msgstr "Οκτώβριος" -#: js/js.js:576 +#: js/js.js:587 msgid "November" msgstr "Νοέμβριος" -#: js/js.js:576 +#: js/js.js:587 msgid "December" msgstr "Δεκέμβριος" diff --git a/l10n/el/files_sharing.po b/l10n/el/files_sharing.po index 32f11e9f2c8..3683b276566 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: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-23 08:57+0000\n" -"Last-Translator: Nisok Kosin \n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" +"Last-Translator: I Robot \n" "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" @@ -18,18 +18,10 @@ msgstr "" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: templates/get.php:4 -msgid "Size" -msgstr "Μέγεθος" +#: templates/authenticate.php:4 +msgid "Password" +msgstr "" -#: templates/get.php:5 -msgid "Modified" -msgstr "Τροποποιήθηκε" - -#: templates/get.php:5 -msgid "Delete all" -msgstr "Διαγραφή όλων" - -#: templates/get.php:5 -msgid "Delete" -msgstr "Διαγραφή" +#: templates/authenticate.php:6 +msgid "Submit" +msgstr "" diff --git a/l10n/el/settings.po b/l10n/el/settings.po index 6d7243e05b9..0e099d8938c 100644 --- a/l10n/el/settings.po +++ b/l10n/el/settings.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-23 08:43+0000\n" -"Last-Translator: Nisok Kosin \n" +"POT-Creation-Date: 2012-08-29 02:02+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+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" @@ -93,10 +93,46 @@ msgid "use systems cron service" msgstr "Χρήση της υπηρεσίας cron του συστήματος" #: templates/admin.php:39 +msgid "Share API" +msgstr "" + +#: templates/admin.php:44 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:45 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:49 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:50 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:54 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:55 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:58 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:60 +msgid "Allow users to only share with users in their groups" +msgstr "" + +#: templates/admin.php:67 msgid "Log" msgstr "Αρχείο καταγραφής" -#: templates/admin.php:67 +#: templates/admin.php:95 msgid "More" msgstr "Περισσότερο" diff --git a/l10n/el/user_ldap.po b/l10n/el/user_ldap.po index cfea140f221..3752a64b5d4 100644 --- a/l10n/el/user_ldap.po +++ b/l10n/el/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: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-23 13:38+0000\n" -"Last-Translator: Efstathios Iosifidis \n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" +"Last-Translator: I Robot \n" "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" @@ -160,6 +160,12 @@ msgstr "σε bytes" msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:31 +#: templates/settings.php:30 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:32 msgid "Help" msgstr "Βοήθεια" diff --git a/l10n/eo/core.po b/l10n/eo/core.po index d8708022092..d3bc69aa6b6 100644 --- a/l10n/eo/core.po +++ b/l10n/eo/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-28 02:01+0200\n" -"PO-Revision-Date: 2012-08-28 00:02+0000\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -36,55 +36,55 @@ msgstr "Ĉi tiu kategorio jam ekzistas: " msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -#: js/js.js:190 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 msgid "Settings" msgstr "Agordo" -#: js/js.js:575 +#: js/js.js:586 msgid "January" msgstr "Januaro" -#: js/js.js:575 +#: js/js.js:586 msgid "February" msgstr "Februaro" -#: js/js.js:575 +#: js/js.js:586 msgid "March" msgstr "Marto" -#: js/js.js:575 +#: js/js.js:586 msgid "April" msgstr "Aprilo" -#: js/js.js:575 +#: js/js.js:586 msgid "May" msgstr "Majo" -#: js/js.js:575 +#: js/js.js:586 msgid "June" msgstr "Junio" -#: js/js.js:576 +#: js/js.js:587 msgid "July" msgstr "Julio" -#: js/js.js:576 +#: js/js.js:587 msgid "August" msgstr "Aŭgusto" -#: js/js.js:576 +#: js/js.js:587 msgid "September" msgstr "Septembro" -#: js/js.js:576 +#: js/js.js:587 msgid "October" msgstr "Oktobro" -#: js/js.js:576 +#: js/js.js:587 msgid "November" msgstr "Novembro" -#: js/js.js:576 +#: js/js.js:587 msgid "December" msgstr "Decembro" diff --git a/l10n/eo/files_sharing.po b/l10n/eo/files_sharing.po index f1afe868724..fd8cae3168d 100644 --- a/l10n/eo/files_sharing.po +++ b/l10n/eo/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: 2012-08-23 02:03+0200\n" -"PO-Revision-Date: 2012-08-23 00:04+0000\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -18,18 +18,10 @@ msgstr "" "Language: eo\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: templates/get.php:4 -msgid "Size" +#: templates/authenticate.php:4 +msgid "Password" msgstr "" -#: templates/get.php:5 -msgid "Modified" +#: templates/authenticate.php:6 +msgid "Submit" msgstr "" - -#: templates/get.php:5 -msgid "Delete all" -msgstr "" - -#: templates/get.php:5 -msgid "Delete" -msgstr "Forigi" diff --git a/l10n/eo/settings.po b/l10n/eo/settings.po index 15e0d6d85ac..1a916d2039f 100644 --- a/l10n/eo/settings.po +++ b/l10n/eo/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-19 02:02+0200\n" -"PO-Revision-Date: 2012-08-18 17:13+0000\n" -"Last-Translator: Mariano \n" +"POT-Creation-Date: 2012-08-29 02:02+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+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" @@ -88,10 +88,46 @@ msgid "use systems cron service" msgstr "uzi la cron-servon de la sistemo" #: templates/admin.php:39 +msgid "Share API" +msgstr "" + +#: templates/admin.php:44 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:45 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:49 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:50 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:54 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:55 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:58 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:60 +msgid "Allow users to only share with users in their groups" +msgstr "" + +#: templates/admin.php:67 msgid "Log" msgstr "Protokolo" -#: templates/admin.php:67 +#: templates/admin.php:95 msgid "More" msgstr "Pli" diff --git a/l10n/eo/user_ldap.po b/l10n/eo/user_ldap.po index d83f307fe23..9e4a9947c2c 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: 2012-08-19 02:02+0200\n" -"PO-Revision-Date: 2012-08-18 14:28+0000\n" -"Last-Translator: Mariano \n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" +"Last-Translator: I Robot \n" "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" @@ -160,6 +160,12 @@ msgstr "duumoke" msgid "in seconds. A change empties the cache." msgstr "sekunde. Ajna ŝanĝo malplenigas la kaŝmemoron." -#: templates/settings.php:31 +#: templates/settings.php:30 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:32 msgid "Help" msgstr "Helpo" diff --git a/l10n/es/core.po b/l10n/es/core.po index 339d3e2d62c..34fc1ff54a1 100644 --- a/l10n/es/core.po +++ b/l10n/es/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-28 02:01+0200\n" -"PO-Revision-Date: 2012-08-28 00:01+0000\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" @@ -40,55 +40,55 @@ msgstr "Esta categoría ya existe: " msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -#: js/js.js:190 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 msgid "Settings" msgstr "Ajustes" -#: js/js.js:575 +#: js/js.js:586 msgid "January" msgstr "Enero" -#: js/js.js:575 +#: js/js.js:586 msgid "February" msgstr "Febrero" -#: js/js.js:575 +#: js/js.js:586 msgid "March" msgstr "Marzo" -#: js/js.js:575 +#: js/js.js:586 msgid "April" msgstr "Abril" -#: js/js.js:575 +#: js/js.js:586 msgid "May" msgstr "Mayo" -#: js/js.js:575 +#: js/js.js:586 msgid "June" msgstr "Junio" -#: js/js.js:576 +#: js/js.js:587 msgid "July" msgstr "Julio" -#: js/js.js:576 +#: js/js.js:587 msgid "August" msgstr "Agosto" -#: js/js.js:576 +#: js/js.js:587 msgid "September" msgstr "Septiembre" -#: js/js.js:576 +#: js/js.js:587 msgid "October" msgstr "Octubre" -#: js/js.js:576 +#: js/js.js:587 msgid "November" msgstr "Noviembre" -#: js/js.js:576 +#: js/js.js:587 msgid "December" msgstr "Diciembre" diff --git a/l10n/es/files_sharing.po b/l10n/es/files_sharing.po index e53147b10f2..ccb836d0dc4 100644 --- a/l10n/es/files_sharing.po +++ b/l10n/es/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-23 09:11+0000\n" -"Last-Translator: Javier Llorente \n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" +"Last-Translator: I Robot \n" "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" @@ -18,18 +18,10 @@ msgstr "" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: templates/get.php:4 -msgid "Size" -msgstr "Tamaño" +#: templates/authenticate.php:4 +msgid "Password" +msgstr "" -#: templates/get.php:5 -msgid "Modified" -msgstr "Modificado" - -#: templates/get.php:5 -msgid "Delete all" -msgstr "Eliminar todo" - -#: templates/get.php:5 -msgid "Delete" -msgstr "Eliminar" +#: templates/authenticate.php:6 +msgid "Submit" +msgstr "" diff --git a/l10n/es/settings.po b/l10n/es/settings.po index 4fadce58dcc..e1085bc4cad 100644 --- a/l10n/es/settings.po +++ b/l10n/es/settings.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-23 09:14+0000\n" -"Last-Translator: Javier Llorente \n" +"POT-Creation-Date: 2012-08-29 02:02+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+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" @@ -94,10 +94,46 @@ msgid "use systems cron service" msgstr "usar servicio cron del sistema" #: templates/admin.php:39 +msgid "Share API" +msgstr "" + +#: templates/admin.php:44 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:45 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:49 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:50 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:54 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:55 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:58 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:60 +msgid "Allow users to only share with users in their groups" +msgstr "" + +#: templates/admin.php:67 msgid "Log" msgstr "Registro" -#: templates/admin.php:67 +#: templates/admin.php:95 msgid "More" msgstr "Más" diff --git a/l10n/es/user_ldap.po b/l10n/es/user_ldap.po index 11d0ce6c531..49025f4606e 100644 --- a/l10n/es/user_ldap.po +++ b/l10n/es/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: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-23 09:28+0000\n" -"Last-Translator: Javier Llorente \n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" +"Last-Translator: I Robot \n" "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" @@ -160,6 +160,12 @@ msgstr "en bytes" msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:31 +#: templates/settings.php:30 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:32 msgid "Help" msgstr "Ayuda" diff --git a/l10n/et_EE/core.po b/l10n/et_EE/core.po index b02a2462018..b5d1fc5cc4b 100644 --- a/l10n/et_EE/core.po +++ b/l10n/et_EE/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-28 02:01+0200\n" -"PO-Revision-Date: 2012-08-28 00:01+0000\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -34,55 +34,55 @@ msgstr "See kategooria on juba olemas: " msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -#: js/js.js:190 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 msgid "Settings" msgstr "Seaded" -#: js/js.js:575 +#: js/js.js:586 msgid "January" msgstr "Jaanuar" -#: js/js.js:575 +#: js/js.js:586 msgid "February" msgstr "Veebruar" -#: js/js.js:575 +#: js/js.js:586 msgid "March" msgstr "Märts" -#: js/js.js:575 +#: js/js.js:586 msgid "April" msgstr "Aprill" -#: js/js.js:575 +#: js/js.js:586 msgid "May" msgstr "Mai" -#: js/js.js:575 +#: js/js.js:586 msgid "June" msgstr "Juuni" -#: js/js.js:576 +#: js/js.js:587 msgid "July" msgstr "Juuli" -#: js/js.js:576 +#: js/js.js:587 msgid "August" msgstr "August" -#: js/js.js:576 +#: js/js.js:587 msgid "September" msgstr "September" -#: js/js.js:576 +#: js/js.js:587 msgid "October" msgstr "Oktoober" -#: js/js.js:576 +#: js/js.js:587 msgid "November" msgstr "November" -#: js/js.js:576 +#: js/js.js:587 msgid "December" msgstr "Detsember" diff --git a/l10n/et_EE/files_sharing.po b/l10n/et_EE/files_sharing.po index ebe1c5cb9b7..685a4551724 100644 --- a/l10n/et_EE/files_sharing.po +++ b/l10n/et_EE/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-23 02:03+0200\n" -"PO-Revision-Date: 2012-08-23 00:04+0000\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -18,18 +18,10 @@ msgstr "" "Language: et_EE\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: templates/get.php:4 -msgid "Size" +#: templates/authenticate.php:4 +msgid "Password" msgstr "" -#: templates/get.php:5 -msgid "Modified" +#: templates/authenticate.php:6 +msgid "Submit" msgstr "" - -#: templates/get.php:5 -msgid "Delete all" -msgstr "" - -#: templates/get.php:5 -msgid "Delete" -msgstr "Kustutamine" diff --git a/l10n/et_EE/settings.po b/l10n/et_EE/settings.po index 089670c04cc..da5e7a6610c 100644 --- a/l10n/et_EE/settings.po +++ b/l10n/et_EE/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-26 19:46+0200\n" -"PO-Revision-Date: 2012-08-26 17:19+0000\n" -"Last-Translator: Rivo Zängov \n" +"POT-Creation-Date: 2012-08-29 02:02+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -88,10 +88,46 @@ msgid "use systems cron service" msgstr "kasuta süsteemide cron teenuseid" #: templates/admin.php:39 +msgid "Share API" +msgstr "" + +#: templates/admin.php:44 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:45 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:49 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:50 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:54 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:55 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:58 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:60 +msgid "Allow users to only share with users in their groups" +msgstr "" + +#: templates/admin.php:67 msgid "Log" msgstr "Logi" -#: templates/admin.php:67 +#: templates/admin.php:95 msgid "More" msgstr "Veel" diff --git a/l10n/et_EE/user_ldap.po b/l10n/et_EE/user_ldap.po index 38de7d5c108..80d9727ff0d 100644 --- a/l10n/et_EE/user_ldap.po +++ b/l10n/et_EE/user_ldap.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Rivo Zängov , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" +"Last-Translator: I Robot \n" "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" @@ -19,7 +20,7 @@ msgstr "" #: templates/settings.php:8 msgid "Host" -msgstr "" +msgstr "Host" #: templates/settings.php:8 msgid "" @@ -47,7 +48,7 @@ msgstr "" #: templates/settings.php:11 msgid "Password" -msgstr "" +msgstr "Parool" #: templates/settings.php:11 msgid "For anonymous access, leave DN and Password empty." @@ -83,7 +84,7 @@ msgstr "" #: templates/settings.php:14 msgid "Group Filter" -msgstr "" +msgstr "Grupi filter" #: templates/settings.php:14 msgid "Defines the filter to apply, when retrieving groups." @@ -95,7 +96,7 @@ msgstr "" #: templates/settings.php:17 msgid "Port" -msgstr "" +msgstr "Port" #: templates/settings.php:18 msgid "Base User Tree" @@ -111,7 +112,7 @@ msgstr "" #: templates/settings.php:21 msgid "Use TLS" -msgstr "" +msgstr "Kasutaja TLS" #: templates/settings.php:21 msgid "Do not use it for SSL connections, it will fail." @@ -153,12 +154,18 @@ msgstr "" #: templates/settings.php:27 msgid "in bytes" -msgstr "" +msgstr "baitides" #: templates/settings.php:29 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:31 -msgid "Help" +#: templates/settings.php:30 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." msgstr "" + +#: templates/settings.php:32 +msgid "Help" +msgstr "Abiinfo" diff --git a/l10n/eu/core.po b/l10n/eu/core.po index 109068c6457..2e8170d6eb2 100644 --- a/l10n/eu/core.po +++ b/l10n/eu/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-28 02:01+0200\n" -"PO-Revision-Date: 2012-08-28 00:02+0000\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -35,55 +35,55 @@ msgstr "Kategoria hau dagoeneko existitzen da:" msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -#: js/js.js:190 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 msgid "Settings" msgstr "Ezarpenak" -#: js/js.js:575 +#: js/js.js:586 msgid "January" msgstr "Urtarrila" -#: js/js.js:575 +#: js/js.js:586 msgid "February" msgstr "Otsaila" -#: js/js.js:575 +#: js/js.js:586 msgid "March" msgstr "Martxoa" -#: js/js.js:575 +#: js/js.js:586 msgid "April" msgstr "Apirila" -#: js/js.js:575 +#: js/js.js:586 msgid "May" msgstr "Maiatza" -#: js/js.js:575 +#: js/js.js:586 msgid "June" msgstr "Ekaina" -#: js/js.js:576 +#: js/js.js:587 msgid "July" msgstr "Uztaila" -#: js/js.js:576 +#: js/js.js:587 msgid "August" msgstr "Abuztua" -#: js/js.js:576 +#: js/js.js:587 msgid "September" msgstr "Iraila" -#: js/js.js:576 +#: js/js.js:587 msgid "October" msgstr "Urria" -#: js/js.js:576 +#: js/js.js:587 msgid "November" msgstr "Azaroa" -#: js/js.js:576 +#: js/js.js:587 msgid "December" msgstr "Abendua" diff --git a/l10n/eu/files_sharing.po b/l10n/eu/files_sharing.po index a7eb7ffe2a3..5dbf9d47d57 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: 2012-08-28 02:01+0200\n" -"PO-Revision-Date: 2012-08-27 08:54+0000\n" -"Last-Translator: asieriko \n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" +"Last-Translator: I Robot \n" "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" @@ -18,18 +18,10 @@ msgstr "" "Language: eu\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: templates/get.php:4 -msgid "Size" -msgstr "Tamaina" +#: templates/authenticate.php:4 +msgid "Password" +msgstr "" -#: templates/get.php:5 -msgid "Modified" -msgstr "Aldatuta" - -#: templates/get.php:5 -msgid "Delete all" -msgstr "Ezabatu dena" - -#: templates/get.php:5 -msgid "Delete" -msgstr "Ezabatu" +#: templates/authenticate.php:6 +msgid "Submit" +msgstr "" diff --git a/l10n/eu/settings.po b/l10n/eu/settings.po index b6a2050a81c..2084610e4fe 100644 --- a/l10n/eu/settings.po +++ b/l10n/eu/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-28 02:01+0200\n" -"PO-Revision-Date: 2012-08-27 11:17+0000\n" -"Last-Translator: asieriko \n" +"POT-Creation-Date: 2012-08-29 02:02+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+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" @@ -89,10 +89,46 @@ msgid "use systems cron service" msgstr "erabili sistemaren cron zerbitzua" #: templates/admin.php:39 +msgid "Share API" +msgstr "" + +#: templates/admin.php:44 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:45 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:49 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:50 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:54 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:55 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:58 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:60 +msgid "Allow users to only share with users in their groups" +msgstr "" + +#: templates/admin.php:67 msgid "Log" msgstr "Egunkaria" -#: templates/admin.php:67 +#: templates/admin.php:95 msgid "More" msgstr "Gehiago" diff --git a/l10n/eu/user_ldap.po b/l10n/eu/user_ldap.po index 95f361427da..8b6abda92f0 100644 --- a/l10n/eu/user_ldap.po +++ b/l10n/eu/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: 2012-08-28 02:01+0200\n" -"PO-Revision-Date: 2012-08-27 10:45+0000\n" -"Last-Translator: asieriko \n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" +"Last-Translator: I Robot \n" "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" @@ -160,6 +160,12 @@ msgstr "bytetan" msgid "in seconds. A change empties the cache." msgstr "segundutan. Aldaketak katxea husten du." -#: templates/settings.php:31 +#: templates/settings.php:30 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:32 msgid "Help" msgstr "Laguntza" diff --git a/l10n/eu_ES/core.po b/l10n/eu_ES/core.po index 5c54a269c07..8b695d7d731 100644 --- a/l10n/eu_ES/core.po +++ b/l10n/eu_ES/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-28 02:01+0200\n" -"PO-Revision-Date: 2012-08-28 00:02+0000\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" "MIME-Version: 1.0\n" @@ -33,55 +33,55 @@ msgstr "" msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "" -#: js/js.js:190 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 msgid "Settings" msgstr "" -#: js/js.js:575 +#: js/js.js:586 msgid "January" msgstr "" -#: js/js.js:575 +#: js/js.js:586 msgid "February" msgstr "" -#: js/js.js:575 +#: js/js.js:586 msgid "March" msgstr "" -#: js/js.js:575 +#: js/js.js:586 msgid "April" msgstr "" -#: js/js.js:575 +#: js/js.js:586 msgid "May" msgstr "" -#: js/js.js:575 +#: js/js.js:586 msgid "June" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "July" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "August" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "September" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "October" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "November" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "December" msgstr "" diff --git a/l10n/eu_ES/files_sharing.po b/l10n/eu_ES/files_sharing.po index 0ba46e6c77a..61cc77d14af 100644 --- a/l10n/eu_ES/files_sharing.po +++ b/l10n/eu_ES/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: 2012-08-23 02:03+0200\n" -"PO-Revision-Date: 2012-08-23 00:04+0000\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" "MIME-Version: 1.0\n" @@ -17,18 +17,10 @@ msgstr "" "Language: eu_ES\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: templates/get.php:4 -msgid "Size" +#: templates/authenticate.php:4 +msgid "Password" msgstr "" -#: templates/get.php:5 -msgid "Modified" -msgstr "" - -#: templates/get.php:5 -msgid "Delete all" -msgstr "" - -#: templates/get.php:5 -msgid "Delete" +#: templates/authenticate.php:6 +msgid "Submit" msgstr "" diff --git a/l10n/eu_ES/settings.po b/l10n/eu_ES/settings.po index 82cc89a6207..f1a8e4aa08f 100644 --- a/l10n/eu_ES/settings.po +++ b/l10n/eu_ES/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-18 02:01+0200\n" -"PO-Revision-Date: 2012-08-18 00:02+0000\n" +"POT-Creation-Date: 2012-08-29 02:02+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" "MIME-Version: 1.0\n" @@ -86,10 +86,46 @@ msgid "use systems cron service" msgstr "" #: templates/admin.php:39 -msgid "Log" +msgid "Share API" +msgstr "" + +#: templates/admin.php:44 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:45 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:49 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:50 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:54 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:55 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:58 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:60 +msgid "Allow users to only share with users in their groups" msgstr "" #: templates/admin.php:67 +msgid "Log" +msgstr "" + +#: templates/admin.php:95 msgid "More" msgstr "" diff --git a/l10n/eu_ES/user_ldap.po b/l10n/eu_ES/user_ldap.po index 34f25c3435d..2999d7de988 100644 --- a/l10n/eu_ES/user_ldap.po +++ b/l10n/eu_ES/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -159,6 +159,12 @@ msgstr "" msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:31 +#: templates/settings.php:30 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:32 msgid "Help" msgstr "" diff --git a/l10n/fa/core.po b/l10n/fa/core.po index 3a6f8b7c702..6275a4af565 100644 --- a/l10n/fa/core.po +++ b/l10n/fa/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-28 02:01+0200\n" -"PO-Revision-Date: 2012-08-28 00:02+0000\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -34,55 +34,55 @@ msgstr "این گروه از قبل اضافه شده" msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -#: js/js.js:190 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 msgid "Settings" msgstr "تنظیمات" -#: js/js.js:575 +#: js/js.js:586 msgid "January" msgstr "ژانویه" -#: js/js.js:575 +#: js/js.js:586 msgid "February" msgstr "فبریه" -#: js/js.js:575 +#: js/js.js:586 msgid "March" msgstr "مارس" -#: js/js.js:575 +#: js/js.js:586 msgid "April" msgstr "آوریل" -#: js/js.js:575 +#: js/js.js:586 msgid "May" msgstr "می" -#: js/js.js:575 +#: js/js.js:586 msgid "June" msgstr "ژوئن" -#: js/js.js:576 +#: js/js.js:587 msgid "July" msgstr "جولای" -#: js/js.js:576 +#: js/js.js:587 msgid "August" msgstr "آگوست" -#: js/js.js:576 +#: js/js.js:587 msgid "September" msgstr "سپتامبر" -#: js/js.js:576 +#: js/js.js:587 msgid "October" msgstr "اکتبر" -#: js/js.js:576 +#: js/js.js:587 msgid "November" msgstr "نوامبر" -#: js/js.js:576 +#: js/js.js:587 msgid "December" msgstr "دسامبر" diff --git a/l10n/fa/files_sharing.po b/l10n/fa/files_sharing.po index 9b11f7a5ec6..9bdff0feec6 100644 --- a/l10n/fa/files_sharing.po +++ b/l10n/fa/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-23 20:07+0000\n" -"Last-Translator: Mohammad Dashtizadeh \n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,18 +18,10 @@ msgstr "" "Language: fa\n" "Plural-Forms: nplurals=1; plural=0\n" -#: templates/get.php:4 -msgid "Size" -msgstr "اندازه" +#: templates/authenticate.php:4 +msgid "Password" +msgstr "" -#: templates/get.php:5 -msgid "Modified" -msgstr "تاریخ" - -#: templates/get.php:5 -msgid "Delete all" -msgstr "حذف همه" - -#: templates/get.php:5 -msgid "Delete" -msgstr "حذف" +#: templates/authenticate.php:6 +msgid "Submit" +msgstr "" diff --git a/l10n/fa/settings.po b/l10n/fa/settings.po index 38f01f759c0..9ba953c9e18 100644 --- a/l10n/fa/settings.po +++ b/l10n/fa/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-18 02:01+0200\n" -"PO-Revision-Date: 2012-08-18 00:02+0000\n" +"POT-Creation-Date: 2012-08-29 02:02+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+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" @@ -88,10 +88,46 @@ msgid "use systems cron service" msgstr "" #: templates/admin.php:39 +msgid "Share API" +msgstr "" + +#: templates/admin.php:44 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:45 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:49 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:50 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:54 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:55 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:58 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:60 +msgid "Allow users to only share with users in their groups" +msgstr "" + +#: templates/admin.php:67 msgid "Log" msgstr "کارنامه" -#: templates/admin.php:67 +#: templates/admin.php:95 msgid "More" msgstr "بیشتر" diff --git a/l10n/fa/user_ldap.po b/l10n/fa/user_ldap.po index eb2a0fd767f..4a711bf2019 100644 --- a/l10n/fa/user_ldap.po +++ b/l10n/fa/user_ldap.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Mohammad Dashtizadeh , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +20,7 @@ msgstr "" #: templates/settings.php:8 msgid "Host" -msgstr "" +msgstr "میزبانی" #: templates/settings.php:8 msgid "" @@ -47,7 +48,7 @@ msgstr "" #: templates/settings.php:11 msgid "Password" -msgstr "" +msgstr "رمز عبور" #: templates/settings.php:11 msgid "For anonymous access, leave DN and Password empty." @@ -159,6 +160,12 @@ msgstr "" msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:31 -msgid "Help" +#: templates/settings.php:30 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." msgstr "" + +#: templates/settings.php:32 +msgid "Help" +msgstr "راه‌نما" diff --git a/l10n/fi/core.po b/l10n/fi/core.po index 992a3d30652..50358c7b5a7 100644 --- a/l10n/fi/core.po +++ b/l10n/fi/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-28 02:01+0200\n" -"PO-Revision-Date: 2012-08-28 00:02+0000\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (http://www.transifex.com/projects/p/owncloud/language/fi/)\n" "MIME-Version: 1.0\n" @@ -33,55 +33,55 @@ msgstr "" msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "" -#: js/js.js:190 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 msgid "Settings" msgstr "" -#: js/js.js:575 +#: js/js.js:586 msgid "January" msgstr "" -#: js/js.js:575 +#: js/js.js:586 msgid "February" msgstr "" -#: js/js.js:575 +#: js/js.js:586 msgid "March" msgstr "" -#: js/js.js:575 +#: js/js.js:586 msgid "April" msgstr "" -#: js/js.js:575 +#: js/js.js:586 msgid "May" msgstr "" -#: js/js.js:575 +#: js/js.js:586 msgid "June" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "July" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "August" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "September" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "October" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "November" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "December" msgstr "" diff --git a/l10n/fi/files_sharing.po b/l10n/fi/files_sharing.po index b8c06567b5b..f4e463219f5 100644 --- a/l10n/fi/files_sharing.po +++ b/l10n/fi/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: 2012-08-23 02:03+0200\n" -"PO-Revision-Date: 2012-08-23 00:04+0000\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (http://www.transifex.com/projects/p/owncloud/language/fi/)\n" "MIME-Version: 1.0\n" @@ -17,18 +17,10 @@ msgstr "" "Language: fi\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: templates/get.php:4 -msgid "Size" +#: templates/authenticate.php:4 +msgid "Password" msgstr "" -#: templates/get.php:5 -msgid "Modified" -msgstr "" - -#: templates/get.php:5 -msgid "Delete all" -msgstr "" - -#: templates/get.php:5 -msgid "Delete" +#: templates/authenticate.php:6 +msgid "Submit" msgstr "" diff --git a/l10n/fi/settings.po b/l10n/fi/settings.po index 823276532f7..ff6f704321e 100644 --- a/l10n/fi/settings.po +++ b/l10n/fi/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-18 02:01+0200\n" -"PO-Revision-Date: 2012-08-18 00:02+0000\n" +"POT-Creation-Date: 2012-08-29 02:02+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (http://www.transifex.com/projects/p/owncloud/language/fi/)\n" "MIME-Version: 1.0\n" @@ -86,10 +86,46 @@ msgid "use systems cron service" msgstr "" #: templates/admin.php:39 -msgid "Log" +msgid "Share API" +msgstr "" + +#: templates/admin.php:44 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:45 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:49 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:50 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:54 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:55 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:58 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:60 +msgid "Allow users to only share with users in their groups" msgstr "" #: templates/admin.php:67 +msgid "Log" +msgstr "" + +#: templates/admin.php:95 msgid "More" msgstr "" diff --git a/l10n/fi/user_ldap.po b/l10n/fi/user_ldap.po index 70707a1d170..5f8865fafa7 100644 --- a/l10n/fi/user_ldap.po +++ b/l10n/fi/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Finnish (http://www.transifex.com/projects/p/owncloud/language/fi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -159,6 +159,12 @@ msgstr "" msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:31 +#: templates/settings.php:30 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:32 msgid "Help" msgstr "" diff --git a/l10n/fi_FI/core.po b/l10n/fi_FI/core.po index e78e8f7504f..5f70f5c6f91 100644 --- a/l10n/fi_FI/core.po +++ b/l10n/fi_FI/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-28 02:01+0200\n" -"PO-Revision-Date: 2012-08-28 00:02+0000\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -38,55 +38,55 @@ msgstr "Tämä luokka on jo olemassa: " msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "" -#: js/js.js:190 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 msgid "Settings" msgstr "Asetukset" -#: js/js.js:575 +#: js/js.js:586 msgid "January" msgstr "Tammikuu" -#: js/js.js:575 +#: js/js.js:586 msgid "February" msgstr "Helmikuu" -#: js/js.js:575 +#: js/js.js:586 msgid "March" msgstr "Maaliskuu" -#: js/js.js:575 +#: js/js.js:586 msgid "April" msgstr "Huhtikuu" -#: js/js.js:575 +#: js/js.js:586 msgid "May" msgstr "Toukokuu" -#: js/js.js:575 +#: js/js.js:586 msgid "June" msgstr "Kesäkuu" -#: js/js.js:576 +#: js/js.js:587 msgid "July" msgstr "Heinäkuu" -#: js/js.js:576 +#: js/js.js:587 msgid "August" msgstr "Elokuu" -#: js/js.js:576 +#: js/js.js:587 msgid "September" msgstr "Syyskuu" -#: js/js.js:576 +#: js/js.js:587 msgid "October" msgstr "Lokakuu" -#: js/js.js:576 +#: js/js.js:587 msgid "November" msgstr "Marraskuu" -#: js/js.js:576 +#: js/js.js:587 msgid "December" msgstr "Joulukuu" diff --git a/l10n/fi_FI/files_sharing.po b/l10n/fi_FI/files_sharing.po index dba2e1225d7..8c162a1fe40 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: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-23 11:35+0000\n" -"Last-Translator: Jiri Grönroos \n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" +"Last-Translator: I Robot \n" "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" @@ -18,18 +18,10 @@ msgstr "" "Language: fi_FI\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: templates/get.php:4 -msgid "Size" -msgstr "Koko" +#: templates/authenticate.php:4 +msgid "Password" +msgstr "" -#: templates/get.php:5 -msgid "Modified" -msgstr "Muokattu" - -#: templates/get.php:5 -msgid "Delete all" -msgstr "Poista kaikki" - -#: templates/get.php:5 -msgid "Delete" -msgstr "Poista" +#: templates/authenticate.php:6 +msgid "Submit" +msgstr "" diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po index f3610fa859f..4baba2f56ca 100644 --- a/l10n/fi_FI/settings.po +++ b/l10n/fi_FI/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-23 12:07+0000\n" -"Last-Translator: Jiri Grönroos \n" +"POT-Creation-Date: 2012-08-29 02:02+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+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" @@ -88,10 +88,46 @@ msgid "use systems cron service" msgstr "käytä järjestelmän cron-palvelua" #: templates/admin.php:39 +msgid "Share API" +msgstr "" + +#: templates/admin.php:44 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:45 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:49 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:50 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:54 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:55 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:58 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:60 +msgid "Allow users to only share with users in their groups" +msgstr "" + +#: templates/admin.php:67 msgid "Log" msgstr "Loki" -#: templates/admin.php:67 +#: templates/admin.php:95 msgid "More" msgstr "Lisää" diff --git a/l10n/fi_FI/user_ldap.po b/l10n/fi_FI/user_ldap.po index a8c8f4e5c8f..8d3344a8317 100644 --- a/l10n/fi_FI/user_ldap.po +++ b/l10n/fi_FI/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: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-23 18:00+0000\n" -"Last-Translator: kyyberi \n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" +"Last-Translator: I Robot \n" "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" @@ -161,6 +161,12 @@ msgstr "tavuissa" msgid "in seconds. A change empties the cache." msgstr "sekunneissa. Muutos tyhjentää välimuistin." -#: templates/settings.php:31 +#: templates/settings.php:30 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:32 msgid "Help" msgstr "Ohje" diff --git a/l10n/fr/core.po b/l10n/fr/core.po index e7c32969565..0229ac1e53a 100644 --- a/l10n/fr/core.po +++ b/l10n/fr/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-28 02:01+0200\n" -"PO-Revision-Date: 2012-08-28 00:01+0000\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" @@ -37,55 +37,55 @@ msgstr "Cette catégorie existe déjà : " msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -#: js/js.js:190 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 msgid "Settings" msgstr "Paramètres" -#: js/js.js:575 +#: js/js.js:586 msgid "January" msgstr "Janvier" -#: js/js.js:575 +#: js/js.js:586 msgid "February" msgstr "Février" -#: js/js.js:575 +#: js/js.js:586 msgid "March" msgstr "Mars" -#: js/js.js:575 +#: js/js.js:586 msgid "April" msgstr "Avril" -#: js/js.js:575 +#: js/js.js:586 msgid "May" msgstr "Mai" -#: js/js.js:575 +#: js/js.js:586 msgid "June" msgstr "Juin" -#: js/js.js:576 +#: js/js.js:587 msgid "July" msgstr "Juillet" -#: js/js.js:576 +#: js/js.js:587 msgid "August" msgstr "Août" -#: js/js.js:576 +#: js/js.js:587 msgid "September" msgstr "Septembre" -#: js/js.js:576 +#: js/js.js:587 msgid "October" msgstr "Octobre" -#: js/js.js:576 +#: js/js.js:587 msgid "November" msgstr "Novembre" -#: js/js.js:576 +#: js/js.js:587 msgid "December" msgstr "Décembre" diff --git a/l10n/fr/files_sharing.po b/l10n/fr/files_sharing.po index 254df78bd12..4fcb57d4141 100644 --- a/l10n/fr/files_sharing.po +++ b/l10n/fr/files_sharing.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-23 02:03+0200\n" -"PO-Revision-Date: 2012-08-23 00:04+0000\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" @@ -19,18 +19,10 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1)\n" -#: templates/get.php:4 -msgid "Size" -msgstr "Taille" +#: templates/authenticate.php:4 +msgid "Password" +msgstr "" -#: templates/get.php:5 -msgid "Modified" -msgstr "Modifié" - -#: templates/get.php:5 -msgid "Delete all" -msgstr "Tout effacer" - -#: templates/get.php:5 -msgid "Delete" -msgstr "Effacement" +#: templates/authenticate.php:6 +msgid "Submit" +msgstr "" diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index c1d17de2c44..e1a896e5371 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/settings.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-21 02:03+0200\n" -"PO-Revision-Date: 2012-08-20 15:19+0000\n" -"Last-Translator: gp4004 \n" +"POT-Creation-Date: 2012-08-29 02:02+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+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" @@ -95,10 +95,46 @@ msgid "use systems cron service" msgstr "utiliser le service cron du système " #: templates/admin.php:39 +msgid "Share API" +msgstr "" + +#: templates/admin.php:44 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:45 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:49 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:50 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:54 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:55 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:58 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:60 +msgid "Allow users to only share with users in their groups" +msgstr "" + +#: templates/admin.php:67 msgid "Log" msgstr "Journaux" -#: templates/admin.php:67 +#: templates/admin.php:95 msgid "More" msgstr "Plus" diff --git a/l10n/fr/user_ldap.po b/l10n/fr/user_ldap.po index 1ca6075cb63..3e168eea217 100644 --- a/l10n/fr/user_ldap.po +++ b/l10n/fr/user_ldap.po @@ -3,15 +3,17 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Cyril Glapa , 2012. +# , 2012. # Romain DEP. , 2012. # , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-23 17:01+0000\n" -"Last-Translator: Romain DEP. \n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" +"Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,15 +32,15 @@ msgstr "Vous pouvez omettre le protocole, sauf si vous avez besoin de SSL. Dans #: templates/settings.php:9 msgid "Base DN" -msgstr "DN de base" +msgstr "DN Racine" #: templates/settings.php:9 msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "Vous pouvez spécifier le DN de base pour les utilisateurs et les groupes dans l'onglet Avancé" +msgstr "Vous pouvez détailler les DN Racines de vos utilisateurs et groupes dans l'onglet Avancé" #: templates/settings.php:10 msgid "User DN" -msgstr "DN Utilisateur" +msgstr "DN Utilisateur (Autorisé à consulter l'annuaire)" #: templates/settings.php:10 msgid "" @@ -53,18 +55,18 @@ msgstr "Mot de passe" #: templates/settings.php:11 msgid "For anonymous access, leave DN and Password empty." -msgstr "Pour l'accès anonyme, laisser le DN et le mot de passe vides." +msgstr "Pour un accès anonyme, laisser le DN Utilisateur et le mot de passe vides." #: templates/settings.php:12 msgid "User Login Filter" -msgstr "Filtre d'identifiants utilisateur" +msgstr "Modèle d'authentification utilisateurs" #: templates/settings.php:12 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." -msgstr "Définit le filtre à appliquer lors d'une tentative de connexion. %%uid remplace le nom d'utilisateur lors de la connexion." +msgstr "Définit le motif à appliquer, lors d'une tentative de connexion. %%uid est remplacé par le nom d'utilisateur lors de la connexion." #: templates/settings.php:12 #, php-format @@ -101,11 +103,11 @@ msgstr "Port" #: templates/settings.php:18 msgid "Base User Tree" -msgstr "" +msgstr "DN racine de l'arbre utilisateurs" #: templates/settings.php:19 msgid "Base Group Tree" -msgstr "" +msgstr "DN racine de l'arbre groupes" #: templates/settings.php:20 msgid "Group-Member association" @@ -125,7 +127,7 @@ msgstr "Serveur LDAP insensible à la casse (Windows)" #: templates/settings.php:23 msgid "Turn off SSL certificate validation." -msgstr "Désactiver la validation du certificat SSL" +msgstr "Désactiver la validation du certificat SSL." #: templates/settings.php:23 msgid "" @@ -135,23 +137,23 @@ msgstr "Si la connexion ne fonctionne qu'avec cette option, importez le certific #: templates/settings.php:23 msgid "Not recommended, use for testing only." -msgstr "Non recommendé, utilisation pour tests uniquement." +msgstr "Non recommandé, utilisation pour tests uniquement." #: templates/settings.php:24 msgid "User Display Name Field" -msgstr "" +msgstr "Champ \"nom d'affichage\" de l'utilisateur" #: templates/settings.php:24 msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "L'attribut LDAP utilisé pour générer les noms d'utilisateurs d'ownCloud" +msgstr "L'attribut LDAP utilisé pour générer les noms d'utilisateurs d'ownCloud." #: templates/settings.php:25 msgid "Group Display Name Field" -msgstr "" +msgstr "Champ \"nom d'affichage\" du groupe" #: templates/settings.php:25 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "L'attribut LDAP utilisé pour générer les noms de groupes d'ownCloud" +msgstr "L'attribut LDAP utilisé pour générer les noms de groupes d'ownCloud." #: templates/settings.php:27 msgid "in bytes" @@ -161,6 +163,12 @@ msgstr "en octets" msgid "in seconds. A change empties the cache." msgstr "en secondes. Tout changement vide le cache." -#: templates/settings.php:31 +#: templates/settings.php:30 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:32 msgid "Help" msgstr "Aide" diff --git a/l10n/gl/core.po b/l10n/gl/core.po index fa591dfb3cf..738fbc0ac0e 100644 --- a/l10n/gl/core.po +++ b/l10n/gl/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-28 02:01+0200\n" -"PO-Revision-Date: 2012-08-28 00:02+0000\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:02+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" @@ -35,55 +35,55 @@ msgstr "Esta categoría xa existe: " msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -#: js/js.js:190 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 msgid "Settings" msgstr "Preferencias" -#: js/js.js:575 +#: js/js.js:586 msgid "January" msgstr "Xaneiro" -#: js/js.js:575 +#: js/js.js:586 msgid "February" msgstr "Febreiro" -#: js/js.js:575 +#: js/js.js:586 msgid "March" msgstr "Marzo" -#: js/js.js:575 +#: js/js.js:586 msgid "April" msgstr "Abril" -#: js/js.js:575 +#: js/js.js:586 msgid "May" msgstr "Maio" -#: js/js.js:575 +#: js/js.js:586 msgid "June" msgstr "Xuño" -#: js/js.js:576 +#: js/js.js:587 msgid "July" msgstr "Xullo" -#: js/js.js:576 +#: js/js.js:587 msgid "August" msgstr "Agosto" -#: js/js.js:576 +#: js/js.js:587 msgid "September" msgstr "Setembro" -#: js/js.js:576 +#: js/js.js:587 msgid "October" msgstr "Outubro" -#: js/js.js:576 +#: js/js.js:587 msgid "November" msgstr "Novembro" -#: js/js.js:576 +#: js/js.js:587 msgid "December" msgstr "Nadal" diff --git a/l10n/gl/files_sharing.po b/l10n/gl/files_sharing.po index ef1d19e933b..559f53be84e 100644 --- a/l10n/gl/files_sharing.po +++ b/l10n/gl/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: 2012-08-23 02:03+0200\n" -"PO-Revision-Date: 2012-08-23 00:04+0000\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -17,18 +17,10 @@ msgstr "" "Language: gl\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: templates/get.php:4 -msgid "Size" +#: templates/authenticate.php:4 +msgid "Password" msgstr "" -#: templates/get.php:5 -msgid "Modified" -msgstr "" - -#: templates/get.php:5 -msgid "Delete all" -msgstr "" - -#: templates/get.php:5 -msgid "Delete" +#: templates/authenticate.php:6 +msgid "Submit" msgstr "" diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po index 8c45f0bd139..7f4da924832 100644 --- a/l10n/gl/settings.po +++ b/l10n/gl/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-18 02:01+0200\n" -"PO-Revision-Date: 2012-08-18 00:02+0000\n" +"POT-Creation-Date: 2012-08-29 02:02+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+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" @@ -88,10 +88,46 @@ msgid "use systems cron service" msgstr "utilice o servizo cron do sistema" #: templates/admin.php:39 +msgid "Share API" +msgstr "" + +#: templates/admin.php:44 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:45 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:49 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:50 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:54 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:55 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:58 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:60 +msgid "Allow users to only share with users in their groups" +msgstr "" + +#: templates/admin.php:67 msgid "Log" msgstr "Conectar" -#: templates/admin.php:67 +#: templates/admin.php:95 msgid "More" msgstr "Máis" diff --git a/l10n/gl/user_ldap.po b/l10n/gl/user_ldap.po index 08efd8bd99f..84304f7f0a9 100644 --- a/l10n/gl/user_ldap.po +++ b/l10n/gl/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" +"Last-Translator: I Robot \n" "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" @@ -159,6 +159,12 @@ msgstr "" msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:31 +#: templates/settings.php:30 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:32 msgid "Help" msgstr "" diff --git a/l10n/he/core.po b/l10n/he/core.po index db54c7bcbb3..335773d0dce 100644 --- a/l10n/he/core.po +++ b/l10n/he/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-28 02:01+0200\n" -"PO-Revision-Date: 2012-08-28 00:02+0000\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -36,55 +36,55 @@ msgstr "קטגוריה זאת כבר קיימת: " msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "" -#: js/js.js:190 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 msgid "Settings" msgstr "הגדרות" -#: js/js.js:575 +#: js/js.js:586 msgid "January" msgstr "ינואר" -#: js/js.js:575 +#: js/js.js:586 msgid "February" msgstr "פברואר" -#: js/js.js:575 +#: js/js.js:586 msgid "March" msgstr "מרץ" -#: js/js.js:575 +#: js/js.js:586 msgid "April" msgstr "אפריל" -#: js/js.js:575 +#: js/js.js:586 msgid "May" msgstr "מאי" -#: js/js.js:575 +#: js/js.js:586 msgid "June" msgstr "יוני" -#: js/js.js:576 +#: js/js.js:587 msgid "July" msgstr "יולי" -#: js/js.js:576 +#: js/js.js:587 msgid "August" msgstr "אוגוסט" -#: js/js.js:576 +#: js/js.js:587 msgid "September" msgstr "ספטמבר" -#: js/js.js:576 +#: js/js.js:587 msgid "October" msgstr "אוקטובר" -#: js/js.js:576 +#: js/js.js:587 msgid "November" msgstr "נובמבר" -#: js/js.js:576 +#: js/js.js:587 msgid "December" msgstr "דצמבר" diff --git a/l10n/he/files_sharing.po b/l10n/he/files_sharing.po index 75c35f14622..c788cef35e2 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: 2012-08-23 02:03+0200\n" -"PO-Revision-Date: 2012-08-23 00:04+0000\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -17,18 +17,10 @@ msgstr "" "Language: he\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: templates/get.php:4 -msgid "Size" +#: templates/authenticate.php:4 +msgid "Password" msgstr "" -#: templates/get.php:5 -msgid "Modified" -msgstr "" - -#: templates/get.php:5 -msgid "Delete all" -msgstr "" - -#: templates/get.php:5 -msgid "Delete" +#: templates/authenticate.php:6 +msgid "Submit" msgstr "" diff --git a/l10n/he/settings.po b/l10n/he/settings.po index cd199ce76a6..8d4e790e9de 100644 --- a/l10n/he/settings.po +++ b/l10n/he/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-18 02:01+0200\n" -"PO-Revision-Date: 2012-08-18 00:02+0000\n" +"POT-Creation-Date: 2012-08-29 02:02+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+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" @@ -89,10 +89,46 @@ msgid "use systems cron service" msgstr "" #: templates/admin.php:39 +msgid "Share API" +msgstr "" + +#: templates/admin.php:44 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:45 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:49 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:50 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:54 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:55 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:58 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:60 +msgid "Allow users to only share with users in their groups" +msgstr "" + +#: templates/admin.php:67 msgid "Log" msgstr "יומן" -#: templates/admin.php:67 +#: templates/admin.php:95 msgid "More" msgstr "עוד" diff --git a/l10n/he/user_ldap.po b/l10n/he/user_ldap.po index 4dfdbd692b4..88370513135 100644 --- a/l10n/he/user_ldap.po +++ b/l10n/he/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -159,6 +159,12 @@ msgstr "" msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:31 +#: templates/settings.php:30 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:32 msgid "Help" msgstr "" diff --git a/l10n/hi/core.po b/l10n/hi/core.po new file mode 100644 index 00000000000..74c3cc9450c --- /dev/null +++ b/l10n/hi/core.po @@ -0,0 +1,273 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Sanjay Rabidas , 2012. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:02+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hi\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 +msgid "Application name not provided." +msgstr "" + +#: ajax/vcategories/add.php:29 +msgid "No category to add?" +msgstr "" + +#: ajax/vcategories/add.php:36 +msgid "This category already exists: " +msgstr "" + +#: js/jquery-ui-1.8.16.custom.min.js:511 +msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" +msgstr "" + +#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 +msgid "Settings" +msgstr "" + +#: js/js.js:586 +msgid "January" +msgstr "" + +#: js/js.js:586 +msgid "February" +msgstr "" + +#: js/js.js:586 +msgid "March" +msgstr "" + +#: js/js.js:586 +msgid "April" +msgstr "" + +#: js/js.js:586 +msgid "May" +msgstr "" + +#: js/js.js:586 +msgid "June" +msgstr "" + +#: js/js.js:587 +msgid "July" +msgstr "" + +#: js/js.js:587 +msgid "August" +msgstr "" + +#: js/js.js:587 +msgid "September" +msgstr "" + +#: js/js.js:587 +msgid "October" +msgstr "" + +#: js/js.js:587 +msgid "November" +msgstr "" + +#: js/js.js:587 +msgid "December" +msgstr "" + +#: js/oc-dialogs.js:143 js/oc-dialogs.js:163 +msgid "Cancel" +msgstr "" + +#: js/oc-dialogs.js:159 +msgid "No" +msgstr "" + +#: js/oc-dialogs.js:160 +msgid "Yes" +msgstr "" + +#: js/oc-dialogs.js:177 +msgid "Ok" +msgstr "" + +#: js/oc-vcategories.js:68 +msgid "No categories selected for deletion." +msgstr "" + +#: js/oc-vcategories.js:68 +msgid "Error" +msgstr "" + +#: lostpassword/index.php:26 +msgid "ownCloud password reset" +msgstr "" + +#: lostpassword/templates/email.php:1 +msgid "Use the following link to reset your password: {link}" +msgstr "" + +#: lostpassword/templates/lostpassword.php:3 +msgid "You will receive a link to reset your password via Email." +msgstr "" + +#: lostpassword/templates/lostpassword.php:5 +msgid "Requested" +msgstr "" + +#: lostpassword/templates/lostpassword.php:8 +msgid "Login failed!" +msgstr "" + +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:26 +#: templates/login.php:9 +msgid "Username" +msgstr "प्रयोक्ता का नाम" + +#: lostpassword/templates/lostpassword.php:15 +msgid "Request reset" +msgstr "" + +#: lostpassword/templates/resetpassword.php:4 +msgid "Your password was reset" +msgstr "" + +#: lostpassword/templates/resetpassword.php:5 +msgid "To login page" +msgstr "" + +#: lostpassword/templates/resetpassword.php:8 +msgid "New password" +msgstr "" + +#: lostpassword/templates/resetpassword.php:11 +msgid "Reset password" +msgstr "" + +#: strings.php:5 +msgid "Personal" +msgstr "" + +#: strings.php:6 +msgid "Users" +msgstr "" + +#: strings.php:7 +msgid "Apps" +msgstr "" + +#: strings.php:8 +msgid "Admin" +msgstr "" + +#: strings.php:9 +msgid "Help" +msgstr "" + +#: templates/403.php:12 +msgid "Access forbidden" +msgstr "" + +#: templates/404.php:12 +msgid "Cloud not found" +msgstr "क्लौड नहीं मिला " + +#: templates/edit_categories_dialog.php:4 +msgid "Edit categories" +msgstr "" + +#: templates/edit_categories_dialog.php:14 +msgid "Add" +msgstr "" + +#: templates/installation.php:24 +msgid "Create an admin account" +msgstr "व्यवस्थापक खाता बनाएँ" + +#: templates/installation.php:30 templates/login.php:13 +msgid "Password" +msgstr "पासवर्ड" + +#: templates/installation.php:36 +msgid "Advanced" +msgstr "उन्नत" + +#: templates/installation.php:38 +msgid "Data folder" +msgstr "" + +#: templates/installation.php:45 +msgid "Configure the database" +msgstr "डेटाबेस कॉन्फ़िगर करें " + +#: templates/installation.php:50 templates/installation.php:61 +#: templates/installation.php:71 templates/installation.php:81 +msgid "will be used" +msgstr "" + +#: templates/installation.php:93 +msgid "Database user" +msgstr "डेटाबेस उपयोगकर्ता" + +#: templates/installation.php:97 +msgid "Database password" +msgstr "डेटाबेस पासवर्ड" + +#: templates/installation.php:101 +msgid "Database name" +msgstr "" + +#: templates/installation.php:109 +msgid "Database tablespace" +msgstr "" + +#: templates/installation.php:115 +msgid "Database host" +msgstr "" + +#: templates/installation.php:120 +msgid "Finish setup" +msgstr "सेटअप समाप्त करे" + +#: templates/layout.guest.php:42 +msgid "web services under your control" +msgstr "" + +#: templates/layout.user.php:49 +msgid "Log out" +msgstr "" + +#: templates/login.php:6 +msgid "Lost your password?" +msgstr "" + +#: templates/login.php:17 +msgid "remember" +msgstr "" + +#: templates/login.php:18 +msgid "Log in" +msgstr "" + +#: templates/logout.php:1 +msgid "You are logged out." +msgstr "आप लोग आउट कर दिए गए हैं." + +#: templates/part.pagenavi.php:3 +msgid "prev" +msgstr "पिछला" + +#: templates/part.pagenavi.php:20 +msgid "next" +msgstr "अगला" diff --git a/l10n/hi/files.po b/l10n/hi/files.po new file mode 100644 index 00000000000..cc9a7bb2228 --- /dev/null +++ b/l10n/hi/files.po @@ -0,0 +1,218 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2011-08-13 02:19+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hi\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: ajax/upload.php:20 +msgid "There is no error, the file uploaded with success" +msgstr "" + +#: ajax/upload.php:21 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" +msgstr "" + +#: ajax/upload.php:22 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form" +msgstr "" + +#: ajax/upload.php:23 +msgid "The uploaded file was only partially uploaded" +msgstr "" + +#: ajax/upload.php:24 +msgid "No file was uploaded" +msgstr "" + +#: ajax/upload.php:25 +msgid "Missing a temporary folder" +msgstr "" + +#: ajax/upload.php:26 +msgid "Failed to write to disk" +msgstr "" + +#: appinfo/app.php:6 +msgid "Files" +msgstr "" + +#: js/fileactions.js:111 templates/index.php:56 +msgid "Delete" +msgstr "" + +#: js/filelist.js:141 +msgid "already exists" +msgstr "" + +#: js/filelist.js:141 +msgid "replace" +msgstr "" + +#: js/filelist.js:141 +msgid "cancel" +msgstr "" + +#: js/filelist.js:195 +msgid "replaced" +msgstr "" + +#: js/filelist.js:195 +msgid "with" +msgstr "" + +#: js/filelist.js:195 js/filelist.js:246 +msgid "undo" +msgstr "" + +#: js/filelist.js:246 +msgid "deleted" +msgstr "" + +#: js/files.js:171 +msgid "generating ZIP-file, it may take some time." +msgstr "" + +#: js/files.js:200 +msgid "Unable to upload your file as it is a directory or has 0 bytes" +msgstr "" + +#: js/files.js:200 +msgid "Upload Error" +msgstr "" + +#: js/files.js:228 js/files.js:319 js/files.js:348 +msgid "Pending" +msgstr "" + +#: js/files.js:333 +msgid "Upload cancelled." +msgstr "" + +#: js/files.js:457 +msgid "Invalid name, '/' is not allowed." +msgstr "" + +#: js/files.js:703 templates/index.php:55 +msgid "Size" +msgstr "" + +#: js/files.js:704 templates/index.php:56 +msgid "Modified" +msgstr "" + +#: js/files.js:731 +msgid "folder" +msgstr "" + +#: js/files.js:733 +msgid "folders" +msgstr "" + +#: js/files.js:741 +msgid "file" +msgstr "" + +#: js/files.js:743 +msgid "files" +msgstr "" + +#: templates/admin.php:5 +msgid "File handling" +msgstr "" + +#: templates/admin.php:7 +msgid "Maximum upload size" +msgstr "" + +#: templates/admin.php:7 +msgid "max. possible: " +msgstr "" + +#: templates/admin.php:9 +msgid "Needed for multi-file and folder downloads." +msgstr "" + +#: templates/admin.php:9 +msgid "Enable ZIP-download" +msgstr "" + +#: templates/admin.php:11 +msgid "0 is unlimited" +msgstr "" + +#: templates/admin.php:12 +msgid "Maximum input size for ZIP files" +msgstr "" + +#: templates/index.php:7 +msgid "New" +msgstr "" + +#: templates/index.php:9 +msgid "Text file" +msgstr "" + +#: templates/index.php:10 +msgid "Folder" +msgstr "" + +#: templates/index.php:11 +msgid "From url" +msgstr "" + +#: templates/index.php:21 +msgid "Upload" +msgstr "" + +#: templates/index.php:27 +msgid "Cancel upload" +msgstr "" + +#: templates/index.php:39 +msgid "Nothing in here. Upload something!" +msgstr "" + +#: templates/index.php:47 +msgid "Name" +msgstr "" + +#: templates/index.php:49 +msgid "Share" +msgstr "" + +#: templates/index.php:51 +msgid "Download" +msgstr "" + +#: templates/index.php:64 +msgid "Upload too large" +msgstr "" + +#: templates/index.php:66 +msgid "" +"The files you are trying to upload exceed the maximum size for file uploads " +"on this server." +msgstr "" + +#: templates/index.php:71 +msgid "Files are being scanned, please wait." +msgstr "" + +#: templates/index.php:74 +msgid "Current scanning" +msgstr "" diff --git a/l10n/hi/files_encryption.po b/l10n/hi/files_encryption.po new file mode 100644 index 00000000000..e6ff91a68b5 --- /dev/null +++ b/l10n/hi/files_encryption.po @@ -0,0 +1,34 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-12 22:33+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hi\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: templates/settings.php:3 +msgid "Encryption" +msgstr "" + +#: templates/settings.php:4 +msgid "Exclude the following file types from encryption" +msgstr "" + +#: templates/settings.php:5 +msgid "None" +msgstr "" + +#: templates/settings.php:10 +msgid "Enable Encryption" +msgstr "" diff --git a/l10n/hi/files_external.po b/l10n/hi/files_external.po new file mode 100644 index 00000000000..e27f4710d08 --- /dev/null +++ b/l10n/hi/files_external.po @@ -0,0 +1,82 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-12 22:34+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hi\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: templates/settings.php:3 +msgid "External Storage" +msgstr "" + +#: templates/settings.php:7 templates/settings.php:19 +msgid "Mount point" +msgstr "" + +#: templates/settings.php:8 +msgid "Backend" +msgstr "" + +#: templates/settings.php:9 +msgid "Configuration" +msgstr "" + +#: templates/settings.php:10 +msgid "Options" +msgstr "" + +#: templates/settings.php:11 +msgid "Applicable" +msgstr "" + +#: templates/settings.php:23 +msgid "Add mount point" +msgstr "" + +#: templates/settings.php:54 templates/settings.php:62 +msgid "None set" +msgstr "" + +#: templates/settings.php:63 +msgid "All Users" +msgstr "" + +#: templates/settings.php:64 +msgid "Groups" +msgstr "" + +#: templates/settings.php:69 +msgid "Users" +msgstr "" + +#: templates/settings.php:77 templates/settings.php:96 +msgid "Delete" +msgstr "" + +#: templates/settings.php:88 +msgid "SSL root certificates" +msgstr "" + +#: templates/settings.php:102 +msgid "Import Root Certificate" +msgstr "" + +#: templates/settings.php:108 +msgid "Enable User External Storage" +msgstr "" + +#: templates/settings.php:109 +msgid "Allow users to mount their own external storage" +msgstr "" diff --git a/l10n/hi/files_sharing.po b/l10n/hi/files_sharing.po new file mode 100644 index 00000000000..1aa869a1551 --- /dev/null +++ b/l10n/hi/files_sharing.po @@ -0,0 +1,26 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hi\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: templates/authenticate.php:4 +msgid "Password" +msgstr "" + +#: templates/authenticate.php:6 +msgid "Submit" +msgstr "" diff --git a/l10n/hi/files_versions.po b/l10n/hi/files_versions.po new file mode 100644 index 00000000000..f35accb51d3 --- /dev/null +++ b/l10n/hi/files_versions.po @@ -0,0 +1,26 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-12 22:37+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hi\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: js/settings-personal.js:31 +msgid "Expire all versions" +msgstr "" + +#: templates/settings.php:3 +msgid "Enable Files Versioning" +msgstr "" diff --git a/l10n/hi/lib.po b/l10n/hi/lib.po new file mode 100644 index 00000000000..5dabd1411df --- /dev/null +++ b/l10n/hi/lib.po @@ -0,0 +1,112 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2012-08-29 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:23+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hi\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: app.php:288 +msgid "Help" +msgstr "" + +#: app.php:295 +msgid "Personal" +msgstr "" + +#: app.php:300 +msgid "Settings" +msgstr "" + +#: app.php:305 +msgid "Users" +msgstr "" + +#: app.php:312 +msgid "Apps" +msgstr "" + +#: app.php:314 +msgid "Admin" +msgstr "" + +#: files.php:276 +msgid "ZIP download is turned off." +msgstr "" + +#: files.php:277 +msgid "Files need to be downloaded one by one." +msgstr "" + +#: files.php:277 files.php:302 +msgid "Back to Files" +msgstr "" + +#: files.php:301 +msgid "Selected files too large to generate zip file." +msgstr "" + +#: json.php:28 +msgid "Application is not enabled" +msgstr "" + +#: json.php:39 json.php:63 json.php:75 +msgid "Authentication error" +msgstr "" + +#: json.php:51 +msgid "Token expired. Please reload page." +msgstr "" + +#: template.php:86 +msgid "seconds ago" +msgstr "" + +#: template.php:87 +msgid "1 minute ago" +msgstr "" + +#: template.php:88 +#, php-format +msgid "%d minutes ago" +msgstr "" + +#: template.php:91 +msgid "today" +msgstr "" + +#: template.php:92 +msgid "yesterday" +msgstr "" + +#: template.php:93 +#, php-format +msgid "%d days ago" +msgstr "" + +#: template.php:94 +msgid "last month" +msgstr "" + +#: template.php:95 +msgid "months ago" +msgstr "" + +#: template.php:96 +msgid "last year" +msgstr "" + +#: template.php:97 +msgid "years ago" +msgstr "" diff --git a/l10n/hi/settings.po b/l10n/hi/settings.po new file mode 100644 index 00000000000..4dce9bbefae --- /dev/null +++ b/l10n/hi/settings.po @@ -0,0 +1,274 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2012-08-29 02:02+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hi\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: ajax/apps/ocs.php:23 +msgid "Unable to load list from App Store" +msgstr "" + +#: ajax/lostpassword.php:14 +msgid "Email saved" +msgstr "" + +#: ajax/lostpassword.php:16 +msgid "Invalid email" +msgstr "" + +#: ajax/openid.php:16 +msgid "OpenID Changed" +msgstr "" + +#: ajax/openid.php:18 ajax/setlanguage.php:20 ajax/setlanguage.php:23 +msgid "Invalid request" +msgstr "" + +#: ajax/removeuser.php:13 ajax/setquota.php:18 ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "" + +#: ajax/setlanguage.php:18 +msgid "Language changed" +msgstr "" + +#: js/apps.js:18 +msgid "Error" +msgstr "" + +#: js/apps.js:39 js/apps.js:73 +msgid "Disable" +msgstr "" + +#: js/apps.js:39 js/apps.js:62 +msgid "Enable" +msgstr "" + +#: js/personal.js:69 +msgid "Saving..." +msgstr "" + +#: personal.php:46 personal.php:47 +msgid "__language_name__" +msgstr "" + +#: templates/admin.php:14 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:29 +msgid "Cron" +msgstr "" + +#: templates/admin.php:31 +msgid "execute one task with each page loaded" +msgstr "" + +#: templates/admin.php:33 +msgid "cron.php is registered at a webcron service" +msgstr "" + +#: templates/admin.php:35 +msgid "use systems cron service" +msgstr "" + +#: templates/admin.php:39 +msgid "Share API" +msgstr "" + +#: templates/admin.php:44 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:45 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:49 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:50 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:54 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:55 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:58 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:60 +msgid "Allow users to only share with users in their groups" +msgstr "" + +#: templates/admin.php:67 +msgid "Log" +msgstr "" + +#: templates/admin.php:95 +msgid "More" +msgstr "" + +#: templates/apps.php:10 +msgid "Add your App" +msgstr "" + +#: templates/apps.php:26 +msgid "Select an App" +msgstr "" + +#: templates/apps.php:29 +msgid "See application page at apps.owncloud.com" +msgstr "" + +#: templates/apps.php:30 +msgid "-licensed" +msgstr "" + +#: templates/apps.php:30 +msgid "by" +msgstr "" + +#: templates/help.php:8 +msgid "Documentation" +msgstr "" + +#: templates/help.php:9 +msgid "Managing Big Files" +msgstr "" + +#: templates/help.php:10 +msgid "Ask a question" +msgstr "" + +#: templates/help.php:22 +msgid "Problems connecting to help database." +msgstr "" + +#: templates/help.php:23 +msgid "Go there manually." +msgstr "" + +#: templates/help.php:31 +msgid "Answer" +msgstr "" + +#: templates/personal.php:8 +msgid "You use" +msgstr "" + +#: templates/personal.php:8 +msgid "of the available" +msgstr "" + +#: templates/personal.php:12 +msgid "Desktop and Mobile Syncing Clients" +msgstr "" + +#: templates/personal.php:13 +msgid "Download" +msgstr "" + +#: templates/personal.php:19 +msgid "Your password got changed" +msgstr "" + +#: templates/personal.php:20 +msgid "Unable to change your password" +msgstr "" + +#: templates/personal.php:21 +msgid "Current password" +msgstr "" + +#: templates/personal.php:22 +msgid "New password" +msgstr "" + +#: templates/personal.php:23 +msgid "show" +msgstr "" + +#: templates/personal.php:24 +msgid "Change password" +msgstr "" + +#: templates/personal.php:30 +msgid "Email" +msgstr "" + +#: templates/personal.php:31 +msgid "Your email address" +msgstr "" + +#: templates/personal.php:32 +msgid "Fill in an email address to enable password recovery" +msgstr "" + +#: templates/personal.php:38 templates/personal.php:39 +msgid "Language" +msgstr "" + +#: templates/personal.php:44 +msgid "Help translate" +msgstr "" + +#: templates/personal.php:51 +msgid "use this address to connect to your ownCloud in your file manager" +msgstr "" + +#: templates/users.php:21 templates/users.php:76 +msgid "Name" +msgstr "" + +#: templates/users.php:23 templates/users.php:77 +msgid "Password" +msgstr "" + +#: templates/users.php:26 templates/users.php:78 templates/users.php:98 +msgid "Groups" +msgstr "" + +#: templates/users.php:32 +msgid "Create" +msgstr "" + +#: templates/users.php:35 +msgid "Default Quota" +msgstr "" + +#: templates/users.php:55 templates/users.php:138 +msgid "Other" +msgstr "" + +#: templates/users.php:80 templates/users.php:112 +msgid "Group Admin" +msgstr "" + +#: templates/users.php:82 +msgid "Quota" +msgstr "" + +#: templates/users.php:146 +msgid "Delete" +msgstr "" diff --git a/l10n/hi/user_ldap.po b/l10n/hi/user_ldap.po new file mode 100644 index 00000000000..1ca5b6139b6 --- /dev/null +++ b/l10n/hi/user_ldap.po @@ -0,0 +1,170 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hi\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: templates/settings.php:8 +msgid "Host" +msgstr "" + +#: templates/settings.php:8 +msgid "" +"You can omit the protocol, except you require SSL. Then start with ldaps://" +msgstr "" + +#: templates/settings.php:9 +msgid "Base DN" +msgstr "" + +#: templates/settings.php:9 +msgid "You can specify Base DN for users and groups in the Advanced tab" +msgstr "" + +#: templates/settings.php:10 +msgid "User DN" +msgstr "" + +#: templates/settings.php:10 +msgid "" +"The DN of the client user with which the bind shall be done, e.g. " +"uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " +"empty." +msgstr "" + +#: templates/settings.php:11 +msgid "Password" +msgstr "" + +#: templates/settings.php:11 +msgid "For anonymous access, leave DN and Password empty." +msgstr "" + +#: templates/settings.php:12 +msgid "User Login Filter" +msgstr "" + +#: templates/settings.php:12 +#, php-format +msgid "" +"Defines the filter to apply, when login is attempted. %%uid replaces the " +"username in the login action." +msgstr "" + +#: templates/settings.php:12 +#, php-format +msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" +msgstr "" + +#: templates/settings.php:13 +msgid "User List Filter" +msgstr "" + +#: templates/settings.php:13 +msgid "Defines the filter to apply, when retrieving users." +msgstr "" + +#: templates/settings.php:13 +msgid "without any placeholder, e.g. \"objectClass=person\"." +msgstr "" + +#: templates/settings.php:14 +msgid "Group Filter" +msgstr "" + +#: templates/settings.php:14 +msgid "Defines the filter to apply, when retrieving groups." +msgstr "" + +#: templates/settings.php:14 +msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." +msgstr "" + +#: templates/settings.php:17 +msgid "Port" +msgstr "" + +#: templates/settings.php:18 +msgid "Base User Tree" +msgstr "" + +#: templates/settings.php:19 +msgid "Base Group Tree" +msgstr "" + +#: templates/settings.php:20 +msgid "Group-Member association" +msgstr "" + +#: templates/settings.php:21 +msgid "Use TLS" +msgstr "" + +#: templates/settings.php:21 +msgid "Do not use it for SSL connections, it will fail." +msgstr "" + +#: templates/settings.php:22 +msgid "Case insensitve LDAP server (Windows)" +msgstr "" + +#: templates/settings.php:23 +msgid "Turn off SSL certificate validation." +msgstr "" + +#: templates/settings.php:23 +msgid "" +"If connection only works with this option, import the LDAP server's SSL " +"certificate in your ownCloud server." +msgstr "" + +#: templates/settings.php:23 +msgid "Not recommended, use for testing only." +msgstr "" + +#: templates/settings.php:24 +msgid "User Display Name Field" +msgstr "" + +#: templates/settings.php:24 +msgid "The LDAP attribute to use to generate the user`s ownCloud name." +msgstr "" + +#: templates/settings.php:25 +msgid "Group Display Name Field" +msgstr "" + +#: templates/settings.php:25 +msgid "The LDAP attribute to use to generate the groups`s ownCloud name." +msgstr "" + +#: templates/settings.php:27 +msgid "in bytes" +msgstr "" + +#: templates/settings.php:29 +msgid "in seconds. A change empties the cache." +msgstr "" + +#: templates/settings.php:30 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:32 +msgid "Help" +msgstr "" diff --git a/l10n/hr/core.po b/l10n/hr/core.po index f4c681a5e1f..f8abf1ae89f 100644 --- a/l10n/hr/core.po +++ b/l10n/hr/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-28 02:01+0200\n" -"PO-Revision-Date: 2012-08-28 00:02+0000\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -36,55 +36,55 @@ msgstr "Ova kategorija već postoji: " msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -#: js/js.js:190 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 msgid "Settings" msgstr "Postavke" -#: js/js.js:575 +#: js/js.js:586 msgid "January" msgstr "Siječanj" -#: js/js.js:575 +#: js/js.js:586 msgid "February" msgstr "Veljača" -#: js/js.js:575 +#: js/js.js:586 msgid "March" msgstr "Ožujak" -#: js/js.js:575 +#: js/js.js:586 msgid "April" msgstr "Travanj" -#: js/js.js:575 +#: js/js.js:586 msgid "May" msgstr "Svibanj" -#: js/js.js:575 +#: js/js.js:586 msgid "June" msgstr "Lipanj" -#: js/js.js:576 +#: js/js.js:587 msgid "July" msgstr "Srpanj" -#: js/js.js:576 +#: js/js.js:587 msgid "August" msgstr "Kolovoz" -#: js/js.js:576 +#: js/js.js:587 msgid "September" msgstr "Rujan" -#: js/js.js:576 +#: js/js.js:587 msgid "October" msgstr "Listopad" -#: js/js.js:576 +#: js/js.js:587 msgid "November" msgstr "Studeni" -#: js/js.js:576 +#: js/js.js:587 msgid "December" msgstr "Prosinac" diff --git a/l10n/hr/files_sharing.po b/l10n/hr/files_sharing.po index 902174e80eb..f4796f125aa 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: 2012-08-23 02:03+0200\n" -"PO-Revision-Date: 2012-08-23 00:04+0000\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -17,18 +17,10 @@ msgstr "" "Language: hr\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n" -#: templates/get.php:4 -msgid "Size" +#: templates/authenticate.php:4 +msgid "Password" msgstr "" -#: templates/get.php:5 -msgid "Modified" -msgstr "" - -#: templates/get.php:5 -msgid "Delete all" -msgstr "" - -#: templates/get.php:5 -msgid "Delete" +#: templates/authenticate.php:6 +msgid "Submit" msgstr "" diff --git a/l10n/hr/settings.po b/l10n/hr/settings.po index 38e378b862c..231bc8692a8 100644 --- a/l10n/hr/settings.po +++ b/l10n/hr/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-28 02:01+0200\n" -"PO-Revision-Date: 2012-08-27 13:20+0000\n" -"Last-Translator: fposavec \n" +"POT-Creation-Date: 2012-08-29 02:02+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -89,10 +89,46 @@ msgid "use systems cron service" msgstr "koristi sistemski cron servis" #: templates/admin.php:39 +msgid "Share API" +msgstr "" + +#: templates/admin.php:44 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:45 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:49 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:50 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:54 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:55 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:58 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:60 +msgid "Allow users to only share with users in their groups" +msgstr "" + +#: templates/admin.php:67 msgid "Log" msgstr "dnevnik" -#: templates/admin.php:67 +#: templates/admin.php:95 msgid "More" msgstr "više" diff --git a/l10n/hr/user_ldap.po b/l10n/hr/user_ldap.po index 14dcd91c011..a7e026ac791 100644 --- a/l10n/hr/user_ldap.po +++ b/l10n/hr/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -159,6 +159,12 @@ msgstr "" msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:31 +#: templates/settings.php:30 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:32 msgid "Help" msgstr "" diff --git a/l10n/hu_HU/core.po b/l10n/hu_HU/core.po index 965d3bd8a29..1b75403809e 100644 --- a/l10n/hu_HU/core.po +++ b/l10n/hu_HU/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-28 02:01+0200\n" -"PO-Revision-Date: 2012-08-28 00:02+0000\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -36,55 +36,55 @@ msgstr "Ez a kategória már létezik" msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -#: js/js.js:190 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 msgid "Settings" msgstr "Beállítások" -#: js/js.js:575 +#: js/js.js:586 msgid "January" msgstr "Január" -#: js/js.js:575 +#: js/js.js:586 msgid "February" msgstr "Február" -#: js/js.js:575 +#: js/js.js:586 msgid "March" msgstr "Március" -#: js/js.js:575 +#: js/js.js:586 msgid "April" msgstr "Április" -#: js/js.js:575 +#: js/js.js:586 msgid "May" msgstr "Május" -#: js/js.js:575 +#: js/js.js:586 msgid "June" msgstr "Június" -#: js/js.js:576 +#: js/js.js:587 msgid "July" msgstr "Július" -#: js/js.js:576 +#: js/js.js:587 msgid "August" msgstr "Augusztus" -#: js/js.js:576 +#: js/js.js:587 msgid "September" msgstr "Szeptember" -#: js/js.js:576 +#: js/js.js:587 msgid "October" msgstr "Október" -#: js/js.js:576 +#: js/js.js:587 msgid "November" msgstr "November" -#: js/js.js:576 +#: js/js.js:587 msgid "December" msgstr "December" diff --git a/l10n/hu_HU/files_sharing.po b/l10n/hu_HU/files_sharing.po index 6d274d38236..5c57c9e3fee 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: 2012-08-26 19:46+0200\n" -"PO-Revision-Date: 2012-08-26 09:23+0000\n" -"Last-Translator: Csaba Orban \n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" +"Last-Translator: I Robot \n" "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" @@ -18,18 +18,10 @@ msgstr "" "Language: hu_HU\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: templates/get.php:4 -msgid "Size" -msgstr "Méret" +#: templates/authenticate.php:4 +msgid "Password" +msgstr "" -#: templates/get.php:5 -msgid "Modified" -msgstr "Módosítva" - -#: templates/get.php:5 -msgid "Delete all" -msgstr "Összes törlése" - -#: templates/get.php:5 -msgid "Delete" -msgstr "Törlés" +#: templates/authenticate.php:6 +msgid "Submit" +msgstr "" diff --git a/l10n/hu_HU/settings.po b/l10n/hu_HU/settings.po index 0b5b94d6c6c..dc78ebac659 100644 --- a/l10n/hu_HU/settings.po +++ b/l10n/hu_HU/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-18 02:01+0200\n" -"PO-Revision-Date: 2012-08-18 00:02+0000\n" +"POT-Creation-Date: 2012-08-29 02:02+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+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" @@ -88,10 +88,46 @@ msgid "use systems cron service" msgstr "" #: templates/admin.php:39 +msgid "Share API" +msgstr "" + +#: templates/admin.php:44 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:45 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:49 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:50 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:54 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:55 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:58 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:60 +msgid "Allow users to only share with users in their groups" +msgstr "" + +#: templates/admin.php:67 msgid "Log" msgstr "Napló" -#: templates/admin.php:67 +#: templates/admin.php:95 msgid "More" msgstr "Tovább" diff --git a/l10n/hu_HU/user_ldap.po b/l10n/hu_HU/user_ldap.po index 87c015d08c7..cacb371b1b5 100644 --- a/l10n/hu_HU/user_ldap.po +++ b/l10n/hu_HU/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" +"Last-Translator: I Robot \n" "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" @@ -159,6 +159,12 @@ msgstr "" msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:31 +#: templates/settings.php:30 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:32 msgid "Help" msgstr "" diff --git a/l10n/hy/core.po b/l10n/hy/core.po index 5f319f687d7..41818fecde0 100644 --- a/l10n/hy/core.po +++ b/l10n/hy/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-28 02:01+0200\n" -"PO-Revision-Date: 2012-08-28 00:02+0000\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:02+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" @@ -33,55 +33,55 @@ msgstr "" msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "" -#: js/js.js:190 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 msgid "Settings" msgstr "" -#: js/js.js:575 +#: js/js.js:586 msgid "January" msgstr "" -#: js/js.js:575 +#: js/js.js:586 msgid "February" msgstr "" -#: js/js.js:575 +#: js/js.js:586 msgid "March" msgstr "" -#: js/js.js:575 +#: js/js.js:586 msgid "April" msgstr "" -#: js/js.js:575 +#: js/js.js:586 msgid "May" msgstr "" -#: js/js.js:575 +#: js/js.js:586 msgid "June" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "July" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "August" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "September" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "October" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "November" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "December" msgstr "" diff --git a/l10n/hy/files_sharing.po b/l10n/hy/files_sharing.po index d7ecd0cfa11..7adce26af9b 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: 2012-08-23 02:03+0200\n" -"PO-Revision-Date: 2012-08-23 00:04+0000\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" @@ -17,18 +17,10 @@ msgstr "" "Language: hy\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: templates/get.php:4 -msgid "Size" +#: templates/authenticate.php:4 +msgid "Password" msgstr "" -#: templates/get.php:5 -msgid "Modified" -msgstr "" - -#: templates/get.php:5 -msgid "Delete all" -msgstr "" - -#: templates/get.php:5 -msgid "Delete" +#: templates/authenticate.php:6 +msgid "Submit" msgstr "" diff --git a/l10n/hy/settings.po b/l10n/hy/settings.po index 13b4e166358..ed0acf72764 100644 --- a/l10n/hy/settings.po +++ b/l10n/hy/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-18 02:01+0200\n" -"PO-Revision-Date: 2012-08-18 00:02+0000\n" +"POT-Creation-Date: 2012-08-29 02:02+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+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" @@ -86,10 +86,46 @@ msgid "use systems cron service" msgstr "" #: templates/admin.php:39 -msgid "Log" +msgid "Share API" +msgstr "" + +#: templates/admin.php:44 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:45 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:49 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:50 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:54 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:55 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:58 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:60 +msgid "Allow users to only share with users in their groups" msgstr "" #: templates/admin.php:67 +msgid "Log" +msgstr "" + +#: templates/admin.php:95 msgid "More" msgstr "" diff --git a/l10n/hy/user_ldap.po b/l10n/hy/user_ldap.po index 78202c352c0..438a2108b76 100644 --- a/l10n/hy/user_ldap.po +++ b/l10n/hy/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -159,6 +159,12 @@ msgstr "" msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:31 +#: templates/settings.php:30 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:32 msgid "Help" msgstr "" diff --git a/l10n/ia/core.po b/l10n/ia/core.po index 2aa2484da69..3a3a12b5707 100644 --- a/l10n/ia/core.po +++ b/l10n/ia/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-28 02:01+0200\n" -"PO-Revision-Date: 2012-08-28 00:02+0000\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -34,55 +34,55 @@ msgstr "Iste categoria jam existe:" msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "" -#: js/js.js:190 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 msgid "Settings" msgstr "Configurationes" -#: js/js.js:575 +#: js/js.js:586 msgid "January" msgstr "" -#: js/js.js:575 +#: js/js.js:586 msgid "February" msgstr "" -#: js/js.js:575 +#: js/js.js:586 msgid "March" msgstr "" -#: js/js.js:575 +#: js/js.js:586 msgid "April" msgstr "" -#: js/js.js:575 +#: js/js.js:586 msgid "May" msgstr "" -#: js/js.js:575 +#: js/js.js:586 msgid "June" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "July" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "August" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "September" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "October" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "November" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "December" msgstr "" diff --git a/l10n/ia/files_sharing.po b/l10n/ia/files_sharing.po index 55cfbbcf2ea..133cd801279 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: 2012-08-23 02:03+0200\n" -"PO-Revision-Date: 2012-08-23 00:04+0000\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -17,18 +17,10 @@ msgstr "" "Language: ia\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: templates/get.php:4 -msgid "Size" +#: templates/authenticate.php:4 +msgid "Password" msgstr "" -#: templates/get.php:5 -msgid "Modified" -msgstr "" - -#: templates/get.php:5 -msgid "Delete all" -msgstr "" - -#: templates/get.php:5 -msgid "Delete" +#: templates/authenticate.php:6 +msgid "Submit" msgstr "" diff --git a/l10n/ia/settings.po b/l10n/ia/settings.po index fe56aae5b90..c6db8d713a5 100644 --- a/l10n/ia/settings.po +++ b/l10n/ia/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-18 02:01+0200\n" -"PO-Revision-Date: 2012-08-18 00:02+0000\n" +"POT-Creation-Date: 2012-08-29 02:02+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+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" @@ -88,10 +88,46 @@ msgid "use systems cron service" msgstr "" #: templates/admin.php:39 +msgid "Share API" +msgstr "" + +#: templates/admin.php:44 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:45 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:49 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:50 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:54 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:55 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:58 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:60 +msgid "Allow users to only share with users in their groups" +msgstr "" + +#: templates/admin.php:67 msgid "Log" msgstr "Registro" -#: templates/admin.php:67 +#: templates/admin.php:95 msgid "More" msgstr "Plus" diff --git a/l10n/ia/user_ldap.po b/l10n/ia/user_ldap.po index f5bb1888f4f..73b531764ae 100644 --- a/l10n/ia/user_ldap.po +++ b/l10n/ia/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -159,6 +159,12 @@ msgstr "" msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:31 +#: templates/settings.php:30 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:32 msgid "Help" msgstr "" diff --git a/l10n/id/core.po b/l10n/id/core.po index 0e9358c26a0..ab4b3786727 100644 --- a/l10n/id/core.po +++ b/l10n/id/core.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Muhammad Fauzan , 2012. # Muhammad Panji , 2012. # Muhammad Radifar , 2011. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-28 02:01+0200\n" -"PO-Revision-Date: 2012-08-28 00:01+0000\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -35,77 +36,77 @@ msgstr "Kategori ini sudah ada:" msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "" -#: js/js.js:190 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 msgid "Settings" msgstr "Setelan" -#: js/js.js:575 +#: js/js.js:586 msgid "January" -msgstr "" +msgstr "Januari" -#: js/js.js:575 +#: js/js.js:586 msgid "February" -msgstr "" +msgstr "Februari" -#: js/js.js:575 +#: js/js.js:586 msgid "March" -msgstr "" +msgstr "Maret" -#: js/js.js:575 +#: js/js.js:586 msgid "April" -msgstr "" +msgstr "April" -#: js/js.js:575 +#: js/js.js:586 msgid "May" -msgstr "" +msgstr "Mei" -#: js/js.js:575 +#: js/js.js:586 msgid "June" -msgstr "" +msgstr "Juni" -#: js/js.js:576 +#: js/js.js:587 msgid "July" -msgstr "" +msgstr "Juli" -#: js/js.js:576 +#: js/js.js:587 msgid "August" -msgstr "" +msgstr "Agustus" -#: js/js.js:576 +#: js/js.js:587 msgid "September" -msgstr "" +msgstr "September" -#: js/js.js:576 +#: js/js.js:587 msgid "October" -msgstr "" +msgstr "Oktober" -#: js/js.js:576 +#: js/js.js:587 msgid "November" -msgstr "" +msgstr "Nopember" -#: js/js.js:576 +#: js/js.js:587 msgid "December" -msgstr "" +msgstr "Desember" #: js/oc-dialogs.js:143 js/oc-dialogs.js:163 msgid "Cancel" -msgstr "" +msgstr "Batalkan" #: js/oc-dialogs.js:159 msgid "No" -msgstr "" +msgstr "Tidak" #: js/oc-dialogs.js:160 msgid "Yes" -msgstr "" +msgstr "Ya" #: js/oc-dialogs.js:177 msgid "Ok" -msgstr "" +msgstr "Oke" #: js/oc-vcategories.js:68 msgid "No categories selected for deletion." -msgstr "" +msgstr "Tidak ada kategori terpilih untuk penghapusan." #: js/oc-vcategories.js:68 msgid "Error" diff --git a/l10n/id/files.po b/l10n/id/files.po index 3a96e71072d..4531640248f 100644 --- a/l10n/id/files.po +++ b/l10n/id/files.po @@ -3,15 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Muhammad Fauzan , 2012. # Muhammad Panji , 2012. # Muhammad Radifar , 2011. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-21 02:03+0200\n" -"PO-Revision-Date: 2012-08-21 00:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-28 12:13+0000\n" +"Last-Translator: Muhammad Fauzan \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,13 +26,13 @@ msgstr "Tidak ada galat, berkas sukses diunggah" #: ajax/upload.php:21 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" -msgstr "" +msgstr "File yang diunggah melampaui directive upload_max_filesize di php.ini" #: ajax/upload.php:22 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" -msgstr "" +msgstr "File yang diunggah melampaui directive MAX_FILE_SIZE yang disebutan dalam form HTML." #: ajax/upload.php:23 msgid "The uploaded file was only partially uploaded" @@ -53,61 +54,61 @@ msgstr "Gagal menulis ke disk" msgid "Files" msgstr "Berkas" -#: js/fileactions.js:107 templates/index.php:56 +#: js/fileactions.js:111 templates/index.php:56 msgid "Delete" msgstr "Hapus" #: js/filelist.js:141 msgid "already exists" -msgstr "" +msgstr "sudah ada" #: js/filelist.js:141 msgid "replace" -msgstr "" +msgstr "mengganti" #: js/filelist.js:141 msgid "cancel" -msgstr "" +msgstr "batalkan" #: js/filelist.js:195 msgid "replaced" -msgstr "" +msgstr "diganti" #: js/filelist.js:195 msgid "with" -msgstr "" +msgstr "dengan" #: js/filelist.js:195 js/filelist.js:246 msgid "undo" -msgstr "" +msgstr "batal dikerjakan" #: js/filelist.js:246 msgid "deleted" -msgstr "" +msgstr "dihapus" #: js/files.js:171 msgid "generating ZIP-file, it may take some time." -msgstr "" +msgstr "membuat berkas ZIP, ini mungkin memakan waktu." #: js/files.js:200 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "" +msgstr "Gagal mengunggah berkas anda karena berupa direktori atau mempunyai ukuran 0 byte" #: js/files.js:200 msgid "Upload Error" -msgstr "" +msgstr "Terjadi Galat Pengunggahan" #: js/files.js:228 js/files.js:319 js/files.js:348 msgid "Pending" -msgstr "" +msgstr "Menunggu" #: js/files.js:333 msgid "Upload cancelled." -msgstr "" +msgstr "Pengunggahan dibatalkan." #: js/files.js:457 msgid "Invalid name, '/' is not allowed." -msgstr "" +msgstr "Kesalahan nama, '/' tidak diijinkan." #: js/files.js:703 templates/index.php:55 msgid "Size" @@ -119,19 +120,19 @@ msgstr "Dimodifikasi" #: js/files.js:731 msgid "folder" -msgstr "" +msgstr "folder" #: js/files.js:733 msgid "folders" -msgstr "" +msgstr "folder-folder" #: js/files.js:741 msgid "file" -msgstr "" +msgstr "berkas" #: js/files.js:743 msgid "files" -msgstr "" +msgstr "berkas-berkas" #: templates/admin.php:5 msgid "File handling" diff --git a/l10n/id/files_sharing.po b/l10n/id/files_sharing.po index 0a4a395144c..93219e0d80b 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: 2012-08-23 02:03+0200\n" -"PO-Revision-Date: 2012-08-23 00:04+0000\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -17,18 +17,10 @@ msgstr "" "Language: id\n" "Plural-Forms: nplurals=1; plural=0\n" -#: templates/get.php:4 -msgid "Size" +#: templates/authenticate.php:4 +msgid "Password" msgstr "" -#: templates/get.php:5 -msgid "Modified" -msgstr "" - -#: templates/get.php:5 -msgid "Delete all" -msgstr "" - -#: templates/get.php:5 -msgid "Delete" +#: templates/authenticate.php:6 +msgid "Submit" msgstr "" diff --git a/l10n/id/settings.po b/l10n/id/settings.po index 8b4f28abc2e..f1daf56e28c 100644 --- a/l10n/id/settings.po +++ b/l10n/id/settings.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Muhammad Fauzan , 2012. # Muhammad Panji , 2012. # Muhammad Radifar , 2011. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-18 02:01+0200\n" -"PO-Revision-Date: 2012-08-18 00:02+0000\n" +"POT-Creation-Date: 2012-08-29 02:02+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+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" @@ -25,11 +26,11 @@ msgstr "" #: ajax/lostpassword.php:14 msgid "Email saved" -msgstr "" +msgstr "Email tersimpan" #: ajax/lostpassword.php:16 msgid "Invalid email" -msgstr "" +msgstr "Email tidak sah" #: ajax/openid.php:16 msgid "OpenID Changed" @@ -53,15 +54,15 @@ msgstr "" #: js/apps.js:39 js/apps.js:73 msgid "Disable" -msgstr "" +msgstr "NonAktifkan" #: js/apps.js:39 js/apps.js:62 msgid "Enable" -msgstr "" +msgstr "Aktifkan" #: js/personal.js:69 msgid "Saving..." -msgstr "" +msgstr "Menyimpan..." #: personal.php:46 personal.php:47 msgid "__language_name__" @@ -69,7 +70,7 @@ msgstr "__language_name__" #: templates/admin.php:14 msgid "Security Warning" -msgstr "" +msgstr "Peringatan Keamanan" #: templates/admin.php:29 msgid "Cron" @@ -88,10 +89,46 @@ msgid "use systems cron service" msgstr "" #: templates/admin.php:39 +msgid "Share API" +msgstr "" + +#: templates/admin.php:44 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:45 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:49 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:50 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:54 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:55 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:58 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:60 +msgid "Allow users to only share with users in their groups" +msgstr "" + +#: templates/admin.php:67 msgid "Log" msgstr "Log" -#: templates/admin.php:67 +#: templates/admin.php:95 msgid "More" msgstr "Lebih" @@ -105,7 +142,7 @@ msgstr "Pilih satu aplikasi" #: templates/apps.php:29 msgid "See application page at apps.owncloud.com" -msgstr "" +msgstr "Lihat halaman aplikasi di apps.owncloud.com" #: templates/apps.php:30 msgid "-licensed" @@ -229,7 +266,7 @@ msgstr "Lain-lain" #: templates/users.php:80 templates/users.php:112 msgid "Group Admin" -msgstr "" +msgstr "Admin Grup" #: templates/users.php:82 msgid "Quota" diff --git a/l10n/id/user_ldap.po b/l10n/id/user_ldap.po index 528094a8b2b..5d7f42dc6af 100644 --- a/l10n/id/user_ldap.po +++ b/l10n/id/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -159,6 +159,12 @@ msgstr "" msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:31 +#: templates/settings.php:30 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:32 msgid "Help" msgstr "" diff --git a/l10n/id_ID/core.po b/l10n/id_ID/core.po index cd8e40cd221..faade1ace9c 100644 --- a/l10n/id_ID/core.po +++ b/l10n/id_ID/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-28 02:01+0200\n" -"PO-Revision-Date: 2012-08-28 00:02+0000\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (Indonesia) (http://www.transifex.com/projects/p/owncloud/language/id_ID/)\n" "MIME-Version: 1.0\n" @@ -33,55 +33,55 @@ msgstr "" msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "" -#: js/js.js:190 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 msgid "Settings" msgstr "" -#: js/js.js:575 +#: js/js.js:586 msgid "January" msgstr "" -#: js/js.js:575 +#: js/js.js:586 msgid "February" msgstr "" -#: js/js.js:575 +#: js/js.js:586 msgid "March" msgstr "" -#: js/js.js:575 +#: js/js.js:586 msgid "April" msgstr "" -#: js/js.js:575 +#: js/js.js:586 msgid "May" msgstr "" -#: js/js.js:575 +#: js/js.js:586 msgid "June" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "July" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "August" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "September" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "October" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "November" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "December" msgstr "" diff --git a/l10n/id_ID/files_sharing.po b/l10n/id_ID/files_sharing.po index fdba039609d..b1ac99e2e68 100644 --- a/l10n/id_ID/files_sharing.po +++ b/l10n/id_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: 2012-08-23 02:03+0200\n" -"PO-Revision-Date: 2012-08-23 00:04+0000\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (Indonesia) (http://www.transifex.com/projects/p/owncloud/language/id_ID/)\n" "MIME-Version: 1.0\n" @@ -17,18 +17,10 @@ msgstr "" "Language: id_ID\n" "Plural-Forms: nplurals=1; plural=0\n" -#: templates/get.php:4 -msgid "Size" +#: templates/authenticate.php:4 +msgid "Password" msgstr "" -#: templates/get.php:5 -msgid "Modified" -msgstr "" - -#: templates/get.php:5 -msgid "Delete all" -msgstr "" - -#: templates/get.php:5 -msgid "Delete" +#: templates/authenticate.php:6 +msgid "Submit" msgstr "" diff --git a/l10n/id_ID/settings.po b/l10n/id_ID/settings.po index e6873fc49b4..68045a27405 100644 --- a/l10n/id_ID/settings.po +++ b/l10n/id_ID/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-18 02:01+0200\n" -"PO-Revision-Date: 2012-08-18 00:02+0000\n" +"POT-Creation-Date: 2012-08-29 02:02+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (Indonesia) (http://www.transifex.com/projects/p/owncloud/language/id_ID/)\n" "MIME-Version: 1.0\n" @@ -86,10 +86,46 @@ msgid "use systems cron service" msgstr "" #: templates/admin.php:39 -msgid "Log" +msgid "Share API" +msgstr "" + +#: templates/admin.php:44 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:45 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:49 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:50 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:54 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:55 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:58 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:60 +msgid "Allow users to only share with users in their groups" msgstr "" #: templates/admin.php:67 +msgid "Log" +msgstr "" + +#: templates/admin.php:95 msgid "More" msgstr "" diff --git a/l10n/id_ID/user_ldap.po b/l10n/id_ID/user_ldap.po index eb078008f53..52cb5aac1a9 100644 --- a/l10n/id_ID/user_ldap.po +++ b/l10n/id_ID/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Indonesian (Indonesia) (http://www.transifex.com/projects/p/owncloud/language/id_ID/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -159,6 +159,12 @@ msgstr "" msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:31 +#: templates/settings.php:30 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:32 msgid "Help" msgstr "" diff --git a/l10n/it/core.po b/l10n/it/core.po index fb8cb131475..146f6faa711 100644 --- a/l10n/it/core.po +++ b/l10n/it/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-28 02:01+0200\n" -"PO-Revision-Date: 2012-08-28 00:01+0000\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:02+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" @@ -38,55 +38,55 @@ msgstr "Questa categoria esiste già: " msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -#: js/js.js:190 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 msgid "Settings" msgstr "Impostazioni" -#: js/js.js:575 +#: js/js.js:586 msgid "January" msgstr "Gennaio" -#: js/js.js:575 +#: js/js.js:586 msgid "February" msgstr "Febbraio" -#: js/js.js:575 +#: js/js.js:586 msgid "March" msgstr "Marzo" -#: js/js.js:575 +#: js/js.js:586 msgid "April" msgstr "Aprile" -#: js/js.js:575 +#: js/js.js:586 msgid "May" msgstr "Maggio" -#: js/js.js:575 +#: js/js.js:586 msgid "June" msgstr "Giugno" -#: js/js.js:576 +#: js/js.js:587 msgid "July" msgstr "Luglio" -#: js/js.js:576 +#: js/js.js:587 msgid "August" msgstr "Agosto" -#: js/js.js:576 +#: js/js.js:587 msgid "September" msgstr "Settembre" -#: js/js.js:576 +#: js/js.js:587 msgid "October" msgstr "Ottobre" -#: js/js.js:576 +#: js/js.js:587 msgid "November" msgstr "Novembre" -#: js/js.js:576 +#: js/js.js:587 msgid "December" msgstr "Dicembre" @@ -185,7 +185,7 @@ msgstr "Accesso negato" #: templates/404.php:12 msgid "Cloud not found" -msgstr "Cloud non trovata" +msgstr "Nuvola non trovata" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" @@ -218,7 +218,7 @@ msgstr "Configura il database" #: templates/installation.php:50 templates/installation.php:61 #: templates/installation.php:71 templates/installation.php:81 msgid "will be used" -msgstr "sarà usato" +msgstr "sarà utilizzato" #: templates/installation.php:93 msgid "Database user" diff --git a/l10n/it/files_sharing.po b/l10n/it/files_sharing.po index 94313868adf..e4afbded989 100644 --- a/l10n/it/files_sharing.po +++ b/l10n/it/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: 2012-08-23 02:03+0200\n" -"PO-Revision-Date: 2012-08-23 00:04+0000\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -18,18 +18,10 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: templates/get.php:4 -msgid "Size" -msgstr "Dimensione" +#: templates/authenticate.php:4 +msgid "Password" +msgstr "" -#: templates/get.php:5 -msgid "Modified" -msgstr "Modificato" - -#: templates/get.php:5 -msgid "Delete all" -msgstr "Elimina tutto" - -#: templates/get.php:5 -msgid "Delete" -msgstr "Eliminazione" +#: templates/authenticate.php:6 +msgid "Submit" +msgstr "" diff --git a/l10n/it/settings.po b/l10n/it/settings.po index b14c9fcd474..5e3956fdfd1 100644 --- a/l10n/it/settings.po +++ b/l10n/it/settings.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-23 02:03+0200\n" -"PO-Revision-Date: 2012-08-22 20:01+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2012-08-29 02:02+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -93,10 +93,46 @@ msgid "use systems cron service" msgstr "usa il servizio cron di sistema" #: templates/admin.php:39 +msgid "Share API" +msgstr "" + +#: templates/admin.php:44 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:45 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:49 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:50 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:54 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:55 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:58 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:60 +msgid "Allow users to only share with users in their groups" +msgstr "" + +#: templates/admin.php:67 msgid "Log" msgstr "Registro" -#: templates/admin.php:67 +#: templates/admin.php:95 msgid "More" msgstr "Altro" diff --git a/l10n/it/user_ldap.po b/l10n/it/user_ldap.po index e99e56fc15c..ea2ef09865c 100644 --- a/l10n/it/user_ldap.po +++ b/l10n/it/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: 2012-08-23 02:03+0200\n" -"PO-Revision-Date: 2012-08-22 20:31+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" +"Last-Translator: I Robot \n" "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" @@ -161,6 +161,12 @@ msgstr "in byte" msgid "in seconds. A change empties the cache." msgstr "in secondi. Il cambio svuota la cache." -#: templates/settings.php:31 +#: templates/settings.php:30 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:32 msgid "Help" msgstr "Aiuto" diff --git a/l10n/ja_JP/core.po b/l10n/ja_JP/core.po index f1f2e5da9f8..85eff9b29f2 100644 --- a/l10n/ja_JP/core.po +++ b/l10n/ja_JP/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-28 02:01+0200\n" -"PO-Revision-Date: 2012-08-28 00:02+0000\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" @@ -35,55 +35,55 @@ msgstr "このカテゴリはすでに存在します: " msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -#: js/js.js:190 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 msgid "Settings" msgstr "設定" -#: js/js.js:575 +#: js/js.js:586 msgid "January" msgstr "1月" -#: js/js.js:575 +#: js/js.js:586 msgid "February" msgstr "2月" -#: js/js.js:575 +#: js/js.js:586 msgid "March" msgstr "3月" -#: js/js.js:575 +#: js/js.js:586 msgid "April" msgstr "4月" -#: js/js.js:575 +#: js/js.js:586 msgid "May" msgstr "5月" -#: js/js.js:575 +#: js/js.js:586 msgid "June" msgstr "6月" -#: js/js.js:576 +#: js/js.js:587 msgid "July" msgstr "7月" -#: js/js.js:576 +#: js/js.js:587 msgid "August" msgstr "8月" -#: js/js.js:576 +#: js/js.js:587 msgid "September" msgstr "9月" -#: js/js.js:576 +#: js/js.js:587 msgid "October" msgstr "10月" -#: js/js.js:576 +#: js/js.js:587 msgid "November" msgstr "11月" -#: js/js.js:576 +#: js/js.js:587 msgid "December" msgstr "12月" diff --git a/l10n/ja_JP/files_sharing.po b/l10n/ja_JP/files_sharing.po index b76508218b7..04cd99c2f3c 100644 --- a/l10n/ja_JP/files_sharing.po +++ b/l10n/ja_JP/files_sharing.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-23 02:03+0200\n" -"PO-Revision-Date: 2012-08-23 00:04+0000\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" @@ -19,18 +19,10 @@ msgstr "" "Language: ja_JP\n" "Plural-Forms: nplurals=1; plural=0\n" -#: templates/get.php:4 -msgid "Size" -msgstr "サイズ" +#: templates/authenticate.php:4 +msgid "Password" +msgstr "" -#: templates/get.php:5 -msgid "Modified" -msgstr "変更" - -#: templates/get.php:5 -msgid "Delete all" -msgstr "すべて削除" - -#: templates/get.php:5 -msgid "Delete" -msgstr "削除" +#: templates/authenticate.php:6 +msgid "Submit" +msgstr "" diff --git a/l10n/ja_JP/settings.po b/l10n/ja_JP/settings.po index d269151c249..18f0f4733dd 100644 --- a/l10n/ja_JP/settings.po +++ b/l10n/ja_JP/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-21 02:03+0200\n" -"PO-Revision-Date: 2012-08-20 01:31+0000\n" -"Last-Translator: Daisuke Deguchi \n" +"POT-Creation-Date: 2012-08-29 02:02+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+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" @@ -88,10 +88,46 @@ msgid "use systems cron service" msgstr "システムのcronサービスを使用" #: templates/admin.php:39 +msgid "Share API" +msgstr "" + +#: templates/admin.php:44 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:45 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:49 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:50 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:54 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:55 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:58 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:60 +msgid "Allow users to only share with users in their groups" +msgstr "" + +#: templates/admin.php:67 msgid "Log" msgstr "ログ" -#: templates/admin.php:67 +#: templates/admin.php:95 msgid "More" msgstr "もっと" diff --git a/l10n/ja_JP/user_ldap.po b/l10n/ja_JP/user_ldap.po index 5c22b913b44..9b43e88d472 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: 2012-08-17 00:44+0200\n" -"PO-Revision-Date: 2012-08-16 05:33+0000\n" -"Last-Translator: Daisuke Deguchi \n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" +"Last-Translator: I Robot \n" "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" @@ -161,6 +161,12 @@ msgstr "バイト" msgid "in seconds. A change empties the cache." msgstr "秒。変更後にキャッシュがクリアされます。" -#: templates/settings.php:31 +#: templates/settings.php:30 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:32 msgid "Help" msgstr "ヘルプ" diff --git a/l10n/ko/core.po b/l10n/ko/core.po index 3e82381d03c..5ad977ca6b2 100644 --- a/l10n/ko/core.po +++ b/l10n/ko/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-28 02:01+0200\n" -"PO-Revision-Date: 2012-08-28 00:02+0000\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -35,55 +35,55 @@ msgstr "이 카테고리는 이미 존재합니다:" msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -#: js/js.js:190 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 msgid "Settings" msgstr "설정" -#: js/js.js:575 +#: js/js.js:586 msgid "January" msgstr "1월" -#: js/js.js:575 +#: js/js.js:586 msgid "February" msgstr "2월" -#: js/js.js:575 +#: js/js.js:586 msgid "March" msgstr "3월" -#: js/js.js:575 +#: js/js.js:586 msgid "April" msgstr "4월" -#: js/js.js:575 +#: js/js.js:586 msgid "May" msgstr "5월" -#: js/js.js:575 +#: js/js.js:586 msgid "June" msgstr "6월" -#: js/js.js:576 +#: js/js.js:587 msgid "July" msgstr "7월" -#: js/js.js:576 +#: js/js.js:587 msgid "August" msgstr "8월" -#: js/js.js:576 +#: js/js.js:587 msgid "September" msgstr "9월" -#: js/js.js:576 +#: js/js.js:587 msgid "October" msgstr "10월" -#: js/js.js:576 +#: js/js.js:587 msgid "November" msgstr "11월" -#: js/js.js:576 +#: js/js.js:587 msgid "December" msgstr "12월" diff --git a/l10n/ko/files_sharing.po b/l10n/ko/files_sharing.po index 970803e48ae..b8e11e75eed 100644 --- a/l10n/ko/files_sharing.po +++ b/l10n/ko/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-23 02:03+0200\n" -"PO-Revision-Date: 2012-08-23 00:04+0000\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -17,18 +17,10 @@ msgstr "" "Language: ko\n" "Plural-Forms: nplurals=1; plural=0\n" -#: templates/get.php:4 -msgid "Size" +#: templates/authenticate.php:4 +msgid "Password" msgstr "" -#: templates/get.php:5 -msgid "Modified" -msgstr "" - -#: templates/get.php:5 -msgid "Delete all" -msgstr "" - -#: templates/get.php:5 -msgid "Delete" +#: templates/authenticate.php:6 +msgid "Submit" msgstr "" diff --git a/l10n/ko/settings.po b/l10n/ko/settings.po index a4bfa5dacae..fd12d48d5e8 100644 --- a/l10n/ko/settings.po +++ b/l10n/ko/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-18 02:01+0200\n" -"PO-Revision-Date: 2012-08-18 00:02+0000\n" +"POT-Creation-Date: 2012-08-29 02:02+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+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" @@ -88,10 +88,46 @@ msgid "use systems cron service" msgstr "" #: templates/admin.php:39 +msgid "Share API" +msgstr "" + +#: templates/admin.php:44 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:45 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:49 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:50 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:54 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:55 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:58 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:60 +msgid "Allow users to only share with users in their groups" +msgstr "" + +#: templates/admin.php:67 msgid "Log" msgstr "로그" -#: templates/admin.php:67 +#: templates/admin.php:95 msgid "More" msgstr "더" diff --git a/l10n/ko/user_ldap.po b/l10n/ko/user_ldap.po index 0cc01bfddf2..cf6aa7842da 100644 --- a/l10n/ko/user_ldap.po +++ b/l10n/ko/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" +"Last-Translator: I Robot \n" "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" @@ -159,6 +159,12 @@ msgstr "" msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:31 +#: templates/settings.php:30 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:32 msgid "Help" msgstr "" diff --git a/l10n/lb/core.po b/l10n/lb/core.po index 318ccf02e6c..5a897336111 100644 --- a/l10n/lb/core.po +++ b/l10n/lb/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-28 02:01+0200\n" -"PO-Revision-Date: 2012-08-28 00:02+0000\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -34,55 +34,55 @@ msgstr "Des Kategorie existéiert schonn:" msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "" -#: js/js.js:190 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 msgid "Settings" msgstr "Astellungen" -#: js/js.js:575 +#: js/js.js:586 msgid "January" msgstr "" -#: js/js.js:575 +#: js/js.js:586 msgid "February" msgstr "" -#: js/js.js:575 +#: js/js.js:586 msgid "March" msgstr "" -#: js/js.js:575 +#: js/js.js:586 msgid "April" msgstr "" -#: js/js.js:575 +#: js/js.js:586 msgid "May" msgstr "" -#: js/js.js:575 +#: js/js.js:586 msgid "June" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "July" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "August" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "September" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "October" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "November" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "December" msgstr "" diff --git a/l10n/lb/files_sharing.po b/l10n/lb/files_sharing.po index ca81053d9a2..955cca498b2 100644 --- a/l10n/lb/files_sharing.po +++ b/l10n/lb/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: 2012-08-23 02:03+0200\n" -"PO-Revision-Date: 2012-08-23 00:04+0000\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -17,18 +17,10 @@ msgstr "" "Language: lb\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: templates/get.php:4 -msgid "Size" +#: templates/authenticate.php:4 +msgid "Password" msgstr "" -#: templates/get.php:5 -msgid "Modified" -msgstr "" - -#: templates/get.php:5 -msgid "Delete all" -msgstr "" - -#: templates/get.php:5 -msgid "Delete" +#: templates/authenticate.php:6 +msgid "Submit" msgstr "" diff --git a/l10n/lb/settings.po b/l10n/lb/settings.po index 6b1e939e537..696998daa29 100644 --- a/l10n/lb/settings.po +++ b/l10n/lb/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-18 02:01+0200\n" -"PO-Revision-Date: 2012-08-18 00:02+0000\n" +"POT-Creation-Date: 2012-08-29 02:02+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+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" @@ -87,10 +87,46 @@ msgid "use systems cron service" msgstr "" #: templates/admin.php:39 +msgid "Share API" +msgstr "" + +#: templates/admin.php:44 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:45 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:49 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:50 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:54 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:55 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:58 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:60 +msgid "Allow users to only share with users in their groups" +msgstr "" + +#: templates/admin.php:67 msgid "Log" msgstr "Log" -#: templates/admin.php:67 +#: templates/admin.php:95 msgid "More" msgstr "Méi" diff --git a/l10n/lb/user_ldap.po b/l10n/lb/user_ldap.po index 75252b76c95..ea1a1452c6f 100644 --- a/l10n/lb/user_ldap.po +++ b/l10n/lb/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -159,6 +159,12 @@ msgstr "" msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:31 +#: templates/settings.php:30 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:32 msgid "Help" msgstr "" diff --git a/l10n/lt_LT/core.po b/l10n/lt_LT/core.po index 6b69aa1d165..36a98b4d708 100644 --- a/l10n/lt_LT/core.po +++ b/l10n/lt_LT/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-28 02:01+0200\n" -"PO-Revision-Date: 2012-08-28 00:02+0000\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -34,55 +34,55 @@ msgstr "Tokia kategorija jau yra:" msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -#: js/js.js:190 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 msgid "Settings" msgstr "Nustatymai" -#: js/js.js:575 +#: js/js.js:586 msgid "January" msgstr "Sausis" -#: js/js.js:575 +#: js/js.js:586 msgid "February" msgstr "Vasaris" -#: js/js.js:575 +#: js/js.js:586 msgid "March" msgstr "Kovas" -#: js/js.js:575 +#: js/js.js:586 msgid "April" msgstr "Balandis" -#: js/js.js:575 +#: js/js.js:586 msgid "May" msgstr "Gegužė" -#: js/js.js:575 +#: js/js.js:586 msgid "June" msgstr "Birželis" -#: js/js.js:576 +#: js/js.js:587 msgid "July" msgstr "Liepa" -#: js/js.js:576 +#: js/js.js:587 msgid "August" msgstr "Rugpjūtis" -#: js/js.js:576 +#: js/js.js:587 msgid "September" msgstr "Rugsėjis" -#: js/js.js:576 +#: js/js.js:587 msgid "October" msgstr "Spalis" -#: js/js.js:576 +#: js/js.js:587 msgid "November" msgstr "Lapkritis" -#: js/js.js:576 +#: js/js.js:587 msgid "December" msgstr "Gruodis" diff --git a/l10n/lt_LT/files_sharing.po b/l10n/lt_LT/files_sharing.po index d1693bb806f..342d1091090 100644 --- a/l10n/lt_LT/files_sharing.po +++ b/l10n/lt_LT/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-23 02:03+0200\n" -"PO-Revision-Date: 2012-08-23 00:04+0000\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -18,18 +18,10 @@ msgstr "" "Language: lt_LT\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2)\n" -#: templates/get.php:4 -msgid "Size" -msgstr "Dydis" +#: templates/authenticate.php:4 +msgid "Password" +msgstr "" -#: templates/get.php:5 -msgid "Modified" -msgstr "Pakeista" - -#: templates/get.php:5 -msgid "Delete all" -msgstr "Ištrinti viską" - -#: templates/get.php:5 -msgid "Delete" -msgstr "Ištrinti" +#: templates/authenticate.php:6 +msgid "Submit" +msgstr "" diff --git a/l10n/lt_LT/settings.po b/l10n/lt_LT/settings.po index 8b8a1840192..9ba5a73caf6 100644 --- a/l10n/lt_LT/settings.po +++ b/l10n/lt_LT/settings.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-23 07:15+0000\n" -"Last-Translator: Dr. ROX \n" +"POT-Creation-Date: 2012-08-29 02:02+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+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" @@ -87,10 +87,46 @@ msgid "use systems cron service" msgstr "naudoti sistemos cron servisą" #: templates/admin.php:39 +msgid "Share API" +msgstr "" + +#: templates/admin.php:44 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:45 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:49 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:50 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:54 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:55 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:58 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:60 +msgid "Allow users to only share with users in their groups" +msgstr "" + +#: templates/admin.php:67 msgid "Log" msgstr "Žurnalas" -#: templates/admin.php:67 +#: templates/admin.php:95 msgid "More" msgstr "Daugiau" diff --git a/l10n/lt_LT/user_ldap.po b/l10n/lt_LT/user_ldap.po index d648d9ba0ca..7e15e309ec7 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: 2012-08-23 02:03+0200\n" -"PO-Revision-Date: 2012-08-22 13:55+0000\n" -"Last-Translator: Dr. ROX \n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" +"Last-Translator: I Robot \n" "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" @@ -160,6 +160,12 @@ msgstr "" msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:31 +#: templates/settings.php:30 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:32 msgid "Help" msgstr "Pagalba" diff --git a/l10n/lv/core.po b/l10n/lv/core.po index 29eb9169d2d..09e8d451f57 100644 --- a/l10n/lv/core.po +++ b/l10n/lv/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-28 02:01+0200\n" -"PO-Revision-Date: 2012-08-28 00:02+0000\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -34,55 +34,55 @@ msgstr "" msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "" -#: js/js.js:190 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 msgid "Settings" msgstr "Iestatījumi" -#: js/js.js:575 +#: js/js.js:586 msgid "January" msgstr "" -#: js/js.js:575 +#: js/js.js:586 msgid "February" msgstr "" -#: js/js.js:575 +#: js/js.js:586 msgid "March" msgstr "" -#: js/js.js:575 +#: js/js.js:586 msgid "April" msgstr "" -#: js/js.js:575 +#: js/js.js:586 msgid "May" msgstr "" -#: js/js.js:575 +#: js/js.js:586 msgid "June" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "July" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "August" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "September" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "October" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "November" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "December" msgstr "" diff --git a/l10n/lv/files_sharing.po b/l10n/lv/files_sharing.po index 4d7325ca83a..4f8c4e36f39 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: 2012-08-23 02:03+0200\n" -"PO-Revision-Date: 2012-08-23 00:04+0000\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -17,18 +17,10 @@ msgstr "" "Language: lv\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2)\n" -#: templates/get.php:4 -msgid "Size" +#: templates/authenticate.php:4 +msgid "Password" msgstr "" -#: templates/get.php:5 -msgid "Modified" -msgstr "" - -#: templates/get.php:5 -msgid "Delete all" -msgstr "" - -#: templates/get.php:5 -msgid "Delete" +#: templates/authenticate.php:6 +msgid "Submit" msgstr "" diff --git a/l10n/lv/settings.po b/l10n/lv/settings.po index 725d9531266..369af99b7f2 100644 --- a/l10n/lv/settings.po +++ b/l10n/lv/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-18 02:01+0200\n" -"PO-Revision-Date: 2012-08-18 00:02+0000\n" +"POT-Creation-Date: 2012-08-29 02:02+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+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" @@ -20,7 +20,7 @@ msgstr "" #: ajax/apps/ocs.php:23 msgid "Unable to load list from App Store" -msgstr "" +msgstr "Nebija iespējams lejuplādēt sarakstu no aplikāciju veikala" #: ajax/lostpassword.php:14 msgid "Email saved" @@ -40,7 +40,7 @@ msgstr "Nepareizs vaicājums" #: ajax/removeuser.php:13 ajax/setquota.php:18 ajax/togglegroups.php:18 msgid "Authentication error" -msgstr "" +msgstr "Ielogošanās kļūme" #: ajax/setlanguage.php:18 msgid "Language changed" @@ -48,7 +48,7 @@ msgstr "Valoda tika nomainīta" #: js/apps.js:18 msgid "Error" -msgstr "" +msgstr "Kļūme" #: js/apps.js:39 js/apps.js:73 msgid "Disable" @@ -72,7 +72,7 @@ msgstr "Brīdinājums par drošību" #: templates/admin.php:29 msgid "Cron" -msgstr "" +msgstr "Cron" #: templates/admin.php:31 msgid "execute one task with each page loaded" @@ -87,10 +87,46 @@ msgid "use systems cron service" msgstr "" #: templates/admin.php:39 +msgid "Share API" +msgstr "" + +#: templates/admin.php:44 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:45 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:49 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:50 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:54 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:55 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:58 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:60 +msgid "Allow users to only share with users in their groups" +msgstr "" + +#: templates/admin.php:67 msgid "Log" msgstr "Log" -#: templates/admin.php:67 +#: templates/admin.php:95 msgid "More" msgstr "Vairāk" @@ -228,7 +264,7 @@ msgstr "Cits" #: templates/users.php:80 templates/users.php:112 msgid "Group Admin" -msgstr "" +msgstr "Grupas administrators" #: templates/users.php:82 msgid "Quota" diff --git a/l10n/lv/user_ldap.po b/l10n/lv/user_ldap.po index 3596376f704..2ec176f9288 100644 --- a/l10n/lv/user_ldap.po +++ b/l10n/lv/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" +"Last-Translator: I Robot \n" "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" @@ -159,6 +159,12 @@ msgstr "" msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:31 +#: templates/settings.php:30 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:32 msgid "Help" msgstr "" diff --git a/l10n/mk/core.po b/l10n/mk/core.po index 2dd6a28281f..89a9f2435d5 100644 --- a/l10n/mk/core.po +++ b/l10n/mk/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-28 02:01+0200\n" -"PO-Revision-Date: 2012-08-28 00:02+0000\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -36,55 +36,55 @@ msgstr "Оваа категорија веќе постои:" msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -#: js/js.js:190 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 msgid "Settings" msgstr "Поставки" -#: js/js.js:575 +#: js/js.js:586 msgid "January" msgstr "Јануари" -#: js/js.js:575 +#: js/js.js:586 msgid "February" msgstr "Февруари" -#: js/js.js:575 +#: js/js.js:586 msgid "March" msgstr "Март" -#: js/js.js:575 +#: js/js.js:586 msgid "April" msgstr "Април" -#: js/js.js:575 +#: js/js.js:586 msgid "May" msgstr "Мај" -#: js/js.js:575 +#: js/js.js:586 msgid "June" msgstr "Јуни" -#: js/js.js:576 +#: js/js.js:587 msgid "July" msgstr "Јули" -#: js/js.js:576 +#: js/js.js:587 msgid "August" msgstr "Август" -#: js/js.js:576 +#: js/js.js:587 msgid "September" msgstr "Септември" -#: js/js.js:576 +#: js/js.js:587 msgid "October" msgstr "Октомври" -#: js/js.js:576 +#: js/js.js:587 msgid "November" msgstr "Ноември" -#: js/js.js:576 +#: js/js.js:587 msgid "December" msgstr "Декември" diff --git a/l10n/mk/files_sharing.po b/l10n/mk/files_sharing.po index eedc221287d..f8507463dde 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: 2012-08-23 02:03+0200\n" -"PO-Revision-Date: 2012-08-23 00:04+0000\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -17,18 +17,10 @@ msgstr "" "Language: mk\n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1\n" -#: templates/get.php:4 -msgid "Size" +#: templates/authenticate.php:4 +msgid "Password" msgstr "" -#: templates/get.php:5 -msgid "Modified" -msgstr "" - -#: templates/get.php:5 -msgid "Delete all" -msgstr "" - -#: templates/get.php:5 -msgid "Delete" +#: templates/authenticate.php:6 +msgid "Submit" msgstr "" diff --git a/l10n/mk/settings.po b/l10n/mk/settings.po index 6fd5df90dcc..793020c8ed4 100644 --- a/l10n/mk/settings.po +++ b/l10n/mk/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-18 02:01+0200\n" -"PO-Revision-Date: 2012-08-18 00:02+0000\n" +"POT-Creation-Date: 2012-08-29 02:02+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+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" @@ -88,10 +88,46 @@ msgid "use systems cron service" msgstr "" #: templates/admin.php:39 +msgid "Share API" +msgstr "" + +#: templates/admin.php:44 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:45 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:49 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:50 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:54 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:55 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:58 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:60 +msgid "Allow users to only share with users in their groups" +msgstr "" + +#: templates/admin.php:67 msgid "Log" msgstr "Записник" -#: templates/admin.php:67 +#: templates/admin.php:95 msgid "More" msgstr "Повеќе" diff --git a/l10n/mk/user_ldap.po b/l10n/mk/user_ldap.po index bcde61dcc65..126d33adf67 100644 --- a/l10n/mk/user_ldap.po +++ b/l10n/mk/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" +"Last-Translator: I Robot \n" "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" @@ -159,6 +159,12 @@ msgstr "" msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:31 +#: templates/settings.php:30 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:32 msgid "Help" msgstr "" diff --git a/l10n/ms_MY/core.po b/l10n/ms_MY/core.po index f147f532dd6..19af1da5ebe 100644 --- a/l10n/ms_MY/core.po +++ b/l10n/ms_MY/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-28 02:01+0200\n" -"PO-Revision-Date: 2012-08-28 00:02+0000\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -36,55 +36,55 @@ msgstr "Kategori ini telah wujud" msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -#: js/js.js:190 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 msgid "Settings" msgstr "Tetapan" -#: js/js.js:575 +#: js/js.js:586 msgid "January" msgstr "Januari" -#: js/js.js:575 +#: js/js.js:586 msgid "February" msgstr "Februari" -#: js/js.js:575 +#: js/js.js:586 msgid "March" msgstr "Mac" -#: js/js.js:575 +#: js/js.js:586 msgid "April" msgstr "April" -#: js/js.js:575 +#: js/js.js:586 msgid "May" msgstr "Mei" -#: js/js.js:575 +#: js/js.js:586 msgid "June" msgstr "Jun" -#: js/js.js:576 +#: js/js.js:587 msgid "July" msgstr "Julai" -#: js/js.js:576 +#: js/js.js:587 msgid "August" msgstr "Ogos" -#: js/js.js:576 +#: js/js.js:587 msgid "September" msgstr "September" -#: js/js.js:576 +#: js/js.js:587 msgid "October" msgstr "Oktober" -#: js/js.js:576 +#: js/js.js:587 msgid "November" msgstr "November" -#: js/js.js:576 +#: js/js.js:587 msgid "December" msgstr "Disember" diff --git a/l10n/ms_MY/files_sharing.po b/l10n/ms_MY/files_sharing.po index ced7a00ab30..1105b791e41 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: 2012-08-23 02:03+0200\n" -"PO-Revision-Date: 2012-08-23 00:04+0000\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -17,18 +17,10 @@ msgstr "" "Language: ms_MY\n" "Plural-Forms: nplurals=1; plural=0\n" -#: templates/get.php:4 -msgid "Size" +#: templates/authenticate.php:4 +msgid "Password" msgstr "" -#: templates/get.php:5 -msgid "Modified" -msgstr "" - -#: templates/get.php:5 -msgid "Delete all" -msgstr "" - -#: templates/get.php:5 -msgid "Delete" +#: templates/authenticate.php:6 +msgid "Submit" msgstr "" diff --git a/l10n/ms_MY/settings.po b/l10n/ms_MY/settings.po index 07857601beb..c166dfab900 100644 --- a/l10n/ms_MY/settings.po +++ b/l10n/ms_MY/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-18 02:01+0200\n" -"PO-Revision-Date: 2012-08-18 00:02+0000\n" +"POT-Creation-Date: 2012-08-29 02:02+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+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" @@ -90,10 +90,46 @@ msgid "use systems cron service" msgstr "" #: templates/admin.php:39 +msgid "Share API" +msgstr "" + +#: templates/admin.php:44 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:45 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:49 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:50 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:54 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:55 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:58 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:60 +msgid "Allow users to only share with users in their groups" +msgstr "" + +#: templates/admin.php:67 msgid "Log" msgstr "Log" -#: templates/admin.php:67 +#: templates/admin.php:95 msgid "More" msgstr "Lanjutan" diff --git a/l10n/ms_MY/user_ldap.po b/l10n/ms_MY/user_ldap.po index 744d804e9c7..e0ec2850865 100644 --- a/l10n/ms_MY/user_ldap.po +++ b/l10n/ms_MY/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -159,6 +159,12 @@ msgstr "" msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:31 +#: templates/settings.php:30 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:32 msgid "Help" msgstr "" diff --git a/l10n/nb_NO/core.po b/l10n/nb_NO/core.po index 208c2cf2ae6..ffedfadca34 100644 --- a/l10n/nb_NO/core.po +++ b/l10n/nb_NO/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-28 02:01+0200\n" -"PO-Revision-Date: 2012-08-28 00:02+0000\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -38,55 +38,55 @@ msgstr "Denne kategorien finnes allerede:" msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -#: js/js.js:190 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 msgid "Settings" msgstr "Innstillinger" -#: js/js.js:575 +#: js/js.js:586 msgid "January" msgstr "Januar" -#: js/js.js:575 +#: js/js.js:586 msgid "February" msgstr "Februar" -#: js/js.js:575 +#: js/js.js:586 msgid "March" msgstr "Mars" -#: js/js.js:575 +#: js/js.js:586 msgid "April" msgstr "April" -#: js/js.js:575 +#: js/js.js:586 msgid "May" msgstr "Mai" -#: js/js.js:575 +#: js/js.js:586 msgid "June" msgstr "Juni" -#: js/js.js:576 +#: js/js.js:587 msgid "July" msgstr "Juli" -#: js/js.js:576 +#: js/js.js:587 msgid "August" msgstr "August" -#: js/js.js:576 +#: js/js.js:587 msgid "September" msgstr "September" -#: js/js.js:576 +#: js/js.js:587 msgid "October" msgstr "Oktober" -#: js/js.js:576 +#: js/js.js:587 msgid "November" msgstr "November" -#: js/js.js:576 +#: js/js.js:587 msgid "December" msgstr "Desember" diff --git a/l10n/nb_NO/files_sharing.po b/l10n/nb_NO/files_sharing.po index f869bfc1fba..721253f7610 100644 --- a/l10n/nb_NO/files_sharing.po +++ b/l10n/nb_NO/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-23 17:27+0000\n" -"Last-Translator: Arvid Nornes \n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,18 +18,10 @@ msgstr "" "Language: nb_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: templates/get.php:4 -msgid "Size" -msgstr "Størrelse" +#: templates/authenticate.php:4 +msgid "Password" +msgstr "" -#: templates/get.php:5 -msgid "Modified" -msgstr "Endret" - -#: templates/get.php:5 -msgid "Delete all" -msgstr "Slett alle" - -#: templates/get.php:5 -msgid "Delete" -msgstr "Slett" +#: templates/authenticate.php:6 +msgid "Submit" +msgstr "" diff --git a/l10n/nb_NO/settings.po b/l10n/nb_NO/settings.po index a1c8400443f..5636a7ccc69 100644 --- a/l10n/nb_NO/settings.po +++ b/l10n/nb_NO/settings.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:00+0000\n" -"Last-Translator: runesudden \n" +"POT-Creation-Date: 2012-08-29 02:02+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -92,10 +92,46 @@ msgid "use systems cron service" msgstr "benytt systemets cron tjeneste" #: templates/admin.php:39 +msgid "Share API" +msgstr "" + +#: templates/admin.php:44 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:45 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:49 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:50 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:54 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:55 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:58 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:60 +msgid "Allow users to only share with users in their groups" +msgstr "" + +#: templates/admin.php:67 msgid "Log" msgstr "Logg" -#: templates/admin.php:67 +#: templates/admin.php:95 msgid "More" msgstr "Mer" diff --git a/l10n/nb_NO/user_ldap.po b/l10n/nb_NO/user_ldap.po index 3a14ed0b28c..2208bdc9acd 100644 --- a/l10n/nb_NO/user_ldap.po +++ b/l10n/nb_NO/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -159,6 +159,12 @@ msgstr "" msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:31 +#: templates/settings.php:30 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:32 msgid "Help" msgstr "" diff --git a/l10n/nl/core.po b/l10n/nl/core.po index c7047b576b0..8e55361a92d 100644 --- a/l10n/nl/core.po +++ b/l10n/nl/core.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-28 02:01+0200\n" -"PO-Revision-Date: 2012-08-28 00:01+0000\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -39,55 +39,55 @@ msgstr "De categorie bestaat al." msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "" -#: js/js.js:190 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 msgid "Settings" msgstr "Instellingen" -#: js/js.js:575 +#: js/js.js:586 msgid "January" msgstr "Januari" -#: js/js.js:575 +#: js/js.js:586 msgid "February" msgstr "Februari" -#: js/js.js:575 +#: js/js.js:586 msgid "March" msgstr "Maart" -#: js/js.js:575 +#: js/js.js:586 msgid "April" msgstr "April" -#: js/js.js:575 +#: js/js.js:586 msgid "May" msgstr "Mei" -#: js/js.js:575 +#: js/js.js:586 msgid "June" msgstr "Juni" -#: js/js.js:576 +#: js/js.js:587 msgid "July" msgstr "Juli" -#: js/js.js:576 +#: js/js.js:587 msgid "August" msgstr "Augustus" -#: js/js.js:576 +#: js/js.js:587 msgid "September" msgstr "September" -#: js/js.js:576 +#: js/js.js:587 msgid "October" msgstr "Oktober" -#: js/js.js:576 +#: js/js.js:587 msgid "November" msgstr "November" -#: js/js.js:576 +#: js/js.js:587 msgid "December" msgstr "December" diff --git a/l10n/nl/files_sharing.po b/l10n/nl/files_sharing.po index dc30969ea74..71500980d72 100644 --- a/l10n/nl/files_sharing.po +++ b/l10n/nl/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-25 02:04+0200\n" -"PO-Revision-Date: 2012-08-24 19:16+0000\n" -"Last-Translator: Richard Bos \n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" +"Last-Translator: I Robot \n" "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" @@ -18,18 +18,10 @@ msgstr "" "Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: templates/get.php:4 -msgid "Size" -msgstr "Grootte" +#: templates/authenticate.php:4 +msgid "Password" +msgstr "" -#: templates/get.php:5 -msgid "Modified" -msgstr "Aangepast" - -#: templates/get.php:5 -msgid "Delete all" -msgstr "Verwijder alles" - -#: templates/get.php:5 -msgid "Delete" -msgstr "Vewijder" +#: templates/authenticate.php:6 +msgid "Submit" +msgstr "" diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index 7f2741fcf91..06562d81b79 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/settings.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-25 02:04+0200\n" -"PO-Revision-Date: 2012-08-24 08:40+0000\n" -"Last-Translator: Richard Bos \n" +"POT-Creation-Date: 2012-08-29 02:02+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -93,10 +93,46 @@ msgid "use systems cron service" msgstr "gebruik de systeem cron service" #: templates/admin.php:39 +msgid "Share API" +msgstr "" + +#: templates/admin.php:44 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:45 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:49 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:50 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:54 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:55 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:58 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:60 +msgid "Allow users to only share with users in their groups" +msgstr "" + +#: templates/admin.php:67 msgid "Log" msgstr "Log" -#: templates/admin.php:67 +#: templates/admin.php:95 msgid "More" msgstr "Meer" diff --git a/l10n/nl/user_ldap.po b/l10n/nl/user_ldap.po index 89b469b7ed9..e40f9e685f1 100644 --- a/l10n/nl/user_ldap.po +++ b/l10n/nl/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" +"Last-Translator: I Robot \n" "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" @@ -159,6 +159,12 @@ msgstr "" msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:31 +#: templates/settings.php:30 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:32 msgid "Help" msgstr "" diff --git a/l10n/nn_NO/core.po b/l10n/nn_NO/core.po index 313cdeba60d..ea511e82074 100644 --- a/l10n/nn_NO/core.po +++ b/l10n/nn_NO/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-28 02:01+0200\n" -"PO-Revision-Date: 2012-08-28 00:02+0000\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -35,55 +35,55 @@ msgstr "" msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "" -#: js/js.js:190 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 msgid "Settings" msgstr "Innstillingar" -#: js/js.js:575 +#: js/js.js:586 msgid "January" msgstr "" -#: js/js.js:575 +#: js/js.js:586 msgid "February" msgstr "" -#: js/js.js:575 +#: js/js.js:586 msgid "March" msgstr "" -#: js/js.js:575 +#: js/js.js:586 msgid "April" msgstr "" -#: js/js.js:575 +#: js/js.js:586 msgid "May" msgstr "" -#: js/js.js:575 +#: js/js.js:586 msgid "June" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "July" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "August" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "September" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "October" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "November" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "December" msgstr "" diff --git a/l10n/nn_NO/files_sharing.po b/l10n/nn_NO/files_sharing.po index 1ae9969855c..fb65f919f96 100644 --- a/l10n/nn_NO/files_sharing.po +++ b/l10n/nn_NO/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: 2012-08-23 02:03+0200\n" -"PO-Revision-Date: 2012-08-23 00:04+0000\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -17,18 +17,10 @@ msgstr "" "Language: nn_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: templates/get.php:4 -msgid "Size" +#: templates/authenticate.php:4 +msgid "Password" msgstr "" -#: templates/get.php:5 -msgid "Modified" -msgstr "" - -#: templates/get.php:5 -msgid "Delete all" -msgstr "" - -#: templates/get.php:5 -msgid "Delete" +#: templates/authenticate.php:6 +msgid "Submit" msgstr "" diff --git a/l10n/nn_NO/settings.po b/l10n/nn_NO/settings.po index 465d4e3f602..031fc58572e 100644 --- a/l10n/nn_NO/settings.po +++ b/l10n/nn_NO/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-21 02:03+0200\n" -"PO-Revision-Date: 2012-08-20 06:17+0000\n" -"Last-Translator: Alexander Stevenson \n" +"POT-Creation-Date: 2012-08-29 02:02+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+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" @@ -88,10 +88,46 @@ msgid "use systems cron service" msgstr "" #: templates/admin.php:39 -msgid "Log" +msgid "Share API" +msgstr "" + +#: templates/admin.php:44 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:45 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:49 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:50 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:54 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:55 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:58 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:60 +msgid "Allow users to only share with users in their groups" msgstr "" #: templates/admin.php:67 +msgid "Log" +msgstr "" + +#: templates/admin.php:95 msgid "More" msgstr "" diff --git a/l10n/nn_NO/user_ldap.po b/l10n/nn_NO/user_ldap.po index 86099dc6064..2d5b008d920 100644 --- a/l10n/nn_NO/user_ldap.po +++ b/l10n/nn_NO/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" +"Last-Translator: I Robot \n" "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" @@ -159,6 +159,12 @@ msgstr "" msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:31 +#: templates/settings.php:30 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:32 msgid "Help" msgstr "" diff --git a/l10n/pl/core.po b/l10n/pl/core.po index edae4615e9c..7a41ee90702 100644 --- a/l10n/pl/core.po +++ b/l10n/pl/core.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-28 02:01+0200\n" -"PO-Revision-Date: 2012-08-28 00:01+0000\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -39,55 +39,55 @@ msgstr "Ta kategoria już istnieje" msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -#: js/js.js:190 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 msgid "Settings" msgstr "Ustawienia" -#: js/js.js:575 +#: js/js.js:586 msgid "January" msgstr "Styczeń" -#: js/js.js:575 +#: js/js.js:586 msgid "February" msgstr "Luty" -#: js/js.js:575 +#: js/js.js:586 msgid "March" msgstr "Marzec" -#: js/js.js:575 +#: js/js.js:586 msgid "April" msgstr "Kwiecień" -#: js/js.js:575 +#: js/js.js:586 msgid "May" msgstr "Maj" -#: js/js.js:575 +#: js/js.js:586 msgid "June" msgstr "Czerwiec" -#: js/js.js:576 +#: js/js.js:587 msgid "July" msgstr "Lipiec" -#: js/js.js:576 +#: js/js.js:587 msgid "August" msgstr "Sierpień" -#: js/js.js:576 +#: js/js.js:587 msgid "September" msgstr "Wrzesień" -#: js/js.js:576 +#: js/js.js:587 msgid "October" msgstr "Październik" -#: js/js.js:576 +#: js/js.js:587 msgid "November" msgstr "Listopad" -#: js/js.js:576 +#: js/js.js:587 msgid "December" msgstr "Grudzień" diff --git a/l10n/pl/files_sharing.po b/l10n/pl/files_sharing.po index 576158713dd..22865b645f9 100644 --- a/l10n/pl/files_sharing.po +++ b/l10n/pl/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-23 02:03+0200\n" -"PO-Revision-Date: 2012-08-23 00:04+0000\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -18,18 +18,10 @@ msgstr "" "Language: pl\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" -#: templates/get.php:4 -msgid "Size" -msgstr "Rozmiar" +#: templates/authenticate.php:4 +msgid "Password" +msgstr "" -#: templates/get.php:5 -msgid "Modified" -msgstr "Zmodyfikowane" - -#: templates/get.php:5 -msgid "Delete all" -msgstr "Usuń wszystko" - -#: templates/get.php:5 -msgid "Delete" -msgstr "Usuń" +#: templates/authenticate.php:6 +msgid "Submit" +msgstr "" diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index b9273c4c45f..f34e2e110ff 100644 --- a/l10n/pl/settings.po +++ b/l10n/pl/settings.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-21 02:03+0200\n" -"PO-Revision-Date: 2012-08-20 07:48+0000\n" -"Last-Translator: Cyryl Sochacki <>\n" +"POT-Creation-Date: 2012-08-29 02:02+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -93,10 +93,46 @@ msgid "use systems cron service" msgstr "korzystaj z usługi systemowej cron" #: templates/admin.php:39 +msgid "Share API" +msgstr "" + +#: templates/admin.php:44 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:45 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:49 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:50 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:54 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:55 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:58 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:60 +msgid "Allow users to only share with users in their groups" +msgstr "" + +#: templates/admin.php:67 msgid "Log" msgstr "Log" -#: templates/admin.php:67 +#: templates/admin.php:95 msgid "More" msgstr "Więcej" diff --git a/l10n/pl/user_ldap.po b/l10n/pl/user_ldap.po index 8dce1f22d4e..809f9c30edf 100644 --- a/l10n/pl/user_ldap.po +++ b/l10n/pl/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: 2012-08-21 02:03+0200\n" -"PO-Revision-Date: 2012-08-20 08:52+0000\n" -"Last-Translator: Cyryl Sochacki <>\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" +"Last-Translator: I Robot \n" "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" @@ -160,6 +160,12 @@ msgstr "w bajtach" msgid "in seconds. A change empties the cache." msgstr "w sekundach. Zmiana opróżnia pamięć podręczną." -#: templates/settings.php:31 +#: templates/settings.php:30 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:32 msgid "Help" msgstr "Pomoc" diff --git a/l10n/pt_BR/core.po b/l10n/pt_BR/core.po index 7ebfea7a297..f0c05cafd01 100644 --- a/l10n/pt_BR/core.po +++ b/l10n/pt_BR/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-28 02:01+0200\n" -"PO-Revision-Date: 2012-08-28 00:01+0000\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:02+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" @@ -38,55 +38,55 @@ msgstr "Essa categoria já existe" msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -#: js/js.js:190 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 msgid "Settings" msgstr "Configurações" -#: js/js.js:575 +#: js/js.js:586 msgid "January" msgstr "Janeiro" -#: js/js.js:575 +#: js/js.js:586 msgid "February" msgstr "Fevereiro" -#: js/js.js:575 +#: js/js.js:586 msgid "March" msgstr "Março" -#: js/js.js:575 +#: js/js.js:586 msgid "April" msgstr "Abril" -#: js/js.js:575 +#: js/js.js:586 msgid "May" msgstr "Maio" -#: js/js.js:575 +#: js/js.js:586 msgid "June" msgstr "Junho" -#: js/js.js:576 +#: js/js.js:587 msgid "July" msgstr "Julho" -#: js/js.js:576 +#: js/js.js:587 msgid "August" msgstr "Agosto" -#: js/js.js:576 +#: js/js.js:587 msgid "September" msgstr "Setembro" -#: js/js.js:576 +#: js/js.js:587 msgid "October" msgstr "Outubro" -#: js/js.js:576 +#: js/js.js:587 msgid "November" msgstr "Novembro" -#: js/js.js:576 +#: js/js.js:587 msgid "December" msgstr "Dezembro" diff --git a/l10n/pt_BR/files_sharing.po b/l10n/pt_BR/files_sharing.po index 3e73c6ab3cf..f00ee26c733 100644 --- a/l10n/pt_BR/files_sharing.po +++ b/l10n/pt_BR/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: 2012-08-23 02:03+0200\n" -"PO-Revision-Date: 2012-08-23 00:04+0000\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -17,18 +17,10 @@ msgstr "" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1)\n" -#: templates/get.php:4 -msgid "Size" +#: templates/authenticate.php:4 +msgid "Password" msgstr "" -#: templates/get.php:5 -msgid "Modified" -msgstr "" - -#: templates/get.php:5 -msgid "Delete all" -msgstr "" - -#: templates/get.php:5 -msgid "Delete" +#: templates/authenticate.php:6 +msgid "Submit" msgstr "" diff --git a/l10n/pt_BR/files_versions.po b/l10n/pt_BR/files_versions.po index 86c54e71050..5c59fa16330 100644 --- a/l10n/pt_BR/files_versions.po +++ b/l10n/pt_BR/files_versions.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:37+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-28 14:35+0000\n" +"Last-Translator: tbsoares \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,8 +20,8 @@ msgstr "" #: js/settings-personal.js:31 msgid "Expire all versions" -msgstr "" +msgstr "Expirar todas as versões" #: templates/settings.php:3 msgid "Enable Files Versioning" -msgstr "" +msgstr "Habilitar versionamento de arquivos" diff --git a/l10n/pt_BR/settings.po b/l10n/pt_BR/settings.po index 901713f7c8c..da30f5b428e 100644 --- a/l10n/pt_BR/settings.po +++ b/l10n/pt_BR/settings.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-25 02:04+0200\n" -"PO-Revision-Date: 2012-08-24 22:19+0000\n" -"Last-Translator: targinosilveira \n" +"POT-Creation-Date: 2012-08-29 02:02+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -92,10 +92,46 @@ msgid "use systems cron service" msgstr "" #: templates/admin.php:39 +msgid "Share API" +msgstr "" + +#: templates/admin.php:44 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:45 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:49 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:50 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:54 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:55 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:58 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:60 +msgid "Allow users to only share with users in their groups" +msgstr "" + +#: templates/admin.php:67 msgid "Log" msgstr "Log" -#: templates/admin.php:67 +#: templates/admin.php:95 msgid "More" msgstr "Mais" diff --git a/l10n/pt_BR/user_ldap.po b/l10n/pt_BR/user_ldap.po index 206781082f4..71b15d98cff 100644 --- a/l10n/pt_BR/user_ldap.po +++ b/l10n/pt_BR/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" +"Last-Translator: I Robot \n" "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" @@ -159,6 +159,12 @@ msgstr "" msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:31 +#: templates/settings.php:30 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:32 msgid "Help" msgstr "" diff --git a/l10n/pt_PT/core.po b/l10n/pt_PT/core.po index 0f252366259..241a29410d1 100644 --- a/l10n/pt_PT/core.po +++ b/l10n/pt_PT/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-28 02:01+0200\n" -"PO-Revision-Date: 2012-08-28 00:02+0000\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -36,55 +36,55 @@ msgstr "Esta categoria já existe:" msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -#: js/js.js:190 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 msgid "Settings" msgstr "Definições" -#: js/js.js:575 +#: js/js.js:586 msgid "January" msgstr "Janeiro" -#: js/js.js:575 +#: js/js.js:586 msgid "February" msgstr "Fevereiro" -#: js/js.js:575 +#: js/js.js:586 msgid "March" msgstr "Março" -#: js/js.js:575 +#: js/js.js:586 msgid "April" msgstr "Abril" -#: js/js.js:575 +#: js/js.js:586 msgid "May" msgstr "Maio" -#: js/js.js:575 +#: js/js.js:586 msgid "June" msgstr "Junho" -#: js/js.js:576 +#: js/js.js:587 msgid "July" msgstr "Julho" -#: js/js.js:576 +#: js/js.js:587 msgid "August" msgstr "Agosto" -#: js/js.js:576 +#: js/js.js:587 msgid "September" msgstr "Setembro" -#: js/js.js:576 +#: js/js.js:587 msgid "October" msgstr "Outubro" -#: js/js.js:576 +#: js/js.js:587 msgid "November" msgstr "Novembro" -#: js/js.js:576 +#: js/js.js:587 msgid "December" msgstr "Dezembro" diff --git a/l10n/pt_PT/files_sharing.po b/l10n/pt_PT/files_sharing.po index 3a921893278..d2225f80f14 100644 --- a/l10n/pt_PT/files_sharing.po +++ b/l10n/pt_PT/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: 2012-08-23 02:03+0200\n" -"PO-Revision-Date: 2012-08-23 00:04+0000\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -17,18 +17,10 @@ msgstr "" "Language: pt_PT\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: templates/get.php:4 -msgid "Size" +#: templates/authenticate.php:4 +msgid "Password" msgstr "" -#: templates/get.php:5 -msgid "Modified" -msgstr "" - -#: templates/get.php:5 -msgid "Delete all" -msgstr "" - -#: templates/get.php:5 -msgid "Delete" +#: templates/authenticate.php:6 +msgid "Submit" msgstr "" diff --git a/l10n/pt_PT/settings.po b/l10n/pt_PT/settings.po index 1cc82a6ea45..83da25e2c77 100644 --- a/l10n/pt_PT/settings.po +++ b/l10n/pt_PT/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-23 19:46+0000\n" -"Last-Translator: rlameiro \n" +"POT-Creation-Date: 2012-08-29 02:02+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+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" @@ -89,10 +89,46 @@ msgid "use systems cron service" msgstr "usar o serviço cron do sistema" #: templates/admin.php:39 +msgid "Share API" +msgstr "" + +#: templates/admin.php:44 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:45 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:49 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:50 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:54 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:55 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:58 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:60 +msgid "Allow users to only share with users in their groups" +msgstr "" + +#: templates/admin.php:67 msgid "Log" msgstr "Log" -#: templates/admin.php:67 +#: templates/admin.php:95 msgid "More" msgstr "Mais" diff --git a/l10n/pt_PT/user_ldap.po b/l10n/pt_PT/user_ldap.po index a4088cac2b6..c3ee262c51e 100644 --- a/l10n/pt_PT/user_ldap.po +++ b/l10n/pt_PT/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" +"Last-Translator: I Robot \n" "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" @@ -159,6 +159,12 @@ msgstr "" msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:31 +#: templates/settings.php:30 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:32 msgid "Help" msgstr "" diff --git a/l10n/ro/core.po b/l10n/ro/core.po index 8b731473482..53f8bf13792 100644 --- a/l10n/ro/core.po +++ b/l10n/ro/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-28 02:01+0200\n" -"PO-Revision-Date: 2012-08-28 00:02+0000\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -36,55 +36,55 @@ msgstr "Această categorie deja există:" msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "" -#: js/js.js:190 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 msgid "Settings" msgstr "Configurări" -#: js/js.js:575 +#: js/js.js:586 msgid "January" msgstr "" -#: js/js.js:575 +#: js/js.js:586 msgid "February" msgstr "" -#: js/js.js:575 +#: js/js.js:586 msgid "March" msgstr "" -#: js/js.js:575 +#: js/js.js:586 msgid "April" msgstr "" -#: js/js.js:575 +#: js/js.js:586 msgid "May" msgstr "" -#: js/js.js:575 +#: js/js.js:586 msgid "June" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "July" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "August" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "September" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "October" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "November" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "December" msgstr "" diff --git a/l10n/ro/files_sharing.po b/l10n/ro/files_sharing.po index ab936035380..3d9840ba7ca 100644 --- a/l10n/ro/files_sharing.po +++ b/l10n/ro/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: 2012-08-23 02:03+0200\n" -"PO-Revision-Date: 2012-08-23 00:04+0000\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -17,18 +17,10 @@ msgstr "" "Language: ro\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1))\n" -#: templates/get.php:4 -msgid "Size" +#: templates/authenticate.php:4 +msgid "Password" msgstr "" -#: templates/get.php:5 -msgid "Modified" -msgstr "" - -#: templates/get.php:5 -msgid "Delete all" -msgstr "" - -#: templates/get.php:5 -msgid "Delete" +#: templates/authenticate.php:6 +msgid "Submit" msgstr "" diff --git a/l10n/ro/settings.po b/l10n/ro/settings.po index 736ab30fa14..09d25fbdecf 100644 --- a/l10n/ro/settings.po +++ b/l10n/ro/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-18 02:01+0200\n" -"PO-Revision-Date: 2012-08-18 00:02+0000\n" +"POT-Creation-Date: 2012-08-29 02:02+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+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" @@ -90,10 +90,46 @@ msgid "use systems cron service" msgstr "" #: templates/admin.php:39 +msgid "Share API" +msgstr "" + +#: templates/admin.php:44 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:45 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:49 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:50 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:54 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:55 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:58 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:60 +msgid "Allow users to only share with users in their groups" +msgstr "" + +#: templates/admin.php:67 msgid "Log" msgstr "Jurnal de activitate" -#: templates/admin.php:67 +#: templates/admin.php:95 msgid "More" msgstr "Mai mult" diff --git a/l10n/ro/user_ldap.po b/l10n/ro/user_ldap.po index 644c43d43de..633f14c432b 100644 --- a/l10n/ro/user_ldap.po +++ b/l10n/ro/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: 2012-08-15 02:03+0200\n" -"PO-Revision-Date: 2012-08-14 20:24+0000\n" -"Last-Translator: Dumitru Ursu <>\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -160,6 +160,12 @@ msgstr "în octeți" msgid "in seconds. A change empties the cache." msgstr "în secunde. O schimbare curăță memoria tampon." -#: templates/settings.php:31 +#: templates/settings.php:30 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:32 msgid "Help" msgstr "Ajutor" diff --git a/l10n/ru/core.po b/l10n/ru/core.po index ddc0440b889..963a3edb69a 100644 --- a/l10n/ru/core.po +++ b/l10n/ru/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-28 02:01+0200\n" -"PO-Revision-Date: 2012-08-28 00:02+0000\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:02+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" @@ -37,55 +37,55 @@ msgstr "Эта категория уже существует: " msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -#: js/js.js:190 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 msgid "Settings" msgstr "Настройки" -#: js/js.js:575 +#: js/js.js:586 msgid "January" msgstr "Январь" -#: js/js.js:575 +#: js/js.js:586 msgid "February" msgstr "Февраль" -#: js/js.js:575 +#: js/js.js:586 msgid "March" msgstr "Март" -#: js/js.js:575 +#: js/js.js:586 msgid "April" msgstr "Апрель" -#: js/js.js:575 +#: js/js.js:586 msgid "May" msgstr "Май" -#: js/js.js:575 +#: js/js.js:586 msgid "June" msgstr "Июнь" -#: js/js.js:576 +#: js/js.js:587 msgid "July" msgstr "Июль" -#: js/js.js:576 +#: js/js.js:587 msgid "August" msgstr "Август" -#: js/js.js:576 +#: js/js.js:587 msgid "September" msgstr "Сентябрь" -#: js/js.js:576 +#: js/js.js:587 msgid "October" msgstr "Октябрь" -#: js/js.js:576 +#: js/js.js:587 msgid "November" msgstr "Ноябрь" -#: js/js.js:576 +#: js/js.js:587 msgid "December" msgstr "Декабрь" diff --git a/l10n/ru/files_sharing.po b/l10n/ru/files_sharing.po index 39aaa411510..6114ef96d40 100644 --- a/l10n/ru/files_sharing.po +++ b/l10n/ru/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-25 02:04+0200\n" -"PO-Revision-Date: 2012-08-24 07:48+0000\n" -"Last-Translator: Denis \n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" +"Last-Translator: I Robot \n" "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" @@ -18,18 +18,10 @@ msgstr "" "Language: ru\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" -#: templates/get.php:4 -msgid "Size" -msgstr "Размер" +#: templates/authenticate.php:4 +msgid "Password" +msgstr "" -#: templates/get.php:5 -msgid "Modified" -msgstr "Изменён" - -#: templates/get.php:5 -msgid "Delete all" -msgstr "Удалить все" - -#: templates/get.php:5 -msgid "Delete" -msgstr "Удалить" +#: templates/authenticate.php:6 +msgid "Submit" +msgstr "" diff --git a/l10n/ru/settings.po b/l10n/ru/settings.po index 8dfb19bb77b..c8cbb591eeb 100644 --- a/l10n/ru/settings.po +++ b/l10n/ru/settings.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-19 02:02+0200\n" -"PO-Revision-Date: 2012-08-18 11:59+0000\n" -"Last-Translator: rasperepodvipodvert \n" +"POT-Creation-Date: 2012-08-29 02:02+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+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" @@ -94,10 +94,46 @@ msgid "use systems cron service" msgstr "использовать системные задания" #: templates/admin.php:39 +msgid "Share API" +msgstr "" + +#: templates/admin.php:44 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:45 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:49 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:50 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:54 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:55 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:58 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:60 +msgid "Allow users to only share with users in their groups" +msgstr "" + +#: templates/admin.php:67 msgid "Log" msgstr "Журнал" -#: templates/admin.php:67 +#: templates/admin.php:95 msgid "More" msgstr "Ещё" diff --git a/l10n/ru/user_ldap.po b/l10n/ru/user_ldap.po index bb1f2d62399..3a9b203bdbb 100644 --- a/l10n/ru/user_ldap.po +++ b/l10n/ru/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: 2012-08-25 02:04+0200\n" -"PO-Revision-Date: 2012-08-24 15:13+0000\n" -"Last-Translator: wpns <4671992@gmail.com>\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" +"Last-Translator: I Robot \n" "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" @@ -93,7 +93,7 @@ msgstr "Определяет фильтр для применения при п #: templates/settings.php:14 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." -msgstr "" +msgstr "без заполнения, например \"objectClass=posixGroup\"." #: templates/settings.php:17 msgid "Port" @@ -101,15 +101,15 @@ msgstr "Порт" #: templates/settings.php:18 msgid "Base User Tree" -msgstr "" +msgstr "База пользовательского дерева" #: templates/settings.php:19 msgid "Base Group Tree" -msgstr "" +msgstr "База группового дерева" #: templates/settings.php:20 msgid "Group-Member association" -msgstr "" +msgstr "Ассоциация Группа-Участник" #: templates/settings.php:21 msgid "Use TLS" @@ -121,7 +121,7 @@ msgstr "Не используйте для соединений SSL" #: templates/settings.php:22 msgid "Case insensitve LDAP server (Windows)" -msgstr "" +msgstr "Нечувствительный к регистру сервер LDAP (Windows)" #: templates/settings.php:23 msgid "Turn off SSL certificate validation." @@ -131,7 +131,7 @@ msgstr "Отключить проверку сертификата SSL." msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." -msgstr "" +msgstr "Если соединение работает только с этой опцией, импортируйте на ваш сервер ownCloud сертификат SSL сервера LDAP." #: templates/settings.php:23 msgid "Not recommended, use for testing only." @@ -139,19 +139,19 @@ msgstr "Не рекомендуется, используйте только д #: templates/settings.php:24 msgid "User Display Name Field" -msgstr "" +msgstr "Поле отображаемого имени пользователя" #: templates/settings.php:24 msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "" +msgstr "Атрибут LDAP для генерации имени пользователя ownCloud." #: templates/settings.php:25 msgid "Group Display Name Field" -msgstr "" +msgstr "Поле отображаемого имени группы" #: templates/settings.php:25 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "" +msgstr "Атрибут LDAP для генерации имени группы ownCloud." #: templates/settings.php:27 msgid "in bytes" @@ -161,6 +161,12 @@ msgstr "в байтах" msgid "in seconds. A change empties the cache." msgstr "в секундах. Изменение очистит кэш." -#: templates/settings.php:31 +#: templates/settings.php:30 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:32 msgid "Help" msgstr "Помощь" diff --git a/l10n/sk_SK/core.po b/l10n/sk_SK/core.po index 7243bc60945..c31e43e6ebc 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: 2012-08-28 02:01+0200\n" -"PO-Revision-Date: 2012-08-28 00:02+0000\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -35,55 +35,55 @@ msgstr "Táto kategória už existuje:" msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -#: js/js.js:190 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 msgid "Settings" msgstr "Nastavenia" -#: js/js.js:575 +#: js/js.js:586 msgid "January" msgstr "Január" -#: js/js.js:575 +#: js/js.js:586 msgid "February" msgstr "Február" -#: js/js.js:575 +#: js/js.js:586 msgid "March" msgstr "Marec" -#: js/js.js:575 +#: js/js.js:586 msgid "April" msgstr "Apríl" -#: js/js.js:575 +#: js/js.js:586 msgid "May" msgstr "Máj" -#: js/js.js:575 +#: js/js.js:586 msgid "June" msgstr "Jún" -#: js/js.js:576 +#: js/js.js:587 msgid "July" msgstr "Júl" -#: js/js.js:576 +#: js/js.js:587 msgid "August" msgstr "August" -#: js/js.js:576 +#: js/js.js:587 msgid "September" msgstr "September" -#: js/js.js:576 +#: js/js.js:587 msgid "October" msgstr "Október" -#: js/js.js:576 +#: js/js.js:587 msgid "November" msgstr "November" -#: js/js.js:576 +#: js/js.js:587 msgid "December" msgstr "December" diff --git a/l10n/sk_SK/files_sharing.po b/l10n/sk_SK/files_sharing.po index 3a4f00533b8..9e19da94c8e 100644 --- a/l10n/sk_SK/files_sharing.po +++ b/l10n/sk_SK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-23 02:03+0200\n" -"PO-Revision-Date: 2012-08-23 00:04+0000\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -17,18 +17,10 @@ msgstr "" "Language: sk_SK\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" -#: templates/get.php:4 -msgid "Size" +#: templates/authenticate.php:4 +msgid "Password" msgstr "" -#: templates/get.php:5 -msgid "Modified" -msgstr "" - -#: templates/get.php:5 -msgid "Delete all" -msgstr "" - -#: templates/get.php:5 -msgid "Delete" +#: templates/authenticate.php:6 +msgid "Submit" msgstr "" diff --git a/l10n/sk_SK/settings.po b/l10n/sk_SK/settings.po index 8184b873557..77244df7140 100644 --- a/l10n/sk_SK/settings.po +++ b/l10n/sk_SK/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-18 02:01+0200\n" -"PO-Revision-Date: 2012-08-18 00:02+0000\n" +"POT-Creation-Date: 2012-08-29 02:02+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+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" @@ -89,10 +89,46 @@ msgid "use systems cron service" msgstr "" #: templates/admin.php:39 +msgid "Share API" +msgstr "" + +#: templates/admin.php:44 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:45 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:49 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:50 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:54 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:55 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:58 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:60 +msgid "Allow users to only share with users in their groups" +msgstr "" + +#: templates/admin.php:67 msgid "Log" msgstr "Záznam" -#: templates/admin.php:67 +#: templates/admin.php:95 msgid "More" msgstr "Viac" diff --git a/l10n/sk_SK/user_ldap.po b/l10n/sk_SK/user_ldap.po index 1fdd9af1e54..b0cc8b5a602 100644 --- a/l10n/sk_SK/user_ldap.po +++ b/l10n/sk_SK/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" +"Last-Translator: I Robot \n" "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" @@ -159,6 +159,12 @@ msgstr "" msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:31 +#: templates/settings.php:30 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:32 msgid "Help" msgstr "" diff --git a/l10n/sl/core.po b/l10n/sl/core.po index 78f92f94b4f..9056484dc6a 100644 --- a/l10n/sl/core.po +++ b/l10n/sl/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-28 02:01+0200\n" -"PO-Revision-Date: 2012-08-28 00:02+0000\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -36,55 +36,55 @@ msgstr "Ta kategorija že obstaja:" msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -#: js/js.js:190 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 msgid "Settings" msgstr "Nastavitve" -#: js/js.js:575 +#: js/js.js:586 msgid "January" msgstr "januar" -#: js/js.js:575 +#: js/js.js:586 msgid "February" msgstr "februar" -#: js/js.js:575 +#: js/js.js:586 msgid "March" msgstr "marec" -#: js/js.js:575 +#: js/js.js:586 msgid "April" msgstr "april" -#: js/js.js:575 +#: js/js.js:586 msgid "May" msgstr "maj" -#: js/js.js:575 +#: js/js.js:586 msgid "June" msgstr "junij" -#: js/js.js:576 +#: js/js.js:587 msgid "July" msgstr "julij" -#: js/js.js:576 +#: js/js.js:587 msgid "August" msgstr "avgust" -#: js/js.js:576 +#: js/js.js:587 msgid "September" msgstr "september" -#: js/js.js:576 +#: js/js.js:587 msgid "October" msgstr "oktober" -#: js/js.js:576 +#: js/js.js:587 msgid "November" msgstr "november" -#: js/js.js:576 +#: js/js.js:587 msgid "December" msgstr "december" diff --git a/l10n/sl/files_sharing.po b/l10n/sl/files_sharing.po index c16a622861b..9065df6a64f 100644 --- a/l10n/sl/files_sharing.po +++ b/l10n/sl/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: 2012-08-28 02:01+0200\n" -"PO-Revision-Date: 2012-08-27 12:28+0000\n" -"Last-Translator: Peter Peroša \n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,18 +18,10 @@ msgstr "" "Language: sl\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3)\n" -#: templates/get.php:4 -msgid "Size" -msgstr "Velikost" +#: templates/authenticate.php:4 +msgid "Password" +msgstr "" -#: templates/get.php:5 -msgid "Modified" -msgstr "Spremenjeno" - -#: templates/get.php:5 -msgid "Delete all" -msgstr "Izbriši vse" - -#: templates/get.php:5 -msgid "Delete" -msgstr "Izbriši" +#: templates/authenticate.php:6 +msgid "Submit" +msgstr "" diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index 32ff133a37f..1ee9f30e5e1 100644 --- a/l10n/sl/settings.po +++ b/l10n/sl/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-19 02:02+0200\n" -"PO-Revision-Date: 2012-08-18 13:08+0000\n" -"Last-Translator: Peter Peroša \n" +"POT-Creation-Date: 2012-08-29 02:02+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -89,10 +89,46 @@ msgid "use systems cron service" msgstr "uporabi sistemski servis za periodična opravila" #: templates/admin.php:39 +msgid "Share API" +msgstr "" + +#: templates/admin.php:44 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:45 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:49 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:50 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:54 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:55 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:58 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:60 +msgid "Allow users to only share with users in their groups" +msgstr "" + +#: templates/admin.php:67 msgid "Log" msgstr "Dnevnik" -#: templates/admin.php:67 +#: templates/admin.php:95 msgid "More" msgstr "Več" diff --git a/l10n/sl/user_ldap.po b/l10n/sl/user_ldap.po index c405fb64d9e..4a23050ed52 100644 --- a/l10n/sl/user_ldap.po +++ b/l10n/sl/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: 2012-08-22 02:04+0200\n" -"PO-Revision-Date: 2012-08-21 11:45+0000\n" -"Last-Translator: Peter Peroša \n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -160,6 +160,12 @@ msgstr "v bajtih" msgid "in seconds. A change empties the cache." msgstr "v sekundah. Sprememba izprazni predpomnilnik." -#: templates/settings.php:31 +#: templates/settings.php:30 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:32 msgid "Help" msgstr "Pomoč" diff --git a/l10n/so/core.po b/l10n/so/core.po index 0dd2a3f54e9..f0bef059c91 100644 --- a/l10n/so/core.po +++ b/l10n/so/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-28 02:01+0200\n" -"PO-Revision-Date: 2012-08-28 00:02+0000\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Somali (http://www.transifex.com/projects/p/owncloud/language/so/)\n" "MIME-Version: 1.0\n" @@ -33,55 +33,55 @@ msgstr "" msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "" -#: js/js.js:190 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 msgid "Settings" msgstr "" -#: js/js.js:575 +#: js/js.js:586 msgid "January" msgstr "" -#: js/js.js:575 +#: js/js.js:586 msgid "February" msgstr "" -#: js/js.js:575 +#: js/js.js:586 msgid "March" msgstr "" -#: js/js.js:575 +#: js/js.js:586 msgid "April" msgstr "" -#: js/js.js:575 +#: js/js.js:586 msgid "May" msgstr "" -#: js/js.js:575 +#: js/js.js:586 msgid "June" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "July" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "August" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "September" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "October" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "November" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "December" msgstr "" diff --git a/l10n/so/files_sharing.po b/l10n/so/files_sharing.po index c05e0f049ba..94223b1fd3d 100644 --- a/l10n/so/files_sharing.po +++ b/l10n/so/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: 2012-08-23 02:03+0200\n" -"PO-Revision-Date: 2012-08-23 00:04+0000\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Somali (http://www.transifex.com/projects/p/owncloud/language/so/)\n" "MIME-Version: 1.0\n" @@ -17,18 +17,10 @@ msgstr "" "Language: so\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: templates/get.php:4 -msgid "Size" +#: templates/authenticate.php:4 +msgid "Password" msgstr "" -#: templates/get.php:5 -msgid "Modified" -msgstr "" - -#: templates/get.php:5 -msgid "Delete all" -msgstr "" - -#: templates/get.php:5 -msgid "Delete" +#: templates/authenticate.php:6 +msgid "Submit" msgstr "" diff --git a/l10n/so/settings.po b/l10n/so/settings.po index bc0ef8b76cb..a677a1e3bc1 100644 --- a/l10n/so/settings.po +++ b/l10n/so/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-18 02:01+0200\n" -"PO-Revision-Date: 2012-08-18 00:02+0000\n" +"POT-Creation-Date: 2012-08-29 02:02+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Somali (http://www.transifex.com/projects/p/owncloud/language/so/)\n" "MIME-Version: 1.0\n" @@ -86,10 +86,46 @@ msgid "use systems cron service" msgstr "" #: templates/admin.php:39 -msgid "Log" +msgid "Share API" +msgstr "" + +#: templates/admin.php:44 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:45 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:49 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:50 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:54 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:55 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:58 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:60 +msgid "Allow users to only share with users in their groups" msgstr "" #: templates/admin.php:67 +msgid "Log" +msgstr "" + +#: templates/admin.php:95 msgid "More" msgstr "" diff --git a/l10n/so/user_ldap.po b/l10n/so/user_ldap.po index bf35a13096a..b4103a6c6de 100644 --- a/l10n/so/user_ldap.po +++ b/l10n/so/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Somali (http://www.transifex.com/projects/p/owncloud/language/so/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -159,6 +159,12 @@ msgstr "" msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:31 +#: templates/settings.php:30 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:32 msgid "Help" msgstr "" diff --git a/l10n/sr/core.po b/l10n/sr/core.po index 21174c99ade..814ff643d59 100644 --- a/l10n/sr/core.po +++ b/l10n/sr/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-28 02:01+0200\n" -"PO-Revision-Date: 2012-08-28 00:02+0000\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -34,55 +34,55 @@ msgstr "" msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "" -#: js/js.js:190 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 msgid "Settings" msgstr "Подешавања" -#: js/js.js:575 +#: js/js.js:586 msgid "January" msgstr "" -#: js/js.js:575 +#: js/js.js:586 msgid "February" msgstr "" -#: js/js.js:575 +#: js/js.js:586 msgid "March" msgstr "" -#: js/js.js:575 +#: js/js.js:586 msgid "April" msgstr "" -#: js/js.js:575 +#: js/js.js:586 msgid "May" msgstr "" -#: js/js.js:575 +#: js/js.js:586 msgid "June" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "July" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "August" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "September" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "October" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "November" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "December" msgstr "" diff --git a/l10n/sr/files_sharing.po b/l10n/sr/files_sharing.po index b7dbb671d27..5979558f847 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: 2012-08-23 02:03+0200\n" -"PO-Revision-Date: 2012-08-23 00:04+0000\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -17,18 +17,10 @@ msgstr "" "Language: sr\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" -#: templates/get.php:4 -msgid "Size" +#: templates/authenticate.php:4 +msgid "Password" msgstr "" -#: templates/get.php:5 -msgid "Modified" -msgstr "" - -#: templates/get.php:5 -msgid "Delete all" -msgstr "" - -#: templates/get.php:5 -msgid "Delete" +#: templates/authenticate.php:6 +msgid "Submit" msgstr "" diff --git a/l10n/sr/settings.po b/l10n/sr/settings.po index 58e3af2ba44..df8d3be27ce 100644 --- a/l10n/sr/settings.po +++ b/l10n/sr/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-18 02:01+0200\n" -"PO-Revision-Date: 2012-08-18 00:02+0000\n" +"POT-Creation-Date: 2012-08-29 02:02+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+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" @@ -87,10 +87,46 @@ msgid "use systems cron service" msgstr "" #: templates/admin.php:39 -msgid "Log" +msgid "Share API" +msgstr "" + +#: templates/admin.php:44 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:45 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:49 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:50 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:54 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:55 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:58 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:60 +msgid "Allow users to only share with users in their groups" msgstr "" #: templates/admin.php:67 +msgid "Log" +msgstr "" + +#: templates/admin.php:95 msgid "More" msgstr "" diff --git a/l10n/sr/user_ldap.po b/l10n/sr/user_ldap.po index 4e3f01a3b62..eaf9622b4f7 100644 --- a/l10n/sr/user_ldap.po +++ b/l10n/sr/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -159,6 +159,12 @@ msgstr "" msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:31 +#: templates/settings.php:30 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:32 msgid "Help" msgstr "" diff --git a/l10n/sr@latin/core.po b/l10n/sr@latin/core.po index 49a960b4b6f..b6526ca53b0 100644 --- a/l10n/sr@latin/core.po +++ b/l10n/sr@latin/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-28 02:01+0200\n" -"PO-Revision-Date: 2012-08-28 00:02+0000\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -34,55 +34,55 @@ msgstr "" msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "" -#: js/js.js:190 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 msgid "Settings" msgstr "Podešavanja" -#: js/js.js:575 +#: js/js.js:586 msgid "January" msgstr "" -#: js/js.js:575 +#: js/js.js:586 msgid "February" msgstr "" -#: js/js.js:575 +#: js/js.js:586 msgid "March" msgstr "" -#: js/js.js:575 +#: js/js.js:586 msgid "April" msgstr "" -#: js/js.js:575 +#: js/js.js:586 msgid "May" msgstr "" -#: js/js.js:575 +#: js/js.js:586 msgid "June" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "July" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "August" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "September" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "October" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "November" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "December" msgstr "" diff --git a/l10n/sr@latin/files_sharing.po b/l10n/sr@latin/files_sharing.po index 4f3a03c203e..918bd167e07 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: 2012-08-23 02:03+0200\n" -"PO-Revision-Date: 2012-08-23 00:04+0000\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -17,18 +17,10 @@ msgstr "" "Language: sr@latin\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" -#: templates/get.php:4 -msgid "Size" +#: templates/authenticate.php:4 +msgid "Password" msgstr "" -#: templates/get.php:5 -msgid "Modified" -msgstr "" - -#: templates/get.php:5 -msgid "Delete all" -msgstr "" - -#: templates/get.php:5 -msgid "Delete" +#: templates/authenticate.php:6 +msgid "Submit" msgstr "" diff --git a/l10n/sr@latin/settings.po b/l10n/sr@latin/settings.po index 75b8006fa26..b5239835de8 100644 --- a/l10n/sr@latin/settings.po +++ b/l10n/sr@latin/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-18 02:01+0200\n" -"PO-Revision-Date: 2012-08-18 00:02+0000\n" +"POT-Creation-Date: 2012-08-29 02:02+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+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" @@ -87,10 +87,46 @@ msgid "use systems cron service" msgstr "" #: templates/admin.php:39 -msgid "Log" +msgid "Share API" +msgstr "" + +#: templates/admin.php:44 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:45 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:49 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:50 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:54 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:55 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:58 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:60 +msgid "Allow users to only share with users in their groups" msgstr "" #: templates/admin.php:67 +msgid "Log" +msgstr "" + +#: templates/admin.php:95 msgid "More" msgstr "" diff --git a/l10n/sr@latin/user_ldap.po b/l10n/sr@latin/user_ldap.po index c37681c1218..6f56c8e03d0 100644 --- a/l10n/sr@latin/user_ldap.po +++ b/l10n/sr@latin/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -159,6 +159,12 @@ msgstr "" msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:31 +#: templates/settings.php:30 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:32 msgid "Help" msgstr "" diff --git a/l10n/sv/core.po b/l10n/sv/core.po index c02cb098c20..325f61911a1 100644 --- a/l10n/sv/core.po +++ b/l10n/sv/core.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-28 02:01+0200\n" -"PO-Revision-Date: 2012-08-28 00:02+0000\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:02+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" @@ -39,55 +39,55 @@ msgstr "Denna kategori finns redan:" msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -#: js/js.js:190 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 msgid "Settings" msgstr "Inställningar" -#: js/js.js:575 +#: js/js.js:586 msgid "January" msgstr "Januari" -#: js/js.js:575 +#: js/js.js:586 msgid "February" msgstr "Februari" -#: js/js.js:575 +#: js/js.js:586 msgid "March" msgstr "Mars" -#: js/js.js:575 +#: js/js.js:586 msgid "April" msgstr "April" -#: js/js.js:575 +#: js/js.js:586 msgid "May" msgstr "Maj" -#: js/js.js:575 +#: js/js.js:586 msgid "June" msgstr "Juni" -#: js/js.js:576 +#: js/js.js:587 msgid "July" msgstr "Juli" -#: js/js.js:576 +#: js/js.js:587 msgid "August" msgstr "Augusti" -#: js/js.js:576 +#: js/js.js:587 msgid "September" msgstr "September" -#: js/js.js:576 +#: js/js.js:587 msgid "October" msgstr "Oktober" -#: js/js.js:576 +#: js/js.js:587 msgid "November" msgstr "November" -#: js/js.js:576 +#: js/js.js:587 msgid "December" msgstr "December" diff --git a/l10n/sv/files_sharing.po b/l10n/sv/files_sharing.po index dada4f4e79b..71f71e1dda2 100644 --- a/l10n/sv/files_sharing.po +++ b/l10n/sv/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: 2012-08-23 02:03+0200\n" -"PO-Revision-Date: 2012-08-23 00:04+0000\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -18,18 +18,10 @@ msgstr "" "Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: templates/get.php:4 -msgid "Size" -msgstr "Storlek" +#: templates/authenticate.php:4 +msgid "Password" +msgstr "" -#: templates/get.php:5 -msgid "Modified" -msgstr "Ändrad" - -#: templates/get.php:5 -msgid "Delete all" -msgstr "Radera alla" - -#: templates/get.php:5 -msgid "Delete" -msgstr "Radera" +#: templates/authenticate.php:6 +msgid "Submit" +msgstr "" diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index f764a35f035..205f6b1314c 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/settings.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-23 02:03+0200\n" -"PO-Revision-Date: 2012-08-22 06:21+0000\n" -"Last-Translator: Magnus Höglund \n" +"POT-Creation-Date: 2012-08-29 02:02+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+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" @@ -93,10 +93,46 @@ msgid "use systems cron service" msgstr "använd systemets cron-tjänst" #: templates/admin.php:39 +msgid "Share API" +msgstr "" + +#: templates/admin.php:44 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:45 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:49 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:50 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:54 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:55 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:58 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:60 +msgid "Allow users to only share with users in their groups" +msgstr "" + +#: templates/admin.php:67 msgid "Log" msgstr "Logg" -#: templates/admin.php:67 +#: templates/admin.php:95 msgid "More" msgstr "Mera" diff --git a/l10n/sv/user_ldap.po b/l10n/sv/user_ldap.po index 55f7bbecf97..d5691270f2e 100644 --- a/l10n/sv/user_ldap.po +++ b/l10n/sv/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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-13 12:33+0000\n" -"Last-Translator: Magnus Höglund \n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" +"Last-Translator: I Robot \n" "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" @@ -160,6 +160,12 @@ msgstr "i bytes" msgid "in seconds. A change empties the cache." msgstr "i sekunder. En förändring tömmer cache." -#: templates/settings.php:31 +#: templates/settings.php:30 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:32 msgid "Help" msgstr "Hjälp" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index e1734c27a3e..fb63cce50f7 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-08-28 02:01+0200\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -33,55 +33,55 @@ msgstr "" msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "" -#: js/js.js:190 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 msgid "Settings" msgstr "" -#: js/js.js:575 +#: js/js.js:586 msgid "January" msgstr "" -#: js/js.js:575 +#: js/js.js:586 msgid "February" msgstr "" -#: js/js.js:575 +#: js/js.js:586 msgid "March" msgstr "" -#: js/js.js:575 +#: js/js.js:586 msgid "April" msgstr "" -#: js/js.js:575 +#: js/js.js:586 msgid "May" msgstr "" -#: js/js.js:575 +#: js/js.js:586 msgid "June" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "July" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "August" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "September" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "October" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "November" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "December" msgstr "" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 752e31fd7cc..ab39126f395 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-08-28 02:01+0200\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 27c7446cb47..06954d4efa8 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-08-28 02:01+0200\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index e4e7f18c218..8a89c7d2143 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-08-28 02:01+0200\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index 9cfb951daf0..9bded512ffc 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-08-28 02:01+0200\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,18 +17,10 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: templates/get.php:4 -msgid "Size" +#: templates/authenticate.php:4 +msgid "Password" msgstr "" -#: templates/get.php:5 -msgid "Modified" -msgstr "" - -#: templates/get.php:5 -msgid "Delete all" -msgstr "" - -#: templates/get.php:5 -msgid "Delete" +#: templates/authenticate.php:6 +msgid "Submit" msgstr "" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index d50826056ba..a04d4da1575 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-08-28 02:01+0200\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index ac7b81d36f1..27de1e0d902 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-08-28 02:01+0200\n" +"POT-Creation-Date: 2012-08-29 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 4e40d1bc968..a848774f202 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-08-28 02:01+0200\n" +"POT-Creation-Date: 2012-08-29 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -86,10 +86,46 @@ msgid "use systems cron service" msgstr "" #: templates/admin.php:39 -msgid "Log" +msgid "Share API" +msgstr "" + +#: templates/admin.php:44 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:45 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:49 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:50 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:54 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:55 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:58 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:60 +msgid "Allow users to only share with users in their groups" msgstr "" #: templates/admin.php:67 +msgid "Log" +msgstr "" + +#: templates/admin.php:95 msgid "More" msgstr "" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index f84f2d1141e..afb446dd073 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-08-28 02:01+0200\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -158,6 +158,11 @@ msgstr "" msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:31 +#: templates/settings.php:30 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." +msgstr "" + +#: templates/settings.php:32 msgid "Help" msgstr "" diff --git a/l10n/th_TH/core.po b/l10n/th_TH/core.po index 0a1fad25bdb..3868f2ff314 100644 --- a/l10n/th_TH/core.po +++ b/l10n/th_TH/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-28 02:01+0200\n" -"PO-Revision-Date: 2012-08-28 00:02+0000\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -35,55 +35,55 @@ msgstr "หมวดหมู่นี้มีอยู่แล้ว: " msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -#: js/js.js:190 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 msgid "Settings" msgstr "ตั้งค่า" -#: js/js.js:575 +#: js/js.js:586 msgid "January" msgstr "มกราคม" -#: js/js.js:575 +#: js/js.js:586 msgid "February" msgstr "กุมภาพันธ์" -#: js/js.js:575 +#: js/js.js:586 msgid "March" msgstr "มีนาคม" -#: js/js.js:575 +#: js/js.js:586 msgid "April" msgstr "เมษายน" -#: js/js.js:575 +#: js/js.js:586 msgid "May" msgstr "พฤษภาคม" -#: js/js.js:575 +#: js/js.js:586 msgid "June" msgstr "มิถุนายน" -#: js/js.js:576 +#: js/js.js:587 msgid "July" msgstr "กรกฏาคม" -#: js/js.js:576 +#: js/js.js:587 msgid "August" msgstr "สิงหาคม" -#: js/js.js:576 +#: js/js.js:587 msgid "September" msgstr "กันยายน" -#: js/js.js:576 +#: js/js.js:587 msgid "October" msgstr "ตุลาคม" -#: js/js.js:576 +#: js/js.js:587 msgid "November" msgstr "พฤศจิกายน" -#: js/js.js:576 +#: js/js.js:587 msgid "December" msgstr "ธันวาคม" diff --git a/l10n/th_TH/files_sharing.po b/l10n/th_TH/files_sharing.po index 6e5fafa72c6..21f2b67908a 100644 --- a/l10n/th_TH/files_sharing.po +++ b/l10n/th_TH/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: 2012-08-23 02:03+0200\n" -"PO-Revision-Date: 2012-08-23 00:04+0000\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -18,18 +18,10 @@ msgstr "" "Language: th_TH\n" "Plural-Forms: nplurals=1; plural=0\n" -#: templates/get.php:4 -msgid "Size" -msgstr "ขนาด" +#: templates/authenticate.php:4 +msgid "Password" +msgstr "" -#: templates/get.php:5 -msgid "Modified" -msgstr "แก้ไขแล้ว" - -#: templates/get.php:5 -msgid "Delete all" -msgstr "ลบทั้งหมด" - -#: templates/get.php:5 -msgid "Delete" -msgstr "ลบ" +#: templates/authenticate.php:6 +msgid "Submit" +msgstr "" diff --git a/l10n/th_TH/settings.po b/l10n/th_TH/settings.po index f2de2ffdc5c..99b1cb2ac35 100644 --- a/l10n/th_TH/settings.po +++ b/l10n/th_TH/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-20 02:01+0200\n" -"PO-Revision-Date: 2012-08-19 15:11+0000\n" -"Last-Translator: AriesAnywhere Anywhere \n" +"POT-Creation-Date: 2012-08-29 02:02+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -89,10 +89,46 @@ msgid "use systems cron service" msgstr "ใช้บริการ cron จากระบบ" #: templates/admin.php:39 +msgid "Share API" +msgstr "" + +#: templates/admin.php:44 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:45 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:49 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:50 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:54 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:55 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:58 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:60 +msgid "Allow users to only share with users in their groups" +msgstr "" + +#: templates/admin.php:67 msgid "Log" msgstr "บันทึกการเปลี่ยนแปลง" -#: templates/admin.php:67 +#: templates/admin.php:95 msgid "More" msgstr "เพิ่มเติม" diff --git a/l10n/th_TH/user_ldap.po b/l10n/th_TH/user_ldap.po index b87bd07fa5c..791bc9000b3 100644 --- a/l10n/th_TH/user_ldap.po +++ b/l10n/th_TH/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: 2012-08-23 02:03+0200\n" -"PO-Revision-Date: 2012-08-22 18:47+0000\n" -"Last-Translator: AriesAnywhere Anywhere \n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -160,6 +160,12 @@ msgstr "ในหน่วยไบต์" msgid "in seconds. A change empties the cache." msgstr "ในอีกไม่กี่วินาที ระบบจะเปลี่ยนแปลงข้อมูลในแคชให้ว่างเปล่า" -#: templates/settings.php:31 +#: templates/settings.php:30 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:32 msgid "Help" msgstr "ช่วยเหลือ" diff --git a/l10n/tr/core.po b/l10n/tr/core.po index 1047bf9dc7b..c965064524d 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-28 02:01+0200\n" -"PO-Revision-Date: 2012-08-28 00:02+0000\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -35,55 +35,55 @@ msgstr "Bu kategori zaten mevcut: " msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -#: js/js.js:190 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 msgid "Settings" msgstr "Ayarlar" -#: js/js.js:575 +#: js/js.js:586 msgid "January" msgstr "Ocak" -#: js/js.js:575 +#: js/js.js:586 msgid "February" msgstr "Şubat" -#: js/js.js:575 +#: js/js.js:586 msgid "March" msgstr "Mart" -#: js/js.js:575 +#: js/js.js:586 msgid "April" msgstr "Nisan" -#: js/js.js:575 +#: js/js.js:586 msgid "May" msgstr "Mayıs" -#: js/js.js:575 +#: js/js.js:586 msgid "June" msgstr "Haziran" -#: js/js.js:576 +#: js/js.js:587 msgid "July" msgstr "Temmuz" -#: js/js.js:576 +#: js/js.js:587 msgid "August" msgstr "Ağustos" -#: js/js.js:576 +#: js/js.js:587 msgid "September" msgstr "Eylül" -#: js/js.js:576 +#: js/js.js:587 msgid "October" msgstr "Ekim" -#: js/js.js:576 +#: js/js.js:587 msgid "November" msgstr "Kasım" -#: js/js.js:576 +#: js/js.js:587 msgid "December" msgstr "Aralık" diff --git a/l10n/tr/files_sharing.po b/l10n/tr/files_sharing.po index 3f6c26efdca..bc726f546fb 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: 2012-08-23 02:03+0200\n" -"PO-Revision-Date: 2012-08-23 00:04+0000\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -17,18 +17,10 @@ msgstr "" "Language: tr\n" "Plural-Forms: nplurals=1; plural=0\n" -#: templates/get.php:4 -msgid "Size" +#: templates/authenticate.php:4 +msgid "Password" msgstr "" -#: templates/get.php:5 -msgid "Modified" -msgstr "" - -#: templates/get.php:5 -msgid "Delete all" -msgstr "" - -#: templates/get.php:5 -msgid "Delete" +#: templates/authenticate.php:6 +msgid "Submit" msgstr "" diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index f2a34211a79..cfe4ddc892b 100644 --- a/l10n/tr/settings.po +++ b/l10n/tr/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-18 02:01+0200\n" -"PO-Revision-Date: 2012-08-18 00:02+0000\n" +"POT-Creation-Date: 2012-08-29 02:02+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+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" @@ -89,10 +89,46 @@ msgid "use systems cron service" msgstr "" #: templates/admin.php:39 +msgid "Share API" +msgstr "" + +#: templates/admin.php:44 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:45 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:49 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:50 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:54 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:55 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:58 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:60 +msgid "Allow users to only share with users in their groups" +msgstr "" + +#: templates/admin.php:67 msgid "Log" msgstr "Günlük" -#: templates/admin.php:67 +#: templates/admin.php:95 msgid "More" msgstr "Devamı" diff --git a/l10n/tr/user_ldap.po b/l10n/tr/user_ldap.po index de0cb374c3d..5429c2cff89 100644 --- a/l10n/tr/user_ldap.po +++ b/l10n/tr/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" +"Last-Translator: I Robot \n" "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" @@ -159,6 +159,12 @@ msgstr "" msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:31 +#: templates/settings.php:30 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:32 msgid "Help" msgstr "" diff --git a/l10n/uk/core.po b/l10n/uk/core.po index 709e2411388..7493adea347 100644 --- a/l10n/uk/core.po +++ b/l10n/uk/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-28 02:01+0200\n" -"PO-Revision-Date: 2012-08-28 00:02+0000\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -35,55 +35,55 @@ msgstr "" msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "" -#: js/js.js:190 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 msgid "Settings" msgstr "Налаштування" -#: js/js.js:575 +#: js/js.js:586 msgid "January" msgstr "" -#: js/js.js:575 +#: js/js.js:586 msgid "February" msgstr "" -#: js/js.js:575 +#: js/js.js:586 msgid "March" msgstr "" -#: js/js.js:575 +#: js/js.js:586 msgid "April" msgstr "" -#: js/js.js:575 +#: js/js.js:586 msgid "May" msgstr "" -#: js/js.js:575 +#: js/js.js:586 msgid "June" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "July" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "August" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "September" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "October" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "November" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "December" msgstr "" diff --git a/l10n/uk/files_sharing.po b/l10n/uk/files_sharing.po index 4786918c70f..a90d76aca05 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: 2012-08-23 02:03+0200\n" -"PO-Revision-Date: 2012-08-23 00:04+0000\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -17,18 +17,10 @@ msgstr "" "Language: uk\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" -#: templates/get.php:4 -msgid "Size" +#: templates/authenticate.php:4 +msgid "Password" msgstr "" -#: templates/get.php:5 -msgid "Modified" -msgstr "" - -#: templates/get.php:5 -msgid "Delete all" -msgstr "" - -#: templates/get.php:5 -msgid "Delete" +#: templates/authenticate.php:6 +msgid "Submit" msgstr "" diff --git a/l10n/uk/settings.po b/l10n/uk/settings.po index f32d1abccf9..03945e1bfb6 100644 --- a/l10n/uk/settings.po +++ b/l10n/uk/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-18 02:01+0200\n" -"PO-Revision-Date: 2012-08-18 00:02+0000\n" +"POT-Creation-Date: 2012-08-29 02:02+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+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" @@ -87,10 +87,46 @@ msgid "use systems cron service" msgstr "" #: templates/admin.php:39 -msgid "Log" +msgid "Share API" +msgstr "" + +#: templates/admin.php:44 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:45 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:49 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:50 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:54 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:55 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:58 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:60 +msgid "Allow users to only share with users in their groups" msgstr "" #: templates/admin.php:67 +msgid "Log" +msgstr "" + +#: templates/admin.php:95 msgid "More" msgstr "" diff --git a/l10n/uk/user_ldap.po b/l10n/uk/user_ldap.po index 236f6c2034a..d9481263168 100644 --- a/l10n/uk/user_ldap.po +++ b/l10n/uk/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -159,6 +159,12 @@ msgstr "" msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:31 +#: templates/settings.php:30 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:32 msgid "Help" msgstr "" diff --git a/l10n/vi/core.po b/l10n/vi/core.po index ec28c892d0c..ddfe09758d6 100644 --- a/l10n/vi/core.po +++ b/l10n/vi/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-28 02:01+0200\n" -"PO-Revision-Date: 2012-08-28 00:02+0000\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -34,55 +34,55 @@ msgstr "Danh mục này đã được tạo :" msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -#: js/js.js:190 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 msgid "Settings" msgstr "Cài đặt" -#: js/js.js:575 +#: js/js.js:586 msgid "January" msgstr "Tháng 1" -#: js/js.js:575 +#: js/js.js:586 msgid "February" msgstr "Tháng 2" -#: js/js.js:575 +#: js/js.js:586 msgid "March" msgstr "Tháng 3" -#: js/js.js:575 +#: js/js.js:586 msgid "April" msgstr "Tháng 4" -#: js/js.js:575 +#: js/js.js:586 msgid "May" msgstr "Tháng 5" -#: js/js.js:575 +#: js/js.js:586 msgid "June" msgstr "Tháng 6" -#: js/js.js:576 +#: js/js.js:587 msgid "July" msgstr "Tháng 7" -#: js/js.js:576 +#: js/js.js:587 msgid "August" msgstr "Tháng 8" -#: js/js.js:576 +#: js/js.js:587 msgid "September" msgstr "Tháng 9" -#: js/js.js:576 +#: js/js.js:587 msgid "October" msgstr "Tháng 10" -#: js/js.js:576 +#: js/js.js:587 msgid "November" msgstr "Tháng 11" -#: js/js.js:576 +#: js/js.js:587 msgid "December" msgstr "Tháng 12" diff --git a/l10n/vi/files_sharing.po b/l10n/vi/files_sharing.po index 87e7cce9bd0..fbfe4602344 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: 2012-08-23 02:03+0200\n" -"PO-Revision-Date: 2012-08-23 00:04+0000\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -17,18 +17,10 @@ msgstr "" "Language: vi\n" "Plural-Forms: nplurals=1; plural=0\n" -#: templates/get.php:4 -msgid "Size" +#: templates/authenticate.php:4 +msgid "Password" msgstr "" -#: templates/get.php:5 -msgid "Modified" -msgstr "" - -#: templates/get.php:5 -msgid "Delete all" -msgstr "" - -#: templates/get.php:5 -msgid "Delete" +#: templates/authenticate.php:6 +msgid "Submit" msgstr "" diff --git a/l10n/vi/settings.po b/l10n/vi/settings.po index 41c0adc6ef3..fdbc7da0b1d 100644 --- a/l10n/vi/settings.po +++ b/l10n/vi/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-18 02:01+0200\n" -"PO-Revision-Date: 2012-08-18 00:02+0000\n" +"POT-Creation-Date: 2012-08-29 02:02+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+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" @@ -88,10 +88,46 @@ msgid "use systems cron service" msgstr "" #: templates/admin.php:39 +msgid "Share API" +msgstr "" + +#: templates/admin.php:44 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:45 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:49 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:50 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:54 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:55 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:58 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:60 +msgid "Allow users to only share with users in their groups" +msgstr "" + +#: templates/admin.php:67 msgid "Log" msgstr "Log" -#: templates/admin.php:67 +#: templates/admin.php:95 msgid "More" msgstr "nhiều hơn" diff --git a/l10n/vi/user_ldap.po b/l10n/vi/user_ldap.po index 52c6146db34..6fd933c5b5c 100644 --- a/l10n/vi/user_ldap.po +++ b/l10n/vi/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -159,6 +159,12 @@ msgstr "" msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:31 +#: templates/settings.php:30 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:32 msgid "Help" msgstr "" diff --git a/l10n/zh_CN.GB2312/core.po b/l10n/zh_CN.GB2312/core.po index e0a74fb07fc..5ae461a170f 100644 --- a/l10n/zh_CN.GB2312/core.po +++ b/l10n/zh_CN.GB2312/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-28 02:01+0200\n" -"PO-Revision-Date: 2012-08-28 00:02+0000\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -34,55 +34,55 @@ msgstr "这个分类已经存在了:" msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -#: js/js.js:190 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 msgid "Settings" msgstr "设置" -#: js/js.js:575 +#: js/js.js:586 msgid "January" msgstr "一月" -#: js/js.js:575 +#: js/js.js:586 msgid "February" msgstr "二月" -#: js/js.js:575 +#: js/js.js:586 msgid "March" msgstr "三月" -#: js/js.js:575 +#: js/js.js:586 msgid "April" msgstr "四月" -#: js/js.js:575 +#: js/js.js:586 msgid "May" msgstr "五月" -#: js/js.js:575 +#: js/js.js:586 msgid "June" msgstr "六月" -#: js/js.js:576 +#: js/js.js:587 msgid "July" msgstr "七月" -#: js/js.js:576 +#: js/js.js:587 msgid "August" msgstr "八月" -#: js/js.js:576 +#: js/js.js:587 msgid "September" msgstr "九月" -#: js/js.js:576 +#: js/js.js:587 msgid "October" msgstr "十月" -#: js/js.js:576 +#: js/js.js:587 msgid "November" msgstr "十一月" -#: js/js.js:576 +#: js/js.js:587 msgid "December" msgstr "十二月" diff --git a/l10n/zh_CN.GB2312/files_sharing.po b/l10n/zh_CN.GB2312/files_sharing.po index 0243a9ebaaa..33a8efe4678 100644 --- a/l10n/zh_CN.GB2312/files_sharing.po +++ b/l10n/zh_CN.GB2312/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-23 02:03+0200\n" -"PO-Revision-Date: 2012-08-23 00:04+0000\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -17,18 +17,10 @@ msgstr "" "Language: zh_CN.GB2312\n" "Plural-Forms: nplurals=1; plural=0\n" -#: templates/get.php:4 -msgid "Size" +#: templates/authenticate.php:4 +msgid "Password" msgstr "" -#: templates/get.php:5 -msgid "Modified" -msgstr "" - -#: templates/get.php:5 -msgid "Delete all" -msgstr "" - -#: templates/get.php:5 -msgid "Delete" +#: templates/authenticate.php:6 +msgid "Submit" msgstr "" diff --git a/l10n/zh_CN.GB2312/settings.po b/l10n/zh_CN.GB2312/settings.po index 70f3d9d228b..5cefbd67856 100644 --- a/l10n/zh_CN.GB2312/settings.po +++ b/l10n/zh_CN.GB2312/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-18 02:01+0200\n" -"PO-Revision-Date: 2012-08-18 00:02+0000\n" +"POT-Creation-Date: 2012-08-29 02:02+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -87,10 +87,46 @@ msgid "use systems cron service" msgstr "" #: templates/admin.php:39 +msgid "Share API" +msgstr "" + +#: templates/admin.php:44 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:45 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:49 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:50 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:54 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:55 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:58 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:60 +msgid "Allow users to only share with users in their groups" +msgstr "" + +#: templates/admin.php:67 msgid "Log" msgstr "日志" -#: templates/admin.php:67 +#: templates/admin.php:95 msgid "More" msgstr "更多" diff --git a/l10n/zh_CN.GB2312/user_ldap.po b/l10n/zh_CN.GB2312/user_ldap.po index 725d441e3c4..67a667a8eea 100644 --- a/l10n/zh_CN.GB2312/user_ldap.po +++ b/l10n/zh_CN.GB2312/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -159,6 +159,12 @@ msgstr "" msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:31 +#: templates/settings.php:30 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:32 msgid "Help" msgstr "" diff --git a/l10n/zh_CN/core.po b/l10n/zh_CN/core.po index eace2d9fe65..da40f7d3932 100644 --- a/l10n/zh_CN/core.po +++ b/l10n/zh_CN/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-28 02:01+0200\n" -"PO-Revision-Date: 2012-08-28 00:02+0000\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -35,55 +35,55 @@ msgstr "此分类已存在: " msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "" -#: js/js.js:190 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 msgid "Settings" msgstr "设置" -#: js/js.js:575 +#: js/js.js:586 msgid "January" msgstr "一月" -#: js/js.js:575 +#: js/js.js:586 msgid "February" msgstr "二月" -#: js/js.js:575 +#: js/js.js:586 msgid "March" msgstr "三月" -#: js/js.js:575 +#: js/js.js:586 msgid "April" msgstr "四月" -#: js/js.js:575 +#: js/js.js:586 msgid "May" msgstr "五月" -#: js/js.js:575 +#: js/js.js:586 msgid "June" msgstr "六月" -#: js/js.js:576 +#: js/js.js:587 msgid "July" msgstr "七月" -#: js/js.js:576 +#: js/js.js:587 msgid "August" msgstr "八月" -#: js/js.js:576 +#: js/js.js:587 msgid "September" msgstr "九月" -#: js/js.js:576 +#: js/js.js:587 msgid "October" msgstr "十月" -#: js/js.js:576 +#: js/js.js:587 msgid "November" msgstr "十一月" -#: js/js.js:576 +#: js/js.js:587 msgid "December" msgstr "十二月" diff --git a/l10n/zh_CN/files_sharing.po b/l10n/zh_CN/files_sharing.po index 6c3271e513f..cb50b796bf1 100644 --- a/l10n/zh_CN/files_sharing.po +++ b/l10n/zh_CN/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-23 02:03+0200\n" -"PO-Revision-Date: 2012-08-23 00:04+0000\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -17,18 +17,10 @@ msgstr "" "Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0\n" -#: templates/get.php:4 -msgid "Size" +#: templates/authenticate.php:4 +msgid "Password" msgstr "" -#: templates/get.php:5 -msgid "Modified" -msgstr "" - -#: templates/get.php:5 -msgid "Delete all" -msgstr "" - -#: templates/get.php:5 -msgid "Delete" +#: templates/authenticate.php:6 +msgid "Submit" msgstr "" diff --git a/l10n/zh_CN/settings.po b/l10n/zh_CN/settings.po index f9f1faf7b30..30ae97464e4 100644 --- a/l10n/zh_CN/settings.po +++ b/l10n/zh_CN/settings.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-26 19:46+0200\n" -"PO-Revision-Date: 2012-08-26 05:33+0000\n" -"Last-Translator: hanfeng \n" +"POT-Creation-Date: 2012-08-29 02:02+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+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" @@ -90,10 +90,46 @@ msgid "use systems cron service" msgstr "实现系统 cron 服务" #: templates/admin.php:39 +msgid "Share API" +msgstr "" + +#: templates/admin.php:44 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:45 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:49 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:50 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:54 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:55 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:58 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:60 +msgid "Allow users to only share with users in their groups" +msgstr "" + +#: templates/admin.php:67 msgid "Log" msgstr "日志" -#: templates/admin.php:67 +#: templates/admin.php:95 msgid "More" msgstr "更多" diff --git a/l10n/zh_CN/user_ldap.po b/l10n/zh_CN/user_ldap.po index 5e871541a09..a34796c9c3d 100644 --- a/l10n/zh_CN/user_ldap.po +++ b/l10n/zh_CN/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" +"Last-Translator: I Robot \n" "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" @@ -159,6 +159,12 @@ msgstr "" msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:31 +#: templates/settings.php:30 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:32 msgid "Help" msgstr "" diff --git a/l10n/zh_TW/core.po b/l10n/zh_TW/core.po index 1bc6215fcd9..8fe1a80fc5a 100644 --- a/l10n/zh_TW/core.po +++ b/l10n/zh_TW/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-28 02:01+0200\n" -"PO-Revision-Date: 2012-08-28 00:02+0000\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -34,55 +34,55 @@ msgstr "此分類已經存在:" msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "" -#: js/js.js:190 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 msgid "Settings" msgstr "設定" -#: js/js.js:575 +#: js/js.js:586 msgid "January" msgstr "" -#: js/js.js:575 +#: js/js.js:586 msgid "February" msgstr "" -#: js/js.js:575 +#: js/js.js:586 msgid "March" msgstr "" -#: js/js.js:575 +#: js/js.js:586 msgid "April" msgstr "" -#: js/js.js:575 +#: js/js.js:586 msgid "May" msgstr "" -#: js/js.js:575 +#: js/js.js:586 msgid "June" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "July" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "August" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "September" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "October" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "November" msgstr "" -#: js/js.js:576 +#: js/js.js:587 msgid "December" msgstr "" diff --git a/l10n/zh_TW/files_sharing.po b/l10n/zh_TW/files_sharing.po index 4a2aa509e99..f8438d08d7b 100644 --- a/l10n/zh_TW/files_sharing.po +++ b/l10n/zh_TW/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: 2012-08-23 02:03+0200\n" -"PO-Revision-Date: 2012-08-23 00:04+0000\n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -17,18 +17,10 @@ msgstr "" "Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0\n" -#: templates/get.php:4 -msgid "Size" +#: templates/authenticate.php:4 +msgid "Password" msgstr "" -#: templates/get.php:5 -msgid "Modified" -msgstr "" - -#: templates/get.php:5 -msgid "Delete all" -msgstr "" - -#: templates/get.php:5 -msgid "Delete" +#: templates/authenticate.php:6 +msgid "Submit" msgstr "" diff --git a/l10n/zh_TW/settings.po b/l10n/zh_TW/settings.po index d333fc726bf..aaea010810b 100644 --- a/l10n/zh_TW/settings.po +++ b/l10n/zh_TW/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-25 02:04+0200\n" -"PO-Revision-Date: 2012-08-24 03:42+0000\n" -"Last-Translator: weiyu \n" +"POT-Creation-Date: 2012-08-29 02:02+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+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" @@ -88,10 +88,46 @@ msgid "use systems cron service" msgstr "" #: templates/admin.php:39 +msgid "Share API" +msgstr "" + +#: templates/admin.php:44 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:45 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:49 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:50 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:54 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:55 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:58 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:60 +msgid "Allow users to only share with users in their groups" +msgstr "" + +#: templates/admin.php:67 msgid "Log" msgstr "紀錄" -#: templates/admin.php:67 +#: templates/admin.php:95 msgid "More" msgstr "更多" diff --git a/l10n/zh_TW/user_ldap.po b/l10n/zh_TW/user_ldap.po index d84e081d11d..f57f67dde9e 100644 --- a/l10n/zh_TW/user_ldap.po +++ b/l10n/zh_TW/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-08-29 02:01+0200\n" +"PO-Revision-Date: 2012-08-29 00:03+0000\n" +"Last-Translator: I Robot \n" "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" @@ -159,6 +159,12 @@ msgstr "" msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:31 +#: templates/settings.php:30 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:32 msgid "Help" msgstr "" diff --git a/settings/l10n/id.php b/settings/l10n/id.php index bf35b79240a..a69d9855cae 100644 --- a/settings/l10n/id.php +++ b/settings/l10n/id.php @@ -1,12 +1,19 @@ "Email tersimpan", +"Invalid email" => "Email tidak sah", "OpenID Changed" => "OpenID telah dirubah", "Invalid request" => "Permintaan tidak valid", "Language changed" => "Bahasa telah diganti", +"Disable" => "NonAktifkan", +"Enable" => "Aktifkan", +"Saving..." => "Menyimpan...", "__language_name__" => "__language_name__", +"Security Warning" => "Peringatan Keamanan", "Log" => "Log", "More" => "Lebih", "Add your App" => "Tambahkan App anda", "Select an App" => "Pilih satu aplikasi", +"See application page at apps.owncloud.com" => "Lihat halaman aplikasi di apps.owncloud.com", "-licensed" => "-terlisensi", "by" => "oleh", "Documentation" => "Dokumentasi", @@ -37,6 +44,7 @@ "Create" => "Buat", "Default Quota" => "Kuota default", "Other" => "Lain-lain", +"Group Admin" => "Admin Grup", "Quota" => "Quota", "Delete" => "Hapus" ); diff --git a/settings/l10n/lv.php b/settings/l10n/lv.php index 9fa1ccdcfe3..eb87bed7f8e 100644 --- a/settings/l10n/lv.php +++ b/settings/l10n/lv.php @@ -1,14 +1,18 @@ "Nebija iespējams lejuplādēt sarakstu no aplikāciju veikala", "Email saved" => "Epasts tika saglabāts", "Invalid email" => "Nepareizs epasts", "OpenID Changed" => "OpenID nomainīts", "Invalid request" => "Nepareizs vaicājums", +"Authentication error" => "Ielogošanās kļūme", "Language changed" => "Valoda tika nomainīta", +"Error" => "Kļūme", "Disable" => "Atvienot", "Enable" => "Pievienot", "Saving..." => "Saglabā...", "__language_name__" => "__valodas_nosaukums__", "Security Warning" => "Brīdinājums par drošību", +"Cron" => "Cron", "Log" => "Log", "More" => "Vairāk", "Add your App" => "Pievieno savu aplikāciju", @@ -44,6 +48,7 @@ "Create" => "Izveidot", "Default Quota" => "Apjoms pēc noklusējuma", "Other" => "Cits", +"Group Admin" => "Grupas administrators", "Quota" => "Apjoms", "Delete" => "Izdzēst" ); From 9fcb916057934b81a44952bf67bc0118f609c570 Mon Sep 17 00:00:00 2001 From: Michael Gapczynski Date: Tue, 28 Aug 2012 15:10:06 -0400 Subject: [PATCH 025/246] Fix toggling of password protection in sharing dropdown --- core/css/share.css | 4 +++- core/js/share.js | 11 ++++++----- 2 files changed, 9 insertions(+), 6 deletions(-) diff --git a/core/css/share.css b/core/css/share.css index a8ffc8df42e..abaeb07dd8a 100644 --- a/core/css/share.css +++ b/core/css/share.css @@ -15,4 +15,6 @@ a.showCruds { display:inline; opacity:.5; } a.showCruds:hover { opacity:1; } a.unshare { float:right; display:inline; padding:.3em 0 0 .3em !important; opacity:.5; } a.unshare:hover { opacity:1; } -#link { border-top:1px solid #ddd; padding-top:0.5em; } \ No newline at end of file +#link { border-top:1px solid #ddd; padding-top:0.5em; } +input[type="text"], input[type="password"] { width:90%; } +#linkText, #linkPass { display:none; } diff --git a/core/js/share.js b/core/js/share.js index 4c164f65b24..cc862b1c5f5 100644 --- a/core/js/share.js +++ b/core/js/share.js @@ -130,7 +130,7 @@ OC.Share={ html += '
'; } if (possiblePermissions & OC.Share.PERMISSION_SHARE) { - html += ''; + html += ''; html += '
    '; html += '
'; if (link) { @@ -139,8 +139,10 @@ OC.Share={ // TODO Change to lock/unlock icon? html += ''; html += '
'; - html += ''; - html += ''; + html += ''; + html += '
'; + html += ''; + html += '
' html += ''; } html += ''; @@ -408,8 +410,7 @@ $(document).ready(function() { }); $('#showPassword').live('click', function() { - $('#linkText').after('
'); - $('#linkPassText').toggle('blind'); + $('#linkPass').toggle('blind'); }); $('#linkPassText').live('keyup', function(event) { From e5cbc532c300142e50f9a6ffb14229595dd74c78 Mon Sep 17 00:00:00 2001 From: Michael Gapczynski Date: Wed, 29 Aug 2012 11:54:31 -0400 Subject: [PATCH 026/246] Fix password authentication for links and fix template problems for links by creating a new base layout --- apps/files_sharing/css/public.css | 9 ++++- apps/files_sharing/public.php | 13 +++++-- apps/files_sharing/templates/authenticate.php | 2 +- apps/files_sharing/templates/public.php | 12 ++++-- core/templates/layout.base.php | 37 +++++++++++++++++++ lib/templatelayout.php | 10 +++-- 6 files changed, 69 insertions(+), 14 deletions(-) create mode 100644 core/templates/layout.base.php diff --git a/apps/files_sharing/css/public.css b/apps/files_sharing/css/public.css index aa76c06175b..f38afae3dd8 100644 --- a/apps/files_sharing/css/public.css +++ b/apps/files_sharing/css/public.css @@ -1,2 +1,7 @@ -#content { position:relative; } -#preview p { text-align: center; } \ No newline at end of file +body { background:#ddd; } +#header { position:fixed; top:0; left:0; right:0; z-index:100; height:2.5em; line-height:2.5em; padding:.5em; background:#1d2d44; -moz-box-shadow:0 0 10px rgba(0, 0, 0, .5), inset 0 -2px 10px #222; -webkit-box-shadow:0 0 10px rgba(0, 0, 0, .5), inset 0 -2px 10px #222; box-shadow:0 0 10px rgba(0, 0, 0, .5), inset 0 -2px 10px #222; } +#details { color:#fff; } +#download { margin-left:2em; font-weight:bold; color:#fff; } +#preview { min-height:30em; margin:50px auto; border-bottom:1px solid #f8f8f8; background:#eee; text-align:center; } +p.info { width:22em; text-align: center; margin:2em auto; color:#777; text-shadow:#fff 0 1px 0; } +p.info a { font-weight:bold; color:#777; } \ No newline at end of file diff --git a/apps/files_sharing/public.php b/apps/files_sharing/public.php index 15dac576d98..a4bf0230a3a 100644 --- a/apps/files_sharing/public.php +++ b/apps/files_sharing/public.php @@ -5,6 +5,7 @@ if (isset($_GET['file'])) { $pos = strpos($_GET['file'], '/', 1); $uidOwner = substr($_GET['file'], 1, $pos - 1); if (OCP\User::userExists($uidOwner)) { + OC_Util::tearDownFS(); OC_Util::setupFS($uidOwner); $file = substr($_GET['file'], $pos); $fileSource = OC_Filecache::getId($_GET['file'], ''); @@ -18,14 +19,19 @@ if (isset($_GET['file'])) { $hasher = new PasswordHash(8, $forcePortable); if (!($hasher->CheckPassword($password.OC_Config::getValue('passwordsalt', ''), $storedHash))) { $tmpl = new OCP\Template('files_sharing', 'authenticate', 'guest'); + $tmpl->assign('URL', OCP\Util::linkToPublic('files').'&file='.$_GET['file']); $tmpl->assign('error', true); $tmpl->printPage(); exit(); + } else { + // Save item id in session for future requests + $_SESSION['public_link_authenticated'] = $linkItem['id']; } - // Continue on if password is valid - } else { + // Check if item id is set in session + } else if (!isset($_SESSION['public_link_authenticated']) || $_SESSION['public_link_authenticated'] !== $linkItem['id']) { // Prompt for password $tmpl = new OCP\Template('files_sharing', 'authenticate', 'guest'); + $tmpl->assign('URL', OCP\Util::linkToPublic('files').'&file='.$_GET['file']); $tmpl->printPage(); exit(); } @@ -45,7 +51,8 @@ if (isset($_GET['file'])) { OCP\Util::addStyle('files_sharing', 'public'); OCP\Util::addScript('files_sharing', 'public'); OCP\Util::addScript('files', 'fileactions'); - $tmpl = new OCP\Template('files_sharing', 'public', 'guest'); + $tmpl = new OCP\Template('files_sharing', 'public', 'base'); + $tmpl->assign('details', $uidOwner.' shared the file '.basename($path).' with you'); $tmpl->assign('owner', $uidOwner); $tmpl->assign('name', basename($path)); // Show file list diff --git a/apps/files_sharing/templates/authenticate.php b/apps/files_sharing/templates/authenticate.php index 41064d51464..9695caebf18 100644 --- a/apps/files_sharing/templates/authenticate.php +++ b/apps/files_sharing/templates/authenticate.php @@ -1,4 +1,4 @@ -
+

diff --git a/apps/files_sharing/templates/public.php b/apps/files_sharing/templates/public.php index 065818c2200..36e159dafee 100755 --- a/apps/files_sharing/templates/public.php +++ b/apps/files_sharing/templates/public.php @@ -2,12 +2,16 @@ +

-

shared the file with you

-
-
-Download \ No newline at end of file +

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

\ No newline at end of file diff --git a/core/templates/layout.base.php b/core/templates/layout.base.php new file mode 100644 index 00000000000..bfd23a9ce97 --- /dev/null +++ b/core/templates/layout.base.php @@ -0,0 +1,37 @@ + + + + ownCloud + + + + + + + + + + + + + + + + + $value) { + echo "$name='$value' "; + }; + echo '/>'; + ?> + + + + + + + diff --git a/lib/templatelayout.php b/lib/templatelayout.php index 588a7845997..18fd23aac95 100644 --- a/lib/templatelayout.php +++ b/lib/templatelayout.php @@ -29,14 +29,16 @@ class OC_TemplateLayout extends OC_Template { break; } } - }else{ - parent::__construct( 'core', 'layout.guest' ); + } else if ($renderas == 'guest') { + parent::__construct('core', 'layout.guest'); + } else { + parent::__construct('core', 'layout.base'); } $apps_paths = array(); foreach(OC_App::getEnabledApps() as $app){ $apps_paths[$app] = OC_App::getAppWebPath($app); - } + } $this->assign( 'apps_paths', str_replace('\\/', '/',json_encode($apps_paths)),false ); // Ugly unescape slashes waiting for better solution // Add the js files @@ -63,7 +65,7 @@ class OC_TemplateLayout extends OC_Template { foreach(OC::$APPSROOTS as $app_root) { if($root == $app_root['path']) { $in_root = true; - break; + break; } } From 8be8f6fff2d3456e2f2bd928d40f2e8347f7128b Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Wed, 29 Aug 2012 18:15:53 +0200 Subject: [PATCH 027/246] LDAP: Remove unnecessary debug output, fixes a Notice --- apps/user_ldap/lib/access.php | 1 - 1 file changed, 1 deletion(-) diff --git a/apps/user_ldap/lib/access.php b/apps/user_ldap/lib/access.php index a1206de8285..9abbd91c179 100644 --- a/apps/user_ldap/lib/access.php +++ b/apps/user_ldap/lib/access.php @@ -270,7 +270,6 @@ abstract class Access { //a new user/group! Then let's try to add it. We're shooting into the blue with the user/group name, assuming that in most cases there will not be a conflict. Otherwise an error will occur and we will continue with our second shot. if(($isUser && !\OCP\User::userExists($ldapname)) || (!$isUser && !\OC_Group::groupExists($ldapname))) { if($this->mapComponent($dn, $ldapname, $isUser)) { - \OCP\Util::writeLog('user_ldap', 'Username '.ldapname.' OK.', \OCP\Util::DEBUG); return $ldapname; } } From 741a21292ed73a9b3b9e11633afb00e1725dcf74 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Wed, 29 Aug 2012 19:11:32 +0200 Subject: [PATCH 028/246] LDAP: fix potential infinite loop introduced with 4c4aa92eef858a2a96bb5676304acbcaafaa56f2, as side effect optimize groupExists-method. --- apps/user_ldap/group_ldap.php | 21 ++++++++++++++++++++- apps/user_ldap/lib/access.php | 14 -------------- 2 files changed, 20 insertions(+), 15 deletions(-) diff --git a/apps/user_ldap/group_ldap.php b/apps/user_ldap/group_ldap.php index b29ebe30c51..aac3ed78917 100644 --- a/apps/user_ldap/group_ldap.php +++ b/apps/user_ldap/group_ldap.php @@ -232,7 +232,26 @@ class GROUP_LDAP extends lib\Access implements \OCP\GroupInterface { * @return bool */ public function groupExists($gid){ - return in_array($gid, $this->getGroups()); + if($this->connection->isCached('groupExists'.$gid)) { + return $this->connection->getFromCache('groupExists'.$gid); + } + + //getting dn, if false the group does not exist. If dn, it may be mapped only, requires more checking. + $dn = $this->username2dn($gid); + if(!$dn) { + $this->connection->writeToCache('groupExists'.$gid, false); + return false; + } + + //if group really still exists, we will be able to read its objectclass + $objcs = $this->readAttribute($dn, 'objectclass'); + if(!$objcs || empty($objcs)) { + $this->connection->writeToCache('groupExists'.$gid, false); + return false; + } + + $this->connection->writeToCache('groupExists'.$gid, true); + return true; } /** diff --git a/apps/user_ldap/lib/access.php b/apps/user_ldap/lib/access.php index 9abbd91c179..089548a69ba 100644 --- a/apps/user_ldap/lib/access.php +++ b/apps/user_ldap/lib/access.php @@ -137,20 +137,6 @@ abstract class Access { $dn = $this->ocname2dn($name, true); if($dn) { return $dn; - } else { - //fallback: user is not mapped - $filter = $this->combineFilterWithAnd(array( - $this->connection->ldapUserFilter, - $this->connection->ldapUserDisplayName . '=' . $name, - )); - $result = $this->searchUsers($filter, 'dn'); - if(isset($result[0]['dn'])) { - //try mapping, if names equalize return DN - $uid = $this->dn2username($result[0]['dn']); - if($uid == $name) { - return $result[0]['dn']; - } - } } return false; From 224e55e59091d10c6bb3b6f8bf7bf05c5ff6999d Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Wed, 29 Aug 2012 19:13:38 +0200 Subject: [PATCH 029/246] LDAP: fix debug message with undefined variable --- apps/user_ldap/lib/jobs.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/user_ldap/lib/jobs.php b/apps/user_ldap/lib/jobs.php index 4224ee9d7e5..aff519226c8 100644 --- a/apps/user_ldap/lib/jobs.php +++ b/apps/user_ldap/lib/jobs.php @@ -113,7 +113,7 @@ class Jobs { WHERE `owncloudname` = ? '); foreach($removedGroups as $removedGroup) { - \OCP\Util::writeLog('user_ldap', 'bgJ "updateGroups" – group "'.$createdGroup.'" was removed.', \OCP\Util::INFO); + \OCP\Util::writeLog('user_ldap', 'bgJ "updateGroups" – group "'.$removedGroup.'" was removed.', \OCP\Util::INFO); $query->execute(array($removedGroup)); } \OCP\Util::writeLog('user_ldap', 'bgJ "updateGroups" – FINISHED dealing with removed groups.', \OCP\Util::DEBUG); From 26501a0bc8c7c4fa8343f5fa0c6e42bae1c7f298 Mon Sep 17 00:00:00 2001 From: Michael Gapczynski Date: Wed, 29 Aug 2012 13:58:39 -0400 Subject: [PATCH 030/246] Delete old link if user sets a password --- core/js/share.js | 2 -- lib/public/share.php | 10 ++++++++++ 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/core/js/share.js b/core/js/share.js index cc862b1c5f5..59ff25ee763 100644 --- a/core/js/share.js +++ b/core/js/share.js @@ -417,8 +417,6 @@ $(document).ready(function() { if (event.keyCode == 13) { var itemType = $('#dropdown').data('item-type'); var itemSource = $('#dropdown').data('item-source'); - // TODO Do this internally - OC.Share.unshare(itemType, itemSource, OC.Share.SHARE_TYPE_LINK, ''); OC.Share.share(itemType, itemSource, OC.Share.SHARE_TYPE_LINK, $(this).val(), OC.Share.PERMISSION_READ); } }); diff --git a/lib/public/share.php b/lib/public/share.php index 165e3df452f..91b1bffc2d7 100644 --- a/lib/public/share.php +++ b/lib/public/share.php @@ -229,6 +229,16 @@ class Share { $shareWith['users'] = array_diff(\OC_Group::usersInGroup($group), array($uidOwner)); } else if ($shareType === self::SHARE_TYPE_LINK) { if (\OC_Appconfig::getValue('core', 'shareapi_allow_links', 'yes') == 'yes') { + if ($checkExists = self::getItems($itemType, $itemSource, self::SHARE_TYPE_LINK, null, $uidOwner, self::FORMAT_NONE, null, 1)) { + // If password is set delete the old link + if (isset($shareWith)) { + self::delete($checkExists['id']); + } else { + $message = 'Sharing '.$itemSource.' failed, because this item is already shared with a link'; + \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); + throw new \Exception($message); + } + } // Generate hash of password - same method as user passwords if (isset($shareWith)) { $forcePortable = (CRYPT_BLOWFISH != 1); From 0788c6e968f98647fe8bb8961cc2d250531ce283 Mon Sep 17 00:00:00 2001 From: Michael Gapczynski Date: Wed, 29 Aug 2012 14:01:09 -0400 Subject: [PATCH 031/246] Hide link password controls if link is removed --- core/js/share.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/js/share.js b/core/js/share.js index 59ff25ee763..7d2daffb29d 100644 --- a/core/js/share.js +++ b/core/js/share.js @@ -285,6 +285,8 @@ OC.Share={ }, hideLink:function() { $('#linkText').hide('blind'); + $('#showPassword').hide(); + $('#linkPass').hide(); }, dirname:function(path) { return path.replace(/\\/g,'/').replace(/\/[^\/]*$/, ''); From 76bc4753e9bd2698415b067108806d82ac56b663 Mon Sep 17 00:00:00 2001 From: Michael Gapczynski Date: Wed, 29 Aug 2012 14:06:33 -0400 Subject: [PATCH 032/246] Fix displaying if a link is password protected --- core/js/share.js | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/core/js/share.js b/core/js/share.js index 7d2daffb29d..fa412c7acc5 100644 --- a/core/js/share.js +++ b/core/js/share.js @@ -282,6 +282,10 @@ OC.Share={ $('#linkText').val(link); $('#linkText').show('blind'); $('#showPassword').show(); + if (password.length > 0) { + $('#linkPass').show('blind'); + $('#linkPassText').attr('placeholder', 'Password protected'); + } }, hideLink:function() { $('#linkText').hide('blind'); @@ -419,7 +423,10 @@ $(document).ready(function() { if (event.keyCode == 13) { var itemType = $('#dropdown').data('item-type'); var itemSource = $('#dropdown').data('item-source'); - OC.Share.share(itemType, itemSource, OC.Share.SHARE_TYPE_LINK, $(this).val(), OC.Share.PERMISSION_READ); + OC.Share.share(itemType, itemSource, OC.Share.SHARE_TYPE_LINK, $(this).val(), OC.Share.PERMISSION_READ, function() { + $('#linkPassText').val(''); + $('#linkPassText').attr('placeholder', 'Password protected'); + }); } }); From 52f2e7112ea985203eca16aa787bd75a7cf92194 Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Wed, 29 Aug 2012 08:38:33 +0200 Subject: [PATCH 033/246] Whitespace fixes in lib --- lib/appconfig.php | 6 +-- lib/archive.php | 2 +- lib/archive/tar.php | 6 +-- lib/archive/zip.php | 2 +- lib/backgroundjob/worker.php | 10 ++-- lib/base.php | 4 +- lib/cache.php | 4 +- lib/connector/sabre/auth.php | 2 +- lib/connector/sabre/directory.php | 1 - lib/connector/sabre/file.php | 1 - lib/connector/sabre/locks.php | 6 +-- lib/connector/sabre/node.php | 10 ++-- lib/db.php | 63 ++++++++++++------------ lib/eventsource.php | 2 +- lib/filecache.php | 22 ++++----- lib/filecache/cached.php | 2 +- lib/filecache/update.php | 4 +- lib/fileproxy.php | 6 +-- lib/fileproxy/quota.php | 8 ++-- lib/files.php | 4 +- lib/filestorage/common.php | 62 ++++++++++++------------ lib/filestorage/commontest.php | 4 +- lib/filestorage/local.php | 4 +- lib/filesystem.php | 40 ++++++++-------- lib/filesystemview.php | 8 ++-- lib/geo.php | 2 +- lib/group.php | 2 +- lib/hook.php | 1 - lib/image.php | 8 ++-- lib/json.php | 4 +- lib/l10n.php | 20 ++++---- lib/mail.php | 8 ++-- lib/migrate.php | 10 ++-- lib/migration/content.php | 80 +++++++++++++++---------------- lib/migration/provider.php | 18 +++---- lib/ocs.php | 12 ++--- lib/ocsclient.php | 16 +++---- lib/preferences.php | 2 +- lib/public/app.php | 6 +-- lib/public/backgroundjob.php | 4 +- lib/public/config.php | 2 +- lib/public/db.php | 2 +- lib/public/files.php | 2 +- lib/public/json.php | 54 ++++++++++----------- lib/public/response.php | 2 +- lib/public/template.php | 10 ++-- lib/public/user.php | 2 +- lib/search.php | 8 ++-- lib/search/provider.php | 4 +- lib/setup.php | 20 ++++---- lib/subadmin.php | 14 +++--- lib/template.php | 10 ++-- lib/user.php | 6 +-- lib/user/database.php | 6 +-- lib/user/http.php | 10 ++-- lib/util.php | 18 +++---- lib/vcategories.php | 2 +- 57 files changed, 322 insertions(+), 326 deletions(-) diff --git a/lib/appconfig.php b/lib/appconfig.php index 372cded9a5f..0e608b540bd 100644 --- a/lib/appconfig.php +++ b/lib/appconfig.php @@ -100,7 +100,7 @@ class OC_Appconfig{ return $default; } } - + /** * @brief check if a key is set in the appconfig * @param string $app @@ -111,7 +111,7 @@ class OC_Appconfig{ $exists = self::getKeys( $app ); return in_array( $key, $exists ); } - + /** * @brief sets a value in the appconfig * @param $app app @@ -163,7 +163,7 @@ class OC_Appconfig{ return true; } - + /** * get multiply values, either the app or key can be used as wildcard by setting it to false * @param app diff --git a/lib/archive.php b/lib/archive.php index fabd7cc7a51..5ac4edbfd1e 100644 --- a/lib/archive.php +++ b/lib/archive.php @@ -28,7 +28,7 @@ abstract class OC_Archive{ return new OC_Archive_TAR($path); } } - + abstract function __construct($source); /** * add an empty folder to the archive diff --git a/lib/archive/tar.php b/lib/archive/tar.php index f6efd6d0ecc..095362d0cd6 100644 --- a/lib/archive/tar.php +++ b/lib/archive/tar.php @@ -14,7 +14,7 @@ class OC_Archive_TAR extends OC_Archive{ const BZIP=2; private $fileList; - + /** * @var Archive_Tar tar */ @@ -127,7 +127,7 @@ class OC_Archive_TAR extends OC_Archive{ } return null; } - + /** * get the uncompressed size of a file in the archive * @param string path @@ -254,7 +254,7 @@ class OC_Archive_TAR extends OC_Archive{ return false; } } - + /** * remove a file or folder from the archive * @param string path diff --git a/lib/archive/zip.php b/lib/archive/zip.php index c1a5c35738b..396b1f6c054 100644 --- a/lib/archive/zip.php +++ b/lib/archive/zip.php @@ -12,7 +12,7 @@ class OC_Archive_ZIP extends OC_Archive{ */ private $zip=null; private $path; - + function __construct($source){ $this->path=$source; $this->zip=new ZipArchive(); diff --git a/lib/backgroundjob/worker.php b/lib/backgroundjob/worker.php index b4f0429b319..8684e0df117 100644 --- a/lib/backgroundjob/worker.php +++ b/lib/backgroundjob/worker.php @@ -22,7 +22,7 @@ /** * This class does the dirty work. - * + * * TODO: locking in doAllSteps */ class OC_BackgroundJob_Worker{ @@ -56,7 +56,7 @@ class OC_BackgroundJob_Worker{ OC_BackgroundJob_QueuedTask::delete( $task['id'] ); call_user_func( array( $task['klass'], $task['method'] ), $task['parameters'] ); } - + return true; } @@ -70,7 +70,7 @@ class OC_BackgroundJob_Worker{ */ public static function doNextStep(){ $laststep = OC_Appconfig::getValue( 'core', 'backgroundjobs_step', 'regular_tasks' ); - + if( $laststep == 'regular_tasks' ){ // get last app $lasttask = OC_Appconfig::getValue( 'core', 'backgroundjobs_task', '' ); @@ -79,7 +79,7 @@ class OC_BackgroundJob_Worker{ $regular_tasks = OC_BackgroundJob_RegularTask::all(); ksort( $regular_tasks ); $done = false; - + // search for next background job foreach( $regular_tasks as $key => $value ){ if( strcmp( $key, $lasttask ) > 0 ){ @@ -112,7 +112,7 @@ class OC_BackgroundJob_Worker{ OC_Appconfig::setValue( 'core', 'backgroundjobs_task', '' ); } } - + return true; } } diff --git a/lib/base.php b/lib/base.php index d3f3c5ba1c6..0c3ab8527a9 100644 --- a/lib/base.php +++ b/lib/base.php @@ -239,7 +239,7 @@ class OC{ OC_Util::addScript( 'backgroundjobs' ); } } - + OC_Util::addStyle( "styles" ); OC_Util::addStyle( "multiselect" ); OC_Util::addStyle( "jquery-ui-1.8.16.custom" ); @@ -473,7 +473,7 @@ class OC{ // Someone wants to log in : } elseif (OC::tryFormLogin()) { $error = true; - + // The user is already authenticated using Apaches AuthType Basic... very usable in combination with LDAP } elseif (OC::tryBasicAuthLogin()) { $error = true; diff --git a/lib/cache.php b/lib/cache.php index 55f189a5da8..fed990b5b34 100644 --- a/lib/cache.php +++ b/lib/cache.php @@ -38,7 +38,7 @@ class OC_Cache { if (!self::$global_cache_fast && function_exists('apc_store')) { self::$global_cache_fast = new OC_Cache_APC(true); } - + self::$global_cache = new OC_Cache_FileGlobal(); if (self::$global_cache_fast) { self::$global_cache = new OC_Cache_Broker(self::$global_cache_fast, self::$global_cache); @@ -67,7 +67,7 @@ class OC_Cache { if (!self::$user_cache_fast && function_exists('apc_store')) { self::$user_cache_fast = new OC_Cache_APC(); } - + self::$user_cache = new OC_Cache_File(); if (self::$user_cache_fast) { self::$user_cache = new OC_Cache_Broker(self::$user_cache_fast, self::$user_cache); diff --git a/lib/connector/sabre/auth.php b/lib/connector/sabre/auth.php index 99f696e3a07..8197571e949 100644 --- a/lib/connector/sabre/auth.php +++ b/lib/connector/sabre/auth.php @@ -45,4 +45,4 @@ class OC_Connector_Sabre_Auth extends Sabre_DAV_Auth_Backend_AbstractBasic { } } } -} +} diff --git a/lib/connector/sabre/directory.php b/lib/connector/sabre/directory.php index cd3ed60292c..a7502446152 100644 --- a/lib/connector/sabre/directory.php +++ b/lib/connector/sabre/directory.php @@ -203,4 +203,3 @@ class OC_Connector_Sabre_Directory extends OC_Connector_Sabre_Node implements Sa return $props; } } - diff --git a/lib/connector/sabre/file.php b/lib/connector/sabre/file.php index 9d571fceb0d..5bd38240d44 100644 --- a/lib/connector/sabre/file.php +++ b/lib/connector/sabre/file.php @@ -126,4 +126,3 @@ class OC_Connector_Sabre_File extends OC_Connector_Sabre_Node implements Sabre_D } } - diff --git a/lib/connector/sabre/locks.php b/lib/connector/sabre/locks.php index 0ddc8b18d2f..a01653d960a 100644 --- a/lib/connector/sabre/locks.php +++ b/lib/connector/sabre/locks.php @@ -42,7 +42,7 @@ class OC_Connector_Sabre_Locks extends Sabre_DAV_Locks_Backend_Abstract { // pure sql. MySQL's non-standard string concatination prevents us // from doing this though. // NOTE: SQLite requires time() to be inserted directly. That's ugly - // but otherwise reading locks from SQLite Databases will return + // but otherwise reading locks from SQLite Databases will return // nothing $query = 'SELECT * FROM `*PREFIX*locks` WHERE `userid` = ? AND (`created` + `timeout`) > '.time().' AND (( `uri` = ?)'; $params = array(OC_User::getUser(),$uri); @@ -75,7 +75,7 @@ class OC_Connector_Sabre_Locks extends Sabre_DAV_Locks_Backend_Abstract { $stmt = OC_DB::prepare( $query ); $result = $stmt->execute( $params ); - + $lockList = array(); while( $row = $result->fetchRow()){ @@ -114,7 +114,7 @@ class OC_Connector_Sabre_Locks extends Sabre_DAV_Locks_Backend_Abstract { foreach($locks as $lock) { if ($lock->token == $lockInfo->token) $exists = true; } - + if ($exists) { $query = OC_DB::prepare( 'UPDATE `*PREFIX*locks` SET `owner` = ?, `timeout` = ?, `scope` = ?, `depth` = ?, `uri` = ?, `created` = ? WHERE `userid` = ? AND `token` = ?' ); $result = $query->execute( array($lockInfo->owner,$lockInfo->timeout,$lockInfo->scope,$lockInfo->depth,$uri,$lockInfo->created,OC_User::getUser(),$lockInfo->token)); diff --git a/lib/connector/sabre/node.php b/lib/connector/sabre/node.php index b9bf474a041..afcabe7bef6 100644 --- a/lib/connector/sabre/node.php +++ b/lib/connector/sabre/node.php @@ -80,9 +80,9 @@ abstract class OC_Connector_Sabre_Node implements Sabre_DAV_INode, Sabre_DAV_IPr $oldPath = $this->path; OC_Filesystem::rename($this->path,$newPath); - + $this->path = $newPath; - + $query = OC_DB::prepare( 'UPDATE `*PREFIX*properties` SET `propertypath` = ? WHERE `userid` = ? AND `propertypath` = ?' ); $query->execute( array( $newPath,OC_User::getUser(), $oldPath )); @@ -123,8 +123,8 @@ abstract class OC_Connector_Sabre_Node implements Sabre_DAV_INode, Sabre_DAV_IPr } - /** - * sets the last modification time of the file (mtime) to the value given + /** + * sets the last modification time of the file (mtime) to the value given * in the second parameter or to now if the second param is empty. * Even if the modification time is set to a custom value the access time is set to now. */ @@ -195,7 +195,7 @@ abstract class OC_Connector_Sabre_Node implements Sabre_DAV_INode, Sabre_DAV_IPr if(count($properties) == 0){ return $this->property_cache; } - + $props = array(); foreach($properties as $property) { if (isset($this->property_cache[$property])) $props[$property] = $this->property_cache[$property]; diff --git a/lib/db.php b/lib/db.php index 4214451c85f..ecaf9e37ee5 100644 --- a/lib/db.php +++ b/lib/db.php @@ -27,7 +27,7 @@ class OC_DB { const BACKEND_PDO=0; const BACKEND_MDB2=1; - + static private $connection; //the prefered connection to use, either PDO or MDB2 static private $backend=null; static private $MDB2=false; @@ -55,7 +55,7 @@ class OC_DB { } return self::BACKEND_MDB2; } - + /** * @brief connects to the database * @returns true if connection can be established or nothing (die()) @@ -104,7 +104,7 @@ class OC_DB { } $opts = array(); $datadir=OC_Config::getValue( "datadirectory", OC::$SERVERROOT.'/data' ); - + // do nothing if the connection already has been established if(!self::$PDO){ // Add the dsn according to the database type @@ -158,7 +158,7 @@ class OC_DB { } return true; } - + /** * connect to the database using mdb2 */ @@ -234,10 +234,10 @@ class OC_DB { } break; } - + // Try to establish connection self::$MDB2 = MDB2::factory( $dsn, $options ); - + // Die if we could not connect if( PEAR::isError( self::$MDB2 )){ echo( 'can not connect to database, using '.$type.'. ('.self::$MDB2->getUserInfo().')'); @@ -245,11 +245,11 @@ class OC_DB { OC_Log::write('core',self::$MDB2->getMessage(),OC_Log::FATAL); die( $error ); } - + // We always, really always want associative arrays self::$MDB2->setFetchMode(MDB2_FETCHMODE_ASSOC); } - + // we are done. great! return true; } @@ -262,7 +262,7 @@ class OC_DB { * SQL query via MDB2 prepare(), needs to be execute()'d! */ static public function prepare( $query , $limit=null, $offset=null ){ - + if (!is_null($limit) && $limit != -1) { if (self::$backend == self::BACKEND_MDB2) { //MDB2 uses or emulates limits & offset internally @@ -394,7 +394,7 @@ class OC_DB { // read file $content = file_get_contents( $file ); - + // Make changes and save them to an in-memory file $file2 = 'static://db_scheme'; $content = str_replace( '*dbname*', $CONFIG_DBNAME, $content ); @@ -414,7 +414,7 @@ class OC_DB { // Try to create tables $definition = self::$schema->parseDatabaseDefinitionFile( $file2 ); - + //clean up memory unlink( $file2 ); @@ -427,7 +427,7 @@ class OC_DB { $oldname = $definition['name']; $definition['name']=OC_Config::getValue( "dbuser", $oldname ); } - + $ret=self::$schema->createDatabase( $definition ); // Die in case something went wrong @@ -438,7 +438,7 @@ class OC_DB { return true; } - + /** * @brief update the database scheme * @param $file file to read structure from @@ -451,7 +451,7 @@ class OC_DB { // read file $content = file_get_contents( $file ); - + $previousSchema = self::$schema->getDefinitionFromDatabase(); if (PEAR::isError($previousSchema)) { $error = $previousSchema->getMessage(); @@ -475,10 +475,10 @@ class OC_DB { */ file_put_contents( $file2, $content ); $op = self::$schema->updateDatabase($file2, $previousSchema, array(), false); - + //clean up memory unlink( $file2 ); - + if (PEAR::isError($op)) { $error = $op->getMessage(); $detail = $op->getDebugInfo(); @@ -528,7 +528,7 @@ class OC_DB { self::$prefix=OC_Config::getValue( "dbtableprefix", "oc_" ); } $prefix = self::$prefix; - + // differences in escaping of table names ('`' for mysql) and getting the current timestamp if( $type == 'sqlite' || $type == 'sqlite3' ){ $query = str_replace( '`', '"', $query ); @@ -547,7 +547,7 @@ class OC_DB { return $query; } - + /** * @brief drop a table * @param string $tableNamme the table to drop @@ -557,7 +557,7 @@ class OC_DB { self::$MDB2->loadModule('Manager'); self::$MDB2->dropTable($tableName); } - + /** * remove all tables defined in a database structure xml file * @param string $file the xml file describing the tables @@ -578,7 +578,7 @@ class OC_DB { // get the tables $definition = self::$schema->parseDatabaseDefinitionFile( $file2 ); - + // Delete our temporary file unlink( $file2 ); $tables=array_keys($definition['tables']); @@ -586,7 +586,7 @@ class OC_DB { self::dropTable($table); } } - + /** * @brief replaces the owncloud tables with a new set * @param $file string path to the MDB2 xml db export file @@ -596,20 +596,20 @@ class OC_DB { self::beginTransaction(); // Delete the old tables self::removeDBStructure( OC::$SERVERROOT . '/db_structure.xml' ); - + foreach($apps as $app){ $path = OC_App::getAppPath($app).'/appinfo/database.xml'; if(file_exists($path)){ - self::removeDBStructure( $path ); + self::removeDBStructure( $path ); } } - + // Create new tables self::createDBFromStructure( $file ); self::commit(); - + } - + /** * Start a transaction */ @@ -660,7 +660,7 @@ class PDOStatementWrapper{ public function __construct($statement){ $this->statement=$statement; } - + /** * make execute return the result instead of a bool */ @@ -677,7 +677,7 @@ class PDOStatementWrapper{ return false; } } - + /** * provide numRows */ @@ -690,21 +690,21 @@ class PDOStatementWrapper{ return $this->statement->rowCount(); } } - + /** * provide an alias for fetch */ public function fetchRow(){ return $this->statement->fetch(); } - + /** * pass all other function directly to the PDOStatement */ public function __call($name,$arguments){ return call_user_func_array(array($this->statement,$name),$arguments); } - + /** * Provide a simple fetchOne. * fetch single column from the next row @@ -714,4 +714,3 @@ class PDOStatementWrapper{ return $this->statement->fetchColumn($colnum); } } - diff --git a/lib/eventsource.php b/lib/eventsource.php index 95af2e471bc..45a20806b6e 100644 --- a/lib/eventsource.php +++ b/lib/eventsource.php @@ -30,7 +30,7 @@ class OC_EventSource{ private $fallback; private $fallBackId=0; - + public function __construct(){ @ob_end_clean(); header('Cache-Control: no-cache'); diff --git a/lib/filecache.php b/lib/filecache.php index e85d6747f90..364b908bcfa 100644 --- a/lib/filecache.php +++ b/lib/filecache.php @@ -76,14 +76,14 @@ class OC_FileCache{ self::update($id,$data); return; } - + // add parent directory to the file cache if it does not exist yet. if ($parent == -1 && $fullpath != $root) { $parentDir = substr(dirname($path), 0, strrpos(dirname($path), DIRECTORY_SEPARATOR)); self::scanFile($parentDir); $parent = self::getParentId($fullpath); } - + if(!isset($data['size']) or !isset($data['mtime'])){//save incomplete data for the next time we write it OC_FileCache_Cached::$savedData[$fullpath]=$data; return; @@ -136,7 +136,7 @@ class OC_FileCache{ $queryParts[]='`mimepart`=?'; } $arguments[]=$id; - + $sql = 'UPDATE `*PREFIX*fscache` SET '.implode(' , ',$queryParts).' WHERE `id`=?'; $query=OC_DB::prepare($sql); $result=$query->execute($arguments); @@ -192,14 +192,14 @@ class OC_FileCache{ } $query=OC_DB::prepare('DELETE FROM `*PREFIX*fscache` WHERE `path_hash`=?'); $query->execute(array(md5($root.$path))); - + //delete everything inside the folder $query=OC_DB::prepare('DELETE FROM `*PREFIX*fscache` WHERE `path` LIKE ?'); $query->execute(array($root.$path.'/%')); OC_Cache::remove('fileid/'.$root.$path); } - + /** * return array of filenames matching the querty * @param string $query @@ -277,14 +277,14 @@ class OC_FileCache{ if(($cache=OC_Cache::getUserCache(true)) && $cache->hasKey('fileid/'.$fullPath)){ return $cache->get('fileid/'.$fullPath); } - + $query=OC_DB::prepare('SELECT `id` FROM `*PREFIX*fscache` WHERE `path_hash`=?'); $result=$query->execute(array(md5($fullPath))); if(OC_DB::isError($result)){ OC_Log::write('files','error while getting file id of '.$path,OC_Log::ERROR); return -1; } - + $result=$result->fetchRow(); if(is_array($result)){ $id=$result['id']; @@ -294,10 +294,10 @@ class OC_FileCache{ if($cache=OC_Cache::getUserCache(true)){ $cache->set('fileid/'.$fullPath,$id); } - + return $id; } - + /** * get the file path from the id, relative to the home folder of the user * @param int id @@ -331,7 +331,7 @@ class OC_FileCache{ return self::getId(dirname($path),''); } } - + /** * adjust the size of the parent folders * @param string $path @@ -390,7 +390,7 @@ class OC_FileCache{ } } } - + OC_FileCache_Update::cleanFolder($path,$root); self::increaseSize($path,$totalSize,$root); } diff --git a/lib/filecache/cached.php b/lib/filecache/cached.php index 95cc0ac300e..505f1a5e2a0 100644 --- a/lib/filecache/cached.php +++ b/lib/filecache/cached.php @@ -12,7 +12,7 @@ */ class OC_FileCache_Cached{ public static $savedData=array(); - + public static function get($path,$root=false){ if($root===false){ $root=OC_Filesystem::getRoot(); diff --git a/lib/filecache/update.php b/lib/filecache/update.php index 0b5ff8e2446..7b5f18fe5c1 100644 --- a/lib/filecache/update.php +++ b/lib/filecache/update.php @@ -42,7 +42,7 @@ class OC_FileCache_Update{ return true; } } - + /** * delete non existing files from the cache */ @@ -148,7 +148,7 @@ class OC_FileCache_Update{ } $mimetype=$view->getMimeType($path); - + $size=0; $cached=OC_FileCache_Cached::get($path,$root); $cachedSize=isset($cached['size'])?$cached['size']:0; diff --git a/lib/fileproxy.php b/lib/fileproxy.php index ec04faa9bc5..a1c79874bf7 100644 --- a/lib/fileproxy.php +++ b/lib/fileproxy.php @@ -43,7 +43,7 @@ class OC_FileProxy{ private static $proxies=array(); public static $enabled=true; - + /** * fallback function when a proxy operation is not implemented * @param string $function the name of the proxy operation @@ -58,7 +58,7 @@ class OC_FileProxy{ return $arguments[1]; } } - + /** * register a proxy to be used * @param OC_FileProxy $proxy @@ -66,7 +66,7 @@ class OC_FileProxy{ public static function register($proxy){ self::$proxies[]=$proxy; } - + public static function getProxies($operation){ $proxies=array(); foreach(self::$proxies as $proxy){ diff --git a/lib/fileproxy/quota.php b/lib/fileproxy/quota.php index 7316224cc61..4c6261fc514 100644 --- a/lib/fileproxy/quota.php +++ b/lib/fileproxy/quota.php @@ -27,7 +27,7 @@ class OC_FileProxy_Quota extends OC_FileProxy{ private $userQuota=-1; - + /** * get the quota for the current user * @return int @@ -46,9 +46,9 @@ class OC_FileProxy_Quota extends OC_FileProxy{ $this->userQuota=OC_Helper::computerFileSize($userQuota); } return $this->userQuota; - + } - + /** * get the free space in the users home folder * @return int @@ -69,7 +69,7 @@ class OC_FileProxy_Quota extends OC_FileProxy{ } return $totalSpace-$usedSpace; } - + public function postFree_space($path,$space){ $free=$this->getFreeSpace(); if($free==0){ diff --git a/lib/files.php b/lib/files.php index 1a1fffa0a50..0c71f6e5e42 100644 --- a/lib/files.php +++ b/lib/files.php @@ -406,9 +406,9 @@ class OC_Files { //check for write permissions if(is_writable(OC::$SERVERROOT.'/.htaccess')) { file_put_contents(OC::$SERVERROOT.'/.htaccess', $htaccess); - return OC_Helper::computerFileSize($size); + return OC_Helper::computerFileSize($size); } else { OC_Log::write('files','Can\'t write upload limit to '.OC::$SERVERROOT.'/.htaccess. Please check the file permissions',OC_Log::WARN); } - + return false; } diff --git a/lib/filestorage/common.php b/lib/filestorage/common.php index c829be62f74..e2828e56170 100644 --- a/lib/filestorage/common.php +++ b/lib/filestorage/common.php @@ -21,11 +21,11 @@ */ /** - * Storage backend class for providing common filesystem operation methods + * Storage backend class for providing common filesystem operation methods * which are not storage-backend specific. * * OC_Filestorage_Common is never used directly; it is extended by all other - * storage backends, where its methods may be overridden, and additional + * storage backends, where its methods may be overridden, and additional * (backend-specific) methods are defined. * * Some OC_Filestorage_Common methods call functions which are first defined @@ -115,71 +115,71 @@ abstract class OC_Filestorage_Common extends OC_Filestorage { * @param $empty Flag indicating whether directory will be emptied * @returns true/false * - * @note By default the directory specified by $directory will be + * @note By default the directory specified by $directory will be * deleted together with its contents. To avoid this set $empty to true */ public function deleteAll( $directory, $empty = false ) { - + // strip leading slash if( substr( $directory, 0, 1 ) == "/" ) { - + $directory = substr( $directory, 1 ); - + } - + // strip trailing slash if( substr( $directory, -1) == "/" ) { - + $directory = substr( $directory, 0, -1 ); - + } - + if ( !$this->file_exists( \OCP\USER::getUser() . '/' . $directory ) || !$this->is_dir( \OCP\USER::getUser() . '/' . $directory ) ) { - + return false; - + } elseif( !$this->is_readable( \OCP\USER::getUser() . '/' . $directory ) ) { - + return false; - + } else { - + $directoryHandle = $this->opendir( \OCP\USER::getUser() . '/' . $directory ); - + while ( $contents = readdir( $directoryHandle ) ) { - + if ( $contents != '.' && $contents != '..') { - + $path = $directory . "/" . $contents; - + if ( $this->is_dir( $path ) ) { - + deleteAll( $path ); - + } else { - + $this->unlink( \OCP\USER::getUser() .'/' . $path ); // TODO: make unlink use same system path as is_dir - + } } - + } - + //$this->closedir( $directoryHandle ); // TODO: implement closedir in OC_FSV if ( $empty == false ) { - + if ( !$this->rmdir( $directory ) ) { - + return false; - + } - + } - + return true; } - + } public function getMimeType($path){ if(!$this->file_exists($path)){ diff --git a/lib/filestorage/commontest.php b/lib/filestorage/commontest.php index b5126a407b3..4d06e4fa321 100644 --- a/lib/filestorage/commontest.php +++ b/lib/filestorage/commontest.php @@ -31,11 +31,11 @@ class OC_Filestorage_CommonTest extends OC_Filestorage_Common{ * @var OC_FileStorage_Local */ private $storage; - + public function __construct($params){ $this->storage=new OC_Filestorage_Local($params); } - + public function mkdir($path){ return $this->storage->mkdir($path); } diff --git a/lib/filestorage/local.php b/lib/filestorage/local.php index 22d17469df3..b19205f45b1 100644 --- a/lib/filestorage/local.php +++ b/lib/filestorage/local.php @@ -61,7 +61,7 @@ class OC_Filestorage_Local extends OC_Filestorage_Common{ return filemtime($this->datadir.$path); } public function touch($path, $mtime=null){ - // sets the modification time of the file to the given value. + // sets the modification time of the file to the given value. // If mtime is nil the current time is set. // note that the access time of the file always changes to the current time. if(!is_null($mtime)){ @@ -72,7 +72,7 @@ class OC_Filestorage_Local extends OC_Filestorage_Common{ if( $result ) { clearstatcache( true, $this->datadir.$path ); } - + return $result; } public function file_get_contents($path){ diff --git a/lib/filesystem.php b/lib/filesystem.php index fbb02900456..327329f9d91 100644 --- a/lib/filesystem.php +++ b/lib/filesystem.php @@ -3,22 +3,22 @@ /** * ownCloud * -* @author Frank Karlitschek -* @copyright 2012 Frank Karlitschek frank@owncloud.org -* +* @author Frank Karlitschek +* @copyright 2012 Frank Karlitschek frank@owncloud.org +* * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE -* License as published by the Free Software Foundation; either +* License as published by the Free Software Foundation; either * version 3 of the License, or any later version. -* +* * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU AFFERO GENERAL PUBLIC LICENSE for more details. -* -* You should have received a copy of the GNU Affero General Public +* +* You should have received a copy of the GNU Affero General Public * License along with this library. If not, see . -* +* */ @@ -193,7 +193,7 @@ class OC_Filesystem{ return OC_Filesystem::$storages[$mountpoint]; } } - + static public function init($root){ if(self::$defaultInstance){ return false; @@ -237,7 +237,7 @@ class OC_Filesystem{ } } } - + self::$loaded=true; } @@ -257,14 +257,14 @@ class OC_Filesystem{ static public function getView(){ return self::$defaultInstance; } - + /** * tear down the filesystem, removing all storage providers */ static public function tearDown(){ self::$storages=array(); } - + /** * create a new storage of a specific type * @param string type @@ -284,7 +284,7 @@ class OC_Filesystem{ return false; } } - + /** * change the root to a fake root * @param string fakeRoot @@ -326,7 +326,7 @@ class OC_Filesystem{ } self::$mounts[$mountpoint]=array('class'=>$class,'arguments'=>$arguments); } - + /** * return the path to a local version of the file * we need this because we can't know if a file is stored local or not from outside the filestorage and for some purposes a local file is needed @@ -343,7 +343,7 @@ class OC_Filesystem{ static public function getLocalFolder($path){ return self::$defaultInstance->getLocalFolder($path); } - + /** * return path to file which reflects one visible in browser * @param string path @@ -357,7 +357,7 @@ class OC_Filesystem{ } return $newpath; } - + /** * check if the requested path is valid * @param string path @@ -372,7 +372,7 @@ class OC_Filesystem{ } return true; } - + /** * checks if a file is blacklsited for storage in the filesystem * Listens to write and rename hooks @@ -392,7 +392,7 @@ class OC_Filesystem{ } } } - + /** * following functions are equivilent to their php buildin equivilents for arguments/return values. */ @@ -496,11 +496,11 @@ class OC_Filesystem{ static public function hash($type,$path, $raw = false){ return self::$defaultInstance->hash($type,$path, $raw); } - + static public function free_space($path='/'){ return self::$defaultInstance->free_space($path); } - + static public function search($query){ return OC_FileCache::search($query); } diff --git a/lib/filesystemview.php b/lib/filesystemview.php index a888e5340ea..461a0262560 100644 --- a/lib/filesystemview.php +++ b/lib/filesystemview.php @@ -56,7 +56,7 @@ class OC_FilesystemView { } return $this->fakeRoot.$path; } - + /** * change the root to a fake toor * @param string fakeRoot @@ -325,7 +325,7 @@ class OC_FilesystemView { if(OC_FileProxy::runPreProxies('rename', $absolutePath1, $absolutePath2) and OC_Filesystem::isValidPath($path2)) { $path1 = $this->getRelativePath($absolutePath1); $path2 = $this->getRelativePath($absolutePath2); - + if($path1 == null or $path2 == null) { return false; } @@ -352,7 +352,7 @@ class OC_FilesystemView { $storage1 = $this->getStorage($path1); $storage1->unlink($this->getInternalPath($path1.$postFix1)); $result = $count>0; - } + } OC_Hook::emit( OC_Filesystem::CLASSNAME, OC_Filesystem::signal_post_rename, @@ -373,7 +373,7 @@ class OC_FilesystemView { if(OC_FileProxy::runPreProxies('copy', $absolutePath1, $absolutePath2) and OC_Filesystem::isValidPath($path2)) { $path1 = $this->getRelativePath($absolutePath1); $path2 = $this->getRelativePath($absolutePath2); - + if($path1 == null or $path2 == null) { return false; } diff --git a/lib/geo.php b/lib/geo.php index a967ab28a96..964605b1c1c 100644 --- a/lib/geo.php +++ b/lib/geo.php @@ -12,7 +12,7 @@ class OC_Geo{ * @param (string) $longitude - Longitude * @return (string) $timezone - closest timezone */ - public static function timezone($latitude, $longitude){ + public static function timezone($latitude, $longitude){ $alltimezones = DateTimeZone::listIdentifiers(); $variances = array(); //calculate for all timezones the system know diff --git a/lib/group.php b/lib/group.php index 72cf5dc89af..dd70a94eb0d 100644 --- a/lib/group.php +++ b/lib/group.php @@ -271,7 +271,7 @@ class OC_Group { } return $users; } - + /** * @brief get a list of all users in several groups * @param array $gids diff --git a/lib/hook.php b/lib/hook.php index b53755310e0..ee390d6cd5a 100644 --- a/lib/hook.php +++ b/lib/hook.php @@ -83,4 +83,3 @@ class OC_Hook{ } } } - diff --git a/lib/image.php b/lib/image.php index 90c64320a7c..e87cf9e16d9 100644 --- a/lib/image.php +++ b/lib/image.php @@ -383,7 +383,7 @@ class OC_Image { /** * @brief Loads an image from an open file handle. * It is the responsibility of the caller to position the pointer at the correct place and to close the handle again. - * @param $handle + * @param $handle * @returns An image resource or false on error */ public function loadFromFileHandle($handle) { @@ -468,7 +468,7 @@ class OC_Image { break; */ default: - + // this is mostly file created from encrypted file $this->resource = imagecreatefromstring(\OC_Filesystem::file_get_contents(\OC_Filesystem::getLocalPath($imagepath))); $itype = IMAGETYPE_PNG; @@ -534,7 +534,7 @@ class OC_Image { $width_orig=imageSX($this->resource); $height_orig=imageSY($this->resource); $ratio_orig = $width_orig/$height_orig; - + if ($ratio_orig > 1) { $new_height = round($maxsize/$ratio_orig); $new_width = $maxsize; @@ -564,7 +564,7 @@ class OC_Image { public function preciseResize($width, $height) { if (!$this->valid()) { OC_Log::write('core',__METHOD__.'(): No image loaded', OC_Log::ERROR); - return false; + return false; } $width_orig=imageSX($this->resource); $height_orig=imageSY($this->resource); diff --git a/lib/json.php b/lib/json.php index 3d9d5c96fa3..32ae734e4a5 100644 --- a/lib/json.php +++ b/lib/json.php @@ -52,7 +52,7 @@ class OC_JSON{ exit(); } } - + /** * Check if the user is a admin, send json error msg if not */ @@ -64,7 +64,7 @@ class OC_JSON{ exit(); } } - + /** * Check if the user is a subadmin, send json error msg if not */ diff --git a/lib/l10n.php b/lib/l10n.php index e7f5ffea0e4..cfa0e26486b 100644 --- a/lib/l10n.php +++ b/lib/l10n.php @@ -28,17 +28,17 @@ class OC_L10N{ * cached instances */ protected static $instances=array(); - + /** * cache */ protected static $cache = array(); - + /** * The best language */ protected static $language = ''; - + /** * App of this object */ @@ -53,7 +53,7 @@ class OC_L10N{ * Translations */ private $translations = array(); - + /** * Localization */ @@ -61,7 +61,7 @@ class OC_L10N{ 'date' => 'd.m.Y', 'datetime' => 'd.m.Y H:i:s', 'time' => 'H:i:s'); - + /** * get an L10N instance * @return OC_L10N @@ -76,7 +76,7 @@ class OC_L10N{ return new OC_L10N($app,$lang); } } - + /** * @brief The constructor * @param $app the app requesting l10n @@ -90,7 +90,7 @@ class OC_L10N{ $this->app = $app; $this->lang = $lang; } - + protected function init(){ if ($this->app === true) { return; @@ -119,7 +119,7 @@ class OC_L10N{ if(isset($TRANSLATIONS) && is_array($TRANSLATIONS)){ $this->translations = $TRANSLATIONS; } - } + } if(file_exists(OC::$SERVERROOT.'/core/l10n/l10n-'.$lang.'.php')){ // Include the file, save the data from $CONFIG @@ -188,7 +188,7 @@ class OC_L10N{ * @returns String or false * * Returns the localized data. - * + * * Implemented types: * - date * - Creates a date @@ -241,7 +241,7 @@ class OC_L10N{ * @returns language * * If $app is an array, ownCloud assumes that these are the available - * languages. Otherwise ownCloud tries to find the files in the l10n + * languages. Otherwise ownCloud tries to find the files in the l10n * folder. * * If nothing works it returns 'en' diff --git a/lib/mail.php b/lib/mail.php index 0ac9a97c1bf..acdadeffd33 100644 --- a/lib/mail.php +++ b/lib/mail.php @@ -17,7 +17,7 @@ require_once('class.phpmailer.php'); class OC_Mail { /** - * send an email + * send an email * * @param string $toaddress * @param string $toname @@ -31,9 +31,9 @@ class OC_Mail { $SMTPMODE = OC_Config::getValue( 'mail_smtpmode', 'sendmail' ); $SMTPHOST = OC_Config::getValue( 'mail_smtphost', '127.0.0.1' ); - $SMTPAUTH = OC_Config::getValue( 'mail_smtpauth', false ); - $SMTPUSERNAME = OC_Config::getValue( 'mail_smtpname', '' ); - $SMTPPASSWORD = OC_Config::getValue( 'mail_smtppassword', '' ); + $SMTPAUTH = OC_Config::getValue( 'mail_smtpauth', false ); + $SMTPUSERNAME = OC_Config::getValue( 'mail_smtpname', '' ); + $SMTPPASSWORD = OC_Config::getValue( 'mail_smtppassword', '' ); $mailo = new PHPMailer(true); diff --git a/lib/migrate.php b/lib/migrate.php index e998cf1f4a8..7d7169c4e46 100644 --- a/lib/migrate.php +++ b/lib/migrate.php @@ -196,7 +196,7 @@ class OC_Migrate{ * @param optional $uid userid of new user */ public static function import( $path, $type='user', $uid=null ){ - + $datadir = OC_Config::getValue( 'datadirectory' ); // Extract the zip if( !$extractpath = self::extractZip( $path ) ){ @@ -222,13 +222,13 @@ class OC_Migrate{ if( self::$exporttype == 'user' ){ self::$uid = !is_null($uid) ? $uid : $currentuser; } - + // We need to be an admin if we are not importing our own data if(($type == 'user' && self::$uid != $currentuser) || $type != 'user' ){ if( !OC_Group::inGroup( OC_User::getUser(), 'admin' )){ // Naughty. OC_Log::write( 'migration', 'Import not permitted.', OC_Log::ERROR ); - return json_encode( array( 'success' => false ) ); + return json_encode( array( 'success' => false ) ); } } @@ -411,7 +411,7 @@ class OC_Migrate{ $success = false; } } - + // Run the export function? if( $success ){ // Set the provider properties @@ -421,7 +421,7 @@ class OC_Migrate{ $return['apps'][$provider->getID()]['success'] = false; $return['apps'][$provider->getID()]['message'] = 'failed to create the app tables'; } - + // Now add some app info the the return array $appinfo = OC_App::getAppInfo( $provider->getID() ); $return['apps'][$provider->getID()]['version'] = OC_App::getAppVersion($provider->getID()); diff --git a/lib/migration/content.php b/lib/migration/content.php index 5c89e6bacd6..e04ac224f79 100644 --- a/lib/migration/content.php +++ b/lib/migration/content.php @@ -25,13 +25,13 @@ * provides methods to add and access data from the migration */ class OC_Migration_Content{ - + private $zip=false; // Holds the MDB2 object private $db=null; // Holds an array of tmpfiles to delete after zip creation private $tmpfiles=false; - + /** * @brief sets up the * @param $zip ZipArchive object @@ -42,25 +42,25 @@ class OC_Migration_Content{ $this->zip = $zip; $this->db = $db; - + if( !is_null( $db ) ){ // Get db path $db = $this->db->getDatabase(); $this->tmpfiles[] = $db; } - + } - + // @brief prepares the db // @param $query the sql query to prepare public function prepare( $query ){ - + // Optimize the query $query = $this->processQuery( $query ); - + // Optimize the query $query = $this->db->prepare( $query ); - + // Die if we have an error (error means: bad query, not 0 results!) if( PEAR::isError( $query ) ) { $entry = 'DB Error: "'.$result->getMessage().'"
'; @@ -68,11 +68,11 @@ class OC_Migration_Content{ OC_Log::write( 'migration', $entry, OC_Log::FATAL ); return false; } else { - return $query; + return $query; } - + } - + /** * @brief processes the db query * @param $query the query to process @@ -86,7 +86,7 @@ class OC_Migration_Content{ $query = str_replace( '*PREFIX*', '', $query ); return $query; } - + /** * @brief copys rows to migration.db from the main database * @param $options array of options. @@ -94,19 +94,19 @@ class OC_Migration_Content{ */ public function copyRows( $options ){ if( !array_key_exists( 'table', $options ) ){ - return false; + return false; } - + $return = array(); - + // Need to include 'where' in the query? if( array_key_exists( 'matchval', $options ) && array_key_exists( 'matchcol', $options ) ){ - + // If only one matchval, create an array if(!is_array($options['matchval'])){ - $options['matchval'] = array( $options['matchval'] ); + $options['matchval'] = array( $options['matchval'] ); } - + foreach( $options['matchval'] as $matchval ){ // Run the query for this match value (where x = y value) $sql = 'SELECT * FROM `*PREFIX*' . $options['table'] . '` WHERE `' . $options['matchcol'] . '` LIKE ?'; @@ -122,13 +122,13 @@ class OC_Migration_Content{ $query = OC_DB::prepare( $sql ); $results = $query->execute(); $return = $this->insertData( $results, $options ); - + } - + return $return; - + } - + /** * @brief saves a sql data set into migration.db * @param $data a sql data set returned from self::prepare()->query() @@ -144,7 +144,7 @@ class OC_Migration_Content{ $fields[] = $field; $values[] = $value; } - + // Generate some sql $sql = "INSERT INTO `" . $options['table'] . '` ( `'; $fieldssql = implode( '`, `', $fields ); @@ -154,7 +154,7 @@ class OC_Migration_Content{ // Make the query $query = $this->prepare( $sql ); if( !$query ){ - OC_Log::write( 'migration', 'Invalid sql produced: '.$sql, OC_Log::FATAL ); + OC_Log::write( 'migration', 'Invalid sql produced: '.$sql, OC_Log::FATAL ); return false; exit(); } else { @@ -162,10 +162,10 @@ class OC_Migration_Content{ // Do we need to return some values? if( array_key_exists( 'idcol', $options ) ){ // Yes we do - $return[] = $row[$options['idcol']]; + $return[] = $row[$options['idcol']]; } else { // Take a guess and return the first field :) - $return[] = reset($row); + $return[] = reset($row); } } $fields = ''; @@ -173,11 +173,11 @@ class OC_Migration_Content{ } return $return; } - + /** * @brief adds a directory to the zip object * @param $dir string path of the directory to add - * @param $recursive bool + * @param $recursive bool * @param $internaldir string path of folder to add dir to in zip * @return bool */ @@ -186,13 +186,13 @@ class OC_Migration_Content{ $this->zip->addEmptyDir($internaldir . $dirname); $internaldir.=$dirname.='/'; if( !file_exists( $dir ) ){ - return false; + return false; } if ($dirhandle = opendir($dir)) { while (false !== ( $file = readdir($dirhandle))) { - + if (( $file != '.' ) && ( $file != '..' )) { - + if (is_dir($dir . '/' . $file) && $recursive) { $this->addDir($dir . '/' . $file, $recursive, $internaldir); } elseif (is_file($dir . '/' . $file)) { @@ -207,7 +207,7 @@ class OC_Migration_Content{ } return true; } - + /** * @brief adds a file to the zip from a given string * @param $data string of data to add @@ -220,13 +220,13 @@ class OC_Migration_Content{ $this->tmpfiles[] = $file; if( !file_put_contents( $file, $data ) ){ OC_Log::write( 'migation', 'Failed to save data to a temporary file', OC_Log::ERROR ); - return false; + return false; } // Add file to the zip $this->zip->addFile( $file, $path ); return true; } - + /** * @brief closes the zip, removes temp files * @return bool @@ -234,19 +234,19 @@ class OC_Migration_Content{ public function finish(){ if( !$this->zip->close() ){ OC_Log::write( 'migration', 'Failed to write the zip file with error: '.$this->zip->getStatusString(), OC_Log::ERROR ); - return false; + return false; } $this->cleanup(); - return true; - } - + return true; + } + /** * @brief cleans up after the zip */ private function cleanup(){ // Delete tmp files foreach($this->tmpfiles as $i){ - unlink( $i ); - } + unlink( $i ); + } } } diff --git a/lib/migration/provider.php b/lib/migration/provider.php index 91336f3019d..259b1fe7ae6 100644 --- a/lib/migration/provider.php +++ b/lib/migration/provider.php @@ -3,37 +3,37 @@ * provides search functionalty */ abstract class OC_Migration_Provider{ - + protected $id=false; - protected $content=false; + protected $content=false; protected $uid=false; protected $olduid=false; protected $appinfo=false; - + public function __construct( $appid ){ // Set the id $this->id = $appid; OC_Migrate::registerProvider( $this ); } - + /** * @brief exports data for apps * @return array appdata to be exported */ abstract function export( ); - + /** * @brief imports data for the app * @return void */ abstract function import( ); - + /** * @brief sets the OC_Migration_Content object to $this->content * @param $content a OC_Migration_Content object */ public function setData( $uid, $content, $info=null ){ - $this->content = $content; + $this->content = $content; $this->uid = $uid; $id = $this->id; if( !is_null( $info ) ){ @@ -41,12 +41,12 @@ abstract class OC_Migration_Provider{ $this->appinfo = $info->apps->$id; } } - + /** * @brief returns the appid of the provider * @return string */ public function getID(){ - return $this->id; + return $this->id; } } diff --git a/lib/ocs.php b/lib/ocs.php index 3157aae99e6..ad01e5c42fa 100644 --- a/lib/ocs.php +++ b/lib/ocs.php @@ -153,27 +153,27 @@ class OC_OCS { OC_OCS::privatedatadelete($format, $app, $key); // CLOUD - // systemWebApps + // systemWebApps }elseif(($method=='get') and ($ex[$paracount-5] == 'v1.php') and ($ex[$paracount-4]=='cloud') and ($ex[$paracount-3] == 'system') and ($ex[$paracount-2] == 'webapps')){ OC_OCS::systemwebapps($format); - // quotaget + // quotaget }elseif(($method=='get') and ($ex[$paracount-6] == 'v1.php') and ($ex[$paracount-5]=='cloud') and ($ex[$paracount-4] == 'user') and ($ex[$paracount-2] == 'quota')){ $user=$ex[$paracount-3]; OC_OCS::quotaget($format,$user); - // quotaset + // quotaset }elseif(($method=='post') and ($ex[$paracount-6] == 'v1.php') and ($ex[$paracount-5]=='cloud') and ($ex[$paracount-4] == 'user') and ($ex[$paracount-2] == 'quota')){ $user=$ex[$paracount-3]; $quota = self::readData('post', 'quota', 'int'); OC_OCS::quotaset($format,$user,$quota); - // keygetpublic + // keygetpublic }elseif(($method=='get') and ($ex[$paracount-6] == 'v1.php') and ($ex[$paracount-5]=='cloud') and ($ex[$paracount-4] == 'user') and ($ex[$paracount-2] == 'publickey')){ $user=$ex[$paracount-3]; OC_OCS::publicKeyGet($format,$user); - // keygetprivate + // keygetprivate }elseif(($method=='get') and ($ex[$paracount-6] == 'v1.php') and ($ex[$paracount-5]=='cloud') and ($ex[$paracount-4] == 'user') and ($ex[$paracount-2] == 'privatekey')){ $user=$ex[$paracount-3]; OC_OCS::privateKeyGet($format,$user); @@ -501,7 +501,7 @@ class OC_OCS { echo(OC_OCS::generatexml($format,'ok',100,'')); } } - + /** * get private data * @param string $user diff --git a/lib/ocsclient.php b/lib/ocsclient.php index ae35470cff6..9d510046697 100644 --- a/lib/ocsclient.php +++ b/lib/ocsclient.php @@ -29,7 +29,7 @@ class OC_OCSClient{ /** - * @brief Get the url of the OCS AppStore server. + * @brief Get the url of the OCS AppStore server. * @returns string of the AppStore server * * This function returns the url of the OCS AppStore server. It´s possible to set it in the config file or it will fallback to the default @@ -40,7 +40,7 @@ class OC_OCSClient{ } /** - * @brief Get the url of the OCS KB server. + * @brief Get the url of the OCS KB server. * @returns string of the KB server * This function returns the url of the OCS knowledge base server. It´s possible to set it in the config file or it will fallback to the default */ @@ -61,13 +61,13 @@ class OC_OCSClient{ return NULL; } $url=OC_OCSClient::getAppStoreURL().'/content/categories'; - + $xml=@file_get_contents($url); if($xml==FALSE){ return NULL; } $data=simplexml_load_string($xml); - + $tmp=$data->data; $cats=array(); @@ -119,9 +119,9 @@ class OC_OCSClient{ $app['preview']=(string)$tmp[$i]->smallpreviewpic1; $app['changed']=strtotime($tmp[$i]->changed); $app['description']=(string)$tmp[$i]->description; - + $apps[]=$app; - } + } return $apps; } @@ -184,7 +184,7 @@ class OC_OCSClient{ $tmp=$data->data->content; $app=array(); - if(isset($tmp->downloadlink)) { + if(isset($tmp->downloadlink)) { $app['downloadlink']=$tmp->downloadlink; }else{ $app['downloadlink']=''; @@ -199,7 +199,7 @@ class OC_OCSClient{ * * This function returns a list of all the knowledgebase entries from the OCS server */ - public static function getKnownledgebaseEntries($page,$pagesize,$search=''){ + public static function getKnownledgebaseEntries($page,$pagesize,$search=''){ if(OC_Config::getValue('knowledgebaseenabled', true)==false){ $kbe=array(); $kbe['totalitems']=0; diff --git a/lib/preferences.php b/lib/preferences.php index b6c4c3a163f..de5747fcccc 100644 --- a/lib/preferences.php +++ b/lib/preferences.php @@ -116,7 +116,7 @@ class OC_Preferences{ // Try to fetch the value, return default if not exists. $query = OC_DB::prepare( 'SELECT `configvalue` FROM `*PREFIX*preferences` WHERE `userid` = ? AND `appid` = ? AND `configkey` = ?' ); $result = $query->execute( array( $user, $app, $key )); - + $row = $result->fetchRow(); if($row){ return $row["configvalue"]; diff --git a/lib/public/app.php b/lib/public/app.php index e74f1550740..be38bbff98a 100644 --- a/lib/public/app.php +++ b/lib/public/app.php @@ -26,7 +26,7 @@ * */ -// use OCP namespace for all classes that are considered public. +// use OCP namespace for all classes that are considered public. // This means that they should be used by apps instead of the internal ownCloud classes namespace OCP; @@ -130,7 +130,7 @@ class App { /** - * @brief Check if the app is enabled, redirects to home if not + * @brief Check if the app is enabled, redirects to home if not * @param $app app * @returns true/false */ @@ -140,7 +140,7 @@ class App { /** - * @brief Get the last version of the app, either from appinfo/version or from appinfo/info.xml + * @brief Get the last version of the app, either from appinfo/version or from appinfo/info.xml * @param $app app * @returns true/false */ diff --git a/lib/public/backgroundjob.php b/lib/public/backgroundjob.php index 834bebb5c3c..2962346dbc9 100644 --- a/lib/public/backgroundjob.php +++ b/lib/public/backgroundjob.php @@ -24,7 +24,7 @@ * Public interface of ownCloud forbackground jobs. */ -// use OCP namespace for all classes that are considered public. +// use OCP namespace for all classes that are considered public. // This means that they should be used by apps instead of the internal ownCloud classes namespace OCP; @@ -42,7 +42,7 @@ namespace OCP; * An example of the queued task would be the creation of the thumbnail. As * soon as the user uploads a picture the gallery app registers the queued * task "create thumbnail" and saves the path in the parameter instead of doing - * the work right away. This makes the app more responsive. As soon as the task + * the work right away. This makes the app more responsive. As soon as the task * is done it will be deleted from the list. */ class BackgroundJob { diff --git a/lib/public/config.php b/lib/public/config.php index ab01902ffe6..f3120b9aaa2 100644 --- a/lib/public/config.php +++ b/lib/public/config.php @@ -27,7 +27,7 @@ */ /** - * @brief use OCP namespace for all classes that are considered public. + * @brief use OCP namespace for all classes that are considered public. * * Classes that use this namespace are for use by apps, and not for use by internal * OC classes diff --git a/lib/public/db.php b/lib/public/db.php index 23c670cf442..e1da62e2d27 100644 --- a/lib/public/db.php +++ b/lib/public/db.php @@ -26,7 +26,7 @@ * */ -// use OCP namespace for all classes that are considered public. +// use OCP namespace for all classes that are considered public. // This means that they should be used by apps instead of the internal ownCloud classes namespace OCP; diff --git a/lib/public/files.php b/lib/public/files.php index 32b3f036744..be5952d362a 100644 --- a/lib/public/files.php +++ b/lib/public/files.php @@ -26,7 +26,7 @@ * */ -// use OCP namespace for all classes that are considered public. +// use OCP namespace for all classes that are considered public. // This means that they should be used by apps instead of the internal ownCloud classes namespace OCP; diff --git a/lib/public/json.php b/lib/public/json.php index 99df79173eb..2a74535f417 100644 --- a/lib/public/json.php +++ b/lib/public/json.php @@ -26,7 +26,7 @@ * */ -// use OCP namespace for all classes that are considered public. +// use OCP namespace for all classes that are considered public. // This means that they should be used by apps instead of the internal ownCloud classes namespace OCP; @@ -47,17 +47,17 @@ class JSON { /** * Check if the user is logged in, send json error msg if not. - * + * * This method checks if a user is logged in. If not, a json error * response will be return and the method will exit from execution * of the script. * The returned json will be in the format: - * + * * {"status":"error","data":{"message":"Authentication error."}} - * + * * Add this call to the start of all ajax method files that requires * an authenticated user. - * + * * @return string json formatted error string if not authenticated. */ public static function checkLoggedIn(){ @@ -66,22 +66,22 @@ class JSON { /** * Check an ajax get/post call if the request token is valid. - * + * * This method checks for a valid variable 'requesttoken' in $_GET, * $_POST and $_SERVER. If a valid token is not found, a json error * response will be return and the method will exit from execution * of the script. * The returned json will be in the format: - * + * * {"status":"error","data":{"message":"Token expired. Please reload page."}} - * - * Add this call to the start of all ajax method files that creates, + * + * Add this call to the start of all ajax method files that creates, * updates or deletes anything. * In cases where you e.g. use an ajax call to load a dialog containing * a submittable form, you will need to add the requesttoken first as a * parameter to the ajax call, then assign it to the template and finally * add a hidden input field also named 'requesttoken' containing the value. - * + * * @return string json formatted error string if not valid. */ public static function callCheck(){ @@ -90,10 +90,10 @@ class JSON { /** * Send json success msg - * + * * Return a json success message with optional extra data. * @see OCP\JSON::error() for the format to use. - * + * * @param array $data The data to use * @return string json formatted string. */ @@ -103,19 +103,19 @@ class JSON { /** * Send json error msg - * - * Return a json error message with optional extra data for + * + * Return a json error message with optional extra data for * error message or app specific data. - * + * * Example use: - * + * * $id = [some value] * OCP\JSON::error(array('data':array('message':'An error happened', 'id': $id))); - * + * * Will return the json formatted string: - * + * * {"status":"error","data":{"message":"An error happened", "id":[some value]}} - * + * * @param array $data The data to use * @return string json formatted error string. */ @@ -134,17 +134,17 @@ class JSON { /** * Check if the App is enabled and send JSON error message instead - * + * * This method checks if a specific app is enabled. If not, a json error * response will be return and the method will exit from execution * of the script. * The returned json will be in the format: - * + * * {"status":"error","data":{"message":"Application is not enabled."}} - * + * * Add this call to the start of all ajax method files that requires * a specific app to be enabled. - * + * * @param string $app The app to check * @return string json formatted string if not enabled. */ @@ -154,17 +154,17 @@ class JSON { /** * Check if the user is a admin, send json error msg if not - * + * * This method checks if the current user has admin rights. If not, a json error * response will be return and the method will exit from execution * of the script. * The returned json will be in the format: - * + * * {"status":"error","data":{"message":"Authentication error."}} - * + * * Add this call to the start of all ajax method files that requires * administrative rights. - * + * * @return string json formatted string if not admin user. */ public static function checkAdminUser(){ diff --git a/lib/public/response.php b/lib/public/response.php index 8dff3bcd354..febb3f14361 100644 --- a/lib/public/response.php +++ b/lib/public/response.php @@ -26,7 +26,7 @@ * */ -// use OCP namespace for all classes that are considered public. +// use OCP namespace for all classes that are considered public. // This means that they should be used by apps instead of the internal ownCloud classes namespace OCP; diff --git a/lib/public/template.php b/lib/public/template.php index a0ed618cb2c..11c740d13ac 100644 --- a/lib/public/template.php +++ b/lib/public/template.php @@ -26,7 +26,7 @@ * */ -// use OCP namespace for all classes that are considered public. +// use OCP namespace for all classes that are considered public. // This means that they should be used by apps instead of the internal ownCloud classes namespace OCP; @@ -88,13 +88,13 @@ function simple_file_size($bytes) { /** * @brief Generate html code for an options block. - * @param $options the options - * @param $selected which one is selected? - * @param $params the parameters + * @param $options the options + * @param $selected which one is selected? + * @param $params the parameters * @returns html options */ function html_select_options($options, $selected, $params=array()) { - return(\html_select_options($options, $selected, $params)); + return(\html_select_options($options, $selected, $params)); } diff --git a/lib/public/user.php b/lib/public/user.php index 2fa599488a7..6228268d75b 100644 --- a/lib/public/user.php +++ b/lib/public/user.php @@ -26,7 +26,7 @@ * */ -// use OCP namespace for all classes that are considered public. +// use OCP namespace for all classes that are considered public. // This means that they should be used by apps instead of the internal ownCloud classes namespace OCP; diff --git a/lib/search.php b/lib/search.php index f8a4b8e96eb..9dfd0cf69ef 100644 --- a/lib/search.php +++ b/lib/search.php @@ -27,7 +27,7 @@ class OC_Search{ static private $providers=array(); static private $registeredProviders=array(); - + /** * remove all registered search providers */ @@ -35,7 +35,7 @@ class OC_Search{ self::$providers=array(); self::$registeredProviders=array(); } - + /** * register a new search provider to be used * @param string $provider class name of a OC_Search_Provider @@ -43,7 +43,7 @@ class OC_Search{ public static function registerProvider($class,$options=array()){ self::$registeredProviders[]=array('class'=>$class,'options'=>$options); } - + /** * search all provider for $query * @param string query @@ -57,7 +57,7 @@ class OC_Search{ } return $results; } - + /** * create instances of all the registered search providers */ diff --git a/lib/search/provider.php b/lib/search/provider.php index b3ee79b4770..b83c5aa61b6 100644 --- a/lib/search/provider.php +++ b/lib/search/provider.php @@ -4,11 +4,11 @@ */ abstract class OC_Search_Provider { private $options; - + public function __construct($options){ $this->options=$options; } - + /** * search for $query * @param string $query diff --git a/lib/setup.php b/lib/setup.php index f7e8c6950ce..e60a461debf 100644 --- a/lib/setup.php +++ b/lib/setup.php @@ -18,7 +18,7 @@ if(isset($_POST['install']) AND $_POST['install']=='true') { // We have to launch the installation process : $e = OC_Setup::install($_POST); $errors = array('errors' => $e); - + if(count($e) > 0) { //OC_Template::printGuestPage("", "error", array("errors" => $errors)); $options = array_merge($_POST, $opts, $errors); @@ -37,7 +37,7 @@ class OC_Setup { public static function install($options) { $error = array(); $dbtype = $options['dbtype']; - + if(empty($options['adminlogin'])) { $error[] = 'Set an admin username.'; } @@ -72,7 +72,7 @@ class OC_Setup { $username = htmlspecialchars_decode($options['adminlogin']); $password = htmlspecialchars_decode($options['adminpass']); $datadir = htmlspecialchars_decode($options['directory']); - + //use sqlite3 when available, otherise sqlite2 will be used. if($dbtype=='sqlite' and class_exists('SQLite3')){ $dbtype='sqlite3'; @@ -107,7 +107,7 @@ class OC_Setup { } else { $oldUser=OC_Config::getValue('dbuser', false); - + $query="SELECT user FROM mysql.user WHERE user='$dbuser'"; //this should be enough to check for admin rights in mysql if(mysql_query($query, $connection)) { //use the admin login data for the new database user @@ -184,9 +184,9 @@ class OC_Setup { $dbusername='oc_'.$username; //create a new password so we don't need to store the admin config in the config file $dbpassword=md5(time()); - + self::pg_createDBUser($dbusername, $dbpassword, $connection); - + OC_CONFIG::setValue('dbuser', $dbusername); OC_CONFIG::setValue('dbpassword', $dbpassword); @@ -257,7 +257,7 @@ class OC_Setup { ); return $error; } else { - //check for roles creation rights in oracle + //check for roles creation rights in oracle $query="SELECT count(*) FROM user_role_privs, role_sys_privs WHERE user_role_privs.granted_role = role_sys_privs.role AND privilege = 'CREATE ROLE'"; $stmt = oci_parse($connection, $query); @@ -342,7 +342,7 @@ class OC_Setup { } } } - } + } else { //delete the old sqlite database first, might cause infinte loops otherwise if(file_exists("$datadir/owncloud.db")){ @@ -428,7 +428,7 @@ class OC_Setup { } } $query = "REVOKE ALL PRIVILEGES ON DATABASE \"$e_name\" FROM PUBLIC"; - $result = pg_query($connection, $query); + $result = pg_query($connection, $query); } private static function pg_createDBUser($name,$password,$connection) { @@ -463,7 +463,7 @@ class OC_Setup { } } /** - * + * * @param String $name * @param String $password * @param String $tablespace diff --git a/lib/subadmin.php b/lib/subadmin.php index 718fe922ffe..4752492df30 100644 --- a/lib/subadmin.php +++ b/lib/subadmin.php @@ -3,7 +3,7 @@ * ownCloud * * @author Georg Ehrke - * @copyright 2012 Georg Ehrke + * @copyright 2012 Georg Ehrke * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE @@ -85,7 +85,7 @@ class OC_SubAdmin{ } return $uids; } - + /** * @brief get all SubAdmins * @return array @@ -99,7 +99,7 @@ class OC_SubAdmin{ } return $subadmins; } - + /** * @brief checks if a user is a SubAdmin of a group * @param $uid uid of the subadmin @@ -115,7 +115,7 @@ class OC_SubAdmin{ } return false; } - + /** * @brief checks if a user is a SubAdmin * @param $uid uid of the subadmin @@ -130,7 +130,7 @@ class OC_SubAdmin{ } return false; } - + /** * @brief checks if a user is a accessible by a subadmin * @param $subadmin uid of the subadmin @@ -152,7 +152,7 @@ class OC_SubAdmin{ } return false; } - + /* * @brief alias for self::isSubAdminofGroup() */ @@ -162,7 +162,7 @@ class OC_SubAdmin{ /** * @brief delete all SubAdmins by uid - * @param $parameters + * @param $parameters * @return boolean */ public static function post_deleteUser($parameters){ diff --git a/lib/template.php b/lib/template.php index a10ddcd5c33..609c8da9763 100644 --- a/lib/template.php +++ b/lib/template.php @@ -161,7 +161,7 @@ class OC_Template{ header('X-Frame-Options: Sameorigin'); header('X-XSS-Protection: 1; mode=block'); header('X-Content-Type-Options: nosniff'); - + $this->findTemplate($name); } @@ -208,13 +208,13 @@ class OC_Template{ $_SESSION['formfactor']=$_GET['formfactor']; } $formfactor=$_SESSION['formfactor']; - if($formfactor=='default') { + if($formfactor=='default') { $fext=''; - }elseif($formfactor=='mobile') { + }elseif($formfactor=='mobile') { $fext='.mobile'; - }elseif($formfactor=='tablet') { + }elseif($formfactor=='tablet') { $fext='.tablet'; - }elseif($formfactor=='standalone') { + }elseif($formfactor=='standalone') { $fext='.standalone'; }else{ $fext=''; diff --git a/lib/user.php b/lib/user.php index c14ef2d6ca6..c432f6074a6 100644 --- a/lib/user.php +++ b/lib/user.php @@ -385,7 +385,7 @@ class OC_User { } return false; } - + /** * disables a user * @param string $userid the user to disable @@ -395,7 +395,7 @@ class OC_User { $query = OC_DB::prepare($query); $query->execute(array($userid, 'core', 'enabled', 'false')); } - + /** * enable a user * @param string $userid @@ -405,7 +405,7 @@ class OC_User { $query = OC_DB::prepare($query); $query->execute(array($userid, 'core', 'enabled', 'false')); } - + /** * checks if a user is enabled * @param string $userid diff --git a/lib/user/database.php b/lib/user/database.php index dc11614cc57..52f3b35fa5c 100644 --- a/lib/user/database.php +++ b/lib/user/database.php @@ -43,7 +43,7 @@ class OC_User_Database extends OC_User_Backend { * @var PasswordHash */ static private $hasher=null; - + private function getHasher(){ if(!self::$hasher){ //we don't want to use DES based crypt(), since it doesn't return a has with a recognisable prefix @@ -53,7 +53,7 @@ class OC_User_Database extends OC_User_Backend { return self::$hasher; } - + /** * @brief Create a new user * @param $uid The username of the user to create @@ -172,7 +172,7 @@ class OC_User_Database extends OC_User_Backend { public function userExists($uid){ $query = OC_DB::prepare( 'SELECT * FROM `*PREFIX*users` WHERE LOWER(`uid`) = LOWER(?)' ); $result = $query->execute( array( $uid )); - + return $result->numRows() > 0; } diff --git a/lib/user/http.php b/lib/user/http.php index 547c0201b69..5149678e4ed 100644 --- a/lib/user/http.php +++ b/lib/user/http.php @@ -41,9 +41,9 @@ class OC_User_HTTP extends OC_User_Backend { $url.='?'.$parts['query']; } return array($parts['user'],$url); - + } - + /** * check if an url is a valid login * @param string url @@ -52,7 +52,7 @@ class OC_User_HTTP extends OC_User_Backend { private function matchUrl($url){ return ! is_null(parse_url($url,PHP_URL_USER)); } - + /** * @brief Check if the password is correct * @param $uid The username @@ -67,7 +67,7 @@ class OC_User_HTTP extends OC_User_Backend { return false; } list($user,$url)=$this->parseUrl($uid); - + $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_USERPWD, $user.':'.$password); @@ -76,7 +76,7 @@ class OC_User_HTTP extends OC_User_Backend { curl_exec($ch); $status = curl_getinfo($ch, CURLINFO_HTTP_CODE); - + curl_close($ch); return $status==200; diff --git a/lib/util.php b/lib/util.php index 720f2cdeefd..f543f742ac1 100755 --- a/lib/util.php +++ b/lib/util.php @@ -40,7 +40,7 @@ class OC_Util { mkdir( $userdirectory, 0755, true ); } OC_Filesystem::mount('OC_Filestorage_Local',array('datadir'=>$user_root), $user); - + //jail the user into his "home" directory OC_Filesystem::init($user_dir); $quotaProxy=new OC_FileProxy_Quota(); @@ -62,9 +62,9 @@ class OC_Util { public static function setupFS4all(){ foreach(OC_User::getUsers() as $user){ OC_Filesystem::mount('OC_Filestorage_Local',array('datadir'=>OC_User::getHome($singleuser)), $user); - } + } } - + public static function tearDownFS(){ OC_Filesystem::tearDown(); self::$fsSetup=false; @@ -211,7 +211,7 @@ class OC_Util { // Check if there is a writable install folder. if(OC_Config::getValue('appstoreenabled', true)) { if( OC_App::getInstallPath() === null || !is_writable(OC_App::getInstallPath())) { - $errors[]=array('error'=>"Can't write into apps directory",'hint'=>"You can usually fix this by giving the webserver user write access to the apps directory + $errors[]=array('error'=>"Can't write into apps directory",'hint'=>"You can usually fix this by giving the webserver user write access to the apps directory in owncloud or disabling the appstore in the config file."); } } @@ -410,15 +410,15 @@ class OC_Util { // cleanup old tokens garbage collector // only run every 20th time so we don't waste cpu cycles - if(rand(0,20)==0) { + if(rand(0,20)==0) { foreach($_SESSION as $key=>$value) { // search all tokens in the session if(substr($key,0,12)=='requesttoken') { if($value+$maxtime Date: Wed, 29 Aug 2012 08:42:49 +0200 Subject: [PATCH 034/246] Whitespace fixes in apps --- apps/files/admin.php | 2 +- apps/files/ajax/list.php | 4 +- apps/files/ajax/newfile.php | 2 +- apps/files/ajax/rawlist.php | 2 +- apps/files/ajax/scan.php | 9 ++--- apps/files/ajax/timezone.php | 1 - apps/files/appinfo/update.php | 2 - apps/files/download.php | 2 +- apps/files/js/files.js | 6 +-- apps/files/settings.php | 2 +- apps/files/templates/admin.php | 3 -- apps/files_encryption/js/settings.js | 2 +- apps/files_encryption/lib/crypt.php | 4 +- apps/files_encryption/lib/cryptstream.php | 12 +++--- apps/files_encryption/lib/proxy.php | 8 ++-- apps/files_encryption/tests/encryption.php | 4 +- apps/files_encryption/tests/proxy.php | 12 +++--- apps/files_encryption/tests/stream.php | 2 +- .../ajax/addRootCertificate.php | 2 +- apps/files_external/js/settings.js | 4 +- apps/files_external/lib/amazons3.php | 4 +- apps/files_external/lib/ftp.php | 2 +- apps/files_external/lib/google.php | 18 ++++----- apps/files_external/lib/swift.php | 8 ++-- apps/files_external/lib/webdav.php | 7 ++-- apps/files_external/templates/settings.php | 10 ++--- apps/files_external/tests/ftp.php | 3 +- apps/files_external/tests/google.php | 3 +- apps/files_external/tests/swift.php | 5 +-- apps/files_external/tests/webdav.php | 1 - apps/files_sharing/appinfo/update.php | 16 ++++---- apps/files_sharing/lib/share/file.php | 4 +- apps/files_sharing/lib/sharedstorage.php | 30 +++++++------- apps/files_versions/ajax/expireAll.php | 8 ++-- apps/files_versions/ajax/getVersions.php | 8 ++-- apps/files_versions/appinfo/update.php | 4 +- apps/files_versions/history.php | 40 +++++++++---------- apps/files_versions/js/settings-personal.js | 28 ++++++------- apps/files_versions/js/versions.js | 30 +++++++------- apps/files_versions/templates/history.php | 4 +- apps/user_webdavauth/user_webdavauth.php | 12 +++--- 41 files changed, 159 insertions(+), 171 deletions(-) diff --git a/apps/files/admin.php b/apps/files/admin.php index d05eb7267b7..b49c0f61a0c 100644 --- a/apps/files/admin.php +++ b/apps/files/admin.php @@ -23,7 +23,7 @@ // Init owncloud - + OCP\User::checkAdminUser(); diff --git a/apps/files/ajax/list.php b/apps/files/ajax/list.php index 94ddf0364be..2254526231e 100644 --- a/apps/files/ajax/list.php +++ b/apps/files/ajax/list.php @@ -23,10 +23,10 @@ if($doBreadcrumb) { $breadcrumb[] = array( "dir" => $pathtohere, "name" => $i ); } } - + $breadcrumbNav = new OCP\Template( "files", "part.breadcrumb", "" ); $breadcrumbNav->assign( "breadcrumb", $breadcrumb ); - + $data['breadcrumb'] = $breadcrumbNav->fetchPage(); } diff --git a/apps/files/ajax/newfile.php b/apps/files/ajax/newfile.php index 6ae9c445425..4619315ce09 100644 --- a/apps/files/ajax/newfile.php +++ b/apps/files/ajax/newfile.php @@ -39,7 +39,7 @@ function progress($notification_code, $severity, $message, $message_code, $bytes case STREAM_NOTIFY_FILE_SIZE_IS: $filesize = $bytes_max; break; - + case STREAM_NOTIFY_PROGRESS: if ($bytes_transferred > 0) { if (!isset($filesize)) { diff --git a/apps/files/ajax/rawlist.php b/apps/files/ajax/rawlist.php index 20094563b17..e0aa0bdac52 100644 --- a/apps/files/ajax/rawlist.php +++ b/apps/files/ajax/rawlist.php @@ -11,7 +11,7 @@ OCP\JSON::checkLoggedIn(); // Load the files $dir = isset( $_GET['dir'] ) ? $_GET['dir'] : ''; -$mimetype = isset($_GET['mimetype']) ? $_GET['mimetype'] : ''; +$mimetype = isset($_GET['mimetype']) ? $_GET['mimetype'] : ''; // make filelist $files = array(); diff --git a/apps/files/ajax/scan.php b/apps/files/ajax/scan.php index 23d7da44f8d..d2ec1ab5161 100644 --- a/apps/files/ajax/scan.php +++ b/apps/files/ajax/scan.php @@ -16,13 +16,12 @@ session_write_close(); if($force or !OC_FileCache::inCache('')) { if(!$checkOnly) { OCP\DB::beginTransaction(); - + if(OC_Cache::isFast()) { - //make sure the old fileid's don't mess things up - OC_Cache::clear('fileid/'); + OC_Cache::clear('fileid/'); //make sure the old fileid's don't mess things up } - - OC_FileCache::scan($dir, $eventSource); + + OC_FileCache::scan($dir,$eventSource); OC_FileCache::clean(); OCP\DB::commit(); $eventSource->send('success', true); diff --git a/apps/files/ajax/timezone.php b/apps/files/ajax/timezone.php index 0be441a36a2..b71fa3940cb 100644 --- a/apps/files/ajax/timezone.php +++ b/apps/files/ajax/timezone.php @@ -3,4 +3,3 @@ // see lib/base.php for an example //session_start(); $_SESSION['timezone'] = $_GET['time']; - \ No newline at end of file diff --git a/apps/files/appinfo/update.php b/apps/files/appinfo/update.php index b2480a58f5e..32ac89f0061 100644 --- a/apps/files/appinfo/update.php +++ b/apps/files/appinfo/update.php @@ -41,5 +41,3 @@ foreach($filesToRemove as $file) { break; } } - - diff --git a/apps/files/download.php b/apps/files/download.php index 4e2478d1ad7..44a328e25db 100644 --- a/apps/files/download.php +++ b/apps/files/download.php @@ -22,7 +22,7 @@ */ // Init owncloud - + // Check if we are a user OCP\User::checkLoggedIn(); diff --git a/apps/files/js/files.js b/apps/files/js/files.js index 049afea4f61..b57e75c9004 100644 --- a/apps/files/js/files.js +++ b/apps/files/js/files.js @@ -379,7 +379,7 @@ $(document).ready(function() { stop: function(e, data) { if(data.dataType != 'iframe ') { $('#upload input.stop').hide(); - } + } $('#uploadprogressbar').progressbar('value',100); $('#uploadprogressbar').fadeOut(); } @@ -542,7 +542,7 @@ $(document).ready(function() { scanFiles(); } }, "json"); - + var lastWidth = 0; var breadcrumbs = []; var breadcrumbsWidth = $('#navigation').get(0).offsetWidth; @@ -603,7 +603,7 @@ $(document).ready(function() { $(window).resize(function() { resizeBreadcrumbs(false); }); - + resizeBreadcrumbs(true); }); diff --git a/apps/files/settings.php b/apps/files/settings.php index cd6dd8c1616..b02c3738c6e 100644 --- a/apps/files/settings.php +++ b/apps/files/settings.php @@ -23,7 +23,7 @@ // Init owncloud - + // Check if we are a user OCP\User::checkLoggedIn(); diff --git a/apps/files/templates/admin.php b/apps/files/templates/admin.php index 23021ec6647..3ad0629750b 100644 --- a/apps/files/templates/admin.php +++ b/apps/files/templates/admin.php @@ -14,6 +14,3 @@
- - - diff --git a/apps/files_encryption/js/settings.js b/apps/files_encryption/js/settings.js index 8cc433246cb..a160b9e0e18 100644 --- a/apps/files_encryption/js/settings.js +++ b/apps/files_encryption/js/settings.js @@ -11,7 +11,7 @@ $(document).ready(function(){ onuncheck:blackListChange, createText:'...', }); - + function blackListChange(){ var blackList=$('#encryption_blacklist').val().join(','); OC.AppConfig.setValue('files_encryption','type_blacklist',blackList); diff --git a/apps/files_encryption/lib/crypt.php b/apps/files_encryption/lib/crypt.php index 849e88ee0b2..0770bca018d 100644 --- a/apps/files_encryption/lib/crypt.php +++ b/apps/files_encryption/lib/crypt.php @@ -188,7 +188,7 @@ class OC_Crypt { fclose($handleread); } } - + /** * encrypt data in 8192b sized blocks */ @@ -200,7 +200,7 @@ class OC_Crypt { } return $result; } - + /** * decrypt data in 8192b sized blocks */ diff --git a/apps/files_encryption/lib/cryptstream.php b/apps/files_encryption/lib/cryptstream.php index 46471911d94..75ad62659d7 100644 --- a/apps/files_encryption/lib/cryptstream.php +++ b/apps/files_encryption/lib/cryptstream.php @@ -64,16 +64,16 @@ class OC_CryptStream{ } return is_resource($this->source); } - + public function stream_seek($offset, $whence=SEEK_SET){ $this->flush(); fseek($this->source,$offset,$whence); } - + public function stream_tell(){ return ftell($this->source); } - + public function stream_read($count){ //$count will always be 8192 https://bugs.php.net/bug.php?id=21641 //This makes this function a lot simpler but will breake everything the moment it's fixed @@ -95,7 +95,7 @@ class OC_CryptStream{ } return $result; } - + public function stream_write($data){ $length=strlen($data); $currentPos=ftell($this->source); @@ -143,11 +143,11 @@ class OC_CryptStream{ public function stream_stat(){ return fstat($this->source); } - + public function stream_lock($mode){ flock($this->source,$mode); } - + public function stream_flush(){ return fflush($this->source); } diff --git a/apps/files_encryption/lib/proxy.php b/apps/files_encryption/lib/proxy.php index f25e4a662f6..247924b2aaf 100644 --- a/apps/files_encryption/lib/proxy.php +++ b/apps/files_encryption/lib/proxy.php @@ -28,7 +28,7 @@ class OC_FileProxy_Encryption extends OC_FileProxy{ private static $blackList=null; //mimetypes blacklisted from encryption private static $enableEncryption=null; - + /** * check if a file should be encrypted during write * @param string $path @@ -62,7 +62,7 @@ class OC_FileProxy_Encryption extends OC_FileProxy{ $metadata=OC_FileCache_Cached::get($path,''); return isset($metadata['encrypted']) and (bool)$metadata['encrypted']; } - + public function preFile_put_contents($path,&$data){ if(self::shouldEncrypt($path)){ if (!is_resource($data)) {//stream put contents should have been converter to fopen @@ -72,7 +72,7 @@ class OC_FileProxy_Encryption extends OC_FileProxy{ } } } - + public function postFile_get_contents($path,$data){ if(self::isEncrypted($path)){ $cached=OC_FileCache_Cached::get($path,''); @@ -80,7 +80,7 @@ class OC_FileProxy_Encryption extends OC_FileProxy{ } return $data; } - + public function postFopen($path,&$result){ if(!$result){ return $result; diff --git a/apps/files_encryption/tests/encryption.php b/apps/files_encryption/tests/encryption.php index 286770a69f5..f70411ed63c 100644 --- a/apps/files_encryption/tests/encryption.php +++ b/apps/files_encryption/tests/encryption.php @@ -23,7 +23,7 @@ class Test_Encryption extends UnitTestCase { $decrypted=OC_Crypt::decrypt($encrypted,$key); $decrypted=rtrim($decrypted, "\0"); $this->assertEqual($decrypted,$chunk); - + $encrypted=OC_Crypt::blockEncrypt($source,$key); $decrypted=OC_Crypt::blockDecrypt($encrypted,$key); $this->assertNotEqual($encrypted,$source); @@ -56,7 +56,7 @@ class Test_Encryption extends UnitTestCase { function testBinary(){ $key=uniqid(); - + $file=__DIR__.'/binary'; $source=file_get_contents($file); //binary file $encrypted=OC_Crypt::encrypt($source,$key); diff --git a/apps/files_encryption/tests/proxy.php b/apps/files_encryption/tests/proxy.php index 5463836a209..c4952d13d39 100644 --- a/apps/files_encryption/tests/proxy.php +++ b/apps/files_encryption/tests/proxy.php @@ -9,18 +9,18 @@ class Test_CryptProxy extends UnitTestCase { private $oldConfig; private $oldKey; - + public function setUp(){ $user=OC_User::getUser(); $this->oldConfig=OCP\Config::getAppValue('files_encryption','enable_encryption','true'); OCP\Config::setAppValue('files_encryption','enable_encryption','true'); $this->oldKey=isset($_SESSION['enckey'])?$_SESSION['enckey']:null; - - + + //set testing key $_SESSION['enckey']=md5(time()); - + //clear all proxies and hooks so we can do clean testing OC_FileProxy::clearProxies(); OC_Hook::clear('OC_Filesystem'); @@ -52,11 +52,11 @@ class Test_CryptProxy extends UnitTestCase { $original=file_get_contents($file); OC_Filesystem::file_put_contents('/file',$original); - + OC_FileProxy::$enabled=false; $stored=OC_Filesystem::file_get_contents('/file'); OC_FileProxy::$enabled=true; - + $fromFile=OC_Filesystem::file_get_contents('/file'); $this->assertNotEqual($original,$stored); $this->assertEqual(strlen($original),strlen($fromFile)); diff --git a/apps/files_encryption/tests/stream.php b/apps/files_encryption/tests/stream.php index d95ea792f72..517d497344e 100644 --- a/apps/files_encryption/tests/stream.php +++ b/apps/files_encryption/tests/stream.php @@ -8,7 +8,7 @@ class Test_CryptStream extends UnitTestCase { private $tmpFiles=array(); - + function testStream(){ $stream=$this->getStream('test1','w',strlen('foobar')); fwrite($stream,'foobar'); diff --git a/apps/files_external/ajax/addRootCertificate.php b/apps/files_external/ajax/addRootCertificate.php index d28a7d24b2d..1aa40bd8aa4 100644 --- a/apps/files_external/ajax/addRootCertificate.php +++ b/apps/files_external/ajax/addRootCertificate.php @@ -14,7 +14,7 @@ $fh = fopen($to, 'r'); $data = fread($fh, filesize($to)); fclose($fh); if (!strpos($data, 'BEGIN CERTIFICATE')) { - $pem = chunk_split(base64_encode($data), 64, "\n"); + $pem = chunk_split(base64_encode($data), 64, "\n"); $pem = "-----BEGIN CERTIFICATE-----\n".$pem."-----END CERTIFICATE-----\n"; $fh = fopen($to, 'w'); fwrite($fh, $pem); diff --git a/apps/files_external/js/settings.js b/apps/files_external/js/settings.js index 23f02bbefcb..f3460070901 100644 --- a/apps/files_external/js/settings.js +++ b/apps/files_external/js/settings.js @@ -70,7 +70,7 @@ OC.MountConfig={ $(document).ready(function() { $('.chzn-select').chosen(); - + $('#selectBackend').live('change', function() { var tr = $(this).parent().parent(); $('#externalStorage tbody').append($(tr).clone()); @@ -133,7 +133,7 @@ $(document).ready(function() { } } return defaultMountPoint+append; - } + } $('#externalStorage td').live('change', function() { OC.MountConfig.saveStorage($(this).parent()); diff --git a/apps/files_external/lib/amazons3.php b/apps/files_external/lib/amazons3.php index 3c2e3330175..34f8ba25574 100644 --- a/apps/files_external/lib/amazons3.php +++ b/apps/files_external/lib/amazons3.php @@ -29,7 +29,7 @@ class OC_Filestorage_AmazonS3 extends OC_Filestorage_Common { private $objects = array(); private static $tempFiles = array(); - + // TODO options: storage class, encryption server side, encrypt before upload? public function __construct($params) { @@ -216,7 +216,7 @@ class OC_Filestorage_AmazonS3 extends OC_Filestorage_Common { } public function free_space($path) { - // Infinite? + // Infinite? return false; } diff --git a/apps/files_external/lib/ftp.php b/apps/files_external/lib/ftp.php index 63f14a28777..818273f6c2d 100644 --- a/apps/files_external/lib/ftp.php +++ b/apps/files_external/lib/ftp.php @@ -14,7 +14,7 @@ class OC_FileStorage_FTP extends OC_FileStorage_StreamWrapper{ private $root; private static $tempFiles=array(); - + public function __construct($params){ $this->host=$params['host']; $this->user=$params['user']; diff --git a/apps/files_external/lib/google.php b/apps/files_external/lib/google.php index 73317bbf714..9b83dcee537 100644 --- a/apps/files_external/lib/google.php +++ b/apps/files_external/lib/google.php @@ -119,7 +119,7 @@ class OC_Filestorage_Google extends OC_Filestorage_Common { } } } - return false; + return false; } private function getFeed($feedUri, $httpMethod, $postData = null) { @@ -174,7 +174,7 @@ class OC_Filestorage_Google extends OC_Filestorage_Common { return 'html'; } } - + public function mkdir($path) { $collection = dirname($path); @@ -254,7 +254,7 @@ class OC_Filestorage_Google extends OC_Filestorage_Common { } else if ($entry = $this->getResource($path)) { // NOTE: Native resources don't have a file size $stat['size'] = $entry->getElementsByTagNameNS('http://schemas.google.com/g/2005', 'quotaBytesUsed')->item(0)->nodeValue; -// if (isset($atime = $entry->getElementsByTagNameNS('http://schemas.google.com/g/2005', 'lastViewed')->item(0)->nodeValue)) +// if (isset($atime = $entry->getElementsByTagNameNS('http://schemas.google.com/g/2005', 'lastViewed')->item(0)->nodeValue)) // $stat['atime'] = strtotime($entry->getElementsByTagNameNS('http://schemas.google.com/g/2005', 'lastViewed')->item(0)->nodeValue); $stat['mtime'] = strtotime($entry->getElementsByTagName('updated')->item(0)->nodeValue); $stat['ctime'] = strtotime($entry->getElementsByTagName('published')->item(0)->nodeValue); @@ -304,7 +304,7 @@ class OC_Filestorage_Google extends OC_Filestorage_Common { } return false; } - + public function file_exists($path) { if ($path == '' || $path == '/') { return true; @@ -313,7 +313,7 @@ class OC_Filestorage_Google extends OC_Filestorage_Common { } return false; } - + public function unlink($path) { // Get resource self link to trash resource if ($entry = $this->getResource($path)) { @@ -482,7 +482,7 @@ class OC_Filestorage_Google extends OC_Filestorage_Common { // TODO Wait for resource entry } } - + public function getMimeType($path, $entry = null) { // Entry can be passed, because extension is required for opendir and the entry can't be cached without the extension if ($entry == null) { @@ -522,7 +522,7 @@ class OC_Filestorage_Google extends OC_Filestorage_Common { } return false; } - + public function free_space($path) { if ($dom = $this->getFeed('https://docs.google.com/feeds/metadata/default', 'GET')) { // NOTE: Native Google Docs resources don't count towards quota @@ -532,9 +532,9 @@ class OC_Filestorage_Google extends OC_Filestorage_Common { } return false; } - + public function touch($path, $mtime = null) { - + } } \ No newline at end of file diff --git a/apps/files_external/lib/swift.php b/apps/files_external/lib/swift.php index 94ccde1ff8f..1868bc4ba77 100644 --- a/apps/files_external/lib/swift.php +++ b/apps/files_external/lib/swift.php @@ -274,7 +274,7 @@ class OC_FileStorage_SWIFT extends OC_Filestorage_Common{ } $this->auth = new CF_Authentication($this->user, $this->token, null, $this->host); $this->auth->authenticate(); - + $this->conn = new CF_Connection($this->auth); if(!$this->containerExists($this->root)){ @@ -303,7 +303,7 @@ class OC_FileStorage_SWIFT extends OC_Filestorage_Common{ $parentContainer=$this->getContainer(dirname($path)); $this->removeSubContainer($parentContainer,basename($path)); } - + $this->conn->delete_container($this->getContainerName($path)); unset($this->containers[$path]); return true; @@ -410,7 +410,7 @@ class OC_FileStorage_SWIFT extends OC_Filestorage_Common{ case 'rb': $fp = fopen('php://temp', 'r+'); $obj->stream($fp); - + rewind($fp); return $fp; case 'w': @@ -451,7 +451,7 @@ class OC_FileStorage_SWIFT extends OC_Filestorage_Common{ if(is_null($mtime)){ $mtime=time(); } - + //emulate setting mtime with metadata $obj->metadata['Mtime']=$mtime; $obj->sync_metadata(); diff --git a/apps/files_external/lib/webdav.php b/apps/files_external/lib/webdav.php index e3f73c5c0a7..1b9c3e3333b 100644 --- a/apps/files_external/lib/webdav.php +++ b/apps/files_external/lib/webdav.php @@ -18,7 +18,7 @@ class OC_FileStorage_DAV extends OC_Filestorage_Common{ private $client; private static $tempFiles=array(); - + public function __construct($params){ $host = $params['host']; //remove leading http[s], will be generated in createBaseUri() @@ -35,7 +35,7 @@ class OC_FileStorage_DAV extends OC_Filestorage_Common{ if(substr($this->root,-1,1)!='/'){ $this->root.='/'; } - + $settings = array( 'baseUri' => $this->createBaseUri(), 'userName' => $this->user, @@ -43,7 +43,7 @@ class OC_FileStorage_DAV extends OC_Filestorage_Common{ ); $this->client = new OC_Connector_Sabre_Client($settings); - + if($caview = \OCP\Files::getStorage('files_external')) { $certPath=\OCP\Config::getSystemValue('datadirectory').$caview->getAbsolutePath("").'rootcerts.crt'; if (file_exists($certPath)) { @@ -296,4 +296,3 @@ class OC_FileStorage_DAV extends OC_Filestorage_Common{ } } } - diff --git a/apps/files_external/templates/settings.php b/apps/files_external/templates/settings.php index 397f0d951b0..7da96135721 100644 --- a/apps/files_external/templates/settings.php +++ b/apps/files_external/templates/settings.php @@ -80,7 +80,7 @@
- + '> @@ -91,17 +91,17 @@ - + -
><?php echo $l->t('Delete'); ?>
+ - + - +
/> diff --git a/apps/files_external/tests/ftp.php b/apps/files_external/tests/ftp.php index 97796bca128..3548880e834 100644 --- a/apps/files_external/tests/ftp.php +++ b/apps/files_external/tests/ftp.php @@ -5,7 +5,7 @@ * later. * See the COPYING-README file. */ - + $config=include('apps/files_external/tests/config.php'); if(!is_array($config) or !isset($config['ftp']) or !$config['ftp']['run']){ abstract class Test_Filestorage_FTP extends Test_FileStorage{} @@ -26,4 +26,3 @@ if(!is_array($config) or !isset($config['ftp']) or !$config['ftp']['run']){ } } } - diff --git a/apps/files_external/tests/google.php b/apps/files_external/tests/google.php index 806db5a6aaa..b0bd9cbbeaf 100644 --- a/apps/files_external/tests/google.php +++ b/apps/files_external/tests/google.php @@ -26,7 +26,7 @@ if(!is_array($config) or !isset($config['google']) or !$config['google']['run']) return; }else{ class Test_Filestorage_Google extends Test_FileStorage { - + private $config; public function setUp(){ @@ -41,4 +41,3 @@ if(!is_array($config) or !isset($config['google']) or !$config['google']['run']) } } } - diff --git a/apps/files_external/tests/swift.php b/apps/files_external/tests/swift.php index 1520c9473d3..bfe7b77aac5 100644 --- a/apps/files_external/tests/swift.php +++ b/apps/files_external/tests/swift.php @@ -21,11 +21,10 @@ if(!is_array($config) or !isset($config['swift']) or !$config['swift']['run']){ $this->instance=new OC_Filestorage_SWIFT($this->config['swift']); } - + public function tearDown(){ $this->instance->rmdir(''); } - + } } - diff --git a/apps/files_external/tests/webdav.php b/apps/files_external/tests/webdav.php index 14abbef2cbf..49c44124f3c 100644 --- a/apps/files_external/tests/webdav.php +++ b/apps/files_external/tests/webdav.php @@ -26,4 +26,3 @@ if(!is_array($config) or !isset($config['webdav']) or !$config['webdav']['run']) } } } - diff --git a/apps/files_sharing/appinfo/update.php b/apps/files_sharing/appinfo/update.php index b43269d69f7..feafa5fb992 100644 --- a/apps/files_sharing/appinfo/update.php +++ b/apps/files_sharing/appinfo/update.php @@ -4,13 +4,13 @@ $datadir = \OCP\Config::getSystemValue('datadirectory'); $currentVersion=OC_Appconfig::getValue('files_sharing', 'installed_version'); if (version_compare($currentVersion, '0.2.2', '<')) { - if ($handle = opendir($datadir)) { - while (false !== ($entry = readdir($handle))) { - $sharedFolder = $datadir.'/'.$entry.'/files/Shared'; - if ($entry != "." && $entry != ".." && is_dir($sharedFolder)) { - touch($sharedFolder); - } - } - closedir($handle); + if ($handle = opendir($datadir)) { + while (false !== ($entry = readdir($handle))) { + $sharedFolder = $datadir.'/'.$entry.'/files/Shared'; + if ($entry != "." && $entry != ".." && is_dir($sharedFolder)) { + touch($sharedFolder); + } + } + closedir($handle); } } \ No newline at end of file diff --git a/apps/files_sharing/lib/share/file.php b/apps/files_sharing/lib/share/file.php index 5005d9a39d6..b1e3ca8b48c 100644 --- a/apps/files_sharing/lib/share/file.php +++ b/apps/files_sharing/lib/share/file.php @@ -27,7 +27,7 @@ class OC_Share_Backend_File implements OCP\Share_Backend_File_Dependent { const FORMAT_OPENDIR = 3; private $path; - + public function isValidSource($itemSource, $uidOwner) { $path = OC_FileCache::getPath($itemSource, $uidOwner); if (OC_Filesystem::file_exists($path)) { @@ -94,7 +94,7 @@ class OC_Share_Backend_File implements OCP\Share_Backend_File_Dependent { $files[] = basename($item['file_target']); } return $files; - } + } return array(); } diff --git a/apps/files_sharing/lib/sharedstorage.php b/apps/files_sharing/lib/sharedstorage.php index a3a8750d273..df5d4d20aed 100644 --- a/apps/files_sharing/lib/sharedstorage.php +++ b/apps/files_sharing/lib/sharedstorage.php @@ -24,10 +24,10 @@ * Convert target path to source path and pass the function call to the correct storage provider */ class OC_Filestorage_Shared extends OC_Filestorage_Common { - + private $sharedFolder; private $files = array(); - + public function __construct($arguments) { $this->sharedFolder = $arguments['sharedFolder']; OC_Util::setupFS4all(); @@ -106,17 +106,17 @@ class OC_Filestorage_Shared extends OC_Filestorage_Common { $internalPath = substr($path, strlen($mountPoint)); return $internalPath; } - + public function mkdir($path) { if ($path == '' || $path == '/' || !$this->isCreatable(dirname($path))) { - return false; + return false; } else if ($source = $this->getSourcePath($path)) { $storage = OC_Filesystem::getStorage($source); return $storage->mkdir($this->getInternalPath($source)); } return false; } - + public function rmdir($path) { if (($source = $this->getSourcePath($path)) && $this->isDeletable($path)) { $storage = OC_Filesystem::getStorage($source); @@ -124,7 +124,7 @@ class OC_Filestorage_Shared extends OC_Filestorage_Common { } return false; } - + public function opendir($path) { if ($path == '' || $path == '/') { $files = OCP\Share::getItemsSharedWith('file', OC_Share_Backend_Folder::FORMAT_OPENDIR); @@ -229,10 +229,10 @@ class OC_Filestorage_Shared extends OC_Filestorage_Common { } return false; } - + public function filectime($path) { if ($path == '' || $path == '/') { - $ctime = 0; + $ctime = 0; if ($dh = $this->opendir($path)) { while (($filename = readdir($dh)) !== false) { $tempctime = $this->filectime($filename); @@ -250,10 +250,10 @@ class OC_Filestorage_Shared extends OC_Filestorage_Common { } } } - + public function filemtime($path) { if ($path == '' || $path == '/') { - $mtime = 0; + $mtime = 0; if ($dh = $this->opendir($path)) { while (($filename = readdir($dh)) !== false) { $tempmtime = $this->filemtime($filename); @@ -271,7 +271,7 @@ class OC_Filestorage_Shared extends OC_Filestorage_Common { } } } - + public function file_get_contents($path) { $source = $this->getSourcePath($path); if ($source) { @@ -284,7 +284,7 @@ class OC_Filestorage_Shared extends OC_Filestorage_Common { return $storage->file_get_contents($this->getInternalPath($source)); } } - + public function file_put_contents($path, $data) { if ($source = $this->getSourcePath($path)) { // Check if permission is granted @@ -302,7 +302,7 @@ class OC_Filestorage_Shared extends OC_Filestorage_Common { } return false; } - + public function unlink($path) { // Delete the file if DELETE permission is granted if (($source = $this->getSourcePath($path)) && $this->isDeletable($path)) { @@ -311,7 +311,7 @@ class OC_Filestorage_Shared extends OC_Filestorage_Common { } return false; } - + public function rename($path1, $path2) { // Renaming/moving is only allowed within shared folders $pos1 = strpos($path1, '/', 1); @@ -344,7 +344,7 @@ class OC_Filestorage_Shared extends OC_Filestorage_Common { } return false; } - + public function copy($path1, $path2) { // Copy the file if CREATE permission is granted if ($this->isCreatable(dirname($path2))) { diff --git a/apps/files_versions/ajax/expireAll.php b/apps/files_versions/ajax/expireAll.php index 2a678c7f0a5..f76da3da986 100644 --- a/apps/files_versions/ajax/expireAll.php +++ b/apps/files_versions/ajax/expireAll.php @@ -32,13 +32,13 @@ OCP\JSON::callCheck(); $versions = new OCA_Versions\Storage(); if( $versions->expireAll() ){ - + OCP\JSON::success(); die(); - + } else { - + OCP\JSON::error(); die(); - + } \ No newline at end of file diff --git a/apps/files_versions/ajax/getVersions.php b/apps/files_versions/ajax/getVersions.php index 1a0e21732cc..8476e5e8a51 100644 --- a/apps/files_versions/ajax/getVersions.php +++ b/apps/files_versions/ajax/getVersions.php @@ -9,19 +9,19 @@ if( OCA_Versions\Storage::isversioned( $source ) ) { $count=5; //show the newest revisions $versions = OCA_Versions\Storage::getVersions( $source, $count); $versionsFormatted = array(); - + foreach ( $versions AS $version ) { $versionsFormatted[] = OCP\Util::formatDate( $version['version'] ); } $versionsSorted = array_reverse( $versions ); - + if ( !empty( $versionsSorted ) ) { OCP\JSON::encodedPrint($versionsSorted); } - + } else { return; - + } diff --git a/apps/files_versions/appinfo/update.php b/apps/files_versions/appinfo/update.php index 9569ca10485..e289b927b3c 100644 --- a/apps/files_versions/appinfo/update.php +++ b/apps/files_versions/appinfo/update.php @@ -6,11 +6,11 @@ if (version_compare($installedVersion, '1.0.2', '<')) { $users = \OCP\User::getUsers(); $datadir = \OCP\Config::getSystemValue('datadirectory').'/'; foreach ($users as $user) { - $oldPath = $datadir.$user.'/versions'; + $oldPath = $datadir.$user.'/versions'; $newPath = $datadir.$user.'/files_versions'; if(is_dir($oldPath)) { rename($oldPath, $newPath); } } - + } diff --git a/apps/files_versions/history.php b/apps/files_versions/history.php index 27dc8bfc382..ea36d6d9f88 100644 --- a/apps/files_versions/history.php +++ b/apps/files_versions/history.php @@ -5,20 +5,20 @@ * * @author Frank Karlitschek * @copyright 2012 Frank Karlitschek frank@owncloud.org - * + * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE - * License as published by the Free Software Foundation; either + * License as published by the Free Software Foundation; either * version 3 of the License, or any later version. - * + * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU AFFERO GENERAL PUBLIC LICENSE for more details. - * - * You should have received a copy of the GNU Lesser General Public + * + * You should have received a copy of the GNU Lesser General Public * License along with this library. If not, see . - * + * */ OCP\User::checkLoggedIn( ); @@ -34,40 +34,40 @@ if ( isset( $_GET['path'] ) ) { // roll back to old version if button clicked if( isset( $_GET['revert'] ) ) { - + if( $versions->rollback( $path, $_GET['revert'] ) ) { - + $tmpl->assign( 'outcome_stat', 'success' ); - + $tmpl->assign( 'outcome_msg', "File {$_GET['path']} was reverted to version ".OCP\Util::formatDate( doubleval($_GET['revert']) ) ); - + } else { - + $tmpl->assign( 'outcome_stat', 'failure' ); - + $tmpl->assign( 'outcome_msg', "File {$_GET['path']} could not be reverted to version ".OCP\Util::formatDate( doubleval($_GET['revert']) ) ); - + } - + } // show the history only if there is something to show if( OCA_Versions\Storage::isversioned( $path ) ) { - + $count = 999; //show the newest revisions $versions = OCA_Versions\Storage::getVersions( $path, $count); $tmpl->assign( 'versions', array_reverse( $versions ) ); - + }else{ - + $tmpl->assign( 'message', 'No old versions available' ); - + } }else{ - + $tmpl->assign( 'message', 'No path specified' ); - + } $tmpl->printPage( ); diff --git a/apps/files_versions/js/settings-personal.js b/apps/files_versions/js/settings-personal.js index 6ea8c1a950f..1e6b036fdab 100644 --- a/apps/files_versions/js/settings-personal.js +++ b/apps/files_versions/js/settings-personal.js @@ -2,16 +2,16 @@ $( document ).ready(function(){ // - $( '#expireAllBtn' ).click( - + $( '#expireAllBtn' ).click( + function( event ) { - + // Prevent page from reloading event.preventDefault(); - + // Show loading gif $('.expireAllLoading').show(); - + $.getJSON( OC.filePath('files_versions','ajax','expireAll.php'), function(result){ @@ -19,20 +19,20 @@ $( document ).ready(function(){ $('.expireAllLoading').hide(); $('#expireAllBtn').html('Expiration successful'); } else { - + // Cancel loading $('#expireAllBtn').html('Expiration failed'); - + // Show Dialog OC.dialogs.alert( - 'Something went wrong, your files may not have been expired', - 'An error has occurred', - function(){ - $('#expireAllBtn').html(t('files_versions', 'Expire all versions')+''); - } - ); + 'Something went wrong, your files may not have been expired', + 'An error has occurred', + function(){ + $('#expireAllBtn').html(t('files_versions', 'Expire all versions')+''); + } + ); } - } + } ); } ); diff --git a/apps/files_versions/js/versions.js b/apps/files_versions/js/versions.js index c5c1553f1a8..e34a6f50cac 100644 --- a/apps/files_versions/js/versions.js +++ b/apps/files_versions/js/versions.js @@ -14,7 +14,7 @@ $(document).ready(function(){ FileActions.register('file','History', FileActions.PERMISSION_UPDATE, function(){return OC.imagePath('core','actions/history')},function(filename){ if (scanFiles.scanning){return;}//workaround to prevent additional http request block scanning feedback - + var file = $('#dir').val()+'/'+filename; // Check if drop down is already visible for a different file if (($('#dropdown').length > 0)) { @@ -35,7 +35,7 @@ $(document).ready(function(){ function createVersionsDropdown(filename, files) { var historyUrl = OC.linkTo('files_versions', 'history.php') + '?path='+encodeURIComponent( $( '#dir' ).val() ).replace( /%2F/g, '/' )+'/'+encodeURIComponent( filename ); - + var html = ''; } html += ''; diff --git a/settings/js/admin.js b/settings/js/admin.js index 23f445b708f..95b7a503c27 100644 --- a/settings/js/admin.js +++ b/settings/js/admin.js @@ -26,8 +26,8 @@ $(document).ready(function(){ var value = 'no'; } } else { - var value = $(this).val() + var value = $(this).val(); } OC.AppConfig.setValue('core', $(this).attr('name'), value); }); -}); \ No newline at end of file +}); diff --git a/settings/js/apps.js b/settings/js/apps.js index f9612482373..bb931232763 100644 --- a/settings/js/apps.js +++ b/settings/js/apps.js @@ -96,7 +96,7 @@ OC.Settings.Apps = OC.Settings.Apps || { } return app; } -} +}; $(document).ready(function(){ $('#leftcontent li').each(function(index,li){ @@ -106,7 +106,7 @@ $(document).ready(function(){ }); $('#leftcontent li').keydown(function(event) { if (event.which == 13 || event.which == 32) { - $(event.target).click() + $(event.target).click(); } return false; }); diff --git a/settings/js/personal.js b/settings/js/personal.js index 77d103c53b6..a866e321ad6 100644 --- a/settings/js/personal.js +++ b/settings/js/personal.js @@ -83,4 +83,4 @@ OC.msg={ $(selector).html( data.data.message ).addClass('error'); } } -} +}; From a8de0af2732020e9f9d60dcf6a4571fe62e242de Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Wed, 5 Sep 2012 22:22:04 +0200 Subject: [PATCH 173/246] Add 'var' before some global js vars --- core/js/oc-dialogs.js | 2 +- core/js/oc-vcategories.js | 2 +- settings/js/users.js | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/core/js/oc-dialogs.js b/core/js/oc-dialogs.js index 0fa41696a16..4dd3c89c14d 100644 --- a/core/js/oc-dialogs.js +++ b/core/js/oc-dialogs.js @@ -22,7 +22,7 @@ /** * this class to ease the usage of jquery dialogs */ -OCdialogs = { +var OCdialogs = { /** * displays alert dialog * @param text content of dialog diff --git a/core/js/oc-vcategories.js b/core/js/oc-vcategories.js index dfed8223b1b..c7b536a2a7d 100644 --- a/core/js/oc-vcategories.js +++ b/core/js/oc-vcategories.js @@ -1,4 +1,4 @@ -OCCategories={ +var OCCategories={ edit:function(){ if(OCCategories.app == undefined) { OC.dialogs.alert('OCCategories.app is not set!'); diff --git a/settings/js/users.js b/settings/js/users.js index d0a3c1c21ab..20bd94993bc 100644 --- a/settings/js/users.js +++ b/settings/js/users.js @@ -4,7 +4,7 @@ * See the COPYING-README file. */ -UserList={ +var UserList={ useUndo:true, /** From e0db35fac0e1938a0337790162657b64143d87fd Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Wed, 5 Sep 2012 22:23:32 +0200 Subject: [PATCH 174/246] Fix name for OCCategories --- core/js/oc-vcategories.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/js/oc-vcategories.js b/core/js/oc-vcategories.js index c7b536a2a7d..c99dd51f53a 100644 --- a/core/js/oc-vcategories.js +++ b/core/js/oc-vcategories.js @@ -95,7 +95,7 @@ var OCCategories={ } }).error(function(xhr){ if (xhr.status == 404) { - OC.dialogs.alert('The required file ' + OC.filePath(Categories.app, 'ajax', 'categories/rescan.php') + ' is not installed!', 'Error'); + OC.dialogs.alert('The required file ' + OC.filePath(OCCategories.app, 'ajax', 'categories/rescan.php') + ' is not installed!', 'Error'); } }); }, From daf41885e5481b80b15b4b2987f071608b7ad235 Mon Sep 17 00:00:00 2001 From: Thomas Mueller Date: Wed, 5 Sep 2012 22:53:48 +0200 Subject: [PATCH 175/246] jquery added to ignorelist for l10n --- core/l10n/ignorelist | 1 + 1 file changed, 1 insertion(+) create mode 100644 core/l10n/ignorelist diff --git a/core/l10n/ignorelist b/core/l10n/ignorelist new file mode 100644 index 00000000000..a2b225cbe4a --- /dev/null +++ b/core/l10n/ignorelist @@ -0,0 +1 @@ +js/jquery-ui-1.8.16.custom.min.js From ebb28412ca47889019aa4c0f278fe3b9097996f8 Mon Sep 17 00:00:00 2001 From: Thomas Mueller Date: Wed, 5 Sep 2012 23:28:59 +0200 Subject: [PATCH 176/246] no more require_once() --- apps/files_encryption/lib/crypt.php | 2 +- apps/files_external/lib/smb.php | 2 +- apps/files_external/lib/swift.php | 2 +- apps/files_versions/appinfo/app.php | 2 +- apps/user_webdavauth/appinfo/app.php | 2 +- l10n/templates/core.pot | 6 +--- l10n/templates/files.pot | 46 +++++++++++++++------------- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- lib/MDB2/Driver/Datatype/sqlite3.php | 2 +- lib/MDB2/Driver/Function/sqlite3.php | 2 +- lib/MDB2/Driver/Manager/sqlite3.php | 2 +- lib/MDB2/Driver/Reverse/sqlite3.php | 2 +- lib/filesystem.php | 2 +- lib/mail.php | 2 +- lib/migrate.php | 4 +-- lib/minimizer/css.php | 2 +- lib/minimizer/js.php | 2 +- search/ajax/search.php | 2 +- settings/admin.php | 2 +- settings/ajax/disableapp.php | 2 +- settings/ajax/enableapp.php | 2 +- settings/ajax/togglesubadmins.php | 2 +- tests/lib/archive/tar.php | 2 +- tests/lib/archive/zip.php | 2 +- 30 files changed, 55 insertions(+), 55 deletions(-) diff --git a/apps/files_encryption/lib/crypt.php b/apps/files_encryption/lib/crypt.php index 0770bca018d..ebc09e78961 100644 --- a/apps/files_encryption/lib/crypt.php +++ b/apps/files_encryption/lib/crypt.php @@ -31,7 +31,7 @@ // - IMPORTANT! Check if the block lenght of the encrypted data stays the same -require_once('Crypt_Blowfish/Blowfish.php'); +require_once 'Crypt_Blowfish/Blowfish.php'; /** * This class is for crypting and decrypting diff --git a/apps/files_external/lib/smb.php b/apps/files_external/lib/smb.php index 8a5e993b1d0..91c0f16c1f6 100644 --- a/apps/files_external/lib/smb.php +++ b/apps/files_external/lib/smb.php @@ -6,7 +6,7 @@ * See the COPYING-README file. */ -require_once('smb4php/smb.php'); +require_once 'smb4php/smb.php'; class OC_FileStorage_SMB extends OC_FileStorage_StreamWrapper{ private $password; diff --git a/apps/files_external/lib/swift.php b/apps/files_external/lib/swift.php index 1868bc4ba77..9a4b5c6dd2b 100644 --- a/apps/files_external/lib/swift.php +++ b/apps/files_external/lib/swift.php @@ -6,7 +6,7 @@ * See the COPYING-README file. */ -require_once('php-cloudfiles/cloudfiles.php'); +require_once 'php-cloudfiles/cloudfiles.php'; class OC_FileStorage_SWIFT extends OC_Filestorage_Common{ private $host; diff --git a/apps/files_versions/appinfo/app.php b/apps/files_versions/appinfo/app.php index 9ac7f6d5cde..746f89a8139 100644 --- a/apps/files_versions/appinfo/app.php +++ b/apps/files_versions/appinfo/app.php @@ -1,6 +1,6 @@ \n" "Language-Team: LANGUAGE \n" @@ -29,10 +29,6 @@ msgstr "" msgid "This category already exists: " msgstr "" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "" - #: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 9d519c1a517..44a43dfd40b 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" +"POT-Creation-Date: 2012-09-05 22:50+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -55,31 +55,35 @@ msgstr "" msgid "Delete" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "" -#: js/filelist.js:195 -msgid "with" -msgstr "" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "" + +#: js/filelist.js:271 msgid "deleted" msgstr "" @@ -95,44 +99,44 @@ msgstr "" msgid "Upload Error" msgstr "" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "" -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 460fd2df782..99b6ae69c3b 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" +"POT-Creation-Date: 2012-09-05 22:50+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index de03296ccbb..adca26e6ea3 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" +"POT-Creation-Date: 2012-09-05 22:50+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index e1ab849fe35..160cb143db5 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" +"POT-Creation-Date: 2012-09-05 22:50+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 61a011e4e32..be0aedd0b89 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" +"POT-Creation-Date: 2012-09-05 22:50+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index 82f5c27fddd..cfbef6875d2 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" +"POT-Creation-Date: 2012-09-05 22:51+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 7c8028eff73..f506265f120 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-05 02:02+0200\n" +"POT-Creation-Date: 2012-09-05 22:51+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index b33a2245ac2..403d1173b37 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" +"POT-Creation-Date: 2012-09-05 22:50+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/lib/MDB2/Driver/Datatype/sqlite3.php b/lib/MDB2/Driver/Datatype/sqlite3.php index 66c68b93778..673706e518c 100644 --- a/lib/MDB2/Driver/Datatype/sqlite3.php +++ b/lib/MDB2/Driver/Datatype/sqlite3.php @@ -20,7 +20,7 @@ * */ -require_once('MDB2/Driver/Datatype/Common.php'); +require_once 'MDB2/Driver/Datatype/Common.php'; /** * MDB2 SQLite driver diff --git a/lib/MDB2/Driver/Function/sqlite3.php b/lib/MDB2/Driver/Function/sqlite3.php index 790bd0e747b..235a106e183 100644 --- a/lib/MDB2/Driver/Function/sqlite3.php +++ b/lib/MDB2/Driver/Function/sqlite3.php @@ -20,7 +20,7 @@ * */ -require_once('MDB2/Driver/Function/Common.php'); +require_once 'MDB2/Driver/Function/Common.php'; /** * MDB2 SQLite driver for the function modules diff --git a/lib/MDB2/Driver/Manager/sqlite3.php b/lib/MDB2/Driver/Manager/sqlite3.php index 10255a3619a..0101f8ee2ab 100644 --- a/lib/MDB2/Driver/Manager/sqlite3.php +++ b/lib/MDB2/Driver/Manager/sqlite3.php @@ -20,7 +20,7 @@ * */ -require_once('MDB2/Driver/Manager/Common.php'); +require_once 'MDB2/Driver/Manager/Common.php'; /** * MDB2 SQLite driver for the management modules diff --git a/lib/MDB2/Driver/Reverse/sqlite3.php b/lib/MDB2/Driver/Reverse/sqlite3.php index e5c758e3503..36626478ce8 100644 --- a/lib/MDB2/Driver/Reverse/sqlite3.php +++ b/lib/MDB2/Driver/Reverse/sqlite3.php @@ -20,7 +20,7 @@ * */ -require_once('MDB2/Driver/Reverse/Common.php'); +require_once 'MDB2/Driver/Reverse/Common.php'; /** * MDB2 SQlite driver for the schema reverse engineering module diff --git a/lib/filesystem.php b/lib/filesystem.php index 327329f9d91..c69970467f5 100644 --- a/lib/filesystem.php +++ b/lib/filesystem.php @@ -559,4 +559,4 @@ OC_Hook::connect('OC_Filesystem','post_delete','OC_Filesystem','removeETagHook') OC_Hook::connect('OC_Filesystem','post_rename','OC_Filesystem','removeETagHook'); OC_Util::setupFS(); -require_once('filecache.php'); +require_once 'filecache.php'; diff --git a/lib/mail.php b/lib/mail.php index fc9aebfda3b..15e91158e1c 100644 --- a/lib/mail.php +++ b/lib/mail.php @@ -12,7 +12,7 @@ * A class to handle mail sending. */ -require_once('class.phpmailer.php'); +require_once 'class.phpmailer.php'; class OC_Mail { diff --git a/lib/migrate.php b/lib/migrate.php index 7d7169c4e46..b3ef00cbf6d 100644 --- a/lib/migrate.php +++ b/lib/migrate.php @@ -376,7 +376,7 @@ class OC_Migrate{ // Connect if this did not happen before if( !self::$schema ){ - require_once('MDB2/Schema.php'); + require_once 'MDB2/Schema.php'; self::$schema=MDB2_Schema::factory( self::$MDB2 ); } @@ -471,7 +471,7 @@ class OC_Migrate{ } // Already connected if(!self::$MDB2){ - require_once('MDB2.php'); + require_once 'MDB2.php'; $datadir = OC_Config::getValue( "datadirectory", OC::$SERVERROOT."/data" ); diff --git a/lib/minimizer/css.php b/lib/minimizer/css.php index 110935ea3b7..0f1435fde45 100644 --- a/lib/minimizer/css.php +++ b/lib/minimizer/css.php @@ -1,6 +1,6 @@ Date: Thu, 6 Sep 2012 02:06:37 +0200 Subject: [PATCH 177/246] [tx-robot] updated from transifex --- apps/files/l10n/ca.php | 3 +- apps/files/l10n/cs_CZ.php | 58 +++++++------- apps/files/l10n/da.php | 2 +- apps/files/l10n/de.php | 3 +- apps/files/l10n/el.php | 2 +- apps/files/l10n/eo.php | 2 +- apps/files/l10n/es.php | 3 +- apps/files/l10n/et_EE.php | 2 +- apps/files/l10n/eu.php | 2 +- apps/files/l10n/fa.php | 2 +- apps/files/l10n/fi_FI.php | 3 +- apps/files/l10n/fr.php | 3 +- apps/files/l10n/gl.php | 2 +- apps/files/l10n/hr.php | 2 +- apps/files/l10n/hu_HU.php | 2 +- apps/files/l10n/id.php | 2 +- apps/files/l10n/it.php | 3 +- apps/files/l10n/ja_JP.php | 3 +- apps/files/l10n/ko.php | 2 +- apps/files/l10n/lb.php | 2 +- apps/files/l10n/lv.php | 2 +- apps/files/l10n/nb_NO.php | 2 +- apps/files/l10n/nl.php | 4 +- apps/files/l10n/pl.php | 3 +- apps/files/l10n/pt_BR.php | 2 +- apps/files/l10n/pt_PT.php | 2 +- apps/files/l10n/ru.php | 2 +- apps/files/l10n/sl.php | 3 +- apps/files/l10n/sv.php | 3 +- apps/files/l10n/th_TH.php | 3 +- apps/files/l10n/tr.php | 2 +- apps/files/l10n/zh_CN.GB2312.php | 2 +- apps/files/l10n/zh_CN.php | 2 +- apps/files_encryption/l10n/cs_CZ.php | 8 +- apps/files_encryption/l10n/sk_SK.php | 6 ++ apps/files_external/l10n/cs_CZ.php | 16 ++-- apps/files_external/l10n/fi_FI.php | 2 + apps/files_sharing/l10n/cs_CZ.php | 5 +- apps/files_sharing/l10n/nl.php | 3 +- apps/files_versions/l10n/cs_CZ.php | 4 +- apps/user_ldap/l10n/cs_CZ.php | 46 +++++------ apps/user_ldap/l10n/fi_FI.php | 6 ++ core/l10n/ca.php | 1 - core/l10n/cs_CZ.php | 38 +++++----- core/l10n/da.php | 1 - core/l10n/de.php | 1 - core/l10n/el.php | 1 - core/l10n/eo.php | 1 - core/l10n/es.php | 1 - core/l10n/et_EE.php | 1 - core/l10n/eu.php | 1 - core/l10n/fa.php | 1 - core/l10n/fi_FI.php | 1 - core/l10n/fr.php | 1 - core/l10n/gl.php | 1 - core/l10n/hr.php | 1 - core/l10n/hu_HU.php | 1 - core/l10n/it.php | 1 - core/l10n/ja_JP.php | 1 - core/l10n/ko.php | 1 - core/l10n/lt_LT.php | 1 - core/l10n/mk.php | 1 - core/l10n/ms_MY.php | 1 - core/l10n/nb_NO.php | 1 - core/l10n/nl.php | 2 +- core/l10n/pl.php | 1 - core/l10n/pt_BR.php | 1 - core/l10n/pt_PT.php | 1 - core/l10n/ru.php | 1 - core/l10n/sk_SK.php | 1 - core/l10n/sl.php | 1 - core/l10n/sv.php | 1 - core/l10n/th_TH.php | 1 - core/l10n/tr.php | 1 - core/l10n/vi.php | 1 - core/l10n/zh_CN.GB2312.php | 1 - core/l10n/zh_TW.php | 1 - l10n/af/core.po | 38 +++++----- l10n/af/files.po | 48 ++++++------ l10n/ar/core.po | 38 +++++----- l10n/ar/files.po | 48 ++++++------ l10n/ar_SA/core.po | 38 +++++----- l10n/ar_SA/files.po | 48 ++++++------ l10n/bg_BG/core.po | 38 +++++----- l10n/bg_BG/files.po | 48 ++++++------ l10n/ca/core.po | 40 +++++----- l10n/ca/files.po | 51 +++++++------ l10n/ca/settings.po | 13 ++-- l10n/cs_CZ/core.po | 79 ++++++++++--------- l10n/cs_CZ/files.po | 109 ++++++++++++++------------- l10n/cs_CZ/files_encryption.po | 17 +++-- l10n/cs_CZ/files_external.po | 25 +++--- l10n/cs_CZ/files_sharing.po | 19 ++--- l10n/cs_CZ/files_versions.po | 15 ++-- l10n/cs_CZ/lib.po | 45 +++++------ l10n/cs_CZ/settings.po | 87 ++++++++++----------- l10n/cs_CZ/user_ldap.po | 55 +++++++------- l10n/da/core.po | 40 +++++----- l10n/da/files.po | 48 ++++++------ l10n/de/core.po | 40 +++++----- l10n/de/files.po | 50 ++++++------ l10n/de/settings.po | 10 +-- l10n/el/core.po | 38 +++++----- l10n/el/files.po | 48 ++++++------ l10n/eo/core.po | 38 +++++----- l10n/eo/files.po | 48 ++++++------ l10n/es/core.po | 40 +++++----- l10n/es/files.po | 50 ++++++------ l10n/es/settings.po | 12 +-- l10n/et_EE/core.po | 38 +++++----- l10n/et_EE/files.po | 48 ++++++------ l10n/eu/core.po | 38 +++++----- l10n/eu/files.po | 48 ++++++------ l10n/eu_ES/core.po | 38 +++++----- l10n/eu_ES/files.po | 48 ++++++------ l10n/fa/core.po | 38 +++++----- l10n/fa/files.po | 48 ++++++------ l10n/fi/core.po | 38 +++++----- l10n/fi/files.po | 48 ++++++------ l10n/fi_FI/core.po | 38 +++++----- l10n/fi_FI/files.po | 50 ++++++------ l10n/fi_FI/files_external.po | 13 ++-- l10n/fi_FI/settings.po | 12 +-- l10n/fi_FI/user_ldap.po | 19 ++--- l10n/fr/core.po | 40 +++++----- l10n/fr/files.po | 51 +++++++------ l10n/fr/settings.po | 13 ++-- l10n/gl/core.po | 38 +++++----- l10n/gl/files.po | 48 ++++++------ l10n/he/core.po | 38 +++++----- l10n/he/files.po | 48 ++++++------ l10n/hi/core.po | 38 +++++----- l10n/hi/files.po | 48 ++++++------ l10n/hr/core.po | 38 +++++----- l10n/hr/files.po | 48 ++++++------ l10n/hu_HU/core.po | 38 +++++----- l10n/hu_HU/files.po | 48 ++++++------ l10n/hy/core.po | 38 +++++----- l10n/hy/files.po | 48 ++++++------ l10n/ia/core.po | 38 +++++----- l10n/ia/files.po | 48 ++++++------ l10n/id/core.po | 38 +++++----- l10n/id/files.po | 48 ++++++------ l10n/id_ID/core.po | 38 +++++----- l10n/id_ID/files.po | 48 ++++++------ l10n/it/core.po | 40 +++++----- l10n/it/files.po | 50 ++++++------ l10n/it/settings.po | 12 +-- l10n/ja_JP/core.po | 40 +++++----- l10n/ja_JP/files.po | 50 ++++++------ l10n/ja_JP/settings.po | 20 ++--- l10n/ko/core.po | 38 +++++----- l10n/ko/files.po | 48 ++++++------ l10n/lb/core.po | 38 +++++----- l10n/lb/files.po | 48 ++++++------ l10n/lt_LT/core.po | 38 +++++----- l10n/lt_LT/files.po | 48 ++++++------ l10n/lv/core.po | 38 +++++----- l10n/lv/files.po | 48 ++++++------ l10n/mk/core.po | 38 +++++----- l10n/mk/files.po | 48 ++++++------ l10n/ms_MY/core.po | 38 +++++----- l10n/ms_MY/files.po | 48 ++++++------ l10n/nb_NO/core.po | 38 +++++----- l10n/nb_NO/files.po | 48 ++++++------ l10n/nl/core.po | 43 +++++------ l10n/nl/files.po | 53 +++++++------ l10n/nl/files_sharing.po | 15 ++-- l10n/nl/settings.po | 23 +++--- l10n/nn_NO/core.po | 38 +++++----- l10n/nn_NO/files.po | 48 ++++++------ l10n/pl/core.po | 38 +++++----- l10n/pl/files.po | 51 +++++++------ l10n/pl/settings.po | 25 +++--- l10n/pl_PL/core.po | 38 +++++----- l10n/pl_PL/files.po | 48 ++++++------ l10n/pt_BR/core.po | 38 +++++----- l10n/pt_BR/files.po | 48 ++++++------ l10n/pt_PT/core.po | 38 +++++----- l10n/pt_PT/files.po | 48 ++++++------ l10n/ro/core.po | 38 +++++----- l10n/ro/files.po | 48 ++++++------ l10n/ru/core.po | 38 +++++----- l10n/ru/files.po | 48 ++++++------ l10n/ru_RU/core.po | 38 +++++----- l10n/ru_RU/files.po | 48 ++++++------ l10n/sk_SK/core.po | 38 +++++----- l10n/sk_SK/files.po | 48 ++++++------ l10n/sk_SK/files_encryption.po | 17 +++-- l10n/sl/core.po | 40 +++++----- l10n/sl/files.po | 50 ++++++------ l10n/sl/settings.po | 12 +-- l10n/so/core.po | 38 +++++----- l10n/so/files.po | 48 ++++++------ l10n/sr/core.po | 38 +++++----- l10n/sr/files.po | 48 ++++++------ l10n/sr@latin/core.po | 38 +++++----- l10n/sr@latin/files.po | 48 ++++++------ l10n/sv/core.po | 40 +++++----- l10n/sv/files.po | 50 ++++++------ l10n/sv/settings.po | 20 ++--- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/th_TH/core.po | 40 +++++----- l10n/th_TH/files.po | 50 ++++++------ l10n/th_TH/settings.po | 20 ++--- l10n/tr/core.po | 40 +++++----- l10n/tr/files.po | 48 ++++++------ l10n/uk/core.po | 38 +++++----- l10n/uk/files.po | 48 ++++++------ l10n/vi/core.po | 38 +++++----- l10n/vi/files.po | 48 ++++++------ l10n/zh_CN.GB2312/core.po | 38 +++++----- l10n/zh_CN.GB2312/files.po | 48 ++++++------ l10n/zh_CN/core.po | 38 +++++----- l10n/zh_CN/files.po | 48 ++++++------ l10n/zh_TW/core.po | 40 +++++----- l10n/zh_TW/files.po | 48 ++++++------ lib/l10n/cs_CZ.php | 15 ++-- settings/l10n/ca.php | 3 + settings/l10n/cs_CZ.php | 60 +++++++++------ settings/l10n/de.php | 3 + settings/l10n/es.php | 3 + settings/l10n/fi_FI.php | 3 + settings/l10n/fr.php | 3 + settings/l10n/it.php | 3 + settings/l10n/ja_JP.php | 7 ++ settings/l10n/nl.php | 8 ++ settings/l10n/pl.php | 9 +++ settings/l10n/sl.php | 3 + settings/l10n/sv.php | 7 ++ settings/l10n/th_TH.php | 7 ++ 239 files changed, 3114 insertions(+), 3010 deletions(-) create mode 100644 apps/files_encryption/l10n/sk_SK.php diff --git a/apps/files/l10n/ca.php b/apps/files/l10n/ca.php index d887c8a9521..6d232f217e8 100644 --- a/apps/files/l10n/ca.php +++ b/apps/files/l10n/ca.php @@ -12,8 +12,8 @@ "replace" => "substitueix", "cancel" => "cancel·la", "replaced" => "substituït", -"with" => "per", "undo" => "desfés", +"with" => "per", "deleted" => "esborrat", "generating ZIP-file, it may take some time." => "s'estan generant fitxers ZIP, pot trigar una estona.", "Unable to upload your file as it is a directory or has 0 bytes" => "No es pot pujar el fitxer perquè és una carpeta o té 0 bytes", @@ -35,6 +35,7 @@ "Enable ZIP-download" => "Activa la baixada ZIP", "0 is unlimited" => "0 és sense límit", "Maximum input size for ZIP files" => "Mida màxima d'entrada per fitxers ZIP", +"Save" => "Desar", "New" => "Nou", "Text file" => "Fitxer de text", "Folder" => "Carpeta", diff --git a/apps/files/l10n/cs_CZ.php b/apps/files/l10n/cs_CZ.php index 4dc4b8b0cb1..228f6a3898e 100644 --- a/apps/files/l10n/cs_CZ.php +++ b/apps/files/l10n/cs_CZ.php @@ -1,51 +1,53 @@ "Soubor byl odeslán úspěšně", -"The uploaded file exceeds the upload_max_filesize directive in php.ini" => "Odeslaný soubor přesáhl velikostí parametr upload_max_filesize v php.ini", -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Odeslaný soubor přesáhl velikostí parametr MAX_FILE_SIZE specifikovaný v HTML formuláři", +"The uploaded file exceeds the upload_max_filesize directive in php.ini" => "Odeslaný soubor přesáhl svou velikostí parametr upload_max_filesize v php.ini", +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Odeslaný soubor přesáhl svou velikostí parametr MAX_FILE_SIZE specifikovaný v formuláři HTML", "The uploaded file was only partially uploaded" => "Soubor byl odeslán pouze částečně", -"No file was uploaded" => "Soubor nebyl odeslán", -"Missing a temporary folder" => "Chybí adresář pro sočasné soubory", -"Failed to write to disk" => "Zápis na disk se nezdařil", +"No file was uploaded" => "Žádný soubor nebyl odeslán", +"Missing a temporary folder" => "Chybí adresář pro dočasné soubory", +"Failed to write to disk" => "Zápis na disk selhal", "Files" => "Soubory", -"Delete" => "Vymazat", +"Delete" => "Smazat", "already exists" => "již existuje", -"replace" => "zaměnit", -"cancel" => "storno", -"replaced" => "zaměněno", -"with" => "s", +"replace" => "nahradit", +"cancel" => "zrušit", +"replaced" => "nahrazeno", "undo" => "zpět", +"with" => "s", "deleted" => "smazáno", -"generating ZIP-file, it may take some time." => "generuji ZIP soubor, může to chvíli trvat", -"Unable to upload your file as it is a directory or has 0 bytes" => "Nemohu nahrát váš soubor neboť to je adresář a nebo má nulovou délku.", -"Upload Error" => "Chyba při nahrávání", -"Pending" => "Očekává se", -"Upload cancelled." => "Nahrávání zrušeno", -"Invalid name, '/' is not allowed." => "Špatné jméno, znak '/' není povolen", +"generating ZIP-file, it may take some time." => "generuji ZIP soubor, může to nějakou dobu trvat.", +"Unable to upload your file as it is a directory or has 0 bytes" => "Nelze odeslat Váš soubor, protože je to adresář nebo má velikost 0 bajtů", +"Upload Error" => "Chyba odesílání", +"Pending" => "Čekající", +"Upload cancelled." => "Odesílání zrušeno.", +"File upload is in progress. Leaving the page now will cancel the upload." => "Probíhá odesílání souboru. Opuštění stránky vyústí ve zrušení nahrávání.", +"Invalid name, '/' is not allowed." => "Neplatný název, znak '/' není povolen", "Size" => "Velikost", "Modified" => "Změněno", -"folder" => "adresář", -"folders" => "adresáře", +"folder" => "složka", +"folders" => "složky", "file" => "soubor", "files" => "soubory", -"File handling" => "Nastavení chování k souborům", -"Maximum upload size" => "Maximální velikost ukládaných souborů", -"max. possible: " => "největší možná:", -"Needed for multi-file and folder downloads." => "Potřeba pro vícesoborvé stahování a stahování adresářů", +"File handling" => "Zacházení se soubory", +"Maximum upload size" => "Maximální velikost pro odesílání", +"max. possible: " => "největší možná: ", +"Needed for multi-file and folder downloads." => "Potřebné pro více-souborové stahování a stahování složek.", "Enable ZIP-download" => "Povolit ZIP-stahování", "0 is unlimited" => "0 znamená bez omezení", "Maximum input size for ZIP files" => "Maximální velikost vstupu pro ZIP soubory", +"Save" => "Uložit", "New" => "Nový", "Text file" => "Textový soubor", -"Folder" => "Adresář", +"Folder" => "Složka", "From url" => "Z url", -"Upload" => "Uložit", -"Cancel upload" => "Zrušit upload", -"Nothing in here. Upload something!" => "Žádný obsah. Uložte si něco!", +"Upload" => "Odeslat", +"Cancel upload" => "Zrušit odesílání", +"Nothing in here. Upload something!" => "Žádný obsah. Nahrajte něco.", "Name" => "Název", "Share" => "Sdílet", "Download" => "Stáhnout", -"Upload too large" => "Příliš velký soubor", -"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Soubory, které se snažíte uložit, překračují maximální velikosti uploadu na tomto serveru.", +"Upload too large" => "Odeslaný soubor je příliš velký", +"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Soubory, které se snažíte odeslat, překračují limit velikosti odesílání na tomto serveru.", "Files are being scanned, please wait." => "Soubory se prohledávají, prosím čekejte.", "Current scanning" => "Aktuální prohledávání" ); diff --git a/apps/files/l10n/da.php b/apps/files/l10n/da.php index a842088e7b5..020f6142ec6 100644 --- a/apps/files/l10n/da.php +++ b/apps/files/l10n/da.php @@ -12,8 +12,8 @@ "replace" => "erstat", "cancel" => "fortryd", "replaced" => "erstattet", -"with" => "med", "undo" => "fortryd", +"with" => "med", "deleted" => "Slettet", "generating ZIP-file, it may take some time." => "genererer ZIP-fil, det kan tage lidt tid.", "Unable to upload your file as it is a directory or has 0 bytes" => "Kunne ikke uploade din fil, da det enten er en mappe eller er tom", diff --git a/apps/files/l10n/de.php b/apps/files/l10n/de.php index 7a3e61f9bec..a267d31009b 100644 --- a/apps/files/l10n/de.php +++ b/apps/files/l10n/de.php @@ -12,8 +12,8 @@ "replace" => "ersetzen", "cancel" => "abbrechen", "replaced" => "ersetzt", -"with" => "mit", "undo" => "rückgängig machen", +"with" => "mit", "deleted" => "gelöscht", "generating ZIP-file, it may take some time." => "Erstelle ZIP-Datei. Dies kann eine Weile dauern.", "Unable to upload your file as it is a directory or has 0 bytes" => "Ihre Datei kann nicht hochgeladen werden, da sie ein Verzeichnis ist oder 0 Bytes hat.", @@ -35,6 +35,7 @@ "Enable ZIP-download" => "ZIP-Download aktivieren", "0 is unlimited" => "0 bedeutet unbegrenzt", "Maximum input size for ZIP files" => "Maximale Größe für ZIP-Dateien", +"Save" => "Speichern", "New" => "Neu", "Text file" => "Textdatei", "Folder" => "Ordner", diff --git a/apps/files/l10n/el.php b/apps/files/l10n/el.php index 3ab4b120949..9f311c6b28e 100644 --- a/apps/files/l10n/el.php +++ b/apps/files/l10n/el.php @@ -12,8 +12,8 @@ "replace" => "αντικατέστησε", "cancel" => "ακύρωση", "replaced" => "αντικαταστάθηκε", -"with" => "με", "undo" => "αναίρεση", +"with" => "με", "deleted" => "διαγράφηκε", "generating ZIP-file, it may take some time." => "παραγωγή αρχείου ZIP, ίσως διαρκέσει αρκετά.", "Unable to upload your file as it is a directory or has 0 bytes" => "Αδυναμία στην μεταφόρτωση του αρχείου σας αφού είναι φάκελος ή έχει 0 bytes", diff --git a/apps/files/l10n/eo.php b/apps/files/l10n/eo.php index acaf06e830c..bf17b97244c 100644 --- a/apps/files/l10n/eo.php +++ b/apps/files/l10n/eo.php @@ -12,8 +12,8 @@ "replace" => "anstataŭigi", "cancel" => "nuligi", "replaced" => "anstataŭigita", -"with" => "kun", "undo" => "malfari", +"with" => "kun", "deleted" => "forigita", "generating ZIP-file, it may take some time." => "generanta ZIP-dosiero, ĝi povas daŭri iom da tempo", "Unable to upload your file as it is a directory or has 0 bytes" => "Ne eblis alŝuti vian dosieron ĉar ĝi estas dosierujo aŭ havas 0 duumokojn", diff --git a/apps/files/l10n/es.php b/apps/files/l10n/es.php index 8e17b7931b0..c998c8cb57a 100644 --- a/apps/files/l10n/es.php +++ b/apps/files/l10n/es.php @@ -12,8 +12,8 @@ "replace" => "reemplazar", "cancel" => "cancelar", "replaced" => "reemplazado", -"with" => "con", "undo" => "deshacer", +"with" => "con", "deleted" => "borrado", "generating ZIP-file, it may take some time." => "generando un fichero ZIP, puede llevar un tiempo.", "Unable to upload your file as it is a directory or has 0 bytes" => "No ha sido posible subir tu archivo porque es un directorio o tiene 0 bytes", @@ -35,6 +35,7 @@ "Enable ZIP-download" => "Habilitar descarga en ZIP", "0 is unlimited" => "0 es ilimitado", "Maximum input size for ZIP files" => "Tamaño máximo para archivos ZIP de entrada", +"Save" => "Guardar", "New" => "Nuevo", "Text file" => "Archivo de texto", "Folder" => "Carpeta", diff --git a/apps/files/l10n/et_EE.php b/apps/files/l10n/et_EE.php index 956c5cc9115..0763745788b 100644 --- a/apps/files/l10n/et_EE.php +++ b/apps/files/l10n/et_EE.php @@ -12,8 +12,8 @@ "replace" => "asenda", "cancel" => "loobu", "replaced" => "asendatud", -"with" => "millega", "undo" => "tagasi", +"with" => "millega", "deleted" => "kustutatud", "generating ZIP-file, it may take some time." => "ZIP-faili loomine, see võib veidi aega võtta.", "Unable to upload your file as it is a directory or has 0 bytes" => "Sinu faili üleslaadimine ebaõnnestus, kuna see on kaust või selle suurus on 0 baiti", diff --git a/apps/files/l10n/eu.php b/apps/files/l10n/eu.php index d9c2689d1cd..3897a5580f3 100644 --- a/apps/files/l10n/eu.php +++ b/apps/files/l10n/eu.php @@ -12,8 +12,8 @@ "replace" => "ordeztu", "cancel" => "ezeztatu", "replaced" => "ordeztua", -"with" => "honekin", "undo" => "desegin", +"with" => "honekin", "deleted" => "ezabatuta", "generating ZIP-file, it may take some time." => "ZIP-fitxategia sortzen ari da, denbora har dezake", "Unable to upload your file as it is a directory or has 0 bytes" => "Ezin da zure fitxategia igo, karpeta bat da edo 0 byt ditu", diff --git a/apps/files/l10n/fa.php b/apps/files/l10n/fa.php index 4dac88fc542..e6ddd50f917 100644 --- a/apps/files/l10n/fa.php +++ b/apps/files/l10n/fa.php @@ -12,8 +12,8 @@ "replace" => "جایگزین", "cancel" => "لغو", "replaced" => "جایگزین‌شده", -"with" => "همراه", "undo" => "بازگشت", +"with" => "همراه", "deleted" => "حذف شده", "generating ZIP-file, it may take some time." => "در حال ساخت فایل فشرده ممکن است زمان زیادی به طول بیانجامد", "Unable to upload your file as it is a directory or has 0 bytes" => "ناتوان در بارگذاری یا فایل یک پوشه است یا 0بایت دارد", diff --git a/apps/files/l10n/fi_FI.php b/apps/files/l10n/fi_FI.php index 3ed56de6419..eaed70c6246 100644 --- a/apps/files/l10n/fi_FI.php +++ b/apps/files/l10n/fi_FI.php @@ -12,8 +12,8 @@ "replace" => "korvaa", "cancel" => "peru", "replaced" => "korvattu", -"with" => "käyttäen", "undo" => "kumoa", +"with" => "käyttäen", "deleted" => "poistettu", "generating ZIP-file, it may take some time." => "luodaan ZIP-tiedostoa, tämä saattaa kestää hetken.", "Unable to upload your file as it is a directory or has 0 bytes" => "Tiedoston lähetys epäonnistui, koska sen koko on 0 tavua tai kyseessä on kansio", @@ -35,6 +35,7 @@ "Enable ZIP-download" => "Ota ZIP-paketin lataaminen käytöön", "0 is unlimited" => "0 on rajoittamaton", "Maximum input size for ZIP files" => "ZIP-tiedostojen enimmäiskoko", +"Save" => "Tallenna", "New" => "Uusi", "Text file" => "Tekstitiedosto", "Folder" => "Kansio", diff --git a/apps/files/l10n/fr.php b/apps/files/l10n/fr.php index d0a4c020f38..0b7d226de74 100644 --- a/apps/files/l10n/fr.php +++ b/apps/files/l10n/fr.php @@ -12,8 +12,8 @@ "replace" => "remplacer", "cancel" => "annuler", "replaced" => "remplacé", -"with" => "avec", "undo" => "annuler", +"with" => "avec", "deleted" => "supprimé", "generating ZIP-file, it may take some time." => "Fichier ZIP en cours d'assemblage ; cela peut prendre du temps.", "Unable to upload your file as it is a directory or has 0 bytes" => "Impossible de charger vos fichiers car il s'agit d'un dossier ou le fichier fait 0 octet.", @@ -35,6 +35,7 @@ "Enable ZIP-download" => "Activer le téléchargement ZIP", "0 is unlimited" => "0 est illimité", "Maximum input size for ZIP files" => "Taille maximale pour les fichiers ZIP", +"Save" => "Sauvegarder", "New" => "Nouveau", "Text file" => "Fichier texte", "Folder" => "Dossier", diff --git a/apps/files/l10n/gl.php b/apps/files/l10n/gl.php index 3a36a23f0ca..67293de5cb7 100644 --- a/apps/files/l10n/gl.php +++ b/apps/files/l10n/gl.php @@ -12,8 +12,8 @@ "replace" => "substituír", "cancel" => "cancelar", "replaced" => "substituído", -"with" => "con", "undo" => "desfacer", +"with" => "con", "deleted" => "eliminado", "generating ZIP-file, it may take some time." => "xerando ficheiro ZIP, pode levar un anaco.", "Unable to upload your file as it is a directory or has 0 bytes" => "Non se puido subir o ficheiro pois ou é un directorio ou ten 0 bytes", diff --git a/apps/files/l10n/hr.php b/apps/files/l10n/hr.php index cb8eb4033cf..b05b7c568b4 100644 --- a/apps/files/l10n/hr.php +++ b/apps/files/l10n/hr.php @@ -12,8 +12,8 @@ "replace" => "zamjeni", "cancel" => "odustani", "replaced" => "zamjenjeno", -"with" => "sa", "undo" => "vrati", +"with" => "sa", "deleted" => "izbrisano", "generating ZIP-file, it may take some time." => "generiranje ZIP datoteke, ovo može potrajati.", "Unable to upload your file as it is a directory or has 0 bytes" => "Nemoguće poslati datoteku jer je prazna ili je direktorij", diff --git a/apps/files/l10n/hu_HU.php b/apps/files/l10n/hu_HU.php index 8d52765e93e..95b3c57ce11 100644 --- a/apps/files/l10n/hu_HU.php +++ b/apps/files/l10n/hu_HU.php @@ -12,8 +12,8 @@ "replace" => "cserél", "cancel" => "mégse", "replaced" => "kicserélve", -"with" => "-val/-vel", "undo" => "visszavon", +"with" => "-val/-vel", "deleted" => "törölve", "generating ZIP-file, it may take some time." => "ZIP-fájl generálása, ez eltarthat egy ideig.", "Unable to upload your file as it is a directory or has 0 bytes" => "Nem tölthető fel, mert mappa volt, vagy 0 byte méretű", diff --git a/apps/files/l10n/id.php b/apps/files/l10n/id.php index 399056bf278..351d0641388 100644 --- a/apps/files/l10n/id.php +++ b/apps/files/l10n/id.php @@ -12,8 +12,8 @@ "replace" => "mengganti", "cancel" => "batalkan", "replaced" => "diganti", -"with" => "dengan", "undo" => "batal dikerjakan", +"with" => "dengan", "deleted" => "dihapus", "generating ZIP-file, it may take some time." => "membuat berkas ZIP, ini mungkin memakan waktu.", "Unable to upload your file as it is a directory or has 0 bytes" => "Gagal mengunggah berkas anda karena berupa direktori atau mempunyai ukuran 0 byte", diff --git a/apps/files/l10n/it.php b/apps/files/l10n/it.php index 607969746cf..d0deb4f0f07 100644 --- a/apps/files/l10n/it.php +++ b/apps/files/l10n/it.php @@ -12,8 +12,8 @@ "replace" => "sostituisci", "cancel" => "annulla", "replaced" => "sostituito", -"with" => "con", "undo" => "annulla", +"with" => "con", "deleted" => "eliminati", "generating ZIP-file, it may take some time." => "creazione file ZIP, potrebbe richiedere del tempo.", "Unable to upload your file as it is a directory or has 0 bytes" => "Impossibile inviare il file poiché è una cartella o ha dimensione 0 byte", @@ -35,6 +35,7 @@ "Enable ZIP-download" => "Abilita scaricamento ZIP", "0 is unlimited" => "0 è illimitato", "Maximum input size for ZIP files" => "Dimensione massima per i file ZIP", +"Save" => "Salva", "New" => "Nuovo", "Text file" => "File di testo", "Folder" => "Cartella", diff --git a/apps/files/l10n/ja_JP.php b/apps/files/l10n/ja_JP.php index 6dbdf8215da..2de716fec8a 100644 --- a/apps/files/l10n/ja_JP.php +++ b/apps/files/l10n/ja_JP.php @@ -12,8 +12,8 @@ "replace" => "置き換え", "cancel" => "キャンセル", "replaced" => "置換:", -"with" => "←", "undo" => "元に戻す", +"with" => "←", "deleted" => "削除", "generating ZIP-file, it may take some time." => "ZIPファイルを生成中です、しばらくお待ちください。", "Unable to upload your file as it is a directory or has 0 bytes" => "アップロード使用としているファイルがディレクトリ、もしくはサイズが0バイトのため、アップロードできません。", @@ -35,6 +35,7 @@ "Enable ZIP-download" => "ZIP形式のダウンロードを有効にする", "0 is unlimited" => "0を指定した場合は無制限", "Maximum input size for ZIP files" => "ZIPファイルへの最大入力サイズ", +"Save" => "保存", "New" => "新規", "Text file" => "テキストファイル", "Folder" => "フォルダ", diff --git a/apps/files/l10n/ko.php b/apps/files/l10n/ko.php index dafd8597024..121be7d1abb 100644 --- a/apps/files/l10n/ko.php +++ b/apps/files/l10n/ko.php @@ -12,8 +12,8 @@ "replace" => "대체", "cancel" => "취소", "replaced" => "대체됨", -"with" => "와", "undo" => "복구", +"with" => "와", "deleted" => "삭제", "generating ZIP-file, it may take some time." => "ZIP파일 생성에 시간이 걸릴 수 있습니다.", "Unable to upload your file as it is a directory or has 0 bytes" => "이 파일은 디렉토리이거나 0 바이트이기 때문에 업로드 할 수 없습니다.", diff --git a/apps/files/l10n/lb.php b/apps/files/l10n/lb.php index 7c8244a8747..92acea1d117 100644 --- a/apps/files/l10n/lb.php +++ b/apps/files/l10n/lb.php @@ -12,8 +12,8 @@ "replace" => "ersetzen", "cancel" => "ofbriechen", "replaced" => "ersat", -"with" => "mat", "undo" => "réckgängeg man", +"with" => "mat", "deleted" => "geläscht", "generating ZIP-file, it may take some time." => "Et gëtt eng ZIP-File generéiert, dëst ka bëssen daueren.", "Unable to upload your file as it is a directory or has 0 bytes" => "Kann deng Datei net eroplueden well et en Dossier ass oder 0 byte grouss ass.", diff --git a/apps/files/l10n/lv.php b/apps/files/l10n/lv.php index 2ce800a065e..eedab2546c5 100644 --- a/apps/files/l10n/lv.php +++ b/apps/files/l10n/lv.php @@ -7,8 +7,8 @@ "replace" => "aizvietot", "cancel" => "atcelt", "replaced" => "aizvietots", -"with" => "ar", "undo" => "vienu soli atpakaļ", +"with" => "ar", "deleted" => "izdzests", "generating ZIP-file, it may take some time." => "lai uzģenerētu ZIP failu, kāds brīdis ir jāpagaida", "Unable to upload your file as it is a directory or has 0 bytes" => "Nav iespējams augšuplādēt jūsu failu, jo tāds jau eksistē vai arī failam nav izmēra (0 baiti)", diff --git a/apps/files/l10n/nb_NO.php b/apps/files/l10n/nb_NO.php index 92d0c23bfd2..4a747af2f3a 100644 --- a/apps/files/l10n/nb_NO.php +++ b/apps/files/l10n/nb_NO.php @@ -12,8 +12,8 @@ "replace" => "erstatt", "cancel" => "avbryt", "replaced" => "erstattet", -"with" => "med", "undo" => "angre", +"with" => "med", "deleted" => "slettet", "generating ZIP-file, it may take some time." => "opprettet ZIP-fil, dette kan ta litt tid", "Unable to upload your file as it is a directory or has 0 bytes" => "Kan ikke laste opp filen din siden det er en mappe eller den har 0 bytes", diff --git a/apps/files/l10n/nl.php b/apps/files/l10n/nl.php index fb7ea34b9b8..7acb15054c5 100644 --- a/apps/files/l10n/nl.php +++ b/apps/files/l10n/nl.php @@ -12,14 +12,15 @@ "replace" => "vervang", "cancel" => "annuleren", "replaced" => "vervangen", -"with" => "door", "undo" => "ongedaan maken", +"with" => "door", "deleted" => "verwijderd", "generating ZIP-file, it may take some time." => "aanmaken ZIP-file, dit kan enige tijd duren.", "Unable to upload your file as it is a directory or has 0 bytes" => "uploaden van de file mislukt, het is of een directory of de bestandsgrootte is 0 bytes", "Upload Error" => "Upload Fout", "Pending" => "Wachten", "Upload cancelled." => "Uploaden geannuleerd.", +"File upload is in progress. Leaving the page now will cancel the upload." => "Bestands upload is bezig. Wanneer de pagina nu verlaten wordt, stopt de upload.", "Invalid name, '/' is not allowed." => "Ongeldige naam, '/' is niet toegestaan.", "Size" => "Bestandsgrootte", "Modified" => "Laatst aangepast", @@ -34,6 +35,7 @@ "Enable ZIP-download" => "Zet ZIP-download aan", "0 is unlimited" => "0 is ongelimiteerd", "Maximum input size for ZIP files" => "Maximale grootte voor ZIP bestanden", +"Save" => "Opslaan", "New" => "Nieuw", "Text file" => "Tekstbestand", "Folder" => "Map", diff --git a/apps/files/l10n/pl.php b/apps/files/l10n/pl.php index a95c995d252..7fd31faefd7 100644 --- a/apps/files/l10n/pl.php +++ b/apps/files/l10n/pl.php @@ -12,8 +12,8 @@ "replace" => "zastap", "cancel" => "anuluj", "replaced" => "zastąpione", -"with" => "z", "undo" => "wróć", +"with" => "z", "deleted" => "skasuj", "generating ZIP-file, it may take some time." => "Generowanie pliku ZIP, może potrwać pewien czas.", "Unable to upload your file as it is a directory or has 0 bytes" => "Nie można wczytać pliku jeśli jest katalogiem lub ma 0 bajtów", @@ -35,6 +35,7 @@ "Enable ZIP-download" => "Włącz pobieranie ZIP-paczki", "0 is unlimited" => "0 jest nielimitowane", "Maximum input size for ZIP files" => "Maksymalna wielkość pliku wejściowego ZIP ", +"Save" => "Zapisz", "New" => "Nowy", "Text file" => "Plik tekstowy", "Folder" => "Katalog", diff --git a/apps/files/l10n/pt_BR.php b/apps/files/l10n/pt_BR.php index 09c4f2b0267..e9fe7747c13 100644 --- a/apps/files/l10n/pt_BR.php +++ b/apps/files/l10n/pt_BR.php @@ -12,8 +12,8 @@ "replace" => "substituir", "cancel" => "cancelar", "replaced" => "substituido ", -"with" => "com", "undo" => "desfazer", +"with" => "com", "deleted" => "deletado", "generating ZIP-file, it may take some time." => "gerando arquivo ZIP, isso pode levar um tempo.", "Unable to upload your file as it is a directory or has 0 bytes" => "Impossível enviar seus arquivo como diretório ou ele tem 0 bytes.", diff --git a/apps/files/l10n/pt_PT.php b/apps/files/l10n/pt_PT.php index e413d7cbe74..998c494a695 100644 --- a/apps/files/l10n/pt_PT.php +++ b/apps/files/l10n/pt_PT.php @@ -12,8 +12,8 @@ "replace" => "substituir", "cancel" => "cancelar", "replaced" => "substituido", -"with" => "com", "undo" => "desfazer", +"with" => "com", "deleted" => "apagado", "generating ZIP-file, it may take some time." => "a gerar o ficheiro ZIP, poderá demorar algum tempo.", "Unable to upload your file as it is a directory or has 0 bytes" => "Não é possivel fazer o upload do ficheiro devido a ser uma pasta ou ter 0 bytes", diff --git a/apps/files/l10n/ru.php b/apps/files/l10n/ru.php index 3976baeae38..6a76c254047 100644 --- a/apps/files/l10n/ru.php +++ b/apps/files/l10n/ru.php @@ -12,8 +12,8 @@ "replace" => "заменить", "cancel" => "отмена", "replaced" => "заменён", -"with" => "с", "undo" => "отмена", +"with" => "с", "deleted" => "удален", "generating ZIP-file, it may take some time." => "создание ZIP-файла, это может занять некоторое время.", "Unable to upload your file as it is a directory or has 0 bytes" => "Не удается загрузить файл размером 0 байт в каталог", diff --git a/apps/files/l10n/sl.php b/apps/files/l10n/sl.php index fa506795d9a..85da041629f 100644 --- a/apps/files/l10n/sl.php +++ b/apps/files/l10n/sl.php @@ -12,8 +12,8 @@ "replace" => "nadomesti", "cancel" => "ekliči", "replaced" => "nadomeščen", -"with" => "z", "undo" => "razveljavi", +"with" => "z", "deleted" => "izbrisano", "generating ZIP-file, it may take some time." => "Ustvarjam ZIP datoteko. To lahko traja nekaj časa.", "Unable to upload your file as it is a directory or has 0 bytes" => "Nalaganje ni mogoče, saj gre za mapo, ali pa ima datoteka velikost 0 bajtov.", @@ -35,6 +35,7 @@ "Enable ZIP-download" => "Omogoči ZIP-prejemanje", "0 is unlimited" => "0 je neskončno", "Maximum input size for ZIP files" => "Največja vhodna velikost za ZIP datoteke", +"Save" => "Shrani", "New" => "Nova", "Text file" => "Besedilna datoteka", "Folder" => "Mapa", diff --git a/apps/files/l10n/sv.php b/apps/files/l10n/sv.php index b76914b642e..f63039d9ee7 100644 --- a/apps/files/l10n/sv.php +++ b/apps/files/l10n/sv.php @@ -12,8 +12,8 @@ "replace" => "ersätt", "cancel" => "avbryt", "replaced" => "ersatt", -"with" => "med", "undo" => "ångra", +"with" => "med", "deleted" => "raderad", "generating ZIP-file, it may take some time." => "genererar ZIP-fil, det kan ta lite tid.", "Unable to upload your file as it is a directory or has 0 bytes" => "Kunde inte ladda upp dina filer eftersom det antingen är en mapp eller har 0 bytes.", @@ -35,6 +35,7 @@ "Enable ZIP-download" => "Aktivera ZIP-nerladdning", "0 is unlimited" => "0 är oändligt", "Maximum input size for ZIP files" => "Största tillåtna storlek för ZIP-filer", +"Save" => "Spara", "New" => "Ny", "Text file" => "Textfil", "Folder" => "Mapp", diff --git a/apps/files/l10n/th_TH.php b/apps/files/l10n/th_TH.php index d80ec2d877d..689871a11dd 100644 --- a/apps/files/l10n/th_TH.php +++ b/apps/files/l10n/th_TH.php @@ -12,8 +12,8 @@ "replace" => "แทนที่", "cancel" => "ยกเลิก", "replaced" => "แทนที่แล้ว", -"with" => "กับ", "undo" => "เลิกทำ", +"with" => "กับ", "deleted" => "ลบแล้ว", "generating ZIP-file, it may take some time." => "กำลังสร้างไฟล์บีบอัด ZIP อาจใช้เวลาสักครู่", "Unable to upload your file as it is a directory or has 0 bytes" => "ไม่สามารถอัพโหลดไฟล์ของคุณได้ เนื่องจากไฟล์ดังกล่าวเป็นไดเร็กทอรี่หรือมีขนาด 0 ไบต์", @@ -35,6 +35,7 @@ "Enable ZIP-download" => "อนุญาตให้ดาวน์โหลดเป็นไฟล์ ZIP ได้", "0 is unlimited" => "0 หมายถึงไม่จำกัด", "Maximum input size for ZIP files" => "ขนาดไฟล์ ZIP สูงสุด", +"Save" => "บันทึก", "New" => "อัพโหลดไฟล์ใหม่", "Text file" => "ไฟล์ข้อความ", "Folder" => "แฟ้มเอกสาร", diff --git a/apps/files/l10n/tr.php b/apps/files/l10n/tr.php index 630e3563adf..72e0e1427d3 100644 --- a/apps/files/l10n/tr.php +++ b/apps/files/l10n/tr.php @@ -12,8 +12,8 @@ "replace" => "değiştir", "cancel" => "iptal", "replaced" => "değiştirildi", -"with" => "ile", "undo" => "geri al", +"with" => "ile", "deleted" => "silindi", "generating ZIP-file, it may take some time." => "ZIP dosyası oluşturuluyor, biraz sürebilir.", "Unable to upload your file as it is a directory or has 0 bytes" => "Dosyanızın boyutu 0 byte olduğundan veya bir dizin olduğundan yüklenemedi", diff --git a/apps/files/l10n/zh_CN.GB2312.php b/apps/files/l10n/zh_CN.GB2312.php index 6703e6f9088..42063712eac 100644 --- a/apps/files/l10n/zh_CN.GB2312.php +++ b/apps/files/l10n/zh_CN.GB2312.php @@ -12,8 +12,8 @@ "replace" => "替换", "cancel" => "取消", "replaced" => "替换过了", -"with" => "随着", "undo" => "撤销", +"with" => "随着", "deleted" => "删除", "generating ZIP-file, it may take some time." => "正在生成ZIP文件,这可能需要点时间", "Unable to upload your file as it is a directory or has 0 bytes" => "不能上传你指定的文件,可能因为它是个文件夹或者大小为0", diff --git a/apps/files/l10n/zh_CN.php b/apps/files/l10n/zh_CN.php index dc783018848..f24db8f3cb1 100644 --- a/apps/files/l10n/zh_CN.php +++ b/apps/files/l10n/zh_CN.php @@ -12,8 +12,8 @@ "replace" => "替换", "cancel" => "取消", "replaced" => "已经替换", -"with" => "随着", "undo" => "撤销", +"with" => "随着", "deleted" => "已经删除", "generating ZIP-file, it may take some time." => "正在生成 ZIP 文件,可能需要一些时间", "Unable to upload your file as it is a directory or has 0 bytes" => "无法上传文件,因为它是一个目录或者大小为 0 字节", diff --git a/apps/files_encryption/l10n/cs_CZ.php b/apps/files_encryption/l10n/cs_CZ.php index 15cf7705709..9be2be98092 100644 --- a/apps/files_encryption/l10n/cs_CZ.php +++ b/apps/files_encryption/l10n/cs_CZ.php @@ -1,6 +1,6 @@ "Kryptování", -"Exclude the following file types from encryption" => "Při kryptování vynechat následující typy souborů", -"None" => "Žádný", -"Enable Encryption" => "Povolit kryptování" +"Encryption" => "Šifrování", +"Exclude the following file types from encryption" => "Při šifrování vynechat následující typy souborů", +"None" => "Žádné", +"Enable Encryption" => "Povolit šifrování" ); diff --git a/apps/files_encryption/l10n/sk_SK.php b/apps/files_encryption/l10n/sk_SK.php new file mode 100644 index 00000000000..598f1294f6e --- /dev/null +++ b/apps/files_encryption/l10n/sk_SK.php @@ -0,0 +1,6 @@ + "Šifrovanie", +"Exclude the following file types from encryption" => "Vynechať nasledujúce súbory pri šifrovaní", +"None" => "Žiadne", +"Enable Encryption" => "Zapnúť šifrovanie" +); diff --git a/apps/files_external/l10n/cs_CZ.php b/apps/files_external/l10n/cs_CZ.php index e8a38d86619..75899603349 100644 --- a/apps/files_external/l10n/cs_CZ.php +++ b/apps/files_external/l10n/cs_CZ.php @@ -1,18 +1,18 @@ "Externí úložiště", "Mount point" => "Přípojný bod", -"Backend" => "Končící", -"Configuration" => "Konfigurace", -"Options" => "Nastavení", +"Backend" => "Podpůrná vrstva", +"Configuration" => "Nastavení", +"Options" => "Možnosti", "Applicable" => "Platný", -"Add mount point" => "Přidat přípojný bod", +"Add mount point" => "Přidat bod připojení", "None set" => "Nenastaveno", "All Users" => "Všichni uživatelé", "Groups" => "Skupiny", "Users" => "Uživatelé", "Delete" => "Smazat", -"SSL root certificates" => "Kořenové SSL certifikáty", -"Import Root Certificate" => "Import kořenového certifikátu", -"Enable User External Storage" => "Zapnout uživatelské externí úložiště", -"Allow users to mount their own external storage" => "Povolit uživatelů připojit jejich vlastní externí úložiště" +"SSL root certificates" => "Kořenové certifikáty SSL", +"Import Root Certificate" => "Importovat kořenového certifikátu", +"Enable User External Storage" => "Zapnout externí uživatelské úložiště", +"Allow users to mount their own external storage" => "Povolit uživatelům připojení jejich vlastních externích úložišť" ); diff --git a/apps/files_external/l10n/fi_FI.php b/apps/files_external/l10n/fi_FI.php index 7dca49791e4..cea671368ed 100644 --- a/apps/files_external/l10n/fi_FI.php +++ b/apps/files_external/l10n/fi_FI.php @@ -4,6 +4,7 @@ "Backend" => "Taustaosa", "Configuration" => "Asetukset", "Options" => "Valinnat", +"Applicable" => "Sovellettavissa", "Add mount point" => "Lisää liitospiste", "None set" => "Ei asetettu", "All Users" => "Kaikki käyttäjät", @@ -12,5 +13,6 @@ "Delete" => "Poista", "SSL root certificates" => "SSL-juurivarmenteet", "Import Root Certificate" => "Tuo juurivarmenne", +"Enable User External Storage" => "Ota käyttöön ulkopuoliset tallennuspaikat", "Allow users to mount their own external storage" => "Salli käyttäjien liittää omia erillisiä tallennusvälineitä" ); diff --git a/apps/files_sharing/l10n/cs_CZ.php b/apps/files_sharing/l10n/cs_CZ.php index 4836f151099..e9185e979cd 100644 --- a/apps/files_sharing/l10n/cs_CZ.php +++ b/apps/files_sharing/l10n/cs_CZ.php @@ -1,4 +1,7 @@ "Heslo", -"Submit" => "Potvrdit" +"Submit" => "Odeslat", +"Download" => "Stáhnout", +"No preview available for" => "Náhled není dostupný pro", +"web services under your control" => "služby webu pod Vaší kontrolou" ); diff --git a/apps/files_sharing/l10n/nl.php b/apps/files_sharing/l10n/nl.php index a4da2723cae..2f732ed662f 100644 --- a/apps/files_sharing/l10n/nl.php +++ b/apps/files_sharing/l10n/nl.php @@ -1,5 +1,6 @@ "Passeerwoord", +"Password" => "Wachtwoord", +"Submit" => "Verzenden", "Download" => "Downloaden", "No preview available for" => "Geen voorbeeldweergave beschikbaar voor", "web services under your control" => "Webdiensten in eigen beheer" diff --git a/apps/files_versions/l10n/cs_CZ.php b/apps/files_versions/l10n/cs_CZ.php index 3297648fa30..4f33c1915f2 100644 --- a/apps/files_versions/l10n/cs_CZ.php +++ b/apps/files_versions/l10n/cs_CZ.php @@ -1,4 +1,6 @@ "Vypršení všech verzí", +"Expire all versions" => "Vypršet všechny verze", +"Versions" => "Verze", +"This will delete all existing backup versions of your files" => "Odstraní všechny existující zálohované verze Vašich souborů", "Enable Files Versioning" => "Povolit verzování souborů" ); diff --git a/apps/user_ldap/l10n/cs_CZ.php b/apps/user_ldap/l10n/cs_CZ.php index 31d9d7f0895..c90dc9ed568 100644 --- a/apps/user_ldap/l10n/cs_CZ.php +++ b/apps/user_ldap/l10n/cs_CZ.php @@ -1,37 +1,37 @@ "Hostitel", -"You can omit the protocol, except you require SSL. Then start with ldaps://" => "Nelze vynechat protokol vyžadující SSL. Začněte s ldaps://", -"Base DN" => "Base DN", -"You can specify Base DN for users and groups in the Advanced tab" => "V Rozšířeném nastavení můžete specifikovat pro své uživatele a skupiny element Base DN", -"User DN" => "DN uživatele", +"Host" => "Počítač", +"You can omit the protocol, except you require SSL. Then start with ldaps://" => "Můžete vynechat protokol, vyjma pokud požadujete SSL. Tehdy začněte s ldaps://", +"Base DN" => "Základní DN", +"You can specify Base DN for users and groups in the Advanced tab" => "V rozšířeném nastavení můžete určit základní DN pro uživatele a skupiny", +"User DN" => "Uživatelské DN", "The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." => "DN klentského uživatele ke kterému tvoříte vazbu, např. uid=agent,dc=example,dc=com. Pro anonymní přístup ponechte údaje DN and Heslo prázdné.", "Password" => "Heslo", -"For anonymous access, leave DN and Password empty." => "Pro anonymní přístup ponechte údaje DN and Heslo prázdné.", -"User Login Filter" => "Filtr uživatelských loginů", -"Defines the filter to apply, when login is attempted. %%uid replaces the username in the login action." => "Definuje filtr, který je aplikován v průběhu logování. %%uid nahrazuje uživatelské jméno během logování.", -"use %%uid placeholder, e.g. \"uid=%%uid\"" => "použijte %%uid pro rezervované místo, např. \"uid=%%uid\"", -"User List Filter" => "Filtr uživateslkých seznamů", -"Defines the filter to apply, when retrieving users." => "Defunije filtr, který je plaikován při návratu uživatelů.", -"without any placeholder, e.g. \"objectClass=person\"." => "bez rezervace místa, např. \"objectClass=person\".", -"Group Filter" => "Filtr skupiny", -"Defines the filter to apply, when retrieving groups." => "Definuje filtr, který je aplikován při návratu skupin", -"without any placeholder, e.g. \"objectClass=posixGroup\"." => "bez rezervace místa, např. \"objectClass=posixGroup\".", +"For anonymous access, leave DN and Password empty." => "Pro anonymní přístup, ponechte údaje DN and heslo prázdné.", +"User Login Filter" => "Filtr přihlášení uživatelů", +"Defines the filter to apply, when login is attempted. %%uid replaces the username in the login action." => "Určuje použitý filtr, při pokusu o přihlášení. %%uid nahrazuje uživatelské jméno v činnosti přihlášení.", +"use %%uid placeholder, e.g. \"uid=%%uid\"" => "použijte zástupný vzor %%uid, např. \"uid=%%uid\"", +"User List Filter" => "Filtr uživatelských seznamů", +"Defines the filter to apply, when retrieving users." => "Určuje použitý filtr, pro získávaní uživatelů.", +"without any placeholder, e.g. \"objectClass=person\"." => "bez zástupných znaků, např. \"objectClass=person\".", +"Group Filter" => "Filtr skupin", +"Defines the filter to apply, when retrieving groups." => "Určuje použitý filtr, pro získávaní skupin.", +"without any placeholder, e.g. \"objectClass=posixGroup\"." => "bez zástupných znaků, např. \"objectClass=posixGroup\".", "Port" => "Port", "Base User Tree" => "Základní uživatelský strom", "Base Group Tree" => "Základní skupinový strom", "Group-Member association" => "Asociace člena skupiny", -"Use TLS" => "Použijte TLS", -"Do not use it for SSL connections, it will fail." => "Nepoužívejte pro SSL připojení, připojení selže.", +"Use TLS" => "Použít TLS", +"Do not use it for SSL connections, it will fail." => "Nepoužívejte pro připojení pomocí SSL, připojení selže.", "Case insensitve LDAP server (Windows)" => "LDAP server nerozlišující velikost znaků (Windows)", -"Turn off SSL certificate validation." => "Vypněte ověřování SSL certifikátu", -"If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "pokud pracuje připojení pouze pokud je teto volba aktivní, importujte SSL certifikát LDAP serveru do Vašeho serveru ownCloud.", -"Not recommended, use for testing only." => "Není doporučeno, pouze pro účely testování.", +"Turn off SSL certificate validation." => "Vypnout ověřování SSL certifikátu.", +"If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Pokud připojení pracuje pouze s touto možností, tak importujte SSL certifikát SSL serveru do Vašeho serveru ownCloud", +"Not recommended, use for testing only." => "Není doporučeno, pouze pro testovací účely.", "User Display Name Field" => "Pole pro zobrazované jméno uživatele", "The LDAP attribute to use to generate the user`s ownCloud name." => "Atribut LDAP použitý k vytvoření jména uživatele ownCloud", "Group Display Name Field" => "Pole pro zobrazení jména skupiny", "The LDAP attribute to use to generate the groups`s ownCloud name." => "Atribut LDAP použitý k vytvoření jména skupiny ownCloud", -"in bytes" => "v bytech", -"in seconds. A change empties the cache." => "ve vteřinách. Změna vyprázdní dočasnou paměť.", -"Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Ponechte prázdné pro uživateslké jméno (výchozí). Jinak uveďte LDAP/AD paramerty", +"in bytes" => "v bajtech", +"in seconds. A change empties the cache." => "ve vteřinách. Změna vyprázdní vyrovnávací paměť.", +"Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Ponechte prázdné pro uživatelské jméno (výchozí). Jinak uveďte LDAP/AD parametr.", "Help" => "Nápověda" ); diff --git a/apps/user_ldap/l10n/fi_FI.php b/apps/user_ldap/l10n/fi_FI.php index 8bf3a024efb..6d0040868f8 100644 --- a/apps/user_ldap/l10n/fi_FI.php +++ b/apps/user_ldap/l10n/fi_FI.php @@ -8,6 +8,7 @@ "Password" => "Salasana", "For anonymous access, leave DN and Password empty." => "Jos haluat mahdollistaa anonyymin pääsyn, jätä DN ja Salasana tyhjäksi ", "User Login Filter" => "Login suodatus", +"Defines the filter to apply, when login is attempted. %%uid replaces the username in the login action." => "Määrittelee käytettävän suodattimen, kun sisäänkirjautumista yritetään. %%uid korvaa sisäänkirjautumisessa käyttäjätunnuksen.", "use %%uid placeholder, e.g. \"uid=%%uid\"" => "käytä %%uid paikanvaraajaa, ts. \"uid=%%uid\"", "User List Filter" => "Käyttäjien suodatus", "Defines the filter to apply, when retrieving users." => "Määrittelee käytettävän suodattimen, kun käyttäjiä haetaan. ", @@ -25,7 +26,12 @@ "Turn off SSL certificate validation." => "Poista käytöstä SSL-varmenteen vahvistus", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Jos yhteys toimii vain tällä valinnalla, siirrä LDAP-palvelimen SSL-varmenne ownCloud-palvelimellesi.", "Not recommended, use for testing only." => "Ei suositella, käytä vain testausta varten.", +"User Display Name Field" => "Käyttäjän näytettävän nimen kenttä", +"The LDAP attribute to use to generate the user`s ownCloud name." => "LDAP attribuutti, jota käytetään käyttäjän ownCloud käyttäjänimenä ", +"Group Display Name Field" => "Ryhmän \"näytettävä nimi\"-kenttä", +"The LDAP attribute to use to generate the groups`s ownCloud name." => "LDAP atribuutti, jota käytetään luomaan ryhmän ownCloud nimi", "in bytes" => "tavuissa", "in seconds. A change empties the cache." => "sekunneissa. Muutos tyhjentää välimuistin.", +"Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Jätä tyhjäksi käyttäjänimi (oletusasetus). Muutoin anna LDAP/AD atribuutti.", "Help" => "Ohje" ); diff --git a/core/l10n/ca.php b/core/l10n/ca.php index 52b6d68e47c..6c70c29e6cb 100644 --- a/core/l10n/ca.php +++ b/core/l10n/ca.php @@ -2,7 +2,6 @@ "Application name not provided." => "No s'ha facilitat cap nom per l'aplicació.", "No category to add?" => "No voleu afegir cap categoria?", "This category already exists: " => "Aquesta categoria ja existeix:", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "Arranjament", "January" => "Gener", "February" => "Febrer", diff --git a/core/l10n/cs_CZ.php b/core/l10n/cs_CZ.php index 7daeb52e631..6a4dad08cbd 100644 --- a/core/l10n/cs_CZ.php +++ b/core/l10n/cs_CZ.php @@ -1,8 +1,7 @@ "Jméno aplikace nezadáno.", +"Application name not provided." => "Nezadán název aplikace.", "No category to add?" => "Žádná kategorie k přidání?", -"This category already exists: " => "Tato kategorie již existuje:", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", +"This category already exists: " => "Tato kategorie již existuje: ", "Settings" => "Nastavení", "January" => "Leden", "February" => "Únor", @@ -19,14 +18,14 @@ "Cancel" => "Zrušit", "No" => "Ne", "Yes" => "Ano", -"Ok" => "Budiž", +"Ok" => "Ok", "No categories selected for deletion." => "Žádné kategorie nebyly vybrány ke smazání.", "Error" => "Chyba", -"ownCloud password reset" => "Reset hesla pro ownCloud", -"Use the following link to reset your password: {link}" => "Heslo vyresetujete použitím následujícího odkazu: {link}", -"You will receive a link to reset your password via Email." => "Bude Vám zaslán odkaz pro obnovu hesla", +"ownCloud password reset" => "Obnovení hesla pro ownCloud", +"Use the following link to reset your password: {link}" => "Heslo obnovíte použitím následujícího odkazu: {link}", +"You will receive a link to reset your password via Email." => "Bude Vám e-mailem zaslán odkaz pro obnovu hesla.", "Requested" => "Požadováno", -"Login failed!" => "Přihlášení selhalo", +"Login failed!" => "Přihlášení selhalo.", "Username" => "Uživatelské jméno", "Request reset" => "Vyžádat obnovu", "Your password was reset" => "Vaše heslo bylo obnoveno", @@ -36,29 +35,30 @@ "Personal" => "Osobní", "Users" => "Uživatelé", "Apps" => "Aplikace", -"Admin" => "Admin", +"Admin" => "Administrace", "Help" => "Nápověda", -"Access forbidden" => "Přístup odmítnut", +"Access forbidden" => "Přístup zakázán", "Cloud not found" => "Cloud nebyl nalezen", "Edit categories" => "Upravit kategorie", "Add" => "Přidat", "Create an admin account" => "Vytvořit účet správce", "Password" => "Heslo", -"Advanced" => "Rozšířené volby", -"Data folder" => "Datový adresář", -"Configure the database" => "Konfigurace databáze", +"Advanced" => "Pokročilé", +"Data folder" => "Složka s daty", +"Configure the database" => "Nastavit databázi", "will be used" => "bude použito", "Database user" => "Uživatel databáze", -"Database password" => "Heslo k databázi", +"Database password" => "Heslo databáze", "Database name" => "Název databáze", +"Database tablespace" => "Tabulkový prostor databáze", "Database host" => "Hostitel databáze", -"Finish setup" => "Dokončit instalaci", +"Finish setup" => "Dokončit nastavení", "web services under your control" => "webové služby pod Vaší kontrolou", "Log out" => "Odhlásit se", -"Lost your password?" => "Zapomenuté heslo?", +"Lost your password?" => "Ztratili jste své heslo?", "remember" => "zapamatovat si", -"Log in" => "Login", +"Log in" => "Přihlásit", "You are logged out." => "Jste odhlášeni.", -"prev" => "zpět", -"next" => "vpřed" +"prev" => "předchozí", +"next" => "následující" ); diff --git a/core/l10n/da.php b/core/l10n/da.php index 398ebdb670c..4bb953a4c5d 100644 --- a/core/l10n/da.php +++ b/core/l10n/da.php @@ -2,7 +2,6 @@ "Application name not provided." => "Applikationens navn ikke medsendt", "No category to add?" => "Ingen kategori at tilføje?", "This category already exists: " => "Denne kategori eksisterer allerede: ", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "Indstillinger", "January" => "Januar", "February" => "Februar", diff --git a/core/l10n/de.php b/core/l10n/de.php index fdd940ea39e..611c208fe4d 100644 --- a/core/l10n/de.php +++ b/core/l10n/de.php @@ -2,7 +2,6 @@ "Application name not provided." => "Applikationsname nicht angegeben", "No category to add?" => "Keine Kategorie hinzuzufügen?", "This category already exists: " => "Kategorie existiert bereits:", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "Einstellungen", "January" => "Januar", "February" => "Februar", diff --git a/core/l10n/el.php b/core/l10n/el.php index d8f32fb51e0..18a26f892c0 100644 --- a/core/l10n/el.php +++ b/core/l10n/el.php @@ -2,7 +2,6 @@ "Application name not provided." => "Δε προσδιορίστηκε όνομα εφαρμογής", "No category to add?" => "Δεν έχετε να προστέσθέσεται μια κα", "This category already exists: " => "Αυτή η κατηγορία υπάρχει ήδη", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "Ρυθμίσεις", "January" => "Ιανουάριος", "February" => "Φεβρουάριος", diff --git a/core/l10n/eo.php b/core/l10n/eo.php index f5e5ca9d0e1..930b20a30af 100644 --- a/core/l10n/eo.php +++ b/core/l10n/eo.php @@ -2,7 +2,6 @@ "Application name not provided." => "Nomo de aplikaĵo ne proviziiĝis.", "No category to add?" => "Ĉu neniu kategorio estas aldonota?", "This category already exists: " => "Ĉi tiu kategorio jam ekzistas: ", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "Agordo", "January" => "Januaro", "February" => "Februaro", diff --git a/core/l10n/es.php b/core/l10n/es.php index 3a7da551b60..21866d2ed67 100644 --- a/core/l10n/es.php +++ b/core/l10n/es.php @@ -2,7 +2,6 @@ "Application name not provided." => "Nombre de la aplicación no provisto.", "No category to add?" => "¿Ninguna categoría para añadir?", "This category already exists: " => "Esta categoría ya existe: ", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "Ajustes", "January" => "Enero", "February" => "Febrero", diff --git a/core/l10n/et_EE.php b/core/l10n/et_EE.php index 734021605ca..871cc25fee0 100644 --- a/core/l10n/et_EE.php +++ b/core/l10n/et_EE.php @@ -2,7 +2,6 @@ "Application name not provided." => "Rakenduse nime pole sisestatud.", "No category to add?" => "Pole kategooriat, mida lisada?", "This category already exists: " => "See kategooria on juba olemas: ", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "Seaded", "January" => "Jaanuar", "February" => "Veebruar", diff --git a/core/l10n/eu.php b/core/l10n/eu.php index 2e5a2c00e2a..9e9717dd8d8 100644 --- a/core/l10n/eu.php +++ b/core/l10n/eu.php @@ -2,7 +2,6 @@ "Application name not provided." => "Aplikazioaren izena falta da", "No category to add?" => "Ez dago gehitzeko kategoriarik?", "This category already exists: " => "Kategoria hau dagoeneko existitzen da:", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "Ezarpenak", "January" => "Urtarrila", "February" => "Otsaila", diff --git a/core/l10n/fa.php b/core/l10n/fa.php index 5fe98629ba2..7b7af3937b8 100644 --- a/core/l10n/fa.php +++ b/core/l10n/fa.php @@ -2,7 +2,6 @@ "Application name not provided." => "نام برنامه پیدا نشد", "No category to add?" => "آیا گروه دیگری برای افزودن ندارید", "This category already exists: " => "این گروه از قبل اضافه شده", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "تنظیمات", "January" => "ژانویه", "February" => "فبریه", diff --git a/core/l10n/fi_FI.php b/core/l10n/fi_FI.php index 34a69b6c643..d253ee9433a 100644 --- a/core/l10n/fi_FI.php +++ b/core/l10n/fi_FI.php @@ -2,7 +2,6 @@ "Application name not provided." => "Sovelluksen nimeä ei määritelty.", "No category to add?" => "Ei lisättävää luokkaa?", "This category already exists: " => "Tämä luokka on jo olemassa: ", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "Asetukset", "January" => "Tammikuu", "February" => "Helmikuu", diff --git a/core/l10n/fr.php b/core/l10n/fr.php index a5632180840..2904ebf48b2 100644 --- a/core/l10n/fr.php +++ b/core/l10n/fr.php @@ -2,7 +2,6 @@ "Application name not provided." => "Nom de l'application non fourni.", "No category to add?" => "Pas de catégorie à ajouter ?", "This category already exists: " => "Cette catégorie existe déjà : ", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "Paramètres", "January" => "janvier", "February" => "février", diff --git a/core/l10n/gl.php b/core/l10n/gl.php index eeff78826f8..af849712199 100644 --- a/core/l10n/gl.php +++ b/core/l10n/gl.php @@ -2,7 +2,6 @@ "Application name not provided." => "Non se indicou o nome do aplicativo.", "No category to add?" => "Sen categoría que engadir?", "This category already exists: " => "Esta categoría xa existe: ", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "Preferencias", "January" => "Xaneiro", "February" => "Febreiro", diff --git a/core/l10n/hr.php b/core/l10n/hr.php index d4e773afc1e..723cceb4d01 100644 --- a/core/l10n/hr.php +++ b/core/l10n/hr.php @@ -2,7 +2,6 @@ "Application name not provided." => "Ime aplikacije nije pribavljeno.", "No category to add?" => "Nemate kategorija koje možete dodati?", "This category already exists: " => "Ova kategorija već postoji: ", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "Postavke", "January" => "Siječanj", "February" => "Veljača", diff --git a/core/l10n/hu_HU.php b/core/l10n/hu_HU.php index dbfe2781d5f..a97c4cb8861 100644 --- a/core/l10n/hu_HU.php +++ b/core/l10n/hu_HU.php @@ -2,7 +2,6 @@ "Application name not provided." => "Alkalmazásnév hiányzik", "No category to add?" => "Nincs hozzáadandó kategória?", "This category already exists: " => "Ez a kategória már létezik", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "Beállítások", "January" => "Január", "February" => "Február", diff --git a/core/l10n/it.php b/core/l10n/it.php index b7f174e57a2..8d9ac21cd43 100644 --- a/core/l10n/it.php +++ b/core/l10n/it.php @@ -2,7 +2,6 @@ "Application name not provided." => "Nome dell'applicazione non fornito.", "No category to add?" => "Nessuna categoria da aggiungere?", "This category already exists: " => "Questa categoria esiste già: ", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "Impostazioni", "January" => "Gennaio", "February" => "Febbraio", diff --git a/core/l10n/ja_JP.php b/core/l10n/ja_JP.php index bef84b09d6c..62f5e16f3ca 100644 --- a/core/l10n/ja_JP.php +++ b/core/l10n/ja_JP.php @@ -2,7 +2,6 @@ "Application name not provided." => "アプリケーション名は提供されていません。", "No category to add?" => "追加するカテゴリはありませんか?", "This category already exists: " => "このカテゴリはすでに存在します: ", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "設定", "January" => "1月", "February" => "2月", diff --git a/core/l10n/ko.php b/core/l10n/ko.php index 5a330581ff1..9f82a79c43c 100644 --- a/core/l10n/ko.php +++ b/core/l10n/ko.php @@ -2,7 +2,6 @@ "Application name not provided." => "응용 프로그램의 이름이 규정되어 있지 않습니다. ", "No category to add?" => "추가할 카테고리가 없습니까?", "This category already exists: " => "이 카테고리는 이미 존재합니다:", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "설정", "January" => "1월", "February" => "2월", diff --git a/core/l10n/lt_LT.php b/core/l10n/lt_LT.php index f36f697b67c..0a3320351cf 100644 --- a/core/l10n/lt_LT.php +++ b/core/l10n/lt_LT.php @@ -2,7 +2,6 @@ "Application name not provided." => "Nepateiktas programos pavadinimas.", "No category to add?" => "Nepridėsite jokios kategorijos?", "This category already exists: " => "Tokia kategorija jau yra:", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "Nustatymai", "January" => "Sausis", "February" => "Vasaris", diff --git a/core/l10n/mk.php b/core/l10n/mk.php index af49a04f11c..3eea6cd58d1 100644 --- a/core/l10n/mk.php +++ b/core/l10n/mk.php @@ -2,7 +2,6 @@ "Application name not provided." => "Име за апликацијата не е доставено.", "No category to add?" => "Нема категорија да се додаде?", "This category already exists: " => "Оваа категорија веќе постои:", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "Поставки", "January" => "Јануари", "February" => "Февруари", diff --git a/core/l10n/ms_MY.php b/core/l10n/ms_MY.php index 25da7cd8622..c99c510be62 100644 --- a/core/l10n/ms_MY.php +++ b/core/l10n/ms_MY.php @@ -2,7 +2,6 @@ "Application name not provided." => "nama applikasi tidak disediakan", "No category to add?" => "Tiada kategori untuk di tambah?", "This category already exists: " => "Kategori ini telah wujud", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "Tetapan", "January" => "Januari", "February" => "Februari", diff --git a/core/l10n/nb_NO.php b/core/l10n/nb_NO.php index d30823b59f2..a8bfebb8a55 100644 --- a/core/l10n/nb_NO.php +++ b/core/l10n/nb_NO.php @@ -2,7 +2,6 @@ "Application name not provided." => "Applikasjonsnavn ikke angitt.", "No category to add?" => "Ingen kategorier å legge til?", "This category already exists: " => "Denne kategorien finnes allerede:", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "Innstillinger", "January" => "Januar", "February" => "Februar", diff --git a/core/l10n/nl.php b/core/l10n/nl.php index 2c020623d6c..3497381f74c 100644 --- a/core/l10n/nl.php +++ b/core/l10n/nl.php @@ -28,7 +28,7 @@ "Login failed!" => "Login mislukt!", "Username" => "Gebruikersnaam", "Request reset" => "Resetaanvraag", -"Your password was reset" => "Je wachtwoord is geweizigd", +"Your password was reset" => "Je wachtwoord is gewijzigd", "To login page" => "Naar de login-pagina", "New password" => "Nieuw wachtwoord", "Reset password" => "Reset wachtwoord", diff --git a/core/l10n/pl.php b/core/l10n/pl.php index 2751b851524..5f8752b69bb 100644 --- a/core/l10n/pl.php +++ b/core/l10n/pl.php @@ -2,7 +2,6 @@ "Application name not provided." => "Brak nazwy dla aplikacji", "No category to add?" => "Brak kategorii", "This category already exists: " => "Ta kategoria już istnieje", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "Ustawienia", "January" => "Styczeń", "February" => "Luty", diff --git a/core/l10n/pt_BR.php b/core/l10n/pt_BR.php index 46d601e6ebf..9ad2f3de53f 100644 --- a/core/l10n/pt_BR.php +++ b/core/l10n/pt_BR.php @@ -2,7 +2,6 @@ "Application name not provided." => "Nome da aplicação não foi fornecido.", "No category to add?" => "Nenhuma categoria adicionada?", "This category already exists: " => "Essa categoria já existe", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "Configurações", "January" => "Janeiro", "February" => "Fevereiro", diff --git a/core/l10n/pt_PT.php b/core/l10n/pt_PT.php index 29135f0d66d..4da513c1aec 100644 --- a/core/l10n/pt_PT.php +++ b/core/l10n/pt_PT.php @@ -2,7 +2,6 @@ "Application name not provided." => "Nome da aplicação não definida.", "No category to add?" => "Nenhuma categoria para adicionar?", "This category already exists: " => "Esta categoria já existe:", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "Definições", "January" => "Janeiro", "February" => "Fevereiro", diff --git a/core/l10n/ru.php b/core/l10n/ru.php index edb55577772..81b579aeb0d 100644 --- a/core/l10n/ru.php +++ b/core/l10n/ru.php @@ -2,7 +2,6 @@ "Application name not provided." => "Имя приложения не установлено.", "No category to add?" => "Нет категорий для добавления?", "This category already exists: " => "Эта категория уже существует: ", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "Настройки", "January" => "Январь", "February" => "Февраль", diff --git a/core/l10n/sk_SK.php b/core/l10n/sk_SK.php index b6bff1e0497..8c3339170d6 100644 --- a/core/l10n/sk_SK.php +++ b/core/l10n/sk_SK.php @@ -2,7 +2,6 @@ "Application name not provided." => "Meno aplikácie nezadané.", "No category to add?" => "Žiadna kategória pre pridanie?", "This category already exists: " => "Táto kategória už existuje:", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "Nastavenia", "January" => "Január", "February" => "Február", diff --git a/core/l10n/sl.php b/core/l10n/sl.php index ad412314319..b7850c28619 100644 --- a/core/l10n/sl.php +++ b/core/l10n/sl.php @@ -2,7 +2,6 @@ "Application name not provided." => "Ime aplikacije ni bilo določeno.", "No category to add?" => "Ni kategorije za dodajanje?", "This category already exists: " => "Ta kategorija že obstaja:", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "Nastavitve", "January" => "januar", "February" => "februar", diff --git a/core/l10n/sv.php b/core/l10n/sv.php index f459272eba0..6b075f0aaf2 100644 --- a/core/l10n/sv.php +++ b/core/l10n/sv.php @@ -2,7 +2,6 @@ "Application name not provided." => "Programnamn har inte angetts.", "No category to add?" => "Ingen kategori att lägga till?", "This category already exists: " => "Denna kategori finns redan:", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "Inställningar", "January" => "Januari", "February" => "Februari", diff --git a/core/l10n/th_TH.php b/core/l10n/th_TH.php index 4bfdb524fe0..fd25105f150 100644 --- a/core/l10n/th_TH.php +++ b/core/l10n/th_TH.php @@ -2,7 +2,6 @@ "Application name not provided." => "ยังไม่ได้ตั้งชื่อแอพพลิเคชั่น", "No category to add?" => "ไม่มีหมวดหมู่ที่ต้องการเพิ่ม?", "This category already exists: " => "หมวดหมู่นี้มีอยู่แล้ว: ", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "ตั้งค่า", "January" => "มกราคม", "February" => "กุมภาพันธ์", diff --git a/core/l10n/tr.php b/core/l10n/tr.php index a34443e8dd7..7d6d4a33a6d 100644 --- a/core/l10n/tr.php +++ b/core/l10n/tr.php @@ -2,7 +2,6 @@ "Application name not provided." => "Uygulama adı verilmedi.", "No category to add?" => "Eklenecek kategori yok?", "This category already exists: " => "Bu kategori zaten mevcut: ", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "Ayarlar", "January" => "Ocak", "February" => "Şubat", diff --git a/core/l10n/vi.php b/core/l10n/vi.php index 4a4c97032fd..de4764c3a54 100644 --- a/core/l10n/vi.php +++ b/core/l10n/vi.php @@ -2,7 +2,6 @@ "Application name not provided." => "Tên ứng dụng không tồn tại", "No category to add?" => "Không có danh mục được thêm?", "This category already exists: " => "Danh mục này đã được tạo :", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "Cài đặt", "January" => "Tháng 1", "February" => "Tháng 2", diff --git a/core/l10n/zh_CN.GB2312.php b/core/l10n/zh_CN.GB2312.php index 770d2b6772d..58104df3997 100644 --- a/core/l10n/zh_CN.GB2312.php +++ b/core/l10n/zh_CN.GB2312.php @@ -2,7 +2,6 @@ "Application name not provided." => "应用程序并没有被提供.", "No category to add?" => "没有分类添加了?", "This category already exists: " => "这个分类已经存在了:", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "设置", "January" => "一月", "February" => "二月", diff --git a/core/l10n/zh_TW.php b/core/l10n/zh_TW.php index 753dde0a99c..57a087fae92 100644 --- a/core/l10n/zh_TW.php +++ b/core/l10n/zh_TW.php @@ -2,7 +2,6 @@ "Application name not provided." => "未提供應用程式名稱", "No category to add?" => "無分類添加?", "This category already exists: " => "此分類已經存在:", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "設定", "January" => "一月", "February" => "二月", diff --git a/l10n/af/core.po b/l10n/af/core.po index ea01e99a967..437c1e26953 100644 --- a/l10n/af/core.po +++ b/l10n/af/core.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (http://www.transifex.com/projects/p/owncloud/language/af/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: af\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -29,59 +29,55 @@ msgstr "" msgid "This category already exists: " msgstr "" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "" @@ -113,7 +109,7 @@ msgstr "" msgid "ownCloud password reset" msgstr "" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "" diff --git a/l10n/af/files.po b/l10n/af/files.po index f93921f751c..31f2a00b0fa 100644 --- a/l10n/af/files.po +++ b/l10n/af/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (http://www.transifex.com/projects/p/owncloud/language/af/)\n" "MIME-Version: 1.0\n" @@ -55,31 +55,35 @@ msgstr "" msgid "Delete" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "" -#: js/filelist.js:195 -msgid "with" -msgstr "" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "" + +#: js/filelist.js:271 msgid "deleted" msgstr "" @@ -95,44 +99,44 @@ msgstr "" msgid "Upload Error" msgstr "" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "" -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "" diff --git a/l10n/ar/core.po b/l10n/ar/core.po index 090905898dc..febb0d7a637 100644 --- a/l10n/ar/core.po +++ b/l10n/ar/core.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "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" "Content-Transfer-Encoding: 8bit\n" "Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5\n" +"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" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -30,59 +30,55 @@ msgstr "" msgid "This category already exists: " msgstr "" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "تعديلات" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "" @@ -114,7 +110,7 @@ msgstr "" msgid "ownCloud password reset" msgstr "" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "استخدم هذه الوصلة لاسترجاع كلمة السر: {link}" diff --git a/l10n/ar/files.po b/l10n/ar/files.po index f0fdb23c940..52370a91d08 100644 --- a/l10n/ar/files.po +++ b/l10n/ar/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+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" @@ -56,31 +56,35 @@ msgstr "الملفات" msgid "Delete" msgstr "محذوف" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "" -#: js/filelist.js:195 -msgid "with" -msgstr "" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "" + +#: js/filelist.js:271 msgid "deleted" msgstr "" @@ -96,44 +100,44 @@ msgstr "" msgid "Upload Error" msgstr "" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "" -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "حجم" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "معدل" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "" diff --git a/l10n/ar_SA/core.po b/l10n/ar_SA/core.po index c5b0902e925..c251db4e530 100644 --- a/l10n/ar_SA/core.po +++ b/l10n/ar_SA/core.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (Saudi Arabia) (http://www.transifex.com/projects/p/owncloud/language/ar_SA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ar_SA\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -29,59 +29,55 @@ msgstr "" msgid "This category already exists: " msgstr "" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "" @@ -113,7 +109,7 @@ msgstr "" msgid "ownCloud password reset" msgstr "" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "" diff --git a/l10n/ar_SA/files.po b/l10n/ar_SA/files.po index 7f04256bac7..f5fadbff02b 100644 --- a/l10n/ar_SA/files.po +++ b/l10n/ar_SA/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (Saudi Arabia) (http://www.transifex.com/projects/p/owncloud/language/ar_SA/)\n" "MIME-Version: 1.0\n" @@ -55,31 +55,35 @@ msgstr "" msgid "Delete" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "" -#: js/filelist.js:195 -msgid "with" -msgstr "" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "" + +#: js/filelist.js:271 msgid "deleted" msgstr "" @@ -95,44 +99,44 @@ msgstr "" msgid "Upload Error" msgstr "" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "" -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "" diff --git a/l10n/bg_BG/core.po b/l10n/bg_BG/core.po index f4673d7f749..681b5dd14b6 100644 --- a/l10n/bg_BG/core.po +++ b/l10n/bg_BG/core.po @@ -11,15 +11,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: bg_BG\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -33,59 +33,55 @@ msgstr "" msgid "This category already exists: " msgstr "Категорията вече съществува:" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Настройки" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "Януари" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "Февруари" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "Март" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "Април" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "Май" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "Юни" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "Юли" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "Август" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "Септември" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "Октомври" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "Ноември" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "Декември" @@ -117,7 +113,7 @@ msgstr "Грешка" msgid "ownCloud password reset" msgstr "" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "" diff --git a/l10n/bg_BG/files.po b/l10n/bg_BG/files.po index 9eb5ac463a2..c51de878e98 100644 --- a/l10n/bg_BG/files.po +++ b/l10n/bg_BG/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -57,31 +57,35 @@ msgstr "Файлове" msgid "Delete" msgstr "Изтриване" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "" -#: js/filelist.js:195 -msgid "with" -msgstr "" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "" + +#: js/filelist.js:271 msgid "deleted" msgstr "" @@ -97,44 +101,44 @@ msgstr "" msgid "Upload Error" msgstr "Грешка при качване" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "Качването е отменено." -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "Неправилно име – \"/\" не е позволено." -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Размер" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Променено" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "папка" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "папки" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "файл" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "" diff --git a/l10n/ca/core.po b/l10n/ca/core.po index 821e89c924c..6366450bdd3 100644 --- a/l10n/ca/core.po +++ b/l10n/ca/core.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-08-31 11:29+0000\n" -"Last-Translator: rogerc \n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" +"Last-Translator: I Robot \n" "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" "Content-Transfer-Encoding: 8bit\n" "Language: ca\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -31,59 +31,55 @@ msgstr "No voleu afegir cap categoria?" msgid "This category already exists: " msgstr "Aquesta categoria ja existeix:" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Arranjament" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "Gener" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "Febrer" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "Març" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "Abril" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "Maig" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "Juny" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "Juliol" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "Agost" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "Setembre" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "Octubre" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "Novembre" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "Desembre" @@ -115,7 +111,7 @@ msgstr "Error" msgid "ownCloud password reset" msgstr "estableix de nou la contrasenya Owncloud" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Useu l'enllaç següent per restablir la contrasenya: {link}" diff --git a/l10n/ca/files.po b/l10n/ca/files.po index 93e8a182607..baaa56b4ebe 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/files.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. # , 2012. # , 2011-2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+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" @@ -57,31 +58,35 @@ msgstr "Fitxers" msgid "Delete" msgstr "Suprimeix" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "ja existeix" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "substitueix" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "cancel·la" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "substituït" -#: js/filelist.js:195 -msgid "with" -msgstr "per" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "desfés" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "per" + +#: js/filelist.js:271 msgid "deleted" msgstr "esborrat" @@ -97,44 +102,44 @@ msgstr "No es pot pujar el fitxer perquè és una carpeta o té 0 bytes" msgid "Upload Error" msgstr "Error en la pujada" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "Pendents" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "La pujada s'ha cancel·lat." -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Hi ha una pujada en curs. Si abandoneu la pàgina la pujada es cancel·larà." -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "El nom no és vàlid, no es permet '/'." -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Mida" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Modificat" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "carpeta" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "carpetes" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "fitxer" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "fitxers" @@ -168,7 +173,7 @@ msgstr "Mida màxima d'entrada per fitxers ZIP" #: templates/admin.php:14 msgid "Save" -msgstr "" +msgstr "Desar" #: templates/index.php:7 msgid "New" diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index baded31fd54..28539a5b19a 100644 --- a/l10n/ca/settings.po +++ b/l10n/ca/settings.po @@ -3,15 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. # , 2012. # , 2011-2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 11:42+0000\n" +"Last-Translator: bury1000 \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" @@ -67,12 +68,12 @@ msgstr "S'ha canviat l'idioma" #: ajax/togglegroups.php:25 #, php-format msgid "Unable to add user to group %s" -msgstr "" +msgstr "No es pot afegir l'usuari al grup %s" #: ajax/togglegroups.php:31 #, php-format msgid "Unable to remove user from group %s" -msgstr "" +msgstr "No es pot eliminar l'usuari del grup %s" #: js/apps.js:18 msgid "Error" @@ -191,7 +192,7 @@ msgstr "Mireu la pàgina d'aplicacions a apps.owncloud.com" #: templates/apps.php:30 msgid "-licensed by " -msgstr "" +msgstr "-propietat de " #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po index 3db3e84583e..c1d1ba2da07 100644 --- a/l10n/cs_CZ/core.po +++ b/l10n/cs_CZ/core.po @@ -4,25 +4,26 @@ # # Translators: # Jan Krejci , 2011. -# Martin , 2011, 2012. +# Martin , 2011-2012. # Michal Hrušecký , 2012. +# Tomáš Chvátal , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "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" "Content-Transfer-Encoding: 8bit\n" "Language: cs_CZ\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." -msgstr "Jméno aplikace nezadáno." +msgstr "Nezadán název aplikace." #: ajax/vcategories/add.php:29 msgid "No category to add?" @@ -30,61 +31,57 @@ msgstr "Žádná kategorie k přidání?" #: ajax/vcategories/add.php:36 msgid "This category already exists: " -msgstr "Tato kategorie již existuje:" +msgstr "Tato kategorie již existuje: " -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Nastavení" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "Leden" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "Únor" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "Březen" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "Duben" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "Květen" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "Červen" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "Červenec" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "Srpen" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "Září" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "Říjen" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "Listopad" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "Prosinec" @@ -102,7 +99,7 @@ msgstr "Ano" #: js/oc-dialogs.js:177 msgid "Ok" -msgstr "Budiž" +msgstr "Ok" #: js/oc-vcategories.js:68 msgid "No categories selected for deletion." @@ -114,15 +111,15 @@ msgstr "Chyba" #: lostpassword/index.php:26 msgid "ownCloud password reset" -msgstr "Reset hesla pro ownCloud" +msgstr "Obnovení hesla pro ownCloud" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" -msgstr "Heslo vyresetujete použitím následujícího odkazu: {link}" +msgstr "Heslo obnovíte použitím následujícího odkazu: {link}" #: lostpassword/templates/lostpassword.php:3 msgid "You will receive a link to reset your password via Email." -msgstr "Bude Vám zaslán odkaz pro obnovu hesla" +msgstr "Bude Vám e-mailem zaslán odkaz pro obnovu hesla." #: lostpassword/templates/lostpassword.php:5 msgid "Requested" @@ -130,7 +127,7 @@ msgstr "Požadováno" #: lostpassword/templates/lostpassword.php:8 msgid "Login failed!" -msgstr "Přihlášení selhalo" +msgstr "Přihlášení selhalo." #: lostpassword/templates/lostpassword.php:11 templates/installation.php:26 #: templates/login.php:9 @@ -171,7 +168,7 @@ msgstr "Aplikace" #: strings.php:8 msgid "Admin" -msgstr "Admin" +msgstr "Administrace" #: strings.php:9 msgid "Help" @@ -179,7 +176,7 @@ msgstr "Nápověda" #: templates/403.php:12 msgid "Access forbidden" -msgstr "Přístup odmítnut" +msgstr "Přístup zakázán" #: templates/404.php:12 msgid "Cloud not found" @@ -203,15 +200,15 @@ msgstr "Heslo" #: templates/installation.php:36 msgid "Advanced" -msgstr "Rozšířené volby" +msgstr "Pokročilé" #: templates/installation.php:38 msgid "Data folder" -msgstr "Datový adresář" +msgstr "Složka s daty" #: templates/installation.php:45 msgid "Configure the database" -msgstr "Konfigurace databáze" +msgstr "Nastavit databázi" #: templates/installation.php:50 templates/installation.php:61 #: templates/installation.php:71 templates/installation.php:81 @@ -224,7 +221,7 @@ msgstr "Uživatel databáze" #: templates/installation.php:97 msgid "Database password" -msgstr "Heslo k databázi" +msgstr "Heslo databáze" #: templates/installation.php:101 msgid "Database name" @@ -232,7 +229,7 @@ msgstr "Název databáze" #: templates/installation.php:109 msgid "Database tablespace" -msgstr "" +msgstr "Tabulkový prostor databáze" #: templates/installation.php:115 msgid "Database host" @@ -240,7 +237,7 @@ msgstr "Hostitel databáze" #: templates/installation.php:120 msgid "Finish setup" -msgstr "Dokončit instalaci" +msgstr "Dokončit nastavení" #: templates/layout.guest.php:42 msgid "web services under your control" @@ -252,7 +249,7 @@ msgstr "Odhlásit se" #: templates/login.php:6 msgid "Lost your password?" -msgstr "Zapomenuté heslo?" +msgstr "Ztratili jste své heslo?" #: templates/login.php:17 msgid "remember" @@ -260,7 +257,7 @@ msgstr "zapamatovat si" #: templates/login.php:18 msgid "Log in" -msgstr "Login" +msgstr "Přihlásit" #: templates/logout.php:1 msgid "You are logged out." @@ -268,8 +265,8 @@ msgstr "Jste odhlášeni." #: templates/part.pagenavi.php:3 msgid "prev" -msgstr "zpět" +msgstr "předchozí" #: templates/part.pagenavi.php:20 msgid "next" -msgstr "vpřed" +msgstr "následující" diff --git a/l10n/cs_CZ/files.po b/l10n/cs_CZ/files.po index 2e9b7e78c13..53a6691385e 100644 --- a/l10n/cs_CZ/files.po +++ b/l10n/cs_CZ/files.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Martin , 2011, 2012. +# Martin , 2011-2012. # Michal Hrušecký , 2012. +# Tomáš Chvátal , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+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" @@ -25,13 +26,13 @@ msgstr "Soubor byl odeslán úspěšně" #: ajax/upload.php:21 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" -msgstr "Odeslaný soubor přesáhl velikostí parametr upload_max_filesize v php.ini" +msgstr "Odeslaný soubor přesáhl svou velikostí parametr upload_max_filesize v php.ini" #: ajax/upload.php:22 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" -msgstr "Odeslaný soubor přesáhl velikostí parametr MAX_FILE_SIZE specifikovaný v HTML formuláři" +msgstr "Odeslaný soubor přesáhl svou velikostí parametr MAX_FILE_SIZE specifikovaný v formuláři HTML" #: ajax/upload.php:23 msgid "The uploaded file was only partially uploaded" @@ -39,15 +40,15 @@ msgstr "Soubor byl odeslán pouze částečně" #: ajax/upload.php:24 msgid "No file was uploaded" -msgstr "Soubor nebyl odeslán" +msgstr "Žádný soubor nebyl odeslán" #: ajax/upload.php:25 msgid "Missing a temporary folder" -msgstr "Chybí adresář pro sočasné soubory" +msgstr "Chybí adresář pro dočasné soubory" #: ajax/upload.php:26 msgid "Failed to write to disk" -msgstr "Zápis na disk se nezdařil" +msgstr "Zápis na disk selhal" #: appinfo/app.php:6 msgid "Files" @@ -55,104 +56,108 @@ msgstr "Soubory" #: js/fileactions.js:106 templates/index.php:56 msgid "Delete" -msgstr "Vymazat" +msgstr "Smazat" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "již existuje" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" -msgstr "zaměnit" +msgstr "nahradit" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" -msgstr "storno" +msgstr "zrušit" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" -msgstr "zaměněno" +msgstr "nahrazeno" -#: js/filelist.js:195 -msgid "with" -msgstr "s" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "zpět" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "s" + +#: js/filelist.js:271 msgid "deleted" msgstr "smazáno" #: js/files.js:179 msgid "generating ZIP-file, it may take some time." -msgstr "generuji ZIP soubor, může to chvíli trvat" +msgstr "generuji ZIP soubor, může to nějakou dobu trvat." #: js/files.js:208 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "Nemohu nahrát váš soubor neboť to je adresář a nebo má nulovou délku." +msgstr "Nelze odeslat Váš soubor, protože je to adresář nebo má velikost 0 bajtů" #: js/files.js:208 msgid "Upload Error" -msgstr "Chyba při nahrávání" +msgstr "Chyba odesílání" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" -msgstr "Očekává se" +msgstr "Čekající" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." -msgstr "Nahrávání zrušeno" +msgstr "Odesílání zrušeno." -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "" +msgstr "Probíhá odesílání souboru. Opuštění stránky vyústí ve zrušení nahrávání." -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." -msgstr "Špatné jméno, znak '/' není povolen" +msgstr "Neplatný název, znak '/' není povolen" -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Velikost" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Změněno" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" -msgstr "adresář" +msgstr "složka" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" -msgstr "adresáře" +msgstr "složky" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "soubor" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "soubory" #: templates/admin.php:5 msgid "File handling" -msgstr "Nastavení chování k souborům" +msgstr "Zacházení se soubory" #: templates/admin.php:7 msgid "Maximum upload size" -msgstr "Maximální velikost ukládaných souborů" +msgstr "Maximální velikost pro odesílání" #: templates/admin.php:7 msgid "max. possible: " -msgstr "největší možná:" +msgstr "největší možná: " #: templates/admin.php:9 msgid "Needed for multi-file and folder downloads." -msgstr "Potřeba pro vícesoborvé stahování a stahování adresářů" +msgstr "Potřebné pro více-souborové stahování a stahování složek." #: templates/admin.php:9 msgid "Enable ZIP-download" @@ -168,7 +173,7 @@ msgstr "Maximální velikost vstupu pro ZIP soubory" #: templates/admin.php:14 msgid "Save" -msgstr "" +msgstr "Uložit" #: templates/index.php:7 msgid "New" @@ -180,7 +185,7 @@ msgstr "Textový soubor" #: templates/index.php:10 msgid "Folder" -msgstr "Adresář" +msgstr "Složka" #: templates/index.php:11 msgid "From url" @@ -188,15 +193,15 @@ msgstr "Z url" #: templates/index.php:21 msgid "Upload" -msgstr "Uložit" +msgstr "Odeslat" #: templates/index.php:27 msgid "Cancel upload" -msgstr "Zrušit upload" +msgstr "Zrušit odesílání" #: templates/index.php:39 msgid "Nothing in here. Upload something!" -msgstr "Žádný obsah. Uložte si něco!" +msgstr "Žádný obsah. Nahrajte něco." #: templates/index.php:47 msgid "Name" @@ -212,13 +217,13 @@ msgstr "Stáhnout" #: templates/index.php:64 msgid "Upload too large" -msgstr "Příliš velký soubor" +msgstr "Odeslaný soubor je příliš velký" #: templates/index.php:66 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." -msgstr "Soubory, které se snažíte uložit, překračují maximální velikosti uploadu na tomto serveru." +msgstr "Soubory, které se snažíte odeslat, překračují limit velikosti odesílání na tomto serveru." #: templates/index.php:71 msgid "Files are being scanned, please wait." diff --git a/l10n/cs_CZ/files_encryption.po b/l10n/cs_CZ/files_encryption.po index 4055cc18fcc..96298cc2205 100644 --- a/l10n/cs_CZ/files_encryption.po +++ b/l10n/cs_CZ/files_encryption.po @@ -4,32 +4,33 @@ # # Translators: # Martin , 2012. +# Tomáš Chvátal , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-16 02:04+0200\n" -"PO-Revision-Date: 2012-08-15 10:33+0000\n" -"Last-Translator: Martin \n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 13:37+0000\n" +"Last-Translator: Tomáš Chvátal \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: cs_CZ\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #: templates/settings.php:3 msgid "Encryption" -msgstr "Kryptování" +msgstr "Šifrování" #: templates/settings.php:4 msgid "Exclude the following file types from encryption" -msgstr "Při kryptování vynechat následující typy souborů" +msgstr "Při šifrování vynechat následující typy souborů" #: templates/settings.php:5 msgid "None" -msgstr "Žádný" +msgstr "Žádné" #: templates/settings.php:10 msgid "Enable Encryption" -msgstr "Povolit kryptování" +msgstr "Povolit šifrování" diff --git a/l10n/cs_CZ/files_external.po b/l10n/cs_CZ/files_external.po index 8c21e144831..90f40c4ffc7 100644 --- a/l10n/cs_CZ/files_external.po +++ b/l10n/cs_CZ/files_external.po @@ -6,19 +6,20 @@ # Jan Krejci , 2012. # Martin , 2012. # Michal Hrušecký , 2012. +# Tomáš Chvátal , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-29 02:01+0200\n" -"PO-Revision-Date: 2012-08-28 19:11+0000\n" -"Last-Translator: Martin \n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 13:37+0000\n" +"Last-Translator: Tomáš Chvátal \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: cs_CZ\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #: templates/settings.php:3 msgid "External Storage" @@ -30,15 +31,15 @@ msgstr "Přípojný bod" #: templates/settings.php:8 msgid "Backend" -msgstr "Končící" +msgstr "Podpůrná vrstva" #: templates/settings.php:9 msgid "Configuration" -msgstr "Konfigurace" +msgstr "Nastavení" #: templates/settings.php:10 msgid "Options" -msgstr "Nastavení" +msgstr "Možnosti" #: templates/settings.php:11 msgid "Applicable" @@ -46,7 +47,7 @@ msgstr "Platný" #: templates/settings.php:23 msgid "Add mount point" -msgstr "Přidat přípojný bod" +msgstr "Přidat bod připojení" #: templates/settings.php:54 templates/settings.php:62 msgid "None set" @@ -70,16 +71,16 @@ msgstr "Smazat" #: templates/settings.php:88 msgid "SSL root certificates" -msgstr "Kořenové SSL certifikáty" +msgstr "Kořenové certifikáty SSL" #: templates/settings.php:102 msgid "Import Root Certificate" -msgstr "Import kořenového certifikátu" +msgstr "Importovat kořenového certifikátu" #: templates/settings.php:108 msgid "Enable User External Storage" -msgstr "Zapnout uživatelské externí úložiště" +msgstr "Zapnout externí uživatelské úložiště" #: templates/settings.php:109 msgid "Allow users to mount their own external storage" -msgstr "Povolit uživatelů připojit jejich vlastní externí úložiště" +msgstr "Povolit uživatelům připojení jejich vlastních externích úložišť" diff --git a/l10n/cs_CZ/files_sharing.po b/l10n/cs_CZ/files_sharing.po index 1927da6f119..d4c56e76356 100644 --- a/l10n/cs_CZ/files_sharing.po +++ b/l10n/cs_CZ/files_sharing.po @@ -5,19 +5,20 @@ # Translators: # Martin , 2012. # Michal Hrušecký , 2012. +# Tomáš Chvátal , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 13:37+0000\n" +"Last-Translator: Tomáš Chvátal \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: cs_CZ\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #: templates/authenticate.php:4 msgid "Password" @@ -25,16 +26,16 @@ msgstr "Heslo" #: templates/authenticate.php:6 msgid "Submit" -msgstr "Potvrdit" +msgstr "Odeslat" #: templates/public.php:9 templates/public.php:19 msgid "Download" -msgstr "" +msgstr "Stáhnout" #: templates/public.php:18 msgid "No preview available for" -msgstr "" +msgstr "Náhled není dostupný pro" -#: templates/public.php:23 +#: templates/public.php:25 msgid "web services under your control" -msgstr "" +msgstr "služby webu pod Vaší kontrolou" diff --git a/l10n/cs_CZ/files_versions.po b/l10n/cs_CZ/files_versions.po index a75fe502f68..0c6a43324f7 100644 --- a/l10n/cs_CZ/files_versions.po +++ b/l10n/cs_CZ/files_versions.po @@ -4,31 +4,32 @@ # # Translators: # Martin , 2012. +# Tomáš Chvátal , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 13:37+0000\n" +"Last-Translator: Tomáš Chvátal \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: cs_CZ\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" -msgstr "Vypršení všech verzí" +msgstr "Vypršet všechny verze" #: templates/settings-personal.php:4 msgid "Versions" -msgstr "" +msgstr "Verze" #: templates/settings-personal.php:7 msgid "This will delete all existing backup versions of your files" -msgstr "" +msgstr "Odstraní všechny existující zálohované verze Vašich souborů" #: templates/settings.php:3 msgid "Enable Files Versioning" diff --git a/l10n/cs_CZ/lib.po b/l10n/cs_CZ/lib.po index 35f62dc63c9..eb0f3cb40a7 100644 --- a/l10n/cs_CZ/lib.po +++ b/l10n/cs_CZ/lib.po @@ -4,19 +4,20 @@ # # Translators: # Martin , 2012. +# Tomáš Chvátal , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-09-01 00:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 13:37+0000\n" +"Last-Translator: Tomáš Chvátal \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: cs_CZ\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #: app.php:288 msgid "Help" @@ -40,7 +41,7 @@ msgstr "Aplikace" #: app.php:314 msgid "Admin" -msgstr "Admin" +msgstr "Administrace" #: files.php:280 msgid "ZIP download is turned off." @@ -48,7 +49,7 @@ msgstr "Stahování ZIPu je vypnuto." #: files.php:281 msgid "Files need to be downloaded one by one." -msgstr "Soubory je nutno stahovat samostatně." +msgstr "Soubory musí být stahovány jednotlivě." #: files.php:281 files.php:306 msgid "Back to Files" @@ -56,7 +57,7 @@ msgstr "Zpět k souborům" #: files.php:305 msgid "Selected files too large to generate zip file." -msgstr "Vybarné soubory jsou pro vytvoření zipu příliš velké." +msgstr "Vybrané soubory jsou příliš velké pro vytvoření zip souboru." #: json.php:28 msgid "Application is not enabled" @@ -64,63 +65,63 @@ msgstr "Aplikace není povolena" #: json.php:39 json.php:63 json.php:75 msgid "Authentication error" -msgstr "Chyba autorizace" +msgstr "Chyba ověření" #: json.php:51 msgid "Token expired. Please reload page." -msgstr "Realce expirovala. Obnovte prosím stranu." +msgstr "Token vypršel. Obnovte prosím stránku." -#: template.php:86 +#: template.php:87 msgid "seconds ago" msgstr "před vteřinami" -#: template.php:87 +#: template.php:88 msgid "1 minute ago" msgstr "před 1 minutou" -#: template.php:88 +#: template.php:89 #, php-format msgid "%d minutes ago" msgstr "před %d minutami" -#: template.php:91 +#: template.php:92 msgid "today" msgstr "dnes" -#: template.php:92 +#: template.php:93 msgid "yesterday" msgstr "včera" -#: template.php:93 +#: template.php:94 #, php-format msgid "%d days ago" msgstr "před %d dny" -#: template.php:94 +#: template.php:95 msgid "last month" msgstr "minulý měsíc" -#: template.php:95 +#: template.php:96 msgid "months ago" msgstr "před měsíci" -#: template.php:96 +#: template.php:97 msgid "last year" msgstr "loni" -#: template.php:97 +#: template.php:98 msgid "years ago" msgstr "před lety" #: updater.php:66 #, php-format msgid "%s is available. Get more information" -msgstr "" +msgstr "%s je dostupná. Získat více informací" #: updater.php:68 msgid "up to date" -msgstr "" +msgstr "aktuální" #: updater.php:71 msgid "updates check is disabled" -msgstr "" +msgstr "kontrola aktualizací je vypnuta" diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po index b83f36882a4..3511d379d65 100644 --- a/l10n/cs_CZ/settings.po +++ b/l10n/cs_CZ/settings.po @@ -4,17 +4,18 @@ # # Translators: # , 2012. -# Jan Krejci , 2011, 2012. +# Jan Krejci , 2011-2012. # Martin , 2011-2012. # Michal Hrušecký , 2012. # , 2012. +# Tomáš Chvátal , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 13:36+0000\n" +"Last-Translator: Tomáš Chvátal \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,20 +25,20 @@ msgstr "" #: ajax/apps/ocs.php:23 msgid "Unable to load list from App Store" -msgstr "Nepodařílo se stáhnout seznam z App Store" +msgstr "Nelze načíst seznam z App Store" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 #: ajax/togglegroups.php:15 msgid "Authentication error" -msgstr "Chyba autorizace" +msgstr "Chyba ověření" #: ajax/creategroup.php:19 msgid "Group already exists" -msgstr "" +msgstr "Skupina již existuje" #: ajax/creategroup.php:28 msgid "Unable to add group" -msgstr "" +msgstr "Nelze přidat skupinu" #: ajax/lostpassword.php:14 msgid "Email saved" @@ -49,19 +50,19 @@ msgstr "Neplatný e-mail" #: ajax/openid.php:16 msgid "OpenID Changed" -msgstr "OpenID změněn" +msgstr "OpenID změněno" #: ajax/openid.php:18 ajax/setlanguage.php:20 ajax/setlanguage.php:23 msgid "Invalid request" -msgstr "Chybný dotaz" +msgstr "Neplatný požadavek" #: ajax/removegroup.php:16 msgid "Unable to delete group" -msgstr "" +msgstr "Nelze smazat skupinu" #: ajax/removeuser.php:22 msgid "Unable to delete user" -msgstr "" +msgstr "Nelze smazat uživatele" #: ajax/setlanguage.php:18 msgid "Language changed" @@ -70,12 +71,12 @@ msgstr "Jazyk byl změněn" #: ajax/togglegroups.php:25 #, php-format msgid "Unable to add user to group %s" -msgstr "" +msgstr "Nelze přidat uživatele do skupiny %s" #: ajax/togglegroups.php:31 #, php-format msgid "Unable to remove user from group %s" -msgstr "" +msgstr "Nelze odstranit uživatele ze skupiny %s" #: js/apps.js:18 msgid "Error" @@ -83,11 +84,11 @@ msgstr "Chyba" #: js/apps.js:39 js/apps.js:73 msgid "Disable" -msgstr "Vypnout" +msgstr "Zakázat" #: js/apps.js:39 js/apps.js:62 msgid "Enable" -msgstr "Zapnout" +msgstr "Povolit" #: js/personal.js:69 msgid "Saving..." @@ -99,7 +100,7 @@ msgstr "Česky" #: templates/admin.php:14 msgid "Security Warning" -msgstr "Bezpečnostní upozornění" +msgstr "Bezpečnostní varování" #: templates/admin.php:17 msgid "" @@ -108,7 +109,7 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "" +msgstr "Váš adresář dat a soubory jsou pravděpodobně přístupné z internetu. Soubor .htacces, který ownCloud poskytuje nefunguje. Doporučujeme Vám abyste nastavili Váš webový server tak, aby nebylo možno přistupovat do adresáře s daty, nebo přesunuli adresář dat mimo kořenovou složku dokumentů webového serveru." #: templates/admin.php:31 msgid "Cron" @@ -116,7 +117,7 @@ msgstr "Cron" #: templates/admin.php:33 msgid "execute one task with each page loaded" -msgstr "spustit jednu úlohu s každou nataženou stranou" +msgstr "spustit jednu úlohu s každou načtenou stránkou" #: templates/admin.php:35 msgid "cron.php is registered at a webcron service" @@ -124,47 +125,47 @@ msgstr "cron.php je registrován jako služba webcron" #: templates/admin.php:37 msgid "use systems cron service" -msgstr "použijte systémovou službu cron" +msgstr "použít systémovou službu cron" #: templates/admin.php:41 msgid "Share API" -msgstr "" +msgstr "API sdílení" #: templates/admin.php:46 msgid "Enable Share API" -msgstr "" +msgstr "Povolit API sdílení" #: templates/admin.php:47 msgid "Allow apps to use the Share API" -msgstr "" +msgstr "Povolit aplikacím používat API sdílení" #: templates/admin.php:51 msgid "Allow links" -msgstr "" +msgstr "Povolit odkazy" #: templates/admin.php:52 msgid "Allow users to share items to the public with links" -msgstr "" +msgstr "Povolit uživatelům sdílet položky s veřejností pomocí odkazů" #: templates/admin.php:56 msgid "Allow resharing" -msgstr "" +msgstr "Povolit znovu-sdílení" #: templates/admin.php:57 msgid "Allow users to share items shared with them again" -msgstr "" +msgstr "Povolit uživatelům znovu sdílet položky, které jsou pro ně sdíleny" #: templates/admin.php:60 msgid "Allow users to share with anyone" -msgstr "" +msgstr "Povolit uživatelům sdílet s kýmkoliv" #: templates/admin.php:62 msgid "Allow users to only share with users in their groups" -msgstr "" +msgstr "Povolit uživatelům sdílet pouze s uživateli v jejich skupinách" #: templates/admin.php:69 msgid "Log" -msgstr "Log" +msgstr "Záznam" #: templates/admin.php:97 msgid "More" @@ -178,11 +179,11 @@ msgid "" "licensed under the AGPL." -msgstr "" +msgstr "Vyvinuto komunitou ownCloud, zdrojový kód je licencován pod AGPL." #: templates/apps.php:10 msgid "Add your App" -msgstr "Přidat vaší aplikaci" +msgstr "Přidat Vaší aplikaci" #: templates/apps.php:26 msgid "Select an App" @@ -194,7 +195,7 @@ msgstr "Více na stránce s aplikacemi na apps.owncloud.com" #: templates/apps.php:30 msgid "-licensed by " -msgstr "" +msgstr "-licencováno " #: templates/help.php:9 msgid "Documentation" @@ -202,7 +203,7 @@ msgstr "Dokumentace" #: templates/help.php:10 msgid "Managing Big Files" -msgstr "Spravování velkých souborů" +msgstr "Správa velkých souborů" #: templates/help.php:11 msgid "Ask a question" @@ -242,11 +243,11 @@ msgstr "Vaše heslo bylo změněno" #: templates/personal.php:20 msgid "Unable to change your password" -msgstr "Vaše heslo se nepodařilo změnit" +msgstr "Vaše heslo nelze změnit" #: templates/personal.php:21 msgid "Current password" -msgstr "Aktuální heslo" +msgstr "Současné heslo" #: templates/personal.php:22 msgid "New password" @@ -262,15 +263,15 @@ msgstr "Změnit heslo" #: templates/personal.php:30 msgid "Email" -msgstr "Email" +msgstr "E-mail" #: templates/personal.php:31 msgid "Your email address" -msgstr "Vaše emailová adresa" +msgstr "Vaše e-mailová adresa" #: templates/personal.php:32 msgid "Fill in an email address to enable password recovery" -msgstr "Pro povolení změny hesla vyplňte email adresu" +msgstr "Pro povolení změny hesla vyplňte adresu e-mailu" #: templates/personal.php:38 templates/personal.php:39 msgid "Language" @@ -278,7 +279,7 @@ msgstr "Jazyk" #: templates/personal.php:44 msgid "Help translate" -msgstr "Pomoci překládat" +msgstr "Pomoci s překladem" #: templates/personal.php:51 msgid "use this address to connect to your ownCloud in your file manager" @@ -306,11 +307,11 @@ msgstr "Výchozí kvóta" #: templates/users.php:55 templates/users.php:138 msgid "Other" -msgstr "Jiné" +msgstr "Jiná" #: templates/users.php:80 templates/users.php:112 msgid "Group Admin" -msgstr "Administrace skupiny" +msgstr "Správa skupiny" #: templates/users.php:82 msgid "Quota" @@ -318,4 +319,4 @@ msgstr "Kvóta" #: templates/users.php:146 msgid "Delete" -msgstr "Vymazat" +msgstr "Smazat" diff --git a/l10n/cs_CZ/user_ldap.po b/l10n/cs_CZ/user_ldap.po index 57bcba3d707..808367304a8 100644 --- a/l10n/cs_CZ/user_ldap.po +++ b/l10n/cs_CZ/user_ldap.po @@ -4,40 +4,41 @@ # # Translators: # Martin , 2012. +# Tomáš Chvátal , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-29 13:53+0000\n" -"Last-Translator: Martin \n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 13:37+0000\n" +"Last-Translator: Tomáš Chvátal \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: cs_CZ\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #: templates/settings.php:8 msgid "Host" -msgstr "Hostitel" +msgstr "Počítač" #: templates/settings.php:8 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" -msgstr "Nelze vynechat protokol vyžadující SSL. Začněte s ldaps://" +msgstr "Můžete vynechat protokol, vyjma pokud požadujete SSL. Tehdy začněte s ldaps://" #: templates/settings.php:9 msgid "Base DN" -msgstr "Base DN" +msgstr "Základní DN" #: templates/settings.php:9 msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "V Rozšířeném nastavení můžete specifikovat pro své uživatele a skupiny element Base DN" +msgstr "V rozšířeném nastavení můžete určit základní DN pro uživatele a skupiny" #: templates/settings.php:10 msgid "User DN" -msgstr "DN uživatele" +msgstr "Uživatelské DN" #: templates/settings.php:10 msgid "" @@ -52,47 +53,47 @@ msgstr "Heslo" #: templates/settings.php:11 msgid "For anonymous access, leave DN and Password empty." -msgstr "Pro anonymní přístup ponechte údaje DN and Heslo prázdné." +msgstr "Pro anonymní přístup, ponechte údaje DN and heslo prázdné." #: templates/settings.php:12 msgid "User Login Filter" -msgstr "Filtr uživatelských loginů" +msgstr "Filtr přihlášení uživatelů" #: templates/settings.php:12 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." -msgstr "Definuje filtr, který je aplikován v průběhu logování. %%uid nahrazuje uživatelské jméno během logování." +msgstr "Určuje použitý filtr, při pokusu o přihlášení. %%uid nahrazuje uživatelské jméno v činnosti přihlášení." #: templates/settings.php:12 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" -msgstr "použijte %%uid pro rezervované místo, např. \"uid=%%uid\"" +msgstr "použijte zástupný vzor %%uid, např. \"uid=%%uid\"" #: templates/settings.php:13 msgid "User List Filter" -msgstr "Filtr uživateslkých seznamů" +msgstr "Filtr uživatelských seznamů" #: templates/settings.php:13 msgid "Defines the filter to apply, when retrieving users." -msgstr "Defunije filtr, který je plaikován při návratu uživatelů." +msgstr "Určuje použitý filtr, pro získávaní uživatelů." #: templates/settings.php:13 msgid "without any placeholder, e.g. \"objectClass=person\"." -msgstr "bez rezervace místa, např. \"objectClass=person\"." +msgstr "bez zástupných znaků, např. \"objectClass=person\"." #: templates/settings.php:14 msgid "Group Filter" -msgstr "Filtr skupiny" +msgstr "Filtr skupin" #: templates/settings.php:14 msgid "Defines the filter to apply, when retrieving groups." -msgstr "Definuje filtr, který je aplikován při návratu skupin" +msgstr "Určuje použitý filtr, pro získávaní skupin." #: templates/settings.php:14 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." -msgstr "bez rezervace místa, např. \"objectClass=posixGroup\"." +msgstr "bez zástupných znaků, např. \"objectClass=posixGroup\"." #: templates/settings.php:17 msgid "Port" @@ -112,11 +113,11 @@ msgstr "Asociace člena skupiny" #: templates/settings.php:21 msgid "Use TLS" -msgstr "Použijte TLS" +msgstr "Použít TLS" #: templates/settings.php:21 msgid "Do not use it for SSL connections, it will fail." -msgstr "Nepoužívejte pro SSL připojení, připojení selže." +msgstr "Nepoužívejte pro připojení pomocí SSL, připojení selže." #: templates/settings.php:22 msgid "Case insensitve LDAP server (Windows)" @@ -124,17 +125,17 @@ msgstr "LDAP server nerozlišující velikost znaků (Windows)" #: templates/settings.php:23 msgid "Turn off SSL certificate validation." -msgstr "Vypněte ověřování SSL certifikátu" +msgstr "Vypnout ověřování SSL certifikátu." #: templates/settings.php:23 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." -msgstr "pokud pracuje připojení pouze pokud je teto volba aktivní, importujte SSL certifikát LDAP serveru do Vašeho serveru ownCloud." +msgstr "Pokud připojení pracuje pouze s touto možností, tak importujte SSL certifikát SSL serveru do Vašeho serveru ownCloud" #: templates/settings.php:23 msgid "Not recommended, use for testing only." -msgstr "Není doporučeno, pouze pro účely testování." +msgstr "Není doporučeno, pouze pro testovací účely." #: templates/settings.php:24 msgid "User Display Name Field" @@ -154,17 +155,17 @@ msgstr "Atribut LDAP použitý k vytvoření jména skupiny ownCloud" #: templates/settings.php:27 msgid "in bytes" -msgstr "v bytech" +msgstr "v bajtech" #: templates/settings.php:29 msgid "in seconds. A change empties the cache." -msgstr "ve vteřinách. Změna vyprázdní dočasnou paměť." +msgstr "ve vteřinách. Změna vyprázdní vyrovnávací paměť." #: templates/settings.php:30 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." -msgstr "Ponechte prázdné pro uživateslké jméno (výchozí). Jinak uveďte LDAP/AD paramerty" +msgstr "Ponechte prázdné pro uživatelské jméno (výchozí). Jinak uveďte LDAP/AD parametr." #: templates/settings.php:32 msgid "Help" diff --git a/l10n/da/core.po b/l10n/da/core.po index 542e8425faf..bbb688dca57 100644 --- a/l10n/da/core.po +++ b/l10n/da/core.po @@ -13,15 +13,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-03 02:04+0200\n" -"PO-Revision-Date: 2012-09-02 14:21+0000\n" -"Last-Translator: muunsim \n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" +"Last-Translator: I Robot \n" "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" "Content-Transfer-Encoding: 8bit\n" "Language: da\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -35,59 +35,55 @@ msgstr "Ingen kategori at tilføje?" msgid "This category already exists: " msgstr "Denne kategori eksisterer allerede: " -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Indstillinger" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "Januar" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "Februar" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "Marts" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "April" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "Maj" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "Juni" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "Juli" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "August" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "September" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "Oktober" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "November" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "December" @@ -119,7 +115,7 @@ msgstr "Fejl" msgid "ownCloud password reset" msgstr "Nulstil ownCloud kodeord" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Anvend følgende link til at nulstille din adgangskode: {link}" diff --git a/l10n/da/files.po b/l10n/da/files.po index 5c3233a2810..ef7718c6d05 100644 --- a/l10n/da/files.po +++ b/l10n/da/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -60,31 +60,35 @@ msgstr "Filer" msgid "Delete" msgstr "Slet" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "findes allerede" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "erstat" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "fortryd" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "erstattet" -#: js/filelist.js:195 -msgid "with" -msgstr "med" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "fortryd" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "med" + +#: js/filelist.js:271 msgid "deleted" msgstr "Slettet" @@ -100,44 +104,44 @@ msgstr "Kunne ikke uploade din fil, da det enten er en mappe eller er tom" msgid "Upload Error" msgstr "Fejl ved upload" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "Afventer" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "Upload afbrudt." -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Fil upload kører. Hvis du forlader siden nu, vil uploadet blive annuleret." -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "Ugyldigt navn, '/' er ikke tilladt." -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Størrelse" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Ændret" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "mappe" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "mapper" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "fil" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "filer" diff --git a/l10n/de/core.po b/l10n/de/core.po index 9f06a2c9f42..d2dca57566e 100644 --- a/l10n/de/core.po +++ b/l10n/de/core.po @@ -18,15 +18,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-08-31 09:48+0000\n" -"Last-Translator: traductor \n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: de\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -40,59 +40,55 @@ msgstr "Keine Kategorie hinzuzufügen?" msgid "This category already exists: " msgstr "Kategorie existiert bereits:" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Einstellungen" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "Januar" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "Februar" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "März" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "April" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "Mai" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "Juni" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "Juli" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "August" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "September" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "Oktober" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "November" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "Dezember" @@ -124,7 +120,7 @@ msgstr "Fehler" msgid "ownCloud password reset" msgstr "ownCloud-Passwort zurücksetzen" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Nutzen Sie den nachfolgenden Link, um Ihr Passwort zurückzusetzen: {link}" diff --git a/l10n/de/files.po b/l10n/de/files.po index 63ae8dc7c87..186ed35ccdd 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.po @@ -18,8 +18,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" @@ -66,31 +66,35 @@ msgstr "Dateien" msgid "Delete" msgstr "Löschen" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "ist bereits vorhanden" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "ersetzen" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "abbrechen" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "ersetzt" -#: js/filelist.js:195 -msgid "with" -msgstr "mit" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "rückgängig machen" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "mit" + +#: js/filelist.js:271 msgid "deleted" msgstr "gelöscht" @@ -106,44 +110,44 @@ msgstr "Ihre Datei kann nicht hochgeladen werden, da sie ein Verzeichnis ist ode msgid "Upload Error" msgstr "Fehler beim Hochladen" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "Ausstehend" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "Hochladen abgebrochen." -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Dateiupload läuft. Wenn Sie die Seite jetzt verlassen, wird der Upload abgebrochen." -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "Ungültiger Name: \"/\" ist nicht erlaubt." -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Größe" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Bearbeitet" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "Ordner" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "Ordner" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "Datei" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "Dateien" @@ -177,7 +181,7 @@ msgstr "Maximale Größe für ZIP-Dateien" #: templates/admin.php:14 msgid "Save" -msgstr "" +msgstr "Speichern" #: templates/index.php:7 msgid "New" diff --git a/l10n/de/settings.po b/l10n/de/settings.po index 795cd88fa26..e0d81804f6a 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 07:52+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" @@ -75,12 +75,12 @@ msgstr "Sprache geändert" #: ajax/togglegroups.php:25 #, php-format msgid "Unable to add user to group %s" -msgstr "" +msgstr "Der Benutzer konnte nicht zur Gruppe %s hinzugefügt werden" #: ajax/togglegroups.php:31 #, php-format msgid "Unable to remove user from group %s" -msgstr "" +msgstr "Der Benutzer konnte nicht aus der Gruppe %s entfernt werden" #: js/apps.js:18 msgid "Error" @@ -199,7 +199,7 @@ msgstr "Weitere Anwendungen finden Sie auf apps.owncloud.com" #: templates/apps.php:30 msgid "-licensed by " -msgstr "" +msgstr "-lizenziert von " #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/el/core.po b/l10n/el/core.po index 57cba80d051..0a9a6e0388f 100644 --- a/l10n/el/core.po +++ b/l10n/el/core.po @@ -11,15 +11,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: el\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -33,59 +33,55 @@ msgstr "Δεν έχετε να προστέσθέσεται μια κα" msgid "This category already exists: " msgstr "Αυτή η κατηγορία υπάρχει ήδη" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Ρυθμίσεις" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "Ιανουάριος" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "Φεβρουάριος" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "Μάρτιος" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "Απρίλιος" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "Μάϊος" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "Ιούνιος" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "Ιούλιος" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "Αύγουστος" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "Σεπτέμβριος" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "Οκτώβριος" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "Νοέμβριος" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "Δεκέμβριος" @@ -117,7 +113,7 @@ msgstr "Σφάλμα" msgid "ownCloud password reset" msgstr "Επαναφορά κωδικού ownCloud" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Χρησιμοποιήστε τον ακόλουθο σύνδεσμο για να επανεκδόσετε τον κωδικό: {link}" diff --git a/l10n/el/files.po b/l10n/el/files.po index ee2a70ac7cf..8ddd036c716 100644 --- a/l10n/el/files.po +++ b/l10n/el/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+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" @@ -58,31 +58,35 @@ msgstr "Αρχεία" msgid "Delete" msgstr "Διαγραφή" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "υπάρχει ήδη" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "αντικατέστησε" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "ακύρωση" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "αντικαταστάθηκε" -#: js/filelist.js:195 -msgid "with" -msgstr "με" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "αναίρεση" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "με" + +#: js/filelist.js:271 msgid "deleted" msgstr "διαγράφηκε" @@ -98,44 +102,44 @@ msgstr "Αδυναμία στην μεταφόρτωση του αρχείου msgid "Upload Error" msgstr "Σφάλμα Μεταφόρτωσης" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "Εν αναμονή" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "Η μεταφόρτωση ακυρώθηκε." -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "Μη έγκυρο όνομα, το '/' δεν επιτρέπεται." -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Μέγεθος" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Τροποποιήθηκε" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "φάκελος" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "φάκελοι" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "αρχείο" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "αρχεία" diff --git a/l10n/eo/core.po b/l10n/eo/core.po index ccfd988fd2e..416d3dd21f8 100644 --- a/l10n/eo/core.po +++ b/l10n/eo/core.po @@ -10,15 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "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" "Content-Transfer-Encoding: 8bit\n" "Language: eo\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -32,59 +32,55 @@ msgstr "Ĉu neniu kategorio estas aldonota?" msgid "This category already exists: " msgstr "Ĉi tiu kategorio jam ekzistas: " -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Agordo" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "Januaro" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "Februaro" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "Marto" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "Aprilo" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "Majo" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "Junio" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "Julio" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "Aŭgusto" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "Septembro" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "Oktobro" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "Novembro" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "Decembro" @@ -116,7 +112,7 @@ msgstr "Eraro" msgid "ownCloud password reset" msgstr "La pasvorto de ownCloud restariĝis." -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Uzu la jenan ligilon por restarigi vian pasvorton: {link}" diff --git a/l10n/eo/files.po b/l10n/eo/files.po index d771ee745f5..d0b82a0e4fd 100644 --- a/l10n/eo/files.po +++ b/l10n/eo/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+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" @@ -57,31 +57,35 @@ msgstr "Dosieroj" msgid "Delete" msgstr "Forigi" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "jam ekzistas" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "anstataŭigi" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "nuligi" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "anstataŭigita" -#: js/filelist.js:195 -msgid "with" -msgstr "kun" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "malfari" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "kun" + +#: js/filelist.js:271 msgid "deleted" msgstr "forigita" @@ -97,44 +101,44 @@ msgstr "Ne eblis alŝuti vian dosieron ĉar ĝi estas dosierujo aŭ havas 0 duum msgid "Upload Error" msgstr "Alŝuta eraro" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "Traktotaj" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "La alŝuto nuliĝis." -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "Nevalida nomo, “/” ne estas permesata." -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Grando" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Modifita" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "dosierujo" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "dosierujoj" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "dosiero" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "dosieroj" diff --git a/l10n/es/core.po b/l10n/es/core.po index fd0e4112ab5..efe18cd7f0a 100644 --- a/l10n/es/core.po +++ b/l10n/es/core.po @@ -15,15 +15,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-08-31 22:41+0000\n" -"Last-Translator: Rubén Trujillo \n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" +"Last-Translator: I Robot \n" "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" "Content-Transfer-Encoding: 8bit\n" "Language: es\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -37,59 +37,55 @@ msgstr "¿Ninguna categoría para añadir?" msgid "This category already exists: " msgstr "Esta categoría ya existe: " -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Ajustes" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "Enero" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "Febrero" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "Marzo" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "Abril" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "Mayo" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "Junio" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "Julio" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "Agosto" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "Septiembre" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "Octubre" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "Noviembre" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "Diciembre" @@ -121,7 +117,7 @@ msgstr "Fallo" msgid "ownCloud password reset" msgstr "Reiniciar contraseña de ownCloud" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Utiliza el siguiente enlace para restablecer tu contraseña: {link}" diff --git a/l10n/es/files.po b/l10n/es/files.po index 28809d589c5..feda2631833 100644 --- a/l10n/es/files.po +++ b/l10n/es/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+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" @@ -59,31 +59,35 @@ msgstr "Archivos" msgid "Delete" msgstr "Eliminado" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "ya existe" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "reemplazar" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "cancelar" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "reemplazado" -#: js/filelist.js:195 -msgid "with" -msgstr "con" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "deshacer" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "con" + +#: js/filelist.js:271 msgid "deleted" msgstr "borrado" @@ -99,44 +103,44 @@ msgstr "No ha sido posible subir tu archivo porque es un directorio o tiene 0 by msgid "Upload Error" msgstr "Error al subir el archivo" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "Pendiente" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "Subida cancelada." -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "La subida del archivo está en proceso. Salir de la página ahora cancelará la subida." -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "Nombre no válido, '/' no está permitido." -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Tamaño" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Modificado" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "carpeta" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "carpetas" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "archivo" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "archivos" @@ -170,7 +174,7 @@ msgstr "Tamaño máximo para archivos ZIP de entrada" #: templates/admin.php:14 msgid "Save" -msgstr "" +msgstr "Guardar" #: templates/index.php:7 msgid "New" diff --git a/l10n/es/settings.po b/l10n/es/settings.po index 2d38de5f755..8d1da62428c 100644 --- a/l10n/es/settings.po +++ b/l10n/es/settings.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 15:29+0000\n" +"Last-Translator: juanman \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -74,12 +74,12 @@ msgstr "Idioma cambiado" #: ajax/togglegroups.php:25 #, php-format msgid "Unable to add user to group %s" -msgstr "" +msgstr "Imposible añadir el usuario al grupo %s" #: ajax/togglegroups.php:31 #, php-format msgid "Unable to remove user from group %s" -msgstr "" +msgstr "Imposible eliminar al usuario del grupo %s" #: js/apps.js:18 msgid "Error" @@ -198,7 +198,7 @@ msgstr "Echa un vistazo a la web de aplicaciones apps.owncloud.com" #: templates/apps.php:30 msgid "-licensed by " -msgstr "" +msgstr "-licenciado por " #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/et_EE/core.po b/l10n/et_EE/core.po index 0767a4e42fa..f8d3d186521 100644 --- a/l10n/et_EE/core.po +++ b/l10n/et_EE/core.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "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" "Content-Transfer-Encoding: 8bit\n" "Language: et_EE\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -30,59 +30,55 @@ msgstr "Pole kategooriat, mida lisada?" msgid "This category already exists: " msgstr "See kategooria on juba olemas: " -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Seaded" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "Jaanuar" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "Veebruar" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "Märts" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "Aprill" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "Mai" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "Juuni" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "Juuli" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "August" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "September" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "Oktoober" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "November" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "Detsember" @@ -114,7 +110,7 @@ msgstr "Viga" msgid "ownCloud password reset" msgstr "ownCloud parooli taastamine" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Kasuta järgnevat linki oma parooli taastamiseks: {link}" diff --git a/l10n/et_EE/files.po b/l10n/et_EE/files.po index 7b09da2e4f5..fac2c5dc01b 100644 --- a/l10n/et_EE/files.po +++ b/l10n/et_EE/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -56,31 +56,35 @@ msgstr "Failid" msgid "Delete" msgstr "Kustuta" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "on juba olemas" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "asenda" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "loobu" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "asendatud" -#: js/filelist.js:195 -msgid "with" -msgstr "millega" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "tagasi" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "millega" + +#: js/filelist.js:271 msgid "deleted" msgstr "kustutatud" @@ -96,44 +100,44 @@ msgstr "Sinu faili üleslaadimine ebaõnnestus, kuna see on kaust või selle suu msgid "Upload Error" msgstr "Üleslaadimise viga" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "Ootel" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "Üleslaadimine tühistati." -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "Vigane nimi, '/' pole lubatud." -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Suurus" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Muudetud" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "kaust" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "kausta" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "fail" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "faili" diff --git a/l10n/eu/core.po b/l10n/eu/core.po index 63b63ad545a..476fbcd0a11 100644 --- a/l10n/eu/core.po +++ b/l10n/eu/core.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "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" "Content-Transfer-Encoding: 8bit\n" "Language: eu\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -31,59 +31,55 @@ msgstr "Ez dago gehitzeko kategoriarik?" msgid "This category already exists: " msgstr "Kategoria hau dagoeneko existitzen da:" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Ezarpenak" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "Urtarrila" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "Otsaila" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "Martxoa" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "Apirila" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "Maiatza" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "Ekaina" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "Uztaila" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "Abuztua" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "Iraila" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "Urria" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "Azaroa" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "Abendua" @@ -115,7 +111,7 @@ msgstr "Errorea" msgid "ownCloud password reset" msgstr "ownCloud-en pasahitza berrezarri" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Eribili hurrengo lotura zure pasahitza berrezartzeko: {link}" diff --git a/l10n/eu/files.po b/l10n/eu/files.po index 19d4a2e58c1..810a5ae18c5 100644 --- a/l10n/eu/files.po +++ b/l10n/eu/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+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" @@ -57,31 +57,35 @@ msgstr "Fitxategiak" msgid "Delete" msgstr "Ezabatu" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "dagoeneko existitzen da" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "ordeztu" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "ezeztatu" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "ordeztua" -#: js/filelist.js:195 -msgid "with" -msgstr "honekin" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "desegin" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "honekin" + +#: js/filelist.js:271 msgid "deleted" msgstr "ezabatuta" @@ -97,44 +101,44 @@ msgstr "Ezin da zure fitxategia igo, karpeta bat da edo 0 byt ditu" msgid "Upload Error" msgstr "Igotzean errore bat suertatu da" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "Zain" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "Igoera ezeztatuta" -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "Baliogabeko izena, '/' ezin da erabili. " -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Tamaina" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Aldatuta" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "karpeta" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "Karpetak" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "fitxategia" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "fitxategiak" diff --git a/l10n/eu_ES/core.po b/l10n/eu_ES/core.po index a6da3a496e9..b3baf2cb39f 100644 --- a/l10n/eu_ES/core.po +++ b/l10n/eu_ES/core.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: eu_ES\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -29,59 +29,55 @@ msgstr "" msgid "This category already exists: " msgstr "" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "" @@ -113,7 +109,7 @@ msgstr "" msgid "ownCloud password reset" msgstr "" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "" diff --git a/l10n/eu_ES/files.po b/l10n/eu_ES/files.po index 5a8745c0316..0ed5582c4ff 100644 --- a/l10n/eu_ES/files.po +++ b/l10n/eu_ES/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" "MIME-Version: 1.0\n" @@ -55,31 +55,35 @@ msgstr "" msgid "Delete" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "" -#: js/filelist.js:195 -msgid "with" -msgstr "" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "" + +#: js/filelist.js:271 msgid "deleted" msgstr "" @@ -95,44 +99,44 @@ msgstr "" msgid "Upload Error" msgstr "" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "" -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "" diff --git a/l10n/fa/core.po b/l10n/fa/core.po index 6099da454e0..df531775248 100644 --- a/l10n/fa/core.po +++ b/l10n/fa/core.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: fa\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -30,59 +30,55 @@ msgstr "آیا گروه دیگری برای افزودن ندارید" msgid "This category already exists: " msgstr "این گروه از قبل اضافه شده" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "تنظیمات" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "ژانویه" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "فبریه" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "مارس" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "آوریل" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "می" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "ژوئن" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "جولای" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "آگوست" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "سپتامبر" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "اکتبر" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "نوامبر" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "دسامبر" @@ -114,7 +110,7 @@ msgstr "خطا" msgid "ownCloud password reset" msgstr "پسورد ابرهای شما تغییرکرد" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "از لینک زیر جهت دوباره سازی پسورد استفاده کنید :\n{link}" diff --git a/l10n/fa/files.po b/l10n/fa/files.po index a1981830b70..2e1f1645041 100644 --- a/l10n/fa/files.po +++ b/l10n/fa/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+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" @@ -58,31 +58,35 @@ msgstr "فایل ها" msgid "Delete" msgstr "پاک کردن" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "وجود دارد" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "جایگزین" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "لغو" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "جایگزین‌شده" -#: js/filelist.js:195 -msgid "with" -msgstr "همراه" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "بازگشت" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "همراه" + +#: js/filelist.js:271 msgid "deleted" msgstr "حذف شده" @@ -98,44 +102,44 @@ msgstr "ناتوان در بارگذاری یا فایل یک پوشه است ی msgid "Upload Error" msgstr "خطا در بار گذاری" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "در انتظار" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "بار گذاری لغو شد" -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "نام نامناسب '/' غیرفعال است" -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "اندازه" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "تغییر یافته" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "پوشه" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "پوشه ها" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "پرونده" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "پرونده ها" diff --git a/l10n/fi/core.po b/l10n/fi/core.po index 9471fc3066c..6b84b560723 100644 --- a/l10n/fi/core.po +++ b/l10n/fi/core.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (http://www.transifex.com/projects/p/owncloud/language/fi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: fi\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -29,59 +29,55 @@ msgstr "" msgid "This category already exists: " msgstr "" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "" @@ -113,7 +109,7 @@ msgstr "" msgid "ownCloud password reset" msgstr "" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "" diff --git a/l10n/fi/files.po b/l10n/fi/files.po index a46618c5029..0a9580f3467 100644 --- a/l10n/fi/files.po +++ b/l10n/fi/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (http://www.transifex.com/projects/p/owncloud/language/fi/)\n" "MIME-Version: 1.0\n" @@ -55,31 +55,35 @@ msgstr "" msgid "Delete" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "" -#: js/filelist.js:195 -msgid "with" -msgstr "" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "" + +#: js/filelist.js:271 msgid "deleted" msgstr "" @@ -95,44 +99,44 @@ msgstr "" msgid "Upload Error" msgstr "" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "" -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "" diff --git a/l10n/fi_FI/core.po b/l10n/fi_FI/core.po index 7506e66bc4e..cbce7313693 100644 --- a/l10n/fi_FI/core.po +++ b/l10n/fi_FI/core.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-04 02:01+0200\n" -"PO-Revision-Date: 2012-09-03 16:24+0000\n" -"Last-Translator: teho \n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" +"Last-Translator: I Robot \n" "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" @@ -35,59 +35,55 @@ msgstr "Ei lisättävää luokkaa?" msgid "This category already exists: " msgstr "Tämä luokka on jo olemassa: " -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Asetukset" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "Tammikuu" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "Helmikuu" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "Maaliskuu" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "Huhtikuu" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "Toukokuu" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "Kesäkuu" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "Heinäkuu" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "Elokuu" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "Syyskuu" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "Lokakuu" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "Marraskuu" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "Joulukuu" @@ -119,7 +115,7 @@ msgstr "Virhe" msgid "ownCloud password reset" msgstr "ownCloud-salasanan nollaus" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Voit palauttaa salasanasi seuraavassa osoitteessa: {link}" diff --git a/l10n/fi_FI/files.po b/l10n/fi_FI/files.po index 7b28a31a632..f82b204f60e 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_FI/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+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" @@ -60,31 +60,35 @@ msgstr "Tiedostot" msgid "Delete" msgstr "Poista" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "on jo olemassa" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "korvaa" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "peru" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "korvattu" -#: js/filelist.js:195 -msgid "with" -msgstr "käyttäen" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "kumoa" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "käyttäen" + +#: js/filelist.js:271 msgid "deleted" msgstr "poistettu" @@ -100,44 +104,44 @@ msgstr "Tiedoston lähetys epäonnistui, koska sen koko on 0 tavua tai kyseessä msgid "Upload Error" msgstr "Lähetysvirhe." -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "Odottaa" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "Lähetys peruttu." -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Tiedoston lähetys on meneillään. Sivulta poistuminen nyt peruu tiedoston lähetyksen." -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "Virheellinen nimi, merkki '/' ei ole sallittu." -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Koko" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Muutettu" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "kansio" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "kansiota" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "tiedosto" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "tiedostoa" @@ -171,7 +175,7 @@ msgstr "ZIP-tiedostojen enimmäiskoko" #: templates/admin.php:14 msgid "Save" -msgstr "" +msgstr "Tallenna" #: templates/index.php:7 msgid "New" diff --git a/l10n/fi_FI/files_external.po b/l10n/fi_FI/files_external.po index 2cee464ea24..404c33a0143 100644 --- a/l10n/fi_FI/files_external.po +++ b/l10n/fi_FI/files_external.po @@ -4,19 +4,20 @@ # # Translators: # Jiri Grönroos , 2012. +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-17 00:44+0200\n" -"PO-Revision-Date: 2012-08-16 11:04+0000\n" -"Last-Translator: Jiri Grönroos \n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 16:30+0000\n" +"Last-Translator: teho \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" "Content-Transfer-Encoding: 8bit\n" "Language: fi_FI\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/settings.php:3 msgid "External Storage" @@ -40,7 +41,7 @@ msgstr "Valinnat" #: templates/settings.php:11 msgid "Applicable" -msgstr "" +msgstr "Sovellettavissa" #: templates/settings.php:23 msgid "Add mount point" @@ -76,7 +77,7 @@ msgstr "Tuo juurivarmenne" #: templates/settings.php:108 msgid "Enable User External Storage" -msgstr "" +msgstr "Ota käyttöön ulkopuoliset tallennuspaikat" #: templates/settings.php:109 msgid "Allow users to mount their own external storage" diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po index e540a68630f..2f9cfc602d5 100644 --- a/l10n/fi_FI/settings.po +++ b/l10n/fi_FI/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 16:14+0000\n" +"Last-Translator: teho \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" @@ -68,12 +68,12 @@ msgstr "Kieli on vaihdettu" #: ajax/togglegroups.php:25 #, php-format msgid "Unable to add user to group %s" -msgstr "" +msgstr "Käyttäjän tai ryhmän %s lisääminen ei onnistu" #: ajax/togglegroups.php:31 #, php-format msgid "Unable to remove user from group %s" -msgstr "" +msgstr "Käyttäjän poistaminen ryhmästä %s ei onnistu" #: js/apps.js:18 msgid "Error" @@ -192,7 +192,7 @@ msgstr "Katso sovellussivu osoitteessa apps.owncloud.com" #: templates/apps.php:30 msgid "-licensed by " -msgstr "" +msgstr "-lisensoija " #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/fi_FI/user_ldap.po b/l10n/fi_FI/user_ldap.po index e1e890a1617..62a31960b0c 100644 --- a/l10n/fi_FI/user_ldap.po +++ b/l10n/fi_FI/user_ldap.po @@ -5,13 +5,14 @@ # Translators: # , 2012. # Jiri Grönroos , 2012. +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-04 14:29+0000\n" -"Last-Translator: Jiri Grönroos \n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 16:49+0000\n" +"Last-Translator: teho \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" @@ -64,7 +65,7 @@ msgstr "Login suodatus" msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." -msgstr "" +msgstr "Määrittelee käytettävän suodattimen, kun sisäänkirjautumista yritetään. %%uid korvaa sisäänkirjautumisessa käyttäjätunnuksen." #: templates/settings.php:12 #, php-format @@ -139,19 +140,19 @@ msgstr "Ei suositella, käytä vain testausta varten." #: templates/settings.php:24 msgid "User Display Name Field" -msgstr "" +msgstr "Käyttäjän näytettävän nimen kenttä" #: templates/settings.php:24 msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "" +msgstr "LDAP attribuutti, jota käytetään käyttäjän ownCloud käyttäjänimenä " #: templates/settings.php:25 msgid "Group Display Name Field" -msgstr "" +msgstr "Ryhmän \"näytettävä nimi\"-kenttä" #: templates/settings.php:25 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "" +msgstr "LDAP atribuutti, jota käytetään luomaan ryhmän ownCloud nimi" #: templates/settings.php:27 msgid "in bytes" @@ -165,7 +166,7 @@ msgstr "sekunneissa. Muutos tyhjentää välimuistin." msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." -msgstr "" +msgstr "Jätä tyhjäksi käyttäjänimi (oletusasetus). Muutoin anna LDAP/AD atribuutti." #: templates/settings.php:32 msgid "Help" diff --git a/l10n/fr/core.po b/l10n/fr/core.po index 9d16fe11ba3..c6fd6a40412 100644 --- a/l10n/fr/core.po +++ b/l10n/fr/core.po @@ -13,15 +13,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-08-31 19:09+0000\n" -"Last-Translator: Florentin Le Moal \n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" +"Last-Translator: I Robot \n" "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" "Content-Transfer-Encoding: 8bit\n" "Language: fr\n" -"Plural-Forms: nplurals=2; plural=(n > 1)\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -35,59 +35,55 @@ msgstr "Pas de catégorie à ajouter ?" msgid "This category already exists: " msgstr "Cette catégorie existe déjà : " -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Paramètres" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "janvier" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "février" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "mars" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "avril" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "mai" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "juin" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "juillet" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "août" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "septembre" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "octobre" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "novembre" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "décembre" @@ -119,7 +115,7 @@ msgstr "Erreur" msgid "ownCloud password reset" msgstr "Réinitialisation de votre mot de passe Owncloud" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Utilisez le lien suivant pour réinitialiser votre mot de passe : {link}" diff --git a/l10n/fr/files.po b/l10n/fr/files.po index 6467b476975..222dbece715 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/files.po @@ -8,6 +8,7 @@ # , 2012. # , 2012. # Guillaume Paumier , 2012. +# , 2012. # Nahir Mohamed , 2012. # , 2011. # Romain DEP. , 2012. @@ -15,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+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" @@ -63,31 +64,35 @@ msgstr "Fichiers" msgid "Delete" msgstr "Supprimer" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "existe déjà" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "remplacer" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "annuler" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "remplacé" -#: js/filelist.js:195 -msgid "with" -msgstr "avec" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "annuler" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "avec" + +#: js/filelist.js:271 msgid "deleted" msgstr "supprimé" @@ -103,44 +108,44 @@ msgstr "Impossible de charger vos fichiers car il s'agit d'un dossier ou le fich msgid "Upload Error" msgstr "Erreur de chargement" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "En cours" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "Chargement annulé." -#: js/files.js:409 +#: js/files.js:423 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/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "Nom invalide, '/' n'est pas autorisé." -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Taille" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Modifié" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "dossier" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "dossiers" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "fichier" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "fichiers" @@ -174,7 +179,7 @@ msgstr "Taille maximale pour les fichiers ZIP" #: templates/admin.php:14 msgid "Save" -msgstr "" +msgstr "Sauvegarder" #: templates/index.php:7 msgid "New" diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index 0fd897ba24f..bdf3e67d242 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/settings.po @@ -9,6 +9,7 @@ # , 2012. # , 2012. # Jan-Christoph Borchardt , 2011. +# , 2012. # Nahir Mohamed , 2012. # , 2012. # , 2011, 2012. @@ -17,9 +18,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 13:18+0000\n" +"Last-Translator: Romain DEP. \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -75,12 +76,12 @@ msgstr "Langue changée" #: ajax/togglegroups.php:25 #, php-format msgid "Unable to add user to group %s" -msgstr "" +msgstr "Impossible d'ajouter l'utilisateur au groupe %s" #: ajax/togglegroups.php:31 #, php-format msgid "Unable to remove user from group %s" -msgstr "" +msgstr "Impossible de supprimer l'utilisateur du groupe %s" #: js/apps.js:18 msgid "Error" @@ -199,7 +200,7 @@ msgstr "Voir la page des applications à l'url apps.owncloud.com" #: templates/apps.php:30 msgid "-licensed by " -msgstr "" +msgstr "-sous licence, par " #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/gl/core.po b/l10n/gl/core.po index 4dd5e3d6f22..98c21db78b2 100644 --- a/l10n/gl/core.po +++ b/l10n/gl/core.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "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" "Content-Transfer-Encoding: 8bit\n" "Language: gl\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -31,59 +31,55 @@ msgstr "Sen categoría que engadir?" msgid "This category already exists: " msgstr "Esta categoría xa existe: " -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Preferencias" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "Xaneiro" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "Febreiro" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "Marzo" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "Abril" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "Maio" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "Xuño" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "Xullo" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "Agosto" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "Setembro" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "Outubro" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "Novembro" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "Nadal" @@ -115,7 +111,7 @@ msgstr "Erro" msgid "ownCloud password reset" msgstr "Restablecer contrasinal de ownCloud" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Use a seguinte ligazón para restablecer o contrasinal: {link}" diff --git a/l10n/gl/files.po b/l10n/gl/files.po index 9413551a21a..0de0ff2a7df 100644 --- a/l10n/gl/files.po +++ b/l10n/gl/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+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" @@ -57,31 +57,35 @@ msgstr "Ficheiros" msgid "Delete" msgstr "Eliminar" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "xa existe" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "substituír" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "cancelar" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "substituído" -#: js/filelist.js:195 -msgid "with" -msgstr "con" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "desfacer" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "con" + +#: js/filelist.js:271 msgid "deleted" msgstr "eliminado" @@ -97,44 +101,44 @@ msgstr "Non se puido subir o ficheiro pois ou é un directorio ou ten 0 bytes" msgid "Upload Error" msgstr "Erro na subida" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "Pendentes" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "Subida cancelada." -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "Nome non válido, '/' non está permitido." -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Tamaño" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Modificado" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "cartafol" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "cartafoles" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "ficheiro" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "ficheiros" diff --git a/l10n/he/core.po b/l10n/he/core.po index e061910f3cf..babf202fb32 100644 --- a/l10n/he/core.po +++ b/l10n/he/core.po @@ -10,15 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: he\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -32,59 +32,55 @@ msgstr "אין קטגוריה להוספה?" msgid "This category already exists: " msgstr "קטגוריה זאת כבר קיימת: " -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "הגדרות" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "ינואר" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "פברואר" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "מרץ" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "אפריל" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "מאי" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "יוני" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "יולי" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "אוגוסט" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "ספטמבר" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "אוקטובר" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "נובמבר" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "דצמבר" @@ -116,7 +112,7 @@ msgstr "שגיאה" msgid "ownCloud password reset" msgstr "איפוס הססמה של ownCloud" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "יש להשתמש בקישור הבא כדי לאפס את הססמה שלך: {link}" diff --git a/l10n/he/files.po b/l10n/he/files.po index 51db52ac274..808345fa8f7 100644 --- a/l10n/he/files.po +++ b/l10n/he/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+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" @@ -58,31 +58,35 @@ msgstr "קבצים" msgid "Delete" msgstr "מחיקה" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "" -#: js/filelist.js:195 -msgid "with" -msgstr "" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "" + +#: js/filelist.js:271 msgid "deleted" msgstr "" @@ -98,44 +102,44 @@ msgstr "לא יכול להעלות את הקובץ מכיוון שזו תקיה msgid "Upload Error" msgstr "שגיאת העלאה" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "ממתין" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "ההעלאה בוטלה." -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "שם לא חוקי, '/' אסור לשימוש." -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "גודל" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "זמן שינוי" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "תקיה" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "תקיות" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "קובץ" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "קבצים" diff --git a/l10n/hi/core.po b/l10n/hi/core.po index ab39ae01902..67cd5aa9ff7 100644 --- a/l10n/hi/core.po +++ b/l10n/hi/core.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: hi\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -30,59 +30,55 @@ msgstr "" msgid "This category already exists: " msgstr "" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "" @@ -114,7 +110,7 @@ msgstr "" msgid "ownCloud password reset" msgstr "" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "" diff --git a/l10n/hi/files.po b/l10n/hi/files.po index 58546409d54..b4b909333c0 100644 --- a/l10n/hi/files.po +++ b/l10n/hi/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+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" @@ -55,31 +55,35 @@ msgstr "" msgid "Delete" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "" -#: js/filelist.js:195 -msgid "with" -msgstr "" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "" + +#: js/filelist.js:271 msgid "deleted" msgstr "" @@ -95,44 +99,44 @@ msgstr "" msgid "Upload Error" msgstr "" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "" -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "" diff --git a/l10n/hr/core.po b/l10n/hr/core.po index 6e8a4982438..3c0fc971861 100644 --- a/l10n/hr/core.po +++ b/l10n/hr/core.po @@ -10,15 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: hr\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n" +"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" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -32,59 +32,55 @@ msgstr "Nemate kategorija koje možete dodati?" msgid "This category already exists: " msgstr "Ova kategorija već postoji: " -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Postavke" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "Siječanj" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "Veljača" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "Ožujak" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "Travanj" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "Svibanj" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "Lipanj" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "Srpanj" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "Kolovoz" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "Rujan" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "Listopad" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "Studeni" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "Prosinac" @@ -116,7 +112,7 @@ msgstr "Pogreška" msgid "ownCloud password reset" msgstr "ownCloud resetiranje lozinke" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Koristite ovaj link da biste poništili lozinku: {link}" diff --git a/l10n/hr/files.po b/l10n/hr/files.po index c0d12a58c89..6163c004ba4 100644 --- a/l10n/hr/files.po +++ b/l10n/hr/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+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" @@ -58,31 +58,35 @@ msgstr "Datoteke" msgid "Delete" msgstr "Briši" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "već postoji" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "zamjeni" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "odustani" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "zamjenjeno" -#: js/filelist.js:195 -msgid "with" -msgstr "sa" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "vrati" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "sa" + +#: js/filelist.js:271 msgid "deleted" msgstr "izbrisano" @@ -98,44 +102,44 @@ msgstr "Nemoguće poslati datoteku jer je prazna ili je direktorij" msgid "Upload Error" msgstr "Pogreška pri slanju" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "U tijeku" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "Slanje poništeno." -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "Neispravan naziv, znak '/' nije dozvoljen." -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Veličina" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Zadnja promjena" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "mapa" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "mape" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "datoteka" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "datoteke" diff --git a/l10n/hu_HU/core.po b/l10n/hu_HU/core.po index 3e89b7e6afe..6d1680b032c 100644 --- a/l10n/hu_HU/core.po +++ b/l10n/hu_HU/core.po @@ -10,15 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "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" "Content-Transfer-Encoding: 8bit\n" "Language: hu_HU\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -32,59 +32,55 @@ msgstr "Nincs hozzáadandó kategória?" msgid "This category already exists: " msgstr "Ez a kategória már létezik" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Beállítások" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "Január" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "Február" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "Március" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "Április" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "Május" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "Június" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "Július" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "Augusztus" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "Szeptember" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "Október" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "November" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "December" @@ -116,7 +112,7 @@ msgstr "Hiba" msgid "ownCloud password reset" msgstr "ownCloud jelszó-visszaállítás" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Használja az alábbi linket a jelszó-visszaállításhoz: {link}" diff --git a/l10n/hu_HU/files.po b/l10n/hu_HU/files.po index a2baaea8442..ca00f037928 100644 --- a/l10n/hu_HU/files.po +++ b/l10n/hu_HU/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+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" @@ -58,31 +58,35 @@ msgstr "Fájlok" msgid "Delete" msgstr "Törlés" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "már létezik" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "cserél" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "mégse" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "kicserélve" -#: js/filelist.js:195 -msgid "with" -msgstr "-val/-vel" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "visszavon" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "-val/-vel" + +#: js/filelist.js:271 msgid "deleted" msgstr "törölve" @@ -98,44 +102,44 @@ msgstr "Nem tölthető fel, mert mappa volt, vagy 0 byte méretű" msgid "Upload Error" msgstr "Feltöltési hiba" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "Folyamatban" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "Feltöltés megszakítva" -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "Érvénytelen név, a '/' nem megengedett" -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Méret" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Módosítva" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "mappa" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "mappák" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "fájl" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "fájlok" diff --git a/l10n/hy/core.po b/l10n/hy/core.po index 046e483eccb..bd1b74571d7 100644 --- a/l10n/hy/core.po +++ b/l10n/hy/core.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: hy\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -29,59 +29,55 @@ msgstr "" msgid "This category already exists: " msgstr "" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "" @@ -113,7 +109,7 @@ msgstr "" msgid "ownCloud password reset" msgstr "" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "" diff --git a/l10n/hy/files.po b/l10n/hy/files.po index fdc067d3262..e94b8536495 100644 --- a/l10n/hy/files.po +++ b/l10n/hy/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+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" @@ -55,31 +55,35 @@ msgstr "" msgid "Delete" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "" -#: js/filelist.js:195 -msgid "with" -msgstr "" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "" + +#: js/filelist.js:271 msgid "deleted" msgstr "" @@ -95,44 +99,44 @@ msgstr "" msgid "Upload Error" msgstr "" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "" -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "" diff --git a/l10n/ia/core.po b/l10n/ia/core.po index cc9ee26ccc5..100482b0244 100644 --- a/l10n/ia/core.po +++ b/l10n/ia/core.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ia\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -30,59 +30,55 @@ msgstr "" msgid "This category already exists: " msgstr "Iste categoria jam existe:" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Configurationes" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "" @@ -114,7 +110,7 @@ msgstr "" msgid "ownCloud password reset" msgstr "Reinitialisation del contrasigno de ownCLoud" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "" diff --git a/l10n/ia/files.po b/l10n/ia/files.po index b2010914e28..0324e32bd0b 100644 --- a/l10n/ia/files.po +++ b/l10n/ia/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+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" @@ -57,31 +57,35 @@ msgstr "Files" msgid "Delete" msgstr "Deler" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "" -#: js/filelist.js:195 -msgid "with" -msgstr "" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "" + +#: js/filelist.js:271 msgid "deleted" msgstr "" @@ -97,44 +101,44 @@ msgstr "" msgid "Upload Error" msgstr "" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "" -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Dimension" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Modificate" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "" diff --git a/l10n/id/core.po b/l10n/id/core.po index 1b1676d042b..9cb0f7651e1 100644 --- a/l10n/id/core.po +++ b/l10n/id/core.po @@ -10,15 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: id\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -32,59 +32,55 @@ msgstr "Tidak ada kategori yang akan ditambahkan?" msgid "This category already exists: " msgstr "Kategori ini sudah ada:" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Setelan" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "Januari" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "Februari" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "Maret" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "April" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "Mei" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "Juni" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "Juli" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "Agustus" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "September" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "Oktober" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "Nopember" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "Desember" @@ -116,7 +112,7 @@ msgstr "" msgid "ownCloud password reset" msgstr "reset password ownCloud" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Gunakan tautan berikut untuk mereset password anda: {link}" diff --git a/l10n/id/files.po b/l10n/id/files.po index 806ae3250e2..5e1a38df08a 100644 --- a/l10n/id/files.po +++ b/l10n/id/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+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" @@ -58,31 +58,35 @@ msgstr "Berkas" msgid "Delete" msgstr "Hapus" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "sudah ada" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "mengganti" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "batalkan" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "diganti" -#: js/filelist.js:195 -msgid "with" -msgstr "dengan" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "batal dikerjakan" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "dengan" + +#: js/filelist.js:271 msgid "deleted" msgstr "dihapus" @@ -98,44 +102,44 @@ msgstr "Gagal mengunggah berkas anda karena berupa direktori atau mempunyai ukur msgid "Upload Error" msgstr "Terjadi Galat Pengunggahan" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "Menunggu" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "Pengunggahan dibatalkan." -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "Kesalahan nama, '/' tidak diijinkan." -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Ukuran" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Dimodifikasi" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "folder" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "folder-folder" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "berkas" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "berkas-berkas" diff --git a/l10n/id_ID/core.po b/l10n/id_ID/core.po index 7227d27665c..a7ada9179b8 100644 --- a/l10n/id_ID/core.po +++ b/l10n/id_ID/core.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (Indonesia) (http://www.transifex.com/projects/p/owncloud/language/id_ID/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: id_ID\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -29,59 +29,55 @@ msgstr "" msgid "This category already exists: " msgstr "" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "" @@ -113,7 +109,7 @@ msgstr "" msgid "ownCloud password reset" msgstr "" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "" diff --git a/l10n/id_ID/files.po b/l10n/id_ID/files.po index a138ce1d22c..3ef54242d32 100644 --- a/l10n/id_ID/files.po +++ b/l10n/id_ID/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (Indonesia) (http://www.transifex.com/projects/p/owncloud/language/id_ID/)\n" "MIME-Version: 1.0\n" @@ -55,31 +55,35 @@ msgstr "" msgid "Delete" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "" -#: js/filelist.js:195 -msgid "with" -msgstr "" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "" + +#: js/filelist.js:271 msgid "deleted" msgstr "" @@ -95,44 +99,44 @@ msgstr "" msgid "Upload Error" msgstr "" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "" -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "" diff --git a/l10n/it/core.po b/l10n/it/core.po index 281cd036adb..39884ebdc9d 100644 --- a/l10n/it/core.po +++ b/l10n/it/core.po @@ -12,15 +12,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-08-31 05:26+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" +"Last-Translator: I Robot \n" "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" "Content-Transfer-Encoding: 8bit\n" "Language: it\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -34,59 +34,55 @@ msgstr "Nessuna categoria da aggiungere?" msgid "This category already exists: " msgstr "Questa categoria esiste già: " -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Impostazioni" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "Gennaio" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "Febbraio" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "Marzo" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "Aprile" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "Maggio" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "Giugno" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "Luglio" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "Agosto" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "Settembre" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "Ottobre" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "Novembre" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "Dicembre" @@ -118,7 +114,7 @@ msgstr "Errore" msgid "ownCloud password reset" msgstr "Ripristino password di ownCloud" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Usa il collegamento seguente per ripristinare la password: {link}" diff --git a/l10n/it/files.po b/l10n/it/files.po index 29c50647d14..daa29074e68 100644 --- a/l10n/it/files.po +++ b/l10n/it/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -59,31 +59,35 @@ msgstr "File" msgid "Delete" msgstr "Elimina" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "esiste già" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "sostituisci" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "annulla" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "sostituito" -#: js/filelist.js:195 -msgid "with" -msgstr "con" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "annulla" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "con" + +#: js/filelist.js:271 msgid "deleted" msgstr "eliminati" @@ -99,44 +103,44 @@ msgstr "Impossibile inviare il file poiché è una cartella o ha dimensione 0 by msgid "Upload Error" msgstr "Errore di invio" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "In corso" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "Invio annullato" -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Caricamento del file in corso. La chiusura della pagina annullerà il caricamento." -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "Nome non valido" -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Dimensione" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Modificato" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "cartella" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "cartelle" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "file" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "file" @@ -170,7 +174,7 @@ msgstr "Dimensione massima per i file ZIP" #: templates/admin.php:14 msgid "Save" -msgstr "" +msgstr "Salva" #: templates/index.php:7 msgid "New" diff --git a/l10n/it/settings.po b/l10n/it/settings.po index 7a1601c8818..1ec0daf688c 100644 --- a/l10n/it/settings.po +++ b/l10n/it/settings.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 05:39+0000\n" +"Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -72,12 +72,12 @@ msgstr "Lingua modificata" #: ajax/togglegroups.php:25 #, php-format msgid "Unable to add user to group %s" -msgstr "" +msgstr "Impossibile aggiungere l'utente al gruppo %s" #: ajax/togglegroups.php:31 #, php-format msgid "Unable to remove user from group %s" -msgstr "" +msgstr "Impossibile rimuovere l'utente dal gruppo %s" #: js/apps.js:18 msgid "Error" @@ -196,7 +196,7 @@ msgstr "Vedere la pagina dell'applicazione su apps.owncloud.com" #: templates/apps.php:30 msgid "-licensed by " -msgstr "" +msgstr "-licenziato da " #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/ja_JP/core.po b/l10n/ja_JP/core.po index d0d6924197f..139012d619a 100644 --- a/l10n/ja_JP/core.po +++ b/l10n/ja_JP/core.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-08-31 07:44+0000\n" -"Last-Translator: ttyn \n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" +"Last-Translator: I Robot \n" "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" "Content-Transfer-Encoding: 8bit\n" "Language: ja_JP\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -31,59 +31,55 @@ msgstr "追加するカテゴリはありませんか?" msgid "This category already exists: " msgstr "このカテゴリはすでに存在します: " -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "設定" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "1月" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "2月" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "3月" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "4月" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "5月" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "6月" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "7月" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "8月" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "9月" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "10月" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "11月" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "12月" @@ -115,7 +111,7 @@ msgstr "エラー" msgid "ownCloud password reset" msgstr "ownCloudのパスワードをリセットします" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "パスワードをリセットするには次のリンクをクリックして下さい: {link}" diff --git a/l10n/ja_JP/files.po b/l10n/ja_JP/files.po index 74741422170..c73d204ecbc 100644 --- a/l10n/ja_JP/files.po +++ b/l10n/ja_JP/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+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" @@ -57,31 +57,35 @@ msgstr "ファイル" msgid "Delete" msgstr "削除" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "既に存在します" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "置き換え" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "キャンセル" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "置換:" -#: js/filelist.js:195 -msgid "with" -msgstr "←" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "元に戻す" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "←" + +#: js/filelist.js:271 msgid "deleted" msgstr "削除" @@ -97,44 +101,44 @@ msgstr "アップロード使用としているファイルがディレクトリ msgid "Upload Error" msgstr "アップロードエラー" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "保留" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "アップロードはキャンセルされました。" -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "ファイル転送を実行中です。今このページから移動するとアップロードが中止されます。" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "無効な名前、'/' は使用できません。" -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "サイズ" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "更新日時" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "フォルダ" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "フォルダ" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "ファイル" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "ファイル" @@ -168,7 +172,7 @@ msgstr "ZIPファイルへの最大入力サイズ" #: templates/admin.php:14 msgid "Save" -msgstr "" +msgstr "保存" #: templates/index.php:7 msgid "New" diff --git a/l10n/ja_JP/settings.po b/l10n/ja_JP/settings.po index b98da01025a..9652d0d9757 100644 --- a/l10n/ja_JP/settings.po +++ b/l10n/ja_JP/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 02:09+0000\n" +"Last-Translator: Daisuke Deguchi \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,11 +30,11 @@ msgstr "認証エラー" #: ajax/creategroup.php:19 msgid "Group already exists" -msgstr "" +msgstr "グループは既に存在しています" #: ajax/creategroup.php:28 msgid "Unable to add group" -msgstr "" +msgstr "グループを追加できません" #: ajax/lostpassword.php:14 msgid "Email saved" @@ -54,11 +54,11 @@ msgstr "無効なリクエストです" #: ajax/removegroup.php:16 msgid "Unable to delete group" -msgstr "" +msgstr "グループを削除できません" #: ajax/removeuser.php:22 msgid "Unable to delete user" -msgstr "" +msgstr "ユーザを削除できません" #: ajax/setlanguage.php:18 msgid "Language changed" @@ -67,12 +67,12 @@ msgstr "言語が変更されました" #: ajax/togglegroups.php:25 #, php-format msgid "Unable to add user to group %s" -msgstr "" +msgstr "ユーザをグループ %s に追加できません" #: ajax/togglegroups.php:31 #, php-format msgid "Unable to remove user from group %s" -msgstr "" +msgstr "ユーザをグループ %s から削除できません" #: js/apps.js:18 msgid "Error" @@ -191,7 +191,7 @@ msgstr "apps.owncloud.com でアプリケーションのページを見てくだ #: templates/apps.php:30 msgid "-licensed by " -msgstr "" +msgstr "-ライセンス: " #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/ko/core.po b/l10n/ko/core.po index d414be77531..4d2f0561de8 100644 --- a/l10n/ko/core.po +++ b/l10n/ko/core.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "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" "Content-Transfer-Encoding: 8bit\n" "Language: ko\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -31,59 +31,55 @@ msgstr "추가할 카테고리가 없습니까?" msgid "This category already exists: " msgstr "이 카테고리는 이미 존재합니다:" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "설정" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "1월" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "2월" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "3월" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "4월" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "5월" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "6월" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "7월" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "8월" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "9월" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "10월" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "11월" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "12월" @@ -115,7 +111,7 @@ msgstr "에러" msgid "ownCloud password reset" msgstr "ownCloud 비밀번호 재설정" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "다음 링크를 사용하여 암호를 초기화할 수 있습니다: {link}" diff --git a/l10n/ko/files.po b/l10n/ko/files.po index 05dda7be5a3..2abe6f9ed62 100644 --- a/l10n/ko/files.po +++ b/l10n/ko/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+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" @@ -57,31 +57,35 @@ msgstr "파일" msgid "Delete" msgstr "삭제" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "이미 존재 합니다" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "대체" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "취소" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "대체됨" -#: js/filelist.js:195 -msgid "with" -msgstr "와" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "복구" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "와" + +#: js/filelist.js:271 msgid "deleted" msgstr "삭제" @@ -97,44 +101,44 @@ msgstr "이 파일은 디렉토리이거나 0 바이트이기 때문에 업로 msgid "Upload Error" msgstr "업로드 에러" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "보류 중" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "업로드 취소." -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "잘못된 이름, '/' 은 허용이 되지 않습니다." -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "크기" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "수정됨" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "폴더" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "폴더" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "파일" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "파일" diff --git a/l10n/lb/core.po b/l10n/lb/core.po index a9de0752461..6c3da7e6b59 100644 --- a/l10n/lb/core.po +++ b/l10n/lb/core.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-04 02:01+0200\n" -"PO-Revision-Date: 2012-09-03 21:47+0000\n" -"Last-Translator: sim0n \n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,59 +30,55 @@ msgstr "Keng Kategorie fir bäizesetzen?" msgid "This category already exists: " msgstr "Des Kategorie existéiert schonn:" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Astellungen" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "Januar" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "Februar" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "Mäerz" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "Abrëll" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "Mee" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "Juni" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "Juli" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "August" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "September" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "Oktober" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "November" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "Dezember" @@ -114,7 +110,7 @@ msgstr "Fehler" msgid "ownCloud password reset" msgstr "ownCloud Passwuert reset" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Benotz folgende Link fir däi Passwuert ze reseten: {link}" diff --git a/l10n/lb/files.po b/l10n/lb/files.po index bda384f1ce1..bdce420aa1c 100644 --- a/l10n/lb/files.po +++ b/l10n/lb/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+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" @@ -56,31 +56,35 @@ msgstr "Dateien" msgid "Delete" msgstr "Läschen" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "existéiert schonn" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "ersetzen" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "ofbriechen" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "ersat" -#: js/filelist.js:195 -msgid "with" -msgstr "mat" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "réckgängeg man" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "mat" + +#: js/filelist.js:271 msgid "deleted" msgstr "geläscht" @@ -96,44 +100,44 @@ msgstr "Kann deng Datei net eroplueden well et en Dossier ass oder 0 byte grouss msgid "Upload Error" msgstr "Fehler beim eroplueden" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "Upload ofgebrach." -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "File Upload am gaang. Wann's de des Säit verléiss gëtt den Upload ofgebrach." -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "Ongültege Numm, '/' net erlaabt." -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Gréisst" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Geännert" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "Dossier" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "Dossieren" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "Datei" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "Dateien" diff --git a/l10n/lt_LT/core.po b/l10n/lt_LT/core.po index d2e08de4377..1e9dd8d63af 100644 --- a/l10n/lt_LT/core.po +++ b/l10n/lt_LT/core.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "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" "Content-Transfer-Encoding: 8bit\n" "Language: lt_LT\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2)\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -30,59 +30,55 @@ msgstr "Nepridėsite jokios kategorijos?" msgid "This category already exists: " msgstr "Tokia kategorija jau yra:" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Nustatymai" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "Sausis" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "Vasaris" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "Kovas" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "Balandis" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "Gegužė" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "Birželis" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "Liepa" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "Rugpjūtis" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "Rugsėjis" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "Spalis" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "Lapkritis" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "Gruodis" @@ -114,7 +110,7 @@ msgstr "Klaida" msgid "ownCloud password reset" msgstr "ownCloud slaptažodžio atkūrimas" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Slaptažodio atkūrimui naudokite šią nuorodą: {link}" diff --git a/l10n/lt_LT/files.po b/l10n/lt_LT/files.po index 1aff17e92e2..058124ee7fa 100644 --- a/l10n/lt_LT/files.po +++ b/l10n/lt_LT/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+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" @@ -57,31 +57,35 @@ msgstr "Failai" msgid "Delete" msgstr "Ištrinti" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "atšaukti" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "" -#: js/filelist.js:195 -msgid "with" -msgstr "" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "" + +#: js/filelist.js:271 msgid "deleted" msgstr "" @@ -97,44 +101,44 @@ msgstr "Neįmanoma įkelti failo - jo dydis gali būti 0 bitų arba tai kataloga msgid "Upload Error" msgstr "Įkėlimo klaida" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "Laukiantis" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "Įkėlimas atšauktas." -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "Pavadinime negali būti naudojamas ženklas \"/\"." -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Dydis" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Pakeista" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "katalogas" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "katalogai" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "failas" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "failai" diff --git a/l10n/lv/core.po b/l10n/lv/core.po index 35b9d2e8087..3716a06f25b 100644 --- a/l10n/lv/core.po +++ b/l10n/lv/core.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "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" "Content-Transfer-Encoding: 8bit\n" "Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2)\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -30,59 +30,55 @@ msgstr "" msgid "This category already exists: " msgstr "" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Iestatījumi" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "" @@ -114,7 +110,7 @@ msgstr "" msgid "ownCloud password reset" msgstr "" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Izmantojiet šo linku lai mainītu paroli" diff --git a/l10n/lv/files.po b/l10n/lv/files.po index b6fb8d8d076..5b5c7464b7d 100644 --- a/l10n/lv/files.po +++ b/l10n/lv/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+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" @@ -56,31 +56,35 @@ msgstr "Faili" msgid "Delete" msgstr "Izdzēst" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "tāds fails jau eksistē" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "aizvietot" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "atcelt" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "aizvietots" -#: js/filelist.js:195 -msgid "with" -msgstr "ar" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "vienu soli atpakaļ" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "ar" + +#: js/filelist.js:271 msgid "deleted" msgstr "izdzests" @@ -96,44 +100,44 @@ msgstr "Nav iespējams augšuplādēt jūsu failu, jo tāds jau eksistē vai ar msgid "Upload Error" msgstr "Augšuplādēšanas laikā radās kļūda" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "Gaida savu kārtu" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "Augšuplāde ir atcelta" -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "Šis simbols '/', nav atļauts." -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Izmērs" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Izmainīts" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "mape" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "mapes" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "fails" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "faili" diff --git a/l10n/mk/core.po b/l10n/mk/core.po index b8fbb8b2a1d..f818b6bad6c 100644 --- a/l10n/mk/core.po +++ b/l10n/mk/core.po @@ -10,15 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "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" "Content-Transfer-Encoding: 8bit\n" "Language: mk\n" -"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1\n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -32,59 +32,55 @@ msgstr "Нема категорија да се додаде?" msgid "This category already exists: " msgstr "Оваа категорија веќе постои:" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Поставки" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "Јануари" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "Февруари" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "Март" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "Април" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "Мај" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "Јуни" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "Јули" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "Август" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "Септември" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "Октомври" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "Ноември" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "Декември" @@ -116,7 +112,7 @@ msgstr "Грешка" msgid "ownCloud password reset" msgstr "ресетирање на лозинка за ownCloud" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Користете ја следната врска да ја ресетирате Вашата лозинка: {link}" diff --git a/l10n/mk/files.po b/l10n/mk/files.po index 2ddfad5b8ce..7b01b543419 100644 --- a/l10n/mk/files.po +++ b/l10n/mk/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+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" @@ -58,31 +58,35 @@ msgstr "Датотеки" msgid "Delete" msgstr "Избриши" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "" -#: js/filelist.js:195 -msgid "with" -msgstr "" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "" + +#: js/filelist.js:271 msgid "deleted" msgstr "" @@ -98,44 +102,44 @@ msgstr "Не може да се преземе вашата датотека б msgid "Upload Error" msgstr "Грешка при преземање" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "Чека" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "Преземањето е прекинато." -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "неисправно име, '/' не е дозволено." -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Големина" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Променето" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "фолдер" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "фолдери" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "датотека" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "датотеки" diff --git a/l10n/ms_MY/core.po b/l10n/ms_MY/core.po index 76453523a6c..9902f55e846 100644 --- a/l10n/ms_MY/core.po +++ b/l10n/ms_MY/core.po @@ -10,15 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ms_MY\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -32,59 +32,55 @@ msgstr "Tiada kategori untuk di tambah?" msgid "This category already exists: " msgstr "Kategori ini telah wujud" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Tetapan" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "Januari" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "Februari" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "Mac" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "April" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "Mei" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "Jun" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "Julai" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "Ogos" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "September" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "Oktober" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "November" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "Disember" @@ -116,7 +112,7 @@ msgstr "Ralat" msgid "ownCloud password reset" msgstr "Set semula kata lalaun ownCloud" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Guna pautan berikut untuk menetapkan semula kata laluan anda: {link}" diff --git a/l10n/ms_MY/files.po b/l10n/ms_MY/files.po index 9ba3bb1e22b..8c80a09dc7c 100644 --- a/l10n/ms_MY/files.po +++ b/l10n/ms_MY/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+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" @@ -59,31 +59,35 @@ msgstr "fail" msgid "Delete" msgstr "Padam" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "Sudah wujud" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "ganti" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "Batal" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "diganti" -#: js/filelist.js:195 -msgid "with" -msgstr "dengan" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "dengan" + +#: js/filelist.js:271 msgid "deleted" msgstr "dihapus" @@ -99,44 +103,44 @@ msgstr "Tidak boleh memuatnaik fail anda kerana mungkin ianya direktori atau sai msgid "Upload Error" msgstr "Muat naik ralat" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "Dalam proses" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "Muatnaik dibatalkan." -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "penggunaa nama tidak sah, '/' tidak dibenarkan." -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Saiz" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Dimodifikasi" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "direktori" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "direktori" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "fail" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "fail" diff --git a/l10n/nb_NO/core.po b/l10n/nb_NO/core.po index 7f1fc5fdb4e..edb38d95e59 100644 --- a/l10n/nb_NO/core.po +++ b/l10n/nb_NO/core.po @@ -12,15 +12,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: nb_NO\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -34,59 +34,55 @@ msgstr "Ingen kategorier å legge til?" msgid "This category already exists: " msgstr "Denne kategorien finnes allerede:" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Innstillinger" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "Januar" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "Februar" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "Mars" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "April" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "Mai" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "Juni" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "Juli" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "August" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "September" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "Oktober" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "November" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "Desember" @@ -118,7 +114,7 @@ msgstr "Feil" msgid "ownCloud password reset" msgstr "Tilbakestill ownCloud passord" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Bruk følgende lenke for å tilbakestille passordet ditt: {link}" diff --git a/l10n/nb_NO/files.po b/l10n/nb_NO/files.po index a65a66c9649..c39e87c9823 100644 --- a/l10n/nb_NO/files.po +++ b/l10n/nb_NO/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+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" @@ -60,31 +60,35 @@ msgstr "Filer" msgid "Delete" msgstr "Slett" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "eksisterer allerede" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "erstatt" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "avbryt" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "erstattet" -#: js/filelist.js:195 -msgid "with" -msgstr "med" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "angre" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "med" + +#: js/filelist.js:271 msgid "deleted" msgstr "slettet" @@ -100,44 +104,44 @@ msgstr "Kan ikke laste opp filen din siden det er en mappe eller den har 0 bytes msgid "Upload Error" msgstr "Opplasting feilet" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "Ventende" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "Opplasting avbrutt." -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "Ugyldig navn, '/' er ikke tillatt. " -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Størrelse" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Endret" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "mappe" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "mapper" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "fil" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "filer" diff --git a/l10n/nl/core.po b/l10n/nl/core.po index 2a40cf05712..03a847800eb 100644 --- a/l10n/nl/core.po +++ b/l10n/nl/core.po @@ -4,6 +4,7 @@ # # Translators: # , 2011. +# , 2012. # Erik Bent , 2012. # , 2011. # , 2012. @@ -14,15 +15,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-02 02:01+0200\n" -"PO-Revision-Date: 2012-09-01 20:13+0000\n" -"Last-Translator: Richard Bos \n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" +"Last-Translator: I Robot \n" "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" "Content-Transfer-Encoding: 8bit\n" "Language: nl\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -36,59 +37,55 @@ msgstr "Geen categorie toevoegen?" msgid "This category already exists: " msgstr "De categorie bestaat al." -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Instellingen" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "Januari" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "Februari" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "Maart" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "April" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "Mei" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "Juni" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "Juli" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "Augustus" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "September" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "Oktober" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "November" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "December" @@ -120,7 +117,7 @@ msgstr "Fout" msgid "ownCloud password reset" msgstr "ownCloud wachtwoord herstellen" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Gebruik de volgende link om je wachtwoord te resetten: {link}" @@ -147,7 +144,7 @@ msgstr "Resetaanvraag" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" -msgstr "Je wachtwoord is geweizigd" +msgstr "Je wachtwoord is gewijzigd" #: lostpassword/templates/resetpassword.php:5 msgid "To login page" diff --git a/l10n/nl/files.po b/l10n/nl/files.po index 96f7a87e84e..b710bae7f68 100644 --- a/l10n/nl/files.po +++ b/l10n/nl/files.po @@ -5,6 +5,7 @@ # Translators: # , 2011. # , 2011. +# , 2012. # Erik Bent , 2012. # , 2011. # , 2012. @@ -15,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -63,31 +64,35 @@ msgstr "Bestanden" msgid "Delete" msgstr "Verwijder" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "bestaat al" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "vervang" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "annuleren" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "vervangen" -#: js/filelist.js:195 -msgid "with" -msgstr "door" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "ongedaan maken" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "door" + +#: js/filelist.js:271 msgid "deleted" msgstr "verwijderd" @@ -103,44 +108,44 @@ msgstr "uploaden van de file mislukt, het is of een directory of de bestandsgroo msgid "Upload Error" msgstr "Upload Fout" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "Wachten" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "Uploaden geannuleerd." -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "" +msgstr "Bestands upload is bezig. Wanneer de pagina nu verlaten wordt, stopt de upload." -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "Ongeldige naam, '/' is niet toegestaan." -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Bestandsgrootte" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Laatst aangepast" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "map" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "mappen" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "bestand" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "bestanden" @@ -174,7 +179,7 @@ msgstr "Maximale grootte voor ZIP bestanden" #: templates/admin.php:14 msgid "Save" -msgstr "" +msgstr "Opslaan" #: templates/index.php:7 msgid "New" diff --git a/l10n/nl/files_sharing.po b/l10n/nl/files_sharing.po index 48b5c0641ae..7027b587198 100644 --- a/l10n/nl/files_sharing.po +++ b/l10n/nl/files_sharing.po @@ -3,28 +3,29 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. # Richard Bos , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 08:29+0000\n" -"Last-Translator: Richard Bos \n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 11:13+0000\n" +"Last-Translator: diederikdehaas \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" "Content-Transfer-Encoding: 8bit\n" "Language: nl\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 msgid "Password" -msgstr "Passeerwoord" +msgstr "Wachtwoord" #: templates/authenticate.php:6 msgid "Submit" -msgstr "" +msgstr "Verzenden" #: templates/public.php:9 templates/public.php:19 msgid "Download" @@ -34,6 +35,6 @@ msgstr "Downloaden" msgid "No preview available for" msgstr "Geen voorbeeldweergave beschikbaar voor" -#: templates/public.php:23 +#: templates/public.php:25 msgid "web services under your control" msgstr "Webdiensten in eigen beheer" diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index 3c52376d35c..207f04819e1 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/settings.po @@ -4,6 +4,7 @@ # # Translators: # , 2011. +# , 2012. # Erik Bent , 2012. # , 2011, 2012. # , 2012. @@ -14,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 11:28+0000\n" +"Last-Translator: diederikdehaas \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" @@ -35,11 +36,11 @@ msgstr "Authenticatie fout" #: ajax/creategroup.php:19 msgid "Group already exists" -msgstr "" +msgstr "Groep bestaat al" #: ajax/creategroup.php:28 msgid "Unable to add group" -msgstr "" +msgstr "Niet in staat om groep toe te voegen" #: ajax/lostpassword.php:14 msgid "Email saved" @@ -59,11 +60,11 @@ msgstr "Ongeldig verzoek" #: ajax/removegroup.php:16 msgid "Unable to delete group" -msgstr "" +msgstr "Niet in staat om groep te verwijderen" #: ajax/removeuser.php:22 msgid "Unable to delete user" -msgstr "" +msgstr "Niet in staat om gebruiker te verwijderen" #: ajax/setlanguage.php:18 msgid "Language changed" @@ -72,12 +73,12 @@ msgstr "Taal aangepast" #: ajax/togglegroups.php:25 #, php-format msgid "Unable to add user to group %s" -msgstr "" +msgstr "Niet in staat om gebruiker toe te voegen aan groep %s" #: ajax/togglegroups.php:31 #, php-format msgid "Unable to remove user from group %s" -msgstr "" +msgstr "Niet in staat om gebruiker te verwijderen uit groep %s" #: js/apps.js:18 msgid "Error" @@ -180,7 +181,7 @@ msgid "" "licensed under the AGPL." -msgstr "" +msgstr "Ontwikkeld door de ownCloud gemeenschap, de bron code is gelicenseerd onder de AGPL." #: templates/apps.php:10 msgid "Add your App" @@ -196,7 +197,7 @@ msgstr "Zie de applicatiepagina op apps.owncloud.com" #: templates/apps.php:30 msgid "-licensed by " -msgstr "" +msgstr "-Gelicenseerd door " #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/nn_NO/core.po b/l10n/nn_NO/core.po index aa0a9a4c8be..ea34767b84e 100644 --- a/l10n/nn_NO/core.po +++ b/l10n/nn_NO/core.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "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" "Content-Transfer-Encoding: 8bit\n" "Language: nn_NO\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -31,59 +31,55 @@ msgstr "" msgid "This category already exists: " msgstr "" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Innstillingar" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "" @@ -115,7 +111,7 @@ msgstr "" msgid "ownCloud password reset" msgstr "" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Bruk føljane link til å tilbakestille passordet ditt: {link}" diff --git a/l10n/nn_NO/files.po b/l10n/nn_NO/files.po index 9bf43656e8a..fc058e3f3ea 100644 --- a/l10n/nn_NO/files.po +++ b/l10n/nn_NO/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+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" @@ -57,31 +57,35 @@ msgstr "Filer" msgid "Delete" msgstr "Slett" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "" -#: js/filelist.js:195 -msgid "with" -msgstr "" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "" + +#: js/filelist.js:271 msgid "deleted" msgstr "" @@ -97,44 +101,44 @@ msgstr "" msgid "Upload Error" msgstr "" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "" -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Storleik" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Endra" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "" diff --git a/l10n/pl/core.po b/l10n/pl/core.po index 3889b13622d..0cd447bf8ed 100644 --- a/l10n/pl/core.po +++ b/l10n/pl/core.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-04 02:01+0200\n" -"PO-Revision-Date: 2012-09-03 06:40+0000\n" -"Last-Translator: Cyryl Sochacki <>\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" +"Last-Translator: I Robot \n" "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" @@ -35,59 +35,55 @@ msgstr "Brak kategorii" msgid "This category already exists: " msgstr "Ta kategoria już istnieje" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Ustawienia" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "Styczeń" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "Luty" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "Marzec" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "Kwiecień" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "Maj" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "Czerwiec" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "Lipiec" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "Sierpień" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "Wrzesień" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "Październik" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "Listopad" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "Grudzień" @@ -119,7 +115,7 @@ msgstr "Błąd" msgid "ownCloud password reset" msgstr "restart hasła" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Proszę użyć tego odnośnika do zresetowania hasła: {link}" diff --git a/l10n/pl/files.po b/l10n/pl/files.po index cce7204605e..2512f6db596 100644 --- a/l10n/pl/files.po +++ b/l10n/pl/files.po @@ -6,13 +6,14 @@ # Cyryl Sochacki <>, 2012. # Marcin Małecki , 2011, 2012. # , 2011. +# , 2012. # Piotr Sokół , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -59,31 +60,35 @@ msgstr "Pliki" msgid "Delete" msgstr "Usuwa element" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "Już istnieje" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "zastap" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "anuluj" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "zastąpione" -#: js/filelist.js:195 -msgid "with" -msgstr "z" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "wróć" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "z" + +#: js/filelist.js:271 msgid "deleted" msgstr "skasuj" @@ -99,44 +104,44 @@ msgstr "Nie można wczytać pliku jeśli jest katalogiem lub ma 0 bajtów" msgid "Upload Error" msgstr "Błąd wczytywania" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "Oczekujące" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "Wczytywanie anulowane." -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Wysyłanie pliku jest w toku. Teraz opuszczając stronę wysyłanie zostanie anulowane." -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "Nieprawidłowa nazwa '/' jest niedozwolone." -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Rozmiar" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Czas modyfikacji" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "folder" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "foldery" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "plik" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "pliki" @@ -170,7 +175,7 @@ msgstr "Maksymalna wielkość pliku wejściowego ZIP " #: templates/admin.php:14 msgid "Save" -msgstr "" +msgstr "Zapisz" #: templates/index.php:7 msgid "New" diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index d6fef0cea3e..adfbe39053c 100644 --- a/l10n/pl/settings.po +++ b/l10n/pl/settings.po @@ -9,14 +9,15 @@ # Marcin Małecki , 2011, 2012. # Marcin Małecki , 2011. # , 2011. +# , 2012. # Piotr Sokół , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 12:06+0000\n" +"Last-Translator: emc \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" @@ -72,12 +73,12 @@ msgstr "Język zmieniony" #: ajax/togglegroups.php:25 #, php-format msgid "Unable to add user to group %s" -msgstr "" +msgstr "Nie można dodać użytkownika do grupy %s" #: ajax/togglegroups.php:31 #, php-format msgid "Unable to remove user from group %s" -msgstr "" +msgstr "Nie można usunąć użytkownika z grupy %s" #: js/apps.js:18 msgid "Error" @@ -110,7 +111,7 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "" +msgstr "Twój katalog danych i pliki są prawdopodobnie dostępne z Internetu. Plik .htaccess, który dostarcza ownCloud nie działa. Sugerujemy, aby skonfigurować serwer WWW w taki sposób, aby katalog danych nie był dostępny lub przenieść katalog danych poza główny katalog serwera WWW." #: templates/admin.php:31 msgid "Cron" @@ -146,7 +147,7 @@ msgstr "Zezwalaj na łącza" #: templates/admin.php:52 msgid "Allow users to share items to the public with links" -msgstr "" +msgstr "Zezwalaj użytkownikom na puliczne współdzielenie elementów za pomocą linków" #: templates/admin.php:56 msgid "Allow resharing" @@ -154,15 +155,15 @@ msgstr "Zezwól na ponowne udostępnianie" #: templates/admin.php:57 msgid "Allow users to share items shared with them again" -msgstr "" +msgstr "Zezwalaj użytkownikom na ponowne współdzielenie elementów już z nimi współdzilonych" #: templates/admin.php:60 msgid "Allow users to share with anyone" -msgstr "" +msgstr "Zezwalaj użytkownikom na współdzielenie z kimkolwiek" #: templates/admin.php:62 msgid "Allow users to only share with users in their groups" -msgstr "" +msgstr "Zezwalaj użytkownikom współdzielić z użytkownikami ze swoich grup" #: templates/admin.php:69 msgid "Log" @@ -180,7 +181,7 @@ msgid "" "licensed under the AGPL." -msgstr "" +msgstr "Stwirzone przez społeczność ownCloud, the kod źródłowy na licencji AGPL." #: templates/apps.php:10 msgid "Add your App" @@ -196,7 +197,7 @@ msgstr "Zobacz stronę aplikacji na apps.owncloud.com" #: templates/apps.php:30 msgid "-licensed by " -msgstr "" +msgstr "-licencjonowane przez " #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/pl_PL/core.po b/l10n/pl_PL/core.po index f7b7d5a38de..55486564fd2 100644 --- a/l10n/pl_PL/core.po +++ b/l10n/pl_PL/core.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: pl_PL\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -29,59 +29,55 @@ msgstr "" msgid "This category already exists: " msgstr "" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "" @@ -113,7 +109,7 @@ msgstr "" msgid "ownCloud password reset" msgstr "" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "" diff --git a/l10n/pl_PL/files.po b/l10n/pl_PL/files.po index c47ae7e8223..227d04a1ecb 100644 --- a/l10n/pl_PL/files.po +++ b/l10n/pl_PL/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" @@ -55,31 +55,35 @@ msgstr "" msgid "Delete" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "" -#: js/filelist.js:195 -msgid "with" -msgstr "" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "" + +#: js/filelist.js:271 msgid "deleted" msgstr "" @@ -95,44 +99,44 @@ msgstr "" msgid "Upload Error" msgstr "" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "" -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "" diff --git a/l10n/pt_BR/core.po b/l10n/pt_BR/core.po index be5dc9aeb66..6e1c9fdcd9c 100644 --- a/l10n/pt_BR/core.po +++ b/l10n/pt_BR/core.po @@ -12,15 +12,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "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" "Content-Transfer-Encoding: 8bit\n" "Language: pt_BR\n" -"Plural-Forms: nplurals=2; plural=(n > 1)\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -34,59 +34,55 @@ msgstr "Nenhuma categoria adicionada?" msgid "This category already exists: " msgstr "Essa categoria já existe" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Configurações" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "Janeiro" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "Fevereiro" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "Março" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "Abril" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "Maio" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "Junho" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "Julho" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "Agosto" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "Setembro" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "Outubro" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "Novembro" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "Dezembro" @@ -118,7 +114,7 @@ msgstr "Erro" msgid "ownCloud password reset" msgstr "Redefinir senha ownCloud" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Use o seguinte link para redefinir sua senha: {link}" diff --git a/l10n/pt_BR/files.po b/l10n/pt_BR/files.po index 82a5a58bd6e..6e29f6321bf 100644 --- a/l10n/pt_BR/files.po +++ b/l10n/pt_BR/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -60,31 +60,35 @@ msgstr "Arquivos" msgid "Delete" msgstr "Excluir" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "já existe" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "substituir" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "cancelar" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "substituido " -#: js/filelist.js:195 -msgid "with" -msgstr "com" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "desfazer" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "com" + +#: js/filelist.js:271 msgid "deleted" msgstr "deletado" @@ -100,44 +104,44 @@ msgstr "Impossível enviar seus arquivo como diretório ou ele tem 0 bytes." msgid "Upload Error" msgstr "Erro de envio" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "Pendente" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "Envio cancelado." -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "Nome inválido, '/' não é permitido." -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Tamanho" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Modificado" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "pasta" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "pastas" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "arquivo" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "arquivos" diff --git a/l10n/pt_PT/core.po b/l10n/pt_PT/core.po index 159432daa93..ef75d8f6bdf 100644 --- a/l10n/pt_PT/core.po +++ b/l10n/pt_PT/core.po @@ -10,15 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "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" "Content-Transfer-Encoding: 8bit\n" "Language: pt_PT\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -32,59 +32,55 @@ msgstr "Nenhuma categoria para adicionar?" msgid "This category already exists: " msgstr "Esta categoria já existe:" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Definições" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "Janeiro" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "Fevereiro" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "Março" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "Abril" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "Maio" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "Junho" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "Julho" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "Agosto" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "Setembro" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "Outubro" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "Novembro" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "Dezembro" @@ -116,7 +112,7 @@ msgstr "Erro" msgid "ownCloud password reset" msgstr "Reposição da password ownCloud" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Use o seguinte endereço para repor a sua password: {link}" diff --git a/l10n/pt_PT/files.po b/l10n/pt_PT/files.po index 80b71ab553e..c0ba21ecbc6 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+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" @@ -58,31 +58,35 @@ msgstr "Ficheiros" msgid "Delete" msgstr "Apagar" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "Já existe" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "substituir" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "cancelar" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "substituido" -#: js/filelist.js:195 -msgid "with" -msgstr "com" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "desfazer" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "com" + +#: js/filelist.js:271 msgid "deleted" msgstr "apagado" @@ -98,44 +102,44 @@ msgstr "Não é possivel fazer o upload do ficheiro devido a ser uma pasta ou te msgid "Upload Error" msgstr "Erro no upload" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "Pendente" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "O upload foi cancelado." -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "nome inválido, '/' não permitido." -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Tamanho" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Modificado" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "pasta" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "pastas" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "ficheiro" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "ficheiros" diff --git a/l10n/ro/core.po b/l10n/ro/core.po index 40d7fc389f3..42e779595e1 100644 --- a/l10n/ro/core.po +++ b/l10n/ro/core.po @@ -10,15 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ro\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1))\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -32,59 +32,55 @@ msgstr "Nici o categorie de adăugat?" msgid "This category already exists: " msgstr "Această categorie deja există:" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Configurări" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "" @@ -116,7 +112,7 @@ msgstr "" msgid "ownCloud password reset" msgstr "Resetarea parolei ownCloud " -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Folosește următorul link pentru a reseta parola: {link}" diff --git a/l10n/ro/files.po b/l10n/ro/files.po index c9ff62753cc..84051830b49 100644 --- a/l10n/ro/files.po +++ b/l10n/ro/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+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" @@ -58,31 +58,35 @@ msgstr "Fișiere" msgid "Delete" msgstr "Șterge" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "" -#: js/filelist.js:195 -msgid "with" -msgstr "" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "" + +#: js/filelist.js:271 msgid "deleted" msgstr "" @@ -98,44 +102,44 @@ msgstr "" msgid "Upload Error" msgstr "" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "" -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Dimensiune" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Modificat" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "" diff --git a/l10n/ru/core.po b/l10n/ru/core.po index cd7648d5b90..fa6451a38b3 100644 --- a/l10n/ru/core.po +++ b/l10n/ru/core.po @@ -11,15 +11,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "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" "Content-Transfer-Encoding: 8bit\n" "Language: ru\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" +"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" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -33,59 +33,55 @@ msgstr "Нет категорий для добавления?" msgid "This category already exists: " msgstr "Эта категория уже существует: " -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Настройки" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "Январь" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "Февраль" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "Март" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "Апрель" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "Май" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "Июнь" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "Июль" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "Август" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "Сентябрь" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "Октябрь" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "Ноябрь" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "Декабрь" @@ -117,7 +113,7 @@ msgstr "Ошибка" msgid "ownCloud password reset" msgstr "Сброс пароля " -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Используйте следующую ссылку чтобы сбросить пароль: {link}" diff --git a/l10n/ru/files.po b/l10n/ru/files.po index e558e9777a9..250d6badf4e 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+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" @@ -61,31 +61,35 @@ msgstr "Файлы" msgid "Delete" msgstr "Удалить" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "уже существует" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "заменить" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "отмена" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "заменён" -#: js/filelist.js:195 -msgid "with" -msgstr "с" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "отмена" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "с" + +#: js/filelist.js:271 msgid "deleted" msgstr "удален" @@ -101,44 +105,44 @@ msgstr "Не удается загрузить файл размером 0 ба msgid "Upload Error" msgstr "Ошибка загрузки" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "Ожидание" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "Загрузка отменена." -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Файл в процессе загрузки. Покинув страницу вы прервёте загрузку." -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "Неверное имя, '/' не допускается." -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Размер" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Изменён" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "папка" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "папки" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "файл" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "файлы" diff --git a/l10n/ru_RU/core.po b/l10n/ru_RU/core.po index 61648a74b24..6c4aeee5d54 100644 --- a/l10n/ru_RU/core.po +++ b/l10n/ru_RU/core.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ru_RU\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" +"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" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -29,59 +29,55 @@ msgstr "" msgid "This category already exists: " msgstr "" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "" @@ -113,7 +109,7 @@ msgstr "" msgid "ownCloud password reset" msgstr "" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "" diff --git a/l10n/ru_RU/files.po b/l10n/ru_RU/files.po index 2ea2165835d..3d22b6c9367 100644 --- a/l10n/ru_RU/files.po +++ b/l10n/ru_RU/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" @@ -55,31 +55,35 @@ msgstr "" msgid "Delete" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "" -#: js/filelist.js:195 -msgid "with" -msgstr "" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "" + +#: js/filelist.js:271 msgid "deleted" msgstr "" @@ -95,44 +99,44 @@ msgstr "" msgid "Upload Error" msgstr "" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "" -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "" diff --git a/l10n/sk_SK/core.po b/l10n/sk_SK/core.po index e0a133b9ed1..bcdf41a7d2e 100644 --- a/l10n/sk_SK/core.po +++ b/l10n/sk_SK/core.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "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" "Content-Transfer-Encoding: 8bit\n" "Language: sk_SK\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -31,59 +31,55 @@ msgstr "Žiadna kategória pre pridanie?" msgid "This category already exists: " msgstr "Táto kategória už existuje:" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Nastavenia" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "Január" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "Február" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "Marec" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "Apríl" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "Máj" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "Jún" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "Júl" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "August" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "September" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "Október" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "November" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "December" @@ -115,7 +111,7 @@ msgstr "Chyba" msgid "ownCloud password reset" msgstr "Obnovenie hesla pre ownCloud" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Použite nasledujúci odkaz pre obnovenie vášho hesla: {link}" diff --git a/l10n/sk_SK/files.po b/l10n/sk_SK/files.po index 5d83420becd..e47f0b00883 100644 --- a/l10n/sk_SK/files.po +++ b/l10n/sk_SK/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+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" @@ -57,31 +57,35 @@ msgstr "Súbory" msgid "Delete" msgstr "Odstrániť" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "" -#: js/filelist.js:195 -msgid "with" -msgstr "" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "" + +#: js/filelist.js:271 msgid "deleted" msgstr "" @@ -97,44 +101,44 @@ msgstr "Nemôžem nahrať súbor lebo je to priečinok alebo má 0 bajtov." msgid "Upload Error" msgstr "Chyba nahrávania" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "Čaká sa" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "Nahrávanie zrušené" -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "Chybný názov, \"/\" nie je povolené" -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Veľkosť" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Upravené" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "priečinok" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "priečinky" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "súbor" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "súbory" diff --git a/l10n/sk_SK/files_encryption.po b/l10n/sk_SK/files_encryption.po index c7ae40ae63c..a698624cb5d 100644 --- a/l10n/sk_SK/files_encryption.po +++ b/l10n/sk_SK/files_encryption.po @@ -3,32 +3,33 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:33+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 17:32+0000\n" +"Last-Translator: intense \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" "Content-Transfer-Encoding: 8bit\n" "Language: sk_SK\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #: templates/settings.php:3 msgid "Encryption" -msgstr "" +msgstr "Šifrovanie" #: templates/settings.php:4 msgid "Exclude the following file types from encryption" -msgstr "" +msgstr "Vynechať nasledujúce súbory pri šifrovaní" #: templates/settings.php:5 msgid "None" -msgstr "" +msgstr "Žiadne" #: templates/settings.php:10 msgid "Enable Encryption" -msgstr "" +msgstr "Zapnúť šifrovanie" diff --git a/l10n/sl/core.po b/l10n/sl/core.po index 5039ad2eacd..66b5310397f 100644 --- a/l10n/sl/core.po +++ b/l10n/sl/core.po @@ -10,15 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-08-31 14:09+0000\n" -"Last-Translator: Peter Peroša \n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: sl\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3)\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -32,59 +32,55 @@ msgstr "Ni kategorije za dodajanje?" msgid "This category already exists: " msgstr "Ta kategorija že obstaja:" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Nastavitve" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "januar" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "februar" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "marec" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "april" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "maj" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "junij" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "julij" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "avgust" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "september" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "oktober" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "november" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "december" @@ -116,7 +112,7 @@ msgstr "Napaka" msgid "ownCloud password reset" msgstr "Ponastavitev gesla ownCloud" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Uporabite sledečo povezavo za ponastavitev gesla: {link}" diff --git a/l10n/sl/files.po b/l10n/sl/files.po index f905c7b48cb..73d23c25795 100644 --- a/l10n/sl/files.po +++ b/l10n/sl/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+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" @@ -58,31 +58,35 @@ msgstr "Datoteke" msgid "Delete" msgstr "Izbriši" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "že obstaja" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "nadomesti" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "ekliči" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "nadomeščen" -#: js/filelist.js:195 -msgid "with" -msgstr "z" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "razveljavi" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "z" + +#: js/filelist.js:271 msgid "deleted" msgstr "izbrisano" @@ -98,44 +102,44 @@ msgstr "Nalaganje ni mogoče, saj gre za mapo, ali pa ima datoteka velikost 0 ba msgid "Upload Error" msgstr "Napaka pri nalaganju" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "Na čakanju" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "Nalaganje je bilo preklicano." -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Nalaganje datoteke je v teku. Če zapustite to stran zdaj, boste nalaganje preklicali." -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "Neveljavno ime. Znak '/' ni dovoljen." -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Velikost" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Spremenjeno" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "mapa" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "mape" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "datoteka" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "datoteke" @@ -169,7 +173,7 @@ msgstr "Največja vhodna velikost za ZIP datoteke" #: templates/admin.php:14 msgid "Save" -msgstr "" +msgstr "Shrani" #: templates/index.php:7 msgid "New" diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index 870976e9060..bd1e022b7d6 100644 --- a/l10n/sl/settings.po +++ b/l10n/sl/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 06:02+0000\n" +"Last-Translator: Peter Peroša \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -68,12 +68,12 @@ msgstr "Jezik je bil spremenjen" #: ajax/togglegroups.php:25 #, php-format msgid "Unable to add user to group %s" -msgstr "" +msgstr "Uporabnika ni mogoče dodati k skupini %s" #: ajax/togglegroups.php:31 #, php-format msgid "Unable to remove user from group %s" -msgstr "" +msgstr "Uporabnika ni mogoče odstraniti iz skupine %s" #: js/apps.js:18 msgid "Error" @@ -192,7 +192,7 @@ msgstr "Obiščite spletno stran aplikacije na apps.owncloud.com" #: templates/apps.php:30 msgid "-licensed by " -msgstr "" +msgstr "-licencirana s strani " #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/so/core.po b/l10n/so/core.po index 4ace6abe5b2..f34edceab57 100644 --- a/l10n/so/core.po +++ b/l10n/so/core.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Somali (http://www.transifex.com/projects/p/owncloud/language/so/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: so\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -29,59 +29,55 @@ msgstr "" msgid "This category already exists: " msgstr "" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "" @@ -113,7 +109,7 @@ msgstr "" msgid "ownCloud password reset" msgstr "" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "" diff --git a/l10n/so/files.po b/l10n/so/files.po index c9c8fbd1ca1..a00a9a156cb 100644 --- a/l10n/so/files.po +++ b/l10n/so/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Somali (http://www.transifex.com/projects/p/owncloud/language/so/)\n" "MIME-Version: 1.0\n" @@ -55,31 +55,35 @@ msgstr "" msgid "Delete" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "" -#: js/filelist.js:195 -msgid "with" -msgstr "" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "" + +#: js/filelist.js:271 msgid "deleted" msgstr "" @@ -95,44 +99,44 @@ msgstr "" msgid "Upload Error" msgstr "" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "" -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "" diff --git a/l10n/sr/core.po b/l10n/sr/core.po index a26d7b75298..2e4f99fe345 100644 --- a/l10n/sr/core.po +++ b/l10n/sr/core.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: sr\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" +"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" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -30,59 +30,55 @@ msgstr "" msgid "This category already exists: " msgstr "" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Подешавања" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "" @@ -114,7 +110,7 @@ msgstr "" msgid "ownCloud password reset" msgstr "" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Овом везом ресетујте своју лозинку: {link}" diff --git a/l10n/sr/files.po b/l10n/sr/files.po index 49d3090e681..8dac0a42647 100644 --- a/l10n/sr/files.po +++ b/l10n/sr/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+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" @@ -56,31 +56,35 @@ msgstr "Фајлови" msgid "Delete" msgstr "Обриши" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "" -#: js/filelist.js:195 -msgid "with" -msgstr "" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "" + +#: js/filelist.js:271 msgid "deleted" msgstr "" @@ -96,44 +100,44 @@ msgstr "" msgid "Upload Error" msgstr "" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "" -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Величина" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Задња измена" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "" diff --git a/l10n/sr@latin/core.po b/l10n/sr@latin/core.po index 57abf6fe74e..c3541b058aa 100644 --- a/l10n/sr@latin/core.po +++ b/l10n/sr@latin/core.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: sr@latin\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" +"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" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -30,59 +30,55 @@ msgstr "" msgid "This category already exists: " msgstr "" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Podešavanja" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "" @@ -114,7 +110,7 @@ msgstr "" msgid "ownCloud password reset" msgstr "" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "" diff --git a/l10n/sr@latin/files.po b/l10n/sr@latin/files.po index fd9e18816f3..e52820431ed 100644 --- a/l10n/sr@latin/files.po +++ b/l10n/sr@latin/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+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" @@ -56,31 +56,35 @@ msgstr "Fajlovi" msgid "Delete" msgstr "Obriši" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "" -#: js/filelist.js:195 -msgid "with" -msgstr "" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "" + +#: js/filelist.js:271 msgid "deleted" msgstr "" @@ -96,44 +100,44 @@ msgstr "" msgid "Upload Error" msgstr "" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "" -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Veličina" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Zadnja izmena" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "" diff --git a/l10n/sv/core.po b/l10n/sv/core.po index 870dffe8a99..57ad5c15e41 100644 --- a/l10n/sv/core.po +++ b/l10n/sv/core.po @@ -13,15 +13,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-08-31 08:10+0000\n" -"Last-Translator: Magnus Höglund \n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" +"Last-Translator: I Robot \n" "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" "Content-Transfer-Encoding: 8bit\n" "Language: sv\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -35,59 +35,55 @@ msgstr "Ingen kategori att lägga till?" msgid "This category already exists: " msgstr "Denna kategori finns redan:" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Inställningar" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "Januari" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "Februari" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "Mars" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "April" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "Maj" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "Juni" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "Juli" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "Augusti" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "September" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "Oktober" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "November" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "December" @@ -119,7 +115,7 @@ msgstr "Fel" msgid "ownCloud password reset" msgstr "ownCloud lösenordsåterställning" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Använd följande länk för att återställa lösenordet: {link}" diff --git a/l10n/sv/files.po b/l10n/sv/files.po index 38e7c5af596..847a38a3958 100644 --- a/l10n/sv/files.po +++ b/l10n/sv/files.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+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" @@ -61,31 +61,35 @@ msgstr "Filer" msgid "Delete" msgstr "Radera" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "finns redan" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "ersätt" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "avbryt" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "ersatt" -#: js/filelist.js:195 -msgid "with" -msgstr "med" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "ångra" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "med" + +#: js/filelist.js:271 msgid "deleted" msgstr "raderad" @@ -101,44 +105,44 @@ msgstr "Kunde inte ladda upp dina filer eftersom det antingen är en mapp eller msgid "Upload Error" msgstr "Uppladdningsfel" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "Väntar" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "Uppladdning avbruten." -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Filuppladdning pågår. Lämnar du sidan så avbryts uppladdningen." -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "Ogiltigt namn, '/' är inte tillåten." -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Storlek" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Ändrad" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "mapp" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "mappar" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "fil" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "filer" @@ -172,7 +176,7 @@ msgstr "Största tillåtna storlek för ZIP-filer" #: templates/admin.php:14 msgid "Save" -msgstr "" +msgstr "Spara" #: templates/index.php:7 msgid "New" diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index 77788a1797d..f93b1f0f3c7 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/settings.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 06:05+0000\n" +"Last-Translator: Magnus Höglund \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -35,11 +35,11 @@ msgstr "Autentiseringsfel" #: ajax/creategroup.php:19 msgid "Group already exists" -msgstr "" +msgstr "Gruppen finns redan" #: ajax/creategroup.php:28 msgid "Unable to add group" -msgstr "" +msgstr "Kan inte lägga till grupp" #: ajax/lostpassword.php:14 msgid "Email saved" @@ -59,11 +59,11 @@ msgstr "Ogiltig begäran" #: ajax/removegroup.php:16 msgid "Unable to delete group" -msgstr "" +msgstr "Kan inte radera grupp" #: ajax/removeuser.php:22 msgid "Unable to delete user" -msgstr "" +msgstr "Kan inte radera användare" #: ajax/setlanguage.php:18 msgid "Language changed" @@ -72,12 +72,12 @@ msgstr "Språk ändrades" #: ajax/togglegroups.php:25 #, php-format msgid "Unable to add user to group %s" -msgstr "" +msgstr "Kan inte lägga till användare i gruppen %s" #: ajax/togglegroups.php:31 #, php-format msgid "Unable to remove user from group %s" -msgstr "" +msgstr "Kan inte radera användare från gruppen %s" #: js/apps.js:18 msgid "Error" @@ -196,7 +196,7 @@ msgstr "Se programsida på apps.owncloud.com" #: templates/apps.php:30 msgid "-licensed by " -msgstr "" +msgstr "-licensierad av " #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index d59cc85eb81..9112352a3a0 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-05 22:51+0200\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 44a43dfd40b..74ab3230866 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-05 22:50+0200\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 99b6ae69c3b..0590a198801 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-05 22:50+0200\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index adca26e6ea3..76fafddc1b2 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-05 22:50+0200\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index 160cb143db5..b0c45867827 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-05 22:50+0200\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index be0aedd0b89..b17eb3894d1 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-05 22:50+0200\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index cfbef6875d2..5a86298e890 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-05 22:51+0200\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index f506265f120..42965d3e0bd 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-05 22:51+0200\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 403d1173b37..82b19373c1d 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-05 22:50+0200\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/th_TH/core.po b/l10n/th_TH/core.po index 80fbd9a5ac9..57ee6a0d229 100644 --- a/l10n/th_TH/core.po +++ b/l10n/th_TH/core.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-08-31 17:01+0000\n" -"Last-Translator: AriesAnywhere Anywhere \n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: th_TH\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -31,59 +31,55 @@ msgstr "ไม่มีหมวดหมู่ที่ต้องการเ msgid "This category already exists: " msgstr "หมวดหมู่นี้มีอยู่แล้ว: " -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "ตั้งค่า" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "มกราคม" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "กุมภาพันธ์" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "มีนาคม" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "เมษายน" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "พฤษภาคม" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "มิถุนายน" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "กรกฏาคม" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "สิงหาคม" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "กันยายน" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "ตุลาคม" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "พฤศจิกายน" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "ธันวาคม" @@ -115,7 +111,7 @@ msgstr "พบข้อผิดพลาด" msgid "ownCloud password reset" msgstr "รีเซ็ตรหัสผ่าน ownCloud" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "ใช้ลิงค์ต่อไปนี้เพื่อเปลี่ยนรหัสผ่านของคุณใหม่: {link}" diff --git a/l10n/th_TH/files.po b/l10n/th_TH/files.po index 93ca73a3d10..b6ff21b3829 100644 --- a/l10n/th_TH/files.po +++ b/l10n/th_TH/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+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" @@ -57,31 +57,35 @@ msgstr "ไฟล์" msgid "Delete" msgstr "ลบ" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "มีอยู่แล้ว" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "แทนที่" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "ยกเลิก" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "แทนที่แล้ว" -#: js/filelist.js:195 -msgid "with" -msgstr "กับ" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "เลิกทำ" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "กับ" + +#: js/filelist.js:271 msgid "deleted" msgstr "ลบแล้ว" @@ -97,44 +101,44 @@ msgstr "ไม่สามารถอัพโหลดไฟล์ของค msgid "Upload Error" msgstr "เกิดข้อผิดพลาดในการอัพโหลด" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "อยู่ระหว่างดำเนินการ" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "การอัพโหลดถูกยกเลิก" -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "การอัพโหลดไฟล์กำลังอยู่ในระหว่างดำเนินการ การออกจากหน้าเว็บนี้จะทำให้การอัพโหลดถูกยกเลิก" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "ชื่อที่ใช้ไม่ถูกต้อง '/' ไม่อนุญาตให้ใช้งาน" -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "ขนาด" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "ปรับปรุงล่าสุด" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "โฟลเดอร์" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "โฟลเดอร์" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "ไฟล์" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "ไฟล์" @@ -168,7 +172,7 @@ msgstr "ขนาดไฟล์ ZIP สูงสุด" #: templates/admin.php:14 msgid "Save" -msgstr "" +msgstr "บันทึก" #: templates/index.php:7 msgid "New" diff --git a/l10n/th_TH/settings.po b/l10n/th_TH/settings.po index 4de68241556..1919a13b9ef 100644 --- a/l10n/th_TH/settings.po +++ b/l10n/th_TH/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 00:31+0000\n" +"Last-Translator: AriesAnywhere Anywhere \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -31,11 +31,11 @@ msgstr "เกิดข้อผิดพลาดเกี่ยวกับส #: ajax/creategroup.php:19 msgid "Group already exists" -msgstr "" +msgstr "มีกลุ่มดังกล่าวอยู่ในระบบอยู่แล้ว" #: ajax/creategroup.php:28 msgid "Unable to add group" -msgstr "" +msgstr "ไม่สามารถเพิ่มกลุ่มได้" #: ajax/lostpassword.php:14 msgid "Email saved" @@ -55,11 +55,11 @@ msgstr "คำร้องขอไม่ถูกต้อง" #: ajax/removegroup.php:16 msgid "Unable to delete group" -msgstr "" +msgstr "ไม่สามารถลบกลุ่มได้" #: ajax/removeuser.php:22 msgid "Unable to delete user" -msgstr "" +msgstr "ไม่สามารถลบผู้ใช้งานได้" #: ajax/setlanguage.php:18 msgid "Language changed" @@ -68,12 +68,12 @@ msgstr "เปลี่ยนภาษาเรียบร้อยแล้ว #: ajax/togglegroups.php:25 #, php-format msgid "Unable to add user to group %s" -msgstr "" +msgstr "ไม่สามารถเพิ่มผู้ใช้งานเข้าไปที่กลุ่ม %s ได้" #: ajax/togglegroups.php:31 #, php-format msgid "Unable to remove user from group %s" -msgstr "" +msgstr "ไม่สามารถลบผู้ใช้งานออกจากกลุ่ม %s ได้" #: js/apps.js:18 msgid "Error" @@ -192,7 +192,7 @@ msgstr "ดูหน้าแอพพลิเคชั่นที่ apps.own #: templates/apps.php:30 msgid "-licensed by " -msgstr "" +msgstr "-ลิขสิทธิ์การใช้งานโดย " #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/tr/core.po b/l10n/tr/core.po index 8644c4df375..a715d982b63 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -10,15 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-08-31 21:48+0000\n" -"Last-Translator: Caner Başaran \n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" +"Last-Translator: I Robot \n" "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" "Content-Transfer-Encoding: 8bit\n" "Language: tr\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -32,59 +32,55 @@ msgstr "Eklenecek kategori yok?" msgid "This category already exists: " msgstr "Bu kategori zaten mevcut: " -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Ayarlar" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "Ocak" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "Şubat" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "Mart" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "Nisan" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "Mayıs" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "Haziran" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "Temmuz" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "Ağustos" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "Eylül" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "Ekim" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "Kasım" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "Aralık" @@ -116,7 +112,7 @@ msgstr "Hata" msgid "ownCloud password reset" msgstr "ownCloud parola sıfırlama" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Bu bağlantıyı kullanarak parolanızı sıfırlayın: {link}" diff --git a/l10n/tr/files.po b/l10n/tr/files.po index 865f2bc6d66..01675ca064c 100644 --- a/l10n/tr/files.po +++ b/l10n/tr/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+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" @@ -59,31 +59,35 @@ msgstr "Dosyalar" msgid "Delete" msgstr "Sil" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "zaten mevcut" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "değiştir" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "iptal" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "değiştirildi" -#: js/filelist.js:195 -msgid "with" -msgstr "ile" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "geri al" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "ile" + +#: js/filelist.js:271 msgid "deleted" msgstr "silindi" @@ -99,44 +103,44 @@ msgstr "Dosyanızın boyutu 0 byte olduğundan veya bir dizin olduğundan yükle msgid "Upload Error" msgstr "Yükleme hatası" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "Bekliyor" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "Yükleme iptal edildi." -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Dosya yükleme işlemi sürüyor. Şimdi sayfadan ayrılırsanız işleminiz iptal olur." -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "Geçersiz isim, '/' işaretine izin verilmiyor." -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Boyut" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Değiştirilme" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "dizin" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "dizinler" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "dosya" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "dosyalar" diff --git a/l10n/uk/core.po b/l10n/uk/core.po index f68db85912c..532bd0a5474 100644 --- a/l10n/uk/core.po +++ b/l10n/uk/core.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: uk\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" +"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" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -31,59 +31,55 @@ msgstr "" msgid "This category already exists: " msgstr "" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Налаштування" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "" @@ -115,7 +111,7 @@ msgstr "" msgid "ownCloud password reset" msgstr "" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "" diff --git a/l10n/uk/files.po b/l10n/uk/files.po index ebdc5f8b9c0..558899c1a20 100644 --- a/l10n/uk/files.po +++ b/l10n/uk/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+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" @@ -57,31 +57,35 @@ msgstr "Файли" msgid "Delete" msgstr "Видалити" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "" -#: js/filelist.js:195 -msgid "with" -msgstr "" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "відмінити" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "" + +#: js/filelist.js:271 msgid "deleted" msgstr "видалені" @@ -97,44 +101,44 @@ msgstr "Неможливо завантажити ваш файл тому, що msgid "Upload Error" msgstr "Помилка завантаження" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "Очікування" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "Завантаження перервано." -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "Некоректне ім'я, '/' не дозволено." -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Розмір" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Змінено" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "тека" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "теки" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "файл" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "файли" diff --git a/l10n/vi/core.po b/l10n/vi/core.po index 16e671b63c2..4030732e1e4 100644 --- a/l10n/vi/core.po +++ b/l10n/vi/core.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: vi\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -30,59 +30,55 @@ msgstr "Không có danh mục được thêm?" msgid "This category already exists: " msgstr "Danh mục này đã được tạo :" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Cài đặt" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "Tháng 1" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "Tháng 2" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "Tháng 3" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "Tháng 4" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "Tháng 5" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "Tháng 6" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "Tháng 7" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "Tháng 8" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "Tháng 9" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "Tháng 10" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "Tháng 11" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "Tháng 12" @@ -114,7 +110,7 @@ msgstr "Lỗi" msgid "ownCloud password reset" msgstr "Khôi phục mật khẩu Owncloud " -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Dùng đường dẫn sau để khôi phục lại mật khẩu : {link}" diff --git a/l10n/vi/files.po b/l10n/vi/files.po index 6e2d43a3496..fb95389e333 100644 --- a/l10n/vi/files.po +++ b/l10n/vi/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+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" @@ -56,31 +56,35 @@ msgstr "Tập tin" msgid "Delete" msgstr "Xóa" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "" -#: js/filelist.js:195 -msgid "with" -msgstr "" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "" + +#: js/filelist.js:271 msgid "deleted" msgstr "" @@ -96,44 +100,44 @@ msgstr "" msgid "Upload Error" msgstr "Tải lên lỗi" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "Chờ" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "Hủy tải lên" -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "Tên không hợp lệ ,không được phép dùng '/'" -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Kích cỡ" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Thay đổi" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "folder" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "folders" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "file" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "files" diff --git a/l10n/zh_CN.GB2312/core.po b/l10n/zh_CN.GB2312/core.po index 428eaa941b3..1993d8aed9a 100644 --- a/l10n/zh_CN.GB2312/core.po +++ b/l10n/zh_CN.GB2312/core.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: zh_CN.GB2312\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -30,59 +30,55 @@ msgstr "没有分类添加了?" msgid "This category already exists: " msgstr "这个分类已经存在了:" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "设置" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "一月" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "二月" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "三月" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "四月" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "五月" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "六月" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "七月" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "八月" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "九月" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "十月" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "十一月" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "十二月" @@ -114,7 +110,7 @@ msgstr "错误" msgid "ownCloud password reset" msgstr "私有云密码重置" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "使用下面的链接来重置你的密码:{link}" diff --git a/l10n/zh_CN.GB2312/files.po b/l10n/zh_CN.GB2312/files.po index 00bdb62e96f..3224b4b01df 100644 --- a/l10n/zh_CN.GB2312/files.po +++ b/l10n/zh_CN.GB2312/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -56,31 +56,35 @@ msgstr "文件" msgid "Delete" msgstr "删除" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "已经存在了" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "替换" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "取消" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "替换过了" -#: js/filelist.js:195 -msgid "with" -msgstr "随着" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "撤销" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "随着" + +#: js/filelist.js:271 msgid "deleted" msgstr "删除" @@ -96,44 +100,44 @@ msgstr "不能上传你指定的文件,可能因为它是个文件夹或者大 msgid "Upload Error" msgstr "上传错误" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "Pending" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "上传取消了" -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "非法文件名,\"/\"是不被许可的" -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "大小" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "修改日期" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "文件夹" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "文件夹" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "文件" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "文件" diff --git a/l10n/zh_CN/core.po b/l10n/zh_CN/core.po index 83cd931d856..57d881dcff1 100644 --- a/l10n/zh_CN/core.po +++ b/l10n/zh_CN/core.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot \n" "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" "Content-Transfer-Encoding: 8bit\n" "Language: zh_CN\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -31,59 +31,55 @@ msgstr "没有可添加分类?" msgid "This category already exists: " msgstr "此分类已存在: " -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "设置" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "一月" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "二月" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "三月" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "四月" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "五月" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "六月" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "七月" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "八月" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "九月" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "十月" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "十一月" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "十二月" @@ -115,7 +111,7 @@ msgstr "错误" msgid "ownCloud password reset" msgstr "重置 ownCloud 密码" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "使用以下链接重置您的密码:{link}" diff --git a/l10n/zh_CN/files.po b/l10n/zh_CN/files.po index 4e2d600c1e5..3b55dd63418 100644 --- a/l10n/zh_CN/files.po +++ b/l10n/zh_CN/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+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" @@ -58,31 +58,35 @@ msgstr "文件" msgid "Delete" msgstr "删除" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "已经存在" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "替换" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "取消" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "已经替换" -#: js/filelist.js:195 -msgid "with" -msgstr "随着" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "撤销" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "随着" + +#: js/filelist.js:271 msgid "deleted" msgstr "已经删除" @@ -98,44 +102,44 @@ msgstr "无法上传文件,因为它是一个目录或者大小为 0 字节" msgid "Upload Error" msgstr "上传错误" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "操作等待中" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "上传已取消" -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "非法的名称,不允许使用‘/’。" -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "大小" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "修改日期" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "文件夹" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "文件夹" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "文件" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "文件" diff --git a/l10n/zh_TW/core.po b/l10n/zh_TW/core.po index 7af51044d5f..72df7a953cc 100644 --- a/l10n/zh_TW/core.po +++ b/l10n/zh_TW/core.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-08-31 07:35+0000\n" -"Last-Translator: Ming Yi Wu \n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" +"Last-Translator: I Robot \n" "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" "Content-Transfer-Encoding: 8bit\n" "Language: zh_TW\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -31,59 +31,55 @@ msgstr "無分類添加?" msgid "This category already exists: " msgstr "此分類已經存在:" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "設定" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "一月" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "二月" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "三月" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "四月" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "五月" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "六月" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "七月" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "八月" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "九月" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "十月" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "十一月" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "十二月" @@ -115,7 +111,7 @@ msgstr "錯誤" msgid "ownCloud password reset" msgstr "ownCloud 密碼重設" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "請循以下聯結重設你的密碼: (聯結) " diff --git a/l10n/zh_TW/files.po b/l10n/zh_TW/files.po index 3c6aad93fce..ac4a772abdb 100644 --- a/l10n/zh_TW/files.po +++ b/l10n/zh_TW/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+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" @@ -58,31 +58,35 @@ msgstr "檔案" msgid "Delete" msgstr "刪除" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "已經存在" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "取代" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "取消" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "" -#: js/filelist.js:195 -msgid "with" -msgstr "" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "" + +#: js/filelist.js:271 msgid "deleted" msgstr "" @@ -98,44 +102,44 @@ msgstr "無法上傳您的檔案因為它可能是一個目錄或檔案大小為 msgid "Upload Error" msgstr "上傳發生錯誤" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "上傳取消" -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "檔案上傳中. 離開此頁面將會取消上傳." -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "無效的名稱, '/'是不被允許的" -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "大小" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "修改" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "" diff --git a/lib/l10n/cs_CZ.php b/lib/l10n/cs_CZ.php index 933dbe541f5..00815f97533 100644 --- a/lib/l10n/cs_CZ.php +++ b/lib/l10n/cs_CZ.php @@ -4,14 +4,14 @@ "Settings" => "Nastavení", "Users" => "Uživatelé", "Apps" => "Aplikace", -"Admin" => "Admin", +"Admin" => "Administrace", "ZIP download is turned off." => "Stahování ZIPu je vypnuto.", -"Files need to be downloaded one by one." => "Soubory je nutno stahovat samostatně.", +"Files need to be downloaded one by one." => "Soubory musí být stahovány jednotlivě.", "Back to Files" => "Zpět k souborům", -"Selected files too large to generate zip file." => "Vybarné soubory jsou pro vytvoření zipu příliš velké.", +"Selected files too large to generate zip file." => "Vybrané soubory jsou příliš velké pro vytvoření zip souboru.", "Application is not enabled" => "Aplikace není povolena", -"Authentication error" => "Chyba autorizace", -"Token expired. Please reload page." => "Realce expirovala. Obnovte prosím stranu.", +"Authentication error" => "Chyba ověření", +"Token expired. Please reload page." => "Token vypršel. Obnovte prosím stránku.", "seconds ago" => "před vteřinami", "1 minute ago" => "před 1 minutou", "%d minutes ago" => "před %d minutami", @@ -21,5 +21,8 @@ "last month" => "minulý měsíc", "months ago" => "před měsíci", "last year" => "loni", -"years ago" => "před lety" +"years ago" => "před lety", +"%s is available. Get more information" => "%s je dostupná. Získat více informací", +"up to date" => "aktuální", +"updates check is disabled" => "kontrola aktualizací je vypnuta" ); diff --git a/settings/l10n/ca.php b/settings/l10n/ca.php index 76fb2fd7fe5..524d6c79257 100644 --- a/settings/l10n/ca.php +++ b/settings/l10n/ca.php @@ -10,6 +10,8 @@ "Unable to delete group" => "No es pot eliminar el grup", "Unable to delete user" => "No es pot eliminar l'usuari", "Language changed" => "S'ha canviat l'idioma", +"Unable to add user to group %s" => "No es pot afegir l'usuari al grup %s", +"Unable to remove user from group %s" => "No es pot eliminar l'usuari del grup %s", "Error" => "Error", "Disable" => "Desactiva", "Enable" => "Activa", @@ -36,6 +38,7 @@ "Add your App" => "Afegiu la vostra aplicació", "Select an App" => "Seleccioneu una aplicació", "See application page at apps.owncloud.com" => "Mireu la pàgina d'aplicacions a apps.owncloud.com", +"-licensed by " => "-propietat de ", "Documentation" => "Documentació", "Managing Big Files" => "Gestió de fitxers grans", "Ask a question" => "Feu una pregunta", diff --git a/settings/l10n/cs_CZ.php b/settings/l10n/cs_CZ.php index e0be2117b84..a68f10269f5 100644 --- a/settings/l10n/cs_CZ.php +++ b/settings/l10n/cs_CZ.php @@ -1,28 +1,46 @@ "Nepodařílo se stáhnout seznam z App Store", -"Authentication error" => "Chyba autorizace", +"Unable to load list from App Store" => "Nelze načíst seznam z App Store", +"Authentication error" => "Chyba ověření", +"Group already exists" => "Skupina již existuje", +"Unable to add group" => "Nelze přidat skupinu", "Email saved" => "E-mail uložen", "Invalid email" => "Neplatný e-mail", -"OpenID Changed" => "OpenID změněn", -"Invalid request" => "Chybný dotaz", +"OpenID Changed" => "OpenID změněno", +"Invalid request" => "Neplatný požadavek", +"Unable to delete group" => "Nelze smazat skupinu", +"Unable to delete user" => "Nelze smazat uživatele", "Language changed" => "Jazyk byl změněn", +"Unable to add user to group %s" => "Nelze přidat uživatele do skupiny %s", +"Unable to remove user from group %s" => "Nelze odstranit uživatele ze skupiny %s", "Error" => "Chyba", -"Disable" => "Vypnout", -"Enable" => "Zapnout", +"Disable" => "Zakázat", +"Enable" => "Povolit", "Saving..." => "Ukládám...", "__language_name__" => "Česky", -"Security Warning" => "Bezpečnostní upozornění", +"Security Warning" => "Bezpečnostní varování", +"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Váš adresář dat a soubory jsou pravděpodobně přístupné z internetu. Soubor .htacces, který ownCloud poskytuje nefunguje. Doporučujeme Vám abyste nastavili Váš webový server tak, aby nebylo možno přistupovat do adresáře s daty, nebo přesunuli adresář dat mimo kořenovou složku dokumentů webového serveru.", "Cron" => "Cron", -"execute one task with each page loaded" => "spustit jednu úlohu s každou nataženou stranou", +"execute one task with each page loaded" => "spustit jednu úlohu s každou načtenou stránkou", "cron.php is registered at a webcron service" => "cron.php je registrován jako služba webcron", -"use systems cron service" => "použijte systémovou službu cron", -"Log" => "Log", +"use systems cron service" => "použít systémovou službu cron", +"Share API" => "API sdílení", +"Enable Share API" => "Povolit API sdílení", +"Allow apps to use the Share API" => "Povolit aplikacím používat API sdílení", +"Allow links" => "Povolit odkazy", +"Allow users to share items to the public with links" => "Povolit uživatelům sdílet položky s veřejností pomocí odkazů", +"Allow resharing" => "Povolit znovu-sdílení", +"Allow users to share items shared with them again" => "Povolit uživatelům znovu sdílet položky, které jsou pro ně sdíleny", +"Allow users to share with anyone" => "Povolit uživatelům sdílet s kýmkoliv", +"Allow users to only share with users in their groups" => "Povolit uživatelům sdílet pouze s uživateli v jejich skupinách", +"Log" => "Záznam", "More" => "Více", -"Add your App" => "Přidat vaší aplikaci", +"Developed by the ownCloud community, the source code is licensed under the AGPL." => "Vyvinuto komunitou ownCloud, zdrojový kód je licencován pod AGPL.", +"Add your App" => "Přidat Vaší aplikaci", "Select an App" => "Vyberte aplikaci", "See application page at apps.owncloud.com" => "Více na stránce s aplikacemi na apps.owncloud.com", +"-licensed by " => "-licencováno ", "Documentation" => "Dokumentace", -"Managing Big Files" => "Spravování velkých souborů", +"Managing Big Files" => "Správa velkých souborů", "Ask a question" => "Zeptat se", "Problems connecting to help database." => "Problémy s připojením k databázi s nápovědou.", "Go there manually." => "Přejít ručně.", @@ -32,24 +50,24 @@ "Desktop and Mobile Syncing Clients" => "Klienti pro synchronizaci", "Download" => "Stáhnout", "Your password got changed" => "Vaše heslo bylo změněno", -"Unable to change your password" => "Vaše heslo se nepodařilo změnit", -"Current password" => "Aktuální heslo", +"Unable to change your password" => "Vaše heslo nelze změnit", +"Current password" => "Současné heslo", "New password" => "Nové heslo", "show" => "zobrazit", "Change password" => "Změnit heslo", -"Email" => "Email", -"Your email address" => "Vaše emailová adresa", -"Fill in an email address to enable password recovery" => "Pro povolení změny hesla vyplňte email adresu", +"Email" => "E-mail", +"Your email address" => "Vaše e-mailová adresa", +"Fill in an email address to enable password recovery" => "Pro povolení změny hesla vyplňte adresu e-mailu", "Language" => "Jazyk", -"Help translate" => "Pomoci překládat", +"Help translate" => "Pomoci s překladem", "use this address to connect to your ownCloud in your file manager" => "tuto adresu použijte pro připojení k ownCloud ve Vašem správci souborů", "Name" => "Jméno", "Password" => "Heslo", "Groups" => "Skupiny", "Create" => "Vytvořit", "Default Quota" => "Výchozí kvóta", -"Other" => "Jiné", -"Group Admin" => "Administrace skupiny", +"Other" => "Jiná", +"Group Admin" => "Správa skupiny", "Quota" => "Kvóta", -"Delete" => "Vymazat" +"Delete" => "Smazat" ); diff --git a/settings/l10n/de.php b/settings/l10n/de.php index d955b75d0c3..4f3a12934e8 100644 --- a/settings/l10n/de.php +++ b/settings/l10n/de.php @@ -10,6 +10,8 @@ "Unable to delete group" => "Gruppe konnte nicht gelöscht werden", "Unable to delete user" => "Benutzer konnte nicht gelöscht werden", "Language changed" => "Sprache geändert", +"Unable to add user to group %s" => "Der Benutzer konnte nicht zur Gruppe %s hinzugefügt werden", +"Unable to remove user from group %s" => "Der Benutzer konnte nicht aus der Gruppe %s entfernt werden", "Error" => "Fehler", "Disable" => "Deaktivieren", "Enable" => "Aktivieren", @@ -36,6 +38,7 @@ "Add your App" => "Fügen Sie Ihre App hinzu", "Select an App" => "Wählen Sie eine Anwendung aus", "See application page at apps.owncloud.com" => "Weitere Anwendungen finden Sie auf apps.owncloud.com", +"-licensed by " => "-lizenziert von ", "Documentation" => "Dokumentation", "Managing Big Files" => "Große Dateien verwalten", "Ask a question" => "Stellen Sie eine Frage", diff --git a/settings/l10n/es.php b/settings/l10n/es.php index 3ab7cb32ba8..2f2a06ce058 100644 --- a/settings/l10n/es.php +++ b/settings/l10n/es.php @@ -10,6 +10,8 @@ "Unable to delete group" => "No se pudo eliminar el grupo", "Unable to delete user" => "No se pudo eliminar el usuario", "Language changed" => "Idioma cambiado", +"Unable to add user to group %s" => "Imposible añadir el usuario al grupo %s", +"Unable to remove user from group %s" => "Imposible eliminar al usuario del grupo %s", "Error" => "Error", "Disable" => "Desactivar", "Enable" => "Activar", @@ -36,6 +38,7 @@ "Add your App" => "Añade tu aplicación", "Select an App" => "Seleccionar una aplicación", "See application page at apps.owncloud.com" => "Echa un vistazo a la web de aplicaciones apps.owncloud.com", +"-licensed by " => "-licenciado por ", "Documentation" => "Documentación", "Managing Big Files" => "Administra archivos grandes", "Ask a question" => "Hacer una pregunta", diff --git a/settings/l10n/fi_FI.php b/settings/l10n/fi_FI.php index 37a80aaeea1..54647c29616 100644 --- a/settings/l10n/fi_FI.php +++ b/settings/l10n/fi_FI.php @@ -10,6 +10,8 @@ "Unable to delete group" => "Ryhmän poisto epäonnistui", "Unable to delete user" => "Käyttäjän poisto epäonnistui", "Language changed" => "Kieli on vaihdettu", +"Unable to add user to group %s" => "Käyttäjän tai ryhmän %s lisääminen ei onnistu", +"Unable to remove user from group %s" => "Käyttäjän poistaminen ryhmästä %s ei onnistu", "Error" => "Virhe", "Disable" => "Poista käytöstä", "Enable" => "Käytä", @@ -36,6 +38,7 @@ "Add your App" => "Lisää ohjelmasi", "Select an App" => "Valitse ohjelma", "See application page at apps.owncloud.com" => "Katso sovellussivu osoitteessa apps.owncloud.com", +"-licensed by " => "-lisensoija ", "Documentation" => "Dokumentaatio", "Managing Big Files" => "Suurten tiedostojen hallinta", "Ask a question" => "Kysy jotain", diff --git a/settings/l10n/fr.php b/settings/l10n/fr.php index 890d1e39f10..7baa923bfcb 100644 --- a/settings/l10n/fr.php +++ b/settings/l10n/fr.php @@ -10,6 +10,8 @@ "Unable to delete group" => "Impossible de supprimer le groupe", "Unable to delete user" => "Impossible de supprimer l'utilisateur", "Language changed" => "Langue changée", +"Unable to add user to group %s" => "Impossible d'ajouter l'utilisateur au groupe %s", +"Unable to remove user from group %s" => "Impossible de supprimer l'utilisateur du groupe %s", "Error" => "Erreur", "Disable" => "Désactiver", "Enable" => "Activer", @@ -36,6 +38,7 @@ "Add your App" => "Ajoutez votre application", "Select an App" => "Sélectionner une Application", "See application page at apps.owncloud.com" => "Voir la page des applications à l'url apps.owncloud.com", +"-licensed by " => "-sous licence, par ", "Documentation" => "Documentation", "Managing Big Files" => "Gérer les gros fichiers", "Ask a question" => "Poser une question", diff --git a/settings/l10n/it.php b/settings/l10n/it.php index 8c8ec63f4c4..695ed31eeef 100644 --- a/settings/l10n/it.php +++ b/settings/l10n/it.php @@ -10,6 +10,8 @@ "Unable to delete group" => "Impossibile eliminare il gruppo", "Unable to delete user" => "Impossibile eliminare l'utente", "Language changed" => "Lingua modificata", +"Unable to add user to group %s" => "Impossibile aggiungere l'utente al gruppo %s", +"Unable to remove user from group %s" => "Impossibile rimuovere l'utente dal gruppo %s", "Error" => "Errore", "Disable" => "Disabilita", "Enable" => "Abilita", @@ -36,6 +38,7 @@ "Add your App" => "Aggiungi la tua applicazione", "Select an App" => "Seleziona un'applicazione", "See application page at apps.owncloud.com" => "Vedere la pagina dell'applicazione su apps.owncloud.com", +"-licensed by " => "-licenziato da ", "Documentation" => "Documentazione", "Managing Big Files" => "Gestione file grandi", "Ask a question" => "Fai una domanda", diff --git a/settings/l10n/ja_JP.php b/settings/l10n/ja_JP.php index dcf0568cbaa..fe1eed19806 100644 --- a/settings/l10n/ja_JP.php +++ b/settings/l10n/ja_JP.php @@ -1,11 +1,17 @@ "アプリストアからリストをロードできません", "Authentication error" => "認証エラー", +"Group already exists" => "グループは既に存在しています", +"Unable to add group" => "グループを追加できません", "Email saved" => "メールアドレスを保存しました", "Invalid email" => "無効なメールアドレス", "OpenID Changed" => "OpenIDが変更されました", "Invalid request" => "無効なリクエストです", +"Unable to delete group" => "グループを削除できません", +"Unable to delete user" => "ユーザを削除できません", "Language changed" => "言語が変更されました", +"Unable to add user to group %s" => "ユーザをグループ %s に追加できません", +"Unable to remove user from group %s" => "ユーザをグループ %s から削除できません", "Error" => "エラー", "Disable" => "無効", "Enable" => "有効", @@ -32,6 +38,7 @@ "Add your App" => "アプリを追加", "Select an App" => "アプリを選択してください", "See application page at apps.owncloud.com" => "apps.owncloud.com でアプリケーションのページを見てください", +"-licensed by " => "-ライセンス: ", "Documentation" => "ドキュメント", "Managing Big Files" => "大きなファイルを扱うには", "Ask a question" => "質問してください", diff --git a/settings/l10n/nl.php b/settings/l10n/nl.php index ffa00dabaa1..5957f6282f1 100644 --- a/settings/l10n/nl.php +++ b/settings/l10n/nl.php @@ -1,11 +1,17 @@ "Kan de lijst niet van de App store laden", "Authentication error" => "Authenticatie fout", +"Group already exists" => "Groep bestaat al", +"Unable to add group" => "Niet in staat om groep toe te voegen", "Email saved" => "E-mail bewaard", "Invalid email" => "Ongeldige e-mail", "OpenID Changed" => "OpenID is aangepast", "Invalid request" => "Ongeldig verzoek", +"Unable to delete group" => "Niet in staat om groep te verwijderen", +"Unable to delete user" => "Niet in staat om gebruiker te verwijderen", "Language changed" => "Taal aangepast", +"Unable to add user to group %s" => "Niet in staat om gebruiker toe te voegen aan groep %s", +"Unable to remove user from group %s" => "Niet in staat om gebruiker te verwijderen uit groep %s", "Error" => "Fout", "Disable" => "Uitschakelen", "Enable" => "Inschakelen", @@ -27,9 +33,11 @@ "Allow users to only share with users in their groups" => "Sta gebruikers toe om alleen met gebruikers in hun groepen te delen", "Log" => "Log", "More" => "Meer", +"Developed by the ownCloud community, the source code is licensed under the AGPL." => "Ontwikkeld door de ownCloud gemeenschap, de bron code is gelicenseerd onder de AGPL.", "Add your App" => "Voeg je App toe", "Select an App" => "Selecteer een app", "See application page at apps.owncloud.com" => "Zie de applicatiepagina op apps.owncloud.com", +"-licensed by " => "-Gelicenseerd door ", "Documentation" => "Documentatie", "Managing Big Files" => "Onderhoud van grote bestanden", "Ask a question" => "Stel een vraag", diff --git a/settings/l10n/pl.php b/settings/l10n/pl.php index ee50d0fffa7..851099ef6b7 100644 --- a/settings/l10n/pl.php +++ b/settings/l10n/pl.php @@ -10,12 +10,15 @@ "Unable to delete group" => "Nie można usunąć grupy", "Unable to delete user" => "Nie można usunąć użytkownika", "Language changed" => "Język zmieniony", +"Unable to add user to group %s" => "Nie można dodać użytkownika do grupy %s", +"Unable to remove user from group %s" => "Nie można usunąć użytkownika z grupy %s", "Error" => "Błąd", "Disable" => "Wyłączone", "Enable" => "Włączone", "Saving..." => "Zapisywanie...", "__language_name__" => "Polski", "Security Warning" => "Ostrzeżenia bezpieczeństwa", +"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Twój katalog danych i pliki są prawdopodobnie dostępne z Internetu. Plik .htaccess, który dostarcza ownCloud nie działa. Sugerujemy, aby skonfigurować serwer WWW w taki sposób, aby katalog danych nie był dostępny lub przenieść katalog danych poza główny katalog serwera WWW.", "Cron" => "Cron", "execute one task with each page loaded" => "wykonanie jednego zadania z każdej załadowanej strony", "cron.php is registered at a webcron service" => "cron.php jest zarejestrowany w usłudze webcron", @@ -24,12 +27,18 @@ "Enable Share API" => "Włącz udostępniane API", "Allow apps to use the Share API" => "Zezwalaj aplikacjom na używanie API", "Allow links" => "Zezwalaj na łącza", +"Allow users to share items to the public with links" => "Zezwalaj użytkownikom na puliczne współdzielenie elementów za pomocą linków", "Allow resharing" => "Zezwól na ponowne udostępnianie", +"Allow users to share items shared with them again" => "Zezwalaj użytkownikom na ponowne współdzielenie elementów już z nimi współdzilonych", +"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", "Log" => "Log", "More" => "Więcej", +"Developed by the ownCloud community, the source code is licensed under the AGPL." => "Stwirzone przez społeczność ownCloud, the kod źródłowy na licencji AGPL.", "Add your App" => "Dodaj aplikacje", "Select an App" => "Zaznacz aplikacje", "See application page at apps.owncloud.com" => "Zobacz stronę aplikacji na apps.owncloud.com", +"-licensed by " => "-licencjonowane przez ", "Documentation" => "Dokumentacja", "Managing Big Files" => "Zarządzanie dużymi plikami", "Ask a question" => "Zadaj pytanie", diff --git a/settings/l10n/sl.php b/settings/l10n/sl.php index fc49d940b47..7b5c6bee3cb 100644 --- a/settings/l10n/sl.php +++ b/settings/l10n/sl.php @@ -10,6 +10,8 @@ "Unable to delete group" => "Ni mogoče izbrisati skupine", "Unable to delete user" => "Ni mogoče izbrisati uporabnika", "Language changed" => "Jezik je bil spremenjen", +"Unable to add user to group %s" => "Uporabnika ni mogoče dodati k skupini %s", +"Unable to remove user from group %s" => "Uporabnika ni mogoče odstraniti iz skupine %s", "Error" => "Napaka", "Disable" => "Onemogoči", "Enable" => "Omogoči", @@ -36,6 +38,7 @@ "Add your App" => "Dodajte vašo aplikacijo", "Select an App" => "Izberite aplikacijo", "See application page at apps.owncloud.com" => "Obiščite spletno stran aplikacije na apps.owncloud.com", +"-licensed by " => "-licencirana s strani ", "Documentation" => "Dokumentacija", "Managing Big Files" => "Upravljanje velikih datotek", "Ask a question" => "Postavi vprašanje", diff --git a/settings/l10n/sv.php b/settings/l10n/sv.php index 9beb500194d..1a18e9670de 100644 --- a/settings/l10n/sv.php +++ b/settings/l10n/sv.php @@ -1,11 +1,17 @@ "Kan inte ladda listan från App Store", "Authentication error" => "Autentiseringsfel", +"Group already exists" => "Gruppen finns redan", +"Unable to add group" => "Kan inte lägga till grupp", "Email saved" => "E-post sparad", "Invalid email" => "Ogiltig e-post", "OpenID Changed" => "OpenID ändrat", "Invalid request" => "Ogiltig begäran", +"Unable to delete group" => "Kan inte radera grupp", +"Unable to delete user" => "Kan inte radera användare", "Language changed" => "Språk ändrades", +"Unable to add user to group %s" => "Kan inte lägga till användare i gruppen %s", +"Unable to remove user from group %s" => "Kan inte radera användare från gruppen %s", "Error" => "Fel", "Disable" => "Deaktivera", "Enable" => "Aktivera", @@ -32,6 +38,7 @@ "Add your App" => "Lägg till din applikation", "Select an App" => "Välj en App", "See application page at apps.owncloud.com" => "Se programsida på apps.owncloud.com", +"-licensed by " => "-licensierad av ", "Documentation" => "Dokumentation", "Managing Big Files" => "Hantering av stora filer", "Ask a question" => "Ställ en fråga", diff --git a/settings/l10n/th_TH.php b/settings/l10n/th_TH.php index 7166c26a1ce..d775af76713 100644 --- a/settings/l10n/th_TH.php +++ b/settings/l10n/th_TH.php @@ -1,11 +1,17 @@ "ไม่สามารถโหลดรายการจาก App Store ได้", "Authentication error" => "เกิดข้อผิดพลาดเกี่ยวกับสิทธิ์การเข้าใช้งาน", +"Group already exists" => "มีกลุ่มดังกล่าวอยู่ในระบบอยู่แล้ว", +"Unable to add group" => "ไม่สามารถเพิ่มกลุ่มได้", "Email saved" => "อีเมลถูกบันทึกแล้ว", "Invalid email" => "อีเมลไม่ถูกต้อง", "OpenID Changed" => "เปลี่ยนชื่อบัญชี OpenID แล้ว", "Invalid request" => "คำร้องขอไม่ถูกต้อง", +"Unable to delete group" => "ไม่สามารถลบกลุ่มได้", +"Unable to delete user" => "ไม่สามารถลบผู้ใช้งานได้", "Language changed" => "เปลี่ยนภาษาเรียบร้อยแล้ว", +"Unable to add user to group %s" => "ไม่สามารถเพิ่มผู้ใช้งานเข้าไปที่กลุ่ม %s ได้", +"Unable to remove user from group %s" => "ไม่สามารถลบผู้ใช้งานออกจากกลุ่ม %s ได้", "Error" => "ข้อผิดพลาด", "Disable" => "ปิดใช้งาน", "Enable" => "เปิดใช้งาน", @@ -32,6 +38,7 @@ "Add your App" => "เพิ่มแอปของคุณ", "Select an App" => "เลือก App", "See application page at apps.owncloud.com" => "ดูหน้าแอพพลิเคชั่นที่ apps.owncloud.com", +"-licensed by " => "-ลิขสิทธิ์การใช้งานโดย ", "Documentation" => "เอกสารคู่มือการใช้งาน", "Managing Big Files" => "การจัดการไฟล์ขนาดใหญ่", "Ask a question" => "สอบถามข้อมูล", From a5211e31bc170f44edce3c80df831e7705e93396 Mon Sep 17 00:00:00 2001 From: Michael Gapczynski Date: Wed, 5 Sep 2012 21:46:59 -0400 Subject: [PATCH 178/246] Add permissions to new files/folders, bug fix for oc-1649 --- apps/files/index.php | 12 ++++++++++++ apps/files/js/filelist.js | 4 ++-- apps/files/templates/index.php | 1 + 3 files changed, 15 insertions(+), 2 deletions(-) diff --git a/apps/files/index.php b/apps/files/index.php index 6d53527025a..ba785f7d6bc 100644 --- a/apps/files/index.php +++ b/apps/files/index.php @@ -89,11 +89,23 @@ $freeSpace=OC_Filesystem::free_space('/'); $freeSpace=max($freeSpace,0); $maxUploadFilesize = min($maxUploadFilesize ,$freeSpace); +$permissions = OCP\Share::PERMISSION_READ; +if (OC_Filesystem::isUpdatable($dir.'/')) { + $permissions |= OCP\Share::PERMISSION_UPDATE; +} +if (OC_Filesystem::isDeletable($dir.'/')) { + $permissions |= OCP\Share::PERMISSION_DELETE; +} +if (OC_Filesystem::isSharable($dir.'/')) { + $permissions |= OCP\Share::PERMISSION_SHARE; +} + $tmpl = new OCP\Template( 'files', 'index', 'user' ); $tmpl->assign( 'fileList', $list->fetchPage(), false ); $tmpl->assign( 'breadcrumb', $breadcrumbNav->fetchPage(), false ); $tmpl->assign( 'dir', OC_Filesystem::normalizePath($dir)); $tmpl->assign( 'isCreatable', OC_Filesystem::isCreatable($dir.'/')); +$tmpl->assign('permissions', $permissions); $tmpl->assign( 'files', $files ); $tmpl->assign( 'uploadMaxFilesize', $maxUploadFilesize); $tmpl->assign( 'uploadMaxHumanFilesize', OCP\Util::humanFileSize($maxUploadFilesize)); diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index ce215cb8431..a9e48f24052 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -5,7 +5,7 @@ var FileList={ }, addFile:function(name,size,lastModified,loading,hidden){ var img=(loading)?OC.imagePath('core', 'loading.gif'):OC.imagePath('core', 'filetypes/file.png'); - var html=''; + var html=''; if(name.indexOf('.')!=-1){ var basename=name.substr(0,name.lastIndexOf('.')); var extension=name.substr(name.lastIndexOf('.')); @@ -41,7 +41,7 @@ var FileList={ } }, addDir:function(name,size,lastModified,hidden){ - html = $('').attr({ "data-type": "dir", "data-size": size, "data-file": name}); + html = $('').attr({ "data-type": "dir", "data-size": size, "data-file": name, "data-permissions": $('#permissions').val()}); td = $('').attr({"class": "filename", "style": 'background-image:url('+OC.imagePath('core', 'filetypes/folder.png')+')' }); td.append(''); var link_elem = $('').attr({ "class": "name", "href": OC.linkTo('files', 'index.php')+"&dir="+ encodeURIComponent($('#dir').val()+'/'+name).replace(/%2F/g, '/') }); diff --git a/apps/files/templates/index.php b/apps/files/templates/index.php index bcf683ae4a8..a874529330b 100644 --- a/apps/files/templates/index.php +++ b/apps/files/templates/index.php @@ -32,6 +32,7 @@ +
From 837eb1871d9b99fce32a418dd13284edfc41a398 Mon Sep 17 00:00:00 2001 From: Michael Gapczynski Date: Wed, 5 Sep 2012 22:13:50 -0400 Subject: [PATCH 179/246] Don't delete the file anymore to replace it in the UI, just overwrite it --- apps/files/js/filelist.js | 27 +++++++++++---------------- lib/filecache.php | 4 ++++ lib/files.php | 2 +- 3 files changed, 16 insertions(+), 17 deletions(-) diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index a9e48f24052..b777785f4d9 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -240,22 +240,17 @@ var FileList={ }, finishReplace:function() { if (!FileList.replaceCanceled && FileList.replaceOldName && FileList.replaceNewName) { - // Delete the file being replaced and rename the replacement - FileList.deleteCanceled = false; - FileList.deleteFiles = [FileList.replaceNewName]; - FileList.finishDelete(function() { - $.ajax({url: OC.filePath('files', 'ajax', 'rename.php'), async: false, data: { dir: $('#dir').val(), newname: FileList.replaceNewName, file: FileList.replaceOldName }, success: function(result) { - if (result && result.status == 'success') { - $('tr').filterAttr('data-replace', 'true').removeAttr('data-replace'); - } else { - OC.dialogs.alert(result.data.message, 'Error moving file'); - } - FileList.replaceCanceled = true; - FileList.replaceOldName = null; - FileList.replaceNewName = null; - FileList.lastAction = null; - }}); - }, true); + $.ajax({url: OC.filePath('files', 'ajax', 'rename.php'), async: false, data: { dir: $('#dir').val(), newname: FileList.replaceNewName, file: FileList.replaceOldName }, success: function(result) { + if (result && result.status == 'success') { + $('tr').filterAttr('data-replace', 'true').removeAttr('data-replace'); + } else { + OC.dialogs.alert(result.data.message, 'Error moving file'); + } + FileList.replaceCanceled = true; + FileList.replaceOldName = null; + FileList.replaceNewName = null; + FileList.lastAction = null; + }}); } }, do_delete:function(files){ diff --git a/lib/filecache.php b/lib/filecache.php index 364b908bcfa..811e8a3e6a2 100644 --- a/lib/filecache.php +++ b/lib/filecache.php @@ -155,6 +155,10 @@ class OC_FileCache{ if($root===false){ $root=OC_Filesystem::getRoot(); } + // If replacing an existing file, delete the file + if (self::inCache($newPath, $root)) { + self::delete($newPath, $root); + } $oldPath=$root.$oldPath; $newPath=$root.$newPath; $newParent=self::getParentId($newPath); diff --git a/lib/files.php b/lib/files.php index b8af5e04b71..00cbc63aba0 100644 --- a/lib/files.php +++ b/lib/files.php @@ -202,7 +202,7 @@ class OC_Files { * @param file $target */ public static function move($sourceDir,$source,$targetDir,$target){ - if(OC_User::isLoggedIn() && ($sourceDir != '' || $source != 'Shared') && !OC_Filesystem::file_exists($targetDir.'/'.$target)){ + if(OC_User::isLoggedIn() && ($sourceDir != '' || $source != 'Shared')){ $targetFile=self::normalizePath($targetDir.'/'.$target); $sourceFile=self::normalizePath($sourceDir.'/'.$source); return OC_Filesystem::rename($sourceFile,$targetFile); From 90462b2dcffd2ced85fb5c00557edef5ebcb3d4b Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Tue, 4 Sep 2012 19:24:40 -0700 Subject: [PATCH 180/246] make icons look good on bright and dark backgrounds --- core/img/icon-error.png | Bin 1344 -> 1571 bytes core/img/icon-error.svg | 24 ++++++++++++------------ core/img/icon-sync.png | Bin 1271 -> 1544 bytes core/img/icon-sync.svg | 20 ++++++++++---------- core/img/icon.png | Bin 1109 -> 1305 bytes core/img/icon.svg | 22 +++++++++++----------- 6 files changed, 33 insertions(+), 33 deletions(-) diff --git a/core/img/icon-error.png b/core/img/icon-error.png index 1ce0be0fb2ebbb2778f59be6a57f111d55e36999..edeaceb16980c6af896cfb1b5f46447f3e91b5d1 100644 GIT binary patch delta 1480 zcmV;(1vmP@3Zo2=ZGQ!zNkl zj!hJkIOQW*lKpbLANS5oA7Wb$kkGV3dC5pey64_AXMQ^Wdw*tzj4`;KgKz8VcL44H z0FeL7q`^&_V$yY6Jr45I=yH^UWUogz;iHMCc+8A>bKHqQBnameI z2*BIx*0l=enhO+Q%m7(df`wR=PAjF2>rMwlp`AZIa-?#r05_FjWbNADf_baf+9l>U z$g)}qASksM!+!u9DOb&2xv~?$UvCxQh7}l2rP_txKfqE784OOVYV|AQy1h3{B;^sW zSe#PE2+Np*51u~#>3;)o!wNX9t#_G1A?J%mCjzn9@#6IKTDNko!fe|`D;z#!H#Gbk z0IIoMv#HfId0sD7tE-jgJwDRW@%x8Po%;Lt0opgv1Ncq} z4keSZ8t@ibRwE0+1|Sg#>zPYUn`X&x>6|&ClVW~q0r=Gn&8A$}o+5LP(sdF8UbwAJizc+$(~Q!s|z z%a?Z_XlfeWaq;3m!#zFc0iY$F{`f#sQwRBcyVPd%DwPBFtZKjmj>f;rzM@vw4~FS z!Fb#O^GnQZ!}DNVx7`W^&Rmy+S+bOy55{6!msWr+$9asHCA0>#hAI>~tor)X3qCOy zgwJ=Dh}?yDmg6|FWKsff0l2YbQd*AVEPu`+a#g8B3;u#Jz#tmZTnQTisz1JuO zcpj`^a9Wj0ZA`3H-W!pazw!N(aJi|_N^C*Hm-M;WGm`r{ke)q~NrBzQob>i~qXjRY65fRM=+uGh+c7Ol<|B7tf zc(O7x6E<3#W!>HT*Y)=gv_1RmM0t8Tt7d1b+I5L7tKeV0{6y0O4-9S2Wd7E)efw#< zzW%e~#6;Lss}77&b|f;H*tP4=>)w3xA5dzhcJU&X_4dBq{@QDAE!~P60fguGh9ZC* z00IyP-~hut=LEa0000ZA?>F7{{+KB)sE5khi{2T7>e}Qrc1~719bw z7{+4II@nB{acpsDM#S*q2Z*p3=bVOx=@Q*^QTBn*d+#~DEl?;hu1BWul`oyJt@jCnxg) zY+_=NiHV`7DJuH48=zxiKBeR0mYKLXFPoIqj#5%Wc<)|*E08BO@4i+8_JoA}Y)Z-+ zPEY4u3I*#BiGRL^`0pV4FcTmD@pxk51(cAG_sRyG8jYTl$!4eZ`Vp_ydUm3)a2RK1 z@&G55KAuvk?$22)L%^h3{SDD?aboc!HZ3hcCnx*pq@L!P;VTmM!q*9(MEbLpbTKiB=j)UX_h~&v(JODA9l@(wm66CenE@GK1i2l?rzLWu4 zB>EiZ=7tEoz@$#s&F1FXy=`qD%r!I&A-Q~0gBWt45rgB4EiK)iy1HxAX7gElMn?Jf zsj2b*Xn%klsvXbDx8iaeDp2d~0j}?6G54IC3kKH8l@FM})PWo;Kml zg`0pJ3ip6oPOD`i`wBP>hI{t>{M+_|f~#b9h$-j6gBa^{d?ZMvT3)(z>6D|QVic*> zepans^|Z8ff;MNf4Q>49#l;4~RG5u#0)I59Ave~A%F6>=`vTLAjRRP#{gEvzTVqtJ ztCYuP>%kQjd?bj#Rabw+>U6=)waIj2sN&#WFyc5Y}u(MZiBWP>)TfYkx?m z^KY%+$Po={P-W#$TXlTkKxqEVnaixfzzMn8lP9mhhp=P)`SbmY9UWbhM~*ynH8imE zr%w<12M4R33=hBUZf?HktgCZ*&!2~>7DveO_xHa)bK=C8&iZ->05Rl1gPLDPM;oS^ zo9}Y9wX+Vh*$aK2+`MTcTKdm-?p!o@T3c@{_x85`{_L3~awwz{ @@ -289,7 +289,7 @@ x2="-2.4040222" y2="18.967093" /> diff --git a/core/img/icon-sync.png b/core/img/icon-sync.png index a3d09704246107252ca46d79d4791f66b23055e3..c38ca87a237bd0be449e41c845c8f7add91b230c 100644 GIT binary patch delta 1453 zcmV;e1ycI=35X1kZGQ!YNkl#>A#E(WEu0Ce#=kjV%fy>8_L(NlQyfO?Wh=h&*Hg z7usdBY?s-`%+Ai^Jbpj_*hfYv>e@8?!%0qZ?>)csJD>Y|9)A)M+|HqH>*;p@?f?J? z{+~?;PxmxvP0ilR`|H~m4So~=nn@ZSJlnGnteybmJ_3{g45AYh1wVeMbz%R<0&w7O z=bJUdSfsL`u})3Y1W<+RguUQ$O)lKJZe2@hrU3uZ1%Ez%?kNE439zJxULeuU0?-X& ziXn?es?1gZzki=8z%4EC;*ry>BGRdq(t*~OJ@bHwblg%A=&-T&0+eVX{g=nqe(K`? z0&vSLh%{2dJQ8X8YgMRTfpFPa3u7&;^Em~)n+U^wiJ0COkh~+_GekO^<*%8t*|p>F z$*ms=AYE5;jgp22Xe)3zW$@dNnuLf~b z80ewK^na{9Z7u2U!nliH=>K3vHeYNnl+5xg{X=%a?9?C2wmi!VXMfT4`pO)K-A_Kc zF8^U?O$XsqyIx(THP$loyI~k?S4u_GLcn+|3|}r9^H>n*;m!B2{C@A?(7^F?Jr6)6 z{n@r92eg*@Bj^7490;68n|dof*`n|?lcxIa~mZ);w zSPSc&(n=nnieeTRYZg;QEn<;nHL+-qFn>4ANhRMXv(uU3vF1nzm#wk)I_B@hLX3E3 zhD@X}kt(fTzPPLF(6Lq#K@^W)&X1Rti15up7X!Vm8`*QZ=c>6k979)9V-rZ?tgzP zQ!JZbDMd&I>P%_OJWe+jZ2(n?#8oP)4W1-XDiVU)M0DiZaG~V}x%jDz?^TzbUq&?1 zcs|Hv8>im_fs6_N{xG8(&*AclO^iqq(GWUKY=v^U}AsJk?Mc#6)e#0T{tVw9W+(2XK9IVp1*zO#fv8z$k$1lnVjO z2T+ZPelreW06-o<0zi85c_ws5H=>VY-1bZ99e_Ikw;kYLUUBhTfn8>k00000NkvXX Hu0mjf{nOlA delta 1178 zcmV;L1ZDe(4EG6;ZGQxGNkl=E?*_f7zTzYY%% z-vwR@g~Hj`*jP_oTpa5UlEdcAdnFJV8F>O|e*PqW#|idP77+#AoQp zdHCkMGl8psg zBDpUTi5Ogs9UU8dCjxVGbCQaRiq+KA)NNE~N1|CIVC(AYzE`PKdXTUtB_+8Cv=|@}y0SxEd@BM82??V3`1s$Dd|xV+dJvRFg?~%v#8P^C`ZLHGPEMeGN=gdJ zo{Wr)Ttw&GUfspFB7h2RWM*c10G0!~aS7`~1o!0T=GvyGr_Wlg)+V#re0peT=(0kg zu#gS}e;FJcywuj#_H9#B(+oOPj$$JIkpPk^P{nyT)FF^7CntyHAeYPSn1!XRtSomy zL4nQTaDOOGCX*C|&OrA0%F2q&Xf&$GmTW-g3k-dQRTQMhHUcl^Y4PhBi|Sx$DpuP zycZ{4BLHEqOeSOCM2?i~N?~E)9(N|Rw6tik+J9-U)9JDiY}{8*zz{y4n3(v|d$yzf z-}&2sh#Q34UL#OcRCEtNDV75QSy179?u<(Q=;`U1C@(MHrZWPKV}0oBL!jZKtDrsE zq7c2mjW^yk-!AY^i)7a;29 ze18yhcVlBC6N%MyCR@lJ`^M!^RaIq1$8TY-uH(uiy!!h3rg*eZi~utgo-1+S=MW1=%-~lam^!(^)exFd#&NU&#g?TL2lxKQ5uOvr`9huVA~6 zJlA<>-DMK z)iZcY&cTj5|IRx&I7sd2=y*_FUCsIeFP{#0!JXm2U;x_@zy!yAkaOW0c2LOna3Ec))qXlWJZx-lZ+}LhJ;_K%HWrIT4ZquXnr-+syrj6x%gZCs zC8A?$%+^hfMl*YOcqsLK6ykv_KnBnsj4*&6jtn5ztLJQmfE18>A@#~QJ>TnB02F!S sa<3u96$2kp@qs_30RjO6ADqBnKoc!pRbkL5T>t<807*qoM6N<$f?1V3+5i9m diff --git a/core/img/icon-sync.svg b/core/img/icon-sync.svg index f9ebec4a5b5..0806572f2c7 100644 --- a/core/img/icon-sync.svg +++ b/core/img/icon-sync.svg @@ -19,9 +19,9 @@ viewBox="0 0 32 31.999997" enable-background="new 0 0 595.275 311.111" xml:space="preserve" - inkscape:version="0.48.2 r9819" - sodipodi:docname="icon-sync.svg" - inkscape:export-filename="/home/user/owncloud/core/img/icon.png" + inkscape:version="0.48.3.1 r9886" + sodipodi:docname="icon-sync-light.svg" + inkscape:export-filename="/home/user/owncloud/core/img/icon-sync-light.png" inkscape:export-xdpi="89.826416" inkscape:export-ydpi="89.826416"> diff --git a/core/img/icon.png b/core/img/icon.png index 745b82584c6547aa4293f7b3cf97956eed3cc22d..e87191f1c0cedd918056b7330b9966e1f65cca3f 100644 GIT binary patch delta 1212 zcmV;t1Vj7P2$>3yZGQxoNklbiOJ5)aHk z+u4iN5i9%-n4cg(Fkk?j2Kc=-OX_d@CkDPc`+Kc4@Y8-W8MVs}5@8NNV$=xQXk3bB ztj()d&2jJ7fHf6)9hdOIH6FRW6L&+IBpCpkZM$c+UC1n%f4^p+y0e-XmMe$0J;V;LrZ%S$=59* zF8F=`CloqiOFEU#yA^$dskMDKGi#GsuS&B@I(GP1Wq%mPu)|94`0V)i4R2Y}%9`t+xQ+{gz{IYaMJ5ASng=fz}~F-xd|v;jVPvU1-?Q zsPtqII;)piA(_-hl>q<|V2pVsA2>Atw%;M%xqqka1;grPV~nkgwhTBH1Um2og^@5? zUGaQx{^;CP;RgPr0_Yx{Q(9Y!`RSc|zG%8*1qf=3(y*Y1r>2!&eh`eKLQ*^f=5Ij606=ejav)BO=!n8FoAOw!HJKZFzM>>{ z!hbVLrZPD%EUo!NuDk4B3`CtsJn#9X#+bUXT*#8~Y(DS7h-BC?A6djA;VVBnN+Ws_ zH(y$|U{3S-?yKtpV-^yFD@z}0^_99O1I1FDcRl~riSC$VhkFR3NfSG6o?sO@;h%a3 zagOeePP{KMxY&Tl^%!E(+BOLs8GYSh&$q#n#&a8Q|;aumH9xw0u1Rz&lQgrf>+K1ccR+e`3Cx6p1 zr8L)9SA4mBW7DD4%O5+_+n>Cib3IQhMS>_*6fHQnxUS~tn_JhnJYHYhX@^2ruJ!fD zfu43{f&kX%7NDa0000`%9Bi7{{k5thuT4GToe;_q+2tFVita@iH~< zqGm`am;~w%rq#4?rG-?AwZfEAtaQJGl$B@@2wC2mZu9*`@bB<9`ySXEuWKr(CBa_! z@SgKL&w0-GJm{ zoJasB7zqvz-Ubv+T3VV0i9dn^b|%D!NoQ+nYHsG|=ReHJ$!S6Lt>7&5hJ=J{GwrrOj2U9vaB!DUg-vXS0Sj6O-Qa>v0VrWF)Ekh% zh`nsXgntwhrBXQ+8yow^+I|>_osi4r@0m7|8}mHKUtsi|oIk5Z@8l~h(%PT*2m=;-L^ zLaYl2)M~ZOwY9a+3JMB76G)rbh>yhR^>2DL#=XkR%Ui;ESRr|bhK4S|=Q}nwrpDPC z?&;}i-QC@lGQUakcM}34fC!LFg9Cy>(EXg}LBE*8XD^71S`lGh*b k$>QxlrFH>!0p~8@7vZ#8yT%n%iU0rr07*qoM6N<$f)`Hiod5s; diff --git a/core/img/icon.svg b/core/img/icon.svg index 95eac445489..6f91abe6e48 100644 --- a/core/img/icon.svg +++ b/core/img/icon.svg @@ -19,14 +19,14 @@ viewBox="0 0 32 31.999997" enable-background="new 0 0 595.275 311.111" xml:space="preserve" - inkscape:version="0.48.2 r9819" - sodipodi:docname="icon.svg" + inkscape:version="0.48.3.1 r9886" + sodipodi:docname="icon-light.svg" inkscape:export-filename="/home/user/owncloud/core/img/icon.png" inkscape:export-xdpi="89.826416" inkscape:export-ydpi="89.826416">image/svg+xml Date: Thu, 6 Sep 2012 16:01:51 -0400 Subject: [PATCH 181/246] Don't pass content for a new text file from UI, fixes bug oc-1660 --- apps/files/js/files.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files/js/files.js b/apps/files/js/files.js index 8229bfa24f1..101e2bad2e4 100644 --- a/apps/files/js/files.js +++ b/apps/files/js/files.js @@ -505,7 +505,7 @@ $(document).ready(function() { case 'file': $.post( OC.filePath('files','ajax','newfile.php'), - {dir:$('#dir').val(),filename:name,content:" \n"}, + {dir:$('#dir').val(),filename:name}, function(result){ if (result.status == 'success') { var date=new Date(); From 39577495e122a9d94507f99c6b3f9f3430735c13 Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Thu, 6 Sep 2012 22:27:56 +0200 Subject: [PATCH 182/246] Add a directory separator to filter app directories with the same prefix. Fixes: oc-1663 --- lib/minimizer/css.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/minimizer/css.php b/lib/minimizer/css.php index 0f1435fde45..41886087199 100644 --- a/lib/minimizer/css.php +++ b/lib/minimizer/css.php @@ -16,7 +16,7 @@ class OC_Minimizer_CSS extends OC_Minimizer $in_root = false; foreach(OC::$APPSROOTS as $app_root) { - if(strpos($file, $app_root['path']) === 0) { + if(strpos($file, $app_root['path'].'/') === 0) { $in_root = rtrim($webroot.$app_root['url'], '/'); break; } From 2144b2f37ae90faa03a44e5526c29893c5c7e7d0 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Thu, 6 Sep 2012 23:10:24 +0200 Subject: [PATCH 183/246] clear the filecache if the mount configuration has changed --- lib/filecache.php | 14 ++++++++++++++ lib/filesystem.php | 7 +++++++ 2 files changed, 21 insertions(+) diff --git a/lib/filecache.php b/lib/filecache.php index 811e8a3e6a2..de38ad99e8e 100644 --- a/lib/filecache.php +++ b/lib/filecache.php @@ -474,6 +474,20 @@ class OC_FileCache{ $query=OC_DB::prepare('DELETE FROM `*PREFIX*fscache` WHERE LENGTH(`path_hash`)<30'); $query->execute(); } + + /** + * clear filecache entries + * @param string user (optonal) + */ + public static function clear($user=''){ + if($user){ + $query=OC_DB::prepare('DELETE FROM `*PREFIX*fscache` WHERE user=?'); + $query->execute(array($user)); + }else{ + $query=OC_DB::prepare('DELETE FROM `*PREFIX*fscache`'); + $query->execute(); + } + } } //watch for changes and try to keep the cache up to date diff --git a/lib/filesystem.php b/lib/filesystem.php index c69970467f5..01467b54c8d 100644 --- a/lib/filesystem.php +++ b/lib/filesystem.php @@ -236,6 +236,13 @@ class OC_Filesystem{ } } } + + $mtime=filemtime(OC::$SERVERROOT.'/config/mount.php'); + $previousMTime=OC_Appconfig::getValue('files','mountconfigmtime',0); + if($mtime>$previousMTime){//mount config has changed, filecache needs to be updated + OC_FileCache::clear(); + OC_Appconfig::setValue('files','mountconfigmtime',$mtime); + } } self::$loaded=true; From d4fd47d43f01f14f392e55dd0469ee58ca200729 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Thu, 6 Sep 2012 23:14:43 +0200 Subject: [PATCH 184/246] clear user filecache after the user mount configuration has changed --- lib/util.php | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/lib/util.php b/lib/util.php index 42a0f5c7df1..1dcf7c2cbfa 100755 --- a/lib/util.php +++ b/lib/util.php @@ -58,6 +58,13 @@ class OC_Util { OC_Filesystem::mount($options['class'], $options['options'], $mountPoint); } } + + $mtime=filemtime($user_root.'/mount.php'); + $previousMTime=OC_Preferences::getValue($user,'files','mountconfigmtime',0); + if($mtime>$previousMTime){//mount config has changed, filecache needs to be updated + OC_FileCache::clear($user); + OC_Preferences::setValue($user,'files','mountconfigmtime',$mtime); + } } OC_Hook::emit('OC_Filesystem', 'setup', array('user' => $user, 'user_dir' => $user_dir)); } From 294cff27a7e5a61b3ca4d1af0b87b2d39aae1534 Mon Sep 17 00:00:00 2001 From: Frank Karlitschek Date: Fri, 7 Sep 2012 01:39:11 +0200 Subject: [PATCH 185/246] add check for zlib --- lib/util.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/util.php b/lib/util.php index 1dcf7c2cbfa..b742e27b55d 100755 --- a/lib/util.php +++ b/lib/util.php @@ -276,6 +276,9 @@ class OC_Util { if(!function_exists('imagepng')){ $errors[]=array('error'=>'PHP module GD is not installed.
','hint'=>'Please ask your server administrator to install the module.'); } + if(!function_exists('gzencode')){ + $errors[]=array('error'=>'PHP module zlib is not installed.
','hint'=>'Please ask your server administrator to install the module.'); + } if(floatval(phpversion())<5.3){ $errors[]=array('error'=>'PHP 5.3 is required.
','hint'=>'Please ask your server administrator to update PHP to version 5.3 or higher. PHP 5.2 is no longer supported by ownCloud and the PHP community.'); } From a94b56b57baeb36a9e9bb547e213180757041576 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Fri, 7 Sep 2012 02:07:22 +0200 Subject: [PATCH 186/246] [tx-robot] updated from transifex --- apps/files/l10n/ca.php | 3 +- apps/files/l10n/cs_CZ.php | 1 + apps/files/l10n/de.php | 1 + apps/files/l10n/es.php | 1 + apps/files/l10n/fi_FI.php | 1 + apps/files/l10n/it.php | 1 + apps/files/l10n/pl.php | 1 + apps/files/l10n/sl.php | 1 + apps/files/l10n/sv.php | 1 + apps/files/l10n/th_TH.php | 1 + apps/files/l10n/zh_CN.php | 3 ++ apps/files_encryption/l10n/zh_CN.php | 5 ++++ apps/files_external/l10n/it.php | 6 ++-- apps/files_external/l10n/sk_SK.php | 18 ++++++++++++ apps/files_sharing/l10n/sk_SK.php | 7 +++++ apps/files_versions/l10n/zh_CN.php | 6 ++++ apps/user_ldap/l10n/fi_FI.php | 8 +++--- core/l10n/zh_CN.php | 1 + l10n/ca/files.po | 36 ++++++++++++------------ l10n/ca/settings.po | 8 +++--- l10n/cs_CZ/files.po | 34 +++++++++++----------- l10n/de/files.po | 34 +++++++++++----------- l10n/es/files.po | 34 +++++++++++----------- l10n/fi_FI/files.po | 34 +++++++++++----------- l10n/fi_FI/user_ldap.po | 14 +++++----- l10n/it/core.po | 6 ++-- l10n/it/files.po | 34 +++++++++++----------- l10n/it/files_external.po | 14 +++++----- l10n/pl/files.po | 36 ++++++++++++------------ l10n/sk_SK/files_external.po | 41 ++++++++++++++------------- l10n/sk_SK/files_sharing.po | 21 +++++++------- l10n/sl/files.po | 34 +++++++++++----------- l10n/sv/files.po | 34 +++++++++++----------- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 28 +++++++++---------- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/th_TH/files.po | 34 +++++++++++----------- l10n/zh_CN/core.po | 9 +++--- l10n/zh_CN/files.po | 38 ++++++++++++------------- l10n/zh_CN/files_encryption.po | 15 +++++----- l10n/zh_CN/files_versions.po | 17 +++++------ l10n/zh_CN/lib.po | 35 ++++++++++++----------- l10n/zh_CN/settings.po | 42 ++++++++++++++-------------- lib/l10n/zh_CN.php | 5 +++- settings/l10n/ca.php | 2 +- settings/l10n/zh_CN.php | 18 ++++++++++++ 52 files changed, 408 insertions(+), 331 deletions(-) create mode 100644 apps/files_encryption/l10n/zh_CN.php create mode 100644 apps/files_external/l10n/sk_SK.php create mode 100644 apps/files_sharing/l10n/sk_SK.php create mode 100644 apps/files_versions/l10n/zh_CN.php diff --git a/apps/files/l10n/ca.php b/apps/files/l10n/ca.php index 6d232f217e8..336f59ae86d 100644 --- a/apps/files/l10n/ca.php +++ b/apps/files/l10n/ca.php @@ -10,6 +10,7 @@ "Delete" => "Suprimeix", "already exists" => "ja existeix", "replace" => "substitueix", +"suggest name" => "sugereix un nom", "cancel" => "cancel·la", "replaced" => "substituït", "undo" => "desfés", @@ -35,7 +36,7 @@ "Enable ZIP-download" => "Activa la baixada ZIP", "0 is unlimited" => "0 és sense límit", "Maximum input size for ZIP files" => "Mida màxima d'entrada per fitxers ZIP", -"Save" => "Desar", +"Save" => "Desa", "New" => "Nou", "Text file" => "Fitxer de text", "Folder" => "Carpeta", diff --git a/apps/files/l10n/cs_CZ.php b/apps/files/l10n/cs_CZ.php index 228f6a3898e..f29df70ee68 100644 --- a/apps/files/l10n/cs_CZ.php +++ b/apps/files/l10n/cs_CZ.php @@ -10,6 +10,7 @@ "Delete" => "Smazat", "already exists" => "již existuje", "replace" => "nahradit", +"suggest name" => "navrhnout název", "cancel" => "zrušit", "replaced" => "nahrazeno", "undo" => "zpět", diff --git a/apps/files/l10n/de.php b/apps/files/l10n/de.php index a267d31009b..3db6af8477d 100644 --- a/apps/files/l10n/de.php +++ b/apps/files/l10n/de.php @@ -10,6 +10,7 @@ "Delete" => "Löschen", "already exists" => "ist bereits vorhanden", "replace" => "ersetzen", +"suggest name" => "Name vorschlagen", "cancel" => "abbrechen", "replaced" => "ersetzt", "undo" => "rückgängig machen", diff --git a/apps/files/l10n/es.php b/apps/files/l10n/es.php index c998c8cb57a..0ba3c56aa1f 100644 --- a/apps/files/l10n/es.php +++ b/apps/files/l10n/es.php @@ -10,6 +10,7 @@ "Delete" => "Eliminado", "already exists" => "ya existe", "replace" => "reemplazar", +"suggest name" => "sugerir nombre", "cancel" => "cancelar", "replaced" => "reemplazado", "undo" => "deshacer", diff --git a/apps/files/l10n/fi_FI.php b/apps/files/l10n/fi_FI.php index eaed70c6246..757d0594d30 100644 --- a/apps/files/l10n/fi_FI.php +++ b/apps/files/l10n/fi_FI.php @@ -10,6 +10,7 @@ "Delete" => "Poista", "already exists" => "on jo olemassa", "replace" => "korvaa", +"suggest name" => "ehdota nimeä", "cancel" => "peru", "replaced" => "korvattu", "undo" => "kumoa", diff --git a/apps/files/l10n/it.php b/apps/files/l10n/it.php index d0deb4f0f07..0df60832c5b 100644 --- a/apps/files/l10n/it.php +++ b/apps/files/l10n/it.php @@ -10,6 +10,7 @@ "Delete" => "Elimina", "already exists" => "esiste già", "replace" => "sostituisci", +"suggest name" => "suggerisci nome", "cancel" => "annulla", "replaced" => "sostituito", "undo" => "annulla", diff --git a/apps/files/l10n/pl.php b/apps/files/l10n/pl.php index 7fd31faefd7..d3814333aca 100644 --- a/apps/files/l10n/pl.php +++ b/apps/files/l10n/pl.php @@ -10,6 +10,7 @@ "Delete" => "Usuwa element", "already exists" => "Już istnieje", "replace" => "zastap", +"suggest name" => "zasugeruj nazwę", "cancel" => "anuluj", "replaced" => "zastąpione", "undo" => "wróć", diff --git a/apps/files/l10n/sl.php b/apps/files/l10n/sl.php index 85da041629f..0d56a0c6476 100644 --- a/apps/files/l10n/sl.php +++ b/apps/files/l10n/sl.php @@ -10,6 +10,7 @@ "Delete" => "Izbriši", "already exists" => "že obstaja", "replace" => "nadomesti", +"suggest name" => "predlagaj ime", "cancel" => "ekliči", "replaced" => "nadomeščen", "undo" => "razveljavi", diff --git a/apps/files/l10n/sv.php b/apps/files/l10n/sv.php index f63039d9ee7..137222b4178 100644 --- a/apps/files/l10n/sv.php +++ b/apps/files/l10n/sv.php @@ -10,6 +10,7 @@ "Delete" => "Radera", "already exists" => "finns redan", "replace" => "ersätt", +"suggest name" => "föreslå namn", "cancel" => "avbryt", "replaced" => "ersatt", "undo" => "ångra", diff --git a/apps/files/l10n/th_TH.php b/apps/files/l10n/th_TH.php index 689871a11dd..5809ac1f098 100644 --- a/apps/files/l10n/th_TH.php +++ b/apps/files/l10n/th_TH.php @@ -10,6 +10,7 @@ "Delete" => "ลบ", "already exists" => "มีอยู่แล้ว", "replace" => "แทนที่", +"suggest name" => "แนะนำชื่อ", "cancel" => "ยกเลิก", "replaced" => "แทนที่แล้ว", "undo" => "เลิกทำ", diff --git a/apps/files/l10n/zh_CN.php b/apps/files/l10n/zh_CN.php index f24db8f3cb1..3fdb5b6af3e 100644 --- a/apps/files/l10n/zh_CN.php +++ b/apps/files/l10n/zh_CN.php @@ -10,6 +10,7 @@ "Delete" => "删除", "already exists" => "已经存在", "replace" => "替换", +"suggest name" => "建议名称", "cancel" => "取消", "replaced" => "已经替换", "undo" => "撤销", @@ -20,6 +21,7 @@ "Upload Error" => "上传错误", "Pending" => "操作等待中", "Upload cancelled." => "上传已取消", +"File upload is in progress. Leaving the page now will cancel the upload." => "文件正在上传中。现在离开此页会导致上传动作被取消。", "Invalid name, '/' is not allowed." => "非法的名称,不允许使用‘/’。", "Size" => "大小", "Modified" => "修改日期", @@ -34,6 +36,7 @@ "Enable ZIP-download" => "启用 ZIP 下载", "0 is unlimited" => "0 为无限制", "Maximum input size for ZIP files" => "ZIP 文件的最大输入大小", +"Save" => "保存", "New" => "新建", "Text file" => "文本文件", "Folder" => "文件夹", diff --git a/apps/files_encryption/l10n/zh_CN.php b/apps/files_encryption/l10n/zh_CN.php new file mode 100644 index 00000000000..139ae909709 --- /dev/null +++ b/apps/files_encryption/l10n/zh_CN.php @@ -0,0 +1,5 @@ + "加密", +"None" => "None", +"Enable Encryption" => "开启加密" +); diff --git a/apps/files_external/l10n/it.php b/apps/files_external/l10n/it.php index 927499b0172..5c5d32b214c 100644 --- a/apps/files_external/l10n/it.php +++ b/apps/files_external/l10n/it.php @@ -11,8 +11,8 @@ "Groups" => "Gruppi", "Users" => "Utenti", "Delete" => "Elimina", -"SSL root certificates" => "Certificato principale per SSL", -"Import Root Certificate" => "Importa certificato principale", +"SSL root certificates" => "Certificati SSL radice", +"Import Root Certificate" => "Importa certificato radice", "Enable User External Storage" => "Abilita la memoria esterna dell'utente", -"Allow users to mount their own external storage" => "Consente agli utenti di montare la propria memoria esterna" +"Allow users to mount their own external storage" => "Consenti agli utenti di montare la propria memoria esterna" ); diff --git a/apps/files_external/l10n/sk_SK.php b/apps/files_external/l10n/sk_SK.php new file mode 100644 index 00000000000..24087ea7feb --- /dev/null +++ b/apps/files_external/l10n/sk_SK.php @@ -0,0 +1,18 @@ + "Externé úložisko", +"Mount point" => "Prípojný bod", +"Backend" => "Backend", +"Configuration" => "Nastavenia", +"Options" => "Možnosti", +"Applicable" => "Aplikovateľné", +"Add mount point" => "Pridať prípojný bod", +"None set" => "Žiadne nastavené", +"All Users" => "Všetci užívatelia", +"Groups" => "Skupiny", +"Users" => "Užívatelia", +"Delete" => "Odstrániť", +"SSL root certificates" => "Koreňové SSL certifikáty", +"Import Root Certificate" => "Importovať koreňový certifikát", +"Enable User External Storage" => "Povoliť externé úložisko", +"Allow users to mount their own external storage" => "Povoliť užívateľom pripojiť ich vlastné externé úložisko" +); diff --git a/apps/files_sharing/l10n/sk_SK.php b/apps/files_sharing/l10n/sk_SK.php new file mode 100644 index 00000000000..ec9fc31c878 --- /dev/null +++ b/apps/files_sharing/l10n/sk_SK.php @@ -0,0 +1,7 @@ + "Heslo", +"Submit" => "Odoslať", +"Download" => "Stiahnuť", +"No preview available for" => "Žiaden náhľad k dispozícii pre", +"web services under your control" => "webové služby pod Vašou kontrolou" +); diff --git a/apps/files_versions/l10n/zh_CN.php b/apps/files_versions/l10n/zh_CN.php new file mode 100644 index 00000000000..56a474be89a --- /dev/null +++ b/apps/files_versions/l10n/zh_CN.php @@ -0,0 +1,6 @@ + "过期所有版本", +"Versions" => "版本", +"This will delete all existing backup versions of your files" => "将会删除您的文件的所有备份版本", +"Enable Files Versioning" => "开启文件版本" +); diff --git a/apps/user_ldap/l10n/fi_FI.php b/apps/user_ldap/l10n/fi_FI.php index 6d0040868f8..24195649a64 100644 --- a/apps/user_ldap/l10n/fi_FI.php +++ b/apps/user_ldap/l10n/fi_FI.php @@ -19,7 +19,7 @@ "Port" => "Portti", "Base User Tree" => "Oletuskäyttäjäpuu", "Base Group Tree" => "Ryhmien juuri", -"Group-Member association" => "Ryhmä-jäsen assosiaatio (yhteys)", +"Group-Member association" => "Ryhmän ja jäsenen assosiaatio (yhteys)", "Use TLS" => "Käytä TLS:ää", "Do not use it for SSL connections, it will fail." => "Älä käytä SSL-yhteyttä varten, se epäonnistuu. ", "Case insensitve LDAP server (Windows)" => "Kirjainkoosta piittamaton LDAP-palvelin (Windows)", @@ -27,11 +27,11 @@ "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Jos yhteys toimii vain tällä valinnalla, siirrä LDAP-palvelimen SSL-varmenne ownCloud-palvelimellesi.", "Not recommended, use for testing only." => "Ei suositella, käytä vain testausta varten.", "User Display Name Field" => "Käyttäjän näytettävän nimen kenttä", -"The LDAP attribute to use to generate the user`s ownCloud name." => "LDAP attribuutti, jota käytetään käyttäjän ownCloud käyttäjänimenä ", +"The LDAP attribute to use to generate the user`s ownCloud name." => "LDAP-attribuutti, jota käytetään käyttäjän ownCloud-käyttäjänimenä ", "Group Display Name Field" => "Ryhmän \"näytettävä nimi\"-kenttä", -"The LDAP attribute to use to generate the groups`s ownCloud name." => "LDAP atribuutti, jota käytetään luomaan ryhmän ownCloud nimi", +"The LDAP attribute to use to generate the groups`s ownCloud name." => "LDAP-attribuutti, jota käytetään luomaan ryhmän ownCloud-nimi", "in bytes" => "tavuissa", "in seconds. A change empties the cache." => "sekunneissa. Muutos tyhjentää välimuistin.", -"Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Jätä tyhjäksi käyttäjänimi (oletusasetus). Muutoin anna LDAP/AD atribuutti.", +"Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Jätä tyhjäksi käyttäjänimi (oletusasetus). Muutoin anna LDAP/AD-atribuutti.", "Help" => "Ohje" ); diff --git a/core/l10n/zh_CN.php b/core/l10n/zh_CN.php index 1f5216a2fff..4e0a37a8774 100644 --- a/core/l10n/zh_CN.php +++ b/core/l10n/zh_CN.php @@ -50,6 +50,7 @@ "Database user" => "数据库用户", "Database password" => "数据库密码", "Database name" => "数据库名", +"Database tablespace" => "数据库表空间", "Database host" => "数据库主机", "Finish setup" => "安装完成", "web services under your control" => "由您掌控的网络服务", diff --git a/l10n/ca/files.po b/l10n/ca/files.po index baaa56b4ebe..b00e52830d7 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/files.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:01+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-07 02:04+0200\n" +"PO-Revision-Date: 2012-09-06 06:33+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" @@ -54,7 +54,7 @@ msgstr "Ha fallat en escriure al disc" msgid "Files" msgstr "Fitxers" -#: js/fileactions.js:106 templates/index.php:56 +#: js/fileactions.js:106 templates/index.php:57 msgid "Delete" msgstr "Suprimeix" @@ -68,7 +68,7 @@ msgstr "substitueix" #: js/filelist.js:186 msgid "suggest name" -msgstr "" +msgstr "sugereix un nom" #: js/filelist.js:186 js/filelist.js:188 msgid "cancel" @@ -78,7 +78,7 @@ msgstr "cancel·la" msgid "replaced" msgstr "substituït" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:266 msgid "undo" msgstr "desfés" @@ -86,7 +86,7 @@ msgstr "desfés" msgid "with" msgstr "per" -#: js/filelist.js:271 +#: js/filelist.js:266 msgid "deleted" msgstr "esborrat" @@ -119,11 +119,11 @@ msgstr "Hi ha una pujada en curs. Si abandoneu la pàgina la pujada es cancel·l msgid "Invalid name, '/' is not allowed." msgstr "El nom no és vàlid, no es permet '/'." -#: js/files.js:746 templates/index.php:55 +#: js/files.js:746 templates/index.php:56 msgid "Size" msgstr "Mida" -#: js/files.js:747 templates/index.php:56 +#: js/files.js:747 templates/index.php:57 msgid "Modified" msgstr "Modificat" @@ -173,7 +173,7 @@ msgstr "Mida màxima d'entrada per fitxers ZIP" #: templates/admin.php:14 msgid "Save" -msgstr "Desar" +msgstr "Desa" #: templates/index.php:7 msgid "New" @@ -199,36 +199,36 @@ msgstr "Puja" msgid "Cancel upload" msgstr "Cancel·la la pujada" -#: templates/index.php:39 +#: templates/index.php:40 msgid "Nothing in here. Upload something!" msgstr "Res per aquí. Pugeu alguna cosa!" -#: templates/index.php:47 +#: templates/index.php:48 msgid "Name" msgstr "Nom" -#: templates/index.php:49 +#: templates/index.php:50 msgid "Share" msgstr "Comparteix" -#: templates/index.php:51 +#: templates/index.php:52 msgid "Download" msgstr "Baixa" -#: templates/index.php:64 +#: templates/index.php:65 msgid "Upload too large" msgstr "La pujada és massa gran" -#: templates/index.php:66 +#: templates/index.php:67 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Els fitxers que esteu intentant pujar excedeixen la mida màxima de pujada del servidor" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Files are being scanned, please wait." msgstr "S'estan escanejant els fitxers, espereu" -#: templates/index.php:74 +#: templates/index.php:75 msgid "Current scanning" msgstr "Actualment escanejant" diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index 28539a5b19a..8065c1ebeec 100644 --- a/l10n/ca/settings.po +++ b/l10n/ca/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 11:42+0000\n" -"Last-Translator: bury1000 \n" +"POT-Creation-Date: 2012-09-07 02:04+0200\n" +"PO-Revision-Date: 2012-09-06 06:39+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" @@ -224,7 +224,7 @@ msgstr "Esteu usant" #: templates/personal.php:8 msgid "of the available" -msgstr "del disponible" +msgstr "d'un total disponible de" #: templates/personal.php:12 msgid "Desktop and Mobile Syncing Clients" diff --git a/l10n/cs_CZ/files.po b/l10n/cs_CZ/files.po index 53a6691385e..855b138c2ac 100644 --- a/l10n/cs_CZ/files.po +++ b/l10n/cs_CZ/files.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:01+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-07 02:04+0200\n" +"PO-Revision-Date: 2012-09-06 08:41+0000\n" +"Last-Translator: Tomáš Chvátal \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -54,7 +54,7 @@ msgstr "Zápis na disk selhal" msgid "Files" msgstr "Soubory" -#: js/fileactions.js:106 templates/index.php:56 +#: js/fileactions.js:106 templates/index.php:57 msgid "Delete" msgstr "Smazat" @@ -68,7 +68,7 @@ msgstr "nahradit" #: js/filelist.js:186 msgid "suggest name" -msgstr "" +msgstr "navrhnout název" #: js/filelist.js:186 js/filelist.js:188 msgid "cancel" @@ -78,7 +78,7 @@ msgstr "zrušit" msgid "replaced" msgstr "nahrazeno" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:266 msgid "undo" msgstr "zpět" @@ -86,7 +86,7 @@ msgstr "zpět" msgid "with" msgstr "s" -#: js/filelist.js:271 +#: js/filelist.js:266 msgid "deleted" msgstr "smazáno" @@ -119,11 +119,11 @@ msgstr "Probíhá odesílání souboru. Opuštění stránky vyústí ve zrušen msgid "Invalid name, '/' is not allowed." msgstr "Neplatný název, znak '/' není povolen" -#: js/files.js:746 templates/index.php:55 +#: js/files.js:746 templates/index.php:56 msgid "Size" msgstr "Velikost" -#: js/files.js:747 templates/index.php:56 +#: js/files.js:747 templates/index.php:57 msgid "Modified" msgstr "Změněno" @@ -199,36 +199,36 @@ msgstr "Odeslat" msgid "Cancel upload" msgstr "Zrušit odesílání" -#: templates/index.php:39 +#: templates/index.php:40 msgid "Nothing in here. Upload something!" msgstr "Žádný obsah. Nahrajte něco." -#: templates/index.php:47 +#: templates/index.php:48 msgid "Name" msgstr "Název" -#: templates/index.php:49 +#: templates/index.php:50 msgid "Share" msgstr "Sdílet" -#: templates/index.php:51 +#: templates/index.php:52 msgid "Download" msgstr "Stáhnout" -#: templates/index.php:64 +#: templates/index.php:65 msgid "Upload too large" msgstr "Odeslaný soubor je příliš velký" -#: templates/index.php:66 +#: templates/index.php:67 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Soubory, které se snažíte odeslat, překračují limit velikosti odesílání na tomto serveru." -#: templates/index.php:71 +#: templates/index.php:72 msgid "Files are being scanned, please wait." msgstr "Soubory se prohledávají, prosím čekejte." -#: templates/index.php:74 +#: templates/index.php:75 msgid "Current scanning" msgstr "Aktuální prohledávání" diff --git a/l10n/de/files.po b/l10n/de/files.po index 186ed35ccdd..a06845cc3bc 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.po @@ -18,9 +18,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:01+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-07 02:04+0200\n" +"PO-Revision-Date: 2012-09-06 06:59+0000\n" +"Last-Translator: goeck \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" @@ -62,7 +62,7 @@ msgstr "Fehler beim Schreiben auf die Festplatte" msgid "Files" msgstr "Dateien" -#: js/fileactions.js:106 templates/index.php:56 +#: js/fileactions.js:106 templates/index.php:57 msgid "Delete" msgstr "Löschen" @@ -76,7 +76,7 @@ msgstr "ersetzen" #: js/filelist.js:186 msgid "suggest name" -msgstr "" +msgstr "Name vorschlagen" #: js/filelist.js:186 js/filelist.js:188 msgid "cancel" @@ -86,7 +86,7 @@ msgstr "abbrechen" msgid "replaced" msgstr "ersetzt" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:266 msgid "undo" msgstr "rückgängig machen" @@ -94,7 +94,7 @@ msgstr "rückgängig machen" msgid "with" msgstr "mit" -#: js/filelist.js:271 +#: js/filelist.js:266 msgid "deleted" msgstr "gelöscht" @@ -127,11 +127,11 @@ msgstr "Dateiupload läuft. Wenn Sie die Seite jetzt verlassen, wird der Upload msgid "Invalid name, '/' is not allowed." msgstr "Ungültiger Name: \"/\" ist nicht erlaubt." -#: js/files.js:746 templates/index.php:55 +#: js/files.js:746 templates/index.php:56 msgid "Size" msgstr "Größe" -#: js/files.js:747 templates/index.php:56 +#: js/files.js:747 templates/index.php:57 msgid "Modified" msgstr "Bearbeitet" @@ -207,36 +207,36 @@ msgstr "Hochladen" msgid "Cancel upload" msgstr "Upload abbrechen" -#: templates/index.php:39 +#: templates/index.php:40 msgid "Nothing in here. Upload something!" msgstr "Alles leer. Lade etwas hoch!" -#: templates/index.php:47 +#: templates/index.php:48 msgid "Name" msgstr "Name" -#: templates/index.php:49 +#: templates/index.php:50 msgid "Share" msgstr "Teilen" -#: templates/index.php:51 +#: templates/index.php:52 msgid "Download" msgstr "Herunterladen" -#: templates/index.php:64 +#: templates/index.php:65 msgid "Upload too large" msgstr "Upload zu groß" -#: templates/index.php:66 +#: templates/index.php:67 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Die Datei überschreitet die Maximalgröße für Uploads auf diesem Server." -#: templates/index.php:71 +#: templates/index.php:72 msgid "Files are being scanned, please wait." msgstr "Dateien werden gescannt, bitte warten." -#: templates/index.php:74 +#: templates/index.php:75 msgid "Current scanning" msgstr "Scannen" diff --git a/l10n/es/files.po b/l10n/es/files.po index feda2631833..1889dd54e98 100644 --- a/l10n/es/files.po +++ b/l10n/es/files.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:01+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-07 02:04+0200\n" +"PO-Revision-Date: 2012-09-06 05:09+0000\n" +"Last-Translator: juanman \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -55,7 +55,7 @@ msgstr "La escritura en disco ha fallado" msgid "Files" msgstr "Archivos" -#: js/fileactions.js:106 templates/index.php:56 +#: js/fileactions.js:106 templates/index.php:57 msgid "Delete" msgstr "Eliminado" @@ -69,7 +69,7 @@ msgstr "reemplazar" #: js/filelist.js:186 msgid "suggest name" -msgstr "" +msgstr "sugerir nombre" #: js/filelist.js:186 js/filelist.js:188 msgid "cancel" @@ -79,7 +79,7 @@ msgstr "cancelar" msgid "replaced" msgstr "reemplazado" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:266 msgid "undo" msgstr "deshacer" @@ -87,7 +87,7 @@ msgstr "deshacer" msgid "with" msgstr "con" -#: js/filelist.js:271 +#: js/filelist.js:266 msgid "deleted" msgstr "borrado" @@ -120,11 +120,11 @@ msgstr "La subida del archivo está en proceso. Salir de la página ahora cancel msgid "Invalid name, '/' is not allowed." msgstr "Nombre no válido, '/' no está permitido." -#: js/files.js:746 templates/index.php:55 +#: js/files.js:746 templates/index.php:56 msgid "Size" msgstr "Tamaño" -#: js/files.js:747 templates/index.php:56 +#: js/files.js:747 templates/index.php:57 msgid "Modified" msgstr "Modificado" @@ -200,36 +200,36 @@ msgstr "Subir" msgid "Cancel upload" msgstr "Cancelar subida" -#: templates/index.php:39 +#: templates/index.php:40 msgid "Nothing in here. Upload something!" msgstr "Aquí no hay nada. ¡Sube algo!" -#: templates/index.php:47 +#: templates/index.php:48 msgid "Name" msgstr "Nombre" -#: templates/index.php:49 +#: templates/index.php:50 msgid "Share" msgstr "Compartir" -#: templates/index.php:51 +#: templates/index.php:52 msgid "Download" msgstr "Descargar" -#: templates/index.php:64 +#: templates/index.php:65 msgid "Upload too large" msgstr "El archivo es demasiado grande" -#: templates/index.php:66 +#: templates/index.php:67 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 por este servidor." -#: templates/index.php:71 +#: templates/index.php:72 msgid "Files are being scanned, please wait." msgstr "Se están escaneando los archivos, por favor espere." -#: templates/index.php:74 +#: templates/index.php:75 msgid "Current scanning" msgstr "Escaneo actual" diff --git a/l10n/fi_FI/files.po b/l10n/fi_FI/files.po index f82b204f60e..67278ea29fb 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_FI/files.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:01+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-07 02:04+0200\n" +"PO-Revision-Date: 2012-09-06 10:47+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" @@ -56,7 +56,7 @@ msgstr "Levylle kirjoitus epäonnistui" msgid "Files" msgstr "Tiedostot" -#: js/fileactions.js:106 templates/index.php:56 +#: js/fileactions.js:106 templates/index.php:57 msgid "Delete" msgstr "Poista" @@ -70,7 +70,7 @@ msgstr "korvaa" #: js/filelist.js:186 msgid "suggest name" -msgstr "" +msgstr "ehdota nimeä" #: js/filelist.js:186 js/filelist.js:188 msgid "cancel" @@ -80,7 +80,7 @@ msgstr "peru" msgid "replaced" msgstr "korvattu" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:266 msgid "undo" msgstr "kumoa" @@ -88,7 +88,7 @@ msgstr "kumoa" msgid "with" msgstr "käyttäen" -#: js/filelist.js:271 +#: js/filelist.js:266 msgid "deleted" msgstr "poistettu" @@ -121,11 +121,11 @@ msgstr "Tiedoston lähetys on meneillään. Sivulta poistuminen nyt peruu tiedos msgid "Invalid name, '/' is not allowed." msgstr "Virheellinen nimi, merkki '/' ei ole sallittu." -#: js/files.js:746 templates/index.php:55 +#: js/files.js:746 templates/index.php:56 msgid "Size" msgstr "Koko" -#: js/files.js:747 templates/index.php:56 +#: js/files.js:747 templates/index.php:57 msgid "Modified" msgstr "Muutettu" @@ -201,36 +201,36 @@ msgstr "Lähetä" msgid "Cancel upload" msgstr "Peru lähetys" -#: templates/index.php:39 +#: templates/index.php:40 msgid "Nothing in here. Upload something!" msgstr "Täällä ei ole mitään. Lähetä tänne jotakin!" -#: templates/index.php:47 +#: templates/index.php:48 msgid "Name" msgstr "Nimi" -#: templates/index.php:49 +#: templates/index.php:50 msgid "Share" msgstr "Jaa" -#: templates/index.php:51 +#: templates/index.php:52 msgid "Download" msgstr "Lataa" -#: templates/index.php:64 +#: templates/index.php:65 msgid "Upload too large" msgstr "Lähetettävä tiedosto on liian suuri" -#: templates/index.php:66 +#: templates/index.php:67 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Lähetettäväksi valitsemasi tiedostot ylittävät palvelimen salliman tiedostokoon rajan." -#: templates/index.php:71 +#: templates/index.php:72 msgid "Files are being scanned, please wait." msgstr "Tiedostoja tarkistetaan, odota hetki." -#: templates/index.php:74 +#: templates/index.php:75 msgid "Current scanning" msgstr "Tämänhetkinen tutkinta" diff --git a/l10n/fi_FI/user_ldap.po b/l10n/fi_FI/user_ldap.po index 62a31960b0c..085ca3dd65b 100644 --- a/l10n/fi_FI/user_ldap.po +++ b/l10n/fi_FI/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: 2012-09-06 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 16:49+0000\n" -"Last-Translator: teho \n" +"POT-Creation-Date: 2012-09-07 02:04+0200\n" +"PO-Revision-Date: 2012-09-06 10:56+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" @@ -110,7 +110,7 @@ msgstr "Ryhmien juuri" #: templates/settings.php:20 msgid "Group-Member association" -msgstr "Ryhmä-jäsen assosiaatio (yhteys)" +msgstr "Ryhmän ja jäsenen assosiaatio (yhteys)" #: templates/settings.php:21 msgid "Use TLS" @@ -144,7 +144,7 @@ msgstr "Käyttäjän näytettävän nimen kenttä" #: templates/settings.php:24 msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "LDAP attribuutti, jota käytetään käyttäjän ownCloud käyttäjänimenä " +msgstr "LDAP-attribuutti, jota käytetään käyttäjän ownCloud-käyttäjänimenä " #: templates/settings.php:25 msgid "Group Display Name Field" @@ -152,7 +152,7 @@ msgstr "Ryhmän \"näytettävä nimi\"-kenttä" #: templates/settings.php:25 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "LDAP atribuutti, jota käytetään luomaan ryhmän ownCloud nimi" +msgstr "LDAP-attribuutti, jota käytetään luomaan ryhmän ownCloud-nimi" #: templates/settings.php:27 msgid "in bytes" @@ -166,7 +166,7 @@ msgstr "sekunneissa. Muutos tyhjentää välimuistin." msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." -msgstr "Jätä tyhjäksi käyttäjänimi (oletusasetus). Muutoin anna LDAP/AD atribuutti." +msgstr "Jätä tyhjäksi käyttäjänimi (oletusasetus). Muutoin anna LDAP/AD-atribuutti." #: templates/settings.php:32 msgid "Help" diff --git a/l10n/it/core.po b/l10n/it/core.po index 39884ebdc9d..f4904b27927 100644 --- a/l10n/it/core.po +++ b/l10n/it/core.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-07 02:04+0200\n" +"PO-Revision-Date: 2012-09-06 05:05+0000\n" +"Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/it/files.po b/l10n/it/files.po index daa29074e68..6175346abd7 100644 --- a/l10n/it/files.po +++ b/l10n/it/files.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:01+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-07 02:04+0200\n" +"PO-Revision-Date: 2012-09-06 04:57+0000\n" +"Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -55,7 +55,7 @@ msgstr "Scrittura su disco non riuscita" msgid "Files" msgstr "File" -#: js/fileactions.js:106 templates/index.php:56 +#: js/fileactions.js:106 templates/index.php:57 msgid "Delete" msgstr "Elimina" @@ -69,7 +69,7 @@ msgstr "sostituisci" #: js/filelist.js:186 msgid "suggest name" -msgstr "" +msgstr "suggerisci nome" #: js/filelist.js:186 js/filelist.js:188 msgid "cancel" @@ -79,7 +79,7 @@ msgstr "annulla" msgid "replaced" msgstr "sostituito" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:266 msgid "undo" msgstr "annulla" @@ -87,7 +87,7 @@ msgstr "annulla" msgid "with" msgstr "con" -#: js/filelist.js:271 +#: js/filelist.js:266 msgid "deleted" msgstr "eliminati" @@ -120,11 +120,11 @@ msgstr "Caricamento del file in corso. La chiusura della pagina annullerà il ca msgid "Invalid name, '/' is not allowed." msgstr "Nome non valido" -#: js/files.js:746 templates/index.php:55 +#: js/files.js:746 templates/index.php:56 msgid "Size" msgstr "Dimensione" -#: js/files.js:747 templates/index.php:56 +#: js/files.js:747 templates/index.php:57 msgid "Modified" msgstr "Modificato" @@ -200,36 +200,36 @@ msgstr "Carica" msgid "Cancel upload" msgstr "Annulla invio" -#: templates/index.php:39 +#: templates/index.php:40 msgid "Nothing in here. Upload something!" msgstr "Non c'è niente qui. Carica qualcosa!" -#: templates/index.php:47 +#: templates/index.php:48 msgid "Name" msgstr "Nome" -#: templates/index.php:49 +#: templates/index.php:50 msgid "Share" msgstr "Condividi" -#: templates/index.php:51 +#: templates/index.php:52 msgid "Download" msgstr "Scarica" -#: templates/index.php:64 +#: templates/index.php:65 msgid "Upload too large" msgstr "Il file caricato è troppo grande" -#: templates/index.php:66 +#: templates/index.php:67 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "I file che stai provando a caricare superano la dimensione massima consentita su questo server." -#: templates/index.php:71 +#: templates/index.php:72 msgid "Files are being scanned, please wait." msgstr "Scansione dei file in corso, attendi" -#: templates/index.php:74 +#: templates/index.php:75 msgid "Current scanning" msgstr "Scansione corrente" diff --git a/l10n/it/files_external.po b/l10n/it/files_external.po index 801511ce3b5..1875987bf4b 100644 --- a/l10n/it/files_external.po +++ b/l10n/it/files_external.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-15 02:02+0200\n" -"PO-Revision-Date: 2012-08-14 14:42+0000\n" -"Last-Translator: Innocenzo Ventre \n" +"POT-Creation-Date: 2012-09-07 02:04+0200\n" +"PO-Revision-Date: 2012-09-06 05:03+0000\n" +"Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: it\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/settings.php:3 msgid "External Storage" @@ -69,11 +69,11 @@ msgstr "Elimina" #: templates/settings.php:88 msgid "SSL root certificates" -msgstr "Certificato principale per SSL" +msgstr "Certificati SSL radice" #: templates/settings.php:102 msgid "Import Root Certificate" -msgstr "Importa certificato principale" +msgstr "Importa certificato radice" #: templates/settings.php:108 msgid "Enable User External Storage" @@ -81,4 +81,4 @@ msgstr "Abilita la memoria esterna dell'utente" #: templates/settings.php:109 msgid "Allow users to mount their own external storage" -msgstr "Consente agli utenti di montare la propria memoria esterna" +msgstr "Consenti agli utenti di montare la propria memoria esterna" diff --git a/l10n/pl/files.po b/l10n/pl/files.po index 2512f6db596..a3ea40e9bd8 100644 --- a/l10n/pl/files.po +++ b/l10n/pl/files.po @@ -4,7 +4,7 @@ # # Translators: # Cyryl Sochacki <>, 2012. -# Marcin Małecki , 2011, 2012. +# Marcin Małecki , 2011-2012. # , 2011. # , 2012. # Piotr Sokół , 2012. @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:01+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-07 02:04+0200\n" +"PO-Revision-Date: 2012-09-06 13:42+0000\n" +"Last-Translator: Marcin Małecki \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" @@ -56,7 +56,7 @@ msgstr "Błąd zapisu na dysk" msgid "Files" msgstr "Pliki" -#: js/fileactions.js:106 templates/index.php:56 +#: js/fileactions.js:106 templates/index.php:57 msgid "Delete" msgstr "Usuwa element" @@ -70,7 +70,7 @@ msgstr "zastap" #: js/filelist.js:186 msgid "suggest name" -msgstr "" +msgstr "zasugeruj nazwę" #: js/filelist.js:186 js/filelist.js:188 msgid "cancel" @@ -80,7 +80,7 @@ msgstr "anuluj" msgid "replaced" msgstr "zastąpione" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:266 msgid "undo" msgstr "wróć" @@ -88,7 +88,7 @@ msgstr "wróć" msgid "with" msgstr "z" -#: js/filelist.js:271 +#: js/filelist.js:266 msgid "deleted" msgstr "skasuj" @@ -121,11 +121,11 @@ msgstr "Wysyłanie pliku jest w toku. Teraz opuszczając stronę wysyłanie zost msgid "Invalid name, '/' is not allowed." msgstr "Nieprawidłowa nazwa '/' jest niedozwolone." -#: js/files.js:746 templates/index.php:55 +#: js/files.js:746 templates/index.php:56 msgid "Size" msgstr "Rozmiar" -#: js/files.js:747 templates/index.php:56 +#: js/files.js:747 templates/index.php:57 msgid "Modified" msgstr "Czas modyfikacji" @@ -201,36 +201,36 @@ msgstr "Prześlij" msgid "Cancel upload" msgstr "Przestań wysyłać" -#: templates/index.php:39 +#: templates/index.php:40 msgid "Nothing in here. Upload something!" msgstr "Brak zawartości. Proszę wysłać pliki!" -#: templates/index.php:47 +#: templates/index.php:48 msgid "Name" msgstr "Nazwa" -#: templates/index.php:49 +#: templates/index.php:50 msgid "Share" msgstr "Współdziel" -#: templates/index.php:51 +#: templates/index.php:52 msgid "Download" msgstr "Pobiera element" -#: templates/index.php:64 +#: templates/index.php:65 msgid "Upload too large" msgstr "Wysyłany plik ma za duży rozmiar" -#: templates/index.php:66 +#: templates/index.php:67 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Pliki które próbujesz przesłać, przekraczają maksymalną, dopuszczalną wielkość." -#: templates/index.php:71 +#: templates/index.php:72 msgid "Files are being scanned, please wait." msgstr "Skanowanie plików, proszę czekać." -#: templates/index.php:74 +#: templates/index.php:75 msgid "Current scanning" msgstr "Aktualnie skanowane" diff --git a/l10n/sk_SK/files_external.po b/l10n/sk_SK/files_external.po index 99cbb6e3c46..5c0dd5a8c76 100644 --- a/l10n/sk_SK/files_external.po +++ b/l10n/sk_SK/files_external.po @@ -3,80 +3,81 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:34+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-07 02:04+0200\n" +"PO-Revision-Date: 2012-09-06 17:51+0000\n" +"Last-Translator: intense \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" "Content-Transfer-Encoding: 8bit\n" "Language: sk_SK\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #: templates/settings.php:3 msgid "External Storage" -msgstr "" +msgstr "Externé úložisko" #: templates/settings.php:7 templates/settings.php:19 msgid "Mount point" -msgstr "" +msgstr "Prípojný bod" #: templates/settings.php:8 msgid "Backend" -msgstr "" +msgstr "Backend" #: templates/settings.php:9 msgid "Configuration" -msgstr "" +msgstr "Nastavenia" #: templates/settings.php:10 msgid "Options" -msgstr "" +msgstr "Možnosti" #: templates/settings.php:11 msgid "Applicable" -msgstr "" +msgstr "Aplikovateľné" #: templates/settings.php:23 msgid "Add mount point" -msgstr "" +msgstr "Pridať prípojný bod" #: templates/settings.php:54 templates/settings.php:62 msgid "None set" -msgstr "" +msgstr "Žiadne nastavené" #: templates/settings.php:63 msgid "All Users" -msgstr "" +msgstr "Všetci užívatelia" #: templates/settings.php:64 msgid "Groups" -msgstr "" +msgstr "Skupiny" #: templates/settings.php:69 msgid "Users" -msgstr "" +msgstr "Užívatelia" #: templates/settings.php:77 templates/settings.php:96 msgid "Delete" -msgstr "" +msgstr "Odstrániť" #: templates/settings.php:88 msgid "SSL root certificates" -msgstr "" +msgstr "Koreňové SSL certifikáty" #: templates/settings.php:102 msgid "Import Root Certificate" -msgstr "" +msgstr "Importovať koreňový certifikát" #: templates/settings.php:108 msgid "Enable User External Storage" -msgstr "" +msgstr "Povoliť externé úložisko" #: templates/settings.php:109 msgid "Allow users to mount their own external storage" -msgstr "" +msgstr "Povoliť užívateľom pripojiť ich vlastné externé úložisko" diff --git a/l10n/sk_SK/files_sharing.po b/l10n/sk_SK/files_sharing.po index bda598320ea..d28ae49cf74 100644 --- a/l10n/sk_SK/files_sharing.po +++ b/l10n/sk_SK/files_sharing.po @@ -3,36 +3,37 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-07 02:04+0200\n" +"PO-Revision-Date: 2012-09-06 17:47+0000\n" +"Last-Translator: intense \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" "Content-Transfer-Encoding: 8bit\n" "Language: sk_SK\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #: templates/authenticate.php:4 msgid "Password" -msgstr "" +msgstr "Heslo" #: templates/authenticate.php:6 msgid "Submit" -msgstr "" +msgstr "Odoslať" #: templates/public.php:9 templates/public.php:19 msgid "Download" -msgstr "" +msgstr "Stiahnuť" #: templates/public.php:18 msgid "No preview available for" -msgstr "" +msgstr "Žiaden náhľad k dispozícii pre" -#: templates/public.php:23 +#: templates/public.php:25 msgid "web services under your control" -msgstr "" +msgstr "webové služby pod Vašou kontrolou" diff --git a/l10n/sl/files.po b/l10n/sl/files.po index 73d23c25795..af1cffc01a8 100644 --- a/l10n/sl/files.po +++ b/l10n/sl/files.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:01+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-07 02:04+0200\n" +"PO-Revision-Date: 2012-09-06 05:16+0000\n" +"Last-Translator: Peter Peroša \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -54,7 +54,7 @@ msgstr "Pisanje na disk je spodletelo" msgid "Files" msgstr "Datoteke" -#: js/fileactions.js:106 templates/index.php:56 +#: js/fileactions.js:106 templates/index.php:57 msgid "Delete" msgstr "Izbriši" @@ -68,7 +68,7 @@ msgstr "nadomesti" #: js/filelist.js:186 msgid "suggest name" -msgstr "" +msgstr "predlagaj ime" #: js/filelist.js:186 js/filelist.js:188 msgid "cancel" @@ -78,7 +78,7 @@ msgstr "ekliči" msgid "replaced" msgstr "nadomeščen" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:266 msgid "undo" msgstr "razveljavi" @@ -86,7 +86,7 @@ msgstr "razveljavi" msgid "with" msgstr "z" -#: js/filelist.js:271 +#: js/filelist.js:266 msgid "deleted" msgstr "izbrisano" @@ -119,11 +119,11 @@ msgstr "Nalaganje datoteke je v teku. Če zapustite to stran zdaj, boste nalagan msgid "Invalid name, '/' is not allowed." msgstr "Neveljavno ime. Znak '/' ni dovoljen." -#: js/files.js:746 templates/index.php:55 +#: js/files.js:746 templates/index.php:56 msgid "Size" msgstr "Velikost" -#: js/files.js:747 templates/index.php:56 +#: js/files.js:747 templates/index.php:57 msgid "Modified" msgstr "Spremenjeno" @@ -199,36 +199,36 @@ msgstr "Naloži" msgid "Cancel upload" msgstr "Prekliči nalaganje" -#: templates/index.php:39 +#: templates/index.php:40 msgid "Nothing in here. Upload something!" msgstr "Tukaj ni ničesar. Naložite kaj!" -#: templates/index.php:47 +#: templates/index.php:48 msgid "Name" msgstr "Ime" -#: templates/index.php:49 +#: templates/index.php:50 msgid "Share" msgstr "Souporaba" -#: templates/index.php:51 +#: templates/index.php:52 msgid "Download" msgstr "Prenesi" -#: templates/index.php:64 +#: templates/index.php:65 msgid "Upload too large" msgstr "Nalaganje ni mogoče, ker je preveliko" -#: templates/index.php:66 +#: templates/index.php:67 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Datoteke, ki jih želite naložiti, presegajo največjo dovoljeno velikost na tem strežniku." -#: templates/index.php:71 +#: templates/index.php:72 msgid "Files are being scanned, please wait." msgstr "Preiskujem datoteke, prosimo počakajte." -#: templates/index.php:74 +#: templates/index.php:75 msgid "Current scanning" msgstr "Trenutno preiskujem" diff --git a/l10n/sv/files.po b/l10n/sv/files.po index 847a38a3958..81ea65ce488 100644 --- a/l10n/sv/files.po +++ b/l10n/sv/files.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:01+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-07 02:04+0200\n" +"PO-Revision-Date: 2012-09-06 13:34+0000\n" +"Last-Translator: Magnus Höglund \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -57,7 +57,7 @@ msgstr "Misslyckades spara till disk" msgid "Files" msgstr "Filer" -#: js/fileactions.js:106 templates/index.php:56 +#: js/fileactions.js:106 templates/index.php:57 msgid "Delete" msgstr "Radera" @@ -71,7 +71,7 @@ msgstr "ersätt" #: js/filelist.js:186 msgid "suggest name" -msgstr "" +msgstr "föreslå namn" #: js/filelist.js:186 js/filelist.js:188 msgid "cancel" @@ -81,7 +81,7 @@ msgstr "avbryt" msgid "replaced" msgstr "ersatt" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:266 msgid "undo" msgstr "ångra" @@ -89,7 +89,7 @@ msgstr "ångra" msgid "with" msgstr "med" -#: js/filelist.js:271 +#: js/filelist.js:266 msgid "deleted" msgstr "raderad" @@ -122,11 +122,11 @@ msgstr "Filuppladdning pågår. Lämnar du sidan så avbryts uppladdningen." msgid "Invalid name, '/' is not allowed." msgstr "Ogiltigt namn, '/' är inte tillåten." -#: js/files.js:746 templates/index.php:55 +#: js/files.js:746 templates/index.php:56 msgid "Size" msgstr "Storlek" -#: js/files.js:747 templates/index.php:56 +#: js/files.js:747 templates/index.php:57 msgid "Modified" msgstr "Ändrad" @@ -202,36 +202,36 @@ msgstr "Ladda upp" msgid "Cancel upload" msgstr "Avbryt uppladdning" -#: templates/index.php:39 +#: templates/index.php:40 msgid "Nothing in here. Upload something!" msgstr "Ingenting här. Ladda upp något!" -#: templates/index.php:47 +#: templates/index.php:48 msgid "Name" msgstr "Namn" -#: templates/index.php:49 +#: templates/index.php:50 msgid "Share" msgstr "Dela" -#: templates/index.php:51 +#: templates/index.php:52 msgid "Download" msgstr "Ladda ner" -#: templates/index.php:64 +#: templates/index.php:65 msgid "Upload too large" msgstr "För stor uppladdning" -#: templates/index.php:66 +#: templates/index.php:67 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Filerna du försöker ladda upp överstiger den maximala storleken för filöverföringar på servern." -#: templates/index.php:71 +#: templates/index.php:72 msgid "Files are being scanned, please wait." msgstr "Filer skannas, var god vänta" -#: templates/index.php:74 +#: templates/index.php:75 msgid "Current scanning" msgstr "Aktuell skanning" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 9112352a3a0..b702651ccd7 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"POT-Creation-Date: 2012-09-07 02:04+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 74ab3230866..08fbebab797 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"POT-Creation-Date: 2012-09-07 02:04+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -51,7 +51,7 @@ msgstr "" msgid "Files" msgstr "" -#: js/fileactions.js:106 templates/index.php:56 +#: js/fileactions.js:106 templates/index.php:57 msgid "Delete" msgstr "" @@ -75,7 +75,7 @@ msgstr "" msgid "replaced" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:266 msgid "undo" msgstr "" @@ -83,7 +83,7 @@ msgstr "" msgid "with" msgstr "" -#: js/filelist.js:271 +#: js/filelist.js:266 msgid "deleted" msgstr "" @@ -116,11 +116,11 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:746 templates/index.php:55 +#: js/files.js:746 templates/index.php:56 msgid "Size" msgstr "" -#: js/files.js:747 templates/index.php:56 +#: js/files.js:747 templates/index.php:57 msgid "Modified" msgstr "" @@ -196,36 +196,36 @@ msgstr "" msgid "Cancel upload" msgstr "" -#: templates/index.php:39 +#: templates/index.php:40 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:47 +#: templates/index.php:48 msgid "Name" msgstr "" -#: templates/index.php:49 +#: templates/index.php:50 msgid "Share" msgstr "" -#: templates/index.php:51 +#: templates/index.php:52 msgid "Download" msgstr "" -#: templates/index.php:64 +#: templates/index.php:65 msgid "Upload too large" msgstr "" -#: templates/index.php:66 +#: templates/index.php:67 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:74 +#: templates/index.php:75 msgid "Current scanning" msgstr "" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 0590a198801..372d9301ed7 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"POT-Creation-Date: 2012-09-07 02:04+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index 76fafddc1b2..d09f7055354 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"POT-Creation-Date: 2012-09-07 02:04+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index b0c45867827..e9f6afc98d2 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"POT-Creation-Date: 2012-09-07 02:04+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index b17eb3894d1..9750a4acc5d 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"POT-Creation-Date: 2012-09-07 02:04+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index 5a86298e890..d9c9f8aaded 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"POT-Creation-Date: 2012-09-07 02:04+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 42965d3e0bd..8bd0ab8fda5 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"POT-Creation-Date: 2012-09-07 02:04+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 82b19373c1d..45eb19bf9fa 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"POT-Creation-Date: 2012-09-07 02:04+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/th_TH/files.po b/l10n/th_TH/files.po index b6ff21b3829..7c732071313 100644 --- a/l10n/th_TH/files.po +++ b/l10n/th_TH/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:01+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-07 02:04+0200\n" +"PO-Revision-Date: 2012-09-06 04:45+0000\n" +"Last-Translator: AriesAnywhere Anywhere \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -53,7 +53,7 @@ msgstr "เขียนข้อมูลลงแผ่นดิสก์ล้ msgid "Files" msgstr "ไฟล์" -#: js/fileactions.js:106 templates/index.php:56 +#: js/fileactions.js:106 templates/index.php:57 msgid "Delete" msgstr "ลบ" @@ -67,7 +67,7 @@ msgstr "แทนที่" #: js/filelist.js:186 msgid "suggest name" -msgstr "" +msgstr "แนะนำชื่อ" #: js/filelist.js:186 js/filelist.js:188 msgid "cancel" @@ -77,7 +77,7 @@ msgstr "ยกเลิก" msgid "replaced" msgstr "แทนที่แล้ว" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:266 msgid "undo" msgstr "เลิกทำ" @@ -85,7 +85,7 @@ msgstr "เลิกทำ" msgid "with" msgstr "กับ" -#: js/filelist.js:271 +#: js/filelist.js:266 msgid "deleted" msgstr "ลบแล้ว" @@ -118,11 +118,11 @@ msgstr "การอัพโหลดไฟล์กำลังอยู่ใ msgid "Invalid name, '/' is not allowed." msgstr "ชื่อที่ใช้ไม่ถูกต้อง '/' ไม่อนุญาตให้ใช้งาน" -#: js/files.js:746 templates/index.php:55 +#: js/files.js:746 templates/index.php:56 msgid "Size" msgstr "ขนาด" -#: js/files.js:747 templates/index.php:56 +#: js/files.js:747 templates/index.php:57 msgid "Modified" msgstr "ปรับปรุงล่าสุด" @@ -198,36 +198,36 @@ msgstr "อัพโหลด" msgid "Cancel upload" msgstr "ยกเลิกการอัพโหลด" -#: templates/index.php:39 +#: templates/index.php:40 msgid "Nothing in here. Upload something!" msgstr "ยังไม่มีไฟล์ใดๆอยู่ที่นี่ กรุณาอัพโหลดไฟล์!" -#: templates/index.php:47 +#: templates/index.php:48 msgid "Name" msgstr "ชื่อ" -#: templates/index.php:49 +#: templates/index.php:50 msgid "Share" msgstr "แชร์" -#: templates/index.php:51 +#: templates/index.php:52 msgid "Download" msgstr "ดาวน์โหลด" -#: templates/index.php:64 +#: templates/index.php:65 msgid "Upload too large" msgstr "ไฟล์ที่อัพโหลดมีขนาดใหญ่เกินไป" -#: templates/index.php:66 +#: templates/index.php:67 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "ไฟล์ที่คุณพยายามที่จะอัพโหลดมีขนาดเกินกว่าขนาดสูงสุดที่กำหนดไว้ให้อัพโหลดได้สำหรับเซิร์ฟเวอร์นี้" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Files are being scanned, please wait." msgstr "ไฟล์กำลังอยู่ระหว่างการสแกน, กรุณารอสักครู่." -#: templates/index.php:74 +#: templates/index.php:75 msgid "Current scanning" msgstr "ไฟล์ที่กำลังสแกนอยู่ขณะนี้" diff --git a/l10n/zh_CN/core.po b/l10n/zh_CN/core.po index 57d881dcff1..5ecd449a620 100644 --- a/l10n/zh_CN/core.po +++ b/l10n/zh_CN/core.po @@ -3,15 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. # Phoenix Nemo <>, 2012. # , 2011, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-07 02:04+0200\n" +"PO-Revision-Date: 2012-09-06 07:30+0000\n" +"Last-Translator: hanfeng \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -227,7 +228,7 @@ msgstr "数据库名" #: templates/installation.php:109 msgid "Database tablespace" -msgstr "" +msgstr "数据库表空间" #: templates/installation.php:115 msgid "Database host" diff --git a/l10n/zh_CN/files.po b/l10n/zh_CN/files.po index 3b55dd63418..585310a4089 100644 --- a/l10n/zh_CN/files.po +++ b/l10n/zh_CN/files.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:01+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-07 02:04+0200\n" +"PO-Revision-Date: 2012-09-06 07:31+0000\n" +"Last-Translator: hanfeng \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -54,7 +54,7 @@ msgstr "写入磁盘失败" msgid "Files" msgstr "文件" -#: js/fileactions.js:106 templates/index.php:56 +#: js/fileactions.js:106 templates/index.php:57 msgid "Delete" msgstr "删除" @@ -68,7 +68,7 @@ msgstr "替换" #: js/filelist.js:186 msgid "suggest name" -msgstr "" +msgstr "建议名称" #: js/filelist.js:186 js/filelist.js:188 msgid "cancel" @@ -78,7 +78,7 @@ msgstr "取消" msgid "replaced" msgstr "已经替换" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:266 msgid "undo" msgstr "撤销" @@ -86,7 +86,7 @@ msgstr "撤销" msgid "with" msgstr "随着" -#: js/filelist.js:271 +#: js/filelist.js:266 msgid "deleted" msgstr "已经删除" @@ -113,17 +113,17 @@ msgstr "上传已取消" #: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "" +msgstr "文件正在上传中。现在离开此页会导致上传动作被取消。" #: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "非法的名称,不允许使用‘/’。" -#: js/files.js:746 templates/index.php:55 +#: js/files.js:746 templates/index.php:56 msgid "Size" msgstr "大小" -#: js/files.js:747 templates/index.php:56 +#: js/files.js:747 templates/index.php:57 msgid "Modified" msgstr "修改日期" @@ -173,7 +173,7 @@ msgstr "ZIP 文件的最大输入大小" #: templates/admin.php:14 msgid "Save" -msgstr "" +msgstr "保存" #: templates/index.php:7 msgid "New" @@ -199,36 +199,36 @@ msgstr "上传" msgid "Cancel upload" msgstr "取消上传" -#: templates/index.php:39 +#: templates/index.php:40 msgid "Nothing in here. Upload something!" msgstr "这里还什么都没有。上传些东西吧!" -#: templates/index.php:47 +#: templates/index.php:48 msgid "Name" msgstr "名称" -#: templates/index.php:49 +#: templates/index.php:50 msgid "Share" msgstr "共享" -#: templates/index.php:51 +#: templates/index.php:52 msgid "Download" msgstr "下载" -#: templates/index.php:64 +#: templates/index.php:65 msgid "Upload too large" msgstr "上传文件过大" -#: templates/index.php:66 +#: templates/index.php:67 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "您正尝试上传的文件超过了此服务器可以上传的最大大小" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Files are being scanned, please wait." msgstr "文件正在被扫描,请稍候。" -#: templates/index.php:74 +#: templates/index.php:75 msgid "Current scanning" msgstr "当前扫描" diff --git a/l10n/zh_CN/files_encryption.po b/l10n/zh_CN/files_encryption.po index 19d9d60f7df..7e030749cf6 100644 --- a/l10n/zh_CN/files_encryption.po +++ b/l10n/zh_CN/files_encryption.po @@ -3,23 +3,24 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:33+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-07 02:04+0200\n" +"PO-Revision-Date: 2012-09-06 15:39+0000\n" +"Last-Translator: hanfeng \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: zh_CN\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: templates/settings.php:3 msgid "Encryption" -msgstr "" +msgstr "加密" #: templates/settings.php:4 msgid "Exclude the following file types from encryption" @@ -27,8 +28,8 @@ msgstr "" #: templates/settings.php:5 msgid "None" -msgstr "" +msgstr "None" #: templates/settings.php:10 msgid "Enable Encryption" -msgstr "" +msgstr "开启加密" diff --git a/l10n/zh_CN/files_versions.po b/l10n/zh_CN/files_versions.po index 31e3aedf8af..8fc46b74985 100644 --- a/l10n/zh_CN/files_versions.po +++ b/l10n/zh_CN/files_versions.po @@ -3,32 +3,33 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-07 02:04+0200\n" +"PO-Revision-Date: 2012-09-06 13:03+0000\n" +"Last-Translator: hanfeng \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: zh_CN\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" -msgstr "" +msgstr "过期所有版本" #: templates/settings-personal.php:4 msgid "Versions" -msgstr "" +msgstr "版本" #: templates/settings-personal.php:7 msgid "This will delete all existing backup versions of your files" -msgstr "" +msgstr "将会删除您的文件的所有备份版本" #: templates/settings.php:3 msgid "Enable Files Versioning" -msgstr "" +msgstr "开启文件版本" diff --git a/l10n/zh_CN/lib.po b/l10n/zh_CN/lib.po index 7bb4a2e7860..ff9847c8289 100644 --- a/l10n/zh_CN/lib.po +++ b/l10n/zh_CN/lib.po @@ -3,20 +3,21 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. # , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-09-01 00:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-07 02:04+0200\n" +"PO-Revision-Date: 2012-09-06 07:33+0000\n" +"Last-Translator: hanfeng \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: zh_CN\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: app.php:288 msgid "Help" @@ -70,57 +71,57 @@ msgstr "认证错误" msgid "Token expired. Please reload page." msgstr "Token 过期,请刷新页面。" -#: template.php:86 +#: template.php:87 msgid "seconds ago" msgstr "几秒前" -#: template.php:87 +#: template.php:88 msgid "1 minute ago" msgstr "1分钟前" -#: template.php:88 +#: template.php:89 #, php-format msgid "%d minutes ago" msgstr "%d 分钟前" -#: template.php:91 +#: template.php:92 msgid "today" msgstr "今天" -#: template.php:92 +#: template.php:93 msgid "yesterday" msgstr "昨天" -#: template.php:93 +#: template.php:94 #, php-format msgid "%d days ago" msgstr "%d 天前" -#: template.php:94 +#: template.php:95 msgid "last month" msgstr "上月" -#: template.php:95 +#: template.php:96 msgid "months ago" msgstr "几月前" -#: template.php:96 +#: template.php:97 msgid "last year" msgstr "上年" -#: template.php:97 +#: template.php:98 msgid "years ago" msgstr "几年前" #: updater.php:66 #, php-format msgid "%s is available. Get more information" -msgstr "" +msgstr "%s 已存在. 点此 获取更多信息" #: updater.php:68 msgid "up to date" -msgstr "" +msgstr "已更新。" #: updater.php:71 msgid "updates check is disabled" -msgstr "" +msgstr "检查更新功能被关闭。" diff --git a/l10n/zh_CN/settings.po b/l10n/zh_CN/settings.po index 8af73f8879a..c72ea361e02 100644 --- a/l10n/zh_CN/settings.po +++ b/l10n/zh_CN/settings.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-07 02:04+0200\n" +"PO-Revision-Date: 2012-09-06 08:01+0000\n" +"Last-Translator: hanfeng \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -32,11 +32,11 @@ msgstr "认证错误" #: ajax/creategroup.php:19 msgid "Group already exists" -msgstr "" +msgstr "已存在组" #: ajax/creategroup.php:28 msgid "Unable to add group" -msgstr "" +msgstr "不能添加组" #: ajax/lostpassword.php:14 msgid "Email saved" @@ -56,11 +56,11 @@ msgstr "非法请求" #: ajax/removegroup.php:16 msgid "Unable to delete group" -msgstr "" +msgstr "不能删除组" #: ajax/removeuser.php:22 msgid "Unable to delete user" -msgstr "" +msgstr "不能删除用户" #: ajax/setlanguage.php:18 msgid "Language changed" @@ -69,12 +69,12 @@ msgstr "语言已修改" #: ajax/togglegroups.php:25 #, php-format msgid "Unable to add user to group %s" -msgstr "" +msgstr "不能把用户添加到组 %s" #: ajax/togglegroups.php:31 #, php-format msgid "Unable to remove user from group %s" -msgstr "" +msgstr "不能从组%s中移除用户" #: js/apps.js:18 msgid "Error" @@ -107,7 +107,7 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "" +msgstr "您的数据文件夹和文件可由互联网访问。OwnCloud提供的.htaccess文件未生效。我们强烈建议您配置服务器,以使数据文件夹不可被访问,或者将数据文件夹移到web服务器以外。" #: templates/admin.php:31 msgid "Cron" @@ -127,39 +127,39 @@ msgstr "实现系统 cron 服务" #: templates/admin.php:41 msgid "Share API" -msgstr "" +msgstr "共享API" #: templates/admin.php:46 msgid "Enable Share API" -msgstr "" +msgstr "开启共享API" #: templates/admin.php:47 msgid "Allow apps to use the Share API" -msgstr "" +msgstr "允许 应用 使用共享API" #: templates/admin.php:51 msgid "Allow links" -msgstr "" +msgstr "允许连接" #: templates/admin.php:52 msgid "Allow users to share items to the public with links" -msgstr "" +msgstr "允许用户使用连接向公众共享" #: templates/admin.php:56 msgid "Allow resharing" -msgstr "" +msgstr "允许再次共享" #: templates/admin.php:57 msgid "Allow users to share items shared with them again" -msgstr "" +msgstr "允许用户将共享给他们的项目再次共享" #: templates/admin.php:60 msgid "Allow users to share with anyone" -msgstr "" +msgstr "允许用户向任何人共享" #: templates/admin.php:62 msgid "Allow users to only share with users in their groups" -msgstr "" +msgstr "允许用户只向同组用户共享" #: templates/admin.php:69 msgid "Log" @@ -177,7 +177,7 @@ msgid "" "licensed under the AGPL." -msgstr "" +msgstr "由ownCloud社区开发, 源代码AGPL许可证下发布。" #: templates/apps.php:10 msgid "Add your App" @@ -193,7 +193,7 @@ msgstr "查看在 app.owncloud.com 的应用程序页面" #: templates/apps.php:30 msgid "-licensed by " -msgstr "" +msgstr "-核准: " #: templates/help.php:9 msgid "Documentation" diff --git a/lib/l10n/zh_CN.php b/lib/l10n/zh_CN.php index 2d05ad3567e..8229c77d2dd 100644 --- a/lib/l10n/zh_CN.php +++ b/lib/l10n/zh_CN.php @@ -21,5 +21,8 @@ "last month" => "上月", "months ago" => "几月前", "last year" => "上年", -"years ago" => "几年前" +"years ago" => "几年前", +"%s is available. Get more information" => "%s 已存在. 点此 获取更多信息", +"up to date" => "已更新。", +"updates check is disabled" => "检查更新功能被关闭。" ); diff --git a/settings/l10n/ca.php b/settings/l10n/ca.php index 524d6c79257..062e9a97342 100644 --- a/settings/l10n/ca.php +++ b/settings/l10n/ca.php @@ -46,7 +46,7 @@ "Go there manually." => "Vés-hi manualment.", "Answer" => "Resposta", "You use" => "Esteu usant", -"of the available" => "del disponible", +"of the available" => "d'un total disponible de", "Desktop and Mobile Syncing Clients" => "Clients de sincronització d'escriptori i de mòbil", "Download" => "Baixada", "Your password got changed" => "La contrasenya ha canviat", diff --git a/settings/l10n/zh_CN.php b/settings/l10n/zh_CN.php index 0667cee74bb..7927cec61c7 100644 --- a/settings/l10n/zh_CN.php +++ b/settings/l10n/zh_CN.php @@ -1,26 +1,44 @@ "无法从应用商店载入列表", "Authentication error" => "认证错误", +"Group already exists" => "已存在组", +"Unable to add group" => "不能添加组", "Email saved" => "电子邮件已保存", "Invalid email" => "无效的电子邮件", "OpenID Changed" => "OpenID 已修改", "Invalid request" => "非法请求", +"Unable to delete group" => "不能删除组", +"Unable to delete user" => "不能删除用户", "Language changed" => "语言已修改", +"Unable to add user to group %s" => "不能把用户添加到组 %s", +"Unable to remove user from group %s" => "不能从组%s中移除用户", "Error" => "错误", "Disable" => "禁用", "Enable" => "启用", "Saving..." => "正在保存", "__language_name__" => "简体中文", "Security Warning" => "安全警告", +"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "您的数据文件夹和文件可由互联网访问。OwnCloud提供的.htaccess文件未生效。我们强烈建议您配置服务器,以使数据文件夹不可被访问,或者将数据文件夹移到web服务器以外。", "Cron" => "计划任务", "execute one task with each page loaded" => "为每个装入的页面执行任务", "cron.php is registered at a webcron service" => "crop.php 已", "use systems cron service" => "实现系统 cron 服务", +"Share API" => "共享API", +"Enable Share API" => "开启共享API", +"Allow apps to use the Share API" => "允许 应用 使用共享API", +"Allow links" => "允许连接", +"Allow users to share items to the public with links" => "允许用户使用连接向公众共享", +"Allow resharing" => "允许再次共享", +"Allow users to share items shared with them again" => "允许用户将共享给他们的项目再次共享", +"Allow users to share with anyone" => "允许用户向任何人共享", +"Allow users to only share with users in their groups" => "允许用户只向同组用户共享", "Log" => "日志", "More" => "更多", +"Developed by the ownCloud community, the source code is licensed under the AGPL." => "由ownCloud社区开发, 源代码AGPL许可证下发布。", "Add your App" => "添加应用", "Select an App" => "选择一个应用", "See application page at apps.owncloud.com" => "查看在 app.owncloud.com 的应用程序页面", +"-licensed by " => "-核准: ", "Documentation" => "文档", "Managing Big Files" => "管理大文件", "Ask a question" => "提问", From 17dadd5c8a39f1903ffeec2c2c78e5e6cd145d9c Mon Sep 17 00:00:00 2001 From: Michael Gapczynski Date: Thu, 6 Sep 2012 20:36:25 -0400 Subject: [PATCH 187/246] Don't show the delete all action if delete permission is not granted --- apps/files/templates/index.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/apps/files/templates/index.php b/apps/files/templates/index.php index a874529330b..ec9e80e955e 100644 --- a/apps/files/templates/index.php +++ b/apps/files/templates/index.php @@ -54,7 +54,12 @@ t( 'Size' ); ?> - t( 'Modified' ); ?>t('Delete')?> <?php echo $l->t('Delete')?>" /> + + t( 'Modified' ); ?> + + t('Delete')?> <?php echo $l->t('Delete')?>" /> + + From 73d726d1b26f011e77761934bcf7f5ce8db86241 Mon Sep 17 00:00:00 2001 From: Michael Gapczynski Date: Fri, 7 Sep 2012 00:01:52 -0400 Subject: [PATCH 188/246] Support for unshare from self, with a bunch of temporary fixes to overcome configuration problems with file actions --- apps/files/js/fileactions.js | 7 ++++++- apps/files/js/filelist.js | 7 ++++++- apps/files/templates/index.php | 7 ++++++- apps/files_sharing/lib/share/file.php | 2 ++ apps/files_sharing/lib/sharedstorage.php | 18 ++++++++++++++---- lib/public/share.php | 3 ++- 6 files changed, 36 insertions(+), 8 deletions(-) diff --git a/apps/files/js/fileactions.js b/apps/files/js/fileactions.js index b7670fa2259..1403d345e8a 100644 --- a/apps/files/js/fileactions.js +++ b/apps/files/js/fileactions.js @@ -103,7 +103,12 @@ var FileActions={ if(img.call){ img=img(file); } - var html='t('Delete')?> <?php echo $l->t('Delete')?>" /> + + + t('Unshare')?> <?php echo $l->t('Unshare')?>" /> + + t('Delete')?> <?php echo $l->t('Delete')?>" /> + diff --git a/apps/files_sharing/lib/share/file.php b/apps/files_sharing/lib/share/file.php index 82744924be3..c8821ee0fe8 100644 --- a/apps/files_sharing/lib/share/file.php +++ b/apps/files_sharing/lib/share/file.php @@ -91,6 +91,8 @@ class OC_Share_Backend_File implements OCP\Share_Backend_File_Dependent { // Remove Create permission if type is file $file['permissions'] &= ~OCP\Share::PERMISSION_CREATE; } + // NOTE: Temporary fix to allow unsharing of files in root of Shared directory + $file['permissions'] |= OCP\Share::PERMISSION_DELETE; $files[] = $file; } return $files; diff --git a/apps/files_sharing/lib/sharedstorage.php b/apps/files_sharing/lib/sharedstorage.php index 6a2905b52c9..4530ce87777 100644 --- a/apps/files_sharing/lib/sharedstorage.php +++ b/apps/files_sharing/lib/sharedstorage.php @@ -209,7 +209,7 @@ class OC_Filestorage_Shared extends OC_Filestorage_Common { public function isDeletable($path) { if ($path == '') { - return false; + return true; } return ($this->getPermissions($path) & OCP\Share::PERMISSION_DELETE); } @@ -306,9 +306,19 @@ class OC_Filestorage_Shared extends OC_Filestorage_Common { public function unlink($path) { // Delete the file if DELETE permission is granted - if (($source = $this->getSourcePath($path)) && $this->isDeletable($path)) { - $storage = OC_Filesystem::getStorage($source); - return $storage->unlink($this->getInternalPath($source)); + if ($source = $this->getSourcePath($path)) { + if ($this->isDeletable($path)) { + $storage = OC_Filesystem::getStorage($source); + return $storage->unlink($this->getInternalPath($source)); + } else if (dirname($path) == '/' || dirname($path) == '.') { + // Unshare the file from the user if in the root of the Shared folder + if ($this->is_dir($path)) { + $itemType = 'folder'; + } else { + $itemType = 'file'; + } + return OCP\Share::unshareFromSelf($itemType, $path); + } } return false; } diff --git a/lib/public/share.php b/lib/public/share.php index 7b6b78561d4..cf61681424f 100644 --- a/lib/public/share.php +++ b/lib/public/share.php @@ -340,7 +340,7 @@ class Share { // TODO } // Delete - return self::delete($item['id'], true); + return self::delete($item['id']); } return false; } @@ -564,6 +564,7 @@ class Share { } else { if ($itemType == 'file' || $itemType == 'folder') { $where .= ' `file_target` = ?'; + $item = \OC_Filesystem::normalizePath($item); } else { $where .= ' `item_target` = ?'; } From 9ea7817a4074ba63a95bda9d0937e7ff01ac2e85 Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Fri, 7 Sep 2012 12:27:47 +0200 Subject: [PATCH 189/246] Remove core.{css,js} cache on upgrade --- lib/base.php | 1 + lib/minimizer.php | 6 ++++++ 2 files changed, 7 insertions(+) diff --git a/lib/base.php b/lib/base.php index 6c556e3d19c..cbcbdd2ad03 100644 --- a/lib/base.php +++ b/lib/base.php @@ -219,6 +219,7 @@ class OC{ $tmpl->printPage(); exit; } + OC_Minimizer::clearCache(); OC_Config::setValue('version', implode('.', OC_Util::getVersion())); OC_App::checkAppsRequirements(); diff --git a/lib/minimizer.php b/lib/minimizer.php index 3dc89e331a6..6e425efad55 100644 --- a/lib/minimizer.php +++ b/lib/minimizer.php @@ -45,6 +45,12 @@ abstract class OC_Minimizer { header('Content-Length: '.strlen($out)); echo $out; } + + public function clearCache() { + $cache = OC_Cache::getGlobalCache(); + $cache->delete('core.css.gz'); + $cache->delete('core.js.gz'); + } } if (!function_exists('gzdecode')) { From ff42da58b96999221e8ce0df555b8837ff67bb08 Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Fri, 7 Sep 2012 13:16:50 +0200 Subject: [PATCH 190/246] Global file cache should also be able to clear with prefix --- lib/cache/fileglobal.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/cache/fileglobal.php b/lib/cache/fileglobal.php index d4336553c38..e551ad472a2 100644 --- a/lib/cache/fileglobal.php +++ b/lib/cache/fileglobal.php @@ -64,12 +64,13 @@ class OC_Cache_FileGlobal{ return unlink($cache_dir.$key); } - public function clear(){ + public function clear($prefix=''){ $cache_dir = self::getCacheDir(); + $prefix = $this->fixKey($prefix); if($cache_dir and is_dir($cache_dir)){ $dh=opendir($cache_dir); while($file=readdir($dh)){ - if($file!='.' and $file!='..'){ + if($file!='.' and $file!='..' and ($prefix==='' || strpos($file, $prefix) === 0)){ unlink($cache_dir.$file); } } From cd4b8dbacd04fc821b14534cb43e301e0d2255f1 Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Fri, 7 Sep 2012 13:40:04 +0200 Subject: [PATCH 191/246] Change caching checks for minimized files Only use a ETag, but include last modified time into this Also added the filesize to this. And used the ETag for the internal cache. --- lib/minimizer.php | 27 ++++++++++++--------------- 1 file changed, 12 insertions(+), 15 deletions(-) diff --git a/lib/minimizer.php b/lib/minimizer.php index 6e425efad55..ff5f9304d9c 100644 --- a/lib/minimizer.php +++ b/lib/minimizer.php @@ -1,16 +1,15 @@ $last_modified) { - $last_modified = $filemtime; - } + $stat = stat($file); + $etag .= $file.$stat['mtime'].$stat['size']; } - return $last_modified; + return md5($etag); } abstract public function minimizeFiles($files); @@ -18,23 +17,21 @@ abstract class OC_Minimizer { public function output($files, $cache_key) { header('Content-Type: '.$this->contentType); OC_Response::enableCaching(); - $last_modified = $this->getLastModified($files); - OC_Response::setLastModifiedHeader($last_modified); + $etag = $this->generateETag($files); + $cache_key .= '-'.$etag; $gzout = false; $cache = OC_Cache::getGlobalCache(); if (!OC_Request::isNoCache() && (!defined('DEBUG') || !DEBUG)){ + OC_Response::setETagHeader($etag); $gzout = $cache->get($cache_key.'.gz'); - if ($gzout) { - OC_Response::setETagHeader(md5($gzout)); - } } if (!$gzout) { $out = $this->minimizeFiles($files); $gzout = gzencode($out); - OC_Response::setETagHeader(md5($gzout)); $cache->set($cache_key.'.gz', $gzout); + OC_Response::setETagHeader($etag); } if ($encoding = OC_Request::acceptGZip()) { header('Content-Encoding: '.$encoding); @@ -48,8 +45,8 @@ abstract class OC_Minimizer { public function clearCache() { $cache = OC_Cache::getGlobalCache(); - $cache->delete('core.css.gz'); - $cache->delete('core.js.gz'); + $cache->clear('core.css'); + $cache->clear('core.js'); } } From 386d1ac49f0e759c3ed7f23f2df86b721a72b9d1 Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Fri, 7 Sep 2012 13:40:30 +0200 Subject: [PATCH 192/246] Fix setEtagHeader function --- lib/response.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/response.php b/lib/response.php index a75135c0176..49d79fda709 100644 --- a/lib/response.php +++ b/lib/response.php @@ -111,12 +111,13 @@ class OC_Response { if (empty($etag)) { return; } + $etag = '"'.$etag.'"'; if (isset($_SERVER['HTTP_IF_NONE_MATCH']) && trim($_SERVER['HTTP_IF_NONE_MATCH']) == $etag) { self::setStatus(self::STATUS_NOT_MODIFIED); exit; } - header('ETag: "'.$etag.'"'); + header('ETag: '.$etag); } /** From 5e55b4d6e77b91e29838d26765e7f1bd55fe6bbd Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Fri, 7 Sep 2012 14:05:51 +0200 Subject: [PATCH 193/246] Whitespace fixes in lib --- lib/base.php | 8 ++++---- lib/db.php | 2 +- lib/l10n.php | 6 +++--- lib/user.php | 2 +- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/lib/base.php b/lib/base.php index cbcbdd2ad03..a145fd1cf23 100644 --- a/lib/base.php +++ b/lib/base.php @@ -51,7 +51,7 @@ class OC{ */ public static $THIRDPARTYWEBROOT = ''; /** - * The installation path array of the apps folder on the server (e.g. /srv/http/owncloud) 'path' and + * The installation path array of the apps folder on the server (e.g. /srv/http/owncloud) 'path' and * web path in 'url' */ public static $APPSROOTS = array(); @@ -95,7 +95,7 @@ class OC{ }else{ return false; } - + if($fullPath = stream_resolve_include_path($path)) { require_once $path; } @@ -533,10 +533,10 @@ class OC{ } OC_App::loadApps(); - + //setup extra user backends OC_User::setupBackends(); - + if(OC_User::login($_POST["user"], $_POST["password"])) { if(!empty($_POST["remember_login"])) { if(defined("DEBUG") && DEBUG) { diff --git a/lib/db.php b/lib/db.php index 2f36416d0a6..bd3afe2b06e 100644 --- a/lib/db.php +++ b/lib/db.php @@ -411,7 +411,7 @@ class OC_DB { if( $CONFIG_DBTYPE == 'pgsql' ) { //mysql support it too but sqlite doesn't $content = str_replace( '0000-00-00 00:00:00', 'CURRENT_TIMESTAMP', $content ); } - + file_put_contents( $file2, $content ); // Try to create tables diff --git a/lib/l10n.php b/lib/l10n.php index 0421e4eba88..f8274126136 100644 --- a/lib/l10n.php +++ b/lib/l10n.php @@ -113,9 +113,9 @@ class OC_L10N{ $i18ndir = self::findI18nDir($app); // Localization is in /l10n, Texts are in $i18ndir // (Just no need to define date/time format etc. twice) - if((OC_Helper::issubdirectory($i18ndir.$lang.'.php', OC_App::getAppPath($app).'/l10n/') || - OC_Helper::issubdirectory($i18ndir.$lang.'.php', OC::$SERVERROOT.'/core/l10n/') || - OC_Helper::issubdirectory($i18ndir.$lang.'.php', OC::$SERVERROOT.'/lib/l10n/') || + if((OC_Helper::issubdirectory($i18ndir.$lang.'.php', OC_App::getAppPath($app).'/l10n/') || + OC_Helper::issubdirectory($i18ndir.$lang.'.php', OC::$SERVERROOT.'/core/l10n/') || + OC_Helper::issubdirectory($i18ndir.$lang.'.php', OC::$SERVERROOT.'/lib/l10n/') || OC_Helper::issubdirectory($i18ndir.$lang.'.php', OC::$SERVERROOT.'/settings')) && file_exists($i18ndir.$lang.'.php')) { // Include the file, save the data from $CONFIG include(strip_tags($i18ndir).strip_tags($lang).'.php'); diff --git a/lib/user.php b/lib/user.php index 305fb8ed3a2..236478e9e5c 100644 --- a/lib/user.php +++ b/lib/user.php @@ -39,7 +39,7 @@ class OC_User { // The backend used for user management private static $_usedBackends = array(); - + private static $_setupedBackends = array(); // Backends available (except database) From 285c198c365765eb7cd1952715080d4d79458f5b Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Fri, 7 Sep 2012 14:09:41 +0200 Subject: [PATCH 194/246] EOL fixes apps/files_external/lib/config.php apps/files_versions/lib/versions.php lib/connector/sabre/client.php --- apps/files_external/lib/config.php | 564 ++++++++++++------------ apps/files_versions/lib/versions.php | 622 +++++++++++++-------------- lib/connector/sabre/client.php | 344 +++++++-------- 3 files changed, 764 insertions(+), 766 deletions(-) diff --git a/apps/files_external/lib/config.php b/apps/files_external/lib/config.php index 063b149027b..eec31ec2ef9 100755 --- a/apps/files_external/lib/config.php +++ b/apps/files_external/lib/config.php @@ -1,283 +1,281 @@ -. -*/ - -/** -* Class to configure the config/mount.php and data/$user/mount.php files -*/ -class OC_Mount_Config { - - const MOUNT_TYPE_GLOBAL = 'global'; - const MOUNT_TYPE_GROUP = 'group'; - const MOUNT_TYPE_USER = 'user'; - - /** - * Get details on each of the external storage backends, used for the mount config UI - * If a custom UI is needed, add the key 'custom' and a javascript file with that name will be loaded - * If the configuration parameter should be secret, add a '*' to the beginning of the value - * If the configuration parameter is a boolean, add a '!' to the beginning of the value - * If the configuration parameter is optional, add a '&' to the beginning of the value - * If the configuration parameter is hidden, add a '#' to the begining of the value - * @return array - */ - public static function getBackends() { - return array( - 'OC_Filestorage_Local' => array('backend' => 'Local', 'configuration' => array('datadir' => 'Location')), - 'OC_Filestorage_AmazonS3' => array('backend' => 'Amazon S3', 'configuration' => array('key' => 'Key', 'secret' => '*Secret', 'bucket' => 'Bucket')), - 'OC_Filestorage_Dropbox' => array('backend' => 'Dropbox', 'configuration' => array('configured' => '#configured','app_key' => 'App key', 'app_secret' => 'App secret', 'token' => '#token', 'token_secret' => '#token_secret'), 'custom' => 'dropbox'), - 'OC_Filestorage_FTP' => array('backend' => 'FTP', 'configuration' => array('host' => 'URL', 'user' => 'Username', 'password' => '*Password', 'root' => '&Root', 'secure' => '!Secure ftps://')), - 'OC_Filestorage_Google' => array('backend' => 'Google Drive', 'configuration' => array('configured' => '#configured', 'token' => '#token', 'token_secret' => '#token secret'), 'custom' => 'google'), - 'OC_Filestorage_SWIFT' => array('backend' => 'OpenStack Swift', 'configuration' => array('host' => 'URL', 'user' => 'Username', 'token' => '*Token', 'root' => '&Root', 'secure' => '!Secure ftps://')), - 'OC_Filestorage_SMB' => array('backend' => 'SMB', 'configuration' => array('host' => 'URL', 'user' => 'Username', 'password' => '*Password', 'share' => 'Share', 'root' => '&Root')), - 'OC_Filestorage_DAV' => array('backend' => 'WebDAV', 'configuration' => array('host' => 'URL', 'user' => 'Username', 'password' => '*Password', 'root' => '&Root', 'secure' => '!Secure https://')) - ); - } - - /** - * Get the system mount points - * The returned array is not in the same format as getUserMountPoints() - * @return array - */ - public static function getSystemMountPoints() { - $mountPoints = self::readData(false); - $backends = self::getBackends(); - $system = array(); - if (isset($mountPoints[self::MOUNT_TYPE_GROUP])) { - foreach ($mountPoints[self::MOUNT_TYPE_GROUP] as $group => $mounts) { - foreach ($mounts as $mountPoint => $mount) { - // Remove '/$user/files/' from mount point - $mountPoint = substr($mountPoint, 13); - // Merge the mount point into the current mount points - if (isset($system[$mountPoint]) && $system[$mountPoint]['configuration'] == $mount['options']) { - $system[$mountPoint]['applicable']['groups'] = array_merge($system[$mountPoint]['applicable']['groups'], array($group)); - } else { - $system[$mountPoint] = array('class' => $mount['class'], 'backend' => $backends[$mount['class']]['backend'], 'configuration' => $mount['options'], 'applicable' => array('groups' => array($group), 'users' => array())); - } - } - } - } - if (isset($mountPoints[self::MOUNT_TYPE_USER])) { - foreach ($mountPoints[self::MOUNT_TYPE_USER] as $user => $mounts) { - foreach ($mounts as $mountPoint => $mount) { - // Remove '/$user/files/' from mount point - $mountPoint = substr($mountPoint, 13); - // Merge the mount point into the current mount points - if (isset($system[$mountPoint]) && $system[$mountPoint]['configuration'] == $mount['options']) { - $system[$mountPoint]['applicable']['users'] = array_merge($system[$mountPoint]['applicable']['users'], array($user)); - } else { - $system[$mountPoint] = array('class' => $mount['class'], 'backend' => $backends[$mount['class']]['backend'], 'configuration' => $mount['options'], 'applicable' => array('groups' => array(), 'users' => array($user))); - } - } - } - } - return $system; - } - - /** - * Get the personal mount points of the current user - * The returned array is not in the same format as getUserMountPoints() - * @return array - */ - public static function getPersonalMountPoints() { - $mountPoints = self::readData(true); - $backends = self::getBackends(); - $uid = OCP\User::getUser(); - $personal = array(); - if (isset($mountPoints[self::MOUNT_TYPE_USER][$uid])) { - foreach ($mountPoints[self::MOUNT_TYPE_USER][$uid] as $mountPoint => $mount) { - // Remove '/uid/files/' from mount point - $personal[substr($mountPoint, strlen($uid) + 8)] = array('class' => $mount['class'], 'backend' => $backends[$mount['class']]['backend'], 'configuration' => $mount['options']); - } - } - return $personal; - } - - - /** - * Add a mount point to the filesystem - * @param string Mount point - * @param string Backend class - * @param array Backend parameters for the class - * @param string MOUNT_TYPE_GROUP | MOUNT_TYPE_USER - * @param string User or group to apply mount to - * @param bool Personal or system mount point i.e. is this being called from the personal or admin page - * @return bool - */ - public static function addMountPoint($mountPoint, $class, $classOptions, $mountType, $applicable, $isPersonal = false) { - if ($isPersonal) { - // Verify that the mount point applies for the current user - // Prevent non-admin users from mounting local storage - if ($applicable != OCP\User::getUser() || $class == 'OC_Filestorage_Local') { - return false; - } - $mountPoint = '/'.$applicable.'/files/'.ltrim($mountPoint, '/'); - } else { - $mountPoint = '/$user/files/'.ltrim($mountPoint, '/'); - } - $mount = array($applicable => array($mountPoint => array('class' => $class, 'options' => $classOptions))); - $mountPoints = self::readData($isPersonal); - // Merge the new mount point into the current mount points - if (isset($mountPoints[$mountType])) { - if (isset($mountPoints[$mountType][$applicable])) { - $mountPoints[$mountType][$applicable] = array_merge($mountPoints[$mountType][$applicable], $mount[$applicable]); - } else { - $mountPoints[$mountType] = array_merge($mountPoints[$mountType], $mount); - } - } else { - $mountPoints[$mountType] = $mount; - } - self::writeData($isPersonal, $mountPoints); - return true; - } - - /** - * - * @param string Mount point - * @param string MOUNT_TYPE_GROUP | MOUNT_TYPE_USER - * @param string User or group to remove mount from - * @param bool Personal or system mount point - * @return bool - */ - public static function removeMountPoint($mountPoint, $mountType, $applicable, $isPersonal = false) { - // Verify that the mount point applies for the current user - if ($isPersonal) { - if ($applicable != OCP\User::getUser()) { - return false; - } - $mountPoint = '/'.$applicable.'/files/'.ltrim($mountPoint, '/'); - } else { - $mountPoint = '/$user/files/'.ltrim($mountPoint, '/'); - } - $mountPoints = self::readData($isPersonal); - // Remove mount point - unset($mountPoints[$mountType][$applicable][$mountPoint]); - // Unset parent arrays if empty - if (empty($mountPoints[$mountType][$applicable])) { - unset($mountPoints[$mountType][$applicable]); - if (empty($mountPoints[$mountType])) { - unset($mountPoints[$mountType]); - } - } - self::writeData($isPersonal, $mountPoints); - return true; - } - - /** - * Read the mount points in the config file into an array - * @param bool Personal or system config file - * @return array - */ - private static function readData($isPersonal) { - if ($isPersonal) { - $file = OC_User::getHome(OCP\User::getUser()).'/mount.php'; - } else { - $file = OC::$SERVERROOT.'/config/mount.php'; - } - if (is_file($file)) { - $mountPoints = include($file); - if (is_array($mountPoints)) { - return $mountPoints; - } - } - return array(); - } - - /** - * Write the mount points to the config file - * @param bool Personal or system config file - * @param array Mount points - */ - private static function writeData($isPersonal, $data) { - if ($isPersonal) { - $file = OC_User::getHome(OCP\User::getUser()).'/mount.php'; - } else { - $file = OC::$SERVERROOT.'/config/mount.php'; - } - $content = " array (\n"; - foreach ($data[self::MOUNT_TYPE_GROUP] as $group => $mounts) { - $content .= "\t\t'".$group."' => array (\n"; - foreach ($mounts as $mountPoint => $mount) { - $content .= "\t\t\t'".$mountPoint."' => ".str_replace("\n", '', var_export($mount, true)).",\n"; - - } - $content .= "\t\t),\n"; - } - $content .= "\t),\n"; - } - if (isset($data[self::MOUNT_TYPE_USER])) { - $content .= "\t'user' => array (\n"; - foreach ($data[self::MOUNT_TYPE_USER] as $user => $mounts) { - $content .= "\t\t'".$user."' => array (\n"; - foreach ($mounts as $mountPoint => $mount) { - $content .= "\t\t\t'".$mountPoint."' => ".str_replace("\n", '', var_export($mount, true)).",\n"; - } - $content .= "\t\t),\n"; - } - $content .= "\t),\n"; - } - $content .= ");\n?>"; - @file_put_contents($file, $content); - } - - /** - * Returns all user uploaded ssl root certificates - * @return array - */ - public static function getCertificates() { - $view = \OCP\Files::getStorage('files_external'); - $path=\OCP\Config::getSystemValue('datadirectory').$view->getAbsolutePath("").'uploads/'; - if (!is_dir($path)) mkdir($path); - $result = array(); - $handle = opendir($path); - while (false !== ($file = readdir($handle))) { - if($file != '.' && $file != '..') $result[] = $file; - } - return $result; - } - - /** - * creates certificate bundle - */ - public static function createCertificateBundle() { - $view = \OCP\Files::getStorage("files_external"); - $path = \OCP\Config::getSystemValue('datadirectory').$view->getAbsolutePath(""); - - $certs = OC_Mount_Config::getCertificates(); - $fh_certs = fopen($path."/rootcerts.crt", 'w'); - foreach ($certs as $cert) { - $file=$path.'/uploads/'.$cert; - $fh = fopen($file, "r"); - $data = fread($fh, filesize($file)); - fclose($fh); - if (strpos($data, 'BEGIN CERTIFICATE')) { - fwrite($fh_certs, $data); - } - } - - fclose($fh_certs); - - return true; - } - -} - -?> \ No newline at end of file +. +*/ + +/** +* Class to configure the config/mount.php and data/$user/mount.php files +*/ +class OC_Mount_Config { + + const MOUNT_TYPE_GLOBAL = 'global'; + const MOUNT_TYPE_GROUP = 'group'; + const MOUNT_TYPE_USER = 'user'; + + /** + * Get details on each of the external storage backends, used for the mount config UI + * If a custom UI is needed, add the key 'custom' and a javascript file with that name will be loaded + * If the configuration parameter should be secret, add a '*' to the beginning of the value + * If the configuration parameter is a boolean, add a '!' to the beginning of the value + * If the configuration parameter is optional, add a '&' to the beginning of the value + * If the configuration parameter is hidden, add a '#' to the begining of the value + * @return array + */ + public static function getBackends() { + return array( + 'OC_Filestorage_Local' => array('backend' => 'Local', 'configuration' => array('datadir' => 'Location')), + 'OC_Filestorage_AmazonS3' => array('backend' => 'Amazon S3', 'configuration' => array('key' => 'Key', 'secret' => '*Secret', 'bucket' => 'Bucket')), + 'OC_Filestorage_Dropbox' => array('backend' => 'Dropbox', 'configuration' => array('configured' => '#configured','app_key' => 'App key', 'app_secret' => 'App secret', 'token' => '#token', 'token_secret' => '#token_secret'), 'custom' => 'dropbox'), + 'OC_Filestorage_FTP' => array('backend' => 'FTP', 'configuration' => array('host' => 'URL', 'user' => 'Username', 'password' => '*Password', 'root' => '&Root', 'secure' => '!Secure ftps://')), + 'OC_Filestorage_Google' => array('backend' => 'Google Drive', 'configuration' => array('configured' => '#configured', 'token' => '#token', 'token_secret' => '#token secret'), 'custom' => 'google'), + 'OC_Filestorage_SWIFT' => array('backend' => 'OpenStack Swift', 'configuration' => array('host' => 'URL', 'user' => 'Username', 'token' => '*Token', 'root' => '&Root', 'secure' => '!Secure ftps://')), + 'OC_Filestorage_SMB' => array('backend' => 'SMB', 'configuration' => array('host' => 'URL', 'user' => 'Username', 'password' => '*Password', 'share' => 'Share', 'root' => '&Root')), + 'OC_Filestorage_DAV' => array('backend' => 'WebDAV', 'configuration' => array('host' => 'URL', 'user' => 'Username', 'password' => '*Password', 'root' => '&Root', 'secure' => '!Secure https://')) + ); + } + + /** + * Get the system mount points + * The returned array is not in the same format as getUserMountPoints() + * @return array + */ + public static function getSystemMountPoints() { + $mountPoints = self::readData(false); + $backends = self::getBackends(); + $system = array(); + if (isset($mountPoints[self::MOUNT_TYPE_GROUP])) { + foreach ($mountPoints[self::MOUNT_TYPE_GROUP] as $group => $mounts) { + foreach ($mounts as $mountPoint => $mount) { + // Remove '/$user/files/' from mount point + $mountPoint = substr($mountPoint, 13); + // Merge the mount point into the current mount points + if (isset($system[$mountPoint]) && $system[$mountPoint]['configuration'] == $mount['options']) { + $system[$mountPoint]['applicable']['groups'] = array_merge($system[$mountPoint]['applicable']['groups'], array($group)); + } else { + $system[$mountPoint] = array('class' => $mount['class'], 'backend' => $backends[$mount['class']]['backend'], 'configuration' => $mount['options'], 'applicable' => array('groups' => array($group), 'users' => array())); + } + } + } + } + if (isset($mountPoints[self::MOUNT_TYPE_USER])) { + foreach ($mountPoints[self::MOUNT_TYPE_USER] as $user => $mounts) { + foreach ($mounts as $mountPoint => $mount) { + // Remove '/$user/files/' from mount point + $mountPoint = substr($mountPoint, 13); + // Merge the mount point into the current mount points + if (isset($system[$mountPoint]) && $system[$mountPoint]['configuration'] == $mount['options']) { + $system[$mountPoint]['applicable']['users'] = array_merge($system[$mountPoint]['applicable']['users'], array($user)); + } else { + $system[$mountPoint] = array('class' => $mount['class'], 'backend' => $backends[$mount['class']]['backend'], 'configuration' => $mount['options'], 'applicable' => array('groups' => array(), 'users' => array($user))); + } + } + } + } + return $system; + } + + /** + * Get the personal mount points of the current user + * The returned array is not in the same format as getUserMountPoints() + * @return array + */ + public static function getPersonalMountPoints() { + $mountPoints = self::readData(true); + $backends = self::getBackends(); + $uid = OCP\User::getUser(); + $personal = array(); + if (isset($mountPoints[self::MOUNT_TYPE_USER][$uid])) { + foreach ($mountPoints[self::MOUNT_TYPE_USER][$uid] as $mountPoint => $mount) { + // Remove '/uid/files/' from mount point + $personal[substr($mountPoint, strlen($uid) + 8)] = array('class' => $mount['class'], 'backend' => $backends[$mount['class']]['backend'], 'configuration' => $mount['options']); + } + } + return $personal; + } + + + /** + * Add a mount point to the filesystem + * @param string Mount point + * @param string Backend class + * @param array Backend parameters for the class + * @param string MOUNT_TYPE_GROUP | MOUNT_TYPE_USER + * @param string User or group to apply mount to + * @param bool Personal or system mount point i.e. is this being called from the personal or admin page + * @return bool + */ + public static function addMountPoint($mountPoint, $class, $classOptions, $mountType, $applicable, $isPersonal = false) { + if ($isPersonal) { + // Verify that the mount point applies for the current user + // Prevent non-admin users from mounting local storage + if ($applicable != OCP\User::getUser() || $class == 'OC_Filestorage_Local') { + return false; + } + $mountPoint = '/'.$applicable.'/files/'.ltrim($mountPoint, '/'); + } else { + $mountPoint = '/$user/files/'.ltrim($mountPoint, '/'); + } + $mount = array($applicable => array($mountPoint => array('class' => $class, 'options' => $classOptions))); + $mountPoints = self::readData($isPersonal); + // Merge the new mount point into the current mount points + if (isset($mountPoints[$mountType])) { + if (isset($mountPoints[$mountType][$applicable])) { + $mountPoints[$mountType][$applicable] = array_merge($mountPoints[$mountType][$applicable], $mount[$applicable]); + } else { + $mountPoints[$mountType] = array_merge($mountPoints[$mountType], $mount); + } + } else { + $mountPoints[$mountType] = $mount; + } + self::writeData($isPersonal, $mountPoints); + return true; + } + + /** + * + * @param string Mount point + * @param string MOUNT_TYPE_GROUP | MOUNT_TYPE_USER + * @param string User or group to remove mount from + * @param bool Personal or system mount point + * @return bool + */ + public static function removeMountPoint($mountPoint, $mountType, $applicable, $isPersonal = false) { + // Verify that the mount point applies for the current user + if ($isPersonal) { + if ($applicable != OCP\User::getUser()) { + return false; + } + $mountPoint = '/'.$applicable.'/files/'.ltrim($mountPoint, '/'); + } else { + $mountPoint = '/$user/files/'.ltrim($mountPoint, '/'); + } + $mountPoints = self::readData($isPersonal); + // Remove mount point + unset($mountPoints[$mountType][$applicable][$mountPoint]); + // Unset parent arrays if empty + if (empty($mountPoints[$mountType][$applicable])) { + unset($mountPoints[$mountType][$applicable]); + if (empty($mountPoints[$mountType])) { + unset($mountPoints[$mountType]); + } + } + self::writeData($isPersonal, $mountPoints); + return true; + } + + /** + * Read the mount points in the config file into an array + * @param bool Personal or system config file + * @return array + */ + private static function readData($isPersonal) { + if ($isPersonal) { + $file = OC_User::getHome(OCP\User::getUser()).'/mount.php'; + } else { + $file = OC::$SERVERROOT.'/config/mount.php'; + } + if (is_file($file)) { + $mountPoints = include($file); + if (is_array($mountPoints)) { + return $mountPoints; + } + } + return array(); + } + + /** + * Write the mount points to the config file + * @param bool Personal or system config file + * @param array Mount points + */ + private static function writeData($isPersonal, $data) { + if ($isPersonal) { + $file = OC_User::getHome(OCP\User::getUser()).'/mount.php'; + } else { + $file = OC::$SERVERROOT.'/config/mount.php'; + } + $content = " array (\n"; + foreach ($data[self::MOUNT_TYPE_GROUP] as $group => $mounts) { + $content .= "\t\t'".$group."' => array (\n"; + foreach ($mounts as $mountPoint => $mount) { + $content .= "\t\t\t'".$mountPoint."' => ".str_replace("\n", '', var_export($mount, true)).",\n"; + + } + $content .= "\t\t),\n"; + } + $content .= "\t),\n"; + } + if (isset($data[self::MOUNT_TYPE_USER])) { + $content .= "\t'user' => array (\n"; + foreach ($data[self::MOUNT_TYPE_USER] as $user => $mounts) { + $content .= "\t\t'".$user."' => array (\n"; + foreach ($mounts as $mountPoint => $mount) { + $content .= "\t\t\t'".$mountPoint."' => ".str_replace("\n", '', var_export($mount, true)).",\n"; + } + $content .= "\t\t),\n"; + } + $content .= "\t),\n"; + } + $content .= ");\n?>"; + @file_put_contents($file, $content); + } + + /** + * Returns all user uploaded ssl root certificates + * @return array + */ + public static function getCertificates() { + $view = \OCP\Files::getStorage('files_external'); + $path=\OCP\Config::getSystemValue('datadirectory').$view->getAbsolutePath("").'uploads/'; + if (!is_dir($path)) mkdir($path); + $result = array(); + $handle = opendir($path); + while (false !== ($file = readdir($handle))) { + if($file != '.' && $file != '..') $result[] = $file; + } + return $result; + } + + /** + * creates certificate bundle + */ + public static function createCertificateBundle() { + $view = \OCP\Files::getStorage("files_external"); + $path = \OCP\Config::getSystemValue('datadirectory').$view->getAbsolutePath(""); + + $certs = OC_Mount_Config::getCertificates(); + $fh_certs = fopen($path."/rootcerts.crt", 'w'); + foreach ($certs as $cert) { + $file=$path.'/uploads/'.$cert; + $fh = fopen($file, "r"); + $data = fread($fh, filesize($file)); + fclose($fh); + if (strpos($data, 'BEGIN CERTIFICATE')) { + fwrite($fh_certs, $data); + } + } + + fclose($fh_certs); + + return true; + } + +} diff --git a/apps/files_versions/lib/versions.php b/apps/files_versions/lib/versions.php index 30f0b93a7ff..4ea1a07b942 100644 --- a/apps/files_versions/lib/versions.php +++ b/apps/files_versions/lib/versions.php @@ -1,311 +1,311 @@ - - * This file is licensed under the Affero General Public License version 3 or - * later. - * See the COPYING-README file. - */ - -/** - * Versions - * - * A class to handle the versioning of files. - */ - -namespace OCA_Versions; - -class Storage { - - - // config.php configuration: - // - files_versions - // - files_versionsfolder - // - files_versionsblacklist - // - files_versionsmaxfilesize - // - files_versionsinterval - // - files_versionmaxversions - // - // todo: - // - finish porting to OC_FilesystemView to enable network transparency - // - add transparent compression. first test if it´s worth it. - - const DEFAULTENABLED=true; - const DEFAULTBLACKLIST='avi mp3 mpg mp4 ctmp'; - const DEFAULTMAXFILESIZE=1048576; // 10MB - const DEFAULTMININTERVAL=60; // 1 min - const DEFAULTMAXVERSIONS=50; - - private $view; - - function __construct() { - - $this->view = \OCP\Files::getStorage('files_versions'); - - } - - /** - * listen to write event. - */ - public static function write_hook($params) { - if(\OCP\Config::getSystemValue('files_versions', Storage::DEFAULTENABLED)=='true') { - $path = $params[\OC_Filesystem::signal_param_path]; - if($path<>'') $this->store($path); - } - } - - - - /** - * store a new version of a file. - */ - public function store($filename) { - if(\OCP\Config::getSystemValue('files_versions', Storage::DEFAULTENABLED)=='true') { - - $files_view = \OCP\Files::getStorage("files"); - $users_view = \OCP\Files::getStorage("files_versions"); - $users_view->chroot(\OCP\User::getUser().'/'); - - //FIXME OC_Share no longer exists - //if (\OCP\App::isEnabled('files_sharing') && $source = \OC_Share::getSource('/'.\OCP\User::getUser().'/files'.$filename)) { - // $pos = strpos($source, '/files', 1); - // $uid = substr($source, 1, $pos - 1); - // $filename = substr($source, $pos + 6); - //} else { - $uid = \OCP\User::getUser(); - //} - - $versionsFolderName=\OCP\Config::getSystemValue('datadirectory') . $this->view->getAbsolutePath(''); - - //check if source file already exist as version to avoid recursions. - if ($users_view->file_exists($filename)) { - return false; - } - - // check if filename is a directory - if($files_view->is_dir($filename)){ - return false; - } - - // check filetype blacklist - $blacklist=explode(' ',\OCP\Config::getSystemValue('files_versionsblacklist', Storage::DEFAULTBLACKLIST)); - foreach($blacklist as $bl) { - $parts=explode('.', $filename); - $ext=end($parts); - if(strtolower($ext)==$bl) { - return false; - } - } - - // check filesize - if($files_view->filesize($filename)>\OCP\Config::getSystemValue('files_versionsmaxfilesize', Storage::DEFAULTMAXFILESIZE)){ - return false; - } - - - // check mininterval if the file is being modified by the owner (all shared files should be versioned despite mininterval) - if ($uid == \OCP\User::getUser()) { - $matches=glob($versionsFolderName.'/'.$filename.'.v*'); - sort($matches); - $parts=explode('.v',end($matches)); - if((end($parts)+Storage::DEFAULTMININTERVAL)>time()){ - return false; - } - } - - - // create all parent folders - $info=pathinfo($filename); - if(!file_exists($versionsFolderName.'/'.$info['dirname'])) mkdir($versionsFolderName.'/'.$info['dirname'],0700,true); - - // store a new version of a file - @$users_view->copy('files'.$filename, 'files_versions'.$filename.'.v'.time()); - - // expire old revisions if necessary - Storage::expire($filename); - } - } - - - /** - * rollback to an old version of a file. - */ - public static function rollback($filename,$revision) { - - if(\OCP\Config::getSystemValue('files_versions', Storage::DEFAULTENABLED)=='true') { - $users_view = \OCP\Files::getStorage("files_versions"); - $users_view->chroot(\OCP\User::getUser().'/'); - - //FIXME OC_Share no longer exists - //if (\OCP\App::isEnabled('files_sharing') && $source = \OC_Share::getSource('/'.\OCP\User::getUser().'/files'.$filename)) { - // $pos = strpos($source, '/files', 1); - // $uid = substr($source, 1, $pos - 1); - // $filename = substr($source, $pos + 6); - //} else { - $uid = \OCP\User::getUser(); - //} - - // rollback - if( @$users_view->copy('files_versions'.$filename.'.v'.$revision, 'files'.$filename) ) { - - return true; - - }else{ - - return false; - - } - - } - - } - - /** - * check if old versions of a file exist. - */ - public static function isversioned($filename) { - if(\OCP\Config::getSystemValue('files_versions', Storage::DEFAULTENABLED)=='true') { - $versions_fileview = \OCP\Files::getStorage("files_versions"); - //FIXME OC_Share no longer exists - //if (\OCP\App::isEnabled('files_sharing') && $source = \OC_Share::getSource('/'.\OCP\User::getUser().'/files'.$filename)) { - // $pos = strpos($source, '/files', 1); - // $filename = substr($source, $pos + 6); - //} - - $versionsFolderName=\OCP\Config::getSystemValue('datadirectory'). $versions_fileview->getAbsolutePath(''); - - // check for old versions - $matches=glob($versionsFolderName.$filename.'.v*'); - if(count($matches)>0){ - return true; - }else{ - return false; - } - }else{ - return(false); - } - } - - - - /** - * @brief get a list of all available versions of a file in descending chronological order - * @param $filename file to find versions of, relative to the user files dir - * @param $count number of versions to return - * @returns array - */ - public static function getVersions( $filename, $count = 0 ) { - - if( \OCP\Config::getSystemValue('files_versions', Storage::DEFAULTENABLED)=='true' ) { - - //FIXME OC_Share no longer exists - //if (\OCP\App::isEnabled('files_sharing') && $source = \OC_Share::getSource('/'.\OCP\User::getUser().'/files'.$filename)) { - // $pos = strpos($source, '/files', 1); - // $uid = substr($source, 1, $pos - 1); - // $filename = substr($source, $pos + 6); - //} else { - $uid = \OCP\User::getUser(); - //} - $versions_fileview = \OCP\Files::getStorage('files_versions'); - $versionsFolderName = \OCP\Config::getSystemValue('datadirectory'). $versions_fileview->getAbsolutePath(''); - $versions = array(); - - // fetch for old versions - $matches = glob( $versionsFolderName.'/'.$filename.'.v*' ); - - sort( $matches ); - - $i = 0; - - $files_view = \OCP\Files::getStorage('files'); - $local_file = $files_view->getLocalFile($filename); - foreach( $matches as $ma ) { - - $i++; - $versions[$i]['cur'] = 0; - $parts = explode( '.v', $ma ); - $versions[$i]['version'] = ( end( $parts ) ); - - // if file with modified date exists, flag it in array as currently enabled version - ( \md5_file( $ma ) == \md5_file( $local_file ) ? $versions[$i]['fileMatch'] = 1 : $versions[$i]['fileMatch'] = 0 ); - - } - - $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; - - } - - } - - $versions = array_reverse( $versions ); - - // only show the newest commits - if( $count != 0 and ( count( $versions )>$count ) ) { - - $versions = array_slice( $versions, count( $versions ) - $count ); - - } - - return( $versions ); - - - } else { - - // if versioning isn't enabled then return an empty array - return( array() ); - - } - - } - - /** - * @brief Erase a file's versions which exceed the set quota - */ - public static function expire($filename) { - if(\OCP\Config::getSystemValue('files_versions', Storage::DEFAULTENABLED)=='true') { - - //FIXME OC_Share no longer exists - //if (\OCP\App::isEnabled('files_sharing') && $source = \OC_Share::getSource('/'.\OCP\User::getUser().'/files'.$filename)) { - // $pos = strpos($source, '/files', 1); - // $uid = substr($source, 1, $pos - 1); - // $filename = substr($source, $pos + 6); - //} else { - $uid = \OCP\User::getUser(); - //} - $versions_fileview = \OCP\Files::getStorage("files_versions"); - $versionsFolderName=\OCP\Config::getSystemValue('datadirectory'). $versions_fileview->getAbsolutePath(''); - - // check for old versions - $matches = glob( $versionsFolderName.'/'.$filename.'.v*' ); - - if( count( $matches ) > \OCP\Config::getSystemValue( 'files_versionmaxversions', Storage::DEFAULTMAXVERSIONS ) ) { - - $numberToDelete = count( $matches-\OCP\Config::getSystemValue( 'files_versionmaxversions', Storage::DEFAULTMAXVERSIONS ) ); - - // delete old versions of a file - $deleteItems = array_slice( $matches, 0, $numberToDelete ); - - foreach( $deleteItems as $de ) { - - unlink( $versionsFolderName.'/'.$filename.'.v'.$de ); - - } - } - } - } - - /** - * @brief Erase all old versions of all user files - * @return true/false - */ - public function expireAll() { - return $this->view->deleteAll('', true); - } -} + + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +/** + * Versions + * + * A class to handle the versioning of files. + */ + +namespace OCA_Versions; + +class Storage { + + + // config.php configuration: + // - files_versions + // - files_versionsfolder + // - files_versionsblacklist + // - files_versionsmaxfilesize + // - files_versionsinterval + // - files_versionmaxversions + // + // todo: + // - finish porting to OC_FilesystemView to enable network transparency + // - add transparent compression. first test if it´s worth it. + + const DEFAULTENABLED=true; + const DEFAULTBLACKLIST='avi mp3 mpg mp4 ctmp'; + const DEFAULTMAXFILESIZE=1048576; // 10MB + const DEFAULTMININTERVAL=60; // 1 min + const DEFAULTMAXVERSIONS=50; + + private $view; + + function __construct() { + + $this->view = \OCP\Files::getStorage('files_versions'); + + } + + /** + * listen to write event. + */ + public static function write_hook($params) { + if(\OCP\Config::getSystemValue('files_versions', Storage::DEFAULTENABLED)=='true') { + $path = $params[\OC_Filesystem::signal_param_path]; + if($path<>'') $this->store($path); + } + } + + + + /** + * store a new version of a file. + */ + public function store($filename) { + if(\OCP\Config::getSystemValue('files_versions', Storage::DEFAULTENABLED)=='true') { + + $files_view = \OCP\Files::getStorage("files"); + $users_view = \OCP\Files::getStorage("files_versions"); + $users_view->chroot(\OCP\User::getUser().'/'); + + //FIXME OC_Share no longer exists + //if (\OCP\App::isEnabled('files_sharing') && $source = \OC_Share::getSource('/'.\OCP\User::getUser().'/files'.$filename)) { + // $pos = strpos($source, '/files', 1); + // $uid = substr($source, 1, $pos - 1); + // $filename = substr($source, $pos + 6); + //} else { + $uid = \OCP\User::getUser(); + //} + + $versionsFolderName=\OCP\Config::getSystemValue('datadirectory') . $this->view->getAbsolutePath(''); + + //check if source file already exist as version to avoid recursions. + if ($users_view->file_exists($filename)) { + return false; + } + + // check if filename is a directory + if($files_view->is_dir($filename)){ + return false; + } + + // check filetype blacklist + $blacklist=explode(' ',\OCP\Config::getSystemValue('files_versionsblacklist', Storage::DEFAULTBLACKLIST)); + foreach($blacklist as $bl) { + $parts=explode('.', $filename); + $ext=end($parts); + if(strtolower($ext)==$bl) { + return false; + } + } + + // check filesize + if($files_view->filesize($filename)>\OCP\Config::getSystemValue('files_versionsmaxfilesize', Storage::DEFAULTMAXFILESIZE)){ + return false; + } + + + // check mininterval if the file is being modified by the owner (all shared files should be versioned despite mininterval) + if ($uid == \OCP\User::getUser()) { + $matches=glob($versionsFolderName.'/'.$filename.'.v*'); + sort($matches); + $parts=explode('.v',end($matches)); + if((end($parts)+Storage::DEFAULTMININTERVAL)>time()){ + return false; + } + } + + + // create all parent folders + $info=pathinfo($filename); + if(!file_exists($versionsFolderName.'/'.$info['dirname'])) mkdir($versionsFolderName.'/'.$info['dirname'],0700,true); + + // store a new version of a file + @$users_view->copy('files'.$filename, 'files_versions'.$filename.'.v'.time()); + + // expire old revisions if necessary + Storage::expire($filename); + } + } + + + /** + * rollback to an old version of a file. + */ + public static function rollback($filename,$revision) { + + if(\OCP\Config::getSystemValue('files_versions', Storage::DEFAULTENABLED)=='true') { + $users_view = \OCP\Files::getStorage("files_versions"); + $users_view->chroot(\OCP\User::getUser().'/'); + + //FIXME OC_Share no longer exists + //if (\OCP\App::isEnabled('files_sharing') && $source = \OC_Share::getSource('/'.\OCP\User::getUser().'/files'.$filename)) { + // $pos = strpos($source, '/files', 1); + // $uid = substr($source, 1, $pos - 1); + // $filename = substr($source, $pos + 6); + //} else { + $uid = \OCP\User::getUser(); + //} + + // rollback + if( @$users_view->copy('files_versions'.$filename.'.v'.$revision, 'files'.$filename) ) { + + return true; + + }else{ + + return false; + + } + + } + + } + + /** + * check if old versions of a file exist. + */ + public static function isversioned($filename) { + if(\OCP\Config::getSystemValue('files_versions', Storage::DEFAULTENABLED)=='true') { + $versions_fileview = \OCP\Files::getStorage("files_versions"); + //FIXME OC_Share no longer exists + //if (\OCP\App::isEnabled('files_sharing') && $source = \OC_Share::getSource('/'.\OCP\User::getUser().'/files'.$filename)) { + // $pos = strpos($source, '/files', 1); + // $filename = substr($source, $pos + 6); + //} + + $versionsFolderName=\OCP\Config::getSystemValue('datadirectory'). $versions_fileview->getAbsolutePath(''); + + // check for old versions + $matches=glob($versionsFolderName.$filename.'.v*'); + if(count($matches)>0){ + return true; + }else{ + return false; + } + }else{ + return(false); + } + } + + + + /** + * @brief get a list of all available versions of a file in descending chronological order + * @param $filename file to find versions of, relative to the user files dir + * @param $count number of versions to return + * @returns array + */ + public static function getVersions( $filename, $count = 0 ) { + + if( \OCP\Config::getSystemValue('files_versions', Storage::DEFAULTENABLED)=='true' ) { + + //FIXME OC_Share no longer exists + //if (\OCP\App::isEnabled('files_sharing') && $source = \OC_Share::getSource('/'.\OCP\User::getUser().'/files'.$filename)) { + // $pos = strpos($source, '/files', 1); + // $uid = substr($source, 1, $pos - 1); + // $filename = substr($source, $pos + 6); + //} else { + $uid = \OCP\User::getUser(); + //} + $versions_fileview = \OCP\Files::getStorage('files_versions'); + $versionsFolderName = \OCP\Config::getSystemValue('datadirectory'). $versions_fileview->getAbsolutePath(''); + $versions = array(); + + // fetch for old versions + $matches = glob( $versionsFolderName.'/'.$filename.'.v*' ); + + sort( $matches ); + + $i = 0; + + $files_view = \OCP\Files::getStorage('files'); + $local_file = $files_view->getLocalFile($filename); + foreach( $matches as $ma ) { + + $i++; + $versions[$i]['cur'] = 0; + $parts = explode( '.v', $ma ); + $versions[$i]['version'] = ( end( $parts ) ); + + // if file with modified date exists, flag it in array as currently enabled version + ( \md5_file( $ma ) == \md5_file( $local_file ) ? $versions[$i]['fileMatch'] = 1 : $versions[$i]['fileMatch'] = 0 ); + + } + + $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; + + } + + } + + $versions = array_reverse( $versions ); + + // only show the newest commits + if( $count != 0 and ( count( $versions )>$count ) ) { + + $versions = array_slice( $versions, count( $versions ) - $count ); + + } + + return( $versions ); + + + } else { + + // if versioning isn't enabled then return an empty array + return( array() ); + + } + + } + + /** + * @brief Erase a file's versions which exceed the set quota + */ + public static function expire($filename) { + if(\OCP\Config::getSystemValue('files_versions', Storage::DEFAULTENABLED)=='true') { + + //FIXME OC_Share no longer exists + //if (\OCP\App::isEnabled('files_sharing') && $source = \OC_Share::getSource('/'.\OCP\User::getUser().'/files'.$filename)) { + // $pos = strpos($source, '/files', 1); + // $uid = substr($source, 1, $pos - 1); + // $filename = substr($source, $pos + 6); + //} else { + $uid = \OCP\User::getUser(); + //} + $versions_fileview = \OCP\Files::getStorage("files_versions"); + $versionsFolderName=\OCP\Config::getSystemValue('datadirectory'). $versions_fileview->getAbsolutePath(''); + + // check for old versions + $matches = glob( $versionsFolderName.'/'.$filename.'.v*' ); + + if( count( $matches ) > \OCP\Config::getSystemValue( 'files_versionmaxversions', Storage::DEFAULTMAXVERSIONS ) ) { + + $numberToDelete = count( $matches-\OCP\Config::getSystemValue( 'files_versionmaxversions', Storage::DEFAULTMAXVERSIONS ) ); + + // delete old versions of a file + $deleteItems = array_slice( $matches, 0, $numberToDelete ); + + foreach( $deleteItems as $de ) { + + unlink( $versionsFolderName.'/'.$filename.'.v'.$de ); + + } + } + } + } + + /** + * @brief Erase all old versions of all user files + * @return true/false + */ + public function expireAll() { + return $this->view->deleteAll('', true); + } +} diff --git a/lib/connector/sabre/client.php b/lib/connector/sabre/client.php index 7e8f21264f9..8df5fb9a9ad 100644 --- a/lib/connector/sabre/client.php +++ b/lib/connector/sabre/client.php @@ -1,173 +1,173 @@ - - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE - * License as published by the Free Software Foundation; either - * version 3 of the License, or any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU AFFERO GENERAL PUBLIC LICENSE for more details. - * - * You should have received a copy of the GNU Affero General Public - * License along with this library. If not, see . - * - */ - -class OC_Connector_Sabre_Client extends Sabre_DAV_Client { - - protected $trustedCertificates; - - /** - * Add trusted root certificates to the webdav client. - * - * The parameter certificates should be a absulute path to a file which contains - * all trusted certificates - * - * @param string $certificates - */ - public function addTrustedCertificates($certificates) { - $this->trustedCertificates = $certificates; - } - - /** - * Copied from SabreDAV with some modification to use user defined curlSettings - * Performs an actual HTTP request, and returns the result. - * - * If the specified url is relative, it will be expanded based on the base - * url. - * - * The returned array contains 3 keys: - * * body - the response body - * * httpCode - a HTTP code (200, 404, etc) - * * headers - a list of response http headers. The header names have - * been lowercased. - * - * @param string $method - * @param string $url - * @param string $body - * @param array $headers - * @return array - */ - public function request($method, $url = '', $body = null, $headers = array()) { - - $url = $this->getAbsoluteUrl($url); - - $curlSettings = array( - CURLOPT_RETURNTRANSFER => true, - // Return headers as part of the response - CURLOPT_HEADER => true, - CURLOPT_POSTFIELDS => $body, - // Automatically follow redirects - CURLOPT_FOLLOWLOCATION => true, - CURLOPT_MAXREDIRS => 5, - ); - - if($this->trustedCertificates) { - $curlSettings[CURLOPT_CAINFO] = $this->trustedCertificates; - } - - switch ($method) { - case 'HEAD' : - - // do not read body with HEAD requests (this is neccessary because cURL does not ignore the body with HEAD - // requests when the Content-Length header is given - which in turn is perfectly valid according to HTTP - // specs...) cURL does unfortunately return an error in this case ("transfer closed transfer closed with - // ... bytes remaining to read") this can be circumvented by explicitly telling cURL to ignore the - // response body - $curlSettings[CURLOPT_NOBODY] = true; - $curlSettings[CURLOPT_CUSTOMREQUEST] = 'HEAD'; - break; - - default: - $curlSettings[CURLOPT_CUSTOMREQUEST] = $method; - break; - - } - - // Adding HTTP headers - $nHeaders = array(); - foreach($headers as $key=>$value) { - - $nHeaders[] = $key . ': ' . $value; - - } - $curlSettings[CURLOPT_HTTPHEADER] = $nHeaders; - - if ($this->proxy) { - $curlSettings[CURLOPT_PROXY] = $this->proxy; - } - - if ($this->userName && $this->authType) { - $curlType = 0; - if ($this->authType & self::AUTH_BASIC) { - $curlType |= CURLAUTH_BASIC; - } - if ($this->authType & self::AUTH_DIGEST) { - $curlType |= CURLAUTH_DIGEST; - } - $curlSettings[CURLOPT_HTTPAUTH] = $curlType; - $curlSettings[CURLOPT_USERPWD] = $this->userName . ':' . $this->password; - } - - list( - $response, - $curlInfo, - $curlErrNo, - $curlError - ) = $this->curlRequest($url, $curlSettings); - - $headerBlob = substr($response, 0, $curlInfo['header_size']); - $response = substr($response, $curlInfo['header_size']); - - // In the case of 100 Continue, or redirects we'll have multiple lists - // of headers for each separate HTTP response. We can easily split this - // because they are separated by \r\n\r\n - $headerBlob = explode("\r\n\r\n", trim($headerBlob, "\r\n")); - - // We only care about the last set of headers - $headerBlob = $headerBlob[count($headerBlob)-1]; - - // Splitting headers - $headerBlob = explode("\r\n", $headerBlob); - - $headers = array(); - foreach($headerBlob as $header) { - $parts = explode(':', $header, 2); - if (count($parts)==2) { - $headers[strtolower(trim($parts[0]))] = trim($parts[1]); - } - } - - $response = array( - 'body' => $response, - 'statusCode' => $curlInfo['http_code'], - 'headers' => $headers - ); - - if ($curlErrNo) { - throw new Sabre_DAV_Exception('[CURL] Error while making request: ' . $curlError . ' (error code: ' . $curlErrNo . ')'); - } - - if ($response['statusCode']>=400) { - switch ($response['statusCode']) { - case 404: - throw new Sabre_DAV_Exception_NotFound('Resource ' . $url . ' not found.'); - break; - - default: - throw new Sabre_DAV_Exception('HTTP error response. (errorcode ' . $response['statusCode'] . ')'); - } - } - - return $response; - - } + + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE + * License as published by the Free Software Foundation; either + * version 3 of the License, or any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU AFFERO GENERAL PUBLIC LICENSE for more details. + * + * You should have received a copy of the GNU Affero General Public + * License along with this library. If not, see . + * + */ + +class OC_Connector_Sabre_Client extends Sabre_DAV_Client { + + protected $trustedCertificates; + + /** + * Add trusted root certificates to the webdav client. + * + * The parameter certificates should be a absulute path to a file which contains + * all trusted certificates + * + * @param string $certificates + */ + public function addTrustedCertificates($certificates) { + $this->trustedCertificates = $certificates; + } + + /** + * Copied from SabreDAV with some modification to use user defined curlSettings + * Performs an actual HTTP request, and returns the result. + * + * If the specified url is relative, it will be expanded based on the base + * url. + * + * The returned array contains 3 keys: + * * body - the response body + * * httpCode - a HTTP code (200, 404, etc) + * * headers - a list of response http headers. The header names have + * been lowercased. + * + * @param string $method + * @param string $url + * @param string $body + * @param array $headers + * @return array + */ + public function request($method, $url = '', $body = null, $headers = array()) { + + $url = $this->getAbsoluteUrl($url); + + $curlSettings = array( + CURLOPT_RETURNTRANSFER => true, + // Return headers as part of the response + CURLOPT_HEADER => true, + CURLOPT_POSTFIELDS => $body, + // Automatically follow redirects + CURLOPT_FOLLOWLOCATION => true, + CURLOPT_MAXREDIRS => 5, + ); + + if($this->trustedCertificates) { + $curlSettings[CURLOPT_CAINFO] = $this->trustedCertificates; + } + + switch ($method) { + case 'HEAD' : + + // do not read body with HEAD requests (this is neccessary because cURL does not ignore the body with HEAD + // requests when the Content-Length header is given - which in turn is perfectly valid according to HTTP + // specs...) cURL does unfortunately return an error in this case ("transfer closed transfer closed with + // ... bytes remaining to read") this can be circumvented by explicitly telling cURL to ignore the + // response body + $curlSettings[CURLOPT_NOBODY] = true; + $curlSettings[CURLOPT_CUSTOMREQUEST] = 'HEAD'; + break; + + default: + $curlSettings[CURLOPT_CUSTOMREQUEST] = $method; + break; + + } + + // Adding HTTP headers + $nHeaders = array(); + foreach($headers as $key=>$value) { + + $nHeaders[] = $key . ': ' . $value; + + } + $curlSettings[CURLOPT_HTTPHEADER] = $nHeaders; + + if ($this->proxy) { + $curlSettings[CURLOPT_PROXY] = $this->proxy; + } + + if ($this->userName && $this->authType) { + $curlType = 0; + if ($this->authType & self::AUTH_BASIC) { + $curlType |= CURLAUTH_BASIC; + } + if ($this->authType & self::AUTH_DIGEST) { + $curlType |= CURLAUTH_DIGEST; + } + $curlSettings[CURLOPT_HTTPAUTH] = $curlType; + $curlSettings[CURLOPT_USERPWD] = $this->userName . ':' . $this->password; + } + + list( + $response, + $curlInfo, + $curlErrNo, + $curlError + ) = $this->curlRequest($url, $curlSettings); + + $headerBlob = substr($response, 0, $curlInfo['header_size']); + $response = substr($response, $curlInfo['header_size']); + + // In the case of 100 Continue, or redirects we'll have multiple lists + // of headers for each separate HTTP response. We can easily split this + // because they are separated by \r\n\r\n + $headerBlob = explode("\r\n\r\n", trim($headerBlob, "\r\n")); + + // We only care about the last set of headers + $headerBlob = $headerBlob[count($headerBlob)-1]; + + // Splitting headers + $headerBlob = explode("\r\n", $headerBlob); + + $headers = array(); + foreach($headerBlob as $header) { + $parts = explode(':', $header, 2); + if (count($parts)==2) { + $headers[strtolower(trim($parts[0]))] = trim($parts[1]); + } + } + + $response = array( + 'body' => $response, + 'statusCode' => $curlInfo['http_code'], + 'headers' => $headers + ); + + if ($curlErrNo) { + throw new Sabre_DAV_Exception('[CURL] Error while making request: ' . $curlError . ' (error code: ' . $curlErrNo . ')'); + } + + if ($response['statusCode']>=400) { + switch ($response['statusCode']) { + case 404: + throw new Sabre_DAV_Exception_NotFound('Resource ' . $url . ' not found.'); + break; + + default: + throw new Sabre_DAV_Exception('HTTP error response. (errorcode ' . $response['statusCode'] . ')'); + } + } + + return $response; + + } } \ No newline at end of file From 785aa751bb5f9a4bcdd677b96207550482e17d3c Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Fri, 7 Sep 2012 14:10:43 +0200 Subject: [PATCH 195/246] Whitespace fixes --- apps/files_versions/lib/hooks.php | 92 +++++++++++++++---------------- 1 file changed, 46 insertions(+), 46 deletions(-) diff --git a/apps/files_versions/lib/hooks.php b/apps/files_versions/lib/hooks.php index bfc8fd3a378..330f10afb59 100644 --- a/apps/files_versions/lib/hooks.php +++ b/apps/files_versions/lib/hooks.php @@ -9,7 +9,7 @@ /** * This class contains all hooks. */ - + namespace OCA_Versions; class Hooks { @@ -18,58 +18,58 @@ class Hooks { * listen to write event. */ public static function write_hook( $params ) { - + if(\OCP\Config::getSystemValue('files_versions', Storage::DEFAULTENABLED)=='true') { - + $versions = new Storage( new \OC_FilesystemView('') ); - + $path = $params[\OC_Filesystem::signal_param_path]; - + if($path<>'') $versions->store( $path ); - + } } - - /** - * @brief Erase versions of deleted file - * @param array - * - * This function is connected to the delete signal of OC_Filesystem - * cleanup the versions directory if the actual file gets deleted - */ + + /** + * @brief Erase versions of deleted file + * @param array + * + * This function is connected to the delete signal of OC_Filesystem + * cleanup the versions directory if the actual file gets deleted + */ public static function remove_hook($params) { - $versions_fileview = \OCP\Files::getStorage('files_versions'); - $rel_path = $params['path']; - $abs_path = \OCP\Config::getSystemValue('datadirectory').$versions_fileview->getAbsolutePath('').$rel_path.'.v'; - if(Storage::isversioned($rel_path)) { - $versions = Storage::getVersions($rel_path); - foreach ($versions as $v){ - unlink($abs_path . $v['version']); - } - } - } - - /** - * @brief rename/move versions of renamed/moved files - * @param array with oldpath and newpath - * - * This function is connected to the rename signal of OC_Filesystem and adjust the name and location - * of the stored versions along the actual file - */ - public static function rename_hook($params) { - $versions_fileview = \OCP\Files::getStorage('files_versions'); - $rel_oldpath = $params['oldpath']; - $abs_oldpath = \OCP\Config::getSystemValue('datadirectory').$versions_fileview->getAbsolutePath('').$rel_oldpath.'.v'; - $abs_newpath = \OCP\Config::getSystemValue('datadirectory').$versions_fileview->getAbsolutePath('').$params['newpath'].'.v'; - if(Storage::isversioned($rel_oldpath)) { - $info=pathinfo($abs_newpath); - if(!file_exists($info['dirname'])) mkdir($info['dirname'],0700,true); - $versions = Storage::getVersions($rel_oldpath); - foreach ($versions as $v){ - rename($abs_oldpath.$v['version'], $abs_newpath.$v['version']); - } - } + $versions_fileview = \OCP\Files::getStorage('files_versions'); + $rel_path = $params['path']; + $abs_path = \OCP\Config::getSystemValue('datadirectory').$versions_fileview->getAbsolutePath('').$rel_path.'.v'; + if(Storage::isversioned($rel_path)) { + $versions = Storage::getVersions($rel_path); + foreach ($versions as $v){ + unlink($abs_path . $v['version']); + } + } } - + + /** + * @brief rename/move versions of renamed/moved files + * @param array with oldpath and newpath + * + * This function is connected to the rename signal of OC_Filesystem and adjust the name and location + * of the stored versions along the actual file + */ + public static function rename_hook($params) { + $versions_fileview = \OCP\Files::getStorage('files_versions'); + $rel_oldpath = $params['oldpath']; + $abs_oldpath = \OCP\Config::getSystemValue('datadirectory').$versions_fileview->getAbsolutePath('').$rel_oldpath.'.v'; + $abs_newpath = \OCP\Config::getSystemValue('datadirectory').$versions_fileview->getAbsolutePath('').$params['newpath'].'.v'; + if(Storage::isversioned($rel_oldpath)) { + $info=pathinfo($abs_newpath); + if(!file_exists($info['dirname'])) mkdir($info['dirname'],0700,true); + $versions = Storage::getVersions($rel_oldpath); + foreach ($versions as $v){ + rename($abs_oldpath.$v['version'], $abs_newpath.$v['version']); + } + } + } + } From 3829460ab8cbb6de65c53583a20fd04cbe7927dd Mon Sep 17 00:00:00 2001 From: Thomas Mueller Date: Fri, 7 Sep 2012 15:22:01 +0200 Subject: [PATCH 196/246] adding space between) and { --- apps/files/admin.php | 2 +- apps/files/ajax/list.php | 4 +- apps/files/ajax/upload.php | 4 +- apps/files/appinfo/filesync.php | 6 +- apps/files/appinfo/update.php | 2 +- apps/files/download.php | 2 +- apps/files/index.php | 12 +- apps/files/settings.php | 6 +- apps/files_encryption/appinfo/app.php | 2 +- apps/files_encryption/lib/crypt.php | 28 +-- apps/files_encryption/lib/cryptstream.php | 54 +++--- apps/files_encryption/lib/proxy.php | 44 ++--- apps/files_encryption/templates/settings.php | 2 +- apps/files_encryption/tests/encryption.php | 4 +- apps/files_encryption/tests/proxy.php | 12 +- apps/files_encryption/tests/stream.php | 10 +- apps/files_external/lib/ftp.php | 20 +-- apps/files_external/lib/smb.php | 34 ++-- apps/files_external/lib/streamwrapper.php | 34 ++-- apps/files_external/lib/swift.php | 170 +++++++++--------- apps/files_external/lib/webdav.php | 88 +++++----- apps/files_external/tests/ftp.php | 6 +- apps/files_external/tests/google.php | 6 +- apps/files_external/tests/smb.php | 6 +- apps/files_external/tests/swift.php | 6 +- apps/files_external/tests/webdav.php | 6 +- apps/files_sharing/lib/sharedstorage.php | 2 +- apps/files_versions/ajax/expireAll.php | 2 +- apps/files_versions/ajax/rollbackVersion.php | 2 +- apps/files_versions/lib/hooks.php | 4 +- apps/files_versions/lib/versions.php | 8 +- apps/user_ldap/appinfo/install.php | 2 +- apps/user_ldap/appinfo/update.php | 2 +- apps/user_ldap/group_ldap.php | 2 +- apps/user_ldap/settings.php | 6 +- apps/user_ldap/tests/group_ldap.php | 4 +- apps/user_ldap/user_ldap.php | 10 +- apps/user_webdavauth/settings.php | 4 +- apps/user_webdavauth/user_webdavauth.php | 6 +- core/ajax/appconfig.php | 2 +- core/minimizer.php | 4 +- core/templates/403.php | 2 +- core/templates/404.php | 2 +- core/templates/exception.php | 2 +- core/templates/layout.guest.php | 2 +- core/templates/layout.user.php | 6 +- cron.php | 2 +- lib/MDB2/Driver/Datatype/sqlite3.php | 2 +- lib/MDB2/Driver/Manager/sqlite3.php | 2 +- lib/MDB2/Driver/sqlite3.php | 28 +-- lib/app.php | 82 ++++----- lib/appconfig.php | 30 ++-- lib/archive.php | 16 +- lib/archive/tar.php | 100 +++++------ lib/archive/zip.php | 58 +++---- lib/backgroundjob/queuedtask.php | 14 +- lib/backgroundjob/regulartask.php | 4 +- lib/backgroundjob/worker.php | 20 +-- lib/base.php | 8 +- lib/cache/apc.php | 2 +- lib/cache/broker.php | 2 +- lib/cache/file.php | 12 +- lib/cache/fileglobal.php | 10 +- lib/cache/xcache.php | 4 +- lib/config.php | 12 +- lib/connector/sabre/auth.php | 4 +- lib/connector/sabre/directory.php | 2 +- lib/connector/sabre/locks.php | 2 +- lib/connector/sabre/node.php | 8 +- lib/connector/sabre/principal.php | 4 +- lib/db.php | 60 +++---- lib/eventsource.php | 16 +- lib/filecache.php | 128 +++++++------- lib/filecache/cached.php | 18 +- lib/filecache/update.php | 62 +++---- lib/fileproxy.php | 32 ++-- lib/fileproxy/quota.php | 24 +-- lib/files.php | 84 ++++----- lib/filestorage/common.php | 62 +++---- lib/filestorage/commontest.php | 26 +-- lib/filestorage/local.php | 96 +++++----- lib/filestorage/temporary.php | 6 +- lib/filesystem.php | 156 ++++++++--------- lib/filesystemview.php | 22 +-- lib/geo.php | 4 +- lib/group.php | 62 +++---- lib/group/backend.php | 12 +- lib/group/database.php | 18 +- lib/group/dummy.php | 32 ++-- lib/helper.php | 112 ++++++------ lib/hook.php | 20 +-- lib/image.php | 10 +- lib/installer.php | 92 +++++----- lib/json.php | 34 ++-- lib/l10n.php | 70 ++++---- lib/l10n/string.php | 6 +- lib/log/owncloud.php | 4 +- lib/mail.php | 4 +- lib/migrate.php | 174 +++++++++---------- lib/migration/content.php | 42 ++--- lib/migration/provider.php | 8 +- lib/minimizer.php | 2 +- lib/minimizer/css.php | 2 +- lib/minimizer/js.php | 2 +- lib/ocs.php | 66 +++---- lib/ocsclient.php | 34 ++-- lib/preferences.php | 28 +-- lib/public/app.php | 18 +- lib/public/backgroundjob.php | 14 +- lib/public/config.php | 12 +- lib/public/db.php | 10 +- lib/public/files.php | 12 +- lib/public/json.php | 16 +- lib/public/template.php | 6 +- lib/public/user.php | 14 +- lib/public/util.php | 30 ++-- lib/request.php | 4 +- lib/search.php | 14 +- lib/search/provider.php | 2 +- lib/search/provider/file.php | 10 +- lib/search/result.php | 2 +- lib/setup.php | 10 +- lib/streamwrappers.php | 40 ++--- lib/subadmin.php | 40 ++--- lib/template.php | 80 ++++----- lib/templatelayout.php | 18 +- lib/updater.php | 10 +- lib/user.php | 104 +++++------ lib/user/backend.php | 12 +- lib/user/database.php | 30 ++-- lib/user/dummy.php | 18 +- lib/user/http.php | 18 +- lib/util.php | 116 ++++++------- lib/vcategories.php | 4 +- lib/vobject.php | 64 +++---- search/ajax/search.php | 2 +- search/index.php | 2 +- settings/admin.php | 4 +- settings/ajax/apps/ocs.php | 4 +- settings/ajax/createuser.php | 4 +- settings/ajax/togglesubadmins.php | 2 +- settings/apps.php | 2 +- settings/personal.php | 6 +- settings/settings.php | 2 +- settings/templates/admin.php | 8 +- settings/templates/personal.php | 2 +- settings/templates/settings.php | 2 +- settings/users.php | 6 +- tests/index.php | 28 +-- tests/lib/archive.php | 24 +-- tests/lib/archive/tar.php | 6 +- tests/lib/archive/zip.php | 6 +- tests/lib/cache.php | 8 +- tests/lib/cache/apc.php | 4 +- tests/lib/cache/file.php | 6 +- tests/lib/cache/xcache.php | 4 +- tests/lib/filestorage.php | 28 +-- tests/lib/filestorage/commontest.php | 6 +- tests/lib/filestorage/local.php | 4 +- tests/lib/filesystem.php | 14 +- tests/lib/group.php | 6 +- tests/lib/group/backend.php | 8 +- tests/lib/group/database.php | 10 +- tests/lib/group/dummy.php | 2 +- tests/lib/streamwrappers.php | 12 +- tests/lib/user/backend.php | 6 +- tests/lib/user/database.php | 8 +- tests/lib/user/dummy.php | 2 +- 168 files changed, 1834 insertions(+), 1834 deletions(-) diff --git a/apps/files/admin.php b/apps/files/admin.php index b49c0f61a0c..a8f2deffc92 100644 --- a/apps/files/admin.php +++ b/apps/files/admin.php @@ -33,7 +33,7 @@ $upload_max_filesize = OCP\Util::computerFileSize(ini_get('upload_max_filesize') $post_max_size = OCP\Util::computerFileSize(ini_get('post_max_size')); $maxUploadFilesize = OCP\Util::humanFileSize(min($upload_max_filesize, $post_max_size)); if($_POST) { - if(isset($_POST['maxUploadSize'])){ + if(isset($_POST['maxUploadSize'])) { if(($setMaxSize = OC_Files::setUploadLimit(OCP\Util::computerFileSize($_POST['maxUploadSize']))) !== false) { $maxUploadFilesize = OCP\Util::humanFileSize($setMaxSize); } diff --git a/apps/files/ajax/list.php b/apps/files/ajax/list.php index 2254526231e..568fe754c02 100644 --- a/apps/files/ajax/list.php +++ b/apps/files/ajax/list.php @@ -17,7 +17,7 @@ $data = array(); if($doBreadcrumb) { $breadcrumb = array(); $pathtohere = "/"; - foreach( explode( "/", $dir ) as $i ){ + foreach( explode( "/", $dir ) as $i ) { if( $i != "" ) { $pathtohere .= "$i/"; $breadcrumb[] = array( "dir" => $pathtohere, "name" => $i ); @@ -32,7 +32,7 @@ if($doBreadcrumb) { // make filelist $files = array(); -foreach( OC_Files::getdirectorycontent( $dir ) as $i ){ +foreach( OC_Files::getdirectorycontent( $dir ) as $i ) { $i["date"] = OCP\Util::formatDate($i["mtime"] ); $files[] = $i; } diff --git a/apps/files/ajax/upload.php b/apps/files/ajax/upload.php index 813a6c67b5c..7709becc6a8 100644 --- a/apps/files/ajax/upload.php +++ b/apps/files/ajax/upload.php @@ -35,7 +35,7 @@ $dir = $_POST['dir']; $error=''; $totalSize=0; -foreach($files['size'] as $size){ +foreach($files['size'] as $size) { $totalSize+=$size; } if($totalSize>OC_Filesystem::free_space('/')) { @@ -46,7 +46,7 @@ if($totalSize>OC_Filesystem::free_space('/')) { $result=array(); if(strpos($dir, '..') === false) { $fileCount=count($files['name']); - for($i=0;$i<$fileCount;$i++){ + for($i=0;$i<$fileCount;$i++) { $target = OCP\Files::buildNotExistingFileName(stripslashes($dir), $files['name'][$i]); if(is_uploaded_file($files['tmp_name'][$i]) and OC_Filesystem::fromTmpFile($files['tmp_name'][$i], $target)) { $meta=OC_FileCache_Cached::get($target); diff --git a/apps/files/appinfo/filesync.php b/apps/files/appinfo/filesync.php index 707ee2435c0..c1fe444cec7 100644 --- a/apps/files/appinfo/filesync.php +++ b/apps/files/appinfo/filesync.php @@ -23,14 +23,14 @@ // only need filesystem apps $RUNTIME_APPTYPES=array('filesystem','authentication'); OC_App::loadApps($RUNTIME_APPTYPES); -if(!OC_User::isLoggedIn()){ - if(!isset($_SERVER['PHP_AUTH_USER'])){ +if(!OC_User::isLoggedIn()) { + if(!isset($_SERVER['PHP_AUTH_USER'])) { header('WWW-Authenticate: Basic realm="ownCloud Server"'); header('HTTP/1.0 401 Unauthorized'); echo 'Valid credentials must be supplied'; exit(); } else { - if(!OC_User::login($_SERVER["PHP_AUTH_USER"], $_SERVER["PHP_AUTH_PW"])){ + if(!OC_User::login($_SERVER["PHP_AUTH_USER"], $_SERVER["PHP_AUTH_PW"])) { exit(); } } diff --git a/apps/files/appinfo/update.php b/apps/files/appinfo/update.php index 32ac89f0061..35008e345b9 100644 --- a/apps/files/appinfo/update.php +++ b/apps/files/appinfo/update.php @@ -5,7 +5,7 @@ $installedVersion=OCP\Config::getAppValue('files', 'installed_version'); if (version_compare($installedVersion, '1.1.4', '<')) { $query = OC_DB::prepare( "SELECT `propertyname`, `propertypath`, `userid` FROM `*PREFIX*properties`" ); $result = $query->execute(); - while( $row = $result->fetchRow()){ + while( $row = $result->fetchRow()) { $query = OC_DB::prepare( 'UPDATE `*PREFIX*properties` SET `propertyname` = ? WHERE `userid` = ? AND `propertypath` = ?' ); $query->execute( array( preg_replace("/^{.*}/", "", $row["propertyname"]),$row["userid"], $row["propertypath"] )); } diff --git a/apps/files/download.php b/apps/files/download.php index 44a328e25db..ff6aefbbe0f 100644 --- a/apps/files/download.php +++ b/apps/files/download.php @@ -29,7 +29,7 @@ OCP\User::checkLoggedIn(); $filename = $_GET["file"]; -if(!OC_Filesystem::file_exists($filename)){ +if(!OC_Filesystem::file_exists($filename)) { header("HTTP/1.0 404 Not Found"); $tmpl = new OCP\Template( '', '404', 'guest' ); $tmpl->assign('file',$filename); diff --git a/apps/files/index.php b/apps/files/index.php index ba785f7d6bc..493087d26f1 100644 --- a/apps/files/index.php +++ b/apps/files/index.php @@ -31,7 +31,7 @@ OCP\Util::addscript( 'files', 'jquery.fileupload' ); OCP\Util::addscript( 'files', 'files' ); OCP\Util::addscript( 'files', 'filelist' ); OCP\Util::addscript( 'files', 'fileactions' ); -if(!isset($_SESSION['timezone'])){ +if(!isset($_SESSION['timezone'])) { OCP\Util::addscript( 'files', 'timezone' ); } OCP\App::setActiveNavigationEntry( 'files_index' ); @@ -44,9 +44,9 @@ if(!OC_Filesystem::is_dir($dir.'/')) { } $files = array(); -foreach( OC_Files::getdirectorycontent( $dir ) as $i ){ +foreach( OC_Files::getdirectorycontent( $dir ) as $i ) { $i['date'] = OCP\Util::formatDate($i['mtime'] ); - if($i['type']=='file'){ + if($i['type']=='file') { $fileinfo=pathinfo($i['name']); $i['basename']=$fileinfo['filename']; if (!empty($fileinfo['extension'])) { @@ -56,7 +56,7 @@ foreach( OC_Files::getdirectorycontent( $dir ) as $i ){ $i['extension']=''; } } - if($i['directory']=='/'){ + if($i['directory']=='/') { $i['directory']=''; } $files[] = $i; @@ -65,8 +65,8 @@ foreach( OC_Files::getdirectorycontent( $dir ) as $i ){ // Make breadcrumb $breadcrumb = array(); $pathtohere = ''; -foreach( explode( '/', $dir ) as $i ){ - if( $i != '' ){ +foreach( explode( '/', $dir ) as $i ) { + if( $i != '' ) { $pathtohere .= '/'.str_replace('+','%20', urlencode($i)); $breadcrumb[] = array( 'dir' => $pathtohere, 'name' => $i ); } diff --git a/apps/files/settings.php b/apps/files/settings.php index b02c3738c6e..52ec9fd0fe3 100644 --- a/apps/files/settings.php +++ b/apps/files/settings.php @@ -36,7 +36,7 @@ OCP\Util::addscript( "files", "files" ); $dir = isset( $_GET['dir'] ) ? $_GET['dir'] : ''; $files = array(); -foreach( OC_Files::getdirectorycontent( $dir ) as $i ){ +foreach( OC_Files::getdirectorycontent( $dir ) as $i ) { $i["date"] = date( $CONFIG_DATEFORMAT, $i["mtime"] ); $files[] = $i; } @@ -44,8 +44,8 @@ foreach( OC_Files::getdirectorycontent( $dir ) as $i ){ // Make breadcrumb $breadcrumb = array(); $pathtohere = "/"; -foreach( explode( "/", $dir ) as $i ){ - if( $i != "" ){ +foreach( explode( "/", $dir ) as $i ) { + if( $i != "" ) { $pathtohere .= "$i/"; $breadcrumb[] = array( "dir" => $pathtohere, "name" => $i ); } diff --git a/apps/files_encryption/appinfo/app.php b/apps/files_encryption/appinfo/app.php index 679d0b95edc..bb130a366be 100644 --- a/apps/files_encryption/appinfo/app.php +++ b/apps/files_encryption/appinfo/app.php @@ -10,7 +10,7 @@ OCP\Util::connectHook('OC_User','post_login','OC_Crypt','loginListener'); stream_wrapper_register('crypt','OC_CryptStream'); -if(!isset($_SESSION['enckey']) and OCP\User::isLoggedIn()){//force the user to re-loggin if the encryption key isn't unlocked (happens when a user is logged in before the encryption app is enabled) +if(!isset($_SESSION['enckey']) and OCP\User::isLoggedIn()) {//force the user to re-loggin if the encryption key isn't unlocked (happens when a user is logged in before the encryption app is enabled) OCP\User::logout(); header("Location: ".OC::$WEBROOT.'/'); exit(); diff --git a/apps/files_encryption/lib/crypt.php b/apps/files_encryption/lib/crypt.php index ebc09e78961..38d8edf28c3 100644 --- a/apps/files_encryption/lib/crypt.php +++ b/apps/files_encryption/lib/crypt.php @@ -39,18 +39,18 @@ require_once 'Crypt_Blowfish/Blowfish.php'; class OC_Crypt { static private $bf = null; - public static function loginListener($params){ + public static function loginListener($params) { self::init($params['uid'],$params['password']); } public static function init($login,$password) { $view=new OC_FilesystemView('/'); - if(!$view->file_exists('/'.$login)){ + if(!$view->file_exists('/'.$login)) { $view->mkdir('/'.$login); } OC_FileProxy::$enabled=false; - if(!$view->file_exists('/'.$login.'/encryption.key')){// does key exist? + if(!$view->file_exists('/'.$login.'/encryption.key')) {// does key exist? OC_Crypt::createkey($login,$password); } $key=$view->file_get_contents('/'.$login.'/encryption.key'); @@ -66,14 +66,14 @@ class OC_Crypt { * * if the key is left out, the default handeler will be used */ - public static function getBlowfish($key=''){ - if($key){ + public static function getBlowfish($key='') { + if($key) { return new Crypt_Blowfish($key); }else{ - if(!isset($_SESSION['enckey'])){ + if(!isset($_SESSION['enckey'])) { return false; } - if(!self::$bf){ + if(!self::$bf) { self::$bf=new Crypt_Blowfish($_SESSION['enckey']); } return self::$bf; @@ -96,7 +96,7 @@ class OC_Crypt { } public static function changekeypasscode($oldPassword, $newPassword) { - if(OCP\User::isLoggedIn()){ + if(OCP\User::isLoggedIn()) { $username=OCP\USER::getUser(); $view=new OC_FilesystemView('/'.$username); @@ -179,7 +179,7 @@ class OC_Crypt { while (!feof($handleread)) { $content = fread($handleread, 8192); $enccontent=OC_CRYPT::decrypt( $content, $key); - if(feof($handleread)){ + if(feof($handleread)) { $enccontent=rtrim($enccontent, "\0"); } fwrite($handlewrite, $enccontent); @@ -192,9 +192,9 @@ class OC_Crypt { /** * encrypt data in 8192b sized blocks */ - public static function blockEncrypt($data, $key=''){ + public static function blockEncrypt($data, $key='') { $result=''; - while(strlen($data)){ + while(strlen($data)) { $result.=self::encrypt(substr($data,0,8192),$key); $data=substr($data,8192); } @@ -204,13 +204,13 @@ class OC_Crypt { /** * decrypt data in 8192b sized blocks */ - public static function blockDecrypt($data, $key='',$maxLength=0){ + public static function blockDecrypt($data, $key='',$maxLength=0) { $result=''; - while(strlen($data)){ + while(strlen($data)) { $result.=self::decrypt(substr($data,0,8192),$key); $data=substr($data,8192); } - if($maxLength>0){ + if($maxLength>0) { return substr($result,0,$maxLength); }else{ return rtrim($result, "\0"); diff --git a/apps/files_encryption/lib/cryptstream.php b/apps/files_encryption/lib/cryptstream.php index 75ad62659d7..721a1b955df 100644 --- a/apps/files_encryption/lib/cryptstream.php +++ b/apps/files_encryption/lib/cryptstream.php @@ -36,18 +36,18 @@ class OC_CryptStream{ private $size; private static $rootView; - public function stream_open($path, $mode, $options, &$opened_path){ - if(!self::$rootView){ + public function stream_open($path, $mode, $options, &$opened_path) { + if(!self::$rootView) { self::$rootView=new OC_FilesystemView(''); } $path=str_replace('crypt://','',$path); - if(dirname($path)=='streams' and isset(self::$sourceStreams[basename($path)])){ + if(dirname($path)=='streams' and isset(self::$sourceStreams[basename($path)])) { $this->source=self::$sourceStreams[basename($path)]['stream']; $this->path=self::$sourceStreams[basename($path)]['path']; $this->size=self::$sourceStreams[basename($path)]['size']; }else{ $this->path=$path; - if($mode=='w' or $mode=='w+' or $mode=='wb' or $mode=='wb+'){ + if($mode=='w' or $mode=='w+' or $mode=='wb' or $mode=='wb+') { $this->size=0; }else{ $this->size=self::$rootView->filesize($path,$mode); @@ -55,55 +55,55 @@ class OC_CryptStream{ OC_FileProxy::$enabled=false;//disable fileproxies so we can open the source file $this->source=self::$rootView->fopen($path,$mode); OC_FileProxy::$enabled=true; - if(!is_resource($this->source)){ + if(!is_resource($this->source)) { OCP\Util::writeLog('files_encryption','failed to open '.$path,OCP\Util::ERROR); } } - if(is_resource($this->source)){ + if(is_resource($this->source)) { $this->meta=stream_get_meta_data($this->source); } return is_resource($this->source); } - public function stream_seek($offset, $whence=SEEK_SET){ + public function stream_seek($offset, $whence=SEEK_SET) { $this->flush(); fseek($this->source,$offset,$whence); } - public function stream_tell(){ + public function stream_tell() { return ftell($this->source); } - public function stream_read($count){ + public function stream_read($count) { //$count will always be 8192 https://bugs.php.net/bug.php?id=21641 //This makes this function a lot simpler but will breake everything the moment it's fixed $this->writeCache=''; - if($count!=8192){ + if($count!=8192) { OCP\Util::writeLog('files_encryption','php bug 21641 no longer holds, decryption will not work',OCP\Util::FATAL); die(); } $pos=ftell($this->source); $data=fread($this->source,8192); - if(strlen($data)){ + if(strlen($data)) { $result=OC_Crypt::decrypt($data); }else{ $result=''; } $length=$this->size-$pos; - if($length<8192){ + if($length<8192) { $result=substr($result,0,$length); } return $result; } - public function stream_write($data){ + public function stream_write($data) { $length=strlen($data); $currentPos=ftell($this->source); - if($this->writeCache){ + if($this->writeCache) { $data=$this->writeCache.$data; $this->writeCache=''; } - if($currentPos%8192!=0){ + if($currentPos%8192!=0) { //make sure we always start on a block start fseek($this->source,-($currentPos%8192),SEEK_CUR); $encryptedBlock=fread($this->source,8192); @@ -113,8 +113,8 @@ class OC_CryptStream{ fseek($this->source,-($currentPos%8192),SEEK_CUR); } $currentPos=ftell($this->source); - while($remainingLength=strlen($data)>0){ - if($remainingLength<8192){ + while($remainingLength=strlen($data)>0) { + if($remainingLength<8192) { $this->writeCache=$data; $data=''; }else{ @@ -127,8 +127,8 @@ class OC_CryptStream{ return $length; } - public function stream_set_option($option,$arg1,$arg2){ - switch($option){ + public function stream_set_option($option,$arg1,$arg2) { + switch($option) { case STREAM_OPTION_BLOCKING: stream_set_blocking($this->source,$arg1); break; @@ -140,33 +140,33 @@ class OC_CryptStream{ } } - public function stream_stat(){ + public function stream_stat() { return fstat($this->source); } - public function stream_lock($mode){ + public function stream_lock($mode) { flock($this->source,$mode); } - public function stream_flush(){ + public function stream_flush() { return fflush($this->source); } - public function stream_eof(){ + public function stream_eof() { return feof($this->source); } - private function flush(){ - if($this->writeCache){ + private function flush() { + if($this->writeCache) { $encrypted=OC_Crypt::encrypt($this->writeCache); fwrite($this->source,$encrypted); $this->writeCache=''; } } - public function stream_close(){ + public function stream_close() { $this->flush(); - if($this->meta['mode']!='r' and $this->meta['mode']!='rb'){ + if($this->meta['mode']!='r' and $this->meta['mode']!='rb') { OC_FileCache::put($this->path,array('encrypted'=>true,'size'=>$this->size),''); } return fclose($this->source); diff --git a/apps/files_encryption/lib/proxy.php b/apps/files_encryption/lib/proxy.php index 247924b2aaf..f61cd1e3773 100644 --- a/apps/files_encryption/lib/proxy.php +++ b/apps/files_encryption/lib/proxy.php @@ -34,21 +34,21 @@ class OC_FileProxy_Encryption extends OC_FileProxy{ * @param string $path * @return bool */ - private static function shouldEncrypt($path){ - if(is_null(self::$enableEncryption)){ + private static function shouldEncrypt($path) { + if(is_null(self::$enableEncryption)) { self::$enableEncryption=(OCP\Config::getAppValue('files_encryption','enable_encryption','true')=='true'); } - if(!self::$enableEncryption){ + if(!self::$enableEncryption) { return false; } - if(is_null(self::$blackList)){ + if(is_null(self::$blackList)) { self::$blackList=explode(',',OCP\Config::getAppValue('files_encryption','type_blacklist','jpg,png,jpeg,avi,mpg,mpeg,mkv,mp3,oga,ogv,ogg')); } - if(self::isEncrypted($path)){ + if(self::isEncrypted($path)) { return true; } $extension=substr($path,strrpos($path,'.')+1); - if(array_search($extension,self::$blackList)===false){ + if(array_search($extension,self::$blackList)===false) { return true; } } @@ -58,13 +58,13 @@ class OC_FileProxy_Encryption extends OC_FileProxy{ * @param string $path * @return bool */ - private static function isEncrypted($path){ + private static function isEncrypted($path) { $metadata=OC_FileCache_Cached::get($path,''); return isset($metadata['encrypted']) and (bool)$metadata['encrypted']; } - public function preFile_put_contents($path,&$data){ - if(self::shouldEncrypt($path)){ + public function preFile_put_contents($path,&$data) { + if(self::shouldEncrypt($path)) { if (!is_resource($data)) {//stream put contents should have been converter to fopen $size=strlen($data); $data=OC_Crypt::blockEncrypt($data); @@ -73,24 +73,24 @@ class OC_FileProxy_Encryption extends OC_FileProxy{ } } - public function postFile_get_contents($path,$data){ - if(self::isEncrypted($path)){ + public function postFile_get_contents($path,$data) { + if(self::isEncrypted($path)) { $cached=OC_FileCache_Cached::get($path,''); $data=OC_Crypt::blockDecrypt($data,'',$cached['size']); } return $data; } - public function postFopen($path,&$result){ - if(!$result){ + public function postFopen($path,&$result) { + if(!$result) { return $result; } $meta=stream_get_meta_data($result); - if(self::isEncrypted($path)){ + if(self::isEncrypted($path)) { fclose($result); $result=fopen('crypt://'.$path,$meta['mode']); - }elseif(self::shouldEncrypt($path) and $meta['mode']!='r' and $meta['mode']!='rb'){ - if(OC_Filesystem::file_exists($path) and OC_Filesystem::filesize($path)>0){ + }elseif(self::shouldEncrypt($path) and $meta['mode']!='r' and $meta['mode']!='rb') { + if(OC_Filesystem::file_exists($path) and OC_Filesystem::filesize($path)>0) { //first encrypt the target file so we don't end up with a half encrypted file OCP\Util::writeLog('files_encryption','Decrypting '.$path.' before writing',OCP\Util::DEBUG); $tmp=fopen('php://temp'); @@ -104,23 +104,23 @@ class OC_FileProxy_Encryption extends OC_FileProxy{ return $result; } - public function postGetMimeType($path,$mime){ - if(self::isEncrypted($path)){ + public function postGetMimeType($path,$mime) { + if(self::isEncrypted($path)) { $mime=OCP\Files::getMimeType('crypt://'.$path,'w'); } return $mime; } - public function postStat($path,$data){ - if(self::isEncrypted($path)){ + public function postStat($path,$data) { + if(self::isEncrypted($path)) { $cached=OC_FileCache_Cached::get($path,''); $data['size']=$cached['size']; } return $data; } - public function postFileSize($path,$size){ - if(self::isEncrypted($path)){ + public function postFileSize($path,$size) { + if(self::isEncrypted($path)) { $cached=OC_FileCache_Cached::get($path,''); return $cached['size']; }else{ diff --git a/apps/files_encryption/templates/settings.php b/apps/files_encryption/templates/settings.php index 79780d694cf..55e8cf1542c 100644 --- a/apps/files_encryption/templates/settings.php +++ b/apps/files_encryption/templates/settings.php @@ -7,6 +7,6 @@ - > + > diff --git a/apps/files_encryption/tests/encryption.php b/apps/files_encryption/tests/encryption.php index f70411ed63c..89397f6ef2c 100644 --- a/apps/files_encryption/tests/encryption.php +++ b/apps/files_encryption/tests/encryption.php @@ -7,7 +7,7 @@ */ class Test_Encryption extends UnitTestCase { - function testEncryption(){ + function testEncryption() { $key=uniqid(); $file=OC::$SERVERROOT.'/3rdparty/MDB2.php'; $source=file_get_contents($file); //nice large text file @@ -54,7 +54,7 @@ class Test_Encryption extends UnitTestCase { } - function testBinary(){ + function testBinary() { $key=uniqid(); $file=__DIR__.'/binary'; diff --git a/apps/files_encryption/tests/proxy.php b/apps/files_encryption/tests/proxy.php index c4952d13d39..042011a6c87 100644 --- a/apps/files_encryption/tests/proxy.php +++ b/apps/files_encryption/tests/proxy.php @@ -10,7 +10,7 @@ class Test_CryptProxy extends UnitTestCase { private $oldConfig; private $oldKey; - public function setUp(){ + public function setUp() { $user=OC_User::getUser(); $this->oldConfig=OCP\Config::getAppValue('files_encryption','enable_encryption','true'); @@ -40,14 +40,14 @@ class Test_CryptProxy extends UnitTestCase { $rootView->mkdir('/'.$user.'/files'); } - public function tearDown(){ + public function tearDown() { OCP\Config::setAppValue('files_encryption','enable_encryption',$this->oldConfig); - if(!is_null($this->oldKey)){ + if(!is_null($this->oldKey)) { $_SESSION['enckey']=$this->oldKey; } } - public function testSimple(){ + public function testSimple() { $file=OC::$SERVERROOT.'/3rdparty/MDB2.php'; $original=file_get_contents($file); @@ -64,7 +64,7 @@ class Test_CryptProxy extends UnitTestCase { } - public function testView(){ + public function testView() { $file=OC::$SERVERROOT.'/3rdparty/MDB2.php'; $original=file_get_contents($file); @@ -86,7 +86,7 @@ class Test_CryptProxy extends UnitTestCase { $this->assertEqual($original,$fromFile); } - public function testBinary(){ + public function testBinary() { $file=__DIR__.'/binary'; $original=file_get_contents($file); diff --git a/apps/files_encryption/tests/stream.php b/apps/files_encryption/tests/stream.php index 517d497344e..39b13620782 100644 --- a/apps/files_encryption/tests/stream.php +++ b/apps/files_encryption/tests/stream.php @@ -9,7 +9,7 @@ class Test_CryptStream extends UnitTestCase { private $tmpFiles=array(); - function testStream(){ + function testStream() { $stream=$this->getStream('test1','w',strlen('foobar')); fwrite($stream,'foobar'); fclose($stream); @@ -40,11 +40,11 @@ class Test_CryptStream extends UnitTestCase { * @param int size * @return resource */ - function getStream($id,$mode,$size){ - if($id===''){ + function getStream($id,$mode,$size) { + if($id==='') { $id=uniqid(); } - if(!isset($this->tmpFiles[$id])){ + if(!isset($this->tmpFiles[$id])) { $file=OCP\Files::tmpFile(); $this->tmpFiles[$id]=$file; }else{ @@ -55,7 +55,7 @@ class Test_CryptStream extends UnitTestCase { return fopen('crypt://streams/'.$id,$mode); } - function testBinary(){ + function testBinary() { $file=__DIR__.'/binary'; $source=file_get_contents($file); diff --git a/apps/files_external/lib/ftp.php b/apps/files_external/lib/ftp.php index 818273f6c2d..261141455cc 100644 --- a/apps/files_external/lib/ftp.php +++ b/apps/files_external/lib/ftp.php @@ -15,13 +15,13 @@ class OC_FileStorage_FTP extends OC_FileStorage_StreamWrapper{ private static $tempFiles=array(); - public function __construct($params){ + public function __construct($params) { $this->host=$params['host']; $this->user=$params['user']; $this->password=$params['password']; $this->secure=isset($params['secure'])?(bool)$params['secure']:false; $this->root=isset($params['root'])?$params['root']:'/'; - if(!$this->root || $this->root[0]!='/'){ + if(!$this->root || $this->root[0]!='/') { $this->root='/'.$this->root; } //create the root folder if necesary @@ -35,16 +35,16 @@ class OC_FileStorage_FTP extends OC_FileStorage_StreamWrapper{ * @param string path * @return string */ - public function constructUrl($path){ + public function constructUrl($path) { $url='ftp'; - if($this->secure){ + if($this->secure) { $url.='s'; } $url.='://'.$this->user.':'.$this->password.'@'.$this->host.$this->root.$path; return $url; } - public function fopen($path,$mode){ - switch($mode){ + public function fopen($path,$mode) { + switch($mode) { case 'r': case 'rb': case 'w': @@ -63,14 +63,14 @@ class OC_FileStorage_FTP extends OC_FileStorage_StreamWrapper{ case 'c': case 'c+': //emulate these - if(strrpos($path,'.')!==false){ + if(strrpos($path,'.')!==false) { $ext=substr($path,strrpos($path,'.')); }else{ $ext=''; } $tmpFile=OCP\Files::tmpFile($ext); OC_CloseStreamWrapper::$callBacks[$tmpFile]=array($this,'writeBack'); - if($this->file_exists($path)){ + if($this->file_exists($path)) { $this->getFile($path,$tmpFile); } self::$tempFiles[$tmpFile]=$path; @@ -78,8 +78,8 @@ class OC_FileStorage_FTP extends OC_FileStorage_StreamWrapper{ } } - public function writeBack($tmpFile){ - if(isset(self::$tempFiles[$tmpFile])){ + public function writeBack($tmpFile) { + if(isset(self::$tempFiles[$tmpFile])) { $this->uploadFile($tmpFile,self::$tempFiles[$tmpFile]); unlink($tmpFile); } diff --git a/apps/files_external/lib/smb.php b/apps/files_external/lib/smb.php index 91c0f16c1f6..e5ba7a17743 100644 --- a/apps/files_external/lib/smb.php +++ b/apps/files_external/lib/smb.php @@ -15,40 +15,40 @@ class OC_FileStorage_SMB extends OC_FileStorage_StreamWrapper{ private $root; private $share; - public function __construct($params){ + public function __construct($params) { $this->host=$params['host']; $this->user=$params['user']; $this->password=$params['password']; $this->share=$params['share']; $this->root=isset($params['root'])?$params['root']:'/'; - if(!$this->root || $this->root[0]!='/'){ + if(!$this->root || $this->root[0]!='/') { $this->root='/'.$this->root; } - if(substr($this->root,-1,1)!='/'){ + if(substr($this->root,-1,1)!='/') { $this->root.='/'; } - if(!$this->share || $this->share[0]!='/'){ + if(!$this->share || $this->share[0]!='/') { $this->share='/'.$this->share; } - if(substr($this->share,-1,1)=='/'){ + if(substr($this->share,-1,1)=='/') { $this->share=substr($this->share,0,-1); } //create the root folder if necesary - if(!$this->is_dir('')){ + if(!$this->is_dir('')) { $this->mkdir(''); } } - public function constructUrl($path){ - if(substr($path,-1)=='/'){ + public function constructUrl($path) { + if(substr($path,-1)=='/') { $path=substr($path,0,-1); } return 'smb://'.$this->user.':'.$this->password.'@'.$this->host.$this->share.$this->root.$path; } - public function stat($path){ - if(!$path and $this->root=='/'){//mtime doesn't work for shares + public function stat($path) { + if(!$path and $this->root=='/') {//mtime doesn't work for shares $mtime=$this->shareMTime(); $stat=stat($this->constructUrl($path)); $stat['mtime']=$mtime; @@ -58,7 +58,7 @@ class OC_FileStorage_SMB extends OC_FileStorage_StreamWrapper{ } } - public function filetype($path){ + public function filetype($path) { return (bool)@$this->opendir($path);//using opendir causes the same amount of requests and caches the content of the folder in one go } @@ -67,8 +67,8 @@ class OC_FileStorage_SMB extends OC_FileStorage_StreamWrapper{ * @param int $time * @return bool */ - public function hasUpdated($path,$time){ - if(!$path and $this->root=='/'){ + public function hasUpdated($path,$time) { + if(!$path and $this->root=='/') { //mtime doesn't work for shares, but giving the nature of the backend, doing a full update is still just fast enough return true; }else{ @@ -80,13 +80,13 @@ class OC_FileStorage_SMB extends OC_FileStorage_StreamWrapper{ /** * get the best guess for the modification time of the share */ - private function shareMTime(){ + private function shareMTime() { $dh=$this->opendir(''); $lastCtime=0; - while($file=readdir($dh)){ - if($file!='.' and $file!='..'){ + while($file=readdir($dh)) { + if($file!='.' and $file!='..') { $ctime=$this->filemtime($file); - if($ctime>$lastCtime){ + if($ctime>$lastCtime) { $lastCtime=$ctime; } } diff --git a/apps/files_external/lib/streamwrapper.php b/apps/files_external/lib/streamwrapper.php index 467c5a5b845..7263ef23253 100644 --- a/apps/files_external/lib/streamwrapper.php +++ b/apps/files_external/lib/streamwrapper.php @@ -10,12 +10,12 @@ abstract class OC_FileStorage_StreamWrapper extends OC_Filestorage_Common{ abstract public function constructUrl($path); - public function mkdir($path){ + public function mkdir($path) { return mkdir($this->constructUrl($path)); } - public function rmdir($path){ - if($this->file_exists($path)){ + public function rmdir($path) { + if($this->file_exists($path)) { $succes=rmdir($this->constructUrl($path)); clearstatcache(); return $succes; @@ -24,42 +24,42 @@ abstract class OC_FileStorage_StreamWrapper extends OC_Filestorage_Common{ } } - public function opendir($path){ + public function opendir($path) { return opendir($this->constructUrl($path)); } - public function filetype($path){ + public function filetype($path) { return filetype($this->constructUrl($path)); } - public function isReadable($path){ + public function isReadable($path) { return true;//not properly supported } - public function isUpdatable($path){ + public function isUpdatable($path) { return true;//not properly supported } - public function file_exists($path){ + public function file_exists($path) { return file_exists($this->constructUrl($path)); } - public function unlink($path){ + public function unlink($path) { $succes=unlink($this->constructUrl($path)); clearstatcache(); return $succes; } - public function fopen($path,$mode){ + public function fopen($path,$mode) { return fopen($this->constructUrl($path),$mode); } - public function free_space($path){ + public function free_space($path) { return 0; } - public function touch($path,$mtime=null){ - if(is_null($mtime)){ + public function touch($path,$mtime=null) { + if(is_null($mtime)) { $fh=$this->fopen($path,'a'); fwrite($fh,''); fclose($fh); @@ -68,19 +68,19 @@ abstract class OC_FileStorage_StreamWrapper extends OC_Filestorage_Common{ } } - public function getFile($path,$target){ + public function getFile($path,$target) { return copy($this->constructUrl($path),$target); } - public function uploadFile($path,$target){ + public function uploadFile($path,$target) { return copy($path,$this->constructUrl($target)); } - public function rename($path1,$path2){ + public function rename($path1,$path2) { return rename($this->constructUrl($path1),$this->constructUrl($path2)); } - public function stat($path){ + public function stat($path) { return stat($this->constructUrl($path)); } diff --git a/apps/files_external/lib/swift.php b/apps/files_external/lib/swift.php index 9a4b5c6dd2b..c29d28b44c1 100644 --- a/apps/files_external/lib/swift.php +++ b/apps/files_external/lib/swift.php @@ -38,7 +38,7 @@ class OC_FileStorage_SWIFT extends OC_Filestorage_Common{ * @param string path * @return string */ - private function getContainerName($path){ + private function getContainerName($path) { $path=trim($this->root.$path,'/'); return str_replace('/','\\',$path); } @@ -48,18 +48,18 @@ class OC_FileStorage_SWIFT extends OC_Filestorage_Common{ * @param string path * @return CF_Container */ - private function getContainer($path){ - if($path=='' or $path=='/'){ + private function getContainer($path) { + if($path=='' or $path=='/') { return $this->rootContainer; } - if(isset($this->containers[$path])){ + if(isset($this->containers[$path])) { return $this->containers[$path]; } try{ $container=$this->conn->get_container($this->getContainerName($path)); $this->containers[$path]=$container; return $container; - }catch(NoSuchContainerException $e){ + }catch(NoSuchContainerException $e) { return null; } } @@ -69,15 +69,15 @@ class OC_FileStorage_SWIFT extends OC_Filestorage_Common{ * @param string path * @return CF_Container */ - private function createContainer($path){ - if($path=='' or $path=='/'){ + private function createContainer($path) { + if($path=='' or $path=='/') { return $this->conn->create_container($this->getContainerName($path)); } $parent=dirname($path); - if($parent=='' or $parent=='/'){ + if($parent=='' or $parent=='/') { $parentContainer=$this->rootContainer; }else{ - if(!$this->containerExists($parent)){ + if(!$this->containerExists($parent)) { $parentContainer=$this->createContainer($parent); }else{ $parentContainer=$this->getContainer($parent); @@ -92,19 +92,19 @@ class OC_FileStorage_SWIFT extends OC_Filestorage_Common{ * @param string path * @return CF_Object */ - private function getObject($path){ - if(isset($this->objects[$path])){ + private function getObject($path) { + if(isset($this->objects[$path])) { return $this->objects[$path]; } $container=$this->getContainer(dirname($path)); - if(is_null($container)){ + if(is_null($container)) { return null; }else{ try{ $obj=$container->get_object(basename($path)); $this->objects[$path]=$obj; return $obj; - }catch(NoSuchObjectException $e){ + }catch(NoSuchObjectException $e) { return null; } } @@ -115,12 +115,12 @@ class OC_FileStorage_SWIFT extends OC_Filestorage_Common{ * @param CF_Container * @return array */ - private function getObjects($container){ - if(is_null($container)){ + private function getObjects($container) { + if(is_null($container)) { return array(); }else{ $files=$container->get_objects(); - foreach($files as &$file){ + foreach($files as &$file) { $file=$file->name; } return $files; @@ -132,9 +132,9 @@ class OC_FileStorage_SWIFT extends OC_Filestorage_Common{ * @param string path * @return CF_Object */ - private function createObject($path){ + private function createObject($path) { $container=$this->getContainer(dirname($path)); - if(!is_null($container)){ + if(!is_null($container)) { $container=$this->createContainer($path); } return $container->create_object(basename($path)); @@ -145,7 +145,7 @@ class OC_FileStorage_SWIFT extends OC_Filestorage_Common{ * @param string * @return bool */ - private function objectExists($path){ + private function objectExists($path) { return !is_null($this->getObject($path)); } @@ -154,7 +154,7 @@ class OC_FileStorage_SWIFT extends OC_Filestorage_Common{ * @param string path * @return bool */ - private function containerExists($path){ + private function containerExists($path) { return !is_null($this->getContainer($path)); } @@ -163,18 +163,18 @@ class OC_FileStorage_SWIFT extends OC_Filestorage_Common{ * @param CF_Container container * @return array */ - private function getSubContainers($container){ + private function getSubContainers($container) { $tmpFile=OCP\Files::tmpFile(); $obj=$this->getSubContainerFile($container); try{ $obj->save_to_filename($tmpFile); - }catch(Exception $e){ + }catch(Exception $e) { return array(); } $obj->save_to_filename($tmpFile); $containers=file($tmpFile); unlink($tmpFile); - foreach($containers as &$sub){ + foreach($containers as &$sub) { $sub=trim($sub); } return $containers; @@ -186,8 +186,8 @@ class OC_FileStorage_SWIFT extends OC_Filestorage_Common{ * @param string name * @return bool */ - private function addSubContainer($container,$name){ - if(!$name){ + private function addSubContainer($container,$name) { + if(!$name) { return false; } $tmpFile=OCP\Files::tmpFile(); @@ -195,17 +195,17 @@ class OC_FileStorage_SWIFT extends OC_Filestorage_Common{ try{ $obj->save_to_filename($tmpFile); $containers=file($tmpFile); - foreach($containers as &$sub){ + foreach($containers as &$sub) { $sub=trim($sub); } - if(array_search($name,$containers)!==false){ + if(array_search($name,$containers)!==false) { unlink($tmpFile); return false; }else{ $fh=fopen($tmpFile,'a'); fwrite($fh,$name."\n"); } - }catch(Exception $e){ + }catch(Exception $e) { $containers=array(); file_put_contents($tmpFile,$name."\n"); } @@ -221,8 +221,8 @@ class OC_FileStorage_SWIFT extends OC_Filestorage_Common{ * @param string name * @return bool */ - private function removeSubContainer($container,$name){ - if(!$name){ + private function removeSubContainer($container,$name) { + if(!$name) { return false; } $tmpFile=OCP\Files::tmpFile(); @@ -230,14 +230,14 @@ class OC_FileStorage_SWIFT extends OC_Filestorage_Common{ try{ $obj->save_to_filename($tmpFile); $containers=file($tmpFile); - }catch(Exception $e){ + }catch(Exception $e) { return false; } - foreach($containers as &$sub){ + foreach($containers as &$sub) { $sub=trim($sub); } $i=array_search($name,$containers); - if($i===false){ + if($i===false) { unlink($tmpFile); return false; }else{ @@ -255,21 +255,21 @@ class OC_FileStorage_SWIFT extends OC_Filestorage_Common{ * @param CF_Container container * @return CF_Object */ - private function getSubContainerFile($container){ + private function getSubContainerFile($container) { try{ return $container->get_object(self::SUBCONTAINER_FILE); - }catch(NoSuchObjectException $e){ + }catch(NoSuchObjectException $e) { return $container->create_object(self::SUBCONTAINER_FILE); } } - public function __construct($params){ + public function __construct($params) { $this->token=$params['token']; $this->host=$params['host']; $this->user=$params['user']; $this->root=isset($params['root'])?$params['root']:'/'; $this->secure=isset($params['secure'])?(bool)$params['secure']:true; - if(!$this->root || $this->root[0]!='/'){ + if(!$this->root || $this->root[0]!='/') { $this->root='/'.$this->root; } $this->auth = new CF_Authentication($this->user, $this->token, null, $this->host); @@ -277,7 +277,7 @@ class OC_FileStorage_SWIFT extends OC_Filestorage_Common{ $this->conn = new CF_Connection($this->auth); - if(!$this->containerExists($this->root)){ + if(!$this->containerExists($this->root)) { $this->rootContainer=$this->createContainer('/'); }else{ $this->rootContainer=$this->getContainer('/'); @@ -285,8 +285,8 @@ class OC_FileStorage_SWIFT extends OC_Filestorage_Common{ } - public function mkdir($path){ - if($this->containerExists($path)){ + public function mkdir($path) { + if($this->containerExists($path)) { return false; }else{ $this->createContainer($path); @@ -294,12 +294,12 @@ class OC_FileStorage_SWIFT extends OC_Filestorage_Common{ } } - public function rmdir($path){ - if(!$this->containerExists($path)){ + public function rmdir($path) { + if(!$this->containerExists($path)) { return false; }else{ $this->emptyContainer($path); - if($path!='' and $path!='/'){ + if($path!='' and $path!='/') { $parentContainer=$this->getContainer(dirname($path)); $this->removeSubContainer($parentContainer,basename($path)); } @@ -310,14 +310,14 @@ class OC_FileStorage_SWIFT extends OC_Filestorage_Common{ } } - private function emptyContainer($path){ + private function emptyContainer($path) { $container=$this->getContainer($path); - if(is_null($container)){ + if(is_null($container)) { return; } $subContainers=$this->getSubContainers($container); - foreach($subContainers as $sub){ - if($sub){ + foreach($subContainers as $sub) { + if($sub) { $this->emptyContainer($path.'/'.$sub); $this->conn->delete_container($this->getContainerName($path.'/'.$sub)); unset($this->containers[$path.'/'.$sub]); @@ -325,17 +325,17 @@ class OC_FileStorage_SWIFT extends OC_Filestorage_Common{ } $objects=$this->getObjects($container); - foreach($objects as $object){ + foreach($objects as $object) { $container->delete_object($object); unset($this->objects[$path.'/'.$object]); } } - public function opendir($path){ + public function opendir($path) { $container=$this->getContainer($path); $files=$this->getObjects($container); $i=array_search(self::SUBCONTAINER_FILE,$files); - if($i!==false){ + if($i!==false) { unset($files[$i]); } $subContainers=$this->getSubContainers($container); @@ -345,43 +345,43 @@ class OC_FileStorage_SWIFT extends OC_Filestorage_Common{ return opendir('fakedir://'.$id); } - public function filetype($path){ - if($this->containerExists($path)){ + public function filetype($path) { + if($this->containerExists($path)) { return 'dir'; }else{ return 'file'; } } - public function isReadable($path){ + public function isReadable($path) { return true; } - public function isUpdatable($path){ + public function isUpdatable($path) { return true; } - public function file_exists($path){ - if($this->is_dir($path)){ + public function file_exists($path) { + if($this->is_dir($path)) { return true; }else{ return $this->objectExists($path); } } - public function file_get_contents($path){ + public function file_get_contents($path) { $obj=$this->getObject($path); - if(is_null($obj)){ + if(is_null($obj)) { return false; } return $obj->read(); } - public function file_put_contents($path,$content){ + public function file_put_contents($path,$content) { $obj=$this->getObject($path); - if(is_null($obj)){ + if(is_null($obj)) { $container=$this->getContainer(dirname($path)); - if(is_null($container)){ + if(is_null($container)) { return false; } $obj=$container->create_object(basename($path)); @@ -390,8 +390,8 @@ class OC_FileStorage_SWIFT extends OC_Filestorage_Common{ return $obj->write($content); } - public function unlink($path){ - if($this->objectExists($path)){ + public function unlink($path) { + if($this->objectExists($path)) { $container=$this->getContainer(dirname($path)); $container->delete_object(basename($path)); unset($this->objects[$path]); @@ -400,12 +400,12 @@ class OC_FileStorage_SWIFT extends OC_Filestorage_Common{ } } - public function fopen($path,$mode){ + public function fopen($path,$mode) { $obj=$this->getObject($path); - if(is_null($obj)){ + if(is_null($obj)) { return false; } - switch($mode){ + switch($mode) { case 'r': case 'rb': $fp = fopen('php://temp', 'r+'); @@ -432,23 +432,23 @@ class OC_FileStorage_SWIFT extends OC_Filestorage_Common{ } } - public function writeBack($tmpFile){ - if(isset(self::$tempFiles[$tmpFile])){ + public function writeBack($tmpFile) { + if(isset(self::$tempFiles[$tmpFile])) { $this->fromTmpFile($tmpFile,self::$tempFiles[$tmpFile]); unlink($tmpFile); } } - public function free_space($path){ + public function free_space($path) { return 0; } - public function touch($path,$mtime=null){ + public function touch($path,$mtime=null) { $obj=$this->getObject($path); - if(is_null($obj)){ + if(is_null($obj)) { return false; } - if(is_null($mtime)){ + if(is_null($mtime)) { $mtime=time(); } @@ -457,36 +457,36 @@ class OC_FileStorage_SWIFT extends OC_Filestorage_Common{ $obj->sync_metadata(); } - public function rename($path1,$path2){ + public function rename($path1,$path2) { $sourceContainer=$this->getContainer(dirname($path1)); $targetContainer=$this->getContainer(dirname($path2)); $result=$sourceContainer->move_object_to(basename($path1),$targetContainer,basename($path2)); unset($this->objects[$path1]); - if($result){ + if($result) { $targetObj=$this->getObject($path2); $this->resetMTime($targetObj); } return $result; } - public function copy($path1,$path2){ + public function copy($path1,$path2) { $sourceContainer=$this->getContainer(dirname($path1)); $targetContainer=$this->getContainer(dirname($path2)); $result=$sourceContainer->copy_object_to(basename($path1),$targetContainer,basename($path2)); - if($result){ + if($result) { $targetObj=$this->getObject($path2); $this->resetMTime($targetObj); } return $result; } - public function stat($path){ + public function stat($path) { $obj=$this->getObject($path); - if(is_null($obj)){ + if(is_null($obj)) { return false; } - if(isset($obj->metadata['Mtime']) and $obj->metadata['Mtime']>-1){ + if(isset($obj->metadata['Mtime']) and $obj->metadata['Mtime']>-1) { $mtime=$obj->metadata['Mtime']; }else{ $mtime=strtotime($obj->last_modified); @@ -498,9 +498,9 @@ class OC_FileStorage_SWIFT extends OC_Filestorage_Common{ ); } - private function getTmpFile($path){ + private function getTmpFile($path) { $obj=$this->getObject($path); - if(!is_null($obj)){ + if(!is_null($obj)) { $tmpFile=OCP\Files::tmpFile(); $obj->save_to_filename($tmpFile); return $tmpFile; @@ -509,9 +509,9 @@ class OC_FileStorage_SWIFT extends OC_Filestorage_Common{ } } - private function fromTmpFile($tmpFile,$path){ + private function fromTmpFile($tmpFile,$path) { $obj=$this->getObject($path); - if(is_null($obj)){ + if(is_null($obj)) { $obj=$this->createObject($path); } $obj->load_from_filename($tmpFile); @@ -522,8 +522,8 @@ class OC_FileStorage_SWIFT extends OC_Filestorage_Common{ * remove custom mtime metadata * @param CF_Object obj */ - private function resetMTime($obj){ - if(isset($obj->metadata['Mtime'])){ + private function resetMTime($obj) { + if(isset($obj->metadata['Mtime'])) { $obj->metadata['Mtime']=-1; $obj->sync_metadata(); } diff --git a/apps/files_external/lib/webdav.php b/apps/files_external/lib/webdav.php index 1b9c3e3333b..3c18b227fa6 100644 --- a/apps/files_external/lib/webdav.php +++ b/apps/files_external/lib/webdav.php @@ -19,7 +19,7 @@ class OC_FileStorage_DAV extends OC_Filestorage_Common{ private static $tempFiles=array(); - public function __construct($params){ + public function __construct($params) { $host = $params['host']; //remove leading http[s], will be generated in createBaseUri() if (substr($host,0,8) == "https://") $host = substr($host, 8); @@ -29,10 +29,10 @@ class OC_FileStorage_DAV extends OC_Filestorage_Common{ $this->password=$params['password']; $this->secure=(isset($params['secure']) && $params['secure'] == 'true')?true:false; $this->root=isset($params['root'])?$params['root']:'/'; - if(!$this->root || $this->root[0]!='/'){ + if(!$this->root || $this->root[0]!='/') { $this->root='/'.$this->root; } - if(substr($this->root,-1,1)!='/'){ + if(substr($this->root,-1,1)!='/') { $this->root.='/'; } @@ -54,26 +54,26 @@ class OC_FileStorage_DAV extends OC_Filestorage_Common{ $this->mkdir(''); } - private function createBaseUri(){ + private function createBaseUri() { $baseUri='http'; - if($this->secure){ + if($this->secure) { $baseUri.='s'; } $baseUri.='://'.$this->host.$this->root; return $baseUri; } - public function mkdir($path){ + public function mkdir($path) { $path=$this->cleanPath($path); return $this->simpleResponse('MKCOL',$path,null,201); } - public function rmdir($path){ + public function rmdir($path) { $path=$this->cleanPath($path); return $this->simpleResponse('DELETE',$path,null,204); } - public function opendir($path){ + public function opendir($path) { $path=$this->cleanPath($path); try{ $response=$this->client->propfind($path, array(),1); @@ -81,54 +81,54 @@ class OC_FileStorage_DAV extends OC_Filestorage_Common{ OC_FakeDirStream::$dirs[$id]=array(); $files=array_keys($response); array_shift($files);//the first entry is the current directory - foreach($files as $file){ + foreach($files as $file) { $file = urldecode(basename($file)); OC_FakeDirStream::$dirs[$id][]=$file; } return opendir('fakedir://'.$id); - }catch(Exception $e){ + }catch(Exception $e) { return false; } } - public function filetype($path){ + public function filetype($path) { $path=$this->cleanPath($path); try{ $response=$this->client->propfind($path, array('{DAV:}resourcetype')); $responseType=$response["{DAV:}resourcetype"]->resourceType; return (count($responseType)>0 and $responseType[0]=="{DAV:}collection")?'dir':'file'; - }catch(Exception $e){ + }catch(Exception $e) { error_log($e->getMessage()); \OCP\Util::writeLog("webdav client", \OCP\Util::sanitizeHTML($e->getMessage()), \OCP\Util::ERROR); return false; } } - public function isReadable($path){ + public function isReadable($path) { return true;//not properly supported } - public function isUpdatable($path){ + public function isUpdatable($path) { return true;//not properly supported } - public function file_exists($path){ + public function file_exists($path) { $path=$this->cleanPath($path); try{ $this->client->propfind($path, array('{DAV:}resourcetype')); return true;//no 404 exception - }catch(Exception $e){ + }catch(Exception $e) { return false; } } - public function unlink($path){ + public function unlink($path) { return $this->simpleResponse('DELETE',$path,null,204); } - public function fopen($path,$mode){ + public function fopen($path,$mode) { $path=$this->cleanPath($path); - switch($mode){ + switch($mode) { case 'r': case 'rb': //straight up curl instead of sabredav here, sabredav put's the entire get result in memory @@ -155,14 +155,14 @@ class OC_FileStorage_DAV extends OC_Filestorage_Common{ case 'c': case 'c+': //emulate these - if(strrpos($path,'.')!==false){ + if(strrpos($path,'.')!==false) { $ext=substr($path,strrpos($path,'.')); }else{ $ext=''; } $tmpFile=OCP\Files::tmpFile($ext); OC_CloseStreamWrapper::$callBacks[$tmpFile]=array($this,'writeBack'); - if($this->file_exists($path)){ + if($this->file_exists($path)) { $this->getFile($path,$tmpFile); } self::$tempFiles[$tmpFile]=$path; @@ -170,41 +170,41 @@ class OC_FileStorage_DAV extends OC_Filestorage_Common{ } } - public function writeBack($tmpFile){ - if(isset(self::$tempFiles[$tmpFile])){ + public function writeBack($tmpFile) { + if(isset(self::$tempFiles[$tmpFile])) { $this->uploadFile($tmpFile,self::$tempFiles[$tmpFile]); unlink($tmpFile); } } - public function free_space($path){ + public function free_space($path) { $path=$this->cleanPath($path); try{ $response=$this->client->propfind($path, array('{DAV:}quota-available-bytes')); - if(isset($response['{DAV:}quota-available-bytes'])){ + if(isset($response['{DAV:}quota-available-bytes'])) { return (int)$response['{DAV:}quota-available-bytes']; }else{ return 0; } - }catch(Exception $e){ + }catch(Exception $e) { return 0; } } - public function touch($path,$mtime=null){ - if(is_null($mtime)){ + public function touch($path,$mtime=null) { + if(is_null($mtime)) { $mtime=time(); } $path=$this->cleanPath($path); $this->client->proppatch($path, array('{DAV:}lastmodified' => $mtime)); } - public function getFile($path,$target){ + public function getFile($path,$target) { $source=$this->fopen($path,'r'); file_put_contents($target,$source); } - public function uploadFile($path,$target){ + public function uploadFile($path,$target) { $source=fopen($path,'r'); $curl = curl_init(); @@ -218,13 +218,13 @@ class OC_FileStorage_DAV extends OC_Filestorage_Common{ curl_close ($curl); } - public function rename($path1,$path2){ + public function rename($path1,$path2) { $path1=$this->cleanPath($path1); $path2=$this->root.$this->cleanPath($path2); try{ $response=$this->client->request('MOVE',$path1,null,array('Destination'=>$path2)); return true; - }catch(Exception $e){ + }catch(Exception $e) { echo $e; echo 'fail'; var_dump($response); @@ -232,13 +232,13 @@ class OC_FileStorage_DAV extends OC_Filestorage_Common{ } } - public function copy($path1,$path2){ + public function copy($path1,$path2) { $path1=$this->cleanPath($path1); $path2=$this->root.$this->cleanPath($path2); try{ $response=$this->client->request('COPY',$path1,null,array('Destination'=>$path2)); return true; - }catch(Exception $e){ + }catch(Exception $e) { echo $e; echo 'fail'; var_dump($response); @@ -246,7 +246,7 @@ class OC_FileStorage_DAV extends OC_Filestorage_Common{ } } - public function stat($path){ + public function stat($path) { $path=$this->cleanPath($path); try{ $response=$this->client->propfind($path, array('{DAV:}getlastmodified','{DAV:}getcontentlength')); @@ -255,43 +255,43 @@ class OC_FileStorage_DAV extends OC_Filestorage_Common{ 'size'=>(int)isset($response['{DAV:}getcontentlength']) ? $response['{DAV:}getcontentlength'] : 0, 'ctime'=>-1, ); - }catch(Exception $e){ + }catch(Exception $e) { return array(); } } - public function getMimeType($path){ + public function getMimeType($path) { $path=$this->cleanPath($path); try{ $response=$this->client->propfind($path, array('{DAV:}getcontenttype','{DAV:}resourcetype')); $responseType=$response["{DAV:}resourcetype"]->resourceType; $type=(count($responseType)>0 and $responseType[0]=="{DAV:}collection")?'dir':'file'; - if($type=='dir'){ + if($type=='dir') { return 'httpd/unix-directory'; - }elseif(isset($response['{DAV:}getcontenttype'])){ + }elseif(isset($response['{DAV:}getcontenttype'])) { return $response['{DAV:}getcontenttype']; }else{ return false; } - }catch(Exception $e){ + }catch(Exception $e) { return false; } } - private function cleanPath($path){ - if(!$path || $path[0]=='/'){ + private function cleanPath($path) { + if(!$path || $path[0]=='/') { return substr($path,1); }else{ return $path; } } - private function simpleResponse($method,$path,$body,$expected){ + private function simpleResponse($method,$path,$body,$expected) { $path=$this->cleanPath($path); try{ $response=$this->client->request($method,$path,$body); return $response['statusCode']==$expected; - }catch(Exception $e){ + }catch(Exception $e) { return false; } } diff --git a/apps/files_external/tests/ftp.php b/apps/files_external/tests/ftp.php index 3548880e834..12f3ec3908d 100644 --- a/apps/files_external/tests/ftp.php +++ b/apps/files_external/tests/ftp.php @@ -7,21 +7,21 @@ */ $config=include('apps/files_external/tests/config.php'); -if(!is_array($config) or !isset($config['ftp']) or !$config['ftp']['run']){ +if(!is_array($config) or !isset($config['ftp']) or !$config['ftp']['run']) { abstract class Test_Filestorage_FTP extends Test_FileStorage{} return; }else{ class Test_Filestorage_FTP extends Test_FileStorage { private $config; - public function setUp(){ + public function setUp() { $id=uniqid(); $this->config=include('apps/files_external/tests/config.php'); $this->config['ftp']['root'].='/'.$id;//make sure we have an new empty folder to work in $this->instance=new OC_Filestorage_FTP($this->config['ftp']); } - public function tearDown(){ + public function tearDown() { OCP\Files::rmdirr($this->instance->constructUrl('')); } } diff --git a/apps/files_external/tests/google.php b/apps/files_external/tests/google.php index b0bd9cbbeaf..d2a6358ade4 100644 --- a/apps/files_external/tests/google.php +++ b/apps/files_external/tests/google.php @@ -21,7 +21,7 @@ */ $config=include('apps/files_external/tests/config.php'); -if(!is_array($config) or !isset($config['google']) or !$config['google']['run']){ +if(!is_array($config) or !isset($config['google']) or !$config['google']['run']) { abstract class Test_Filestorage_Google extends Test_FileStorage{} return; }else{ @@ -29,14 +29,14 @@ if(!is_array($config) or !isset($config['google']) or !$config['google']['run']) private $config; - public function setUp(){ + public function setUp() { $id=uniqid(); $this->config=include('apps/files_external/tests/config.php'); $this->config['google']['root'].='/'.$id;//make sure we have an new empty folder to work in $this->instance=new OC_Filestorage_Google($this->config['google']); } - public function tearDown(){ + public function tearDown() { $this->instance->rmdir('/'); } } diff --git a/apps/files_external/tests/smb.php b/apps/files_external/tests/smb.php index 001ef842276..7de4fddbb34 100644 --- a/apps/files_external/tests/smb.php +++ b/apps/files_external/tests/smb.php @@ -8,21 +8,21 @@ $config=include('apps/files_external/tests/config.php'); -if(!is_array($config) or !isset($config['smb']) or !$config['smb']['run']){ +if(!is_array($config) or !isset($config['smb']) or !$config['smb']['run']) { abstract class Test_Filestorage_SMB extends Test_FileStorage{} return; }else{ class Test_Filestorage_SMB extends Test_FileStorage { private $config; - public function setUp(){ + public function setUp() { $id=uniqid(); $this->config=include('apps/files_external/tests/config.php'); $this->config['smb']['root'].=$id;//make sure we have an new empty folder to work in $this->instance=new OC_Filestorage_SMB($this->config['smb']); } - public function tearDown(){ + public function tearDown() { OCP\Files::rmdirr($this->instance->constructUrl('')); } } diff --git a/apps/files_external/tests/swift.php b/apps/files_external/tests/swift.php index bfe7b77aac5..a6f5eace1c8 100644 --- a/apps/files_external/tests/swift.php +++ b/apps/files_external/tests/swift.php @@ -7,14 +7,14 @@ */ $config=include('apps/files_external/tests/config.php'); -if(!is_array($config) or !isset($config['swift']) or !$config['swift']['run']){ +if(!is_array($config) or !isset($config['swift']) or !$config['swift']['run']) { abstract class Test_Filestorage_SWIFT extends Test_FileStorage{} return; }else{ class Test_Filestorage_SWIFT extends Test_FileStorage { private $config; - public function setUp(){ + public function setUp() { $id=uniqid(); $this->config=include('apps/files_external/tests/config.php'); $this->config['swift']['root'].='/'.$id;//make sure we have an new empty folder to work in @@ -22,7 +22,7 @@ if(!is_array($config) or !isset($config['swift']) or !$config['swift']['run']){ } - public function tearDown(){ + public function tearDown() { $this->instance->rmdir(''); } diff --git a/apps/files_external/tests/webdav.php b/apps/files_external/tests/webdav.php index 49c44124f3c..74d980aa3f1 100644 --- a/apps/files_external/tests/webdav.php +++ b/apps/files_external/tests/webdav.php @@ -7,21 +7,21 @@ */ $config=include('apps/files_external/tests/config.php'); -if(!is_array($config) or !isset($config['webdav']) or !$config['webdav']['run']){ +if(!is_array($config) or !isset($config['webdav']) or !$config['webdav']['run']) { abstract class Test_Filestorage_DAV extends Test_FileStorage{} return; }else{ class Test_Filestorage_DAV extends Test_FileStorage { private $config; - public function setUp(){ + public function setUp() { $id=uniqid(); $this->config=include('apps/files_external/tests/config.php'); $this->config['webdav']['root'].='/'.$id;//make sure we have an new empty folder to work in $this->instance=new OC_Filestorage_DAV($this->config['webdav']); } - public function tearDown(){ + public function tearDown() { $this->instance->rmdir('/'); } } diff --git a/apps/files_sharing/lib/sharedstorage.php b/apps/files_sharing/lib/sharedstorage.php index 4530ce87777..6dba76955a0 100644 --- a/apps/files_sharing/lib/sharedstorage.php +++ b/apps/files_sharing/lib/sharedstorage.php @@ -443,7 +443,7 @@ class OC_Filestorage_Shared extends OC_Filestorage_Common { * @param int $time * @return bool */ - public function hasUpdated($path,$time){ + public function hasUpdated($path,$time) { //TODO return false; } diff --git a/apps/files_versions/ajax/expireAll.php b/apps/files_versions/ajax/expireAll.php index f76da3da986..5c95885ffbd 100644 --- a/apps/files_versions/ajax/expireAll.php +++ b/apps/files_versions/ajax/expireAll.php @@ -31,7 +31,7 @@ OCP\JSON::callCheck(); $versions = new OCA_Versions\Storage(); -if( $versions->expireAll() ){ +if( $versions->expireAll() ) { OCP\JSON::success(); die(); diff --git a/apps/files_versions/ajax/rollbackVersion.php b/apps/files_versions/ajax/rollbackVersion.php index 24d71a914a4..f1b02eb4b92 100644 --- a/apps/files_versions/ajax/rollbackVersion.php +++ b/apps/files_versions/ajax/rollbackVersion.php @@ -9,7 +9,7 @@ $file = $_GET['file']; $revision=(int)$_GET['revision']; if( OCA_Versions\Storage::isversioned( $file ) ) { - if(OCA_Versions\Storage::rollback( $file, $revision )){ + if(OCA_Versions\Storage::rollback( $file, $revision )) { OCP\JSON::success(array("data" => array( "revision" => $revision, "file" => $file ))); }else{ OCP\JSON::error(array("data" => array( "message" => "Could not revert:" . $file ))); diff --git a/apps/files_versions/lib/hooks.php b/apps/files_versions/lib/hooks.php index 330f10afb59..9ec0b01a7f9 100644 --- a/apps/files_versions/lib/hooks.php +++ b/apps/files_versions/lib/hooks.php @@ -44,7 +44,7 @@ class Hooks { $abs_path = \OCP\Config::getSystemValue('datadirectory').$versions_fileview->getAbsolutePath('').$rel_path.'.v'; if(Storage::isversioned($rel_path)) { $versions = Storage::getVersions($rel_path); - foreach ($versions as $v){ + foreach ($versions as $v) { unlink($abs_path . $v['version']); } } @@ -66,7 +66,7 @@ class Hooks { $info=pathinfo($abs_newpath); if(!file_exists($info['dirname'])) mkdir($info['dirname'],0700,true); $versions = Storage::getVersions($rel_oldpath); - foreach ($versions as $v){ + foreach ($versions as $v) { rename($abs_oldpath.$v['version'], $abs_newpath.$v['version']); } } diff --git a/apps/files_versions/lib/versions.php b/apps/files_versions/lib/versions.php index 4ea1a07b942..dedd83fc25a 100644 --- a/apps/files_versions/lib/versions.php +++ b/apps/files_versions/lib/versions.php @@ -82,7 +82,7 @@ class Storage { } // check if filename is a directory - if($files_view->is_dir($filename)){ + if($files_view->is_dir($filename)) { return false; } @@ -97,7 +97,7 @@ class Storage { } // check filesize - if($files_view->filesize($filename)>\OCP\Config::getSystemValue('files_versionsmaxfilesize', Storage::DEFAULTMAXFILESIZE)){ + if($files_view->filesize($filename)>\OCP\Config::getSystemValue('files_versionsmaxfilesize', Storage::DEFAULTMAXFILESIZE)) { return false; } @@ -107,7 +107,7 @@ class Storage { $matches=glob($versionsFolderName.'/'.$filename.'.v*'); sort($matches); $parts=explode('.v',end($matches)); - if((end($parts)+Storage::DEFAULTMININTERVAL)>time()){ + if((end($parts)+Storage::DEFAULTMININTERVAL)>time()) { return false; } } @@ -175,7 +175,7 @@ class Storage { // check for old versions $matches=glob($versionsFolderName.$filename.'.v*'); - if(count($matches)>0){ + if(count($matches)>0) { return true; }else{ return false; diff --git a/apps/user_ldap/appinfo/install.php b/apps/user_ldap/appinfo/install.php index 9efc3bb24d2..378957ec409 100644 --- a/apps/user_ldap/appinfo/install.php +++ b/apps/user_ldap/appinfo/install.php @@ -1,6 +1,6 @@ connection->isCached('groupExists'.$gid)) { return $this->connection->getFromCache('groupExists'.$gid); } diff --git a/apps/user_ldap/settings.php b/apps/user_ldap/settings.php index 23018890eac..f765151456a 100644 --- a/apps/user_ldap/settings.php +++ b/apps/user_ldap/settings.php @@ -26,8 +26,8 @@ OCP\Util::addscript('user_ldap', 'settings'); OCP\Util::addstyle('user_ldap', 'settings'); if ($_POST) { - foreach($params as $param){ - if(isset($_POST[$param])){ + foreach($params as $param) { + if(isset($_POST[$param])) { if('ldap_agent_password' == $param) { OCP\Config::setAppValue('user_ldap', $param, base64_encode($_POST[$param])); } elseif('ldap_cache_ttl' == $param) { @@ -58,7 +58,7 @@ if ($_POST) { // fill template $tmpl = new OCP\Template( 'user_ldap', 'settings'); -foreach($params as $param){ +foreach($params as $param) { $value = OCP\Config::getAppValue('user_ldap', $param,''); $tmpl->assign($param, $value); } diff --git a/apps/user_ldap/tests/group_ldap.php b/apps/user_ldap/tests/group_ldap.php index ac66a608b76..b953127d86e 100644 --- a/apps/user_ldap/tests/group_ldap.php +++ b/apps/user_ldap/tests/group_ldap.php @@ -21,11 +21,11 @@ */ class Test_Group_Ldap extends UnitTestCase { - function setUp(){ + function setUp() { OC_Group::clearBackends(); } - function testSingleBackend(){ + function testSingleBackend() { OC_Group::useBackend(new OCA\user_ldap\GROUP_LDAP()); $group_ldap = new OCA\user_ldap\GROUP_LDAP(); diff --git a/apps/user_ldap/user_ldap.php b/apps/user_ldap/user_ldap.php index d297374600a..bacdb8b9ae1 100644 --- a/apps/user_ldap/user_ldap.php +++ b/apps/user_ldap/user_ldap.php @@ -65,7 +65,7 @@ class USER_LDAP extends lib\Access implements \OCP\UserInterface { * * Check if the password is correct without logging in the user */ - public function checkPassword($uid, $password){ + public function checkPassword($uid, $password) { //find out dn of the user name $filter = \OCP\Util::mb_str_replace('%uid', $uid, $this->connection->ldapLoginFilter, 'UTF-8'); $ldap_users = $this->fetchListOfUsers($filter, 'dn'); @@ -82,7 +82,7 @@ class USER_LDAP extends lib\Access implements \OCP\UserInterface { //do we have a username for him/her? $ocname = $this->dn2username($dn); - if($ocname){ + if($ocname) { //update some settings, if necessary $this->updateQuota($dn); $this->updateEmail($dn); @@ -100,7 +100,7 @@ class USER_LDAP extends lib\Access implements \OCP\UserInterface { * * Get a list of all users. */ - public function getUsers($search = '', $limit = 10, $offset = 0){ + public function getUsers($search = '', $limit = 10, $offset = 0) { $ldap_users = $this->connection->getFromCache('getUsers'); if(is_null($ldap_users)) { $ldap_users = $this->fetchListOfUsers($this->connection->ldapUserFilter, array($this->connection->ldapUserDisplayName, 'dn')); @@ -126,7 +126,7 @@ class USER_LDAP extends lib\Access implements \OCP\UserInterface { * @param string $uid the username * @return boolean */ - public function userExists($uid){ + public function userExists($uid) { if($this->connection->isCached('userExists'.$uid)) { return $this->connection->getFromCache('userExists'.$uid); } @@ -187,7 +187,7 @@ class USER_LDAP extends lib\Access implements \OCP\UserInterface { * @param string $uid the username * @return boolean */ - public function getHome($uid){ + public function getHome($uid) { if($this->userExists($uid)) { $homedir = \OCP\Config::getUserValue($uid, 'user_ldap', 'homedir', false); if(!$homedir) { diff --git a/apps/user_webdavauth/settings.php b/apps/user_webdavauth/settings.php index 1b80b1bba34..4f1ddbbefda 100755 --- a/apps/user_webdavauth/settings.php +++ b/apps/user_webdavauth/settings.php @@ -22,9 +22,9 @@ */ print_r($_POST); -if($_POST){ +if($_POST) { - if(isset($_POST['webdav_url'])){ + if(isset($_POST['webdav_url'])) { OC_CONFIG::setValue('user_webdavauth_url', strip_tags($_POST['webdav_url'])); } } diff --git a/apps/user_webdavauth/user_webdavauth.php b/apps/user_webdavauth/user_webdavauth.php index 571aca2f70f..c36d37c1fa2 100755 --- a/apps/user_webdavauth/user_webdavauth.php +++ b/apps/user_webdavauth/user_webdavauth.php @@ -50,7 +50,7 @@ class OC_USER_WEBDAVAUTH extends OC_User_Backend { $url= 'http://'.urlencode($uid).':'.urlencode($password).'@'.$this->webdavauth_url; $headers = get_headers($url); - if($headers==false){ + if($headers==false) { OC_Log::write('OC_USER_WEBDAVAUTH', 'Not possible to connect to WebDAV Url: "'.$this->webdavauth_url.'" ' ,3); return false; @@ -68,14 +68,14 @@ class OC_USER_WEBDAVAUTH extends OC_User_Backend { /* * we don´t know if a user exists without the password. so we have to return false all the time */ - public function userExists( $uid ){ + public function userExists( $uid ) { return false; } /* * we don´t know the users so all we can do it return an empty array here */ - public function getUsers(){ + public function getUsers() { $returnArray = array(); return $returnArray; diff --git a/core/ajax/appconfig.php b/core/ajax/appconfig.php index 3ad9e2326c3..1b43afa74fb 100644 --- a/core/ajax/appconfig.php +++ b/core/ajax/appconfig.php @@ -11,7 +11,7 @@ OCP\JSON::callCheck(); $action=isset($_POST['action'])?$_POST['action']:$_GET['action']; $result=false; -switch($action){ +switch($action) { case 'getValue': $result=OC_Appconfig::getValue($_GET['app'], $_GET['key'], $_GET['defaultValue']); break; diff --git a/core/minimizer.php b/core/minimizer.php index 0abbca75027..4da9037c413 100644 --- a/core/minimizer.php +++ b/core/minimizer.php @@ -3,12 +3,12 @@ session_write_close(); OC_App::loadApps(); -if ($service == 'core.css'){ +if ($service == 'core.css') { $minimizer = new OC_Minimizer_CSS(); $files = OC_TemplateLayout::findStylesheetFiles(OC_Util::$core_styles); $minimizer->output($files, $service); } -else if ($service == 'core.js'){ +else if ($service == 'core.js') { $minimizer = new OC_Minimizer_JS(); $files = OC_TemplateLayout::findJavascriptFiles(OC_Util::$core_scripts); $minimizer->output($files, $service); diff --git a/core/templates/403.php b/core/templates/403.php index cdfef08ac76..fbf0e64fdb6 100644 --- a/core/templates/403.php +++ b/core/templates/403.php @@ -1,5 +1,5 @@ We're sorry, but something went terribly wrong.

Bugtracker, please copy the following informations into the description.