diff --git a/3rdparty b/3rdparty
index d59b017922d..3ef9f738a91 160000
--- a/3rdparty
+++ b/3rdparty
@@ -1 +1 @@
-Subproject commit d59b017922d9ac3bf985dee0eb721ec1a901ac72
+Subproject commit 3ef9f738a9107879dddc7d97842cf4d2198fae4c
diff --git a/apps/files/css/files.css b/apps/files/css/files.css
index f788949b1b6..108dcd741c6 100644
--- a/apps/files/css/files.css
+++ b/apps/files/css/files.css
@@ -63,8 +63,12 @@
}
#filestable { position: relative; top:37px; width:100%; }
tbody tr { background-color:#fff; height:2.5em; }
-tbody tr:hover, tbody tr:active, tbody tr.selected { background-color:#f8f8f8; }
-tbody tr.selected { background-color:#eee; }
+tbody tr:hover, tbody tr:active {
+ background-color: rgb(240,240,240);
+}
+tbody tr.selected {
+ background-color: rgb(230,230,230);
+}
tbody a { color:#000; }
span.extension, span.uploading, td.date { color:#999; }
span.extension { text-transform:lowercase; -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=70)"; filter:alpha(opacity=70); opacity:.7; -webkit-transition:opacity 300ms; -moz-transition:opacity 300ms; -o-transition:opacity 300ms; transition:opacity 300ms; }
@@ -81,7 +85,12 @@ table th#headerDate, table td.date { min-width:11em; padding:0 .1em 0 1em; text-
/* Multiselect bar */
#filestable.multiselect { top:63px; }
table.multiselect thead { position:fixed; top:82px; z-index:1; -moz-box-sizing: border-box; box-sizing: border-box; left: 0; padding-left: 64px; width:100%; }
-table.multiselect thead th { background:rgba(230,230,230,.8); color:#000; font-weight:bold; border-bottom:0; }
+table.multiselect thead th {
+ background-color: rgba(210,210,210,.7);
+ color: #000;
+ font-weight: bold;
+ border-bottom: 0;
+}
table.multiselect #headerName { width: 100%; }
table td.selection, table th.selection, table td.fileaction { width:2em; text-align:center; }
table td.filename a.name { display:block; height:1.5em; vertical-align:middle; margin-left:3em; }
@@ -115,10 +124,12 @@ table td.filename form { font-size:.85em; margin-left:3em; margin-right:3em; }
}
#fileList .name { position:relative; /* Firefox needs to explicitly have this default set … */ }
#fileList tr:hover .fileactions { /* background to distinguish when overlaying with file names */
- background:rgba(248,248,248,.9); box-shadow:-5px 0 7px rgba(248,248,248,.9);
+ background-color: rgba(240,240,240,0.898);
+ box-shadow: -5px 0 7px rgba(240,240,240,0.898);
}
#fileList tr.selected:hover .fileactions, #fileList tr.mouseOver .fileactions { /* slightly darker color for selected rows */
- background:rgba(238,238,238,.9); box-shadow:-5px 0 7px rgba(238,238,238,.9);
+ background-color: rgba(230,230,230,.9);
+ box-shadow: -5px 0 7px rgba(230,230,230,.9);
}
#fileList .fileactions a.action img { position:relative; top:.2em; }
#fileList a.action { display:inline; margin:-.5em 0; padding:1em .5em 1em .5em !important; }
diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js
index c24d1fd8244..e19a35bbc5b 100644
--- a/apps/files/js/filelist.js
+++ b/apps/files/js/filelist.js
@@ -51,7 +51,7 @@ var FileList={
}else{
simpleSize=t('files', 'Pending');
}
- var sizeColor = Math.round(200-Math.pow((size/(1024*1024)),2));
+ var sizeColor = Math.round(160-Math.pow((size/(1024*1024)),2));
var lastModifiedTime = Math.round(lastModified.getTime() / 1000);
td = $('
| ').attr({
"class": "filesize",
diff --git a/apps/files/templates/part.list.php b/apps/files/templates/part.list.php
index 1719d25e660..1e94275dcba 100644
--- a/apps/files/templates/part.list.php
+++ b/apps/files/templates/part.list.php
@@ -3,12 +3,12 @@
200) $relative_date_color = 200;
+ if($relative_date_color>160) $relative_date_color = 160;
$name = rawurlencode($file['name']);
$name = str_replace('%2F', '/', $name);
$directory = rawurlencode($file['directory']);
diff --git a/apps/files_encryption/appinfo/app.php b/apps/files_encryption/appinfo/app.php
index 6e68d81ba00..419bef1edef 100644
--- a/apps/files_encryption/appinfo/app.php
+++ b/apps/files_encryption/appinfo/app.php
@@ -10,46 +10,51 @@ OC::$CLASSPATH['OCA\Encryption\Session'] = 'files_encryption/lib/session.php';
OC::$CLASSPATH['OCA\Encryption\Capabilities'] = 'files_encryption/lib/capabilities.php';
OC::$CLASSPATH['OCA\Encryption\Helper'] = 'files_encryption/lib/helper.php';
-OC_FileProxy::register(new OCA\Encryption\Proxy());
+if (!OC_Config::getValue('maintenance', false)) {
+ OC_FileProxy::register(new OCA\Encryption\Proxy());
-// User related hooks
-OCA\Encryption\Helper::registerUserHooks();
+ // User related hooks
+ OCA\Encryption\Helper::registerUserHooks();
-// Sharing related hooks
-OCA\Encryption\Helper::registerShareHooks();
+ // Sharing related hooks
+ OCA\Encryption\Helper::registerShareHooks();
-// Filesystem related hooks
-OCA\Encryption\Helper::registerFilesystemHooks();
+ // Filesystem related hooks
+ OCA\Encryption\Helper::registerFilesystemHooks();
-stream_wrapper_register('crypt', 'OCA\Encryption\Stream');
+ stream_wrapper_register('crypt', 'OCA\Encryption\Stream');
-// check if we are logged in
-if (OCP\User::isLoggedIn()) {
+ // check if we are logged in
+ if (OCP\User::isLoggedIn()) {
- // ensure filesystem is loaded
- if(!\OC\Files\Filesystem::$loaded) {
- \OC_Util::setupFS();
- }
+ // ensure filesystem is loaded
+ if (!\OC\Files\Filesystem::$loaded) {
+ \OC_Util::setupFS();
+ }
- $view = new OC_FilesystemView('/');
- $session = new \OCA\Encryption\Session($view);
+ $view = new OC_FilesystemView('/');
+ $session = new \OCA\Encryption\Session($view);
- $user = \OCP\USER::getUser();
- // check if user has a private key
- if (
- !$view->file_exists('/' . $user . '/files_encryption/' . $user . '.private.key')
- && OCA\Encryption\Crypt::mode() === 'server'
- ) {
+ $user = \OCP\USER::getUser();
+ // check if user has a private key
+ if (
+ !$view->file_exists('/' . $user . '/files_encryption/' . $user . '.private.key')
+ && OCA\Encryption\Crypt::mode() === 'server'
+ ) {
- // Force the user to log-in again if the encryption key isn't unlocked
- // (happens when a user is logged in before the encryption app is
- // enabled)
- OCP\User::logout();
+ // Force the user to log-in again if the encryption key isn't unlocked
+ // (happens when a user is logged in before the encryption app is
+ // enabled)
+ OCP\User::logout();
- header("Location: " . OC::$WEBROOT . '/');
+ header("Location: " . OC::$WEBROOT . '/');
- exit();
+ exit();
+ }
}
+} else {
+ // logout user if we are in maintenance to force re-login
+ OCP\User::logout();
}
// Register settings scripts
diff --git a/apps/files_encryption/hooks/hooks.php b/apps/files_encryption/hooks/hooks.php
index 4434df8f147..7698b95cfd3 100644
--- a/apps/files_encryption/hooks/hooks.php
+++ b/apps/files_encryption/hooks/hooks.php
@@ -72,10 +72,13 @@ class Hooks {
$session->setPrivateKey($privateKey);
// Check if first-run file migration has already been performed
- $migrationCompleted = $util->getMigrationStatus();
+ $ready = false;
+ if ($util->getMigrationStatus() === Util::MIGRATION_OPEN) {
+ $ready = $util->beginMigration();
+ }
// If migration not yet done
- if (!$migrationCompleted) {
+ if ($ready) {
$userView = new \OC_FilesystemView('/' . $params['uid']);
@@ -86,7 +89,7 @@ class Hooks {
&& $encLegacyKey = $userView->file_get_contents('encryption.key')
) {
- $plainLegacyKey = Crypt::legacyBlockDecrypt($encLegacyKey, $params['password']);
+ $plainLegacyKey = Crypt::legacyDecrypt($encLegacyKey, $params['password']);
$session->setLegacyKey($plainLegacyKey);
@@ -107,7 +110,7 @@ class Hooks {
}
// Register successful migration in DB
- $util->setMigrationStatus(1);
+ $util->finishMigration();
}
diff --git a/apps/files_encryption/lib/crypt.php b/apps/files_encryption/lib/crypt.php
index ecbec2e8b2b..cd41390d1c5 100755
--- a/apps/files_encryption/lib/crypt.php
+++ b/apps/files_encryption/lib/crypt.php
@@ -636,7 +636,7 @@ class Crypt {
*
* This function decrypts an content
*/
- private static function legacyDecrypt($content, $passphrase = '') {
+ public static function legacyDecrypt($content, $passphrase = '') {
$bf = self::getBlowfish($passphrase);
@@ -665,28 +665,4 @@ class Crypt {
}
}
- /**
- * @param $legacyEncryptedContent
- * @param $legacyPassphrase
- * @param $publicKeys
- * @return array
- */
- public static function legacyKeyRecryptKeyfile($legacyEncryptedContent, $legacyPassphrase, $publicKeys) {
-
- $decrypted = self::legacyBlockDecrypt($legacyEncryptedContent, $legacyPassphrase);
-
- // Encrypt plain data, generate keyfile & encrypted file
- $cryptedData = self::symmetricEncryptFileContentKeyfile($decrypted);
-
- // Encrypt plain keyfile to multiple sharefiles
- $multiEncrypted = Crypt::multiKeyEncrypt($cryptedData['key'], $publicKeys);
-
- return array(
- 'data' => $cryptedData['encrypted'],
- 'filekey' => $multiEncrypted['data'],
- 'sharekeys' => $multiEncrypted['keys']
- );
-
- }
-
}
\ No newline at end of file
diff --git a/apps/files_encryption/lib/proxy.php b/apps/files_encryption/lib/proxy.php
index 0df34a38bd7..735eba911a9 100644
--- a/apps/files_encryption/lib/proxy.php
+++ b/apps/files_encryption/lib/proxy.php
@@ -256,6 +256,8 @@ class Proxy extends \OC_FileProxy {
*/
public function postFopen($path, &$result) {
+ $path = \OC\Files\Filesystem::normalizePath($path);
+
if (!$result) {
return $result;
diff --git a/apps/files_encryption/lib/util.php b/apps/files_encryption/lib/util.php
index d5a5ce774d2..94defa726a9 100644
--- a/apps/files_encryption/lib/util.php
+++ b/apps/files_encryption/lib/util.php
@@ -96,10 +96,13 @@ class Util {
//// DONE: test new encryption with sharing
//// TODO: test new encryption with proxies
+ const MIGRATION_COMPLETED = 1; // migration to new encryption completed
+ const MIGRATION_IN_PROGRESS = -1; // migration is running
+ const MIGRATION_OPEN = 0; // user still needs to be migrated
+
private $view; // OC_FilesystemView object for filesystem operations
private $userId; // ID of the currently logged-in user
- private $pwd; // User Password
private $client; // Client side encryption mode flag
private $publicKeyDir; // Dir containing all public user keys
private $encryptionDir; // Dir containing user's files_encryption
@@ -728,40 +731,28 @@ class Util {
// Fetch data from file
$legacyData = $this->view->file_get_contents($legacyFile['path']);
- $sharingEnabled = \OCP\Share::isEnabled();
-
- // if file exists try to get sharing users
- if ($this->view->file_exists($legacyFile['path'])) {
- $uniqueUserIds = $this->getSharingUsersArray($sharingEnabled, $legacyFile['path'], $this->userId);
- } else {
- $uniqueUserIds[] = $this->userId;
- }
-
- // Fetch public keys for all users who will share the file
- $publicKeys = Keymanager::getPublicKeys($this->view, $uniqueUserIds);
-
- // Recrypt data, generate catfile
- $recrypted = Crypt::legacyKeyRecryptKeyfile($legacyData, $legacyPassphrase, $publicKeys);
+ // decrypt data, generate catfile
+ $decrypted = Crypt::legacyBlockDecrypt($legacyData, $legacyPassphrase);
$rawPath = $legacyFile['path'];
- $relPath = \OCA\Encryption\Helper::stripUserFilesPath($rawPath);
- // Save keyfile
- Keymanager::setFileKey($this->view, $relPath, $this->userId, $recrypted['filekey']);
+ // enable proxy the ensure encryption is handled
+ \OC_FileProxy::$enabled = true;
+
+ // Open enc file handle for binary writing, with same filename as original plain file
+ $encHandle = $this->view->fopen( $rawPath, 'wb' );
- // Save sharekeys to user folders
- Keymanager::setShareKeys($this->view, $relPath, $recrypted['sharekeys']);
+ if (is_resource($encHandle)) {
- // Overwrite the existing file with the encrypted one
- $this->view->file_put_contents($rawPath, $recrypted['data']);
+ // write data to stream
+ fwrite($encHandle, $decrypted);
- $size = strlen($recrypted['data']);
+ // close stream
+ fclose($encHandle);
+ }
- // Add the file to the cache
- \OC\Files\Filesystem::putFileInfo($rawPath, array(
- 'encrypted' => true,
- 'size' => $size
- ), '');
+ // disable proxy to prevent file being encrypted twice
+ \OC_FileProxy::$enabled = false;
}
}
@@ -1060,36 +1051,56 @@ class Util {
}
/**
- * @brief Set file migration status for user
- * @param $status
- * @return bool
+ * @brief start migration mode to initially encrypt users data
+ * @return boolean
*/
- public function setMigrationStatus($status) {
-
- $sql = 'UPDATE `*PREFIX*encryption` SET `migration_status` = ? WHERE `uid` = ?';
+ public function beginMigration() {
- $args = array(
- $status,
- $this->userId
- );
+ $return = false;
+ $sql = 'UPDATE `*PREFIX*encryption` SET `migration_status` = ? WHERE `uid` = ? and `migration_status` = ?';
+ $args = array(self::MIGRATION_IN_PROGRESS, $this->userId, self::MIGRATION_OPEN);
$query = \OCP\DB::prepare($sql);
+ $result = $query->execute($args);
+ $manipulatedRows = $result->numRows();
- if ($query->execute($args)) {
+ if ($manipulatedRows === 1) {
+ $return = true;
+ \OCP\Util::writeLog('Encryption library', "Start migration to encryption mode for " . $this->userId, \OCP\Util::INFO);
+ } else {
+ \OCP\Util::writeLog('Encryption library', "Could not activate migration mode for " . $this->userId . ". Probably another process already started the initial encryption", \OCP\Util::WARN);
+ }
- return true;
+ return $return;
+ }
- } else {
+ /**
+ * @brief close migration mode after users data has been encrypted successfully
+ * @return boolean
+ */
+ public function finishMigration() {
- return false;
+ $return = false;
+
+ $sql = 'UPDATE `*PREFIX*encryption` SET `migration_status` = ? WHERE `uid` = ? and `migration_status` = ?';
+ $args = array(self::MIGRATION_COMPLETED, $this->userId, self::MIGRATION_IN_PROGRESS);
+ $query = \OCP\DB::prepare($sql);
+ $result = $query->execute($args);
+ $manipulatedRows = $result->numRows();
+ if ($manipulatedRows === 1) {
+ $return = true;
+ \OCP\Util::writeLog('Encryption library', "Finish migration successfully for " . $this->userId, \OCP\Util::INFO);
+ } else {
+ \OCP\Util::writeLog('Encryption library', "Could not deactivate migration mode for " . $this->userId, \OCP\Util::WARN);
}
+ return $return;
}
/**
- * @brief Check whether pwd recovery is enabled for a given user
- * @return bool 1 = yes, 0 = no, false = no record
+ * @brief check if files are already migrated to the encryption system
+ * @return migration status, false = in case of no record
* @note If records are not being returned, check for a hidden space
* at the start of the uid in db
*/
@@ -1118,14 +1129,11 @@ class Util {
// If no record is found
if (empty($migrationStatus)) {
-
+ \OCP\Util::writeLog('Encryption library', "Could not get migration status for " . $this->userId . ", no record found", \OCP\Util::ERROR);
return false;
-
// If a record is found
} else {
-
- return $migrationStatus[0];
-
+ return (int)$migrationStatus[0];
}
}
diff --git a/apps/files_encryption/tests/crypt.php b/apps/files_encryption/tests/crypt.php
index e6ea3bcd6b3..9b97df22d16 100755
--- a/apps/files_encryption/tests/crypt.php
+++ b/apps/files_encryption/tests/crypt.php
@@ -627,24 +627,6 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase {
}
- /**
- * @medium
- * @brief test decryption using legacy blowfish method
- * @depends testLegacyEncryptLong
- */
- function testLegacyKeyRecryptKeyfileEncrypt($crypted) {
-
- $recrypted = Encryption\Crypt::LegacyKeyRecryptKeyfile($crypted, $this->pass, array($this->genPublicKey));
-
- $this->assertNotEquals($this->dataLong, $recrypted['data']);
-
- return $recrypted;
-
- # TODO: search inencrypted text for actual content to ensure it
- # genuine transformation
-
- }
-
/**
* @medium
*/
diff --git a/apps/files_encryption/tests/util.php b/apps/files_encryption/tests/util.php
index 6d6c8bca3dd..cb10befc8e4 100755
--- a/apps/files_encryption/tests/util.php
+++ b/apps/files_encryption/tests/util.php
@@ -75,7 +75,7 @@ class Test_Encryption_Util extends \PHPUnit_Framework_TestCase {
$this->legacyData = realpath(dirname(__FILE__) . '/legacy-text.txt');
$this->legacyEncryptedData = realpath(dirname(__FILE__) . '/legacy-encrypted-text.txt');
$this->legacyEncryptedDataKey = realpath(dirname(__FILE__) . '/encryption.key');
- $this->legacyKey = '30943623843030686906';
+ $this->legacyKey = "30943623843030686906\0\0\0\0";
$keypair = Encryption\Crypt::createKeypair();
@@ -182,8 +182,7 @@ class Test_Encryption_Util extends \PHPUnit_Framework_TestCase {
$params['uid'] = \Test_Encryption_Util::TEST_ENCRYPTION_UTIL_LEGACY_USER;
$params['password'] = \Test_Encryption_Util::TEST_ENCRYPTION_UTIL_LEGACY_USER;
- $util = new Encryption\Util($this->view, \Test_Encryption_Util::TEST_ENCRYPTION_UTIL_LEGACY_USER);
- $util->setMigrationStatus(0);
+ $this->setMigrationStatus(0, \Test_Encryption_Util::TEST_ENCRYPTION_UTIL_LEGACY_USER);
$this->assertTrue(OCA\Encryption\Hooks::login($params));
@@ -285,7 +284,7 @@ class Test_Encryption_Util extends \PHPUnit_Framework_TestCase {
$params['password'] = \Test_Encryption_Util::TEST_ENCRYPTION_UTIL_LEGACY_USER;
$util = new Encryption\Util($this->view, \Test_Encryption_Util::TEST_ENCRYPTION_UTIL_LEGACY_USER);
- $util->setMigrationStatus(0);
+ $this->setMigrationStatus(0, \Test_Encryption_Util::TEST_ENCRYPTION_UTIL_LEGACY_USER);
$this->assertTrue(OCA\Encryption\Hooks::login($params));
@@ -330,4 +329,28 @@ class Test_Encryption_Util extends \PHPUnit_Framework_TestCase {
$params['password'] = $password;
OCA\Encryption\Hooks::login($params);
}
+
+ /**
+ * helper function to set migration status to the right value
+ * to be able to test the migration path
+ *
+ * @param $status needed migration status for test
+ * @param $user for which user the status should be set
+ * @return boolean
+ */
+ private function setMigrationStatus($status, $user) {
+ $sql = 'UPDATE `*PREFIX*encryption` SET `migration_status` = ? WHERE `uid` = ?';
+ $args = array(
+ $status,
+ $user
+ );
+
+ $query = \OCP\DB::prepare($sql);
+ if ($query->execute($args)) {
+ return true;
+ } else {
+ return false;
+ }
+ }
+
}
diff --git a/apps/files_external/ajax/addRootCertificate.php b/apps/files_external/ajax/addRootCertificate.php
index 43fd6752c4a..ae349bfcd3a 100644
--- a/apps/files_external/ajax/addRootCertificate.php
+++ b/apps/files_external/ajax/addRootCertificate.php
@@ -29,8 +29,12 @@ if ($isValid == false) {
// add the certificate if it could be verified
if ( $isValid ) {
+ // disable proxy to prevent multiple fopen calls
+ $proxyStatus = \OC_FileProxy::$enabled;
+ \OC_FileProxy::$enabled = false;
$view->file_put_contents($filename, $data);
OC_Mount_Config::createCertificateBundle();
+ \OC_FileProxy::$enabled = $proxyStatus;
} else {
OCP\Util::writeLog('files_external',
'Couldn\'t import SSL root certificate ('.$filename.'), allowed formats: PEM and DER',
diff --git a/apps/files_external/js/settings.js b/apps/files_external/js/settings.js
index ac408786ff6..3e605c59a93 100644
--- a/apps/files_external/js/settings.js
+++ b/apps/files_external/js/settings.js
@@ -88,7 +88,7 @@ OC.MountConfig={
url: OC.filePath('files_external', 'ajax', 'removeMountPoint.php'),
data: {
mountPoint: mountPoint,
- class: backendClass,
+ 'class': backendClass,
classOptions: classOptions,
mountType: mountType,
applicable: applicable,
@@ -103,7 +103,7 @@ OC.MountConfig={
url: OC.filePath('files_external', 'ajax', 'removeMountPoint.php'),
data: {
mountPoint: mountPoint,
- class: backendClass,
+ 'class': backendClass,
classOptions: classOptions,
mountType: mountType,
applicable: applicable,
@@ -247,15 +247,18 @@ $(document).ready(function() {
OC.MountConfig.saveStorage($(this).parent().parent());
});
+ $('#sslCertificate').on('click', 'td.remove>img', function() {
+ var $tr = $(this).parent().parent();
+ var row = this.parentNode.parentNode;
+ $.post(OC.filePath('files_external', 'ajax', 'removeRootCertificate.php'), {cert: row.id});
+ $tr.remove();
+ return true;
+ });
+
$('#externalStorage').on('click', 'td.remove>img', function() {
var tr = $(this).parent().parent();
var mountPoint = $(tr).find('.mountPoint input').val();
- if ( ! mountPoint) {
- var row=this.parentNode.parentNode;
- $.post(OC.filePath('files_external', 'ajax', 'removeRootCertificate.php'), { cert: row.id });
- $(tr).remove();
- return true;
- }
+
if ($('#externalStorage').data('admin') === true) {
var isPersonal = false;
var multiselect = $(tr).find('.chzn-select').val();
diff --git a/core/css/multiselect.css b/core/css/multiselect.css
index def4e60d74d..a2d1b20d3a5 100644
--- a/core/css/multiselect.css
+++ b/core/css/multiselect.css
@@ -1,84 +1,105 @@
-/* Copyright (c) 2011, Jan-Christoph Borchardt, http://jancborchardt.net
- This file is licensed under the Affero General Public License version 3 or later.
- See the COPYING-README file. */
+/* Copyright (c) 2011, Jan-Christoph Borchardt, http: //jancborchardt.net
+This file is licensed under the Affero General Public License version 3 or later.
+See the COPYING-README file. */
- ul.multiselectoptions {
- background-color:#fff;
- border:1px solid #ddd;
- border-top:none;
- box-shadow:0 1px 1px #ddd;
- padding-top:.5em;
- position:absolute;
- max-height: 20em;
- overflow-y: auto;
- z-index:49;
- }
+ul.multiselectoptions {
+ background-color: #fff;
+ border: 1px solid #ddd;
+ border-top: none;
+ box-shadow: 0 1px 1px #ddd;
+ padding-top: .5em;
+ position: absolute;
+ max-height: 20em;
+ overflow-y: auto;
+ z-index: 49;
+}
- ul.multiselectoptions.down {
- border-bottom-left-radius:.5em;
- border-bottom-right-radius:.5em;
- }
+ul.multiselectoptions.down {
+ border-bottom-left-radius: .5em;
+ border-bottom-right-radius: .5em;
+ width: 100%; /* do not cut off group names */
+ -webkit-box-shadow: 0px 0px 20px rgba(29,45,68,.4);
+ -moz-box-shadow: 0px 0px 20px rgba(29,45,68,.4);
+ box-shadow: 0px 0px 20px rgba(29,45,68,.4);
+}
- ul.multiselectoptions.up {
- border-top-left-radius:.5em;
- border-top-right-radius:.5em;
- }
+ul.multiselectoptions.up {
+ border-top-left-radius: .5em;
+ border-top-right-radius: .5em;
+}
- ul.multiselectoptions>li {
- overflow:hidden;
- white-space:nowrap;
- }
+ul.multiselectoptions>li {
+ overflow: hidden;
+ white-space: nowrap;
+}
- ul.multiselectoptions>li>input[type="checkbox"] {
- margin-top: 3px;
- margin-right: 5px;
- margin-left: 3px;
- }
+ul.multiselectoptions > li > input[type="checkbox"] {
+ margin: 10px 7px;
+ vertical-align: middle;
+}
+ul.multiselectoptions > li input[type='checkbox']+label {
+ font-weight: normal;
+ display: inline-block;
+ width: 100%;
+ padding: 5px 27px;
+ margin-left: -27px; /* to have area around checkbox clickable as well */
+}
+ul.multiselectoptions > li input[type='checkbox']:checked+label {
+ font-weight: bold;
+}
- div.multiselect {
- display:inline-block;
- max-width:400px;
- min-width:100px;
- padding-right:.6em;
- position:relative;
- vertical-align:bottom;
- }
+div.multiselect {
+ display: inline-block;
+ max-width: 400px;
+ min-width: 150px;
+ padding-right: .6em;
+ position: relative;
+ vertical-align: bottom;
+}
- div.multiselect.active {
- background-color:#fff;
- position:relative;
- z-index:50;
- }
+div.multiselect.active {
+ background-color: #fff;
+ position: relative;
+ z-index: 50;
+}
- div.multiselect.up {
- border-top:0 none;
- border-top-left-radius:0;
- border-top-right-radius:0;
- }
+div.multiselect.up {
+ border-top: 0 none;
+ border-top-left-radius: 0;
+ border-top-right-radius: 0;
+}
- div.multiselect.down {
- border-bottom:none;
- border-bottom-left-radius:0;
- border-bottom-right-radius:0;
- }
+div.multiselect.down {
+ border-bottom: none;
+ border-bottom-left-radius: 0;
+ border-bottom-right-radius: 0;
+}
- div.multiselect>span:first-child {
- float:left;
- margin-right:2em;
- overflow:hidden;
- text-overflow:ellipsis;
- width:90%;
- }
+div.multiselect>span:first-child {
+ float: left;
+ margin-right: 2em;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ width: 90%;
+}
- div.multiselect>span:last-child {
- position:absolute;
- right:.8em;
- }
+div.multiselect>span:last-child {
+ position: absolute;
+ right: .8em;
+}
- ul.multiselectoptions input.new {
- border-top-left-radius:0;
- border-top-right-radius:0;
- padding-bottom:.2em;
- padding-top:.2em;
- margin:0;
- }
+ul.multiselectoptions input.new {
+ padding-bottom: .2em;
+ padding-top: .2em;
+ margin: 0;
+}
+
+ul.multiselectoptions > li.creator {
+ padding: 10px;
+ font-weight: bold;
+}
+ul.multiselectoptions > li.creator > input {
+ width: 95% !important; /* do not constrain size of text input */
+ padding: 5px;
+ margin: -5px;
+}
diff --git a/core/css/styles.css b/core/css/styles.css
index 313f89195df..58e750da4fa 100644
--- a/core/css/styles.css
+++ b/core/css/styles.css
@@ -141,7 +141,7 @@ input[type="submit"].enabled { background:#66f866; border:1px solid #5e5; -moz-b
padding:0 70px 0 0.5em; margin:0;
-moz-box-sizing:border-box; box-sizing:border-box;
-moz-box-shadow:0 -3px 7px #000; -webkit-box-shadow:0 -3px 7px #000; box-shadow:0 -3px 7px #000;
- background:#f7f7f7; border-bottom:1px solid #eee; z-index:50;
+ background:#eee; border-bottom:1px solid #e7e7e7; z-index:50;
}
#controls .button { display:inline-block; }
@@ -355,14 +355,27 @@ tr .action { width:16px; height:16px; }
tr:hover .action:hover, .selectedActions a:hover, .header-action:hover { -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; filter:alpha(opacity=100); opacity:1; }
tbody tr:hover, tr:active { background-color:#f8f8f8; }
-#body-settings .personalblock, #body-settings .helpblock { padding:.5em 1em; margin:1em; background:#f8f8f8; color:#555; text-shadow:#fff 0 1px 0; -moz-border-radius:.5em; -webkit-border-radius:.5em; border-radius:.5em; }
+#body-settings .personalblock, #body-settings .helpblock {
+ padding: .5em 1em;
+ margin: 1em;
+ background-color: rgb(240,240,240);
+ color: #555;
+ text-shadow: #fff 0 1px 0;
+ -moz-border-radius: .5em; -webkit-border-radius: .5em; border-radius: .5em;
+}
#body-settings .personalblock#quota { position:relative; padding:0; }
#body-settings #controls+.helpblock { position:relative; margin-top:3em; }
.personalblock > legend { margin-top:2em; }
.personalblock > legend, th, dt, label { font-weight:bold; }
code { font-family:"Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono", monospace; }
-#quota div, div.jp-play-bar, div.jp-seek-bar { padding:0; background:#e6e6e6; font-weight:normal; white-space:nowrap; -moz-border-radius-bottomleft:.4em; -webkit-border-bottom-left-radius:.4em; border-bottom-left-radius:.4em; -moz-border-radius-topleft:.4em; -webkit-border-top-left-radius:.4em; border-top-left-radius:.4em; }
+#quota div, div.jp-play-bar, div.jp-seek-bar {
+ padding: 0;
+ background-color: rgb(220,220,220);
+ font-weight: normal;
+ white-space: nowrap;
+ -moz-border-radius-bottomleft: .4em; -webkit-border-bottom-left-radius: .4em; border-bottom-left-radius:.4em;
+ -moz-border-radius-topleft: .4em; -webkit-border-top-left-radius: .4em; border-top-left-radius: .4em; }
#quotatext {padding:.6em 1em;}
div.jp-play-bar, div.jp-seek-bar { padding:0; }
@@ -427,12 +440,22 @@ span.ui-icon {float: left; margin: 3px 7px 30px 0;}
.help-includes {overflow: hidden; width: 100%; height: 100%; -moz-box-sizing: border-box; box-sizing: border-box; padding-top: 2.8em; }
.help-iframe {width: 100%; height: 100%; margin: 0;padding: 0; border: 0; overflow: auto;}
+
/* ---- BREADCRUMB ---- */
div.crumb { float:left; display:block; background:url('../img/breadcrumb.svg') no-repeat right 0; padding:.75em 1.5em 0 1em; height:2.9em; -moz-box-sizing:border-box; box-sizing:border-box; }
div.crumb:first-child { padding:10px 20px 10px 5px; }
div.crumb.last { font-weight:bold; background:none; padding-right:10px; }
div.crumb a{ padding: 0.9em 0 0.7em 0; }
+/* some feedback for hover/tap on breadcrumbs */
+div.crumb:hover,
+div.crumb:focus,
+div.crumb:active {
+ -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
+ filter:alpha(opacity=70);
+ opacity:.7;
+}
+
/* ---- APP STYLING ---- */
diff --git a/core/js/multiselect.js b/core/js/multiselect.js
index 463c397d8cd..48d521e1856 100644
--- a/core/js/multiselect.js
+++ b/core/js/multiselect.js
@@ -176,10 +176,10 @@
});
button.parent().data('preventHide',false);
if(settings.createText){
- var li=$('+ '+settings.createText+'');
+ var li=$('+ '+settings.createText+'');
li.click(function(event){
li.empty();
- var input=$('');
+ var input=$('');
li.append(input);
input.focus();
input.css('width',button.innerWidth());
diff --git a/cron.php b/cron.php
index 95cedf8bf4c..fbea7f26aed 100644
--- a/cron.php
+++ b/cron.php
@@ -44,75 +44,81 @@ function handleUnexpectedShutdown() {
}
}
-require_once 'lib/base.php';
+try {
-session_write_close();
+ require_once 'lib/base.php';
-// Don't do anything if ownCloud has not been installed
-if (!OC_Config::getValue('installed', false)) {
- exit(0);
-}
-
-// Handle unexpected errors
-register_shutdown_function('handleUnexpectedShutdown');
+ session_write_close();
-// Delete temp folder
-OC_Helper::cleanTmpNoClean();
-
-// Exit if background jobs are disabled!
-$appmode = OC_BackgroundJob::getExecutionType();
-if ($appmode == 'none') {
- TemporaryCronClass::$sent = true;
- if (OC::$CLI) {
- echo 'Background Jobs are disabled!' . PHP_EOL;
- } else {
- OC_JSON::error(array('data' => array('message' => 'Background jobs disabled!')));
+ // Don't do anything if ownCloud has not been installed
+ if (!OC_Config::getValue('installed', false)) {
+ exit(0);
}
- exit(1);
-}
-if (OC::$CLI) {
- // Create lock file first
- TemporaryCronClass::$lockfile = OC_Config::getValue("datadirectory", OC::$SERVERROOT . '/data') . '/cron.lock';
+ // Handle unexpected errors
+ register_shutdown_function('handleUnexpectedShutdown');
- // We call ownCloud from the CLI (aka cron)
- if ($appmode != 'cron') {
- // Use cron in feature!
- OC_BackgroundJob::setExecutionType('cron');
- }
+ // Delete temp folder
+ OC_Helper::cleanTmpNoClean();
- // check if backgroundjobs is still running
- if (file_exists(TemporaryCronClass::$lockfile)) {
- TemporaryCronClass::$keeplock = true;
+ // Exit if background jobs are disabled!
+ $appmode = OC_BackgroundJob::getExecutionType();
+ if ($appmode == 'none') {
TemporaryCronClass::$sent = true;
- echo "Another instance of cron.php is still running!";
+ if (OC::$CLI) {
+ echo 'Background Jobs are disabled!' . PHP_EOL;
+ } else {
+ OC_JSON::error(array('data' => array('message' => 'Background jobs disabled!')));
+ }
exit(1);
}
- // Create a lock file
- touch(TemporaryCronClass::$lockfile);
+ if (OC::$CLI) {
+ // Create lock file first
+ TemporaryCronClass::$lockfile = OC_Config::getValue("datadirectory", OC::$SERVERROOT . '/data') . '/cron.lock';
- // Work
- $jobList = new \OC\BackgroundJob\JobList();
- $jobs = $jobList->getAll();
- foreach ($jobs as $job) {
- $job->execute($jobList);
- }
-} else {
- // We call cron.php from some website
- if ($appmode == 'cron') {
- // Cron is cron :-P
- OC_JSON::error(array('data' => array('message' => 'Backgroundjobs are using system cron!')));
- } else {
- // Work and success :-)
+ // We call ownCloud from the CLI (aka cron)
+ if ($appmode != 'cron') {
+ // Use cron in feature!
+ OC_BackgroundJob::setExecutionType('cron');
+ }
+
+ // check if backgroundjobs is still running
+ if (file_exists(TemporaryCronClass::$lockfile)) {
+ TemporaryCronClass::$keeplock = true;
+ TemporaryCronClass::$sent = true;
+ echo "Another instance of cron.php is still running!";
+ exit(1);
+ }
+
+ // Create a lock file
+ touch(TemporaryCronClass::$lockfile);
+
+ // Work
$jobList = new \OC\BackgroundJob\JobList();
- $job = $jobList->getNext();
- $job->execute($jobList);
- $jobList->setLastJob($job);
- OC_JSON::success();
+ $jobs = $jobList->getAll();
+ foreach ($jobs as $job) {
+ $job->execute($jobList);
+ }
+ } else {
+ // We call cron.php from some website
+ if ($appmode == 'cron') {
+ // Cron is cron :-P
+ OC_JSON::error(array('data' => array('message' => 'Backgroundjobs are using system cron!')));
+ } else {
+ // Work and success :-)
+ $jobList = new \OC\BackgroundJob\JobList();
+ $job = $jobList->getNext();
+ $job->execute($jobList);
+ $jobList->setLastJob($job);
+ OC_JSON::success();
+ }
}
-}
-// done!
-TemporaryCronClass::$sent = true;
-exit();
+ // done!
+ TemporaryCronClass::$sent = true;
+ exit();
+
+} catch (Exception $ex) {
+ \OCP\Util::writeLog('cron', $ex->getMessage(), \OCP\Util::FATAL);
+}
\ No newline at end of file
diff --git a/index.php b/index.php
index bf0b287a64b..a064aa5c76f 100755
--- a/index.php
+++ b/index.php
@@ -23,6 +23,15 @@
$RUNTIME_NOAPPS = true; //no apps, yet
-require_once 'lib/base.php';
+try {
+
+ require_once 'lib/base.php';
-OC::handleRequest();
+ OC::handleRequest();
+
+} catch (Exception $ex) {
+ //show the user a detailed error page
+ OC_Response::setStatus(OC_Response::STATUS_INTERNAL_SERVER_ERROR);
+ \OCP\Util::writeLog('remote', $ex->getMessage(), \OCP\Util::FATAL);
+ OC_Template::printExceptionErrorPage($ex);
+}
\ No newline at end of file
diff --git a/l10n/af_ZA/core.po b/l10n/af_ZA/core.po
index 8a90de1a4f1..c4cd8dbe3bf 100644
--- a/l10n/af_ZA/core.po
+++ b/l10n/af_ZA/core.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:57+0200\n"
-"PO-Revision-Date: 2013-06-10 00:02+0000\n"
+"POT-Creation-Date: 2013-06-13 02:16+0200\n"
+"PO-Revision-Date: 2013-06-12 01:02+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/af_ZA/lib.po b/l10n/af_ZA/lib.po
index c6e90c22e0c..0732b2dee5c 100644
--- a/l10n/af_ZA/lib.po
+++ b/l10n/af_ZA/lib.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:57+0200\n"
-"PO-Revision-Date: 2013-06-10 00:02+0000\n"
+"POT-Creation-Date: 2013-06-13 02:16+0200\n"
+"PO-Revision-Date: 2013-06-12 01:03+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n"
"MIME-Version: 1.0\n"
@@ -17,27 +17,27 @@ msgstr ""
"Language: af_ZA\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: app.php:357
+#: app.php:358
msgid "Help"
msgstr "Hulp"
-#: app.php:370
+#: app.php:371
msgid "Personal"
msgstr "Persoonlik"
-#: app.php:381
+#: app.php:382
msgid "Settings"
msgstr "Instellings"
-#: app.php:393
+#: app.php:394
msgid "Users"
msgstr "Gebruikers"
-#: app.php:406
+#: app.php:407
msgid "Apps"
msgstr "Toepassings"
-#: app.php:414
+#: app.php:415
msgid "Admin"
msgstr "Admin"
@@ -113,76 +113,76 @@ msgstr ""
msgid "%s set the database host."
msgstr ""
-#: setup.php:132 setup.php:329 setup.php:374
+#: setup.php:126 setup.php:323 setup.php:368
msgid "PostgreSQL username and/or password not valid"
msgstr ""
-#: setup.php:133 setup.php:238
+#: setup.php:127 setup.php:232
msgid "You need to enter either an existing account or the administrator."
msgstr ""
-#: setup.php:155
+#: setup.php:149
msgid "Oracle connection could not be established"
msgstr ""
-#: setup.php:237
+#: setup.php:231
msgid "MySQL username and/or password not valid"
msgstr ""
-#: setup.php:291 setup.php:395 setup.php:404 setup.php:422 setup.php:432
-#: setup.php:441 setup.php:474 setup.php:540 setup.php:566 setup.php:573
-#: setup.php:584 setup.php:591 setup.php:600 setup.php:608 setup.php:617
-#: setup.php:623
+#: setup.php:285 setup.php:389 setup.php:398 setup.php:416 setup.php:426
+#: setup.php:435 setup.php:468 setup.php:534 setup.php:560 setup.php:567
+#: setup.php:578 setup.php:585 setup.php:594 setup.php:602 setup.php:611
+#: setup.php:617
#, php-format
msgid "DB Error: \"%s\""
msgstr ""
-#: setup.php:292 setup.php:396 setup.php:405 setup.php:423 setup.php:433
-#: setup.php:442 setup.php:475 setup.php:541 setup.php:567 setup.php:574
-#: setup.php:585 setup.php:601 setup.php:609 setup.php:618
+#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427
+#: setup.php:436 setup.php:469 setup.php:535 setup.php:561 setup.php:568
+#: setup.php:579 setup.php:595 setup.php:603 setup.php:612
#, php-format
msgid "Offending command was: \"%s\""
msgstr ""
-#: setup.php:308
+#: setup.php:302
#, php-format
msgid "MySQL user '%s'@'localhost' exists already."
msgstr ""
-#: setup.php:309
+#: setup.php:303
msgid "Drop this user from MySQL"
msgstr ""
-#: setup.php:314
+#: setup.php:308
#, php-format
msgid "MySQL user '%s'@'%%' already exists"
msgstr ""
-#: setup.php:315
+#: setup.php:309
msgid "Drop this user from MySQL."
msgstr ""
-#: setup.php:466 setup.php:533
+#: setup.php:460 setup.php:527
msgid "Oracle username and/or password not valid"
msgstr ""
-#: setup.php:592 setup.php:624
+#: setup.php:586 setup.php:618
#, php-format
msgid "Offending command was: \"%s\", name: %s, password: %s"
msgstr ""
-#: setup.php:644
+#: setup.php:638
#, php-format
msgid "MS SQL username and/or password not valid: %s"
msgstr ""
-#: setup.php:867
+#: setup.php:861
msgid ""
"Your web server is not yet properly setup to allow files synchronization "
"because the WebDAV interface seems to be broken."
msgstr ""
-#: setup.php:868
+#: setup.php:862
#, php-format
msgid "Please double check the installation guides."
msgstr ""
diff --git a/l10n/ar/core.po b/l10n/ar/core.po
index f01a53b53f0..8451a82cdf9 100644
--- a/l10n/ar/core.po
+++ b/l10n/ar/core.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:57+0200\n"
-"PO-Revision-Date: 2013-06-10 23:18+0000\n"
+"POT-Creation-Date: 2013-06-13 02:16+0200\n"
+"PO-Revision-Date: 2013-06-12 01:02+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/ar/files.po b/l10n/ar/files.po
index fe15956376f..88a6f57929d 100644
--- a/l10n/ar/files.po
+++ b/l10n/ar/files.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:18+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:27+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/ar/files_external.po b/l10n/ar/files_external.po
index 13fdac78bb2..73d8a9c9722 100644
--- a/l10n/ar/files_external.po
+++ b/l10n/ar/files_external.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/ar/files_sharing.po b/l10n/ar/files_sharing.po
index 00f96d84fd0..67b581a05da 100644
--- a/l10n/ar/files_sharing.po
+++ b/l10n/ar/files_sharing.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/ar/files_trashbin.po b/l10n/ar/files_trashbin.po
index 2fec6330cd5..17a6649ddb6 100644
--- a/l10n/ar/files_trashbin.po
+++ b/l10n/ar/files_trashbin.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/ar/lib.po b/l10n/ar/lib.po
index e3aead3f438..9184898d5e8 100644
--- a/l10n/ar/lib.po
+++ b/l10n/ar/lib.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:57+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-13 02:16+0200\n"
+"PO-Revision-Date: 2013-06-12 01: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,27 +17,27 @@ 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"
-#: app.php:357
+#: app.php:358
msgid "Help"
msgstr "المساعدة"
-#: app.php:370
+#: app.php:371
msgid "Personal"
msgstr "شخصي"
-#: app.php:381
+#: app.php:382
msgid "Settings"
msgstr "إعدادات"
-#: app.php:393
+#: app.php:394
msgid "Users"
msgstr "المستخدمين"
-#: app.php:406
+#: app.php:407
msgid "Apps"
msgstr "التطبيقات"
-#: app.php:414
+#: app.php:415
msgid "Admin"
msgstr "المدير"
@@ -113,76 +113,76 @@ msgstr "%s لا يسمح لك باستخدام نقطه (.) في اسم قاعد
msgid "%s set the database host."
msgstr "%s ادخل اسم خادم قاعدة البيانات"
-#: setup.php:132 setup.php:329 setup.php:374
+#: setup.php:126 setup.php:323 setup.php:368
msgid "PostgreSQL username and/or password not valid"
msgstr "اسم المستخدم / أو كلمة المرور الخاصة بـPostgreSQL غير صحيحة"
-#: setup.php:133 setup.php:238
+#: setup.php:127 setup.php:232
msgid "You need to enter either an existing account or the administrator."
msgstr "انت بحاجة لكتابة اسم مستخدم موجود أو حساب المدير."
-#: setup.php:155
+#: setup.php:149
msgid "Oracle connection could not be established"
msgstr ""
-#: setup.php:237
+#: setup.php:231
msgid "MySQL username and/or password not valid"
msgstr "اسم المستخدم و/أو كلمة المرور لنظام MySQL غير صحيح"
-#: setup.php:291 setup.php:395 setup.php:404 setup.php:422 setup.php:432
-#: setup.php:441 setup.php:474 setup.php:540 setup.php:566 setup.php:573
-#: setup.php:584 setup.php:591 setup.php:600 setup.php:608 setup.php:617
-#: setup.php:623
+#: setup.php:285 setup.php:389 setup.php:398 setup.php:416 setup.php:426
+#: setup.php:435 setup.php:468 setup.php:534 setup.php:560 setup.php:567
+#: setup.php:578 setup.php:585 setup.php:594 setup.php:602 setup.php:611
+#: setup.php:617
#, php-format
msgid "DB Error: \"%s\""
msgstr "خطأ في قواعد البيانات : \"%s\""
-#: setup.php:292 setup.php:396 setup.php:405 setup.php:423 setup.php:433
-#: setup.php:442 setup.php:475 setup.php:541 setup.php:567 setup.php:574
-#: setup.php:585 setup.php:601 setup.php:609 setup.php:618
+#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427
+#: setup.php:436 setup.php:469 setup.php:535 setup.php:561 setup.php:568
+#: setup.php:579 setup.php:595 setup.php:603 setup.php:612
#, php-format
msgid "Offending command was: \"%s\""
msgstr "الأمر المخالف كان : \"%s\""
-#: setup.php:308
+#: setup.php:302
#, php-format
msgid "MySQL user '%s'@'localhost' exists already."
msgstr "أسم المستخدم '%s'@'localhost' الخاص بـ MySQL موجود مسبقا"
-#: setup.php:309
+#: setup.php:303
msgid "Drop this user from MySQL"
msgstr "احذف اسم المستخدم هذا من الـ MySQL"
-#: setup.php:314
+#: setup.php:308
#, php-format
msgid "MySQL user '%s'@'%%' already exists"
msgstr "أسم المستخدم '%s'@'%%' الخاص بـ MySQL موجود مسبقا"
-#: setup.php:315
+#: setup.php:309
msgid "Drop this user from MySQL."
msgstr "احذف اسم المستخدم هذا من الـ MySQL."
-#: setup.php:466 setup.php:533
+#: setup.php:460 setup.php:527
msgid "Oracle username and/or password not valid"
msgstr "اسم المستخدم و/أو كلمة المرور لنظام Oracle غير صحيح"
-#: setup.php:592 setup.php:624
+#: setup.php:586 setup.php:618
#, php-format
msgid "Offending command was: \"%s\", name: %s, password: %s"
msgstr "الأمر المخالف كان : \"%s\", اسم المستخدم : %s, كلمة المرور: %s"
-#: setup.php:644
+#: setup.php:638
#, php-format
msgid "MS SQL username and/or password not valid: %s"
msgstr "اسم المستخدم و/أو كلمة المرور لنظام MS SQL غير صحيح : %s"
-#: setup.php:867
+#: setup.php:861
msgid ""
"Your web server is not yet properly setup to allow files synchronization "
"because the WebDAV interface seems to be broken."
msgstr "اعدادات خادمك غير صحيحة بشكل تسمح لك بمزامنة ملفاتك وذلك بسبب أن واجهة WebDAV تبدو معطلة"
-#: setup.php:868
+#: setup.php:862
#, php-format
msgid "Please double check the installation guides."
msgstr "الرجاء التحقق من دليل التنصيب."
diff --git a/l10n/ar/settings.po b/l10n/ar/settings.po
index 90816a1c40d..9987d44ff99 100644
--- a/l10n/ar/settings.po
+++ b/l10n/ar/settings.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:57+0200\n"
-"PO-Revision-Date: 2013-06-10 23:57+0000\n"
+"POT-Creation-Date: 2013-06-12 02:56+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/ar/user_ldap.po b/l10n/ar/user_ldap.po
index eb971f8e404..27fc477b48b 100644
--- a/l10n/ar/user_ldap.po
+++ b/l10n/ar/user_ldap.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:56+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/bg_BG/core.po b/l10n/bg_BG/core.po
index 1152ca2eb1d..efeacd31886 100644
--- a/l10n/bg_BG/core.po
+++ b/l10n/bg_BG/core.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:57+0200\n"
-"PO-Revision-Date: 2013-06-10 23:18+0000\n"
+"POT-Creation-Date: 2013-06-13 02:16+0200\n"
+"PO-Revision-Date: 2013-06-12 01:02+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/bg_BG/files.po b/l10n/bg_BG/files.po
index eb125ea64ee..46d9c1c6c6c 100644
--- a/l10n/bg_BG/files.po
+++ b/l10n/bg_BG/files.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:18+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:27+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/bg_BG/files_external.po b/l10n/bg_BG/files_external.po
index c644037ea64..83b8906cbb3 100644
--- a/l10n/bg_BG/files_external.po
+++ b/l10n/bg_BG/files_external.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/bg_BG/files_sharing.po b/l10n/bg_BG/files_sharing.po
index ff016dec288..d3d99043e10 100644
--- a/l10n/bg_BG/files_sharing.po
+++ b/l10n/bg_BG/files_sharing.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/bg_BG/files_trashbin.po b/l10n/bg_BG/files_trashbin.po
index 07beb96f64b..8d94958f90a 100644
--- a/l10n/bg_BG/files_trashbin.po
+++ b/l10n/bg_BG/files_trashbin.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: Димитър Кръстев \n"
"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/bg_BG/lib.po b/l10n/bg_BG/lib.po
index 164bf587c12..69a9e525e45 100644
--- a/l10n/bg_BG/lib.po
+++ b/l10n/bg_BG/lib.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:57+0200\n"
-"PO-Revision-Date: 2013-06-10 23:18+0000\n"
+"POT-Creation-Date: 2013-06-13 02:16+0200\n"
+"PO-Revision-Date: 2013-06-12 01:02+0000\n"
"Last-Translator: Димитър Кръстев \n"
"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n"
"MIME-Version: 1.0\n"
@@ -18,27 +18,27 @@ msgstr ""
"Language: bg_BG\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: app.php:357
+#: app.php:358
msgid "Help"
msgstr "Помощ"
-#: app.php:370
+#: app.php:371
msgid "Personal"
msgstr "Лични"
-#: app.php:381
+#: app.php:382
msgid "Settings"
msgstr "Настройки"
-#: app.php:393
+#: app.php:394
msgid "Users"
msgstr "Потребители"
-#: app.php:406
+#: app.php:407
msgid "Apps"
msgstr "Приложения"
-#: app.php:414
+#: app.php:415
msgid "Admin"
msgstr "Админ"
@@ -114,76 +114,76 @@ msgstr "%s, не можете да ползвате точки в името н
msgid "%s set the database host."
msgstr "%s задай хост на базата данни."
-#: setup.php:132 setup.php:329 setup.php:374
+#: setup.php:126 setup.php:323 setup.php:368
msgid "PostgreSQL username and/or password not valid"
msgstr "Невалидно PostgreSQL потребителско име и/или парола"
-#: setup.php:133 setup.php:238
+#: setup.php:127 setup.php:232
msgid "You need to enter either an existing account or the administrator."
msgstr "Необходимо е да влезете в всъществуващ акаунт или като администратора"
-#: setup.php:155
+#: setup.php:149
msgid "Oracle connection could not be established"
msgstr "Oracle връзка не можа да се осъществи"
-#: setup.php:237
+#: setup.php:231
msgid "MySQL username and/or password not valid"
msgstr "Невалидно MySQL потребителско име и/или парола"
-#: setup.php:291 setup.php:395 setup.php:404 setup.php:422 setup.php:432
-#: setup.php:441 setup.php:474 setup.php:540 setup.php:566 setup.php:573
-#: setup.php:584 setup.php:591 setup.php:600 setup.php:608 setup.php:617
-#: setup.php:623
+#: setup.php:285 setup.php:389 setup.php:398 setup.php:416 setup.php:426
+#: setup.php:435 setup.php:468 setup.php:534 setup.php:560 setup.php:567
+#: setup.php:578 setup.php:585 setup.php:594 setup.php:602 setup.php:611
+#: setup.php:617
#, php-format
msgid "DB Error: \"%s\""
msgstr "Грешка в базата от данни: \"%s\""
-#: setup.php:292 setup.php:396 setup.php:405 setup.php:423 setup.php:433
-#: setup.php:442 setup.php:475 setup.php:541 setup.php:567 setup.php:574
-#: setup.php:585 setup.php:601 setup.php:609 setup.php:618
+#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427
+#: setup.php:436 setup.php:469 setup.php:535 setup.php:561 setup.php:568
+#: setup.php:579 setup.php:595 setup.php:603 setup.php:612
#, php-format
msgid "Offending command was: \"%s\""
msgstr "Проблемната команда беше: \"%s\""
-#: setup.php:308
+#: setup.php:302
#, php-format
msgid "MySQL user '%s'@'localhost' exists already."
msgstr "MySQL потребителят '%s'@'localhost' вече съществува"
-#: setup.php:309
+#: setup.php:303
msgid "Drop this user from MySQL"
msgstr "Изтриване на потребителя от MySQL"
-#: setup.php:314
+#: setup.php:308
#, php-format
msgid "MySQL user '%s'@'%%' already exists"
msgstr "MySQL потребителят '%s'@'%%' вече съществува."
-#: setup.php:315
+#: setup.php:309
msgid "Drop this user from MySQL."
msgstr "Изтриване на потребителя от MySQL."
-#: setup.php:466 setup.php:533
+#: setup.php:460 setup.php:527
msgid "Oracle username and/or password not valid"
msgstr "Невалидно Oracle потребителско име и/или парола"
-#: setup.php:592 setup.php:624
+#: setup.php:586 setup.php:618
#, php-format
msgid "Offending command was: \"%s\", name: %s, password: %s"
msgstr "Проблемната команда беше: \"%s\", име: %s, парола: %s"
-#: setup.php:644
+#: setup.php:638
#, php-format
msgid "MS SQL username and/or password not valid: %s"
msgstr "Невалидно MS SQL потребителско име и/или парола: %s"
-#: setup.php:867
+#: setup.php:861
msgid ""
"Your web server is not yet properly setup to allow files synchronization "
"because the WebDAV interface seems to be broken."
msgstr "Вашият web сървър все още не е удачно настроен да позволява синхронизация на файлове, защото WebDAV интерфейсът изглежда не работи."
-#: setup.php:868
+#: setup.php:862
#, php-format
msgid "Please double check the installation guides."
msgstr "Моля направете повторна справка с ръководството за инсталиране."
diff --git a/l10n/bg_BG/settings.po b/l10n/bg_BG/settings.po
index 4fb44322c42..c88d22ac9da 100644
--- a/l10n/bg_BG/settings.po
+++ b/l10n/bg_BG/settings.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:57+0200\n"
-"PO-Revision-Date: 2013-06-10 23:57+0000\n"
+"POT-Creation-Date: 2013-06-12 02:56+0200\n"
+"PO-Revision-Date: 2013-06-11 23:27+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/bg_BG/user_ldap.po b/l10n/bg_BG/user_ldap.po
index 9b6ce08d562..a8a9b0ae76d 100644
--- a/l10n/bg_BG/user_ldap.po
+++ b/l10n/bg_BG/user_ldap.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:56+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/bn_BD/core.po b/l10n/bn_BD/core.po
index 20c44d83d6b..cbbf564da20 100644
--- a/l10n/bn_BD/core.po
+++ b/l10n/bn_BD/core.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:57+0200\n"
-"PO-Revision-Date: 2013-06-10 23:18+0000\n"
+"POT-Creation-Date: 2013-06-13 02:16+0200\n"
+"PO-Revision-Date: 2013-06-12 01:02+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/bn_BD/files.po b/l10n/bn_BD/files.po
index d47a538564a..a30f0a31709 100644
--- a/l10n/bn_BD/files.po
+++ b/l10n/bn_BD/files.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:18+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:27+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/bn_BD/files_external.po b/l10n/bn_BD/files_external.po
index 2bae81308bf..32d039ff17b 100644
--- a/l10n/bn_BD/files_external.po
+++ b/l10n/bn_BD/files_external.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/bn_BD/files_sharing.po b/l10n/bn_BD/files_sharing.po
index ee46468ac79..f5115942446 100644
--- a/l10n/bn_BD/files_sharing.po
+++ b/l10n/bn_BD/files_sharing.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/bn_BD/files_trashbin.po b/l10n/bn_BD/files_trashbin.po
index 063ad92c945..211f3350341 100644
--- a/l10n/bn_BD/files_trashbin.po
+++ b/l10n/bn_BD/files_trashbin.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/bn_BD/lib.po b/l10n/bn_BD/lib.po
index 62c465271a2..10e1fae5e62 100644
--- a/l10n/bn_BD/lib.po
+++ b/l10n/bn_BD/lib.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:57+0200\n"
-"PO-Revision-Date: 2013-06-10 23:18+0000\n"
+"POT-Creation-Date: 2013-06-13 02:16+0200\n"
+"PO-Revision-Date: 2013-06-12 01:02+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n"
"MIME-Version: 1.0\n"
@@ -17,27 +17,27 @@ msgstr ""
"Language: bn_BD\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: app.php:357
+#: app.php:358
msgid "Help"
msgstr "সহায়িকা"
-#: app.php:370
+#: app.php:371
msgid "Personal"
msgstr "ব্যক্তিগত"
-#: app.php:381
+#: app.php:382
msgid "Settings"
msgstr "নিয়ামকসমূহ"
-#: app.php:393
+#: app.php:394
msgid "Users"
msgstr "ব্যবহারকারী"
-#: app.php:406
+#: app.php:407
msgid "Apps"
msgstr "অ্যাপ"
-#: app.php:414
+#: app.php:415
msgid "Admin"
msgstr "প্রশাসন"
@@ -113,76 +113,76 @@ msgstr ""
msgid "%s set the database host."
msgstr ""
-#: setup.php:132 setup.php:329 setup.php:374
+#: setup.php:126 setup.php:323 setup.php:368
msgid "PostgreSQL username and/or password not valid"
msgstr ""
-#: setup.php:133 setup.php:238
+#: setup.php:127 setup.php:232
msgid "You need to enter either an existing account or the administrator."
msgstr ""
-#: setup.php:155
+#: setup.php:149
msgid "Oracle connection could not be established"
msgstr ""
-#: setup.php:237
+#: setup.php:231
msgid "MySQL username and/or password not valid"
msgstr ""
-#: setup.php:291 setup.php:395 setup.php:404 setup.php:422 setup.php:432
-#: setup.php:441 setup.php:474 setup.php:540 setup.php:566 setup.php:573
-#: setup.php:584 setup.php:591 setup.php:600 setup.php:608 setup.php:617
-#: setup.php:623
+#: setup.php:285 setup.php:389 setup.php:398 setup.php:416 setup.php:426
+#: setup.php:435 setup.php:468 setup.php:534 setup.php:560 setup.php:567
+#: setup.php:578 setup.php:585 setup.php:594 setup.php:602 setup.php:611
+#: setup.php:617
#, php-format
msgid "DB Error: \"%s\""
msgstr ""
-#: setup.php:292 setup.php:396 setup.php:405 setup.php:423 setup.php:433
-#: setup.php:442 setup.php:475 setup.php:541 setup.php:567 setup.php:574
-#: setup.php:585 setup.php:601 setup.php:609 setup.php:618
+#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427
+#: setup.php:436 setup.php:469 setup.php:535 setup.php:561 setup.php:568
+#: setup.php:579 setup.php:595 setup.php:603 setup.php:612
#, php-format
msgid "Offending command was: \"%s\""
msgstr ""
-#: setup.php:308
+#: setup.php:302
#, php-format
msgid "MySQL user '%s'@'localhost' exists already."
msgstr ""
-#: setup.php:309
+#: setup.php:303
msgid "Drop this user from MySQL"
msgstr ""
-#: setup.php:314
+#: setup.php:308
#, php-format
msgid "MySQL user '%s'@'%%' already exists"
msgstr ""
-#: setup.php:315
+#: setup.php:309
msgid "Drop this user from MySQL."
msgstr ""
-#: setup.php:466 setup.php:533
+#: setup.php:460 setup.php:527
msgid "Oracle username and/or password not valid"
msgstr ""
-#: setup.php:592 setup.php:624
+#: setup.php:586 setup.php:618
#, php-format
msgid "Offending command was: \"%s\", name: %s, password: %s"
msgstr ""
-#: setup.php:644
+#: setup.php:638
#, php-format
msgid "MS SQL username and/or password not valid: %s"
msgstr ""
-#: setup.php:867
+#: setup.php:861
msgid ""
"Your web server is not yet properly setup to allow files synchronization "
"because the WebDAV interface seems to be broken."
msgstr ""
-#: setup.php:868
+#: setup.php:862
#, php-format
msgid "Please double check the installation guides."
msgstr ""
diff --git a/l10n/bn_BD/settings.po b/l10n/bn_BD/settings.po
index 815333c3ef4..d41ab646fba 100644
--- a/l10n/bn_BD/settings.po
+++ b/l10n/bn_BD/settings.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:57+0200\n"
-"PO-Revision-Date: 2013-06-10 23:57+0000\n"
+"POT-Creation-Date: 2013-06-12 02:56+0200\n"
+"PO-Revision-Date: 2013-06-11 23:27+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/bn_BD/user_ldap.po b/l10n/bn_BD/user_ldap.po
index b6252a0f8f1..5b1e57a6443 100644
--- a/l10n/bn_BD/user_ldap.po
+++ b/l10n/bn_BD/user_ldap.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:56+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/bs/core.po b/l10n/bs/core.po
new file mode 100644
index 00000000000..4a6e9e8ff5d
--- /dev/null
+++ b/l10n/bs/core.po
@@ -0,0 +1,617 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+#
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: ownCloud\n"
+"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
+"POT-Creation-Date: 2013-06-13 02:16+0200\n"
+"PO-Revision-Date: 2013-06-12 21:41+0000\n"
+"Last-Translator: I Robot \n"
+"Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: bs\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+
+#: ajax/share.php:97
+#, php-format
+msgid "User %s shared a file with you"
+msgstr ""
+
+#: ajax/share.php:99
+#, php-format
+msgid "User %s shared a folder with you"
+msgstr ""
+
+#: ajax/share.php:101
+#, php-format
+msgid ""
+"User %s shared the file \"%s\" with you. It is available for download here: "
+"%s"
+msgstr ""
+
+#: ajax/share.php:104
+#, php-format
+msgid ""
+"User %s shared the folder \"%s\" with you. It is available for download "
+"here: %s"
+msgstr ""
+
+#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25
+msgid "Category type not provided."
+msgstr ""
+
+#: ajax/vcategories/add.php:30
+msgid "No category to add?"
+msgstr ""
+
+#: ajax/vcategories/add.php:37
+#, php-format
+msgid "This category already exists: %s"
+msgstr ""
+
+#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27
+#: ajax/vcategories/favorites.php:24
+#: ajax/vcategories/removeFromFavorites.php:26
+msgid "Object type not provided."
+msgstr ""
+
+#: ajax/vcategories/addToFavorites.php:30
+#: ajax/vcategories/removeFromFavorites.php:30
+#, php-format
+msgid "%s ID not provided."
+msgstr ""
+
+#: ajax/vcategories/addToFavorites.php:35
+#, php-format
+msgid "Error adding %s to favorites."
+msgstr ""
+
+#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136
+msgid "No categories selected for deletion."
+msgstr ""
+
+#: ajax/vcategories/removeFromFavorites.php:35
+#, php-format
+msgid "Error removing %s from favorites."
+msgstr ""
+
+#: js/config.php:34
+msgid "Sunday"
+msgstr ""
+
+#: js/config.php:35
+msgid "Monday"
+msgstr ""
+
+#: js/config.php:36
+msgid "Tuesday"
+msgstr ""
+
+#: js/config.php:37
+msgid "Wednesday"
+msgstr ""
+
+#: js/config.php:38
+msgid "Thursday"
+msgstr ""
+
+#: js/config.php:39
+msgid "Friday"
+msgstr ""
+
+#: js/config.php:40
+msgid "Saturday"
+msgstr ""
+
+#: js/config.php:45
+msgid "January"
+msgstr ""
+
+#: js/config.php:46
+msgid "February"
+msgstr ""
+
+#: js/config.php:47
+msgid "March"
+msgstr ""
+
+#: js/config.php:48
+msgid "April"
+msgstr ""
+
+#: js/config.php:49
+msgid "May"
+msgstr ""
+
+#: js/config.php:50
+msgid "June"
+msgstr ""
+
+#: js/config.php:51
+msgid "July"
+msgstr ""
+
+#: js/config.php:52
+msgid "August"
+msgstr ""
+
+#: js/config.php:53
+msgid "September"
+msgstr ""
+
+#: js/config.php:54
+msgid "October"
+msgstr ""
+
+#: js/config.php:55
+msgid "November"
+msgstr ""
+
+#: js/config.php:56
+msgid "December"
+msgstr ""
+
+#: js/js.js:286
+msgid "Settings"
+msgstr ""
+
+#: js/js.js:718
+msgid "seconds ago"
+msgstr ""
+
+#: js/js.js:719
+msgid "1 minute ago"
+msgstr ""
+
+#: js/js.js:720
+msgid "{minutes} minutes ago"
+msgstr ""
+
+#: js/js.js:721
+msgid "1 hour ago"
+msgstr ""
+
+#: js/js.js:722
+msgid "{hours} hours ago"
+msgstr ""
+
+#: js/js.js:723
+msgid "today"
+msgstr ""
+
+#: js/js.js:724
+msgid "yesterday"
+msgstr ""
+
+#: js/js.js:725
+msgid "{days} days ago"
+msgstr ""
+
+#: js/js.js:726
+msgid "last month"
+msgstr ""
+
+#: js/js.js:727
+msgid "{months} months ago"
+msgstr ""
+
+#: js/js.js:728
+msgid "months ago"
+msgstr ""
+
+#: js/js.js:729
+msgid "last year"
+msgstr ""
+
+#: js/js.js:730
+msgid "years ago"
+msgstr ""
+
+#: js/oc-dialogs.js:117
+msgid "Choose"
+msgstr ""
+
+#: js/oc-dialogs.js:122
+msgid "Cancel"
+msgstr ""
+
+#: js/oc-dialogs.js:141 js/oc-dialogs.js:200
+msgid "Error loading file picker template"
+msgstr ""
+
+#: js/oc-dialogs.js:164
+msgid "Yes"
+msgstr ""
+
+#: js/oc-dialogs.js:172
+msgid "No"
+msgstr ""
+
+#: js/oc-dialogs.js:185
+msgid "Ok"
+msgstr ""
+
+#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102
+#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162
+msgid "The object type is not specified."
+msgstr ""
+
+#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95
+#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136
+#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195
+#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577
+#: js/share.js:589
+msgid "Error"
+msgstr ""
+
+#: js/oc-vcategories.js:179
+msgid "The app name is not specified."
+msgstr ""
+
+#: js/oc-vcategories.js:194
+msgid "The required file {file} is not installed!"
+msgstr ""
+
+#: js/share.js:30 js/share.js:45 js/share.js:87
+msgid "Shared"
+msgstr ""
+
+#: js/share.js:90
+msgid "Share"
+msgstr ""
+
+#: js/share.js:125 js/share.js:617
+msgid "Error while sharing"
+msgstr ""
+
+#: js/share.js:136
+msgid "Error while unsharing"
+msgstr ""
+
+#: js/share.js:143
+msgid "Error while changing permissions"
+msgstr ""
+
+#: js/share.js:152
+msgid "Shared with you and the group {group} by {owner}"
+msgstr ""
+
+#: js/share.js:154
+msgid "Shared with you by {owner}"
+msgstr ""
+
+#: js/share.js:159
+msgid "Share with"
+msgstr ""
+
+#: js/share.js:164
+msgid "Share with link"
+msgstr ""
+
+#: js/share.js:167
+msgid "Password protect"
+msgstr ""
+
+#: js/share.js:169 templates/installation.php:54 templates/login.php:26
+msgid "Password"
+msgstr ""
+
+#: js/share.js:173
+msgid "Email link to person"
+msgstr ""
+
+#: js/share.js:174
+msgid "Send"
+msgstr ""
+
+#: js/share.js:178
+msgid "Set expiration date"
+msgstr ""
+
+#: js/share.js:179
+msgid "Expiration date"
+msgstr ""
+
+#: js/share.js:211
+msgid "Share via email:"
+msgstr ""
+
+#: js/share.js:213
+msgid "No people found"
+msgstr ""
+
+#: js/share.js:251
+msgid "Resharing is not allowed"
+msgstr ""
+
+#: js/share.js:287
+msgid "Shared in {item} with {user}"
+msgstr ""
+
+#: js/share.js:308
+msgid "Unshare"
+msgstr ""
+
+#: js/share.js:320
+msgid "can edit"
+msgstr ""
+
+#: js/share.js:322
+msgid "access control"
+msgstr ""
+
+#: js/share.js:325
+msgid "create"
+msgstr ""
+
+#: js/share.js:328
+msgid "update"
+msgstr ""
+
+#: js/share.js:331
+msgid "delete"
+msgstr ""
+
+#: js/share.js:334
+msgid "share"
+msgstr ""
+
+#: js/share.js:368 js/share.js:564
+msgid "Password protected"
+msgstr ""
+
+#: js/share.js:577
+msgid "Error unsetting expiration date"
+msgstr ""
+
+#: js/share.js:589
+msgid "Error setting expiration date"
+msgstr ""
+
+#: js/share.js:604
+msgid "Sending ..."
+msgstr ""
+
+#: js/share.js:615
+msgid "Email sent"
+msgstr ""
+
+#: js/update.js:14
+msgid ""
+"The update was unsuccessful. Please report this issue to the ownCloud "
+"community."
+msgstr ""
+
+#: js/update.js:18
+msgid "The update was successful. Redirecting you to ownCloud now."
+msgstr ""
+
+#: lostpassword/controller.php:48
+msgid "ownCloud password reset"
+msgstr ""
+
+#: lostpassword/templates/email.php:2
+msgid "Use the following link to reset your password: {link}"
+msgstr ""
+
+#: lostpassword/templates/lostpassword.php:4
+msgid ""
+"The link to reset your password has been sent to your email.
If you do "
+"not receive it within a reasonable amount of time, check your spam/junk "
+"folders.
If it is not there ask your local administrator ."
+msgstr ""
+
+#: lostpassword/templates/lostpassword.php:12
+msgid "Request failed!
Did you make sure your email/username was right?"
+msgstr ""
+
+#: lostpassword/templates/lostpassword.php:15
+msgid "You will receive a link to reset your password via Email."
+msgstr ""
+
+#: lostpassword/templates/lostpassword.php:18 templates/installation.php:48
+#: templates/login.php:19
+msgid "Username"
+msgstr ""
+
+#: lostpassword/templates/lostpassword.php:21
+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:16
+msgid "Add"
+msgstr ""
+
+#: templates/installation.php:24 templates/installation.php:31
+#: templates/installation.php:38
+msgid "Security Warning"
+msgstr ""
+
+#: templates/installation.php:25
+msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)"
+msgstr ""
+
+#: templates/installation.php:26
+msgid "Please update your PHP installation to use ownCloud securely."
+msgstr ""
+
+#: templates/installation.php:32
+msgid ""
+"No secure random number generator is available, please enable the PHP "
+"OpenSSL extension."
+msgstr ""
+
+#: templates/installation.php:33
+msgid ""
+"Without a secure random number generator an attacker may be able to predict "
+"password reset tokens and take over your account."
+msgstr ""
+
+#: templates/installation.php:39
+msgid ""
+"Your data directory and files are probably accessible from the internet "
+"because the .htaccess file does not work."
+msgstr ""
+
+#: templates/installation.php:40
+msgid ""
+"For information how to properly configure your server, please see the documentation."
+msgstr ""
+
+#: templates/installation.php:44
+msgid "Create an admin account"
+msgstr ""
+
+#: templates/installation.php:62
+msgid "Advanced"
+msgstr ""
+
+#: templates/installation.php:64
+msgid "Data folder"
+msgstr ""
+
+#: templates/installation.php:74
+msgid "Configure the database"
+msgstr ""
+
+#: templates/installation.php:79 templates/installation.php:91
+#: templates/installation.php:102 templates/installation.php:113
+#: templates/installation.php:125
+msgid "will be used"
+msgstr ""
+
+#: templates/installation.php:137
+msgid "Database user"
+msgstr ""
+
+#: templates/installation.php:144
+msgid "Database password"
+msgstr ""
+
+#: templates/installation.php:149
+msgid "Database name"
+msgstr ""
+
+#: templates/installation.php:159
+msgid "Database tablespace"
+msgstr ""
+
+#: templates/installation.php:166
+msgid "Database host"
+msgstr ""
+
+#: templates/installation.php:172
+msgid "Finish setup"
+msgstr ""
+
+#: templates/layout.guest.php:40
+msgid "web services under your control"
+msgstr ""
+
+#: templates/layout.user.php:37
+#, php-format
+msgid "%s is available. Get more information on how to update."
+msgstr ""
+
+#: templates/layout.user.php:62
+msgid "Log out"
+msgstr ""
+
+#: templates/login.php:9
+msgid "Automatic logon rejected!"
+msgstr ""
+
+#: templates/login.php:10
+msgid ""
+"If you did not change your password recently, your account may be "
+"compromised!"
+msgstr ""
+
+#: templates/login.php:12
+msgid "Please change your password to secure your account again."
+msgstr ""
+
+#: templates/login.php:34
+msgid "Lost your password?"
+msgstr ""
+
+#: templates/login.php:39
+msgid "remember"
+msgstr ""
+
+#: templates/login.php:41
+msgid "Log in"
+msgstr ""
+
+#: templates/login.php:47
+msgid "Alternative Logins"
+msgstr ""
+
+#: templates/part.pagenavi.php:3
+msgid "prev"
+msgstr ""
+
+#: templates/part.pagenavi.php:20
+msgid "next"
+msgstr ""
+
+#: templates/update.php:3
+#, php-format
+msgid "Updating ownCloud to version %s, this may take a while."
+msgstr ""
diff --git a/l10n/bs/files.po b/l10n/bs/files.po
new file mode 100644
index 00000000000..3a9f98bd286
--- /dev/null
+++ b/l10n/bs/files.po
@@ -0,0 +1,322 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+#
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: ownCloud\n"
+"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
+"POT-Creation-Date: 2013-06-13 02:16+0200\n"
+"PO-Revision-Date: 2013-06-12 21:41+0000\n"
+"Last-Translator: I Robot \n"
+"Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: bs\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+
+#: ajax/move.php:17
+#, php-format
+msgid "Could not move %s - File with this name already exists"
+msgstr ""
+
+#: ajax/move.php:27 ajax/move.php:30
+#, php-format
+msgid "Could not move %s"
+msgstr ""
+
+#: ajax/upload.php:19
+msgid "No file was uploaded. Unknown error"
+msgstr ""
+
+#: ajax/upload.php:26
+msgid "There is no error, the file uploaded with success"
+msgstr ""
+
+#: ajax/upload.php:27
+msgid ""
+"The uploaded file exceeds the upload_max_filesize directive in php.ini: "
+msgstr ""
+
+#: ajax/upload.php:29
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form"
+msgstr ""
+
+#: ajax/upload.php:30
+msgid "The uploaded file was only partially uploaded"
+msgstr ""
+
+#: ajax/upload.php:31
+msgid "No file was uploaded"
+msgstr ""
+
+#: ajax/upload.php:32
+msgid "Missing a temporary folder"
+msgstr ""
+
+#: ajax/upload.php:33
+msgid "Failed to write to disk"
+msgstr ""
+
+#: ajax/upload.php:51
+msgid "Not enough storage available"
+msgstr ""
+
+#: ajax/upload.php:83
+msgid "Invalid directory."
+msgstr ""
+
+#: appinfo/app.php:12
+msgid "Files"
+msgstr ""
+
+#: js/fileactions.js:116
+msgid "Share"
+msgstr ""
+
+#: js/fileactions.js:126
+msgid "Delete permanently"
+msgstr ""
+
+#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94
+msgid "Delete"
+msgstr ""
+
+#: js/fileactions.js:194
+msgid "Rename"
+msgstr ""
+
+#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:421
+msgid "Pending"
+msgstr ""
+
+#: js/filelist.js:259 js/filelist.js:261
+msgid "{new_name} already exists"
+msgstr ""
+
+#: js/filelist.js:259 js/filelist.js:261
+msgid "replace"
+msgstr ""
+
+#: js/filelist.js:259
+msgid "suggest name"
+msgstr ""
+
+#: js/filelist.js:259 js/filelist.js:261
+msgid "cancel"
+msgstr ""
+
+#: js/filelist.js:306
+msgid "replaced {new_name} with {old_name}"
+msgstr ""
+
+#: js/filelist.js:306
+msgid "undo"
+msgstr ""
+
+#: js/filelist.js:331
+msgid "perform delete operation"
+msgstr ""
+
+#: js/filelist.js:413
+msgid "1 file uploading"
+msgstr ""
+
+#: js/filelist.js:416 js/filelist.js:470
+msgid "files uploading"
+msgstr ""
+
+#: js/files.js:52
+msgid "'.' is an invalid file name."
+msgstr ""
+
+#: js/files.js:56
+msgid "File name cannot be empty."
+msgstr ""
+
+#: js/files.js:64
+msgid ""
+"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not "
+"allowed."
+msgstr ""
+
+#: js/files.js:78
+msgid "Your storage is full, files can not be updated or synced anymore!"
+msgstr ""
+
+#: js/files.js:82
+msgid "Your storage is almost full ({usedSpacePercent}%)"
+msgstr ""
+
+#: js/files.js:231
+msgid ""
+"Your download is being prepared. This might take some time if the files are "
+"big."
+msgstr ""
+
+#: js/files.js:264
+msgid "Unable to upload your file as it is a directory or has 0 bytes"
+msgstr ""
+
+#: js/files.js:277
+msgid "Not enough space available"
+msgstr ""
+
+#: js/files.js:317
+msgid "Upload cancelled."
+msgstr ""
+
+#: js/files.js:413
+msgid ""
+"File upload is in progress. Leaving the page now will cancel the upload."
+msgstr ""
+
+#: js/files.js:486
+msgid "URL cannot be empty."
+msgstr ""
+
+#: js/files.js:491
+msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud"
+msgstr ""
+
+#: js/files.js:520 js/files.js:536 js/files.js:826 js/files.js:864
+msgid "Error"
+msgstr ""
+
+#: js/files.js:877 templates/index.php:69
+msgid "Name"
+msgstr ""
+
+#: js/files.js:878 templates/index.php:80
+msgid "Size"
+msgstr ""
+
+#: js/files.js:879 templates/index.php:82
+msgid "Modified"
+msgstr ""
+
+#: js/files.js:898
+msgid "1 folder"
+msgstr ""
+
+#: js/files.js:900
+msgid "{count} folders"
+msgstr ""
+
+#: js/files.js:908
+msgid "1 file"
+msgstr ""
+
+#: js/files.js:910
+msgid "{count} files"
+msgstr ""
+
+#: lib/app.php:53
+msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud"
+msgstr ""
+
+#: lib/app.php:73
+msgid "Unable to rename file"
+msgstr ""
+
+#: lib/helper.php:11 templates/index.php:18
+msgid "Upload"
+msgstr ""
+
+#: templates/admin.php:5
+msgid "File handling"
+msgstr ""
+
+#: templates/admin.php:7
+msgid "Maximum upload size"
+msgstr ""
+
+#: templates/admin.php:10
+msgid "max. possible: "
+msgstr ""
+
+#: templates/admin.php:15
+msgid "Needed for multi-file and folder downloads."
+msgstr ""
+
+#: templates/admin.php:17
+msgid "Enable ZIP-download"
+msgstr ""
+
+#: templates/admin.php:20
+msgid "0 is unlimited"
+msgstr ""
+
+#: templates/admin.php:22
+msgid "Maximum input size for ZIP files"
+msgstr ""
+
+#: templates/admin.php:26
+msgid "Save"
+msgstr ""
+
+#: templates/index.php:7
+msgid "New"
+msgstr ""
+
+#: templates/index.php:10
+msgid "Text file"
+msgstr ""
+
+#: templates/index.php:12
+msgid "Folder"
+msgstr ""
+
+#: templates/index.php:14
+msgid "From link"
+msgstr ""
+
+#: templates/index.php:42
+msgid "Deleted files"
+msgstr ""
+
+#: templates/index.php:48
+msgid "Cancel upload"
+msgstr ""
+
+#: templates/index.php:54
+msgid "You don’t have write permissions here."
+msgstr ""
+
+#: templates/index.php:61
+msgid "Nothing in here. Upload something!"
+msgstr ""
+
+#: templates/index.php:75
+msgid "Download"
+msgstr ""
+
+#: templates/index.php:87 templates/index.php:88
+msgid "Unshare"
+msgstr ""
+
+#: templates/index.php:107
+msgid "Upload too large"
+msgstr ""
+
+#: templates/index.php:109
+msgid ""
+"The files you are trying to upload exceed the maximum size for file uploads "
+"on this server."
+msgstr ""
+
+#: templates/index.php:114
+msgid "Files are being scanned, please wait."
+msgstr ""
+
+#: templates/index.php:117
+msgid "Current scanning"
+msgstr ""
+
+#: templates/upgrade.php:2
+msgid "Upgrading filesystem cache..."
+msgstr ""
diff --git a/l10n/bs/files_encryption.po b/l10n/bs/files_encryption.po
new file mode 100644
index 00000000000..9d30921bb22
--- /dev/null
+++ b/l10n/bs/files_encryption.po
@@ -0,0 +1,103 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+#
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: ownCloud\n"
+"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
+"POT-Creation-Date: 2013-06-13 02:16+0200\n"
+"PO-Revision-Date: 2013-06-12 21:41+0000\n"
+"Last-Translator: I Robot \n"
+"Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: bs\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+
+#: ajax/adminrecovery.php:29
+msgid "Recovery key successfully enabled"
+msgstr ""
+
+#: ajax/adminrecovery.php:34
+msgid ""
+"Could not enable recovery key. Please check your recovery key password!"
+msgstr ""
+
+#: ajax/adminrecovery.php:48
+msgid "Recovery key successfully disabled"
+msgstr ""
+
+#: ajax/adminrecovery.php:53
+msgid ""
+"Could not disable recovery key. Please check your recovery key password!"
+msgstr ""
+
+#: ajax/changeRecoveryPassword.php:49
+msgid "Password successfully changed."
+msgstr ""
+
+#: ajax/changeRecoveryPassword.php:51
+msgid "Could not change the password. Maybe the old password was not correct."
+msgstr ""
+
+#: js/settings-admin.js:11
+msgid "Saving..."
+msgstr ""
+
+#: templates/settings-admin.php:5 templates/settings-personal.php:4
+msgid "Encryption"
+msgstr ""
+
+#: templates/settings-admin.php:9
+msgid ""
+"Enable encryption passwords recovery key (allow sharing to recovery key):"
+msgstr ""
+
+#: templates/settings-admin.php:13
+msgid "Recovery account password"
+msgstr ""
+
+#: templates/settings-admin.php:20 templates/settings-personal.php:18
+msgid "Enabled"
+msgstr ""
+
+#: templates/settings-admin.php:28 templates/settings-personal.php:26
+msgid "Disabled"
+msgstr ""
+
+#: templates/settings-admin.php:32
+msgid "Change encryption passwords recovery key:"
+msgstr ""
+
+#: templates/settings-admin.php:39
+msgid "Old Recovery account password"
+msgstr ""
+
+#: templates/settings-admin.php:46
+msgid "New Recovery account password"
+msgstr ""
+
+#: templates/settings-admin.php:51
+msgid "Change Password"
+msgstr ""
+
+#: templates/settings-personal.php:9
+msgid "Enable password recovery by sharing all files with your administrator:"
+msgstr ""
+
+#: templates/settings-personal.php:11
+msgid ""
+"Enabling this option will allow you to reobtain access to your encrypted "
+"files if your password is lost"
+msgstr ""
+
+#: templates/settings-personal.php:27
+msgid "File recovery settings updated"
+msgstr ""
+
+#: templates/settings-personal.php:28
+msgid "Could not update file recovery"
+msgstr ""
diff --git a/l10n/bs/files_external.po b/l10n/bs/files_external.po
new file mode 100644
index 00000000000..631ae608baf
--- /dev/null
+++ b/l10n/bs/files_external.po
@@ -0,0 +1,123 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+#
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: ownCloud\n"
+"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
+"POT-Creation-Date: 2013-06-13 02:16+0200\n"
+"PO-Revision-Date: 2013-06-12 21:41+0000\n"
+"Last-Translator: I Robot \n"
+"Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: bs\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+
+#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34
+msgid "Access granted"
+msgstr ""
+
+#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102
+msgid "Error configuring Dropbox storage"
+msgstr ""
+
+#: js/dropbox.js:65 js/google.js:66
+msgid "Grant access"
+msgstr ""
+
+#: js/dropbox.js:101
+msgid "Please provide a valid Dropbox app key and secret."
+msgstr ""
+
+#: js/google.js:36 js/google.js:93
+msgid "Error configuring Google Drive storage"
+msgstr ""
+
+#: lib/config.php:431
+msgid ""
+"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares "
+"is not possible. Please ask your system administrator to install it."
+msgstr ""
+
+#: lib/config.php:434
+msgid ""
+"Warning: The FTP support in PHP is not enabled or installed. Mounting"
+" of FTP shares is not possible. Please ask your system administrator to "
+"install it."
+msgstr ""
+
+#: lib/config.php:437
+msgid ""
+"Warning: The Curl support in PHP is not enabled or installed. "
+"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask "
+"your system administrator to install it."
+msgstr ""
+
+#: templates/settings.php:3
+msgid "External Storage"
+msgstr ""
+
+#: templates/settings.php:9 templates/settings.php:28
+msgid "Folder name"
+msgstr ""
+
+#: templates/settings.php:10
+msgid "External storage"
+msgstr ""
+
+#: templates/settings.php:11
+msgid "Configuration"
+msgstr ""
+
+#: templates/settings.php:12
+msgid "Options"
+msgstr ""
+
+#: templates/settings.php:13
+msgid "Applicable"
+msgstr ""
+
+#: templates/settings.php:33
+msgid "Add storage"
+msgstr ""
+
+#: templates/settings.php:90
+msgid "None set"
+msgstr ""
+
+#: templates/settings.php:91
+msgid "All Users"
+msgstr ""
+
+#: templates/settings.php:92
+msgid "Groups"
+msgstr ""
+
+#: templates/settings.php:100
+msgid "Users"
+msgstr ""
+
+#: templates/settings.php:113 templates/settings.php:114
+#: templates/settings.php:149 templates/settings.php:150
+msgid "Delete"
+msgstr ""
+
+#: templates/settings.php:129
+msgid "Enable User External Storage"
+msgstr ""
+
+#: templates/settings.php:130
+msgid "Allow users to mount their own external storage"
+msgstr ""
+
+#: templates/settings.php:141
+msgid "SSL root certificates"
+msgstr ""
+
+#: templates/settings.php:159
+msgid "Import Root Certificate"
+msgstr ""
diff --git a/l10n/bs/files_sharing.po b/l10n/bs/files_sharing.po
new file mode 100644
index 00000000000..f8fa2ab5b96
--- /dev/null
+++ b/l10n/bs/files_sharing.po
@@ -0,0 +1,48 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+#
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: ownCloud\n"
+"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
+"POT-Creation-Date: 2013-06-13 02:16+0200\n"
+"PO-Revision-Date: 2013-06-12 21:41+0000\n"
+"Last-Translator: I Robot \n"
+"Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: bs\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/authenticate.php:4
+msgid "Password"
+msgstr ""
+
+#: templates/authenticate.php:6
+msgid "Submit"
+msgstr ""
+
+#: templates/public.php:10
+#, php-format
+msgid "%s shared the folder %s with you"
+msgstr ""
+
+#: templates/public.php:13
+#, php-format
+msgid "%s shared the file %s with you"
+msgstr ""
+
+#: templates/public.php:19 templates/public.php:43
+msgid "Download"
+msgstr ""
+
+#: templates/public.php:40
+msgid "No preview available for"
+msgstr ""
+
+#: templates/public.php:50
+msgid "web services under your control"
+msgstr ""
diff --git a/l10n/bs/files_trashbin.po b/l10n/bs/files_trashbin.po
new file mode 100644
index 00000000000..eef2de962a1
--- /dev/null
+++ b/l10n/bs/files_trashbin.po
@@ -0,0 +1,84 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+#
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: ownCloud\n"
+"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
+"POT-Creation-Date: 2013-06-13 02:16+0200\n"
+"PO-Revision-Date: 2013-06-12 21:41+0000\n"
+"Last-Translator: I Robot \n"
+"Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: bs\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+
+#: ajax/delete.php:42
+#, php-format
+msgid "Couldn't delete %s permanently"
+msgstr ""
+
+#: ajax/undelete.php:42
+#, php-format
+msgid "Couldn't restore %s"
+msgstr ""
+
+#: js/trash.js:7 js/trash.js:97
+msgid "perform restore operation"
+msgstr ""
+
+#: js/trash.js:19 js/trash.js:46 js/trash.js:115 js/trash.js:141
+msgid "Error"
+msgstr ""
+
+#: js/trash.js:34
+msgid "delete file permanently"
+msgstr ""
+
+#: js/trash.js:123
+msgid "Delete permanently"
+msgstr ""
+
+#: js/trash.js:176 templates/index.php:17
+msgid "Name"
+msgstr ""
+
+#: js/trash.js:177 templates/index.php:27
+msgid "Deleted"
+msgstr ""
+
+#: js/trash.js:186
+msgid "1 folder"
+msgstr ""
+
+#: js/trash.js:188
+msgid "{count} folders"
+msgstr ""
+
+#: js/trash.js:196
+msgid "1 file"
+msgstr ""
+
+#: js/trash.js:198
+msgid "{count} files"
+msgstr ""
+
+#: templates/index.php:9
+msgid "Nothing in here. Your trash bin is empty!"
+msgstr ""
+
+#: templates/index.php:20 templates/index.php:22
+msgid "Restore"
+msgstr ""
+
+#: templates/index.php:30 templates/index.php:31
+msgid "Delete"
+msgstr ""
+
+#: templates/part.breadcrumb.php:9
+msgid "Deleted Files"
+msgstr ""
diff --git a/l10n/bs/files_versions.po b/l10n/bs/files_versions.po
new file mode 100644
index 00000000000..221060a5ffd
--- /dev/null
+++ b/l10n/bs/files_versions.po
@@ -0,0 +1,57 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+#
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: ownCloud\n"
+"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
+"POT-Creation-Date: 2013-06-13 02:16+0200\n"
+"PO-Revision-Date: 2013-06-12 21:41+0000\n"
+"Last-Translator: I Robot \n"
+"Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: bs\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+
+#: ajax/rollbackVersion.php:15
+#, php-format
+msgid "Could not revert: %s"
+msgstr ""
+
+#: history.php:40
+msgid "success"
+msgstr ""
+
+#: history.php:42
+#, php-format
+msgid "File %s was reverted to version %s"
+msgstr ""
+
+#: history.php:49
+msgid "failure"
+msgstr ""
+
+#: history.php:51
+#, php-format
+msgid "File %s could not be reverted to version %s"
+msgstr ""
+
+#: history.php:69
+msgid "No old versions available"
+msgstr ""
+
+#: history.php:74
+msgid "No path specified"
+msgstr ""
+
+#: js/versions.js:6
+msgid "Versions"
+msgstr ""
+
+#: templates/history.php:20
+msgid "Revert a file to a previous version by clicking on its revert button"
+msgstr ""
diff --git a/l10n/bs/lib.po b/l10n/bs/lib.po
new file mode 100644
index 00000000000..91bc2323395
--- /dev/null
+++ b/l10n/bs/lib.po
@@ -0,0 +1,245 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+#
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: ownCloud\n"
+"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
+"POT-Creation-Date: 2013-06-13 02:16+0200\n"
+"PO-Revision-Date: 2013-06-12 21:41+0000\n"
+"Last-Translator: I Robot \n"
+"Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: bs\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"
+
+#: app.php:358
+msgid "Help"
+msgstr ""
+
+#: app.php:371
+msgid "Personal"
+msgstr ""
+
+#: app.php:382
+msgid "Settings"
+msgstr ""
+
+#: app.php:394
+msgid "Users"
+msgstr ""
+
+#: app.php:407
+msgid "Apps"
+msgstr ""
+
+#: app.php:415
+msgid "Admin"
+msgstr ""
+
+#: files.php:210
+msgid "ZIP download is turned off."
+msgstr ""
+
+#: files.php:211
+msgid "Files need to be downloaded one by one."
+msgstr ""
+
+#: files.php:212 files.php:245
+msgid "Back to Files"
+msgstr ""
+
+#: files.php:242
+msgid "Selected files too large to generate zip file."
+msgstr ""
+
+#: helper.php:236
+msgid "couldn't be determined"
+msgstr ""
+
+#: json.php:28
+msgid "Application is not enabled"
+msgstr ""
+
+#: json.php:39 json.php:62 json.php:73
+msgid "Authentication error"
+msgstr ""
+
+#: json.php:51
+msgid "Token expired. Please reload page."
+msgstr ""
+
+#: search/provider/file.php:17 search/provider/file.php:35
+msgid "Files"
+msgstr ""
+
+#: search/provider/file.php:26 search/provider/file.php:33
+msgid "Text"
+msgstr ""
+
+#: search/provider/file.php:29
+msgid "Images"
+msgstr ""
+
+#: setup.php:34
+msgid "Set an admin username."
+msgstr ""
+
+#: setup.php:37
+msgid "Set an admin password."
+msgstr ""
+
+#: setup.php:55
+#, php-format
+msgid "%s enter the database username."
+msgstr ""
+
+#: setup.php:58
+#, php-format
+msgid "%s enter the database name."
+msgstr ""
+
+#: setup.php:61
+#, php-format
+msgid "%s you may not use dots in the database name"
+msgstr ""
+
+#: setup.php:64
+#, php-format
+msgid "%s set the database host."
+msgstr ""
+
+#: setup.php:126 setup.php:323 setup.php:368
+msgid "PostgreSQL username and/or password not valid"
+msgstr ""
+
+#: setup.php:127 setup.php:232
+msgid "You need to enter either an existing account or the administrator."
+msgstr ""
+
+#: setup.php:149
+msgid "Oracle connection could not be established"
+msgstr ""
+
+#: setup.php:231
+msgid "MySQL username and/or password not valid"
+msgstr ""
+
+#: setup.php:285 setup.php:389 setup.php:398 setup.php:416 setup.php:426
+#: setup.php:435 setup.php:468 setup.php:534 setup.php:560 setup.php:567
+#: setup.php:578 setup.php:585 setup.php:594 setup.php:602 setup.php:611
+#: setup.php:617
+#, php-format
+msgid "DB Error: \"%s\""
+msgstr ""
+
+#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427
+#: setup.php:436 setup.php:469 setup.php:535 setup.php:561 setup.php:568
+#: setup.php:579 setup.php:595 setup.php:603 setup.php:612
+#, php-format
+msgid "Offending command was: \"%s\""
+msgstr ""
+
+#: setup.php:302
+#, php-format
+msgid "MySQL user '%s'@'localhost' exists already."
+msgstr ""
+
+#: setup.php:303
+msgid "Drop this user from MySQL"
+msgstr ""
+
+#: setup.php:308
+#, php-format
+msgid "MySQL user '%s'@'%%' already exists"
+msgstr ""
+
+#: setup.php:309
+msgid "Drop this user from MySQL."
+msgstr ""
+
+#: setup.php:460 setup.php:527
+msgid "Oracle username and/or password not valid"
+msgstr ""
+
+#: setup.php:586 setup.php:618
+#, php-format
+msgid "Offending command was: \"%s\", name: %s, password: %s"
+msgstr ""
+
+#: setup.php:638
+#, php-format
+msgid "MS SQL username and/or password not valid: %s"
+msgstr ""
+
+#: setup.php:861
+msgid ""
+"Your web server is not yet properly setup to allow files synchronization "
+"because the WebDAV interface seems to be broken."
+msgstr ""
+
+#: setup.php:862
+#, php-format
+msgid "Please double check the installation guides."
+msgstr ""
+
+#: template.php:113
+msgid "seconds ago"
+msgstr ""
+
+#: template.php:114
+msgid "1 minute ago"
+msgstr ""
+
+#: template.php:115
+#, php-format
+msgid "%d minutes ago"
+msgstr ""
+
+#: template.php:116
+msgid "1 hour ago"
+msgstr ""
+
+#: template.php:117
+#, php-format
+msgid "%d hours ago"
+msgstr ""
+
+#: template.php:118
+msgid "today"
+msgstr ""
+
+#: template.php:119
+msgid "yesterday"
+msgstr ""
+
+#: template.php:120
+#, php-format
+msgid "%d days ago"
+msgstr ""
+
+#: template.php:121
+msgid "last month"
+msgstr ""
+
+#: template.php:122
+#, php-format
+msgid "%d months ago"
+msgstr ""
+
+#: template.php:123
+msgid "last year"
+msgstr ""
+
+#: template.php:124
+msgid "years ago"
+msgstr ""
+
+#: vcategories.php:188 vcategories.php:249
+#, php-format
+msgid "Could not find category \"%s\""
+msgstr ""
diff --git a/l10n/bs/settings.po b/l10n/bs/settings.po
new file mode 100644
index 00000000000..b38b4c812b4
--- /dev/null
+++ b/l10n/bs/settings.po
@@ -0,0 +1,502 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+#
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: ownCloud\n"
+"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
+"POT-Creation-Date: 2013-06-13 02:16+0200\n"
+"PO-Revision-Date: 2013-06-12 21:41+0000\n"
+"Last-Translator: I Robot \n"
+"Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: bs\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+
+#: ajax/apps/ocs.php:20
+msgid "Unable to load list from App Store"
+msgstr ""
+
+#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17
+#: ajax/togglegroups.php:20
+msgid "Authentication error"
+msgstr ""
+
+#: ajax/changedisplayname.php:31
+msgid "Your display name has been changed."
+msgstr ""
+
+#: ajax/changedisplayname.php:34
+msgid "Unable to change display name"
+msgstr ""
+
+#: ajax/creategroup.php:10
+msgid "Group already exists"
+msgstr ""
+
+#: ajax/creategroup.php:19
+msgid "Unable to add group"
+msgstr ""
+
+#: ajax/enableapp.php:11
+msgid "Could not enable app. "
+msgstr ""
+
+#: ajax/lostpassword.php:12
+msgid "Email saved"
+msgstr ""
+
+#: ajax/lostpassword.php:14
+msgid "Invalid email"
+msgstr ""
+
+#: ajax/removegroup.php:13
+msgid "Unable to delete group"
+msgstr ""
+
+#: ajax/removeuser.php:25
+msgid "Unable to delete user"
+msgstr ""
+
+#: ajax/setlanguage.php:15
+msgid "Language changed"
+msgstr ""
+
+#: ajax/setlanguage.php:17 ajax/setlanguage.php:20
+msgid "Invalid request"
+msgstr ""
+
+#: ajax/togglegroups.php:12
+msgid "Admins can't remove themself from the admin group"
+msgstr ""
+
+#: ajax/togglegroups.php:30
+#, php-format
+msgid "Unable to add user to group %s"
+msgstr ""
+
+#: ajax/togglegroups.php:36
+#, php-format
+msgid "Unable to remove user from group %s"
+msgstr ""
+
+#: ajax/updateapp.php:14
+msgid "Couldn't update app."
+msgstr ""
+
+#: js/apps.js:30
+msgid "Update to {appversion}"
+msgstr ""
+
+#: js/apps.js:36 js/apps.js:76
+msgid "Disable"
+msgstr ""
+
+#: js/apps.js:36 js/apps.js:64 js/apps.js:83
+msgid "Enable"
+msgstr ""
+
+#: js/apps.js:55
+msgid "Please wait...."
+msgstr ""
+
+#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93
+msgid "Error"
+msgstr ""
+
+#: js/apps.js:90
+msgid "Updating...."
+msgstr ""
+
+#: js/apps.js:93
+msgid "Error while updating app"
+msgstr ""
+
+#: js/apps.js:96
+msgid "Updated"
+msgstr ""
+
+#: js/personal.js:118
+msgid "Saving..."
+msgstr ""
+
+#: js/users.js:47
+msgid "deleted"
+msgstr ""
+
+#: js/users.js:47
+msgid "undo"
+msgstr ""
+
+#: js/users.js:79
+msgid "Unable to remove user"
+msgstr ""
+
+#: js/users.js:92 templates/users.php:26 templates/users.php:87
+#: templates/users.php:112
+msgid "Groups"
+msgstr ""
+
+#: js/users.js:95 templates/users.php:89 templates/users.php:124
+msgid "Group Admin"
+msgstr ""
+
+#: js/users.js:115 templates/users.php:164
+msgid "Delete"
+msgstr ""
+
+#: js/users.js:269
+msgid "add group"
+msgstr ""
+
+#: js/users.js:428
+msgid "A valid username must be provided"
+msgstr ""
+
+#: js/users.js:429 js/users.js:435 js/users.js:450
+msgid "Error creating user"
+msgstr ""
+
+#: js/users.js:434
+msgid "A valid password must be provided"
+msgstr ""
+
+#: personal.php:35 personal.php:36
+msgid "__language_name__"
+msgstr ""
+
+#: templates/admin.php:15
+msgid "Security Warning"
+msgstr ""
+
+#: templates/admin.php:18
+msgid ""
+"Your data directory and your files are probably accessible from the "
+"internet. The .htaccess file that ownCloud provides is not working. We "
+"strongly suggest that you configure your webserver in a way that the data "
+"directory is no longer accessible or you move the data directory outside the"
+" webserver document root."
+msgstr ""
+
+#: templates/admin.php:29
+msgid "Setup Warning"
+msgstr ""
+
+#: templates/admin.php:32
+msgid ""
+"Your web server is not yet properly setup to allow files synchronization "
+"because the WebDAV interface seems to be broken."
+msgstr ""
+
+#: templates/admin.php:33
+#, php-format
+msgid "Please double check the installation guides."
+msgstr ""
+
+#: templates/admin.php:44
+msgid "Module 'fileinfo' missing"
+msgstr ""
+
+#: templates/admin.php:47
+msgid ""
+"The PHP module 'fileinfo' is missing. We strongly recommend to enable this "
+"module to get best results with mime-type detection."
+msgstr ""
+
+#: templates/admin.php:58
+msgid "Locale not working"
+msgstr ""
+
+#: templates/admin.php:63
+#, php-format
+msgid ""
+"This ownCloud server can't set system locale to %s. This means that there "
+"might be problems with certain characters in file names. We strongly suggest"
+" to install the required packages on your system to support %s."
+msgstr ""
+
+#: templates/admin.php:75
+msgid "Internet connection not working"
+msgstr ""
+
+#: templates/admin.php:78
+msgid ""
+"This ownCloud server has no working internet connection. This means that "
+"some of the features like mounting of external storage, notifications about "
+"updates or installation of 3rd party apps don´t work. Accessing files from "
+"remote and sending of notification emails might also not work. We suggest to"
+" enable internet connection for this server if you want to have all features"
+" of ownCloud."
+msgstr ""
+
+#: templates/admin.php:92
+msgid "Cron"
+msgstr ""
+
+#: templates/admin.php:101
+msgid "Execute one task with each page loaded"
+msgstr ""
+
+#: templates/admin.php:111
+msgid ""
+"cron.php is registered at a webcron service. Call the cron.php page in the "
+"owncloud root once a minute over http."
+msgstr ""
+
+#: templates/admin.php:121
+msgid ""
+"Use systems cron service. Call the cron.php file in the owncloud folder via "
+"a system cronjob once a minute."
+msgstr ""
+
+#: templates/admin.php:128
+msgid "Sharing"
+msgstr ""
+
+#: templates/admin.php:134
+msgid "Enable Share API"
+msgstr ""
+
+#: templates/admin.php:135
+msgid "Allow apps to use the Share API"
+msgstr ""
+
+#: templates/admin.php:142
+msgid "Allow links"
+msgstr ""
+
+#: templates/admin.php:143
+msgid "Allow users to share items to the public with links"
+msgstr ""
+
+#: templates/admin.php:150
+msgid "Allow resharing"
+msgstr ""
+
+#: templates/admin.php:151
+msgid "Allow users to share items shared with them again"
+msgstr ""
+
+#: templates/admin.php:158
+msgid "Allow users to share with anyone"
+msgstr ""
+
+#: templates/admin.php:161
+msgid "Allow users to only share with users in their groups"
+msgstr ""
+
+#: templates/admin.php:168
+msgid "Security"
+msgstr ""
+
+#: templates/admin.php:181
+msgid "Enforce HTTPS"
+msgstr ""
+
+#: templates/admin.php:182
+msgid ""
+"Enforces the clients to connect to ownCloud via an encrypted connection."
+msgstr ""
+
+#: templates/admin.php:185
+msgid ""
+"Please connect to this ownCloud instance via HTTPS to enable or disable the "
+"SSL enforcement."
+msgstr ""
+
+#: templates/admin.php:195
+msgid "Log"
+msgstr ""
+
+#: templates/admin.php:196
+msgid "Log level"
+msgstr ""
+
+#: templates/admin.php:227
+msgid "More"
+msgstr ""
+
+#: templates/admin.php:228
+msgid "Less"
+msgstr ""
+
+#: templates/admin.php:235 templates/personal.php:114
+msgid "Version"
+msgstr ""
+
+#: templates/admin.php:237 templates/personal.php:117
+msgid ""
+"Developed by the ownCloud community, the source code is "
+"licensed under the AGPL."
+msgstr ""
+
+#: templates/apps.php:11
+msgid "Add your App"
+msgstr ""
+
+#: templates/apps.php:12
+msgid "More Apps"
+msgstr ""
+
+#: templates/apps.php:28
+msgid "Select an App"
+msgstr ""
+
+#: templates/apps.php:34
+msgid "See application page at apps.owncloud.com"
+msgstr ""
+
+#: templates/apps.php:36
+msgid "-licensed by "
+msgstr ""
+
+#: templates/apps.php:38
+msgid "Update"
+msgstr ""
+
+#: templates/help.php:4
+msgid "User Documentation"
+msgstr ""
+
+#: templates/help.php:6
+msgid "Administrator Documentation"
+msgstr ""
+
+#: templates/help.php:9
+msgid "Online Documentation"
+msgstr ""
+
+#: templates/help.php:11
+msgid "Forum"
+msgstr ""
+
+#: templates/help.php:14
+msgid "Bugtracker"
+msgstr ""
+
+#: templates/help.php:17
+msgid "Commercial Support"
+msgstr ""
+
+#: templates/personal.php:9
+msgid "Get the apps to sync your files"
+msgstr ""
+
+#: templates/personal.php:20
+msgid "Show First Run Wizard again"
+msgstr ""
+
+#: templates/personal.php:28
+#, php-format
+msgid "You have used %s of the available %s"
+msgstr ""
+
+#: templates/personal.php:40 templates/users.php:23 templates/users.php:86
+msgid "Password"
+msgstr ""
+
+#: templates/personal.php:41
+msgid "Your password was changed"
+msgstr ""
+
+#: templates/personal.php:42
+msgid "Unable to change your password"
+msgstr ""
+
+#: templates/personal.php:43
+msgid "Current password"
+msgstr ""
+
+#: templates/personal.php:45
+msgid "New password"
+msgstr ""
+
+#: templates/personal.php:47
+msgid "Change password"
+msgstr ""
+
+#: templates/personal.php:59 templates/users.php:85
+msgid "Display Name"
+msgstr ""
+
+#: templates/personal.php:74
+msgid "Email"
+msgstr ""
+
+#: templates/personal.php:76
+msgid "Your email address"
+msgstr ""
+
+#: templates/personal.php:77
+msgid "Fill in an email address to enable password recovery"
+msgstr ""
+
+#: templates/personal.php:86 templates/personal.php:87
+msgid "Language"
+msgstr ""
+
+#: templates/personal.php:98
+msgid "Help translate"
+msgstr ""
+
+#: templates/personal.php:103
+msgid "WebDAV"
+msgstr ""
+
+#: templates/personal.php:105
+msgid "Use this address to connect to your ownCloud in your file manager"
+msgstr ""
+
+#: templates/users.php:21 templates/users.php:84
+msgid "Login Name"
+msgstr ""
+
+#: templates/users.php:30
+msgid "Create"
+msgstr ""
+
+#: templates/users.php:36
+msgid "Admin Recovery Password"
+msgstr ""
+
+#: templates/users.php:37 templates/users.php:38
+msgid ""
+"Enter the recovery password in order to recover the users files during "
+"password change"
+msgstr ""
+
+#: templates/users.php:42
+msgid "Default Storage"
+msgstr ""
+
+#: templates/users.php:48 templates/users.php:142
+msgid "Unlimited"
+msgstr ""
+
+#: templates/users.php:66 templates/users.php:157
+msgid "Other"
+msgstr ""
+
+#: templates/users.php:91
+msgid "Storage"
+msgstr ""
+
+#: templates/users.php:102
+msgid "change display name"
+msgstr ""
+
+#: templates/users.php:106
+msgid "set new password"
+msgstr ""
+
+#: templates/users.php:137
+msgid "Default"
+msgstr ""
diff --git a/l10n/bs/user_ldap.po b/l10n/bs/user_ldap.po
new file mode 100644
index 00000000000..2d85a9f6eb8
--- /dev/null
+++ b/l10n/bs/user_ldap.po
@@ -0,0 +1,419 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+#
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: ownCloud\n"
+"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
+"POT-Creation-Date: 2013-06-13 02:16+0200\n"
+"PO-Revision-Date: 2013-06-12 21:41+0000\n"
+"Last-Translator: I Robot \n"
+"Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: bs\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+
+#: ajax/clearMappings.php:34
+msgid "Failed to clear the mappings."
+msgstr ""
+
+#: ajax/deleteConfiguration.php:34
+msgid "Failed to delete the server configuration"
+msgstr ""
+
+#: ajax/testConfiguration.php:36
+msgid "The configuration is valid and the connection could be established!"
+msgstr ""
+
+#: ajax/testConfiguration.php:39
+msgid ""
+"The configuration is valid, but the Bind failed. Please check the server "
+"settings and credentials."
+msgstr ""
+
+#: ajax/testConfiguration.php:43
+msgid ""
+"The configuration is invalid. Please look in the ownCloud log for further "
+"details."
+msgstr ""
+
+#: js/settings.js:66
+msgid "Deletion failed"
+msgstr ""
+
+#: js/settings.js:82
+msgid "Take over settings from recent server configuration?"
+msgstr ""
+
+#: js/settings.js:83
+msgid "Keep settings?"
+msgstr ""
+
+#: js/settings.js:97
+msgid "Cannot add server configuration"
+msgstr ""
+
+#: js/settings.js:111
+msgid "mappings cleared"
+msgstr ""
+
+#: js/settings.js:112
+msgid "Success"
+msgstr ""
+
+#: js/settings.js:117
+msgid "Error"
+msgstr ""
+
+#: js/settings.js:141
+msgid "Connection test succeeded"
+msgstr ""
+
+#: js/settings.js:146
+msgid "Connection test failed"
+msgstr ""
+
+#: js/settings.js:156
+msgid "Do you really want to delete the current Server Configuration?"
+msgstr ""
+
+#: js/settings.js:157
+msgid "Confirm Deletion"
+msgstr ""
+
+#: templates/settings.php:9
+msgid ""
+"Warning: Apps user_ldap and user_webdavauth are incompatible. You may"
+" experience unexpected behaviour. Please ask your system administrator to "
+"disable one of them."
+msgstr ""
+
+#: templates/settings.php:12
+msgid ""
+"Warning: The PHP LDAP module is not installed, the backend will not "
+"work. Please ask your system administrator to install it."
+msgstr ""
+
+#: templates/settings.php:16
+msgid "Server configuration"
+msgstr ""
+
+#: templates/settings.php:32
+msgid "Add Server Configuration"
+msgstr ""
+
+#: templates/settings.php:37
+msgid "Host"
+msgstr ""
+
+#: templates/settings.php:39
+msgid ""
+"You can omit the protocol, except you require SSL. Then start with ldaps://"
+msgstr ""
+
+#: templates/settings.php:40
+msgid "Base DN"
+msgstr ""
+
+#: templates/settings.php:41
+msgid "One Base DN per line"
+msgstr ""
+
+#: templates/settings.php:42
+msgid "You can specify Base DN for users and groups in the Advanced tab"
+msgstr ""
+
+#: templates/settings.php:44
+msgid "User DN"
+msgstr ""
+
+#: templates/settings.php:46
+msgid ""
+"The DN of the client user with which the bind shall be done, e.g. "
+"uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password "
+"empty."
+msgstr ""
+
+#: templates/settings.php:47
+msgid "Password"
+msgstr ""
+
+#: templates/settings.php:50
+msgid "For anonymous access, leave DN and Password empty."
+msgstr ""
+
+#: templates/settings.php:51
+msgid "User Login Filter"
+msgstr ""
+
+#: templates/settings.php:54
+#, php-format
+msgid ""
+"Defines the filter to apply, when login is attempted. %%uid replaces the "
+"username in the login action."
+msgstr ""
+
+#: templates/settings.php:55
+#, php-format
+msgid "use %%uid placeholder, e.g. \"uid=%%uid\""
+msgstr ""
+
+#: templates/settings.php:56
+msgid "User List Filter"
+msgstr ""
+
+#: templates/settings.php:59
+msgid "Defines the filter to apply, when retrieving users."
+msgstr ""
+
+#: templates/settings.php:60
+msgid "without any placeholder, e.g. \"objectClass=person\"."
+msgstr ""
+
+#: templates/settings.php:61
+msgid "Group Filter"
+msgstr ""
+
+#: templates/settings.php:64
+msgid "Defines the filter to apply, when retrieving groups."
+msgstr ""
+
+#: templates/settings.php:65
+msgid "without any placeholder, e.g. \"objectClass=posixGroup\"."
+msgstr ""
+
+#: templates/settings.php:69
+msgid "Connection Settings"
+msgstr ""
+
+#: templates/settings.php:71
+msgid "Configuration Active"
+msgstr ""
+
+#: templates/settings.php:71
+msgid "When unchecked, this configuration will be skipped."
+msgstr ""
+
+#: templates/settings.php:72
+msgid "Port"
+msgstr ""
+
+#: templates/settings.php:73
+msgid "Backup (Replica) Host"
+msgstr ""
+
+#: templates/settings.php:73
+msgid ""
+"Give an optional backup host. It must be a replica of the main LDAP/AD "
+"server."
+msgstr ""
+
+#: templates/settings.php:74
+msgid "Backup (Replica) Port"
+msgstr ""
+
+#: templates/settings.php:75
+msgid "Disable Main Server"
+msgstr ""
+
+#: templates/settings.php:75
+msgid "When switched on, ownCloud will only connect to the replica server."
+msgstr ""
+
+#: templates/settings.php:76
+msgid "Use TLS"
+msgstr ""
+
+#: templates/settings.php:76
+msgid "Do not use it additionally for LDAPS connections, it will fail."
+msgstr ""
+
+#: templates/settings.php:77
+msgid "Case insensitve LDAP server (Windows)"
+msgstr ""
+
+#: templates/settings.php:78
+msgid "Turn off SSL certificate validation."
+msgstr ""
+
+#: templates/settings.php:78
+msgid ""
+"If connection only works with this option, import the LDAP server's SSL "
+"certificate in your ownCloud server."
+msgstr ""
+
+#: templates/settings.php:78
+msgid "Not recommended, use for testing only."
+msgstr ""
+
+#: templates/settings.php:79
+msgid "Cache Time-To-Live"
+msgstr ""
+
+#: templates/settings.php:79
+msgid "in seconds. A change empties the cache."
+msgstr ""
+
+#: templates/settings.php:81
+msgid "Directory Settings"
+msgstr ""
+
+#: templates/settings.php:83
+msgid "User Display Name Field"
+msgstr ""
+
+#: templates/settings.php:83
+msgid "The LDAP attribute to use to generate the user`s ownCloud name."
+msgstr ""
+
+#: templates/settings.php:84
+msgid "Base User Tree"
+msgstr ""
+
+#: templates/settings.php:84
+msgid "One User Base DN per line"
+msgstr ""
+
+#: templates/settings.php:85
+msgid "User Search Attributes"
+msgstr ""
+
+#: templates/settings.php:85 templates/settings.php:88
+msgid "Optional; one attribute per line"
+msgstr ""
+
+#: templates/settings.php:86
+msgid "Group Display Name Field"
+msgstr ""
+
+#: templates/settings.php:86
+msgid "The LDAP attribute to use to generate the groups`s ownCloud name."
+msgstr ""
+
+#: templates/settings.php:87
+msgid "Base Group Tree"
+msgstr ""
+
+#: templates/settings.php:87
+msgid "One Group Base DN per line"
+msgstr ""
+
+#: templates/settings.php:88
+msgid "Group Search Attributes"
+msgstr ""
+
+#: templates/settings.php:89
+msgid "Group-Member association"
+msgstr ""
+
+#: templates/settings.php:91
+msgid "Special Attributes"
+msgstr ""
+
+#: templates/settings.php:93
+msgid "Quota Field"
+msgstr ""
+
+#: templates/settings.php:94
+msgid "Quota Default"
+msgstr ""
+
+#: templates/settings.php:94
+msgid "in bytes"
+msgstr ""
+
+#: templates/settings.php:95
+msgid "Email Field"
+msgstr ""
+
+#: templates/settings.php:96
+msgid "User Home Folder Naming Rule"
+msgstr ""
+
+#: templates/settings.php:96
+msgid ""
+"Leave empty for user name (default). Otherwise, specify an LDAP/AD "
+"attribute."
+msgstr ""
+
+#: templates/settings.php:101
+msgid "Internal Username"
+msgstr ""
+
+#: templates/settings.php:102
+msgid ""
+"By default the internal username will be created from the UUID attribute. It"
+" makes sure that the username is unique and characters do not need to be "
+"converted. The internal username has the restriction that only these "
+"characters are allowed: [ a-zA-Z0-9_.@- ]. Other characters are replaced "
+"with their ASCII correspondence or simply omitted. On collisions a number "
+"will be added/increased. The internal username is used to identify a user "
+"internally. It is also the default name for the user home folder in "
+"ownCloud. It is also a port of remote URLs, for instance for all *DAV "
+"services. With this setting, the default behaviour can be overriden. To "
+"achieve a similar behaviour as before ownCloud 5 enter the user display name"
+" attribute in the following field. Leave it empty for default behaviour. "
+"Changes will have effect only on newly mapped (added) LDAP users."
+msgstr ""
+
+#: templates/settings.php:103
+msgid "Internal Username Attribute:"
+msgstr ""
+
+#: templates/settings.php:104
+msgid "Override UUID detection"
+msgstr ""
+
+#: templates/settings.php:105
+msgid ""
+"By default, ownCloud autodetects the UUID attribute. The UUID attribute is "
+"used to doubtlessly identify LDAP users and groups. Also, the internal "
+"username will be created based on the UUID, if not specified otherwise "
+"above. You can override the setting and pass an attribute of your choice. "
+"You must make sure that the attribute of your choice can be fetched for both"
+" users and groups and it is unique. Leave it empty for default behaviour. "
+"Changes will have effect only on newly mapped (added) LDAP users and groups."
+msgstr ""
+
+#: templates/settings.php:106
+msgid "UUID Attribute:"
+msgstr ""
+
+#: templates/settings.php:107
+msgid "Username-LDAP User Mapping"
+msgstr ""
+
+#: templates/settings.php:108
+msgid ""
+"ownCloud uses usernames to store and assign (meta) data. In order to "
+"precisely identify and recognize users, each LDAP user will have a internal "
+"username. This requires a mapping from ownCloud username to LDAP user. The "
+"created username is mapped to the UUID of the LDAP user. Additionally the DN"
+" is cached as well to reduce LDAP interaction, but it is not used for "
+"identification. If the DN changes, the changes will be found by ownCloud. "
+"The internal ownCloud name is used all over in ownCloud. Clearing the "
+"Mappings will have leftovers everywhere. Clearing the Mappings is not "
+"configuration sensitive, it affects all LDAP configurations! Do never clear "
+"the mappings in a production environment. Only clear mappings in a testing "
+"or experimental stage."
+msgstr ""
+
+#: templates/settings.php:109
+msgid "Clear Username-LDAP User Mapping"
+msgstr ""
+
+#: templates/settings.php:109
+msgid "Clear Groupname-LDAP Group Mapping"
+msgstr ""
+
+#: templates/settings.php:111
+msgid "Test Configuration"
+msgstr ""
+
+#: templates/settings.php:111
+msgid "Help"
+msgstr ""
diff --git a/l10n/bs/user_webdavauth.po b/l10n/bs/user_webdavauth.po
new file mode 100644
index 00000000000..b082622b17f
--- /dev/null
+++ b/l10n/bs/user_webdavauth.po
@@ -0,0 +1,33 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+#
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: ownCloud\n"
+"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
+"POT-Creation-Date: 2013-06-13 02:16+0200\n"
+"PO-Revision-Date: 2013-06-12 21:41+0000\n"
+"Last-Translator: I Robot \n"
+"Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: bs\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/settings.php:3
+msgid "WebDAV Authentication"
+msgstr ""
+
+#: templates/settings.php:4
+msgid "URL: http://"
+msgstr ""
+
+#: templates/settings.php:7
+msgid ""
+"ownCloud will send the user credentials to this URL. This plugin checks the "
+"response and will interpret the HTTP statuscodes 401 and 403 as invalid "
+"credentials, and all other responses as valid credentials."
+msgstr ""
diff --git a/l10n/ca/core.po b/l10n/ca/core.po
index 2565c7aa646..ef98afa1bba 100644
--- a/l10n/ca/core.po
+++ b/l10n/ca/core.po
@@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:57+0200\n"
-"PO-Revision-Date: 2013-06-10 23:18+0000\n"
+"POT-Creation-Date: 2013-06-13 02:16+0200\n"
+"PO-Revision-Date: 2013-06-12 01:02+0000\n"
"Last-Translator: rogerc\n"
"Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/ca/files.po b/l10n/ca/files.po
index 42bb79a298e..bad7f54ff8e 100644
--- a/l10n/ca/files.po
+++ b/l10n/ca/files.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:18+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:27+0000\n"
"Last-Translator: rogerc\n"
"Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/ca/files_external.po b/l10n/ca/files_external.po
index 5ee2aa50670..4202bcede87 100644
--- a/l10n/ca/files_external.po
+++ b/l10n/ca/files_external.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: rogerc\n"
"Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/ca/files_sharing.po b/l10n/ca/files_sharing.po
index 7c723b69462..b2b6ad1bec6 100644
--- a/l10n/ca/files_sharing.po
+++ b/l10n/ca/files_sharing.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/ca/files_trashbin.po b/l10n/ca/files_trashbin.po
index ddc6cf6bb65..f36679d87f0 100644
--- a/l10n/ca/files_trashbin.po
+++ b/l10n/ca/files_trashbin.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/ca/lib.po b/l10n/ca/lib.po
index e665ff53aa1..0413ebe2656 100644
--- a/l10n/ca/lib.po
+++ b/l10n/ca/lib.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:57+0200\n"
-"PO-Revision-Date: 2013-06-10 23:18+0000\n"
+"POT-Creation-Date: 2013-06-13 02:16+0200\n"
+"PO-Revision-Date: 2013-06-12 01:03+0000\n"
"Last-Translator: rogerc\n"
"Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n"
"MIME-Version: 1.0\n"
@@ -18,27 +18,27 @@ msgstr ""
"Language: ca\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: app.php:357
+#: app.php:358
msgid "Help"
msgstr "Ajuda"
-#: app.php:370
+#: app.php:371
msgid "Personal"
msgstr "Personal"
-#: app.php:381
+#: app.php:382
msgid "Settings"
msgstr "Configuració"
-#: app.php:393
+#: app.php:394
msgid "Users"
msgstr "Usuaris"
-#: app.php:406
+#: app.php:407
msgid "Apps"
msgstr "Aplicacions"
-#: app.php:414
+#: app.php:415
msgid "Admin"
msgstr "Administració"
@@ -114,76 +114,76 @@ msgstr "%s no podeu usar punts en el nom de la base de dades"
msgid "%s set the database host."
msgstr "%s establiu l'ordinador central de la base de dades."
-#: setup.php:132 setup.php:329 setup.php:374
+#: setup.php:126 setup.php:323 setup.php:368
msgid "PostgreSQL username and/or password not valid"
msgstr "Nom d'usuari i/o contrasenya PostgreSQL no vàlids"
-#: setup.php:133 setup.php:238
+#: setup.php:127 setup.php:232
msgid "You need to enter either an existing account or the administrator."
msgstr "Heu d'escriure un compte existent o el d'administrador."
-#: setup.php:155
+#: setup.php:149
msgid "Oracle connection could not be established"
msgstr "No s'ha pogut establir la connexió Oracle"
-#: setup.php:237
+#: setup.php:231
msgid "MySQL username and/or password not valid"
msgstr "Nom d'usuari i/o contrasenya MySQL no vàlids"
-#: setup.php:291 setup.php:395 setup.php:404 setup.php:422 setup.php:432
-#: setup.php:441 setup.php:474 setup.php:540 setup.php:566 setup.php:573
-#: setup.php:584 setup.php:591 setup.php:600 setup.php:608 setup.php:617
-#: setup.php:623
+#: setup.php:285 setup.php:389 setup.php:398 setup.php:416 setup.php:426
+#: setup.php:435 setup.php:468 setup.php:534 setup.php:560 setup.php:567
+#: setup.php:578 setup.php:585 setup.php:594 setup.php:602 setup.php:611
+#: setup.php:617
#, php-format
msgid "DB Error: \"%s\""
msgstr "Error DB: \"%s\""
-#: setup.php:292 setup.php:396 setup.php:405 setup.php:423 setup.php:433
-#: setup.php:442 setup.php:475 setup.php:541 setup.php:567 setup.php:574
-#: setup.php:585 setup.php:601 setup.php:609 setup.php:618
+#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427
+#: setup.php:436 setup.php:469 setup.php:535 setup.php:561 setup.php:568
+#: setup.php:579 setup.php:595 setup.php:603 setup.php:612
#, php-format
msgid "Offending command was: \"%s\""
msgstr "L'ordre en conflicte és: \"%s\""
-#: setup.php:308
+#: setup.php:302
#, php-format
msgid "MySQL user '%s'@'localhost' exists already."
msgstr "L'usuari MySQL '%s'@'localhost' ja existeix."
-#: setup.php:309
+#: setup.php:303
msgid "Drop this user from MySQL"
msgstr "Elimina aquest usuari de MySQL"
-#: setup.php:314
+#: setup.php:308
#, php-format
msgid "MySQL user '%s'@'%%' already exists"
msgstr "L'usuari MySQL '%s'@'%%' ja existeix"
-#: setup.php:315
+#: setup.php:309
msgid "Drop this user from MySQL."
msgstr "Elimina aquest usuari de MySQL."
-#: setup.php:466 setup.php:533
+#: setup.php:460 setup.php:527
msgid "Oracle username and/or password not valid"
msgstr "Nom d'usuari i/o contrasenya Oracle no vàlids"
-#: setup.php:592 setup.php:624
+#: setup.php:586 setup.php:618
#, php-format
msgid "Offending command was: \"%s\", name: %s, password: %s"
msgstr "L'ordre en conflicte és: \"%s\", nom: %s, contrasenya: %s"
-#: setup.php:644
+#: setup.php:638
#, php-format
msgid "MS SQL username and/or password not valid: %s"
msgstr "Nom d'usuari i/o contrasenya MS SQL no vàlids: %s"
-#: setup.php:867
+#: setup.php:861
msgid ""
"Your web server is not yet properly setup to allow files synchronization "
"because the WebDAV interface seems to be broken."
msgstr "El servidor web no està configurat correctament per permetre la sincronització de fitxers perquè la interfície WebDAV sembla no funcionar correctament."
-#: setup.php:868
+#: setup.php:862
#, php-format
msgid "Please double check the installation guides."
msgstr "Comproveu les guies d'instal·lació."
diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po
index 0010c7a0861..4aa5099f541 100644
--- a/l10n/ca/settings.po
+++ b/l10n/ca/settings.po
@@ -9,9 +9,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:57+0200\n"
-"PO-Revision-Date: 2013-06-10 23:57+0000\n"
-"Last-Translator: I Robot \n"
+"POT-Creation-Date: 2013-06-12 02:56+0200\n"
+"PO-Revision-Date: 2013-06-11 23:27+0000\n"
+"Last-Translator: rogerc\n"
"Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -473,7 +473,7 @@ msgstr "Recuperació de contrasenya d'administrador"
msgid ""
"Enter the recovery password in order to recover the users files during "
"password change"
-msgstr ""
+msgstr "Escriviu la contrasenya de recuperació per a poder recuperar els fitxers dels usuaris en canviar la contrasenya"
#: templates/users.php:42
msgid "Default Storage"
diff --git a/l10n/ca/user_ldap.po b/l10n/ca/user_ldap.po
index 67e18fc7d09..338f63d885e 100644
--- a/l10n/ca/user_ldap.po
+++ b/l10n/ca/user_ldap.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:56+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: rogerc\n"
"Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po
index dfb1f059098..8c0df2d2297 100644
--- a/l10n/cs_CZ/core.po
+++ b/l10n/cs_CZ/core.po
@@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:57+0200\n"
-"PO-Revision-Date: 2013-06-10 23:18+0000\n"
+"POT-Creation-Date: 2013-06-13 02:16+0200\n"
+"PO-Revision-Date: 2013-06-12 01:02+0000\n"
"Last-Translator: Tomáš Chvátal \n"
"Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/cs_CZ/files.po b/l10n/cs_CZ/files.po
index 54a2982d2fb..1360e93381d 100644
--- a/l10n/cs_CZ/files.po
+++ b/l10n/cs_CZ/files.po
@@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:18+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:27+0000\n"
"Last-Translator: Tomáš Chvátal \n"
"Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/cs_CZ/files_external.po b/l10n/cs_CZ/files_external.po
index d1025ae695a..d71735e4609 100644
--- a/l10n/cs_CZ/files_external.po
+++ b/l10n/cs_CZ/files_external.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+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"
diff --git a/l10n/cs_CZ/files_sharing.po b/l10n/cs_CZ/files_sharing.po
index 70ad6a2b37a..c56c7025577 100644
--- a/l10n/cs_CZ/files_sharing.po
+++ b/l10n/cs_CZ/files_sharing.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+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"
diff --git a/l10n/cs_CZ/files_trashbin.po b/l10n/cs_CZ/files_trashbin.po
index 39eeb6d46ab..704051fb678 100644
--- a/l10n/cs_CZ/files_trashbin.po
+++ b/l10n/cs_CZ/files_trashbin.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+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"
diff --git a/l10n/cs_CZ/lib.po b/l10n/cs_CZ/lib.po
index ceb1a862886..c5be0d3ff87 100644
--- a/l10n/cs_CZ/lib.po
+++ b/l10n/cs_CZ/lib.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:57+0200\n"
-"PO-Revision-Date: 2013-06-10 23:18+0000\n"
+"POT-Creation-Date: 2013-06-13 02:16+0200\n"
+"PO-Revision-Date: 2013-06-12 01:02+0000\n"
"Last-Translator: Tomáš Chvátal \n"
"Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n"
"MIME-Version: 1.0\n"
@@ -18,27 +18,27 @@ msgstr ""
"Language: cs_CZ\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
-#: app.php:357
+#: app.php:358
msgid "Help"
msgstr "Nápověda"
-#: app.php:370
+#: app.php:371
msgid "Personal"
msgstr "Osobní"
-#: app.php:381
+#: app.php:382
msgid "Settings"
msgstr "Nastavení"
-#: app.php:393
+#: app.php:394
msgid "Users"
msgstr "Uživatelé"
-#: app.php:406
+#: app.php:407
msgid "Apps"
msgstr "Aplikace"
-#: app.php:414
+#: app.php:415
msgid "Admin"
msgstr "Administrace"
@@ -114,76 +114,76 @@ msgstr "V názvu databáze %s nesmíte používat tečky."
msgid "%s set the database host."
msgstr "Zadejte název počítače s databází %s."
-#: setup.php:132 setup.php:329 setup.php:374
+#: setup.php:126 setup.php:323 setup.php:368
msgid "PostgreSQL username and/or password not valid"
msgstr "Uživatelské jméno, či heslo PostgreSQL není platné"
-#: setup.php:133 setup.php:238
+#: setup.php:127 setup.php:232
msgid "You need to enter either an existing account or the administrator."
msgstr "Musíte zadat existující účet, či správce."
-#: setup.php:155
+#: setup.php:149
msgid "Oracle connection could not be established"
msgstr "Spojení s Oracle nemohlo být navázáno"
-#: setup.php:237
+#: setup.php:231
msgid "MySQL username and/or password not valid"
msgstr "Uživatelské jméno, či heslo MySQL není platné"
-#: setup.php:291 setup.php:395 setup.php:404 setup.php:422 setup.php:432
-#: setup.php:441 setup.php:474 setup.php:540 setup.php:566 setup.php:573
-#: setup.php:584 setup.php:591 setup.php:600 setup.php:608 setup.php:617
-#: setup.php:623
+#: setup.php:285 setup.php:389 setup.php:398 setup.php:416 setup.php:426
+#: setup.php:435 setup.php:468 setup.php:534 setup.php:560 setup.php:567
+#: setup.php:578 setup.php:585 setup.php:594 setup.php:602 setup.php:611
+#: setup.php:617
#, php-format
msgid "DB Error: \"%s\""
msgstr "Chyba DB: \"%s\""
-#: setup.php:292 setup.php:396 setup.php:405 setup.php:423 setup.php:433
-#: setup.php:442 setup.php:475 setup.php:541 setup.php:567 setup.php:574
-#: setup.php:585 setup.php:601 setup.php:609 setup.php:618
+#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427
+#: setup.php:436 setup.php:469 setup.php:535 setup.php:561 setup.php:568
+#: setup.php:579 setup.php:595 setup.php:603 setup.php:612
#, php-format
msgid "Offending command was: \"%s\""
msgstr "Podezřelý příkaz byl: \"%s\""
-#: setup.php:308
+#: setup.php:302
#, php-format
msgid "MySQL user '%s'@'localhost' exists already."
msgstr "Uživatel '%s'@'localhost' již v MySQL existuje."
-#: setup.php:309
+#: setup.php:303
msgid "Drop this user from MySQL"
msgstr "Zahodit uživatele z MySQL"
-#: setup.php:314
+#: setup.php:308
#, php-format
msgid "MySQL user '%s'@'%%' already exists"
msgstr "Uživatel '%s'@'%%' již v MySQL existuje"
-#: setup.php:315
+#: setup.php:309
msgid "Drop this user from MySQL."
msgstr "Zahodit uživatele z MySQL."
-#: setup.php:466 setup.php:533
+#: setup.php:460 setup.php:527
msgid "Oracle username and/or password not valid"
msgstr "Uživatelské jméno, či heslo Oracle není platné"
-#: setup.php:592 setup.php:624
+#: setup.php:586 setup.php:618
#, php-format
msgid "Offending command was: \"%s\", name: %s, password: %s"
msgstr "Podezřelý příkaz byl: \"%s\", jméno: %s, heslo: %s"
-#: setup.php:644
+#: setup.php:638
#, php-format
msgid "MS SQL username and/or password not valid: %s"
msgstr "Uživatelské jméno, či heslo MSSQL není platné: %s"
-#: setup.php:867
+#: setup.php:861
msgid ""
"Your web server is not yet properly setup to allow files synchronization "
"because the WebDAV interface seems to be broken."
msgstr "Váš webový server není správně nastaven pro umožnění synchronizace, protože rozhraní WebDAV je rozbité."
-#: setup.php:868
+#: setup.php:862
#, php-format
msgid "Please double check the installation guides."
msgstr "Zkonzultujte, prosím, průvodce instalací."
diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po
index a8446b558af..27e39b977a5 100644
--- a/l10n/cs_CZ/settings.po
+++ b/l10n/cs_CZ/settings.po
@@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:57+0200\n"
-"PO-Revision-Date: 2013-06-10 23:57+0000\n"
-"Last-Translator: I Robot \n"
+"POT-Creation-Date: 2013-06-12 02:56+0200\n"
+"PO-Revision-Date: 2013-06-11 23:27+0000\n"
+"Last-Translator: Tomáš Chvátal \n"
"Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -472,7 +472,7 @@ msgstr "Heslo obnovy správce"
msgid ""
"Enter the recovery password in order to recover the users files during "
"password change"
-msgstr ""
+msgstr "Zadejte heslo obnovy pro obnovení souborů uživatele při změně hesla"
#: templates/users.php:42
msgid "Default Storage"
diff --git a/l10n/cs_CZ/user_ldap.po b/l10n/cs_CZ/user_ldap.po
index be08eb3a9ed..164c9e79768 100644
--- a/l10n/cs_CZ/user_ldap.po
+++ b/l10n/cs_CZ/user_ldap.po
@@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:56+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: Tomáš Chvátal \n"
"Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/cy_GB/core.po b/l10n/cy_GB/core.po
index 0f3f306b05d..48a1364c4e6 100644
--- a/l10n/cy_GB/core.po
+++ b/l10n/cy_GB/core.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:57+0200\n"
-"PO-Revision-Date: 2013-06-10 23:18+0000\n"
+"POT-Creation-Date: 2013-06-13 02:16+0200\n"
+"PO-Revision-Date: 2013-06-12 01:02+0000\n"
"Last-Translator: ubuntucymraeg \n"
"Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/cy_GB/files.po b/l10n/cy_GB/files.po
index 065d8718450..248a4552ca5 100644
--- a/l10n/cy_GB/files.po
+++ b/l10n/cy_GB/files.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:18+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:27+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/cy_GB/files_external.po b/l10n/cy_GB/files_external.po
index 262b2cec28c..db2ab484c96 100644
--- a/l10n/cy_GB/files_external.po
+++ b/l10n/cy_GB/files_external.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/cy_GB/files_sharing.po b/l10n/cy_GB/files_sharing.po
index 60d3faea4fd..d5e8162d9ac 100644
--- a/l10n/cy_GB/files_sharing.po
+++ b/l10n/cy_GB/files_sharing.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: ubuntucymraeg \n"
"Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/cy_GB/files_trashbin.po b/l10n/cy_GB/files_trashbin.po
index e10335ef7b4..5c3f290a67e 100644
--- a/l10n/cy_GB/files_trashbin.po
+++ b/l10n/cy_GB/files_trashbin.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: ubuntucymraeg \n"
"Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/cy_GB/lib.po b/l10n/cy_GB/lib.po
index 386f92d1002..06daabdd763 100644
--- a/l10n/cy_GB/lib.po
+++ b/l10n/cy_GB/lib.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:57+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-13 02:16+0200\n"
+"PO-Revision-Date: 2013-06-12 01:03+0000\n"
"Last-Translator: ubuntucymraeg \n"
"Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n"
"MIME-Version: 1.0\n"
@@ -17,27 +17,27 @@ msgstr ""
"Language: cy_GB\n"
"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n"
-#: app.php:357
+#: app.php:358
msgid "Help"
msgstr "Cymorth"
-#: app.php:370
+#: app.php:371
msgid "Personal"
msgstr "Personol"
-#: app.php:381
+#: app.php:382
msgid "Settings"
msgstr "Gosodiadau"
-#: app.php:393
+#: app.php:394
msgid "Users"
msgstr "Defnyddwyr"
-#: app.php:406
+#: app.php:407
msgid "Apps"
msgstr "Pecynnau"
-#: app.php:414
+#: app.php:415
msgid "Admin"
msgstr "Gweinyddu"
@@ -113,76 +113,76 @@ msgstr "%s does dim hawl defnyddio dot yn enw'r gronfa ddata"
msgid "%s set the database host."
msgstr "%s gosod gwesteiwr y gronfa ddata."
-#: setup.php:132 setup.php:329 setup.php:374
+#: setup.php:126 setup.php:323 setup.php:368
msgid "PostgreSQL username and/or password not valid"
msgstr "Enw a/neu gyfrinair PostgreSQL annilys"
-#: setup.php:133 setup.php:238
+#: setup.php:127 setup.php:232
msgid "You need to enter either an existing account or the administrator."
msgstr "Rhaid i chi naill ai gyflwyno cyfrif presennol neu'r gweinyddwr."
-#: setup.php:155
+#: setup.php:149
msgid "Oracle connection could not be established"
msgstr ""
-#: setup.php:237
+#: setup.php:231
msgid "MySQL username and/or password not valid"
msgstr "Enw a/neu gyfrinair MySQL annilys"
-#: setup.php:291 setup.php:395 setup.php:404 setup.php:422 setup.php:432
-#: setup.php:441 setup.php:474 setup.php:540 setup.php:566 setup.php:573
-#: setup.php:584 setup.php:591 setup.php:600 setup.php:608 setup.php:617
-#: setup.php:623
+#: setup.php:285 setup.php:389 setup.php:398 setup.php:416 setup.php:426
+#: setup.php:435 setup.php:468 setup.php:534 setup.php:560 setup.php:567
+#: setup.php:578 setup.php:585 setup.php:594 setup.php:602 setup.php:611
+#: setup.php:617
#, php-format
msgid "DB Error: \"%s\""
msgstr "Gwall DB: \"%s\""
-#: setup.php:292 setup.php:396 setup.php:405 setup.php:423 setup.php:433
-#: setup.php:442 setup.php:475 setup.php:541 setup.php:567 setup.php:574
-#: setup.php:585 setup.php:601 setup.php:609 setup.php:618
+#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427
+#: setup.php:436 setup.php:469 setup.php:535 setup.php:561 setup.php:568
+#: setup.php:579 setup.php:595 setup.php:603 setup.php:612
#, php-format
msgid "Offending command was: \"%s\""
msgstr "Y gorchymyn wnaeth beri tramgwydd oedd: \"%s\""
-#: setup.php:308
+#: setup.php:302
#, php-format
msgid "MySQL user '%s'@'localhost' exists already."
msgstr "Defnyddiwr MySQL '%s'@'localhost' yn bodoli eisoes."
-#: setup.php:309
+#: setup.php:303
msgid "Drop this user from MySQL"
msgstr "Gollwng y defnyddiwr hwn o MySQL"
-#: setup.php:314
+#: setup.php:308
#, php-format
msgid "MySQL user '%s'@'%%' already exists"
msgstr "Defnyddiwr MySQL '%s'@'%%' eisoes yn bodoli"
-#: setup.php:315
+#: setup.php:309
msgid "Drop this user from MySQL."
msgstr "Gollwng y defnyddiwr hwn o MySQL."
-#: setup.php:466 setup.php:533
+#: setup.php:460 setup.php:527
msgid "Oracle username and/or password not valid"
msgstr "Enw a/neu gyfrinair Oracle annilys"
-#: setup.php:592 setup.php:624
+#: setup.php:586 setup.php:618
#, php-format
msgid "Offending command was: \"%s\", name: %s, password: %s"
msgstr "Y gorchymyn wnaeth beri tramgwydd oedd: \"%s\", enw: %s, cyfrinair: %s"
-#: setup.php:644
+#: setup.php:638
#, php-format
msgid "MS SQL username and/or password not valid: %s"
msgstr "Enw a/neu gyfrinair MS SQL annilys: %s"
-#: setup.php:867
+#: setup.php:861
msgid ""
"Your web server is not yet properly setup to allow files synchronization "
"because the WebDAV interface seems to be broken."
msgstr "Nid yw eich gweinydd wedi'i gyflunio eto i ganiatáu cydweddu ffeiliau oherwydd bod y rhyngwyneb WebDAV wedi torri."
-#: setup.php:868
+#: setup.php:862
#, php-format
msgid "Please double check the installation guides."
msgstr "Gwiriwch y canllawiau gosod eto."
diff --git a/l10n/cy_GB/settings.po b/l10n/cy_GB/settings.po
index 9f161a69446..f84626907a2 100644
--- a/l10n/cy_GB/settings.po
+++ b/l10n/cy_GB/settings.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:57+0200\n"
-"PO-Revision-Date: 2013-06-10 23:57+0000\n"
+"POT-Creation-Date: 2013-06-12 02:56+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/cy_GB/user_ldap.po b/l10n/cy_GB/user_ldap.po
index 7ffdef7c869..0dc7e5dc83c 100644
--- a/l10n/cy_GB/user_ldap.po
+++ b/l10n/cy_GB/user_ldap.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:56+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/da/core.po b/l10n/da/core.po
index 96a3b038bf0..6bfaf5b2522 100644
--- a/l10n/da/core.po
+++ b/l10n/da/core.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:57+0200\n"
-"PO-Revision-Date: 2013-06-10 23:18+0000\n"
+"POT-Creation-Date: 2013-06-13 02:16+0200\n"
+"PO-Revision-Date: 2013-06-12 01:02+0000\n"
"Last-Translator: Peter Jespersen \n"
"Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/da/files.po b/l10n/da/files.po
index 02939ca19cf..eea893fecb0 100644
--- a/l10n/da/files.po
+++ b/l10n/da/files.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:18+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:27+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/da/files_external.po b/l10n/da/files_external.po
index e16624e1769..4406ce7b6cc 100644
--- a/l10n/da/files_external.po
+++ b/l10n/da/files_external.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+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"
diff --git a/l10n/da/files_sharing.po b/l10n/da/files_sharing.po
index 3fd2b7f196b..14f93b8eff2 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: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+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"
diff --git a/l10n/da/files_trashbin.po b/l10n/da/files_trashbin.po
index fa25aa9b14e..537aa7e9cc5 100644
--- a/l10n/da/files_trashbin.po
+++ b/l10n/da/files_trashbin.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+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"
diff --git a/l10n/da/lib.po b/l10n/da/lib.po
index b425c174577..4a091141705 100644
--- a/l10n/da/lib.po
+++ b/l10n/da/lib.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:57+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-13 02:16+0200\n"
+"PO-Revision-Date: 2013-06-12 01: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,27 +17,27 @@ msgstr ""
"Language: da\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: app.php:357
+#: app.php:358
msgid "Help"
msgstr "Hjælp"
-#: app.php:370
+#: app.php:371
msgid "Personal"
msgstr "Personligt"
-#: app.php:381
+#: app.php:382
msgid "Settings"
msgstr "Indstillinger"
-#: app.php:393
+#: app.php:394
msgid "Users"
msgstr "Brugere"
-#: app.php:406
+#: app.php:407
msgid "Apps"
msgstr "Apps"
-#: app.php:414
+#: app.php:415
msgid "Admin"
msgstr "Admin"
@@ -113,76 +113,76 @@ msgstr "%s du må ikke bruge punktummer i databasenavnet."
msgid "%s set the database host."
msgstr "%s sæt database værten."
-#: setup.php:132 setup.php:329 setup.php:374
+#: setup.php:126 setup.php:323 setup.php:368
msgid "PostgreSQL username and/or password not valid"
msgstr "PostgreSQL brugernavn og/eller kodeord er ikke gyldigt."
-#: setup.php:133 setup.php:238
+#: setup.php:127 setup.php:232
msgid "You need to enter either an existing account or the administrator."
msgstr "Du bliver nødt til at indtaste en eksisterende bruger eller en administrator."
-#: setup.php:155
+#: setup.php:149
msgid "Oracle connection could not be established"
msgstr ""
-#: setup.php:237
+#: setup.php:231
msgid "MySQL username and/or password not valid"
msgstr "MySQL brugernavn og/eller kodeord er ikke gyldigt."
-#: setup.php:291 setup.php:395 setup.php:404 setup.php:422 setup.php:432
-#: setup.php:441 setup.php:474 setup.php:540 setup.php:566 setup.php:573
-#: setup.php:584 setup.php:591 setup.php:600 setup.php:608 setup.php:617
-#: setup.php:623
+#: setup.php:285 setup.php:389 setup.php:398 setup.php:416 setup.php:426
+#: setup.php:435 setup.php:468 setup.php:534 setup.php:560 setup.php:567
+#: setup.php:578 setup.php:585 setup.php:594 setup.php:602 setup.php:611
+#: setup.php:617
#, php-format
msgid "DB Error: \"%s\""
msgstr "Databasefejl: \"%s\""
-#: setup.php:292 setup.php:396 setup.php:405 setup.php:423 setup.php:433
-#: setup.php:442 setup.php:475 setup.php:541 setup.php:567 setup.php:574
-#: setup.php:585 setup.php:601 setup.php:609 setup.php:618
+#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427
+#: setup.php:436 setup.php:469 setup.php:535 setup.php:561 setup.php:568
+#: setup.php:579 setup.php:595 setup.php:603 setup.php:612
#, php-format
msgid "Offending command was: \"%s\""
msgstr "Fejlende kommando var: \"%s\""
-#: setup.php:308
+#: setup.php:302
#, php-format
msgid "MySQL user '%s'@'localhost' exists already."
msgstr "MySQL brugeren '%s'@'localhost' eksisterer allerede."
-#: setup.php:309
+#: setup.php:303
msgid "Drop this user from MySQL"
msgstr "Slet denne bruger fra MySQL"
-#: setup.php:314
+#: setup.php:308
#, php-format
msgid "MySQL user '%s'@'%%' already exists"
msgstr "MySQL brugeren '%s'@'%%' eksisterer allerede."
-#: setup.php:315
+#: setup.php:309
msgid "Drop this user from MySQL."
msgstr "Slet denne bruger fra MySQL"
-#: setup.php:466 setup.php:533
+#: setup.php:460 setup.php:527
msgid "Oracle username and/or password not valid"
msgstr "Oracle brugernavn og/eller kodeord er ikke gyldigt."
-#: setup.php:592 setup.php:624
+#: setup.php:586 setup.php:618
#, php-format
msgid "Offending command was: \"%s\", name: %s, password: %s"
msgstr "Fejlende kommando var: \"%s\", navn: %s, password: %s"
-#: setup.php:644
+#: setup.php:638
#, php-format
msgid "MS SQL username and/or password not valid: %s"
msgstr "MS SQL brugernavn og/eller adgangskode ikke er gyldigt: %s"
-#: setup.php:867
+#: setup.php:861
msgid ""
"Your web server is not yet properly setup to allow files synchronization "
"because the WebDAV interface seems to be broken."
msgstr "Din webserver er endnu ikke sat op til at tillade fil synkronisering fordi WebDAV grænsefladen virker ødelagt."
-#: setup.php:868
+#: setup.php:862
#, php-format
msgid "Please double check the installation guides."
msgstr "Dobbelttjek venligst installations vejledningerne."
diff --git a/l10n/da/settings.po b/l10n/da/settings.po
index 6a40d877923..c761ed1efd9 100644
--- a/l10n/da/settings.po
+++ b/l10n/da/settings.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:57+0200\n"
-"PO-Revision-Date: 2013-06-10 23:57+0000\n"
+"POT-Creation-Date: 2013-06-12 02:56+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+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"
diff --git a/l10n/da/user_ldap.po b/l10n/da/user_ldap.po
index 20a5e8e39cf..f3657f500e8 100644
--- a/l10n/da/user_ldap.po
+++ b/l10n/da/user_ldap.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:56+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+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"
diff --git a/l10n/de/core.po b/l10n/de/core.po
index 4b9a7ea7059..fa8cf2aa23b 100644
--- a/l10n/de/core.po
+++ b/l10n/de/core.po
@@ -11,8 +11,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:57+0200\n"
-"PO-Revision-Date: 2013-06-10 23:18+0000\n"
+"POT-Creation-Date: 2013-06-13 02:16+0200\n"
+"PO-Revision-Date: 2013-06-12 01:02+0000\n"
"Last-Translator: ninov \n"
"Language-Team: German \n"
"MIME-Version: 1.0\n"
diff --git a/l10n/de/files.po b/l10n/de/files.po
index 1628e9fad1a..53c74030dbd 100644
--- a/l10n/de/files.po
+++ b/l10n/de/files.po
@@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:18+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:27+0000\n"
"Last-Translator: ninov \n"
"Language-Team: German \n"
"MIME-Version: 1.0\n"
diff --git a/l10n/de/files_external.po b/l10n/de/files_external.po
index bb017db8949..2ad51443ea3 100644
--- a/l10n/de/files_external.po
+++ b/l10n/de/files_external.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: Mirodin \n"
"Language-Team: German \n"
"MIME-Version: 1.0\n"
diff --git a/l10n/de/files_sharing.po b/l10n/de/files_sharing.po
index 05f66c09587..b8513cd97b6 100644
--- a/l10n/de/files_sharing.po
+++ b/l10n/de/files_sharing.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: Mirodin \n"
"Language-Team: German \n"
"MIME-Version: 1.0\n"
diff --git a/l10n/de/files_trashbin.po b/l10n/de/files_trashbin.po
index 37abe3caccb..b31d8481e26 100644
--- a/l10n/de/files_trashbin.po
+++ b/l10n/de/files_trashbin.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: Mirodin \n"
"Language-Team: German \n"
"MIME-Version: 1.0\n"
diff --git a/l10n/de/lib.po b/l10n/de/lib.po
index fe236b8ee94..122f5804cda 100644
--- a/l10n/de/lib.po
+++ b/l10n/de/lib.po
@@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:57+0200\n"
-"PO-Revision-Date: 2013-06-10 23:18+0000\n"
+"POT-Creation-Date: 2013-06-13 02:16+0200\n"
+"PO-Revision-Date: 2013-06-12 01:02+0000\n"
"Last-Translator: ninov \n"
"Language-Team: German \n"
"MIME-Version: 1.0\n"
@@ -19,27 +19,27 @@ msgstr ""
"Language: de\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: app.php:357
+#: app.php:358
msgid "Help"
msgstr "Hilfe"
-#: app.php:370
+#: app.php:371
msgid "Personal"
msgstr "Persönlich"
-#: app.php:381
+#: app.php:382
msgid "Settings"
msgstr "Einstellungen"
-#: app.php:393
+#: app.php:394
msgid "Users"
msgstr "Benutzer"
-#: app.php:406
+#: app.php:407
msgid "Apps"
msgstr "Apps"
-#: app.php:414
+#: app.php:415
msgid "Admin"
msgstr "Administration"
@@ -115,76 +115,76 @@ msgstr "%s Der Datenbank-Name darf keine Punkte enthalten"
msgid "%s set the database host."
msgstr "%s setze den Datenbank-Host"
-#: setup.php:132 setup.php:329 setup.php:374
+#: setup.php:126 setup.php:323 setup.php:368
msgid "PostgreSQL username and/or password not valid"
msgstr "PostgreSQL Benutzername und/oder Passwort ungültig"
-#: setup.php:133 setup.php:238
+#: setup.php:127 setup.php:232
msgid "You need to enter either an existing account or the administrator."
msgstr "Du musst entweder ein existierendes Benutzerkonto oder das Administratoren-Konto angeben."
-#: setup.php:155
+#: setup.php:149
msgid "Oracle connection could not be established"
msgstr "Es konnte keine Verbindung zur Oracle-Datenbank hergestellt werden"
-#: setup.php:237
+#: setup.php:231
msgid "MySQL username and/or password not valid"
msgstr "MySQL Benutzername und/oder Passwort ungültig"
-#: setup.php:291 setup.php:395 setup.php:404 setup.php:422 setup.php:432
-#: setup.php:441 setup.php:474 setup.php:540 setup.php:566 setup.php:573
-#: setup.php:584 setup.php:591 setup.php:600 setup.php:608 setup.php:617
-#: setup.php:623
+#: setup.php:285 setup.php:389 setup.php:398 setup.php:416 setup.php:426
+#: setup.php:435 setup.php:468 setup.php:534 setup.php:560 setup.php:567
+#: setup.php:578 setup.php:585 setup.php:594 setup.php:602 setup.php:611
+#: setup.php:617
#, php-format
msgid "DB Error: \"%s\""
msgstr "DB Fehler: \"%s\""
-#: setup.php:292 setup.php:396 setup.php:405 setup.php:423 setup.php:433
-#: setup.php:442 setup.php:475 setup.php:541 setup.php:567 setup.php:574
-#: setup.php:585 setup.php:601 setup.php:609 setup.php:618
+#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427
+#: setup.php:436 setup.php:469 setup.php:535 setup.php:561 setup.php:568
+#: setup.php:579 setup.php:595 setup.php:603 setup.php:612
#, php-format
msgid "Offending command was: \"%s\""
msgstr "Fehlerhafter Befehl war: \"%s\""
-#: setup.php:308
+#: setup.php:302
#, php-format
msgid "MySQL user '%s'@'localhost' exists already."
msgstr "MySQL Benutzer '%s'@'localhost' existiert bereits."
-#: setup.php:309
+#: setup.php:303
msgid "Drop this user from MySQL"
msgstr "Lösche diesen Benutzer von MySQL"
-#: setup.php:314
+#: setup.php:308
#, php-format
msgid "MySQL user '%s'@'%%' already exists"
msgstr "MySQL Benutzer '%s'@'%%' existiert bereits"
-#: setup.php:315
+#: setup.php:309
msgid "Drop this user from MySQL."
msgstr "Lösche diesen Benutzer aus MySQL."
-#: setup.php:466 setup.php:533
+#: setup.php:460 setup.php:527
msgid "Oracle username and/or password not valid"
msgstr "Oracle Benutzername und/oder Passwort ungültig"
-#: setup.php:592 setup.php:624
+#: setup.php:586 setup.php:618
#, php-format
msgid "Offending command was: \"%s\", name: %s, password: %s"
msgstr "Fehlerhafter Befehl war: \"%s\", Name: %s, Passwort: %s"
-#: setup.php:644
+#: setup.php:638
#, php-format
msgid "MS SQL username and/or password not valid: %s"
msgstr "MS SQL Benutzername und/oder Password ungültig: %s"
-#: setup.php:867
+#: setup.php:861
msgid ""
"Your web server is not yet properly setup to allow files synchronization "
"because the WebDAV interface seems to be broken."
msgstr "Dein Web-Server ist noch nicht für Datei-Synchronisation bereit, weil die WebDAV-Schnittstelle vermutlich defekt ist."
-#: setup.php:868
+#: setup.php:862
#, php-format
msgid "Please double check the installation guides."
msgstr "Bitte prüfe die Installationsanleitungen."
diff --git a/l10n/de/settings.po b/l10n/de/settings.po
index a26dae98093..271c738d01f 100644
--- a/l10n/de/settings.po
+++ b/l10n/de/settings.po
@@ -10,8 +10,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:57+0200\n"
-"PO-Revision-Date: 2013-06-10 23:57+0000\n"
+"POT-Creation-Date: 2013-06-12 02:56+0200\n"
+"PO-Revision-Date: 2013-06-11 23:27+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: German \n"
"MIME-Version: 1.0\n"
diff --git a/l10n/de/user_ldap.po b/l10n/de/user_ldap.po
index 81819cf6a19..69e53882b1b 100644
--- a/l10n/de/user_ldap.po
+++ b/l10n/de/user_ldap.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:56+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: German \n"
"MIME-Version: 1.0\n"
diff --git a/l10n/de_DE/core.po b/l10n/de_DE/core.po
index 58782c2d64a..cd2163877ad 100644
--- a/l10n/de_DE/core.po
+++ b/l10n/de_DE/core.po
@@ -11,8 +11,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:57+0200\n"
-"PO-Revision-Date: 2013-06-10 23:18+0000\n"
+"POT-Creation-Date: 2013-06-13 02:16+0200\n"
+"PO-Revision-Date: 2013-06-12 01:02+0000\n"
"Last-Translator: traductor \n"
"Language-Team: German (Germany) \n"
"MIME-Version: 1.0\n"
diff --git a/l10n/de_DE/files.po b/l10n/de_DE/files.po
index a80df87fa69..ab8b5fadfbe 100644
--- a/l10n/de_DE/files.po
+++ b/l10n/de_DE/files.po
@@ -10,8 +10,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:18+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:27+0000\n"
"Last-Translator: a.tangemann \n"
"Language-Team: German (Germany) \n"
"MIME-Version: 1.0\n"
diff --git a/l10n/de_DE/files_external.po b/l10n/de_DE/files_external.po
index bba770a5453..c22e70ce0b5 100644
--- a/l10n/de_DE/files_external.po
+++ b/l10n/de_DE/files_external.po
@@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: Mirodin \n"
"Language-Team: German (Germany) \n"
"MIME-Version: 1.0\n"
diff --git a/l10n/de_DE/files_sharing.po b/l10n/de_DE/files_sharing.po
index 6ac126c213f..9b53044eef7 100644
--- a/l10n/de_DE/files_sharing.po
+++ b/l10n/de_DE/files_sharing.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: Mirodin \n"
"Language-Team: German (Germany) \n"
"MIME-Version: 1.0\n"
diff --git a/l10n/de_DE/files_trashbin.po b/l10n/de_DE/files_trashbin.po
index 00f2533ca89..8de7dd8684f 100644
--- a/l10n/de_DE/files_trashbin.po
+++ b/l10n/de_DE/files_trashbin.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: Mirodin \n"
"Language-Team: German (Germany) \n"
"MIME-Version: 1.0\n"
diff --git a/l10n/de_DE/lib.po b/l10n/de_DE/lib.po
index b90698dca67..a1de071d051 100644
--- a/l10n/de_DE/lib.po
+++ b/l10n/de_DE/lib.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:57+0200\n"
-"PO-Revision-Date: 2013-06-10 23:18+0000\n"
+"POT-Creation-Date: 2013-06-13 02:16+0200\n"
+"PO-Revision-Date: 2013-06-12 01:02+0000\n"
"Last-Translator: traductor \n"
"Language-Team: German (Germany) \n"
"MIME-Version: 1.0\n"
@@ -18,27 +18,27 @@ msgstr ""
"Language: de_DE\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: app.php:357
+#: app.php:358
msgid "Help"
msgstr "Hilfe"
-#: app.php:370
+#: app.php:371
msgid "Personal"
msgstr "Persönlich"
-#: app.php:381
+#: app.php:382
msgid "Settings"
msgstr "Einstellungen"
-#: app.php:393
+#: app.php:394
msgid "Users"
msgstr "Benutzer"
-#: app.php:406
+#: app.php:407
msgid "Apps"
msgstr "Apps"
-#: app.php:414
+#: app.php:415
msgid "Admin"
msgstr "Administrator"
@@ -114,76 +114,76 @@ msgstr "%s Der Datenbank-Name darf keine Punkte enthalten"
msgid "%s set the database host."
msgstr "%s setze den Datenbank-Host"
-#: setup.php:132 setup.php:329 setup.php:374
+#: setup.php:126 setup.php:323 setup.php:368
msgid "PostgreSQL username and/or password not valid"
msgstr "PostgreSQL Benutzername und/oder Passwort ungültig"
-#: setup.php:133 setup.php:238
+#: setup.php:127 setup.php:232
msgid "You need to enter either an existing account or the administrator."
msgstr "Sie müssen entweder ein existierendes Benutzerkonto oder das Administratoren-Konto angeben."
-#: setup.php:155
+#: setup.php:149
msgid "Oracle connection could not be established"
msgstr "Die Oracle-Verbindung konnte nicht aufgebaut werden."
-#: setup.php:237
+#: setup.php:231
msgid "MySQL username and/or password not valid"
msgstr "MySQL Benutzername und/oder Passwort ungültig"
-#: setup.php:291 setup.php:395 setup.php:404 setup.php:422 setup.php:432
-#: setup.php:441 setup.php:474 setup.php:540 setup.php:566 setup.php:573
-#: setup.php:584 setup.php:591 setup.php:600 setup.php:608 setup.php:617
-#: setup.php:623
+#: setup.php:285 setup.php:389 setup.php:398 setup.php:416 setup.php:426
+#: setup.php:435 setup.php:468 setup.php:534 setup.php:560 setup.php:567
+#: setup.php:578 setup.php:585 setup.php:594 setup.php:602 setup.php:611
+#: setup.php:617
#, php-format
msgid "DB Error: \"%s\""
msgstr "DB Fehler: \"%s\""
-#: setup.php:292 setup.php:396 setup.php:405 setup.php:423 setup.php:433
-#: setup.php:442 setup.php:475 setup.php:541 setup.php:567 setup.php:574
-#: setup.php:585 setup.php:601 setup.php:609 setup.php:618
+#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427
+#: setup.php:436 setup.php:469 setup.php:535 setup.php:561 setup.php:568
+#: setup.php:579 setup.php:595 setup.php:603 setup.php:612
#, php-format
msgid "Offending command was: \"%s\""
msgstr "Fehlerhafter Befehl war: \"%s\""
-#: setup.php:308
+#: setup.php:302
#, php-format
msgid "MySQL user '%s'@'localhost' exists already."
msgstr "MySQL Benutzer '%s'@'localhost' existiert bereits."
-#: setup.php:309
+#: setup.php:303
msgid "Drop this user from MySQL"
msgstr "Lösche diesen Benutzer aus MySQL"
-#: setup.php:314
+#: setup.php:308
#, php-format
msgid "MySQL user '%s'@'%%' already exists"
msgstr "MySQL Benutzer '%s'@'%%' existiert bereits"
-#: setup.php:315
+#: setup.php:309
msgid "Drop this user from MySQL."
msgstr "Lösche diesen Benutzer aus MySQL."
-#: setup.php:466 setup.php:533
+#: setup.php:460 setup.php:527
msgid "Oracle username and/or password not valid"
msgstr "Oracle Benutzername und/oder Passwort ungültig"
-#: setup.php:592 setup.php:624
+#: setup.php:586 setup.php:618
#, php-format
msgid "Offending command was: \"%s\", name: %s, password: %s"
msgstr "Fehlerhafter Befehl war: \"%s\", Name: %s, Passwort: %s"
-#: setup.php:644
+#: setup.php:638
#, php-format
msgid "MS SQL username and/or password not valid: %s"
msgstr "MS SQL Benutzername und/oder Passwort ungültig: %s"
-#: setup.php:867
+#: setup.php:861
msgid ""
"Your web server is not yet properly setup to allow files synchronization "
"because the WebDAV interface seems to be broken."
msgstr "Ihr Web-Server ist noch nicht für eine Datei-Synchronisation konfiguriert, weil die WebDAV-Schnittstelle vermutlich defekt ist."
-#: setup.php:868
+#: setup.php:862
#, php-format
msgid "Please double check the installation guides."
msgstr "Bitte prüfen Sie die Installationsanleitungen."
diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po
index 52845a98edf..e83776b2f4d 100644
--- a/l10n/de_DE/settings.po
+++ b/l10n/de_DE/settings.po
@@ -11,8 +11,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:57+0200\n"
-"PO-Revision-Date: 2013-06-10 23:57+0000\n"
+"POT-Creation-Date: 2013-06-12 02:56+0200\n"
+"PO-Revision-Date: 2013-06-11 23:27+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: German (Germany) \n"
"MIME-Version: 1.0\n"
diff --git a/l10n/de_DE/user_ldap.po b/l10n/de_DE/user_ldap.po
index 3fda98cb9d0..b7b54c71e06 100644
--- a/l10n/de_DE/user_ldap.po
+++ b/l10n/de_DE/user_ldap.po
@@ -10,8 +10,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:56+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: traductor \n"
"Language-Team: German (Germany) \n"
"MIME-Version: 1.0\n"
diff --git a/l10n/el/core.po b/l10n/el/core.po
index 48d7917de06..fe898892de3 100644
--- a/l10n/el/core.po
+++ b/l10n/el/core.po
@@ -10,8 +10,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:57+0200\n"
-"PO-Revision-Date: 2013-06-10 23:18+0000\n"
+"POT-Creation-Date: 2013-06-13 02:16+0200\n"
+"PO-Revision-Date: 2013-06-12 01:02+0000\n"
"Last-Translator: Teogramm \n"
"Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/el/files.po b/l10n/el/files.po
index cfef12ba5f4..2f569777b31 100644
--- a/l10n/el/files.po
+++ b/l10n/el/files.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:18+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:27+0000\n"
"Last-Translator: Efstathios Iosifidis \n"
"Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/el/files_external.po b/l10n/el/files_external.po
index 88b11e4a3b6..35aaea8e906 100644
--- a/l10n/el/files_external.po
+++ b/l10n/el/files_external.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: KAT.RAT12 \n"
"Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/el/files_sharing.po b/l10n/el/files_sharing.po
index 61e1795f73d..0bc6c891d0e 100644
--- a/l10n/el/files_sharing.po
+++ b/l10n/el/files_sharing.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/el/files_trashbin.po b/l10n/el/files_trashbin.po
index 9b1650a44db..bd810400736 100644
--- a/l10n/el/files_trashbin.po
+++ b/l10n/el/files_trashbin.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/el/lib.po b/l10n/el/lib.po
index f182d3bc743..7969c089566 100644
--- a/l10n/el/lib.po
+++ b/l10n/el/lib.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:57+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-13 02:16+0200\n"
+"PO-Revision-Date: 2013-06-12 01: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"
@@ -17,27 +17,27 @@ msgstr ""
"Language: el\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: app.php:357
+#: app.php:358
msgid "Help"
msgstr "Βοήθεια"
-#: app.php:370
+#: app.php:371
msgid "Personal"
msgstr "Προσωπικά"
-#: app.php:381
+#: app.php:382
msgid "Settings"
msgstr "Ρυθμίσεις"
-#: app.php:393
+#: app.php:394
msgid "Users"
msgstr "Χρήστες"
-#: app.php:406
+#: app.php:407
msgid "Apps"
msgstr "Εφαρμογές"
-#: app.php:414
+#: app.php:415
msgid "Admin"
msgstr "Διαχειριστής"
@@ -113,76 +113,76 @@ msgstr "%s μάλλον δεν χρησιμοποιείτε τελείες στ
msgid "%s set the database host."
msgstr "%s ρυθμίση του κεντρικόυ υπολογιστή βάσης δεδομένων. "
-#: setup.php:132 setup.php:329 setup.php:374
+#: setup.php:126 setup.php:323 setup.php:368
msgid "PostgreSQL username and/or password not valid"
msgstr "Μη έγκυρος χρήστης και/ή συνθηματικό της PostgreSQL"
-#: setup.php:133 setup.php:238
+#: setup.php:127 setup.php:232
msgid "You need to enter either an existing account or the administrator."
msgstr "Χρειάζεται να εισάγετε είτε έναν υπάρχον λογαριασμό ή του διαχειριστή."
-#: setup.php:155
+#: setup.php:149
msgid "Oracle connection could not be established"
msgstr ""
-#: setup.php:237
+#: setup.php:231
msgid "MySQL username and/or password not valid"
msgstr "Μη έγκυρος χρήστης και/ή συνθηματικό της MySQL"
-#: setup.php:291 setup.php:395 setup.php:404 setup.php:422 setup.php:432
-#: setup.php:441 setup.php:474 setup.php:540 setup.php:566 setup.php:573
-#: setup.php:584 setup.php:591 setup.php:600 setup.php:608 setup.php:617
-#: setup.php:623
+#: setup.php:285 setup.php:389 setup.php:398 setup.php:416 setup.php:426
+#: setup.php:435 setup.php:468 setup.php:534 setup.php:560 setup.php:567
+#: setup.php:578 setup.php:585 setup.php:594 setup.php:602 setup.php:611
+#: setup.php:617
#, php-format
msgid "DB Error: \"%s\""
msgstr "Σφάλμα Βάσης Δεδομένων: \"%s\""
-#: setup.php:292 setup.php:396 setup.php:405 setup.php:423 setup.php:433
-#: setup.php:442 setup.php:475 setup.php:541 setup.php:567 setup.php:574
-#: setup.php:585 setup.php:601 setup.php:609 setup.php:618
+#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427
+#: setup.php:436 setup.php:469 setup.php:535 setup.php:561 setup.php:568
+#: setup.php:579 setup.php:595 setup.php:603 setup.php:612
#, php-format
msgid "Offending command was: \"%s\""
msgstr "Η εντολη παραβατικοτητας ηταν: \"%s\""
-#: setup.php:308
+#: setup.php:302
#, php-format
msgid "MySQL user '%s'@'localhost' exists already."
msgstr "Υπάρχει ήδη ο χρήστης '%s'@'localhost' της MySQL."
-#: setup.php:309
+#: setup.php:303
msgid "Drop this user from MySQL"
msgstr "Απόρριψη αυτού του χρήστη από την MySQL"
-#: setup.php:314
+#: setup.php:308
#, php-format
msgid "MySQL user '%s'@'%%' already exists"
msgstr "Ο χρήστης '%s'@'%%' της MySQL υπάρχει ήδη"
-#: setup.php:315
+#: setup.php:309
msgid "Drop this user from MySQL."
msgstr "Απόρριψη αυτού του χρήστη από την MySQL"
-#: setup.php:466 setup.php:533
+#: setup.php:460 setup.php:527
msgid "Oracle username and/or password not valid"
msgstr "Μη έγκυρος χρήστης και/ή συνθηματικό της Oracle"
-#: setup.php:592 setup.php:624
+#: setup.php:586 setup.php:618
#, php-format
msgid "Offending command was: \"%s\", name: %s, password: %s"
msgstr "Η εντολη παραβατικοτητας ηταν: \"%s\", ονομα: %s, κωδικος: %s"
-#: setup.php:644
+#: setup.php:638
#, php-format
msgid "MS SQL username and/or password not valid: %s"
msgstr "Το όνομα χρήστη και/ή ο κωδικός της MS SQL δεν είναι έγκυρα: %s"
-#: setup.php:867
+#: setup.php:861
msgid ""
"Your web server is not yet properly setup to allow files synchronization "
"because the WebDAV interface seems to be broken."
msgstr "Ο διακομιστής σας δεν έχει ρυθμιστεί κατάλληλα ώστε να επιτρέπει τον συγχρονισμό αρχείων γιατί η διεπαφή WebDAV πιθανόν να είναι κατεστραμμένη."
-#: setup.php:868
+#: setup.php:862
#, php-format
msgid "Please double check the installation guides."
msgstr "Ελέγξτε ξανά τις οδηγίες εγκατάστασης."
diff --git a/l10n/el/settings.po b/l10n/el/settings.po
index 35e9e3ae423..2bc54778f85 100644
--- a/l10n/el/settings.po
+++ b/l10n/el/settings.po
@@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:57+0200\n"
-"PO-Revision-Date: 2013-06-10 23:57+0000\n"
+"POT-Creation-Date: 2013-06-12 02:56+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/el/user_ldap.po b/l10n/el/user_ldap.po
index 8d0db741fa9..d5a705b7a47 100644
--- a/l10n/el/user_ldap.po
+++ b/l10n/el/user_ldap.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:56+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/en@pirate/files.po b/l10n/en@pirate/files.po
index ff75bd76cf6..9df18ea3ed0 100644
--- a/l10n/en@pirate/files.po
+++ b/l10n/en@pirate/files.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:18+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:27+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/en@pirate/files_sharing.po b/l10n/en@pirate/files_sharing.po
index 8204ac2847f..16e746e5c6c 100644
--- a/l10n/en@pirate/files_sharing.po
+++ b/l10n/en@pirate/files_sharing.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: lhpalacio \n"
"Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/eo/core.po b/l10n/eo/core.po
index 89af6d4934f..64309275e44 100644
--- a/l10n/eo/core.po
+++ b/l10n/eo/core.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:57+0200\n"
-"PO-Revision-Date: 2013-06-10 23:18+0000\n"
+"POT-Creation-Date: 2013-06-13 02:16+0200\n"
+"PO-Revision-Date: 2013-06-12 01:02+0000\n"
"Last-Translator: Baptiste \n"
"Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/eo/files.po b/l10n/eo/files.po
index 83adcbfa219..a0b27181a48 100644
--- a/l10n/eo/files.po
+++ b/l10n/eo/files.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:18+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:27+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/eo/files_external.po b/l10n/eo/files_external.po
index b0e4a29b8ce..9be001b0d6d 100644
--- a/l10n/eo/files_external.po
+++ b/l10n/eo/files_external.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/eo/files_sharing.po b/l10n/eo/files_sharing.po
index d62a0342339..112d38dc3c5 100644
--- a/l10n/eo/files_sharing.po
+++ b/l10n/eo/files_sharing.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/eo/files_trashbin.po b/l10n/eo/files_trashbin.po
index ec3bdd7d56d..62d64f0e226 100644
--- a/l10n/eo/files_trashbin.po
+++ b/l10n/eo/files_trashbin.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/eo/lib.po b/l10n/eo/lib.po
index 951c41f84da..eaf3a900c66 100644
--- a/l10n/eo/lib.po
+++ b/l10n/eo/lib.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:57+0200\n"
-"PO-Revision-Date: 2013-06-10 23:18+0000\n"
+"POT-Creation-Date: 2013-06-13 02:16+0200\n"
+"PO-Revision-Date: 2013-06-12 01: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"
@@ -17,27 +17,27 @@ msgstr ""
"Language: eo\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: app.php:357
+#: app.php:358
msgid "Help"
msgstr "Helpo"
-#: app.php:370
+#: app.php:371
msgid "Personal"
msgstr "Persona"
-#: app.php:381
+#: app.php:382
msgid "Settings"
msgstr "Agordo"
-#: app.php:393
+#: app.php:394
msgid "Users"
msgstr "Uzantoj"
-#: app.php:406
+#: app.php:407
msgid "Apps"
msgstr "Aplikaĵoj"
-#: app.php:414
+#: app.php:415
msgid "Admin"
msgstr "Administranto"
@@ -113,76 +113,76 @@ msgstr ""
msgid "%s set the database host."
msgstr ""
-#: setup.php:132 setup.php:329 setup.php:374
+#: setup.php:126 setup.php:323 setup.php:368
msgid "PostgreSQL username and/or password not valid"
msgstr ""
-#: setup.php:133 setup.php:238
+#: setup.php:127 setup.php:232
msgid "You need to enter either an existing account or the administrator."
msgstr ""
-#: setup.php:155
+#: setup.php:149
msgid "Oracle connection could not be established"
msgstr ""
-#: setup.php:237
+#: setup.php:231
msgid "MySQL username and/or password not valid"
msgstr ""
-#: setup.php:291 setup.php:395 setup.php:404 setup.php:422 setup.php:432
-#: setup.php:441 setup.php:474 setup.php:540 setup.php:566 setup.php:573
-#: setup.php:584 setup.php:591 setup.php:600 setup.php:608 setup.php:617
-#: setup.php:623
+#: setup.php:285 setup.php:389 setup.php:398 setup.php:416 setup.php:426
+#: setup.php:435 setup.php:468 setup.php:534 setup.php:560 setup.php:567
+#: setup.php:578 setup.php:585 setup.php:594 setup.php:602 setup.php:611
+#: setup.php:617
#, php-format
msgid "DB Error: \"%s\""
msgstr ""
-#: setup.php:292 setup.php:396 setup.php:405 setup.php:423 setup.php:433
-#: setup.php:442 setup.php:475 setup.php:541 setup.php:567 setup.php:574
-#: setup.php:585 setup.php:601 setup.php:609 setup.php:618
+#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427
+#: setup.php:436 setup.php:469 setup.php:535 setup.php:561 setup.php:568
+#: setup.php:579 setup.php:595 setup.php:603 setup.php:612
#, php-format
msgid "Offending command was: \"%s\""
msgstr ""
-#: setup.php:308
+#: setup.php:302
#, php-format
msgid "MySQL user '%s'@'localhost' exists already."
msgstr ""
-#: setup.php:309
+#: setup.php:303
msgid "Drop this user from MySQL"
msgstr ""
-#: setup.php:314
+#: setup.php:308
#, php-format
msgid "MySQL user '%s'@'%%' already exists"
msgstr ""
-#: setup.php:315
+#: setup.php:309
msgid "Drop this user from MySQL."
msgstr ""
-#: setup.php:466 setup.php:533
+#: setup.php:460 setup.php:527
msgid "Oracle username and/or password not valid"
msgstr ""
-#: setup.php:592 setup.php:624
+#: setup.php:586 setup.php:618
#, php-format
msgid "Offending command was: \"%s\", name: %s, password: %s"
msgstr ""
-#: setup.php:644
+#: setup.php:638
#, php-format
msgid "MS SQL username and/or password not valid: %s"
msgstr ""
-#: setup.php:867
+#: setup.php:861
msgid ""
"Your web server is not yet properly setup to allow files synchronization "
"because the WebDAV interface seems to be broken."
msgstr ""
-#: setup.php:868
+#: setup.php:862
#, php-format
msgid "Please double check the installation guides."
msgstr ""
diff --git a/l10n/eo/settings.po b/l10n/eo/settings.po
index 68d2b6e7266..33b46e2ddba 100644
--- a/l10n/eo/settings.po
+++ b/l10n/eo/settings.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:57+0200\n"
-"PO-Revision-Date: 2013-06-10 23:57+0000\n"
+"POT-Creation-Date: 2013-06-12 02:56+0200\n"
+"PO-Revision-Date: 2013-06-11 23:27+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/eo/user_ldap.po b/l10n/eo/user_ldap.po
index 717c1541998..c97530b8136 100644
--- a/l10n/eo/user_ldap.po
+++ b/l10n/eo/user_ldap.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:56+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/es/core.po b/l10n/es/core.po
index 658cdb8536d..2066784c4bb 100644
--- a/l10n/es/core.po
+++ b/l10n/es/core.po
@@ -11,8 +11,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:57+0200\n"
-"PO-Revision-Date: 2013-06-10 23:18+0000\n"
+"POT-Creation-Date: 2013-06-13 02:16+0200\n"
+"PO-Revision-Date: 2013-06-12 01:02+0000\n"
"Last-Translator: xhiena \n"
"Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/es/files.po b/l10n/es/files.po
index 82d7438ad61..c464efc0a97 100644
--- a/l10n/es/files.po
+++ b/l10n/es/files.po
@@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:18+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:27+0000\n"
"Last-Translator: Art O. Pal \n"
"Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/es/files_external.po b/l10n/es/files_external.po
index e6712583769..13a77bad726 100644
--- a/l10n/es/files_external.po
+++ b/l10n/es/files_external.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/es/files_sharing.po b/l10n/es/files_sharing.po
index 6dee73a77af..7e38d35af56 100644
--- a/l10n/es/files_sharing.po
+++ b/l10n/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: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/es/files_trashbin.po b/l10n/es/files_trashbin.po
index 6232fb9e94b..489ca41f189 100644
--- a/l10n/es/files_trashbin.po
+++ b/l10n/es/files_trashbin.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/es/lib.po b/l10n/es/lib.po
index 059e8366a42..c534d72bcc8 100644
--- a/l10n/es/lib.po
+++ b/l10n/es/lib.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:57+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-13 02:16+0200\n"
+"PO-Revision-Date: 2013-06-12 01:03+0000\n"
"Last-Translator: xhiena \n"
"Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n"
"MIME-Version: 1.0\n"
@@ -18,27 +18,27 @@ msgstr ""
"Language: es\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: app.php:357
+#: app.php:358
msgid "Help"
msgstr "Ayuda"
-#: app.php:370
+#: app.php:371
msgid "Personal"
msgstr "Personal"
-#: app.php:381
+#: app.php:382
msgid "Settings"
msgstr "Ajustes"
-#: app.php:393
+#: app.php:394
msgid "Users"
msgstr "Usuarios"
-#: app.php:406
+#: app.php:407
msgid "Apps"
msgstr "Aplicaciones"
-#: app.php:414
+#: app.php:415
msgid "Admin"
msgstr "Administración"
@@ -114,76 +114,76 @@ msgstr "%s no se puede utilizar puntos en el nombre de la base de datos"
msgid "%s set the database host."
msgstr "%s ingresar el host de la base de datos."
-#: setup.php:132 setup.php:329 setup.php:374
+#: setup.php:126 setup.php:323 setup.php:368
msgid "PostgreSQL username and/or password not valid"
msgstr "Usuario y/o contraseña de PostgreSQL no válidos"
-#: setup.php:133 setup.php:238
+#: setup.php:127 setup.php:232
msgid "You need to enter either an existing account or the administrator."
msgstr "Tiene que ingresar una cuenta existente o la del administrador."
-#: setup.php:155
+#: setup.php:149
msgid "Oracle connection could not be established"
msgstr "No se pudo establecer la conexión a Oracle"
-#: setup.php:237
+#: setup.php:231
msgid "MySQL username and/or password not valid"
msgstr "Usuario y/o contraseña de MySQL no válidos"
-#: setup.php:291 setup.php:395 setup.php:404 setup.php:422 setup.php:432
-#: setup.php:441 setup.php:474 setup.php:540 setup.php:566 setup.php:573
-#: setup.php:584 setup.php:591 setup.php:600 setup.php:608 setup.php:617
-#: setup.php:623
+#: setup.php:285 setup.php:389 setup.php:398 setup.php:416 setup.php:426
+#: setup.php:435 setup.php:468 setup.php:534 setup.php:560 setup.php:567
+#: setup.php:578 setup.php:585 setup.php:594 setup.php:602 setup.php:611
+#: setup.php:617
#, php-format
msgid "DB Error: \"%s\""
msgstr "Error BD: \"%s\""
-#: setup.php:292 setup.php:396 setup.php:405 setup.php:423 setup.php:433
-#: setup.php:442 setup.php:475 setup.php:541 setup.php:567 setup.php:574
-#: setup.php:585 setup.php:601 setup.php:609 setup.php:618
+#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427
+#: setup.php:436 setup.php:469 setup.php:535 setup.php:561 setup.php:568
+#: setup.php:579 setup.php:595 setup.php:603 setup.php:612
#, php-format
msgid "Offending command was: \"%s\""
msgstr "Comando infractor: \"%s\""
-#: setup.php:308
+#: setup.php:302
#, php-format
msgid "MySQL user '%s'@'localhost' exists already."
msgstr "Usuario MySQL '%s'@'localhost' ya existe."
-#: setup.php:309
+#: setup.php:303
msgid "Drop this user from MySQL"
msgstr "Eliminar este usuario de MySQL"
-#: setup.php:314
+#: setup.php:308
#, php-format
msgid "MySQL user '%s'@'%%' already exists"
msgstr "Usuario MySQL '%s'@'%%' ya existe"
-#: setup.php:315
+#: setup.php:309
msgid "Drop this user from MySQL."
msgstr "Eliminar este usuario de MySQL."
-#: setup.php:466 setup.php:533
+#: setup.php:460 setup.php:527
msgid "Oracle username and/or password not valid"
msgstr "Usuario y/o contraseña de Oracle no válidos"
-#: setup.php:592 setup.php:624
+#: setup.php:586 setup.php:618
#, php-format
msgid "Offending command was: \"%s\", name: %s, password: %s"
msgstr "Comando infractor: \"%s\", nombre: %s, contraseña: %s"
-#: setup.php:644
+#: setup.php:638
#, php-format
msgid "MS SQL username and/or password not valid: %s"
msgstr "Usuario y/o contraseña de MS SQL no válidos: %s"
-#: setup.php:867
+#: setup.php:861
msgid ""
"Your web server is not yet properly setup to allow files synchronization "
"because the WebDAV interface seems to be broken."
msgstr "Su servidor web aún no está configurado adecuadamente para permitir sincronización de archivos ya que la interfaz WebDAV parece no estar funcionando."
-#: setup.php:868
+#: setup.php:862
#, php-format
msgid "Please double check the installation guides."
msgstr "Por favor, vuelva a comprobar las guías de instalación."
diff --git a/l10n/es/settings.po b/l10n/es/settings.po
index 550de686a57..3b7165c0148 100644
--- a/l10n/es/settings.po
+++ b/l10n/es/settings.po
@@ -10,8 +10,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:57+0200\n"
-"PO-Revision-Date: 2013-06-10 23:57+0000\n"
+"POT-Creation-Date: 2013-06-12 02:56+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/es/user_ldap.po b/l10n/es/user_ldap.po
index f2e9405d65c..c7cd6fd884c 100644
--- a/l10n/es/user_ldap.po
+++ b/l10n/es/user_ldap.po
@@ -10,8 +10,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:56+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: xhiena \n"
"Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/es_AR/core.po b/l10n/es_AR/core.po
index 3baad4a8f14..1c937440475 100644
--- a/l10n/es_AR/core.po
+++ b/l10n/es_AR/core.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:57+0200\n"
-"PO-Revision-Date: 2013-06-10 23:18+0000\n"
+"POT-Creation-Date: 2013-06-13 02:16+0200\n"
+"PO-Revision-Date: 2013-06-12 01:02+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/es_AR/files.po b/l10n/es_AR/files.po
index 8b367fad68a..c1cbed4a1ec 100644
--- a/l10n/es_AR/files.po
+++ b/l10n/es_AR/files.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:18+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:27+0000\n"
"Last-Translator: Agustin Ferrario \n"
"Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/es_AR/files_external.po b/l10n/es_AR/files_external.po
index e91fe22e2e1..705385ce3b8 100644
--- a/l10n/es_AR/files_external.po
+++ b/l10n/es_AR/files_external.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/es_AR/files_sharing.po b/l10n/es_AR/files_sharing.po
index 2412adc0dbd..569ddd5f298 100644
--- a/l10n/es_AR/files_sharing.po
+++ b/l10n/es_AR/files_sharing.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/es_AR/files_trashbin.po b/l10n/es_AR/files_trashbin.po
index e89f354341d..1d738ef5581 100644
--- a/l10n/es_AR/files_trashbin.po
+++ b/l10n/es_AR/files_trashbin.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/es_AR/lib.po b/l10n/es_AR/lib.po
index cd37a7aba1e..a53a0c9acc9 100644
--- a/l10n/es_AR/lib.po
+++ b/l10n/es_AR/lib.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:57+0200\n"
-"PO-Revision-Date: 2013-06-10 23:18+0000\n"
+"POT-Creation-Date: 2013-06-13 02:16+0200\n"
+"PO-Revision-Date: 2013-06-12 01:03+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n"
"MIME-Version: 1.0\n"
@@ -17,27 +17,27 @@ msgstr ""
"Language: es_AR\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: app.php:357
+#: app.php:358
msgid "Help"
msgstr "Ayuda"
-#: app.php:370
+#: app.php:371
msgid "Personal"
msgstr "Personal"
-#: app.php:381
+#: app.php:382
msgid "Settings"
msgstr "Configuración"
-#: app.php:393
+#: app.php:394
msgid "Users"
msgstr "Usuarios"
-#: app.php:406
+#: app.php:407
msgid "Apps"
msgstr "Aplicaciones"
-#: app.php:414
+#: app.php:415
msgid "Admin"
msgstr "Administración"
@@ -113,76 +113,76 @@ msgstr "%s no puede usar puntos en el nombre de la Base de Datos"
msgid "%s set the database host."
msgstr "%s Especifique la dirección de la Base de Datos"
-#: setup.php:132 setup.php:329 setup.php:374
+#: setup.php:126 setup.php:323 setup.php:368
msgid "PostgreSQL username and/or password not valid"
msgstr "Nombre de usuario o contraseña de PostgradeSQL no válido."
-#: setup.php:133 setup.php:238
+#: setup.php:127 setup.php:232
msgid "You need to enter either an existing account or the administrator."
msgstr "Debe ingresar una cuenta existente o el administrador"
-#: setup.php:155
+#: setup.php:149
msgid "Oracle connection could not be established"
msgstr ""
-#: setup.php:237
+#: setup.php:231
msgid "MySQL username and/or password not valid"
msgstr "Usuario y/o contraseña MySQL no válido"
-#: setup.php:291 setup.php:395 setup.php:404 setup.php:422 setup.php:432
-#: setup.php:441 setup.php:474 setup.php:540 setup.php:566 setup.php:573
-#: setup.php:584 setup.php:591 setup.php:600 setup.php:608 setup.php:617
-#: setup.php:623
+#: setup.php:285 setup.php:389 setup.php:398 setup.php:416 setup.php:426
+#: setup.php:435 setup.php:468 setup.php:534 setup.php:560 setup.php:567
+#: setup.php:578 setup.php:585 setup.php:594 setup.php:602 setup.php:611
+#: setup.php:617
#, php-format
msgid "DB Error: \"%s\""
msgstr "Error DB: \"%s\""
-#: setup.php:292 setup.php:396 setup.php:405 setup.php:423 setup.php:433
-#: setup.php:442 setup.php:475 setup.php:541 setup.php:567 setup.php:574
-#: setup.php:585 setup.php:601 setup.php:609 setup.php:618
+#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427
+#: setup.php:436 setup.php:469 setup.php:535 setup.php:561 setup.php:568
+#: setup.php:579 setup.php:595 setup.php:603 setup.php:612
#, php-format
msgid "Offending command was: \"%s\""
msgstr "El comando no comprendido es: \"%s\""
-#: setup.php:308
+#: setup.php:302
#, php-format
msgid "MySQL user '%s'@'localhost' exists already."
msgstr "Usuario MySQL '%s'@'localhost' ya existente"
-#: setup.php:309
+#: setup.php:303
msgid "Drop this user from MySQL"
msgstr "Borrar este usuario de MySQL"
-#: setup.php:314
+#: setup.php:308
#, php-format
msgid "MySQL user '%s'@'%%' already exists"
msgstr "Usuario MySQL '%s'@'%%' ya existente"
-#: setup.php:315
+#: setup.php:309
msgid "Drop this user from MySQL."
msgstr "Borrar este usuario de MySQL"
-#: setup.php:466 setup.php:533
+#: setup.php:460 setup.php:527
msgid "Oracle username and/or password not valid"
msgstr "El nombre de usuario y contraseña no son válidos"
-#: setup.php:592 setup.php:624
+#: setup.php:586 setup.php:618
#, php-format
msgid "Offending command was: \"%s\", name: %s, password: %s"
msgstr "El comando no comprendido es: \"%s\", nombre: \"%s\", contraseña: \"%s\""
-#: setup.php:644
+#: setup.php:638
#, php-format
msgid "MS SQL username and/or password not valid: %s"
msgstr "Nombre de usuario y contraseña de MS SQL no son válidas: %s"
-#: setup.php:867
+#: setup.php:861
msgid ""
"Your web server is not yet properly setup to allow files synchronization "
"because the WebDAV interface seems to be broken."
msgstr "Tu servidor web no está configurado todavía para permitir sincronización de archivos porque la interfaz WebDAV parece no funcionar."
-#: setup.php:868
+#: setup.php:862
#, php-format
msgid "Please double check the installation guides."
msgstr "Por favor, comprobá nuevamente la guía de instalación."
diff --git a/l10n/es_AR/settings.po b/l10n/es_AR/settings.po
index f0c1bb57d6b..2f09ef06dcb 100644
--- a/l10n/es_AR/settings.po
+++ b/l10n/es_AR/settings.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:57+0200\n"
-"PO-Revision-Date: 2013-06-10 23:57+0000\n"
+"POT-Creation-Date: 2013-06-12 02:56+0200\n"
+"PO-Revision-Date: 2013-06-11 23:27+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/es_AR/user_ldap.po b/l10n/es_AR/user_ldap.po
index 1e742c923ea..0d97c65d8c8 100644
--- a/l10n/es_AR/user_ldap.po
+++ b/l10n/es_AR/user_ldap.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:56+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/et_EE/core.po b/l10n/et_EE/core.po
index f1e4fcc2380..95c0ebf6bab 100644
--- a/l10n/et_EE/core.po
+++ b/l10n/et_EE/core.po
@@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:57+0200\n"
-"PO-Revision-Date: 2013-06-10 23:18+0000\n"
+"POT-Creation-Date: 2013-06-13 02:16+0200\n"
+"PO-Revision-Date: 2013-06-12 01:02+0000\n"
"Last-Translator: Rivo Zängov \n"
"Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/et_EE/files.po b/l10n/et_EE/files.po
index 34d61a1d85f..a3b7d28b1ca 100644
--- a/l10n/et_EE/files.po
+++ b/l10n/et_EE/files.po
@@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:18+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:27+0000\n"
"Last-Translator: Rivo Zängov \n"
"Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/et_EE/files_external.po b/l10n/et_EE/files_external.po
index a15e0a7deb6..520e259b8c8 100644
--- a/l10n/et_EE/files_external.po
+++ b/l10n/et_EE/files_external.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: Rivo Zängov \n"
"Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/et_EE/files_sharing.po b/l10n/et_EE/files_sharing.po
index 482fbacec86..755097fbfa3 100644
--- a/l10n/et_EE/files_sharing.po
+++ b/l10n/et_EE/files_sharing.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: Rivo Zängov \n"
"Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/et_EE/files_trashbin.po b/l10n/et_EE/files_trashbin.po
index 0cde7fec2e4..7e2f05b4fe3 100644
--- a/l10n/et_EE/files_trashbin.po
+++ b/l10n/et_EE/files_trashbin.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: Rivo Zängov \n"
"Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/et_EE/lib.po b/l10n/et_EE/lib.po
index bf5fd8ced24..083478a8b04 100644
--- a/l10n/et_EE/lib.po
+++ b/l10n/et_EE/lib.po
@@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:57+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-13 02:16+0200\n"
+"PO-Revision-Date: 2013-06-12 01:03+0000\n"
"Last-Translator: pisike.sipelgas \n"
"Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n"
"MIME-Version: 1.0\n"
@@ -19,27 +19,27 @@ msgstr ""
"Language: et_EE\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: app.php:357
+#: app.php:358
msgid "Help"
msgstr "Abiinfo"
-#: app.php:370
+#: app.php:371
msgid "Personal"
msgstr "Isiklik"
-#: app.php:381
+#: app.php:382
msgid "Settings"
msgstr "Seaded"
-#: app.php:393
+#: app.php:394
msgid "Users"
msgstr "Kasutajad"
-#: app.php:406
+#: app.php:407
msgid "Apps"
msgstr "Rakendused"
-#: app.php:414
+#: app.php:415
msgid "Admin"
msgstr "Admin"
@@ -115,76 +115,76 @@ msgstr "%s punktide kasutamine andmebaasi nimes pole lubatud"
msgid "%s set the database host."
msgstr "%s määra andmebaasi server."
-#: setup.php:132 setup.php:329 setup.php:374
+#: setup.php:126 setup.php:323 setup.php:368
msgid "PostgreSQL username and/or password not valid"
msgstr "PostgreSQL kasutajatunnus ja/või parool pole õiged"
-#: setup.php:133 setup.php:238
+#: setup.php:127 setup.php:232
msgid "You need to enter either an existing account or the administrator."
msgstr "Sisesta kas juba olemasolev konto või administrator."
-#: setup.php:155
+#: setup.php:149
msgid "Oracle connection could not be established"
msgstr "Ei suuda luua ühendust Oracle baasiga"
-#: setup.php:237
+#: setup.php:231
msgid "MySQL username and/or password not valid"
msgstr "MySQL kasutajatunnus ja/või parool pole õiged"
-#: setup.php:291 setup.php:395 setup.php:404 setup.php:422 setup.php:432
-#: setup.php:441 setup.php:474 setup.php:540 setup.php:566 setup.php:573
-#: setup.php:584 setup.php:591 setup.php:600 setup.php:608 setup.php:617
-#: setup.php:623
+#: setup.php:285 setup.php:389 setup.php:398 setup.php:416 setup.php:426
+#: setup.php:435 setup.php:468 setup.php:534 setup.php:560 setup.php:567
+#: setup.php:578 setup.php:585 setup.php:594 setup.php:602 setup.php:611
+#: setup.php:617
#, php-format
msgid "DB Error: \"%s\""
msgstr "Andmebaasi viga: \"%s\""
-#: setup.php:292 setup.php:396 setup.php:405 setup.php:423 setup.php:433
-#: setup.php:442 setup.php:475 setup.php:541 setup.php:567 setup.php:574
-#: setup.php:585 setup.php:601 setup.php:609 setup.php:618
+#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427
+#: setup.php:436 setup.php:469 setup.php:535 setup.php:561 setup.php:568
+#: setup.php:579 setup.php:595 setup.php:603 setup.php:612
#, php-format
msgid "Offending command was: \"%s\""
msgstr "Tõrkuv käsk oli: \"%s\""
-#: setup.php:308
+#: setup.php:302
#, php-format
msgid "MySQL user '%s'@'localhost' exists already."
msgstr "MySQL kasutaja '%s'@'localhost' on juba olemas."
-#: setup.php:309
+#: setup.php:303
msgid "Drop this user from MySQL"
msgstr "Kustuta see kasutaja MySQL-ist"
-#: setup.php:314
+#: setup.php:308
#, php-format
msgid "MySQL user '%s'@'%%' already exists"
msgstr "MySQL kasutaja '%s'@'%%' on juba olemas"
-#: setup.php:315
+#: setup.php:309
msgid "Drop this user from MySQL."
msgstr "Kustuta see kasutaja MySQL-ist."
-#: setup.php:466 setup.php:533
+#: setup.php:460 setup.php:527
msgid "Oracle username and/or password not valid"
msgstr "Oracle kasutajatunnus ja/või parool pole õiged"
-#: setup.php:592 setup.php:624
+#: setup.php:586 setup.php:618
#, php-format
msgid "Offending command was: \"%s\", name: %s, password: %s"
msgstr "Tõrkuv käsk oli: \"%s\", nimi: %s, parool: %s"
-#: setup.php:644
+#: setup.php:638
#, php-format
msgid "MS SQL username and/or password not valid: %s"
msgstr "MS SQL kasutajatunnus ja/või parool pole õiged: %s"
-#: setup.php:867
+#: setup.php:861
msgid ""
"Your web server is not yet properly setup to allow files synchronization "
"because the WebDAV interface seems to be broken."
msgstr "Veebiserveri ei ole veel korralikult seadistatud võimaldamaks failide sünkroniseerimist, kuna WebDAV liides näib olevat mittetoimiv."
-#: setup.php:868
+#: setup.php:862
#, php-format
msgid "Please double check the installation guides."
msgstr "Palun tutvu veelkord paigalduse juhenditega."
diff --git a/l10n/et_EE/settings.po b/l10n/et_EE/settings.po
index 7b0d4451cf5..4f81648e520 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: 2013-06-11 01:57+0200\n"
-"PO-Revision-Date: 2013-06-10 23:57+0000\n"
-"Last-Translator: I Robot \n"
+"POT-Creation-Date: 2013-06-12 02:56+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
+"Last-Translator: pisike.sipelgas \n"
"Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -473,7 +473,7 @@ msgstr "Admin taasteparool"
msgid ""
"Enter the recovery password in order to recover the users files during "
"password change"
-msgstr ""
+msgstr "Sisesta taasteparool kasutaja failide taastamiseks paroolivahetuse käigus"
#: templates/users.php:42
msgid "Default Storage"
diff --git a/l10n/et_EE/user_ldap.po b/l10n/et_EE/user_ldap.po
index a87f06ffa54..2ce1e0e8ec8 100644
--- a/l10n/et_EE/user_ldap.po
+++ b/l10n/et_EE/user_ldap.po
@@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:56+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: pisike.sipelgas \n"
"Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/eu/core.po b/l10n/eu/core.po
index 9458ed3bdbf..80b8450aab3 100644
--- a/l10n/eu/core.po
+++ b/l10n/eu/core.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:57+0200\n"
-"PO-Revision-Date: 2013-06-10 23:18+0000\n"
+"POT-Creation-Date: 2013-06-13 02:16+0200\n"
+"PO-Revision-Date: 2013-06-12 01:02+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/eu/files.po b/l10n/eu/files.po
index 5ea564b0214..1e832a1d67c 100644
--- a/l10n/eu/files.po
+++ b/l10n/eu/files.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:18+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:27+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/eu/files_external.po b/l10n/eu/files_external.po
index 18ef5b27958..e67b8acbf62 100644
--- a/l10n/eu/files_external.po
+++ b/l10n/eu/files_external.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/eu/files_sharing.po b/l10n/eu/files_sharing.po
index de2799c5056..a8b80438057 100644
--- a/l10n/eu/files_sharing.po
+++ b/l10n/eu/files_sharing.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/eu/files_trashbin.po b/l10n/eu/files_trashbin.po
index 8d152c3e250..7dbb6a4beec 100644
--- a/l10n/eu/files_trashbin.po
+++ b/l10n/eu/files_trashbin.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/eu/lib.po b/l10n/eu/lib.po
index ce6e8a04ead..5dc078f41dd 100644
--- a/l10n/eu/lib.po
+++ b/l10n/eu/lib.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:57+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-13 02:16+0200\n"
+"PO-Revision-Date: 2013-06-12 01: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"
@@ -17,27 +17,27 @@ msgstr ""
"Language: eu\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: app.php:357
+#: app.php:358
msgid "Help"
msgstr "Laguntza"
-#: app.php:370
+#: app.php:371
msgid "Personal"
msgstr "Pertsonala"
-#: app.php:381
+#: app.php:382
msgid "Settings"
msgstr "Ezarpenak"
-#: app.php:393
+#: app.php:394
msgid "Users"
msgstr "Erabiltzaileak"
-#: app.php:406
+#: app.php:407
msgid "Apps"
msgstr "Aplikazioak"
-#: app.php:414
+#: app.php:415
msgid "Admin"
msgstr "Admin"
@@ -113,76 +113,76 @@ msgstr "%s ezin duzu punturik erabili datu basearen izenean."
msgid "%s set the database host."
msgstr "%s sartu datu basearen hostalaria."
-#: setup.php:132 setup.php:329 setup.php:374
+#: setup.php:126 setup.php:323 setup.php:368
msgid "PostgreSQL username and/or password not valid"
msgstr "PostgreSQL erabiltzaile edota pasahitza ez dira egokiak."
-#: setup.php:133 setup.php:238
+#: setup.php:127 setup.php:232
msgid "You need to enter either an existing account or the administrator."
msgstr "Existitzen den kontu bat edo administradorearena jarri behar duzu."
-#: setup.php:155
+#: setup.php:149
msgid "Oracle connection could not be established"
msgstr ""
-#: setup.php:237
+#: setup.php:231
msgid "MySQL username and/or password not valid"
msgstr "MySQL erabiltzaile edota pasahitza ez dira egokiak."
-#: setup.php:291 setup.php:395 setup.php:404 setup.php:422 setup.php:432
-#: setup.php:441 setup.php:474 setup.php:540 setup.php:566 setup.php:573
-#: setup.php:584 setup.php:591 setup.php:600 setup.php:608 setup.php:617
-#: setup.php:623
+#: setup.php:285 setup.php:389 setup.php:398 setup.php:416 setup.php:426
+#: setup.php:435 setup.php:468 setup.php:534 setup.php:560 setup.php:567
+#: setup.php:578 setup.php:585 setup.php:594 setup.php:602 setup.php:611
+#: setup.php:617
#, php-format
msgid "DB Error: \"%s\""
msgstr "DB errorea: \"%s\""
-#: setup.php:292 setup.php:396 setup.php:405 setup.php:423 setup.php:433
-#: setup.php:442 setup.php:475 setup.php:541 setup.php:567 setup.php:574
-#: setup.php:585 setup.php:601 setup.php:609 setup.php:618
+#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427
+#: setup.php:436 setup.php:469 setup.php:535 setup.php:561 setup.php:568
+#: setup.php:579 setup.php:595 setup.php:603 setup.php:612
#, php-format
msgid "Offending command was: \"%s\""
msgstr "Errorea komando honek sortu du: \"%s\""
-#: setup.php:308
+#: setup.php:302
#, php-format
msgid "MySQL user '%s'@'localhost' exists already."
msgstr "MySQL '%s'@'localhost' erabiltzailea dagoeneko existitzen da."
-#: setup.php:309
+#: setup.php:303
msgid "Drop this user from MySQL"
msgstr "Ezabatu erabiltzaile hau MySQLtik"
-#: setup.php:314
+#: setup.php:308
#, php-format
msgid "MySQL user '%s'@'%%' already exists"
msgstr "MySQL '%s'@'%%' erabiltzailea dagoeneko existitzen da"
-#: setup.php:315
+#: setup.php:309
msgid "Drop this user from MySQL."
msgstr "Ezabatu erabiltzaile hau MySQLtik."
-#: setup.php:466 setup.php:533
+#: setup.php:460 setup.php:527
msgid "Oracle username and/or password not valid"
msgstr "Oracle erabiltzaile edota pasahitza ez dira egokiak."
-#: setup.php:592 setup.php:624
+#: setup.php:586 setup.php:618
#, php-format
msgid "Offending command was: \"%s\", name: %s, password: %s"
msgstr "Errorea komando honek sortu du: \"%s\", izena: %s, pasahitza: %s"
-#: setup.php:644
+#: setup.php:638
#, php-format
msgid "MS SQL username and/or password not valid: %s"
msgstr "MS SQL erabiltzaile izena edota pasahitza ez dira egokiak: %s"
-#: setup.php:867
+#: setup.php:861
msgid ""
"Your web server is not yet properly setup to allow files synchronization "
"because the WebDAV interface seems to be broken."
msgstr "Zure web zerbitzaria ez dago oraindik ongi konfiguratuta fitxategien sinkronizazioa egiteko, WebDAV interfazea ongi ez dagoela dirudi."
-#: setup.php:868
+#: setup.php:862
#, php-format
msgid "Please double check the installation guides."
msgstr "Mesedez begiratu instalazio gidak."
diff --git a/l10n/eu/settings.po b/l10n/eu/settings.po
index 66e67c2b58e..bc18dde6661 100644
--- a/l10n/eu/settings.po
+++ b/l10n/eu/settings.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:57+0200\n"
-"PO-Revision-Date: 2013-06-10 23:57+0000\n"
+"POT-Creation-Date: 2013-06-12 02:56+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/eu/user_ldap.po b/l10n/eu/user_ldap.po
index f1d6dbc1070..6800daf9f4c 100644
--- a/l10n/eu/user_ldap.po
+++ b/l10n/eu/user_ldap.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:56+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/fa/core.po b/l10n/fa/core.po
index 310bb19832f..29ac1d237b2 100644
--- a/l10n/fa/core.po
+++ b/l10n/fa/core.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:57+0200\n"
-"PO-Revision-Date: 2013-06-10 23:18+0000\n"
+"POT-Creation-Date: 2013-06-13 02:16+0200\n"
+"PO-Revision-Date: 2013-06-12 01:02+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/fa/files.po b/l10n/fa/files.po
index 65259873a4a..0c93f45a7a8 100644
--- a/l10n/fa/files.po
+++ b/l10n/fa/files.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:18+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:27+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/fa/files_external.po b/l10n/fa/files_external.po
index da02656440d..88c7de3556c 100644
--- a/l10n/fa/files_external.po
+++ b/l10n/fa/files_external.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/fa/files_sharing.po b/l10n/fa/files_sharing.po
index 93e02b15071..9b8ed74004f 100644
--- a/l10n/fa/files_sharing.po
+++ b/l10n/fa/files_sharing.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/fa/files_trashbin.po b/l10n/fa/files_trashbin.po
index de003e3b961..b09c59d6704 100644
--- a/l10n/fa/files_trashbin.po
+++ b/l10n/fa/files_trashbin.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/fa/lib.po b/l10n/fa/lib.po
index 418a0b9646c..64b80e21f23 100644
--- a/l10n/fa/lib.po
+++ b/l10n/fa/lib.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:57+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-13 02:16+0200\n"
+"PO-Revision-Date: 2013-06-12 01: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"
@@ -17,27 +17,27 @@ msgstr ""
"Language: fa\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-#: app.php:357
+#: app.php:358
msgid "Help"
msgstr "راهنما"
-#: app.php:370
+#: app.php:371
msgid "Personal"
msgstr "شخصی"
-#: app.php:381
+#: app.php:382
msgid "Settings"
msgstr "تنظیمات"
-#: app.php:393
+#: app.php:394
msgid "Users"
msgstr "کاربران"
-#: app.php:406
+#: app.php:407
msgid "Apps"
msgstr " برنامه ها"
-#: app.php:414
+#: app.php:415
msgid "Admin"
msgstr "مدیر"
@@ -113,76 +113,76 @@ msgstr ""
msgid "%s set the database host."
msgstr ""
-#: setup.php:132 setup.php:329 setup.php:374
+#: setup.php:126 setup.php:323 setup.php:368
msgid "PostgreSQL username and/or password not valid"
msgstr ""
-#: setup.php:133 setup.php:238
+#: setup.php:127 setup.php:232
msgid "You need to enter either an existing account or the administrator."
msgstr ""
-#: setup.php:155
+#: setup.php:149
msgid "Oracle connection could not be established"
msgstr ""
-#: setup.php:237
+#: setup.php:231
msgid "MySQL username and/or password not valid"
msgstr ""
-#: setup.php:291 setup.php:395 setup.php:404 setup.php:422 setup.php:432
-#: setup.php:441 setup.php:474 setup.php:540 setup.php:566 setup.php:573
-#: setup.php:584 setup.php:591 setup.php:600 setup.php:608 setup.php:617
-#: setup.php:623
+#: setup.php:285 setup.php:389 setup.php:398 setup.php:416 setup.php:426
+#: setup.php:435 setup.php:468 setup.php:534 setup.php:560 setup.php:567
+#: setup.php:578 setup.php:585 setup.php:594 setup.php:602 setup.php:611
+#: setup.php:617
#, php-format
msgid "DB Error: \"%s\""
msgstr ""
-#: setup.php:292 setup.php:396 setup.php:405 setup.php:423 setup.php:433
-#: setup.php:442 setup.php:475 setup.php:541 setup.php:567 setup.php:574
-#: setup.php:585 setup.php:601 setup.php:609 setup.php:618
+#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427
+#: setup.php:436 setup.php:469 setup.php:535 setup.php:561 setup.php:568
+#: setup.php:579 setup.php:595 setup.php:603 setup.php:612
#, php-format
msgid "Offending command was: \"%s\""
msgstr ""
-#: setup.php:308
+#: setup.php:302
#, php-format
msgid "MySQL user '%s'@'localhost' exists already."
msgstr ""
-#: setup.php:309
+#: setup.php:303
msgid "Drop this user from MySQL"
msgstr ""
-#: setup.php:314
+#: setup.php:308
#, php-format
msgid "MySQL user '%s'@'%%' already exists"
msgstr ""
-#: setup.php:315
+#: setup.php:309
msgid "Drop this user from MySQL."
msgstr ""
-#: setup.php:466 setup.php:533
+#: setup.php:460 setup.php:527
msgid "Oracle username and/or password not valid"
msgstr ""
-#: setup.php:592 setup.php:624
+#: setup.php:586 setup.php:618
#, php-format
msgid "Offending command was: \"%s\", name: %s, password: %s"
msgstr ""
-#: setup.php:644
+#: setup.php:638
#, php-format
msgid "MS SQL username and/or password not valid: %s"
msgstr ""
-#: setup.php:867
+#: setup.php:861
msgid ""
"Your web server is not yet properly setup to allow files synchronization "
"because the WebDAV interface seems to be broken."
msgstr "احتمالاً وب سرور شما طوری تنظیم نشده است که اجازه ی همگام سازی فایلها را بدهد زیرا به نظر میرسد رابط WebDAV از کار افتاده است."
-#: setup.php:868
+#: setup.php:862
#, php-format
msgid "Please double check the installation guides."
msgstr "لطفاً دوباره راهنمای نصبرا بررسی کنید."
diff --git a/l10n/fa/settings.po b/l10n/fa/settings.po
index 00e95cfd8d0..13474ba822d 100644
--- a/l10n/fa/settings.po
+++ b/l10n/fa/settings.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:57+0200\n"
-"PO-Revision-Date: 2013-06-10 23:57+0000\n"
+"POT-Creation-Date: 2013-06-12 02:56+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/fa/user_ldap.po b/l10n/fa/user_ldap.po
index 59d4eaf3f8e..e3df271ba1d 100644
--- a/l10n/fa/user_ldap.po
+++ b/l10n/fa/user_ldap.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:56+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/fi_FI/core.po b/l10n/fi_FI/core.po
index f8a6fcca230..80a375f085f 100644
--- a/l10n/fi_FI/core.po
+++ b/l10n/fi_FI/core.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:57+0200\n"
-"PO-Revision-Date: 2013-06-10 23:18+0000\n"
+"POT-Creation-Date: 2013-06-13 02:16+0200\n"
+"PO-Revision-Date: 2013-06-12 01:02+0000\n"
"Last-Translator: Jiri Grönroos \n"
"Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/fi_FI/files.po b/l10n/fi_FI/files.po
index 3b0e7377494..56c8913edef 100644
--- a/l10n/fi_FI/files.po
+++ b/l10n/fi_FI/files.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:18+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:27+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/fi_FI/files_external.po b/l10n/fi_FI/files_external.po
index 25e7105bd76..3cf2d0347c1 100644
--- a/l10n/fi_FI/files_external.po
+++ b/l10n/fi_FI/files_external.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/fi_FI/files_sharing.po b/l10n/fi_FI/files_sharing.po
index 5acb54ff5ad..1b6bdb4fd5f 100644
--- a/l10n/fi_FI/files_sharing.po
+++ b/l10n/fi_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: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/fi_FI/files_trashbin.po b/l10n/fi_FI/files_trashbin.po
index 036d7f1cd6d..83002ab4f7b 100644
--- a/l10n/fi_FI/files_trashbin.po
+++ b/l10n/fi_FI/files_trashbin.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/fi_FI/lib.po b/l10n/fi_FI/lib.po
index 5bb148cbc2c..979b8f8b6d6 100644
--- a/l10n/fi_FI/lib.po
+++ b/l10n/fi_FI/lib.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:57+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-13 02:16+0200\n"
+"PO-Revision-Date: 2013-06-12 01:03+0000\n"
"Last-Translator: Jiri Grönroos \n"
"Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n"
"MIME-Version: 1.0\n"
@@ -18,27 +18,27 @@ msgstr ""
"Language: fi_FI\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: app.php:357
+#: app.php:358
msgid "Help"
msgstr "Ohje"
-#: app.php:370
+#: app.php:371
msgid "Personal"
msgstr "Henkilökohtainen"
-#: app.php:381
+#: app.php:382
msgid "Settings"
msgstr "Asetukset"
-#: app.php:393
+#: app.php:394
msgid "Users"
msgstr "Käyttäjät"
-#: app.php:406
+#: app.php:407
msgid "Apps"
msgstr "Sovellukset"
-#: app.php:414
+#: app.php:415
msgid "Admin"
msgstr "Ylläpitäjä"
@@ -114,76 +114,76 @@ msgstr "%s et voi käyttää pisteitä tietokannan nimessä"
msgid "%s set the database host."
msgstr ""
-#: setup.php:132 setup.php:329 setup.php:374
+#: setup.php:126 setup.php:323 setup.php:368
msgid "PostgreSQL username and/or password not valid"
msgstr "PostgreSQL:n käyttäjätunnus ja/tai salasana on väärin"
-#: setup.php:133 setup.php:238
+#: setup.php:127 setup.php:232
msgid "You need to enter either an existing account or the administrator."
msgstr ""
-#: setup.php:155
+#: setup.php:149
msgid "Oracle connection could not be established"
msgstr "Oracle-yhteyttä ei voitu muodostaa"
-#: setup.php:237
+#: setup.php:231
msgid "MySQL username and/or password not valid"
msgstr "MySQL:n käyttäjätunnus ja/tai salasana on väärin"
-#: setup.php:291 setup.php:395 setup.php:404 setup.php:422 setup.php:432
-#: setup.php:441 setup.php:474 setup.php:540 setup.php:566 setup.php:573
-#: setup.php:584 setup.php:591 setup.php:600 setup.php:608 setup.php:617
-#: setup.php:623
+#: setup.php:285 setup.php:389 setup.php:398 setup.php:416 setup.php:426
+#: setup.php:435 setup.php:468 setup.php:534 setup.php:560 setup.php:567
+#: setup.php:578 setup.php:585 setup.php:594 setup.php:602 setup.php:611
+#: setup.php:617
#, php-format
msgid "DB Error: \"%s\""
msgstr "Tietokantavirhe: \"%s\""
-#: setup.php:292 setup.php:396 setup.php:405 setup.php:423 setup.php:433
-#: setup.php:442 setup.php:475 setup.php:541 setup.php:567 setup.php:574
-#: setup.php:585 setup.php:601 setup.php:609 setup.php:618
+#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427
+#: setup.php:436 setup.php:469 setup.php:535 setup.php:561 setup.php:568
+#: setup.php:579 setup.php:595 setup.php:603 setup.php:612
#, php-format
msgid "Offending command was: \"%s\""
msgstr ""
-#: setup.php:308
+#: setup.php:302
#, php-format
msgid "MySQL user '%s'@'localhost' exists already."
msgstr "MySQL-käyttäjä '%s'@'localhost' on jo olemassa."
-#: setup.php:309
+#: setup.php:303
msgid "Drop this user from MySQL"
msgstr "Pudota tämä käyttäjä MySQL:stä"
-#: setup.php:314
+#: setup.php:308
#, php-format
msgid "MySQL user '%s'@'%%' already exists"
msgstr "MySQL-käyttäjä '%s'@'%%' on jo olemassa"
-#: setup.php:315
+#: setup.php:309
msgid "Drop this user from MySQL."
msgstr "Pudota tämä käyttäjä MySQL:stä."
-#: setup.php:466 setup.php:533
+#: setup.php:460 setup.php:527
msgid "Oracle username and/or password not valid"
msgstr "Oraclen käyttäjätunnus ja/tai salasana on väärin"
-#: setup.php:592 setup.php:624
+#: setup.php:586 setup.php:618
#, php-format
msgid "Offending command was: \"%s\", name: %s, password: %s"
msgstr ""
-#: setup.php:644
+#: setup.php:638
#, php-format
msgid "MS SQL username and/or password not valid: %s"
msgstr "MS SQL -käyttäjätunnus ja/tai -salasana on väärin: %s"
-#: setup.php:867
+#: setup.php:861
msgid ""
"Your web server is not yet properly setup to allow files synchronization "
"because the WebDAV interface seems to be broken."
msgstr ""
-#: setup.php:868
+#: setup.php:862
#, php-format
msgid "Please double check the installation guides."
msgstr "Lue tarkasti asennusohjeet."
diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po
index 6eb310a2c1b..cf013b95c96 100644
--- a/l10n/fi_FI/settings.po
+++ b/l10n/fi_FI/settings.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:57+0200\n"
-"PO-Revision-Date: 2013-06-10 23:57+0000\n"
+"POT-Creation-Date: 2013-06-12 02:56+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/fi_FI/user_ldap.po b/l10n/fi_FI/user_ldap.po
index 1ad48482022..4bf4ca1581b 100644
--- a/l10n/fi_FI/user_ldap.po
+++ b/l10n/fi_FI/user_ldap.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:56+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/fr/core.po b/l10n/fr/core.po
index 5ea2bba3ffd..dec2ec57a49 100644
--- a/l10n/fr/core.po
+++ b/l10n/fr/core.po
@@ -10,8 +10,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:57+0200\n"
-"PO-Revision-Date: 2013-06-10 23:18+0000\n"
+"POT-Creation-Date: 2013-06-13 02:16+0200\n"
+"PO-Revision-Date: 2013-06-12 01:02+0000\n"
"Last-Translator: red0ne \n"
"Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/fr/files.po b/l10n/fr/files.po
index 7ac10abbcb2..cad730674a0 100644
--- a/l10n/fr/files.po
+++ b/l10n/fr/files.po
@@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:18+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:27+0000\n"
"Last-Translator: Christophe Lherieau \n"
"Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/fr/files_external.po b/l10n/fr/files_external.po
index 22c34e68864..5ef61c8cfd4 100644
--- a/l10n/fr/files_external.po
+++ b/l10n/fr/files_external.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/fr/files_sharing.po b/l10n/fr/files_sharing.po
index 05bbab8ad90..5a730447603 100644
--- a/l10n/fr/files_sharing.po
+++ b/l10n/fr/files_sharing.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/fr/files_trashbin.po b/l10n/fr/files_trashbin.po
index ff3af9888a2..b35debbeab3 100644
--- a/l10n/fr/files_trashbin.po
+++ b/l10n/fr/files_trashbin.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/fr/lib.po b/l10n/fr/lib.po
index af455687492..f4843941b81 100644
--- a/l10n/fr/lib.po
+++ b/l10n/fr/lib.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:57+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-13 02:16+0200\n"
+"PO-Revision-Date: 2013-06-12 01:03+0000\n"
"Last-Translator: Cyril Glapa \n"
"Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n"
"MIME-Version: 1.0\n"
@@ -18,27 +18,27 @@ msgstr ""
"Language: fr\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-#: app.php:357
+#: app.php:358
msgid "Help"
msgstr "Aide"
-#: app.php:370
+#: app.php:371
msgid "Personal"
msgstr "Personnel"
-#: app.php:381
+#: app.php:382
msgid "Settings"
msgstr "Paramètres"
-#: app.php:393
+#: app.php:394
msgid "Users"
msgstr "Utilisateurs"
-#: app.php:406
+#: app.php:407
msgid "Apps"
msgstr "Applications"
-#: app.php:414
+#: app.php:415
msgid "Admin"
msgstr "Administration"
@@ -114,76 +114,76 @@ msgstr "%s vous nez pouvez pas utiliser de points dans le nom de la base de donn
msgid "%s set the database host."
msgstr "%s spécifiez l'hôte de la base de données."
-#: setup.php:132 setup.php:329 setup.php:374
+#: setup.php:126 setup.php:323 setup.php:368
msgid "PostgreSQL username and/or password not valid"
msgstr "Nom d'utilisateur et/ou mot de passe de la base PostgreSQL invalide"
-#: setup.php:133 setup.php:238
+#: setup.php:127 setup.php:232
msgid "You need to enter either an existing account or the administrator."
msgstr "Vous devez spécifier soit le nom d'un compte existant, soit celui de l'administrateur."
-#: setup.php:155
+#: setup.php:149
msgid "Oracle connection could not be established"
msgstr "La connexion Oracle ne peut pas être établie"
-#: setup.php:237
+#: setup.php:231
msgid "MySQL username and/or password not valid"
msgstr "Nom d'utilisateur et/ou mot de passe de la base MySQL invalide"
-#: setup.php:291 setup.php:395 setup.php:404 setup.php:422 setup.php:432
-#: setup.php:441 setup.php:474 setup.php:540 setup.php:566 setup.php:573
-#: setup.php:584 setup.php:591 setup.php:600 setup.php:608 setup.php:617
-#: setup.php:623
+#: setup.php:285 setup.php:389 setup.php:398 setup.php:416 setup.php:426
+#: setup.php:435 setup.php:468 setup.php:534 setup.php:560 setup.php:567
+#: setup.php:578 setup.php:585 setup.php:594 setup.php:602 setup.php:611
+#: setup.php:617
#, php-format
msgid "DB Error: \"%s\""
msgstr "Erreur de la base de données : \"%s\""
-#: setup.php:292 setup.php:396 setup.php:405 setup.php:423 setup.php:433
-#: setup.php:442 setup.php:475 setup.php:541 setup.php:567 setup.php:574
-#: setup.php:585 setup.php:601 setup.php:609 setup.php:618
+#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427
+#: setup.php:436 setup.php:469 setup.php:535 setup.php:561 setup.php:568
+#: setup.php:579 setup.php:595 setup.php:603 setup.php:612
#, php-format
msgid "Offending command was: \"%s\""
msgstr "La requête en cause est : \"%s\""
-#: setup.php:308
+#: setup.php:302
#, php-format
msgid "MySQL user '%s'@'localhost' exists already."
msgstr "L'utilisateur MySQL '%s'@'localhost' existe déjà."
-#: setup.php:309
+#: setup.php:303
msgid "Drop this user from MySQL"
msgstr "Retirer cet utilisateur de la base MySQL"
-#: setup.php:314
+#: setup.php:308
#, php-format
msgid "MySQL user '%s'@'%%' already exists"
msgstr "L'utilisateur MySQL '%s'@'%%' existe déjà"
-#: setup.php:315
+#: setup.php:309
msgid "Drop this user from MySQL."
msgstr "Retirer cet utilisateur de la base MySQL."
-#: setup.php:466 setup.php:533
+#: setup.php:460 setup.php:527
msgid "Oracle username and/or password not valid"
msgstr "Nom d'utilisateur et/ou mot de passe de la base Oracle invalide"
-#: setup.php:592 setup.php:624
+#: setup.php:586 setup.php:618
#, php-format
msgid "Offending command was: \"%s\", name: %s, password: %s"
msgstr "La requête en cause est : \"%s\", nom : %s, mot de passe : %s"
-#: setup.php:644
+#: setup.php:638
#, php-format
msgid "MS SQL username and/or password not valid: %s"
msgstr "Le nom d'utilisateur et/ou le mot de passe de la base MS SQL est invalide : %s"
-#: setup.php:867
+#: setup.php:861
msgid ""
"Your web server is not yet properly setup to allow files synchronization "
"because the WebDAV interface seems to be broken."
msgstr "Votre serveur web, n'est pas correctement configuré pour permettre la synchronisation des fichiers, car l'interface WebDav ne fonctionne pas comme il faut."
-#: setup.php:868
+#: setup.php:862
#, php-format
msgid "Please double check the installation guides."
msgstr "Veuillez vous référer au guide d'installation."
diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po
index 0e24f27e983..a2b28afbaaf 100644
--- a/l10n/fr/settings.po
+++ b/l10n/fr/settings.po
@@ -4,14 +4,15 @@
#
# Translators:
# Christophe Lherieau , 2013
+# lyly95, 2013
# red0ne , 2013
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:57+0200\n"
-"PO-Revision-Date: 2013-06-10 23:57+0000\n"
-"Last-Translator: I Robot \n"
+"POT-Creation-Date: 2013-06-13 02:16+0200\n"
+"PO-Revision-Date: 2013-06-12 14:14+0000\n"
+"Last-Translator: lyly95\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"
@@ -60,7 +61,7 @@ msgstr "E-mail invalide"
msgid "Unable to delete group"
msgstr "Impossible de supprimer le groupe"
-#: ajax/removeuser.php:24
+#: ajax/removeuser.php:25
msgid "Unable to delete user"
msgstr "Impossible de supprimer l'utilisateur"
@@ -326,11 +327,11 @@ msgstr "Plus"
msgid "Less"
msgstr "Moins"
-#: templates/admin.php:235 templates/personal.php:111
+#: templates/admin.php:235 templates/personal.php:114
msgid "Version"
msgstr "Version"
-#: templates/admin.php:237 templates/personal.php:114
+#: templates/admin.php:237 templates/personal.php:117
msgid ""
"Developed by the ownCloud community, the %s of the available %s"
-msgstr "Vous avez utilisé %s des %s disponibles"
-
-#: templates/personal.php:15
+#: templates/personal.php:9
msgid "Get the apps to sync your files"
msgstr "Obtenez les applications de synchronisation de vos fichiers"
-#: templates/personal.php:26
+#: templates/personal.php:20
msgid "Show First Run Wizard again"
msgstr "Revoir le premier lancement de l'installeur"
-#: templates/personal.php:37 templates/users.php:23 templates/users.php:86
+#: templates/personal.php:28
+#, php-format
+msgid "You have used %s of the available %s"
+msgstr "Vous avez utilisé %s des %s disponibles"
+
+#: templates/personal.php:40 templates/users.php:23 templates/users.php:86
msgid "Password"
msgstr "Mot de passe"
-#: templates/personal.php:38
+#: templates/personal.php:41
msgid "Your password was changed"
msgstr "Votre mot de passe a été changé"
-#: templates/personal.php:39
+#: templates/personal.php:42
msgid "Unable to change your password"
msgstr "Impossible de changer votre mot de passe"
-#: templates/personal.php:40
+#: templates/personal.php:43
msgid "Current password"
msgstr "Mot de passe actuel"
-#: templates/personal.php:42
+#: templates/personal.php:45
msgid "New password"
msgstr "Nouveau mot de passe"
-#: templates/personal.php:44
+#: templates/personal.php:47
msgid "Change password"
msgstr "Changer de mot de passe"
-#: templates/personal.php:56 templates/users.php:85
+#: templates/personal.php:59 templates/users.php:85
msgid "Display Name"
msgstr "Nom affiché"
-#: templates/personal.php:71
+#: templates/personal.php:74
msgid "Email"
msgstr "Adresse mail"
-#: templates/personal.php:73
+#: templates/personal.php:76
msgid "Your email address"
msgstr "Votre adresse e-mail"
-#: templates/personal.php:74
+#: templates/personal.php:77
msgid "Fill in an email address to enable password recovery"
msgstr "Entrez votre adresse e-mail pour permettre la réinitialisation du mot de passe"
-#: templates/personal.php:83 templates/personal.php:84
+#: templates/personal.php:86 templates/personal.php:87
msgid "Language"
msgstr "Langue"
-#: templates/personal.php:95
+#: templates/personal.php:98
msgid "Help translate"
msgstr "Aidez à traduire"
-#: templates/personal.php:100
+#: templates/personal.php:103
msgid "WebDAV"
msgstr "WebDAV"
-#: templates/personal.php:102
+#: templates/personal.php:105
msgid "Use this address to connect to your ownCloud in your file manager"
msgstr "Utiliser cette adresse pour vous connecter à ownCloud dans votre gestionnaire de fichiers"
@@ -473,7 +474,7 @@ msgstr "Récupération du mot de passe administrateur"
msgid ""
"Enter the recovery password in order to recover the users files during "
"password change"
-msgstr ""
+msgstr "Entrer le mot de passe de récupération dans le but de récupérer les fichiers utilisateurs pendant le changement de mot de passe"
#: templates/users.php:42
msgid "Default Storage"
diff --git a/l10n/fr/user_ldap.po b/l10n/fr/user_ldap.po
index 9b99ed08546..0ac88d216ea 100644
--- a/l10n/fr/user_ldap.po
+++ b/l10n/fr/user_ldap.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:56+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: plachance \n"
"Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/gl/core.po b/l10n/gl/core.po
index d8f74dc22f0..5952a8210ab 100644
--- a/l10n/gl/core.po
+++ b/l10n/gl/core.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:57+0200\n"
-"PO-Revision-Date: 2013-06-10 23:18+0000\n"
+"POT-Creation-Date: 2013-06-13 02:16+0200\n"
+"PO-Revision-Date: 2013-06-12 01:02+0000\n"
"Last-Translator: mbouzada \n"
"Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/gl/files.po b/l10n/gl/files.po
index fdc2b1fa1cf..3b683190b95 100644
--- a/l10n/gl/files.po
+++ b/l10n/gl/files.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:18+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:27+0000\n"
"Last-Translator: mbouzada \n"
"Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/gl/files_external.po b/l10n/gl/files_external.po
index c35bb32e849..c68d4701866 100644
--- a/l10n/gl/files_external.po
+++ b/l10n/gl/files_external.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/gl/files_sharing.po b/l10n/gl/files_sharing.po
index 72b88f908b7..d3b3018a8b9 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: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/gl/files_trashbin.po b/l10n/gl/files_trashbin.po
index 120165caeb5..16513d74efd 100644
--- a/l10n/gl/files_trashbin.po
+++ b/l10n/gl/files_trashbin.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/gl/lib.po b/l10n/gl/lib.po
index d6abaa5967f..491db94ee7a 100644
--- a/l10n/gl/lib.po
+++ b/l10n/gl/lib.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:57+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-13 02:16+0200\n"
+"PO-Revision-Date: 2013-06-12 01:02+0000\n"
"Last-Translator: mbouzada \n"
"Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n"
"MIME-Version: 1.0\n"
@@ -18,27 +18,27 @@ msgstr ""
"Language: gl\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: app.php:357
+#: app.php:358
msgid "Help"
msgstr "Axuda"
-#: app.php:370
+#: app.php:371
msgid "Personal"
msgstr "Persoal"
-#: app.php:381
+#: app.php:382
msgid "Settings"
msgstr "Axustes"
-#: app.php:393
+#: app.php:394
msgid "Users"
msgstr "Usuarios"
-#: app.php:406
+#: app.php:407
msgid "Apps"
msgstr "Aplicativos"
-#: app.php:414
+#: app.php:415
msgid "Admin"
msgstr "Administración"
@@ -114,76 +114,76 @@ msgstr "%s non se poden empregar puntos na base de datos"
msgid "%s set the database host."
msgstr "%s estabeleza o servidor da base de datos"
-#: setup.php:132 setup.php:329 setup.php:374
+#: setup.php:126 setup.php:323 setup.php:368
msgid "PostgreSQL username and/or password not valid"
msgstr "Nome de usuario e/ou contrasinal de PostgreSQL incorrecto"
-#: setup.php:133 setup.php:238
+#: setup.php:127 setup.php:232
msgid "You need to enter either an existing account or the administrator."
msgstr "Deberá introducir unha conta existente ou o administrador."
-#: setup.php:155
+#: setup.php:149
msgid "Oracle connection could not be established"
msgstr "Non foi posíbel estabelecer a conexión con Oracle"
-#: setup.php:237
+#: setup.php:231
msgid "MySQL username and/or password not valid"
msgstr "Nome de usuario e/ou contrasinal de MySQL incorrecto"
-#: setup.php:291 setup.php:395 setup.php:404 setup.php:422 setup.php:432
-#: setup.php:441 setup.php:474 setup.php:540 setup.php:566 setup.php:573
-#: setup.php:584 setup.php:591 setup.php:600 setup.php:608 setup.php:617
-#: setup.php:623
+#: setup.php:285 setup.php:389 setup.php:398 setup.php:416 setup.php:426
+#: setup.php:435 setup.php:468 setup.php:534 setup.php:560 setup.php:567
+#: setup.php:578 setup.php:585 setup.php:594 setup.php:602 setup.php:611
+#: setup.php:617
#, php-format
msgid "DB Error: \"%s\""
msgstr "Produciuse un erro na base de datos: «%s»"
-#: setup.php:292 setup.php:396 setup.php:405 setup.php:423 setup.php:433
-#: setup.php:442 setup.php:475 setup.php:541 setup.php:567 setup.php:574
-#: setup.php:585 setup.php:601 setup.php:609 setup.php:618
+#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427
+#: setup.php:436 setup.php:469 setup.php:535 setup.php:561 setup.php:568
+#: setup.php:579 setup.php:595 setup.php:603 setup.php:612
#, php-format
msgid "Offending command was: \"%s\""
msgstr "A orde ofensiva foi: «%s»"
-#: setup.php:308
+#: setup.php:302
#, php-format
msgid "MySQL user '%s'@'localhost' exists already."
msgstr "O usuario MySQL '%s'@'localhost' xa existe."
-#: setup.php:309
+#: setup.php:303
msgid "Drop this user from MySQL"
msgstr "Omitir este usuario de MySQL"
-#: setup.php:314
+#: setup.php:308
#, php-format
msgid "MySQL user '%s'@'%%' already exists"
msgstr "O usuario MySQL «%s»@«%%» xa existe."
-#: setup.php:315
+#: setup.php:309
msgid "Drop this user from MySQL."
msgstr "Omitir este usuario de MySQL."
-#: setup.php:466 setup.php:533
+#: setup.php:460 setup.php:527
msgid "Oracle username and/or password not valid"
msgstr "Nome de usuario e/ou contrasinal de Oracle incorrecto"
-#: setup.php:592 setup.php:624
+#: setup.php:586 setup.php:618
#, php-format
msgid "Offending command was: \"%s\", name: %s, password: %s"
msgstr "A orde ofensiva foi: «%s», nome: %s, contrasinal: %s"
-#: setup.php:644
+#: setup.php:638
#, php-format
msgid "MS SQL username and/or password not valid: %s"
msgstr "Nome de usuario e/ou contrasinal de MS SQL incorrecto: %s"
-#: setup.php:867
+#: setup.php:861
msgid ""
"Your web server is not yet properly setup to allow files synchronization "
"because the WebDAV interface seems to be broken."
msgstr "O seu servidor web non está aínda configurado adecuadamente para permitir a sincronización de ficheiros xa que semella que a interface WebDAV non está a funcionar."
-#: setup.php:868
+#: setup.php:862
#, php-format
msgid "Please double check the installation guides."
msgstr "Volva comprobar as guías de instalación"
diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po
index c3cbc5de08e..354115826d5 100644
--- a/l10n/gl/settings.po
+++ b/l10n/gl/settings.po
@@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:57+0200\n"
-"PO-Revision-Date: 2013-06-10 23:57+0000\n"
-"Last-Translator: I Robot \n"
+"POT-Creation-Date: 2013-06-12 02:56+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
+"Last-Translator: mbouzada \n"
"Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -438,7 +438,7 @@ msgstr "O seu enderezo de correo"
#: templates/personal.php:74
msgid "Fill in an email address to enable password recovery"
-msgstr "Escriba un enderezo de correo para activar a recuperación do contrasinal"
+msgstr "Escriba un enderezo de correo para activar o contrasinal de recuperación"
#: templates/personal.php:83 templates/personal.php:84
msgid "Language"
@@ -466,13 +466,13 @@ msgstr "Crear"
#: templates/users.php:36
msgid "Admin Recovery Password"
-msgstr "Recuperación do contrasinal do administrador"
+msgstr "Contrasinal de recuperación do administrador"
#: templates/users.php:37 templates/users.php:38
msgid ""
"Enter the recovery password in order to recover the users files during "
"password change"
-msgstr ""
+msgstr "Introduza o contrasinal de recuperación para recuperar os ficheiros dos usuarios durante o cambio de contrasinal"
#: templates/users.php:42
msgid "Default Storage"
diff --git a/l10n/gl/user_ldap.po b/l10n/gl/user_ldap.po
index 23a87e823d6..e044c6bf20d 100644
--- a/l10n/gl/user_ldap.po
+++ b/l10n/gl/user_ldap.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:56+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: mbouzada \n"
"Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/he/core.po b/l10n/he/core.po
index 7ad804720b8..1a341ff74dc 100644
--- a/l10n/he/core.po
+++ b/l10n/he/core.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:57+0200\n"
-"PO-Revision-Date: 2013-06-10 23:18+0000\n"
+"POT-Creation-Date: 2013-06-13 02:16+0200\n"
+"PO-Revision-Date: 2013-06-12 01:02+0000\n"
"Last-Translator: Yaron Shahrabani \n"
"Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/he/files.po b/l10n/he/files.po
index d961de548dd..fcf545a9c85 100644
--- a/l10n/he/files.po
+++ b/l10n/he/files.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:18+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:27+0000\n"
"Last-Translator: Yaron Shahrabani \n"
"Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/he/files_external.po b/l10n/he/files_external.po
index 974ab5db98d..26cfc5ad277 100644
--- a/l10n/he/files_external.po
+++ b/l10n/he/files_external.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/he/files_sharing.po b/l10n/he/files_sharing.po
index 74b5c28823d..2653e688816 100644
--- a/l10n/he/files_sharing.po
+++ b/l10n/he/files_sharing.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/he/files_trashbin.po b/l10n/he/files_trashbin.po
index cadc4be3818..54fc52620b8 100644
--- a/l10n/he/files_trashbin.po
+++ b/l10n/he/files_trashbin.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: Yaron Shahrabani \n"
"Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/he/lib.po b/l10n/he/lib.po
index d596a65542e..4145111ff89 100644
--- a/l10n/he/lib.po
+++ b/l10n/he/lib.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:57+0200\n"
-"PO-Revision-Date: 2013-06-10 23:18+0000\n"
+"POT-Creation-Date: 2013-06-13 02:16+0200\n"
+"PO-Revision-Date: 2013-06-12 01: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"
@@ -17,27 +17,27 @@ msgstr ""
"Language: he\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: app.php:357
+#: app.php:358
msgid "Help"
msgstr "עזרה"
-#: app.php:370
+#: app.php:371
msgid "Personal"
msgstr "אישי"
-#: app.php:381
+#: app.php:382
msgid "Settings"
msgstr "הגדרות"
-#: app.php:393
+#: app.php:394
msgid "Users"
msgstr "משתמשים"
-#: app.php:406
+#: app.php:407
msgid "Apps"
msgstr "יישומים"
-#: app.php:414
+#: app.php:415
msgid "Admin"
msgstr "מנהל"
@@ -113,76 +113,76 @@ msgstr ""
msgid "%s set the database host."
msgstr ""
-#: setup.php:132 setup.php:329 setup.php:374
+#: setup.php:126 setup.php:323 setup.php:368
msgid "PostgreSQL username and/or password not valid"
msgstr ""
-#: setup.php:133 setup.php:238
+#: setup.php:127 setup.php:232
msgid "You need to enter either an existing account or the administrator."
msgstr ""
-#: setup.php:155
+#: setup.php:149
msgid "Oracle connection could not be established"
msgstr ""
-#: setup.php:237
+#: setup.php:231
msgid "MySQL username and/or password not valid"
msgstr ""
-#: setup.php:291 setup.php:395 setup.php:404 setup.php:422 setup.php:432
-#: setup.php:441 setup.php:474 setup.php:540 setup.php:566 setup.php:573
-#: setup.php:584 setup.php:591 setup.php:600 setup.php:608 setup.php:617
-#: setup.php:623
+#: setup.php:285 setup.php:389 setup.php:398 setup.php:416 setup.php:426
+#: setup.php:435 setup.php:468 setup.php:534 setup.php:560 setup.php:567
+#: setup.php:578 setup.php:585 setup.php:594 setup.php:602 setup.php:611
+#: setup.php:617
#, php-format
msgid "DB Error: \"%s\""
msgstr ""
-#: setup.php:292 setup.php:396 setup.php:405 setup.php:423 setup.php:433
-#: setup.php:442 setup.php:475 setup.php:541 setup.php:567 setup.php:574
-#: setup.php:585 setup.php:601 setup.php:609 setup.php:618
+#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427
+#: setup.php:436 setup.php:469 setup.php:535 setup.php:561 setup.php:568
+#: setup.php:579 setup.php:595 setup.php:603 setup.php:612
#, php-format
msgid "Offending command was: \"%s\""
msgstr ""
-#: setup.php:308
+#: setup.php:302
#, php-format
msgid "MySQL user '%s'@'localhost' exists already."
msgstr ""
-#: setup.php:309
+#: setup.php:303
msgid "Drop this user from MySQL"
msgstr ""
-#: setup.php:314
+#: setup.php:308
#, php-format
msgid "MySQL user '%s'@'%%' already exists"
msgstr ""
-#: setup.php:315
+#: setup.php:309
msgid "Drop this user from MySQL."
msgstr ""
-#: setup.php:466 setup.php:533
+#: setup.php:460 setup.php:527
msgid "Oracle username and/or password not valid"
msgstr ""
-#: setup.php:592 setup.php:624
+#: setup.php:586 setup.php:618
#, php-format
msgid "Offending command was: \"%s\", name: %s, password: %s"
msgstr ""
-#: setup.php:644
+#: setup.php:638
#, php-format
msgid "MS SQL username and/or password not valid: %s"
msgstr ""
-#: setup.php:867
+#: setup.php:861
msgid ""
"Your web server is not yet properly setup to allow files synchronization "
"because the WebDAV interface seems to be broken."
msgstr "שרת האינטרנט שלך אינו מוגדר לצורכי סנכרון קבצים עדיין כיוון שמנשק ה־WebDAV כנראה אינו תקין."
-#: setup.php:868
+#: setup.php:862
#, php-format
msgid "Please double check the installation guides."
msgstr "נא לעיין שוב במדריכי ההתקנה."
diff --git a/l10n/he/settings.po b/l10n/he/settings.po
index b7bf6a769f9..1486d9004eb 100644
--- a/l10n/he/settings.po
+++ b/l10n/he/settings.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:57+0200\n"
-"PO-Revision-Date: 2013-06-10 23:57+0000\n"
+"POT-Creation-Date: 2013-06-12 02:56+0200\n"
+"PO-Revision-Date: 2013-06-11 23:27+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/he/user_ldap.po b/l10n/he/user_ldap.po
index 2a03b8604d5..ca9b80b2599 100644
--- a/l10n/he/user_ldap.po
+++ b/l10n/he/user_ldap.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:56+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/hi/core.po b/l10n/hi/core.po
index 8b7cb4730b9..9bacd6de82d 100644
--- a/l10n/hi/core.po
+++ b/l10n/hi/core.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:57+0200\n"
-"PO-Revision-Date: 2013-06-10 23:18+0000\n"
+"POT-Creation-Date: 2013-06-13 02:16+0200\n"
+"PO-Revision-Date: 2013-06-12 01:02+0000\n"
"Last-Translator: rktaiwala \n"
"Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/hi/files.po b/l10n/hi/files.po
index b98770c3984..56541675e00 100644
--- a/l10n/hi/files.po
+++ b/l10n/hi/files.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:18+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:27+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/hi/lib.po b/l10n/hi/lib.po
index 3be5f9c622a..e8e69c034be 100644
--- a/l10n/hi/lib.po
+++ b/l10n/hi/lib.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:57+0200\n"
-"PO-Revision-Date: 2013-06-10 00:02+0000\n"
+"POT-Creation-Date: 2013-06-13 02:16+0200\n"
+"PO-Revision-Date: 2013-06-12 01: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"
@@ -17,27 +17,27 @@ msgstr ""
"Language: hi\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: app.php:357
+#: app.php:358
msgid "Help"
msgstr "सहयोग"
-#: app.php:370
+#: app.php:371
msgid "Personal"
msgstr "यक्तिगत"
-#: app.php:381
+#: app.php:382
msgid "Settings"
msgstr "सेटिंग्स"
-#: app.php:393
+#: app.php:394
msgid "Users"
msgstr "उपयोगकर्ता"
-#: app.php:406
+#: app.php:407
msgid "Apps"
msgstr "Apps"
-#: app.php:414
+#: app.php:415
msgid "Admin"
msgstr ""
@@ -113,76 +113,76 @@ msgstr ""
msgid "%s set the database host."
msgstr ""
-#: setup.php:132 setup.php:329 setup.php:374
+#: setup.php:126 setup.php:323 setup.php:368
msgid "PostgreSQL username and/or password not valid"
msgstr ""
-#: setup.php:133 setup.php:238
+#: setup.php:127 setup.php:232
msgid "You need to enter either an existing account or the administrator."
msgstr ""
-#: setup.php:155
+#: setup.php:149
msgid "Oracle connection could not be established"
msgstr ""
-#: setup.php:237
+#: setup.php:231
msgid "MySQL username and/or password not valid"
msgstr ""
-#: setup.php:291 setup.php:395 setup.php:404 setup.php:422 setup.php:432
-#: setup.php:441 setup.php:474 setup.php:540 setup.php:566 setup.php:573
-#: setup.php:584 setup.php:591 setup.php:600 setup.php:608 setup.php:617
-#: setup.php:623
+#: setup.php:285 setup.php:389 setup.php:398 setup.php:416 setup.php:426
+#: setup.php:435 setup.php:468 setup.php:534 setup.php:560 setup.php:567
+#: setup.php:578 setup.php:585 setup.php:594 setup.php:602 setup.php:611
+#: setup.php:617
#, php-format
msgid "DB Error: \"%s\""
msgstr ""
-#: setup.php:292 setup.php:396 setup.php:405 setup.php:423 setup.php:433
-#: setup.php:442 setup.php:475 setup.php:541 setup.php:567 setup.php:574
-#: setup.php:585 setup.php:601 setup.php:609 setup.php:618
+#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427
+#: setup.php:436 setup.php:469 setup.php:535 setup.php:561 setup.php:568
+#: setup.php:579 setup.php:595 setup.php:603 setup.php:612
#, php-format
msgid "Offending command was: \"%s\""
msgstr ""
-#: setup.php:308
+#: setup.php:302
#, php-format
msgid "MySQL user '%s'@'localhost' exists already."
msgstr ""
-#: setup.php:309
+#: setup.php:303
msgid "Drop this user from MySQL"
msgstr ""
-#: setup.php:314
+#: setup.php:308
#, php-format
msgid "MySQL user '%s'@'%%' already exists"
msgstr ""
-#: setup.php:315
+#: setup.php:309
msgid "Drop this user from MySQL."
msgstr ""
-#: setup.php:466 setup.php:533
+#: setup.php:460 setup.php:527
msgid "Oracle username and/or password not valid"
msgstr ""
-#: setup.php:592 setup.php:624
+#: setup.php:586 setup.php:618
#, php-format
msgid "Offending command was: \"%s\", name: %s, password: %s"
msgstr ""
-#: setup.php:644
+#: setup.php:638
#, php-format
msgid "MS SQL username and/or password not valid: %s"
msgstr ""
-#: setup.php:867
+#: setup.php:861
msgid ""
"Your web server is not yet properly setup to allow files synchronization "
"because the WebDAV interface seems to be broken."
msgstr ""
-#: setup.php:868
+#: setup.php:862
#, php-format
msgid "Please double check the installation guides."
msgstr ""
diff --git a/l10n/hr/core.po b/l10n/hr/core.po
index 28139163acd..b818e22f355 100644
--- a/l10n/hr/core.po
+++ b/l10n/hr/core.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:57+0200\n"
-"PO-Revision-Date: 2013-06-10 23:18+0000\n"
+"POT-Creation-Date: 2013-06-13 02:16+0200\n"
+"PO-Revision-Date: 2013-06-12 01:02+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/hr/files.po b/l10n/hr/files.po
index 99d1cddf378..c3f64b266ae 100644
--- a/l10n/hr/files.po
+++ b/l10n/hr/files.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:18+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:27+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/hr/files_external.po b/l10n/hr/files_external.po
index 3e55af2b270..e907f86b9f7 100644
--- a/l10n/hr/files_external.po
+++ b/l10n/hr/files_external.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/hr/files_sharing.po b/l10n/hr/files_sharing.po
index 49fa9fb18ee..0479c526802 100644
--- a/l10n/hr/files_sharing.po
+++ b/l10n/hr/files_sharing.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/hr/files_trashbin.po b/l10n/hr/files_trashbin.po
index ef3e4f6b4de..71cc5a3d905 100644
--- a/l10n/hr/files_trashbin.po
+++ b/l10n/hr/files_trashbin.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/hr/lib.po b/l10n/hr/lib.po
index cf4e8e95b2a..4c95564d97d 100644
--- a/l10n/hr/lib.po
+++ b/l10n/hr/lib.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:57+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-13 02:16+0200\n"
+"PO-Revision-Date: 2013-06-12 01: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,27 +17,27 @@ 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"
-#: app.php:357
+#: app.php:358
msgid "Help"
msgstr "Pomoć"
-#: app.php:370
+#: app.php:371
msgid "Personal"
msgstr "Osobno"
-#: app.php:381
+#: app.php:382
msgid "Settings"
msgstr "Postavke"
-#: app.php:393
+#: app.php:394
msgid "Users"
msgstr "Korisnici"
-#: app.php:406
+#: app.php:407
msgid "Apps"
msgstr "Aplikacije"
-#: app.php:414
+#: app.php:415
msgid "Admin"
msgstr "Administrator"
@@ -113,76 +113,76 @@ msgstr ""
msgid "%s set the database host."
msgstr ""
-#: setup.php:132 setup.php:329 setup.php:374
+#: setup.php:126 setup.php:323 setup.php:368
msgid "PostgreSQL username and/or password not valid"
msgstr ""
-#: setup.php:133 setup.php:238
+#: setup.php:127 setup.php:232
msgid "You need to enter either an existing account or the administrator."
msgstr ""
-#: setup.php:155
+#: setup.php:149
msgid "Oracle connection could not be established"
msgstr ""
-#: setup.php:237
+#: setup.php:231
msgid "MySQL username and/or password not valid"
msgstr ""
-#: setup.php:291 setup.php:395 setup.php:404 setup.php:422 setup.php:432
-#: setup.php:441 setup.php:474 setup.php:540 setup.php:566 setup.php:573
-#: setup.php:584 setup.php:591 setup.php:600 setup.php:608 setup.php:617
-#: setup.php:623
+#: setup.php:285 setup.php:389 setup.php:398 setup.php:416 setup.php:426
+#: setup.php:435 setup.php:468 setup.php:534 setup.php:560 setup.php:567
+#: setup.php:578 setup.php:585 setup.php:594 setup.php:602 setup.php:611
+#: setup.php:617
#, php-format
msgid "DB Error: \"%s\""
msgstr ""
-#: setup.php:292 setup.php:396 setup.php:405 setup.php:423 setup.php:433
-#: setup.php:442 setup.php:475 setup.php:541 setup.php:567 setup.php:574
-#: setup.php:585 setup.php:601 setup.php:609 setup.php:618
+#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427
+#: setup.php:436 setup.php:469 setup.php:535 setup.php:561 setup.php:568
+#: setup.php:579 setup.php:595 setup.php:603 setup.php:612
#, php-format
msgid "Offending command was: \"%s\""
msgstr ""
-#: setup.php:308
+#: setup.php:302
#, php-format
msgid "MySQL user '%s'@'localhost' exists already."
msgstr ""
-#: setup.php:309
+#: setup.php:303
msgid "Drop this user from MySQL"
msgstr ""
-#: setup.php:314
+#: setup.php:308
#, php-format
msgid "MySQL user '%s'@'%%' already exists"
msgstr ""
-#: setup.php:315
+#: setup.php:309
msgid "Drop this user from MySQL."
msgstr ""
-#: setup.php:466 setup.php:533
+#: setup.php:460 setup.php:527
msgid "Oracle username and/or password not valid"
msgstr ""
-#: setup.php:592 setup.php:624
+#: setup.php:586 setup.php:618
#, php-format
msgid "Offending command was: \"%s\", name: %s, password: %s"
msgstr ""
-#: setup.php:644
+#: setup.php:638
#, php-format
msgid "MS SQL username and/or password not valid: %s"
msgstr ""
-#: setup.php:867
+#: setup.php:861
msgid ""
"Your web server is not yet properly setup to allow files synchronization "
"because the WebDAV interface seems to be broken."
msgstr ""
-#: setup.php:868
+#: setup.php:862
#, php-format
msgid "Please double check the installation guides."
msgstr ""
diff --git a/l10n/hr/settings.po b/l10n/hr/settings.po
index 7d37ea2f284..6d237686abd 100644
--- a/l10n/hr/settings.po
+++ b/l10n/hr/settings.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:57+0200\n"
-"PO-Revision-Date: 2013-06-10 23:57+0000\n"
+"POT-Creation-Date: 2013-06-12 02:56+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/hr/user_ldap.po b/l10n/hr/user_ldap.po
index de34e9457e7..08f168170c1 100644
--- a/l10n/hr/user_ldap.po
+++ b/l10n/hr/user_ldap.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:56+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/hu_HU/core.po b/l10n/hu_HU/core.po
index 0bf53544075..a8f323a495f 100644
--- a/l10n/hu_HU/core.po
+++ b/l10n/hu_HU/core.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:57+0200\n"
-"PO-Revision-Date: 2013-06-10 23:18+0000\n"
+"POT-Creation-Date: 2013-06-13 02:16+0200\n"
+"PO-Revision-Date: 2013-06-12 01:02+0000\n"
"Last-Translator: Laszlo Tornoci \n"
"Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/hu_HU/files.po b/l10n/hu_HU/files.po
index d9264213599..3a39364461e 100644
--- a/l10n/hu_HU/files.po
+++ b/l10n/hu_HU/files.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:18+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:27+0000\n"
"Last-Translator: Laszlo Tornoci \n"
"Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/hu_HU/files_external.po b/l10n/hu_HU/files_external.po
index 930d0426648..0f9d5ebc39d 100644
--- a/l10n/hu_HU/files_external.po
+++ b/l10n/hu_HU/files_external.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: Laszlo Tornoci \n"
"Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/hu_HU/files_sharing.po b/l10n/hu_HU/files_sharing.po
index 4300707cb8e..a9dfd06b9b0 100644
--- a/l10n/hu_HU/files_sharing.po
+++ b/l10n/hu_HU/files_sharing.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/hu_HU/files_trashbin.po b/l10n/hu_HU/files_trashbin.po
index a4e05bb53fb..fcb618e9399 100644
--- a/l10n/hu_HU/files_trashbin.po
+++ b/l10n/hu_HU/files_trashbin.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/hu_HU/lib.po b/l10n/hu_HU/lib.po
index cdd940d27a2..a5ed2efd69d 100644
--- a/l10n/hu_HU/lib.po
+++ b/l10n/hu_HU/lib.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:57+0200\n"
-"PO-Revision-Date: 2013-06-10 23:18+0000\n"
+"POT-Creation-Date: 2013-06-13 02:16+0200\n"
+"PO-Revision-Date: 2013-06-12 01:02+0000\n"
"Last-Translator: Laszlo Tornoci \n"
"Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n"
"MIME-Version: 1.0\n"
@@ -18,27 +18,27 @@ msgstr ""
"Language: hu_HU\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: app.php:357
+#: app.php:358
msgid "Help"
msgstr "Súgó"
-#: app.php:370
+#: app.php:371
msgid "Personal"
msgstr "Személyes"
-#: app.php:381
+#: app.php:382
msgid "Settings"
msgstr "Beállítások"
-#: app.php:393
+#: app.php:394
msgid "Users"
msgstr "Felhasználók"
-#: app.php:406
+#: app.php:407
msgid "Apps"
msgstr "Alkalmazások"
-#: app.php:414
+#: app.php:415
msgid "Admin"
msgstr "Adminsztráció"
@@ -114,76 +114,76 @@ msgstr "%s az adatbázis neve nem tartalmazhat pontot"
msgid "%s set the database host."
msgstr "%s adja meg az adatbázist szolgáltató számítógép nevét."
-#: setup.php:132 setup.php:329 setup.php:374
+#: setup.php:126 setup.php:323 setup.php:368
msgid "PostgreSQL username and/or password not valid"
msgstr "A PostgreSQL felhasználói név és/vagy jelszó érvénytelen"
-#: setup.php:133 setup.php:238
+#: setup.php:127 setup.php:232
msgid "You need to enter either an existing account or the administrator."
msgstr "Vagy egy létező felhasználó vagy az adminisztrátor bejelentkezési nevét kell megadnia"
-#: setup.php:155
+#: setup.php:149
msgid "Oracle connection could not be established"
msgstr "Az Oracle kapcsolat nem hozható létre"
-#: setup.php:237
+#: setup.php:231
msgid "MySQL username and/or password not valid"
msgstr "A MySQL felhasználói név és/vagy jelszó érvénytelen"
-#: setup.php:291 setup.php:395 setup.php:404 setup.php:422 setup.php:432
-#: setup.php:441 setup.php:474 setup.php:540 setup.php:566 setup.php:573
-#: setup.php:584 setup.php:591 setup.php:600 setup.php:608 setup.php:617
-#: setup.php:623
+#: setup.php:285 setup.php:389 setup.php:398 setup.php:416 setup.php:426
+#: setup.php:435 setup.php:468 setup.php:534 setup.php:560 setup.php:567
+#: setup.php:578 setup.php:585 setup.php:594 setup.php:602 setup.php:611
+#: setup.php:617
#, php-format
msgid "DB Error: \"%s\""
msgstr "Adatbázis hiba: \"%s\""
-#: setup.php:292 setup.php:396 setup.php:405 setup.php:423 setup.php:433
-#: setup.php:442 setup.php:475 setup.php:541 setup.php:567 setup.php:574
-#: setup.php:585 setup.php:601 setup.php:609 setup.php:618
+#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427
+#: setup.php:436 setup.php:469 setup.php:535 setup.php:561 setup.php:568
+#: setup.php:579 setup.php:595 setup.php:603 setup.php:612
#, php-format
msgid "Offending command was: \"%s\""
msgstr "A hibát ez a parancs okozta: \"%s\""
-#: setup.php:308
+#: setup.php:302
#, php-format
msgid "MySQL user '%s'@'localhost' exists already."
msgstr "A '%s'@'localhost' MySQL felhasználó már létezik."
-#: setup.php:309
+#: setup.php:303
msgid "Drop this user from MySQL"
msgstr "Törölje ezt a felhasználót a MySQL-ből"
-#: setup.php:314
+#: setup.php:308
#, php-format
msgid "MySQL user '%s'@'%%' already exists"
msgstr "A '%s'@'%%' MySQL felhasználó már létezik"
-#: setup.php:315
+#: setup.php:309
msgid "Drop this user from MySQL."
msgstr "Törölje ezt a felhasználót a MySQL-ből."
-#: setup.php:466 setup.php:533
+#: setup.php:460 setup.php:527
msgid "Oracle username and/or password not valid"
msgstr "Az Oracle felhasználói név és/vagy jelszó érvénytelen"
-#: setup.php:592 setup.php:624
+#: setup.php:586 setup.php:618
#, php-format
msgid "Offending command was: \"%s\", name: %s, password: %s"
msgstr "A hibát okozó parancs ez volt: \"%s\", login név: %s, jelszó: %s"
-#: setup.php:644
+#: setup.php:638
#, php-format
msgid "MS SQL username and/or password not valid: %s"
msgstr "Az MS SQL felhasználónév és/vagy jelszó érvénytelen: %s"
-#: setup.php:867
+#: setup.php:861
msgid ""
"Your web server is not yet properly setup to allow files synchronization "
"because the WebDAV interface seems to be broken."
msgstr "Az Ön webkiszolgálója nincs megfelelően beállítva az állományok szinkronizálásához, mert a WebDAV-elérés úgy tűnik, nem működik."
-#: setup.php:868
+#: setup.php:862
#, php-format
msgid "Please double check the installation guides."
msgstr "Kérjük tüzetesen tanulmányozza át a telepítési útmutatót."
diff --git a/l10n/hu_HU/settings.po b/l10n/hu_HU/settings.po
index be2d44f4951..855361da544 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: 2013-06-11 01:57+0200\n"
-"PO-Revision-Date: 2013-06-10 23:57+0000\n"
+"POT-Creation-Date: 2013-06-12 02:56+0200\n"
+"PO-Revision-Date: 2013-06-11 23:27+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/hu_HU/user_ldap.po b/l10n/hu_HU/user_ldap.po
index e03432f6635..440a6356ea0 100644
--- a/l10n/hu_HU/user_ldap.po
+++ b/l10n/hu_HU/user_ldap.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:56+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: Laszlo Tornoci \n"
"Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/hy/files.po b/l10n/hy/files.po
index d66d6a82868..63c3c13dde8 100644
--- a/l10n/hy/files.po
+++ b/l10n/hy/files.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:18+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:27+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/hy/files_external.po b/l10n/hy/files_external.po
index e09f5096b6d..c56d6181c54 100644
--- a/l10n/hy/files_external.po
+++ b/l10n/hy/files_external.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
"PO-Revision-Date: 2013-04-26 08:01+0000\n"
"Last-Translator: FULL NAME \n"
"Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n"
diff --git a/l10n/hy/files_sharing.po b/l10n/hy/files_sharing.po
index 694b0c24dba..288785e46c2 100644
--- a/l10n/hy/files_sharing.po
+++ b/l10n/hy/files_sharing.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
"PO-Revision-Date: 2013-04-26 08:01+0000\n"
"Last-Translator: FULL NAME \n"
"Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n"
diff --git a/l10n/hy/files_trashbin.po b/l10n/hy/files_trashbin.po
index b3a591da46f..129ab3e29c6 100644
--- a/l10n/hy/files_trashbin.po
+++ b/l10n/hy/files_trashbin.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
"PO-Revision-Date: 2013-04-26 08:01+0000\n"
"Last-Translator: FULL NAME \n"
"Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n"
diff --git a/l10n/hy/settings.po b/l10n/hy/settings.po
index 2ff999d46e1..a26369ab7a2 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: 2013-06-11 01:57+0200\n"
-"PO-Revision-Date: 2013-06-10 23:57+0000\n"
+"POT-Creation-Date: 2013-06-12 02:56+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+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"
diff --git a/l10n/ia/core.po b/l10n/ia/core.po
index e9505c63589..8280c672c3a 100644
--- a/l10n/ia/core.po
+++ b/l10n/ia/core.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:57+0200\n"
-"PO-Revision-Date: 2013-06-10 23:18+0000\n"
+"POT-Creation-Date: 2013-06-13 02:16+0200\n"
+"PO-Revision-Date: 2013-06-12 01:02+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/ia/files.po b/l10n/ia/files.po
index 11212ba486a..36c2422f41a 100644
--- a/l10n/ia/files.po
+++ b/l10n/ia/files.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:18+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:27+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/ia/files_external.po b/l10n/ia/files_external.po
index 7f9d3d9f2f5..e5dfd4cd1ff 100644
--- a/l10n/ia/files_external.po
+++ b/l10n/ia/files_external.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/ia/files_sharing.po b/l10n/ia/files_sharing.po
index baa6c94a5e3..da646a06119 100644
--- a/l10n/ia/files_sharing.po
+++ b/l10n/ia/files_sharing.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/ia/files_trashbin.po b/l10n/ia/files_trashbin.po
index 5119be176e0..f3064aecda2 100644
--- a/l10n/ia/files_trashbin.po
+++ b/l10n/ia/files_trashbin.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/ia/lib.po b/l10n/ia/lib.po
index e9f27bba669..dd91080f435 100644
--- a/l10n/ia/lib.po
+++ b/l10n/ia/lib.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:57+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-13 02:16+0200\n"
+"PO-Revision-Date: 2013-06-12 01: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,27 +17,27 @@ msgstr ""
"Language: ia\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: app.php:357
+#: app.php:358
msgid "Help"
msgstr "Adjuta"
-#: app.php:370
+#: app.php:371
msgid "Personal"
msgstr "Personal"
-#: app.php:381
+#: app.php:382
msgid "Settings"
msgstr "Configurationes"
-#: app.php:393
+#: app.php:394
msgid "Users"
msgstr "Usatores"
-#: app.php:406
+#: app.php:407
msgid "Apps"
msgstr "Applicationes"
-#: app.php:414
+#: app.php:415
msgid "Admin"
msgstr "Administration"
@@ -113,76 +113,76 @@ msgstr ""
msgid "%s set the database host."
msgstr ""
-#: setup.php:132 setup.php:329 setup.php:374
+#: setup.php:126 setup.php:323 setup.php:368
msgid "PostgreSQL username and/or password not valid"
msgstr ""
-#: setup.php:133 setup.php:238
+#: setup.php:127 setup.php:232
msgid "You need to enter either an existing account or the administrator."
msgstr ""
-#: setup.php:155
+#: setup.php:149
msgid "Oracle connection could not be established"
msgstr ""
-#: setup.php:237
+#: setup.php:231
msgid "MySQL username and/or password not valid"
msgstr ""
-#: setup.php:291 setup.php:395 setup.php:404 setup.php:422 setup.php:432
-#: setup.php:441 setup.php:474 setup.php:540 setup.php:566 setup.php:573
-#: setup.php:584 setup.php:591 setup.php:600 setup.php:608 setup.php:617
-#: setup.php:623
+#: setup.php:285 setup.php:389 setup.php:398 setup.php:416 setup.php:426
+#: setup.php:435 setup.php:468 setup.php:534 setup.php:560 setup.php:567
+#: setup.php:578 setup.php:585 setup.php:594 setup.php:602 setup.php:611
+#: setup.php:617
#, php-format
msgid "DB Error: \"%s\""
msgstr ""
-#: setup.php:292 setup.php:396 setup.php:405 setup.php:423 setup.php:433
-#: setup.php:442 setup.php:475 setup.php:541 setup.php:567 setup.php:574
-#: setup.php:585 setup.php:601 setup.php:609 setup.php:618
+#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427
+#: setup.php:436 setup.php:469 setup.php:535 setup.php:561 setup.php:568
+#: setup.php:579 setup.php:595 setup.php:603 setup.php:612
#, php-format
msgid "Offending command was: \"%s\""
msgstr ""
-#: setup.php:308
+#: setup.php:302
#, php-format
msgid "MySQL user '%s'@'localhost' exists already."
msgstr ""
-#: setup.php:309
+#: setup.php:303
msgid "Drop this user from MySQL"
msgstr ""
-#: setup.php:314
+#: setup.php:308
#, php-format
msgid "MySQL user '%s'@'%%' already exists"
msgstr ""
-#: setup.php:315
+#: setup.php:309
msgid "Drop this user from MySQL."
msgstr ""
-#: setup.php:466 setup.php:533
+#: setup.php:460 setup.php:527
msgid "Oracle username and/or password not valid"
msgstr ""
-#: setup.php:592 setup.php:624
+#: setup.php:586 setup.php:618
#, php-format
msgid "Offending command was: \"%s\", name: %s, password: %s"
msgstr ""
-#: setup.php:644
+#: setup.php:638
#, php-format
msgid "MS SQL username and/or password not valid: %s"
msgstr ""
-#: setup.php:867
+#: setup.php:861
msgid ""
"Your web server is not yet properly setup to allow files synchronization "
"because the WebDAV interface seems to be broken."
msgstr ""
-#: setup.php:868
+#: setup.php:862
#, php-format
msgid "Please double check the installation guides."
msgstr ""
diff --git a/l10n/ia/settings.po b/l10n/ia/settings.po
index f7e1597ed17..681da984f28 100644
--- a/l10n/ia/settings.po
+++ b/l10n/ia/settings.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:57+0200\n"
-"PO-Revision-Date: 2013-06-10 23:57+0000\n"
+"POT-Creation-Date: 2013-06-12 02:56+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/ia/user_ldap.po b/l10n/ia/user_ldap.po
index 1942bca216a..a2140645b78 100644
--- a/l10n/ia/user_ldap.po
+++ b/l10n/ia/user_ldap.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:56+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/id/core.po b/l10n/id/core.po
index 8b6c3621ee5..12f56379192 100644
--- a/l10n/id/core.po
+++ b/l10n/id/core.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:57+0200\n"
-"PO-Revision-Date: 2013-06-10 23:18+0000\n"
+"POT-Creation-Date: 2013-06-13 02:16+0200\n"
+"PO-Revision-Date: 2013-06-12 01:02+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/id/files.po b/l10n/id/files.po
index 01cec4e33c0..617d7e35216 100644
--- a/l10n/id/files.po
+++ b/l10n/id/files.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:18+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:27+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/id/files_external.po b/l10n/id/files_external.po
index f70053bee64..fe7ec6480e7 100644
--- a/l10n/id/files_external.po
+++ b/l10n/id/files_external.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/id/files_sharing.po b/l10n/id/files_sharing.po
index 8abdbc9871c..6aa8da6f32f 100644
--- a/l10n/id/files_sharing.po
+++ b/l10n/id/files_sharing.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/id/files_trashbin.po b/l10n/id/files_trashbin.po
index ea107995e8b..63f8a38010e 100644
--- a/l10n/id/files_trashbin.po
+++ b/l10n/id/files_trashbin.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/id/lib.po b/l10n/id/lib.po
index 30b5dc8ff2e..a33a97d24b0 100644
--- a/l10n/id/lib.po
+++ b/l10n/id/lib.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:57+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-13 02:16+0200\n"
+"PO-Revision-Date: 2013-06-12 01: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,27 +17,27 @@ msgstr ""
"Language: id\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-#: app.php:357
+#: app.php:358
msgid "Help"
msgstr "Bantuan"
-#: app.php:370
+#: app.php:371
msgid "Personal"
msgstr "Pribadi"
-#: app.php:381
+#: app.php:382
msgid "Settings"
msgstr "Setelan"
-#: app.php:393
+#: app.php:394
msgid "Users"
msgstr "Pengguna"
-#: app.php:406
+#: app.php:407
msgid "Apps"
msgstr "Aplikasi"
-#: app.php:414
+#: app.php:415
msgid "Admin"
msgstr "Admin"
@@ -113,76 +113,76 @@ msgstr "%sAnda tidak boleh menggunakan karakter titik pada nama basis data"
msgid "%s set the database host."
msgstr "%s setel host basis data."
-#: setup.php:132 setup.php:329 setup.php:374
+#: setup.php:126 setup.php:323 setup.php:368
msgid "PostgreSQL username and/or password not valid"
msgstr "Nama pengguna dan/atau sandi PostgreSQL tidak valid"
-#: setup.php:133 setup.php:238
+#: setup.php:127 setup.php:232
msgid "You need to enter either an existing account or the administrator."
msgstr "Anda harus memasukkan akun yang sudah ada atau administrator."
-#: setup.php:155
+#: setup.php:149
msgid "Oracle connection could not be established"
msgstr ""
-#: setup.php:237
+#: setup.php:231
msgid "MySQL username and/or password not valid"
msgstr "Nama pengguna dan/atau sandi MySQL tidak valid"
-#: setup.php:291 setup.php:395 setup.php:404 setup.php:422 setup.php:432
-#: setup.php:441 setup.php:474 setup.php:540 setup.php:566 setup.php:573
-#: setup.php:584 setup.php:591 setup.php:600 setup.php:608 setup.php:617
-#: setup.php:623
+#: setup.php:285 setup.php:389 setup.php:398 setup.php:416 setup.php:426
+#: setup.php:435 setup.php:468 setup.php:534 setup.php:560 setup.php:567
+#: setup.php:578 setup.php:585 setup.php:594 setup.php:602 setup.php:611
+#: setup.php:617
#, php-format
msgid "DB Error: \"%s\""
msgstr "Galat Basis Data: \"%s\""
-#: setup.php:292 setup.php:396 setup.php:405 setup.php:423 setup.php:433
-#: setup.php:442 setup.php:475 setup.php:541 setup.php:567 setup.php:574
-#: setup.php:585 setup.php:601 setup.php:609 setup.php:618
+#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427
+#: setup.php:436 setup.php:469 setup.php:535 setup.php:561 setup.php:568
+#: setup.php:579 setup.php:595 setup.php:603 setup.php:612
#, php-format
msgid "Offending command was: \"%s\""
msgstr "Perintah yang bermasalah: \"%s\""
-#: setup.php:308
+#: setup.php:302
#, php-format
msgid "MySQL user '%s'@'localhost' exists already."
msgstr "Pengguna MySQL '%s'@'localhost' sudah ada."
-#: setup.php:309
+#: setup.php:303
msgid "Drop this user from MySQL"
msgstr "Hapus pengguna ini dari MySQL"
-#: setup.php:314
+#: setup.php:308
#, php-format
msgid "MySQL user '%s'@'%%' already exists"
msgstr "Pengguna MySQL '%s'@'%%' sudah ada."
-#: setup.php:315
+#: setup.php:309
msgid "Drop this user from MySQL."
msgstr "Hapus pengguna ini dari MySQL."
-#: setup.php:466 setup.php:533
+#: setup.php:460 setup.php:527
msgid "Oracle username and/or password not valid"
msgstr "Nama pengguna dan/atau sandi Oracle tidak valid"
-#: setup.php:592 setup.php:624
+#: setup.php:586 setup.php:618
#, php-format
msgid "Offending command was: \"%s\", name: %s, password: %s"
msgstr "Perintah yang bermasalah: \"%s\", nama pengguna: %s, sandi: %s"
-#: setup.php:644
+#: setup.php:638
#, php-format
msgid "MS SQL username and/or password not valid: %s"
msgstr "Nama pengguna dan/atau sandi MySQL tidak valid: %s"
-#: setup.php:867
+#: setup.php:861
msgid ""
"Your web server is not yet properly setup to allow files synchronization "
"because the WebDAV interface seems to be broken."
msgstr "Web server Anda belum dikonfigurasikan dengan baik untuk mengizinkan sinkronisasi berkas karena tampaknya antarmuka WebDAV rusak."
-#: setup.php:868
+#: setup.php:862
#, php-format
msgid "Please double check the installation guides."
msgstr "Silakan periksa ulang panduan instalasi."
diff --git a/l10n/id/settings.po b/l10n/id/settings.po
index 5425b7ffc78..e8f3ba6f62a 100644
--- a/l10n/id/settings.po
+++ b/l10n/id/settings.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:57+0200\n"
-"PO-Revision-Date: 2013-06-10 23:57+0000\n"
+"POT-Creation-Date: 2013-06-12 02:56+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/id/user_ldap.po b/l10n/id/user_ldap.po
index 184a04f6253..544aabb1ad4 100644
--- a/l10n/id/user_ldap.po
+++ b/l10n/id/user_ldap.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:56+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/is/core.po b/l10n/is/core.po
index 9fc7ec7fc27..d45f0607c95 100644
--- a/l10n/is/core.po
+++ b/l10n/is/core.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:57+0200\n"
-"PO-Revision-Date: 2013-06-10 23:18+0000\n"
+"POT-Creation-Date: 2013-06-13 02:16+0200\n"
+"PO-Revision-Date: 2013-06-12 01:02+0000\n"
"Last-Translator: Magnus Magnusson \n"
"Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/is/files.po b/l10n/is/files.po
index cefd8bdee95..54bb3187211 100644
--- a/l10n/is/files.po
+++ b/l10n/is/files.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:18+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:27+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/is/files_external.po b/l10n/is/files_external.po
index 5ef0f33c038..eb85430062a 100644
--- a/l10n/is/files_external.po
+++ b/l10n/is/files_external.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/is/files_sharing.po b/l10n/is/files_sharing.po
index 1901dcbe8d0..8fddc9bf1d9 100644
--- a/l10n/is/files_sharing.po
+++ b/l10n/is/files_sharing.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/is/files_trashbin.po b/l10n/is/files_trashbin.po
index 9279dd8767d..c5f9d0c5dd1 100644
--- a/l10n/is/files_trashbin.po
+++ b/l10n/is/files_trashbin.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/is/lib.po b/l10n/is/lib.po
index 04fa7060f46..65ba22e236f 100644
--- a/l10n/is/lib.po
+++ b/l10n/is/lib.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:57+0200\n"
-"PO-Revision-Date: 2013-06-10 23:18+0000\n"
+"POT-Creation-Date: 2013-06-13 02:16+0200\n"
+"PO-Revision-Date: 2013-06-12 01:02+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n"
"MIME-Version: 1.0\n"
@@ -17,27 +17,27 @@ msgstr ""
"Language: is\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: app.php:357
+#: app.php:358
msgid "Help"
msgstr "Hjálp"
-#: app.php:370
+#: app.php:371
msgid "Personal"
msgstr "Um mig"
-#: app.php:381
+#: app.php:382
msgid "Settings"
msgstr "Stillingar"
-#: app.php:393
+#: app.php:394
msgid "Users"
msgstr "Notendur"
-#: app.php:406
+#: app.php:407
msgid "Apps"
msgstr "Forrit"
-#: app.php:414
+#: app.php:415
msgid "Admin"
msgstr "Stjórnun"
@@ -113,76 +113,76 @@ msgstr ""
msgid "%s set the database host."
msgstr ""
-#: setup.php:132 setup.php:329 setup.php:374
+#: setup.php:126 setup.php:323 setup.php:368
msgid "PostgreSQL username and/or password not valid"
msgstr ""
-#: setup.php:133 setup.php:238
+#: setup.php:127 setup.php:232
msgid "You need to enter either an existing account or the administrator."
msgstr ""
-#: setup.php:155
+#: setup.php:149
msgid "Oracle connection could not be established"
msgstr ""
-#: setup.php:237
+#: setup.php:231
msgid "MySQL username and/or password not valid"
msgstr ""
-#: setup.php:291 setup.php:395 setup.php:404 setup.php:422 setup.php:432
-#: setup.php:441 setup.php:474 setup.php:540 setup.php:566 setup.php:573
-#: setup.php:584 setup.php:591 setup.php:600 setup.php:608 setup.php:617
-#: setup.php:623
+#: setup.php:285 setup.php:389 setup.php:398 setup.php:416 setup.php:426
+#: setup.php:435 setup.php:468 setup.php:534 setup.php:560 setup.php:567
+#: setup.php:578 setup.php:585 setup.php:594 setup.php:602 setup.php:611
+#: setup.php:617
#, php-format
msgid "DB Error: \"%s\""
msgstr ""
-#: setup.php:292 setup.php:396 setup.php:405 setup.php:423 setup.php:433
-#: setup.php:442 setup.php:475 setup.php:541 setup.php:567 setup.php:574
-#: setup.php:585 setup.php:601 setup.php:609 setup.php:618
+#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427
+#: setup.php:436 setup.php:469 setup.php:535 setup.php:561 setup.php:568
+#: setup.php:579 setup.php:595 setup.php:603 setup.php:612
#, php-format
msgid "Offending command was: \"%s\""
msgstr ""
-#: setup.php:308
+#: setup.php:302
#, php-format
msgid "MySQL user '%s'@'localhost' exists already."
msgstr ""
-#: setup.php:309
+#: setup.php:303
msgid "Drop this user from MySQL"
msgstr ""
-#: setup.php:314
+#: setup.php:308
#, php-format
msgid "MySQL user '%s'@'%%' already exists"
msgstr ""
-#: setup.php:315
+#: setup.php:309
msgid "Drop this user from MySQL."
msgstr ""
-#: setup.php:466 setup.php:533
+#: setup.php:460 setup.php:527
msgid "Oracle username and/or password not valid"
msgstr ""
-#: setup.php:592 setup.php:624
+#: setup.php:586 setup.php:618
#, php-format
msgid "Offending command was: \"%s\", name: %s, password: %s"
msgstr ""
-#: setup.php:644
+#: setup.php:638
#, php-format
msgid "MS SQL username and/or password not valid: %s"
msgstr ""
-#: setup.php:867
+#: setup.php:861
msgid ""
"Your web server is not yet properly setup to allow files synchronization "
"because the WebDAV interface seems to be broken."
msgstr ""
-#: setup.php:868
+#: setup.php:862
#, php-format
msgid "Please double check the installation guides."
msgstr ""
diff --git a/l10n/is/settings.po b/l10n/is/settings.po
index 00e385b26f2..3e343602167 100644
--- a/l10n/is/settings.po
+++ b/l10n/is/settings.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:57+0200\n"
-"PO-Revision-Date: 2013-06-10 23:57+0000\n"
+"POT-Creation-Date: 2013-06-12 02:56+0200\n"
+"PO-Revision-Date: 2013-06-11 23:27+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/is/user_ldap.po b/l10n/is/user_ldap.po
index 8e9b39f5dc0..94586fbf40c 100644
--- a/l10n/is/user_ldap.po
+++ b/l10n/is/user_ldap.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:56+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: Magnus Magnusson \n"
"Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/it/core.po b/l10n/it/core.po
index dbf1b9e4184..26ed08b12a4 100644
--- a/l10n/it/core.po
+++ b/l10n/it/core.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:57+0200\n"
-"PO-Revision-Date: 2013-06-10 23:18+0000\n"
+"POT-Creation-Date: 2013-06-13 02:16+0200\n"
+"PO-Revision-Date: 2013-06-12 01:02+0000\n"
"Last-Translator: Vincenzo Reale \n"
"Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/it/files.po b/l10n/it/files.po
index 65473f268bd..b34d57328a8 100644
--- a/l10n/it/files.po
+++ b/l10n/it/files.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:18+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:27+0000\n"
"Last-Translator: Vincenzo Reale \n"
"Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/it/files_external.po b/l10n/it/files_external.po
index 352a3a0f563..3b1468ba8a1 100644
--- a/l10n/it/files_external.po
+++ b/l10n/it/files_external.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: Vincenzo Reale \n"
"Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/it/files_sharing.po b/l10n/it/files_sharing.po
index 7cb8a66f016..a2f3d796794 100644
--- a/l10n/it/files_sharing.po
+++ b/l10n/it/files_sharing.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: Vincenzo Reale \n"
"Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/it/files_trashbin.po b/l10n/it/files_trashbin.po
index 0ef0ba270fd..1b0c7ae635e 100644
--- a/l10n/it/files_trashbin.po
+++ b/l10n/it/files_trashbin.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:55+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: Vincenzo Reale \n"
"Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/it/lib.po b/l10n/it/lib.po
index 46edfe81deb..449983b3b4f 100644
--- a/l10n/it/lib.po
+++ b/l10n/it/lib.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:57+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-13 02:16+0200\n"
+"PO-Revision-Date: 2013-06-12 01:03+0000\n"
"Last-Translator: Vincenzo Reale \n"
"Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n"
"MIME-Version: 1.0\n"
@@ -18,27 +18,27 @@ msgstr ""
"Language: it\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: app.php:357
+#: app.php:358
msgid "Help"
msgstr "Aiuto"
-#: app.php:370
+#: app.php:371
msgid "Personal"
msgstr "Personale"
-#: app.php:381
+#: app.php:382
msgid "Settings"
msgstr "Impostazioni"
-#: app.php:393
+#: app.php:394
msgid "Users"
msgstr "Utenti"
-#: app.php:406
+#: app.php:407
msgid "Apps"
msgstr "Applicazioni"
-#: app.php:414
+#: app.php:415
msgid "Admin"
msgstr "Admin"
@@ -114,76 +114,76 @@ msgstr "%s non dovresti utilizzare punti nel nome del database"
msgid "%s set the database host."
msgstr "%s imposta l'host del database."
-#: setup.php:132 setup.php:329 setup.php:374
+#: setup.php:126 setup.php:323 setup.php:368
msgid "PostgreSQL username and/or password not valid"
msgstr "Nome utente e/o password di PostgreSQL non validi"
-#: setup.php:133 setup.php:238
+#: setup.php:127 setup.php:232
msgid "You need to enter either an existing account or the administrator."
msgstr "È necessario inserire un account esistente o l'amministratore."
-#: setup.php:155
+#: setup.php:149
msgid "Oracle connection could not be established"
msgstr "La connessione a Oracle non può essere stabilita"
-#: setup.php:237
+#: setup.php:231
msgid "MySQL username and/or password not valid"
msgstr "Nome utente e/o password di MySQL non validi"
-#: setup.php:291 setup.php:395 setup.php:404 setup.php:422 setup.php:432
-#: setup.php:441 setup.php:474 setup.php:540 setup.php:566 setup.php:573
-#: setup.php:584 setup.php:591 setup.php:600 setup.php:608 setup.php:617
-#: setup.php:623
+#: setup.php:285 setup.php:389 setup.php:398 setup.php:416 setup.php:426
+#: setup.php:435 setup.php:468 setup.php:534 setup.php:560 setup.php:567
+#: setup.php:578 setup.php:585 setup.php:594 setup.php:602 setup.php:611
+#: setup.php:617
#, php-format
msgid "DB Error: \"%s\""
msgstr "Errore DB: \"%s\""
-#: setup.php:292 setup.php:396 setup.php:405 setup.php:423 setup.php:433
-#: setup.php:442 setup.php:475 setup.php:541 setup.php:567 setup.php:574
-#: setup.php:585 setup.php:601 setup.php:609 setup.php:618
+#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427
+#: setup.php:436 setup.php:469 setup.php:535 setup.php:561 setup.php:568
+#: setup.php:579 setup.php:595 setup.php:603 setup.php:612
#, php-format
msgid "Offending command was: \"%s\""
msgstr "Il comando non consentito era: \"%s\""
-#: setup.php:308
+#: setup.php:302
#, php-format
msgid "MySQL user '%s'@'localhost' exists already."
msgstr "L'utente MySQL '%s'@'localhost' esiste già."
-#: setup.php:309
+#: setup.php:303
msgid "Drop this user from MySQL"
msgstr "Elimina questo utente da MySQL"
-#: setup.php:314
+#: setup.php:308
#, php-format
msgid "MySQL user '%s'@'%%' already exists"
msgstr "L'utente MySQL '%s'@'%%' esiste già"
-#: setup.php:315
+#: setup.php:309
msgid "Drop this user from MySQL."
msgstr "Elimina questo utente da MySQL."
-#: setup.php:466 setup.php:533
+#: setup.php:460 setup.php:527
msgid "Oracle username and/or password not valid"
msgstr "Nome utente e/o password di Oracle non validi"
-#: setup.php:592 setup.php:624
+#: setup.php:586 setup.php:618
#, php-format
msgid "Offending command was: \"%s\", name: %s, password: %s"
msgstr "Il comando non consentito era: \"%s\", nome: %s, password: %s"
-#: setup.php:644
+#: setup.php:638
#, php-format
msgid "MS SQL username and/or password not valid: %s"
msgstr "Nome utente e/o password MS SQL non validi: %s"
-#: setup.php:867
+#: setup.php:861
msgid ""
"Your web server is not yet properly setup to allow files synchronization "
"because the WebDAV interface seems to be broken."
msgstr "Il tuo server web non è configurato correttamente per consentire la sincronizzazione dei file poiché l'interfaccia WebDAV sembra essere danneggiata."
-#: setup.php:868
+#: setup.php:862
#, php-format
msgid "Please double check the installation guides."
msgstr "Leggi attentamente le guide d'installazione."
diff --git a/l10n/it/settings.po b/l10n/it/settings.po
index 15775aa673e..b808f0f199a 100644
--- a/l10n/it/settings.po
+++ b/l10n/it/settings.po
@@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:57+0200\n"
-"PO-Revision-Date: 2013-06-10 23:57+0000\n"
-"Last-Translator: I Robot \n"
+"POT-Creation-Date: 2013-06-12 02:56+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
+"Last-Translator: Vincenzo Reale \n"
"Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -472,7 +472,7 @@ msgstr "Password di ripristino amministrativa"
msgid ""
"Enter the recovery password in order to recover the users files during "
"password change"
-msgstr ""
+msgstr "Digita la password di ripristino per recuperare i file degli utenti durante la modifica della password."
#: templates/users.php:42
msgid "Default Storage"
diff --git a/l10n/it/user_ldap.po b/l10n/it/user_ldap.po
index 16e0eacac76..8d3238385f8 100644
--- a/l10n/it/user_ldap.po
+++ b/l10n/it/user_ldap.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:56+0200\n"
-"PO-Revision-Date: 2013-06-10 23:19+0000\n"
+"POT-Creation-Date: 2013-06-12 02:56+0200\n"
+"PO-Revision-Date: 2013-06-11 23:28+0000\n"
"Last-Translator: Vincenzo Reale \n"
"Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/ja_JP/core.po b/l10n/ja_JP/core.po
index a80e107429f..50f8f25c865 100644
--- a/l10n/ja_JP/core.po
+++ b/l10n/ja_JP/core.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-06-11 01:57+0200\n"
-"PO-Revision-Date: 2013-06-10 23:18+0000\n"
+"POT-Creation-Date: 2013-06-13 02:16+0200\n"
+"PO-Revision-Date: 2013-06-12 01:02+0000\n"
"Last-Translator: Daisuke Deguchi