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