diff --git a/apps/files/ajax/list.php b/apps/files/ajax/list.php
index 350fc7fa5f6..0be38c3b96f 100644
--- a/apps/files/ajax/list.php
+++ b/apps/files/ajax/list.php
@@ -10,7 +10,7 @@ OCP\JSON::checkLoggedIn();
// Load the files
$dir = isset( $_GET['dir'] ) ? $_GET['dir'] : '';
-
+$dir = \OC\Files\Filesystem::normalizePath($dir);
if (!\OC\Files\Filesystem::is_dir($dir . '/')) {
header("HTTP/1.0 404 Not Found");
exit();
diff --git a/apps/files/index.php b/apps/files/index.php
index f0f95b3bac8..9ae378d7a1d 100644
--- a/apps/files/index.php
+++ b/apps/files/index.php
@@ -36,6 +36,7 @@ OCP\Util::addscript('files', 'filelist');
OCP\App::setActiveNavigationEntry('files_index');
// Load the files
$dir = isset($_GET['dir']) ? stripslashes($_GET['dir']) : '';
+$dir = \OC\Files\Filesystem::normalizePath($dir);
// Redirect if directory does not exist
if (!\OC\Files\Filesystem::is_dir($dir . '/')) {
header('Location: ' . OCP\Util::getScriptName() . '');
@@ -128,7 +129,7 @@ if ($needUpgrade) {
$tmpl = new OCP\Template('files', 'index', 'user');
$tmpl->assign('fileList', $list->fetchPage());
$tmpl->assign('breadcrumb', $breadcrumbNav->fetchPage());
- $tmpl->assign('dir', \OC\Files\Filesystem::normalizePath($dir));
+ $tmpl->assign('dir', $dir);
$tmpl->assign('isCreatable', $isCreatable);
$tmpl->assign('permissions', $permissions);
$tmpl->assign('files', $files);
diff --git a/apps/files/js/file-upload.js b/apps/files/js/file-upload.js
index 553ca036360..bc1244a1e6e 100644
--- a/apps/files/js/file-upload.js
+++ b/apps/files/js/file-upload.js
@@ -303,16 +303,15 @@ $(document).ready(function() {
OC.Upload.log('fail', e, data);
if (typeof data.textStatus !== 'undefined' && data.textStatus !== 'success' ) {
if (data.textStatus === 'abort') {
- $('#notification').text(t('files', 'Upload cancelled.'));
+ OC.Notification.show(t('files', 'Upload cancelled.'));
} else {
// HTTP connection problem
- $('#notification').text(data.errorThrown);
+ OC.Notification.show(data.errorThrown);
}
- $('#notification').fadeIn();
- //hide notification after 5 sec
+ //hide notification after 10 sec
setTimeout(function() {
- $('#notification').fadeOut();
- }, 5000);
+ OC.Notification.hide();
+ }, 10000);
}
OC.Upload.deleteUpload(data);
},
diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js
index 24a7fd2ee47..49dd28517be 100644
--- a/apps/files/js/filelist.js
+++ b/apps/files/js/filelist.js
@@ -170,6 +170,12 @@ var FileList={
return;
}
FileList.setCurrentDir(targetDir, changeUrl);
+ $('#fileList').trigger(
+ jQuery.Event('changeDirectory', {
+ dir: targetDir,
+ previousDir: currentDir
+ }
+ ));
FileList.reload();
},
linkTo: function(dir) {
@@ -654,19 +660,19 @@ var FileList={
$('.summary .filesize').html(humanFileSize(fileSummary.totalSize));
// Show only what's necessary (may be hidden)
- if ($dirInfo.html().charAt(0) === "0") {
+ if (fileSummary.totalDirs === 0) {
$dirInfo.hide();
$connector.hide();
} else {
$dirInfo.show();
}
- if ($fileInfo.html().charAt(0) === "0") {
+ if (fileSummary.totalFiles === 0) {
$fileInfo.hide();
$connector.hide();
} else {
$fileInfo.show();
}
- if ($dirInfo.html().charAt(0) !== "0" && $fileInfo.html().charAt(0) !== "0") {
+ if (fileSummary.totalDirs > 0 && fileSummary.totalFiles > 0) {
$connector.show();
}
}
diff --git a/apps/files/js/files.js b/apps/files/js/files.js
index 2947512ece5..fdaa3aa3342 100644
--- a/apps/files/js/files.js
+++ b/apps/files/js/files.js
@@ -636,7 +636,7 @@ function procesSelection() {
if (selectedFiles.length>0) {
selection += n('files', '%n file', '%n files', selectedFiles.length);
}
- $('#headerName>span.name').text(selection);
+ $('#headerName span.name').text(selection);
$('#modified').text('');
$('table').addClass('multiselect');
}
diff --git a/apps/files/l10n/pt_BR.php b/apps/files/l10n/pt_BR.php
index 2e7c14acd9c..217e9f4599c 100644
--- a/apps/files/l10n/pt_BR.php
+++ b/apps/files/l10n/pt_BR.php
@@ -60,6 +60,7 @@ $TRANSLATIONS = array(
"Name" => "Nome",
"Size" => "Tamanho",
"Modified" => "Modificado",
+"Invalid folder name. Usage of 'Shared' is reserved." => "Nome da pasta inválido. Uso de 'Shared' é reservado.",
"%s could not be renamed" => "%s não pode ser renomeado",
"Upload" => "Upload",
"File handling" => "Tratamento de Arquivo",
diff --git a/apps/files/l10n/ru_RU.php b/apps/files/l10n/ru_RU.php
index 3b69c96bcdd..3660b300c2b 100644
--- a/apps/files/l10n/ru_RU.php
+++ b/apps/files/l10n/ru_RU.php
@@ -8,6 +8,7 @@ $TRANSLATIONS = array(
"_Uploading %n file_::_Uploading %n files_" => array("","",""),
"Error" => "Ошибка",
"Upload" => "Загрузка",
+"Save" => "Сохранить",
"Cancel upload" => "Отмена загрузки",
"Download" => "Загрузка"
);
diff --git a/apps/files/l10n/uz.php b/apps/files/l10n/uz.php
new file mode 100644
index 00000000000..70ab6572ba4
--- /dev/null
+++ b/apps/files/l10n/uz.php
@@ -0,0 +1,7 @@
+ array(""),
+"_%n file_::_%n files_" => array(""),
+"_Uploading %n file_::_Uploading %n files_" => array("")
+);
+$PLURAL_FORMS = "nplurals=1; plural=0;";
diff --git a/apps/files_encryption/l10n/pt_BR.php b/apps/files_encryption/l10n/pt_BR.php
index fd3e7298bd5..b09b4367c4e 100644
--- a/apps/files_encryption/l10n/pt_BR.php
+++ b/apps/files_encryption/l10n/pt_BR.php
@@ -9,6 +9,7 @@ $TRANSLATIONS = array(
"Private key password successfully updated." => "Senha de chave privada atualizada com sucesso.",
"Could not update the private key password. Maybe the old password was not correct." => "Não foi possível atualizar a senha de chave privada. Talvez a senha antiga esteja incorreta.",
"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." => "Aplicativo de criptografia não foi inicializado! Talvez o aplicativo de criptografia tenha sido reativado durante essa sessão. Por favor, tente fazer logoff e login novamente para inicializar o aplicativo de criptografia.",
+"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Sua chave privada não é válida! Provavelmente sua senha foi alterada fora de %s (por exemplo, seu diretório corporativo). Você pode atualizar sua senha de chave privada em suas configurações pessoais para recuperar o acesso a seus arquivos criptografados.",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." => "Este arquivo não pode ser decriptado, provavelmente este é um arquivo compartilhado. Poe favoe peça ao dono do arquivo para compartilha-lo com você.",
"Unknown error please check your system settings or contact your administrator" => "Erro desconhecido, por favor verifique suas configurações ou faça contato com o administrador",
"Missing requirements." => "Requisitos não encontrados.",
diff --git a/apps/files_encryption/lib/helper.php b/apps/files_encryption/lib/helper.php
index 91dd08ec08d..314ac577b2f 100755
--- a/apps/files_encryption/lib/helper.php
+++ b/apps/files_encryption/lib/helper.php
@@ -157,6 +157,49 @@ class Helper {
return $return;
}
+ /**
+ * @brief Check if a path is a .part file
+ * @param string $path Path that may identify a .part file
+ * @return bool
+ */
+ public static function isPartialFilePath($path) {
+
+ $extension = pathinfo($path, PATHINFO_EXTENSION);
+ if ( $extension === 'part' || $extension === 'etmp') {
+ return true;
+ } else {
+ return false;
+ }
+
+ }
+
+
+ /**
+ * @brief Remove .path extension from a file path
+ * @param string $path Path that may identify a .part file
+ * @return string File path without .part extension
+ * @note this is needed for reusing keys
+ */
+ public static function stripPartialFileExtension($path) {
+ $extension = pathinfo($path, PATHINFO_EXTENSION);
+
+ if ( $extension === 'part' || $extension === 'etmp') {
+
+ $newLength = strlen($path) - 5; // 5 = strlen(".part") = strlen(".etmp")
+ $fPath = substr($path, 0, $newLength);
+
+ // if path also contains a transaction id, we remove it too
+ $extension = pathinfo($fPath, PATHINFO_EXTENSION);
+ if(substr($extension, 0, 12) === 'ocTransferId') { // 12 = strlen("ocTransferId")
+ $newLength = strlen($fPath) - strlen($extension) -1;
+ $fPath = substr($fPath, 0, $newLength);
+ }
+ return $fPath;
+
+ } else {
+ return $path;
+ }
+ }
/**
* @brief disable recovery
diff --git a/apps/files_encryption/lib/keymanager.php b/apps/files_encryption/lib/keymanager.php
index 7143fcff0f6..6dadd12a62e 100755
--- a/apps/files_encryption/lib/keymanager.php
+++ b/apps/files_encryption/lib/keymanager.php
@@ -152,10 +152,10 @@ class Keymanager {
}
// try reusing key file if part file
- if (self::isPartialFilePath($targetPath)) {
+ if (Helper::isPartialFilePath($targetPath)) {
$result = $view->file_put_contents(
- $basePath . '/' . self::fixPartialFilePath($targetPath) . '.key', $catfile);
+ $basePath . '/' . Helper::stripPartialFileExtension($targetPath) . '.key', $catfile);
} else {
@@ -169,48 +169,6 @@ class Keymanager {
}
- /**
- * @brief Remove .path extension from a file path
- * @param string $path Path that may identify a .part file
- * @return string File path without .part extension
- * @note this is needed for reusing keys
- */
- public static function fixPartialFilePath($path) {
-
- if (preg_match('/\.part$/', $path) || preg_match('/\.etmp$/', $path)) {
-
- $newLength = strlen($path) - 5;
- $fPath = substr($path, 0, $newLength);
-
- return $fPath;
-
- } else {
-
- return $path;
-
- }
-
- }
-
- /**
- * @brief Check if a path is a .part file
- * @param string $path Path that may identify a .part file
- * @return bool
- */
- public static function isPartialFilePath($path) {
-
- if (preg_match('/\.part$/', $path) || preg_match('/\.etmp$/', $path)) {
-
- return true;
-
- } else {
-
- return false;
-
- }
-
- }
-
/**
* @brief retrieve keyfile for an encrypted file
* @param \OC_FilesystemView $view
@@ -226,7 +184,7 @@ class Keymanager {
$util = new Util($view, \OCP\User::getUser());
list($owner, $filename) = $util->getUidAndFilename($filePath);
- $filename = self::fixPartialFilePath($filename);
+ $filename = Helper::stripPartialFileExtension($filename);
$filePath_f = ltrim($filename, '/');
// in case of system wide mount points the keys are stored directly in the data directory
@@ -385,8 +343,8 @@ class Keymanager {
foreach ($shareKeys as $userId => $shareKey) {
// try reusing key file if part file
- if (self::isPartialFilePath($shareKeyPath)) {
- $writePath = $basePath . '/' . self::fixPartialFilePath($shareKeyPath) . '.' . $userId . '.shareKey';
+ if (Helper::isPartialFilePath($shareKeyPath)) {
+ $writePath = $basePath . '/' . Helper::stripPartialFileExtension($shareKeyPath) . '.' . $userId . '.shareKey';
} else {
$writePath = $basePath . '/' . $shareKeyPath . '.' . $userId . '.shareKey';
}
@@ -422,7 +380,7 @@ class Keymanager {
$util = new Util($view, \OCP\User::getUser());
list($owner, $filename) = $util->getUidAndFilename($filePath);
- $filename = self::fixPartialFilePath($filename);
+ $filename = Helper::stripPartialFileExtension($filename);
// in case of system wide mount points the keys are stored directly in the data directory
if ($util->isSystemWideMountPoint($filename)) {
$shareKeyPath = '/files_encryption/share-keys/' . $filename . '.' . $userId . '.shareKey';
diff --git a/apps/files_encryption/lib/proxy.php b/apps/files_encryption/lib/proxy.php
index 6dc5c9ce1b8..e2bc8f6b163 100644
--- a/apps/files_encryption/lib/proxy.php
+++ b/apps/files_encryption/lib/proxy.php
@@ -342,7 +342,7 @@ class Proxy extends \OC_FileProxy {
$fileInfo = false;
// get file info from database/cache if not .part file
- if (!Keymanager::isPartialFilePath($path)) {
+ if (!Helper::isPartialFilePath($path)) {
$fileInfo = $view->getFileInfo($path);
}
@@ -353,7 +353,7 @@ class Proxy extends \OC_FileProxy {
$fixSize = $util->getFileSize($path);
$fileInfo['unencrypted_size'] = $fixSize;
// put file info if not .part file
- if (!Keymanager::isPartialFilePath($relativePath)) {
+ if (!Helper::isPartialFilePath($relativePath)) {
$view->putFileInfo($path, $fileInfo);
}
}
@@ -372,7 +372,7 @@ class Proxy extends \OC_FileProxy {
$fileInfo['unencrypted_size'] = $size;
// put file info if not .part file
- if (!Keymanager::isPartialFilePath($relativePath)) {
+ if (!Helper::isPartialFilePath($relativePath)) {
$view->putFileInfo($path, $fileInfo);
}
}
diff --git a/apps/files_encryption/lib/util.php b/apps/files_encryption/lib/util.php
index 5e855abd973..f099a36d0c0 100644
--- a/apps/files_encryption/lib/util.php
+++ b/apps/files_encryption/lib/util.php
@@ -1145,10 +1145,7 @@ class Util {
// Make sure that a share key is generated for the owner too
list($owner, $ownerPath) = $this->getUidAndFilename($filePath);
- $pathinfo = pathinfo($ownerPath);
- if(array_key_exists('extension', $pathinfo) && $pathinfo['extension'] === 'part') {
- $ownerPath = $pathinfo['dirname'] . '/' . $pathinfo['filename'];
- }
+ $ownerPath = \OCA\Encryption\Helper::stripPartialFileExtension($ownerPath);
$userIds = array();
if ($sharingEnabled) {
diff --git a/apps/files_encryption/tests/helper.php b/apps/files_encryption/tests/helper.php
new file mode 100644
index 00000000000..067fc763a95
--- /dev/null
+++ b/apps/files_encryption/tests/helper.php
@@ -0,0 +1,54 @@
+
+ * This file is licensed under the Affero General Public License version 3 or
+ * later.
+ * See the COPYING-README file.
+ */
+
+
+require_once __DIR__ . '/../lib/helper.php';
+
+use OCA\Encryption;
+
+/**
+ * Class Test_Encryption_Helper
+ */
+class Test_Encryption_Helper extends \PHPUnit_Framework_TestCase {
+
+ /**
+ * @medium
+ */
+ function testStripPartialFileExtension() {
+
+ $partFilename = 'testfile.txt.part';
+ $filename = 'testfile.txt';
+
+ $this->assertTrue(Encryption\Helper::isPartialFilePath($partFilename));
+
+ $this->assertEquals('testfile.txt', Encryption\Helper::stripPartialFileExtension($partFilename));
+
+ $this->assertFalse(Encryption\Helper::isPartialFilePath($filename));
+
+ $this->assertEquals('testfile.txt', Encryption\Helper::stripPartialFileExtension($filename));
+ }
+
+
+ /**
+ * @medium
+ */
+ function testStripPartialFileExtensionWithTransferIdPath() {
+
+ $partFilename = 'testfile.txt.ocTransferId643653835.part';
+ $filename = 'testfile.txt';
+
+ $this->assertTrue(Encryption\Helper::isPartialFilePath($partFilename));
+
+ $this->assertEquals('testfile.txt', Encryption\Helper::stripPartialFileExtension($partFilename));
+
+ $this->assertFalse(Encryption\Helper::isPartialFilePath($filename));
+
+ $this->assertEquals('testfile.txt', Encryption\Helper::stripPartialFileExtension($filename));
+ }
+
+}
\ No newline at end of file
diff --git a/apps/files_encryption/tests/keymanager.php b/apps/files_encryption/tests/keymanager.php
index b2d200cca3e..ad6bbd3a7e9 100644
--- a/apps/files_encryption/tests/keymanager.php
+++ b/apps/files_encryption/tests/keymanager.php
@@ -188,23 +188,6 @@ class Test_Encryption_Keymanager extends \PHPUnit_Framework_TestCase {
$this->assertArrayHasKey('key', $sslInfoPrivate);
}
- /**
- * @medium
- */
- function testFixPartialFilePath() {
-
- $partFilename = 'testfile.txt.part';
- $filename = 'testfile.txt';
-
- $this->assertTrue(Encryption\Keymanager::isPartialFilePath($partFilename));
-
- $this->assertEquals('testfile.txt', Encryption\Keymanager::fixPartialFilePath($partFilename));
-
- $this->assertFalse(Encryption\Keymanager::isPartialFilePath($filename));
-
- $this->assertEquals('testfile.txt', Encryption\Keymanager::fixPartialFilePath($filename));
- }
-
/**
* @medium
*/
diff --git a/apps/files_external/css/settings.css b/apps/files_external/css/settings.css
index 0ebae9d82be..9858c10ea35 100644
--- a/apps/files_external/css/settings.css
+++ b/apps/files_external/css/settings.css
@@ -18,3 +18,7 @@ tr:hover>td.remove>img { visibility:visible; cursor:pointer; }
#addMountPoint>td { border:none; }
#addMountPoint>td.applicable { visibility:hidden; }
#selectBackend { margin-left:-10px; }
+
+#externalStorage label > input[type="checkbox"] {
+ margin-right: 3px;
+}
diff --git a/apps/files_sharing/lib/sharedstorage.php b/apps/files_sharing/lib/sharedstorage.php
index 257da89c84e..3116cd717fb 100644
--- a/apps/files_sharing/lib/sharedstorage.php
+++ b/apps/files_sharing/lib/sharedstorage.php
@@ -34,16 +34,16 @@ class Shared extends \OC\Files\Storage\Common {
$this->sharedFolder = $arguments['sharedFolder'];
}
- public function getId(){
+ public function getId() {
return 'shared::' . $this->sharedFolder;
}
/**
- * @brief Get the source file path, permissions, and owner for a shared file
- * @param string Shared target file path
- * @return Returns array with the keys path, permissions, and owner or false if not found
- */
- private function getFile($target) {
+ * @brief Get the source file path, permissions, and owner for a shared file
+ * @param string Shared target file path
+ * @return Returns array with the keys path, permissions, and owner or false if not found
+ */
+ public function getFile($target) {
if (!isset($this->files[$target])) {
// Check for partial files
if (pathinfo($target, PATHINFO_EXTENSION) === 'part') {
@@ -62,18 +62,18 @@ class Shared extends \OC\Files\Storage\Common {
}
/**
- * @brief Get the source file path for a shared file
- * @param string Shared target file path
- * @return string source file path or false if not found
- */
- private function getSourcePath($target) {
+ * @brief Get the source file path for a shared file
+ * @param string Shared target file path
+ * @return string source file path or false if not found
+ */
+ public function getSourcePath($target) {
$source = $this->getFile($target);
if ($source) {
if (!isset($source['fullPath'])) {
\OC\Files\Filesystem::initMountPoints($source['fileOwner']);
$mount = \OC\Files\Filesystem::getMountByNumericId($source['storage']);
if (is_array($mount)) {
- $this->files[$target]['fullPath'] = $mount[key($mount)]->getMountPoint().$source['path'];
+ $this->files[$target]['fullPath'] = $mount[key($mount)]->getMountPoint() . $source['path'];
} else {
$this->files[$target]['fullPath'] = false;
}
@@ -84,10 +84,10 @@ class Shared extends \OC\Files\Storage\Common {
}
/**
- * @brief Get the permissions granted for a shared file
- * @param string Shared target file path
- * @return int CRUDS permissions granted or false if not found
- */
+ * @brief Get the permissions granted for a shared file
+ * @param string Shared target file path
+ * @return int CRUDS permissions granted or false if not found
+ */
public function getPermissions($target) {
$source = $this->getFile($target);
if ($source) {
@@ -222,7 +222,7 @@ class Shared extends \OC\Files\Storage\Common {
if ($path == '' || $path == '/') {
$mtime = 0;
$dh = $this->opendir($path);
- if(is_resource($dh)) {
+ if (is_resource($dh)) {
while (($filename = readdir($dh)) !== false) {
$tempmtime = $this->filemtime($filename);
if ($tempmtime > $mtime) {
@@ -244,7 +244,7 @@ class Shared extends \OC\Files\Storage\Common {
$source = $this->getSourcePath($path);
if ($source) {
$info = array(
- 'target' => $this->sharedFolder.$path,
+ 'target' => $this->sharedFolder . $path,
'source' => $source,
);
\OCP\Util::emitHook('\OC\Files\Storage\Shared', 'file_get_contents', $info);
@@ -257,13 +257,14 @@ class Shared extends \OC\Files\Storage\Common {
if ($source = $this->getSourcePath($path)) {
// Check if permission is granted
if (($this->file_exists($path) && !$this->isUpdatable($path))
- || ($this->is_dir($path) && !$this->isCreatable($path))) {
+ || ($this->is_dir($path) && !$this->isCreatable($path))
+ ) {
return false;
}
$info = array(
- 'target' => $this->sharedFolder.$path,
- 'source' => $source,
- );
+ 'target' => $this->sharedFolder . $path,
+ 'source' => $source,
+ );
\OCP\Util::emitHook('\OC\Files\Storage\Shared', 'file_put_contents', $info);
list($storage, $internalPath) = \OC\Files\Filesystem::resolvePath($source);
$result = $storage->file_put_contents($internalPath, $data);
@@ -304,31 +305,16 @@ class Shared extends \OC\Files\Storage\Common {
$pos1 = strpos($path1, '/', 1);
$pos2 = strpos($path2, '/', 1);
if ($pos1 !== false && $pos2 !== false && ($oldSource = $this->getSourcePath($path1))) {
- $newSource = $this->getSourcePath(dirname($path2)).'/'.basename($path2);
- if (dirname($path1) == dirname($path2)) {
- // Rename the file if UPDATE permission is granted
- if ($this->isUpdatable($path1)) {
- list($storage, $oldInternalPath) = \OC\Files\Filesystem::resolvePath($oldSource);
- list( , $newInternalPath) = \OC\Files\Filesystem::resolvePath($newSource);
- return $storage->rename($oldInternalPath, $newInternalPath);
- }
- } else {
- // Move the file if DELETE and CREATE permissions are granted
- if ($this->isDeletable($path1) && $this->isCreatable(dirname($path2))) {
- // Get the root shared folder
- $folder1 = substr($path1, 0, $pos1);
- $folder2 = substr($path2, 0, $pos2);
- // Copy and unlink the file if it exists in a different shared folder
- if ($folder1 != $folder2) {
- if ($this->copy($path1, $path2)) {
- return $this->unlink($path1);
- }
- } else {
- list($storage, $oldInternalPath) = \OC\Files\Filesystem::resolvePath($oldSource);
- list( , $newInternalPath) = \OC\Files\Filesystem::resolvePath($newSource);
- return $storage->rename($oldInternalPath, $newInternalPath);
- }
- }
+ $newSource = $this->getSourcePath(dirname($path2)) . '/' . basename($path2);
+ // Within the same folder, we only need UPDATE permissions
+ if (dirname($path1) == dirname($path2) and $this->isUpdatable($path1)) {
+ list($storage, $oldInternalPath) = \OC\Files\Filesystem::resolvePath($oldSource);
+ list(, $newInternalPath) = \OC\Files\Filesystem::resolvePath($newSource);
+ return $storage->rename($oldInternalPath, $newInternalPath);
+ // otherwise DELETE and CREATE permissions required
+ } elseif ($this->isDeletable($path1) && $this->isCreatable(dirname($path2))) {
+ $rootView = new \OC\Files\View('');
+ return $rootView->rename($oldSource, $newSource);
}
}
}
@@ -338,10 +324,10 @@ class Shared extends \OC\Files\Storage\Common {
public function copy($path1, $path2) {
// Copy the file if CREATE permission is granted
if ($this->isCreatable(dirname($path2))) {
- $source = $this->fopen($path1, 'r');
- $target = $this->fopen($path2, 'w');
- list ($count, $result) = \OC_Helper::streamCopy($source, $target);
- return $result;
+ $oldSource = $this->getSourcePath($path1);
+ $newSource = $this->getSourcePath(dirname($path2)) . '/' . basename($path2);
+ $rootView = new \OC\Files\View('');
+ return $rootView->copy($oldSource, $newSource);
}
return false;
}
@@ -363,16 +349,16 @@ class Shared extends \OC\Files\Storage\Common {
case 'xb':
case 'a':
case 'ab':
- $exists = $this->file_exists($path);
- if ($exists && !$this->isUpdatable($path)) {
- return false;
- }
- if (!$exists && !$this->isCreatable(dirname($path))) {
- return false;
- }
+ $exists = $this->file_exists($path);
+ if ($exists && !$this->isUpdatable($path)) {
+ return false;
+ }
+ if (!$exists && !$this->isCreatable(dirname($path))) {
+ return false;
+ }
}
$info = array(
- 'target' => $this->sharedFolder.$path,
+ 'target' => $this->sharedFolder . $path,
'source' => $source,
'mode' => $mode,
);
@@ -412,6 +398,7 @@ class Shared extends \OC\Files\Storage\Common {
}
return false;
}
+
public function touch($path, $mtime = null) {
if ($source = $this->getSourcePath($path)) {
list($storage, $internalPath) = \OC\Files\Filesystem::resolvePath($source);
@@ -422,11 +409,12 @@ class Shared extends \OC\Files\Storage\Common {
public static function setup($options) {
if (!\OCP\User::isLoggedIn() || \OCP\User::getUser() != $options['user']
- || \OCP\Share::getItemsSharedWith('file')) {
+ || \OCP\Share::getItemsSharedWith('file')
+ ) {
$user_dir = $options['user_dir'];
\OC\Files\Filesystem::mount('\OC\Files\Storage\Shared',
array('sharedFolder' => '/Shared'),
- $user_dir.'/Shared/');
+ $user_dir . '/Shared/');
}
}
diff --git a/apps/files_sharing/lib/watcher.php b/apps/files_sharing/lib/watcher.php
index 6fdfc1db36d..c40cf6911b8 100644
--- a/apps/files_sharing/lib/watcher.php
+++ b/apps/files_sharing/lib/watcher.php
@@ -32,9 +32,32 @@ class Shared_Watcher extends Watcher {
* @param string $path
*/
public function checkUpdate($path) {
- if ($path != '') {
- parent::checkUpdate($path);
+ if ($path != '' && parent::checkUpdate($path)) {
+ // since checkUpdate() has already updated the size of the subdirs,
+ // only apply the update to the owner's parent dirs
+
+ // find last parent before reaching the shared storage root,
+ // which is the actual shared dir from the owner
+ $sepPos = strpos($path, '/');
+ if ($sepPos > 0) {
+ $baseDir = substr($path, 0, $sepPos);
+ } else {
+ $baseDir = $path;
+ }
+
+ // find the path relative to the data dir
+ $file = $this->storage->getFile($baseDir);
+ $view = new \OC\Files\View('/' . $file['fileOwner']);
+
+ // find the owner's storage and path
+ list($storage, $internalPath) = $view->resolvePath($file['path']);
+
+ // update the parent dirs' sizes in the owner's cache
+ $storage->getCache()->correctFolderSize(dirname($internalPath));
+
+ return true;
}
+ return false;
}
/**
diff --git a/apps/files_sharing/tests/api.php b/apps/files_sharing/tests/api.php
index 44fc4d8b7b3..1278e0c4d1f 100644
--- a/apps/files_sharing/tests/api.php
+++ b/apps/files_sharing/tests/api.php
@@ -20,90 +20,33 @@
*
*/
-require_once __DIR__ . '/../../../lib/base.php';
+require_once __DIR__ . '/base.php';
use OCA\Files\Share;
/**
* Class Test_Files_Sharing_Api
*/
-class Test_Files_Sharing_Api extends \PHPUnit_Framework_TestCase {
-
- const TEST_FILES_SHARING_API_USER1 = "test-share-user1";
- const TEST_FILES_SHARING_API_USER2 = "test-share-user2";
- const TEST_FILES_SHARING_API_USER3 = "test-share-user3";
-
- public $stateFilesEncryption;
- public $filename;
- public $data;
- /**
- * @var OC_FilesystemView
- */
- public $view;
- public $folder;
-
- public static function setUpBeforeClass() {
- // reset backend
- \OC_User::clearBackends();
- \OC_User::useBackend('database');
-
- // clear share hooks
- \OC_Hook::clear('OCP\\Share');
- \OC::registerShareHooks();
- \OCP\Util::connectHook('OC_Filesystem', 'setup', '\OC\Files\Storage\Shared', 'setup');
-
- // create users
- self::loginHelper(\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER1, true);
- self::loginHelper(\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2, true);
- self::loginHelper(\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER3, true);
-
- }
+class Test_Files_Sharing_Api extends Test_Files_Sharing_Base {
function setUp() {
-
- //login as user1
- \Test_Files_Sharing_Api::loginHelper(\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER1);
-
- $this->data = 'foobar';
- $this->view = new \OC_FilesystemView('/' . \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER1 . '/files');
+ parent::setUp();
$this->folder = '/folder_share_api_test';
$this->filename = 'share-api-test.txt';
- // remember files_encryption state
- $this->stateFilesEncryption = \OC_App::isEnabled('files_encryption');
-
- //we don't want to tests with app files_encryption enabled
- \OC_App::disable('files_encryption');
-
-
- $this->assertTrue(!\OC_App::isEnabled('files_encryption'));
-
// save file with content
$this->view->file_put_contents($this->filename, $this->data);
$this->view->mkdir($this->folder);
$this->view->file_put_contents($this->folder.'/'.$this->filename, $this->data);
-
}
function tearDown() {
$this->view->unlink($this->filename);
$this->view->deleteAll($this->folder);
- // reset app files_encryption
- if ($this->stateFilesEncryption) {
- \OC_App::enable('files_encryption');
- } else {
- \OC_App::disable('files_encryption');
- }
- }
- public static function tearDownAfterClass() {
-
- // cleanup users
- \OC_User::deleteUser(\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER1);
- \OC_User::deleteUser(\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2);
- \OC_User::deleteUser(\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER3);
+ parent::tearDown();
}
/**
@@ -548,50 +491,4 @@ class Test_Files_Sharing_Api extends \PHPUnit_Framework_TestCase {
$this->assertTrue(empty($itemsAfterDelete));
}
-
- /**
- * @param $user
- * @param bool $create
- * @param bool $password
- */
- private static function loginHelper($user, $create = false, $password = false) {
- if ($create) {
- \OC_User::createUser($user, $user);
- }
-
- if ($password === false) {
- $password = $user;
- }
-
- \OC_Util::tearDownFS();
- \OC_User::setUserId('');
- \OC\Files\Filesystem::tearDown();
- \OC_Util::setupFS($user);
- \OC_User::setUserId($user);
-
- $params['uid'] = $user;
- $params['password'] = $password;
- }
-
- /**
- * @brief get some information from a given share
- * @param int $shareID
- * @return array with: item_source, share_type, share_with, item_type, permissions
- */
- private function getShareFromId($shareID) {
- $sql = 'SELECT `item_source`, `share_type`, `share_with`, `item_type`, `permissions` FROM `*PREFIX*share` WHERE `id` = ?';
- $args = array($shareID);
- $query = \OCP\DB::prepare($sql);
- $result = $query->execute($args);
-
- $share = Null;
-
- if ($result && $result->numRows() > 0) {
- $share = $result->fetchRow();
- }
-
- return $share;
-
- }
-
}
diff --git a/apps/files_sharing/tests/base.php b/apps/files_sharing/tests/base.php
new file mode 100644
index 00000000000..689c80cb9e6
--- /dev/null
+++ b/apps/files_sharing/tests/base.php
@@ -0,0 +1,143 @@
+
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
+ * License as published by the Free Software Foundation; either
+ * version 3 of the License, or any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU AFFERO GENERAL PUBLIC LICENSE for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public
+ * License along with this library. If not, see .
+ *
+ */
+
+require_once __DIR__ . '/../../../lib/base.php';
+
+use OCA\Files\Share;
+
+/**
+ * Class Test_Files_Sharing_Base
+ *
+ * Base class for sharing tests.
+ */
+abstract class Test_Files_Sharing_Base extends \PHPUnit_Framework_TestCase {
+
+ const TEST_FILES_SHARING_API_USER1 = "test-share-user1";
+ const TEST_FILES_SHARING_API_USER2 = "test-share-user2";
+ const TEST_FILES_SHARING_API_USER3 = "test-share-user3";
+
+ public $stateFilesEncryption;
+ public $filename;
+ public $data;
+ /**
+ * @var OC_FilesystemView
+ */
+ public $view;
+ public $folder;
+
+ public static function setUpBeforeClass() {
+ // reset backend
+ \OC_User::clearBackends();
+ \OC_User::useBackend('database');
+
+ // clear share hooks
+ \OC_Hook::clear('OCP\\Share');
+ \OC::registerShareHooks();
+ \OCP\Util::connectHook('OC_Filesystem', 'setup', '\OC\Files\Storage\Shared', 'setup');
+
+ // create users
+ self::loginHelper(self::TEST_FILES_SHARING_API_USER1, true);
+ self::loginHelper(self::TEST_FILES_SHARING_API_USER2, true);
+ self::loginHelper(self::TEST_FILES_SHARING_API_USER3, true);
+
+ }
+
+ function setUp() {
+
+ //login as user1
+ self::loginHelper(self::TEST_FILES_SHARING_API_USER1);
+
+ $this->data = 'foobar';
+ $this->view = new \OC_FilesystemView('/' . self::TEST_FILES_SHARING_API_USER1 . '/files');
+ // remember files_encryption state
+ $this->stateFilesEncryption = \OC_App::isEnabled('files_encryption');
+
+ //we don't want to tests with app files_encryption enabled
+ \OC_App::disable('files_encryption');
+
+
+ $this->assertTrue(!\OC_App::isEnabled('files_encryption'));
+ }
+
+ function tearDown() {
+ // reset app files_encryption
+ if ($this->stateFilesEncryption) {
+ \OC_App::enable('files_encryption');
+ } else {
+ \OC_App::disable('files_encryption');
+ }
+ }
+
+ public static function tearDownAfterClass() {
+
+ // cleanup users
+ \OC_User::deleteUser(self::TEST_FILES_SHARING_API_USER1);
+ \OC_User::deleteUser(self::TEST_FILES_SHARING_API_USER2);
+ \OC_User::deleteUser(self::TEST_FILES_SHARING_API_USER3);
+ }
+
+ /**
+ * @param $user
+ * @param bool $create
+ * @param bool $password
+ */
+ protected static function loginHelper($user, $create = false, $password = false) {
+ if ($create) {
+ \OC_User::createUser($user, $user);
+ }
+
+ if ($password === false) {
+ $password = $user;
+ }
+
+ \OC_Util::tearDownFS();
+ \OC_User::setUserId('');
+ \OC\Files\Filesystem::tearDown();
+ \OC_Util::setupFS($user);
+ \OC_User::setUserId($user);
+
+ $params['uid'] = $user;
+ $params['password'] = $password;
+ }
+
+ /**
+ * @brief get some information from a given share
+ * @param int $shareID
+ * @return array with: item_source, share_type, share_with, item_type, permissions
+ */
+ protected function getShareFromId($shareID) {
+ $sql = 'SELECT `item_source`, `share_type`, `share_with`, `item_type`, `permissions` FROM `*PREFIX*share` WHERE `id` = ?';
+ $args = array($shareID);
+ $query = \OCP\DB::prepare($sql);
+ $result = $query->execute($args);
+
+ $share = Null;
+
+ if ($result && $result->numRows() > 0) {
+ $share = $result->fetchRow();
+ }
+
+ return $share;
+
+ }
+
+}
diff --git a/apps/files_sharing/tests/watcher.php b/apps/files_sharing/tests/watcher.php
new file mode 100644
index 00000000000..1a9a54cbcf8
--- /dev/null
+++ b/apps/files_sharing/tests/watcher.php
@@ -0,0 +1,161 @@
+
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
+ * License as published by the Free Software Foundation; either
+ * version 3 of the License, or any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU AFFERO GENERAL PUBLIC LICENSE for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public
+ * License along with this library. If not, see .
+ *
+ */
+require_once __DIR__ . '/base.php';
+
+class Test_Files_Sharing_Watcher extends Test_Files_Sharing_Base {
+
+ function setUp() {
+ parent::setUp();
+
+ self::loginHelper(self::TEST_FILES_SHARING_API_USER1);
+
+ // prepare user1's dir structure
+ $textData = "dummy file data\n";
+ $this->view->mkdir('container');
+ $this->view->mkdir('container/shareddir');
+ $this->view->mkdir('container/shareddir/subdir');
+
+ list($this->ownerStorage, $internalPath) = $this->view->resolvePath('');
+ $this->ownerCache = $this->ownerStorage->getCache();
+ $this->ownerStorage->getScanner()->scan('');
+
+ // share "shareddir" with user2
+ $fileinfo = $this->view->getFileInfo('container/shareddir');
+ \OCP\Share::shareItem('folder', $fileinfo['fileid'], \OCP\Share::SHARE_TYPE_USER,
+ self::TEST_FILES_SHARING_API_USER2, 31);
+
+ // login as user2
+ self::loginHelper(self::TEST_FILES_SHARING_API_USER2);
+
+ // retrieve the shared storage
+ $secondView = new \OC\Files\View('/' . self::TEST_FILES_SHARING_API_USER2);
+ list($this->sharedStorage, $internalPath) = $secondView->resolvePath('files/Shared/shareddir');
+ $this->sharedCache = $this->sharedStorage->getCache();
+ }
+
+ function tearDown() {
+ $this->sharedCache->clear();
+
+ self::loginHelper(self::TEST_FILES_SHARING_API_USER1);
+
+ $fileinfo = $this->view->getFileInfo('container/shareddir');
+ \OCP\Share::unshare('folder', $fileinfo['fileid'], \OCP\Share::SHARE_TYPE_USER,
+ self::TEST_FILES_SHARING_API_USER2);
+
+ $this->view->deleteAll('container');
+
+ $this->ownerCache->clear();
+
+ parent::tearDown();
+ }
+
+ /**
+ * Tests that writing a file using the shared storage will propagate the file
+ * size to the owner's parent folders.
+ */
+ function testFolderSizePropagationToOwnerStorage() {
+ $initialSizes = self::getOwnerDirSizes('files/container/shareddir');
+
+ $textData = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';
+ $dataLen = strlen($textData);
+ $this->sharedCache->put('shareddir/bar.txt', array('storage_mtime' => 10));
+ $this->sharedStorage->file_put_contents('shareddir/bar.txt', $textData);
+ $this->sharedCache->put('shareddir', array('storage_mtime' => 10));
+
+ // run the propagation code
+ $result = $this->sharedStorage->getWatcher()->checkUpdate('shareddir');
+
+ $this->assertTrue($result);
+
+ // the owner's parent dirs must have increase size
+ $newSizes = self::getOwnerDirSizes('files/container/shareddir');
+ $this->assertEquals($initialSizes[''] + $dataLen, $newSizes['']);
+ $this->assertEquals($initialSizes['files'] + $dataLen, $newSizes['files']);
+ $this->assertEquals($initialSizes['files/container'] + $dataLen, $newSizes['files/container']);
+ $this->assertEquals($initialSizes['files/container/shareddir'] + $dataLen, $newSizes['files/container/shareddir']);
+
+ // no more updates
+ $result = $this->sharedStorage->getWatcher()->checkUpdate('shareddir');
+
+ $this->assertFalse($result);
+ }
+
+ /**
+ * Tests that writing a file using the shared storage will propagate the file
+ * size to the owner's parent folders.
+ */
+ function testSubFolderSizePropagationToOwnerStorage() {
+ $initialSizes = self::getOwnerDirSizes('files/container/shareddir/subdir');
+
+ $textData = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';
+ $dataLen = strlen($textData);
+ $this->sharedCache->put('shareddir/subdir/bar.txt', array('storage_mtime' => 10));
+ $this->sharedStorage->file_put_contents('shareddir/subdir/bar.txt', $textData);
+ $this->sharedCache->put('shareddir/subdir', array('storage_mtime' => 10));
+
+ // run the propagation code
+ $result = $this->sharedStorage->getWatcher()->checkUpdate('shareddir/subdir');
+
+ $this->assertTrue($result);
+
+ // the owner's parent dirs must have increase size
+ $newSizes = self::getOwnerDirSizes('files/container/shareddir/subdir');
+ $this->assertEquals($initialSizes[''] + $dataLen, $newSizes['']);
+ $this->assertEquals($initialSizes['files'] + $dataLen, $newSizes['files']);
+ $this->assertEquals($initialSizes['files/container'] + $dataLen, $newSizes['files/container']);
+ $this->assertEquals($initialSizes['files/container/shareddir'] + $dataLen, $newSizes['files/container/shareddir']);
+ $this->assertEquals($initialSizes['files/container/shareddir/subdir'] + $dataLen, $newSizes['files/container/shareddir/subdir']);
+
+ // no more updates
+ $result = $this->sharedStorage->getWatcher()->checkUpdate('shareddir/subdir');
+
+ $this->assertFalse($result);
+ }
+
+ function testNoUpdateOnRoot() {
+ // no updates when called for root path
+ $result = $this->sharedStorage->getWatcher()->checkUpdate('');
+
+ $this->assertFalse($result);
+
+ // FIXME: for some reason when running this "naked" test,
+ // there will be remaining nonsensical entries in the
+ // database with a path "test-share-user1/container/..."
+ }
+
+ /**
+ * Returns the sizes of the path and its parent dirs in a hash
+ * where the key is the path and the value is the size.
+ */
+ function getOwnerDirSizes($path) {
+ $result = array();
+
+ while ($path != '' && $path != '' && $path != '.') {
+ $cachedData = $this->ownerCache->get($path);
+ $result[$path] = $cachedData['size'];
+ $path = dirname($path);
+ }
+ $cachedData = $this->ownerCache->get('');
+ $result[''] = $cachedData['size'];
+ return $result;
+ }
+}
diff --git a/apps/files_trashbin/l10n/ms_MY.php b/apps/files_trashbin/l10n/ms_MY.php
index 1972eba0318..e7721313918 100644
--- a/apps/files_trashbin/l10n/ms_MY.php
+++ b/apps/files_trashbin/l10n/ms_MY.php
@@ -1,7 +1,14 @@
"Tidak dapat menghapuskan %s secara kekal",
+"Couldn't restore %s" => "Tidak dapat memulihkan %s",
"Error" => "Ralat",
+"restored" => "dipulihkan",
+"Nothing in here. Your trash bin is empty!" => "Tiada apa disini. Tong sampah anda kosong!",
"Name" => "Nama",
-"Delete" => "Padam"
+"Restore" => "Pulihkan",
+"Deleted" => "Dihapuskan",
+"Delete" => "Padam",
+"Deleted Files" => "Fail Dihapus"
);
$PLURAL_FORMS = "nplurals=1; plural=0;";
diff --git a/apps/files_trashbin/lib/trashbin.php b/apps/files_trashbin/lib/trashbin.php
index c79afdc0c2e..f419f515f1e 100644
--- a/apps/files_trashbin/lib/trashbin.php
+++ b/apps/files_trashbin/lib/trashbin.php
@@ -530,6 +530,7 @@ class Trashbin {
$size += $view->filesize('/files_trashbin/files/' . $file);
}
$view->unlink('/files_trashbin/files/' . $file);
+ \OC_Hook::emit('\OCP\Trashbin', 'delete', array('path' => '/files_trashbin/files/' . $file));
$trashbinSize -= $size;
self::setTrashbinSize($user, $trashbinSize);
diff --git a/apps/files_versions/js/versions.js b/apps/files_versions/js/versions.js
index d118456d62e..738a7ece6f2 100644
--- a/apps/files_versions/js/versions.js
+++ b/apps/files_versions/js/versions.js
@@ -21,7 +21,7 @@ $(document).ready(function(){
// Action to perform when clicked
if (scanFiles.scanning){return;}//workaround to prevent additional http request block scanning feedback
- var file = $('#dir').val()+'/'+filename;
+ var file = $('#dir').val().replace(/(?!<=\/)$|\/$/, '/' + filename);
var createDropDown = true;
// Check if drop down is already visible for a different file
if (($('#dropdown').length > 0) ) {
diff --git a/apps/files_versions/l10n/ms_MY.php b/apps/files_versions/l10n/ms_MY.php
new file mode 100644
index 00000000000..513dff49b24
--- /dev/null
+++ b/apps/files_versions/l10n/ms_MY.php
@@ -0,0 +1,10 @@
+ "Tidak dapat kembalikan: %s",
+"Versions" => "Versi",
+"Failed to revert {file} to revision {timestamp}." => "Gagal kembalikan {file} ke semakan {timestamp}.",
+"More versions..." => "Lagi versi...",
+"No other versions available" => "Tiada lagi versi lain",
+"Restore" => "Pulihkan"
+);
+$PLURAL_FORMS = "nplurals=1; plural=0;";
diff --git a/apps/files_versions/lib/versions.php b/apps/files_versions/lib/versions.php
index 225611374a6..661e98b09d5 100644
--- a/apps/files_versions/lib/versions.php
+++ b/apps/files_versions/lib/versions.php
@@ -156,6 +156,7 @@ class Storage {
}
foreach ($versions as $v) {
unlink($abs_path . $v['version']);
+ \OC_Hook::emit('\OCP\Versions', 'delete', array('path' => $abs_path . $v['version']));
$versionsSize -= $v['size'];
}
self::setVersionsSize($uid, $versionsSize);
@@ -465,6 +466,7 @@ class Storage {
while ($availableSpace < 0 && $i < $numOfVersions) {
$version = current($allVersions);
$versionsFileview->unlink($version['path'].'.v'.$version['version']);
+ \OC_Hook::emit('\OCP\Versions', 'delete', array('path' => $version['path'].'.v'.$version['version']));
$versionsSize -= $version['size'];
$availableSpace += $version['size'];
next($allVersions);
@@ -515,6 +517,7 @@ class Storage {
if ($version['version'] > $nextVersion) {
//distance between two version too small, delete version
$versionsFileview->unlink($version['path'] . '.v' . $version['version']);
+ \OC_Hook::emit('\OCP\Versions', 'delete', array('path' => $version['path'] . '.v' . $version['version']));
$size += $version['size'];
unset($allVersions[$key]); // update array with all versions
} else {
diff --git a/apps/user_ldap/css/settings.css b/apps/user_ldap/css/settings.css
index 41578e91b69..be03419c2de 100644
--- a/apps/user_ldap/css/settings.css
+++ b/apps/user_ldap/css/settings.css
@@ -3,13 +3,9 @@
width: 60%;
}
-.tablecell {
- display: table-cell !important;
- white-space: nowrap;
-}
-
.tablerow {
display: table-row;
+ white-space: nowrap;
}
.tablerow input, .tablerow textarea {
@@ -78,6 +74,7 @@
.wizSpinner {
height: 15px;
+ margin: 0.3em;
}
.ldapSettingControls {
@@ -100,7 +97,6 @@
#ldap fieldset input, #ldap fieldset textarea {
width: 60%;
- display: inline-block;
}
#ldap fieldset p input[type=checkbox] {
diff --git a/apps/user_ldap/js/settings.js b/apps/user_ldap/js/settings.js
index 3abec1e232e..dcaeb70b57f 100644
--- a/apps/user_ldap/js/settings.js
+++ b/apps/user_ldap/js/settings.js
@@ -192,19 +192,20 @@ var LdapWizard = {
'&ldap_serverconfig_chooser='+$('#ldap_serverconfig_chooser').val();
LdapWizard.showSpinner('#ldap_base');
+ $('#ldap_base').prop('disabled', 'disabled');
LdapWizard.ajax(param,
function(result) {
LdapWizard.applyChanges(result);
LdapWizard.hideSpinner('#ldap_base');
if($('#ldap_base').val()) {
- $('#ldap_base').removeClass('invisible');
LdapWizard.hideInfoBox();
}
+ $('#ldap_base').prop('disabled', false);
},
function (result) {
LdapWizard.hideSpinner('#ldap_base');
- $('#ldap_base').removeClass('invisible');
- LdapWizard.showInfoBox('Please specify a port');
+ LdapWizard.showInfoBox('Please specify a Base DN');
+ $('#ldap_base').prop('disabled', false);
}
);
}
@@ -212,28 +213,28 @@ var LdapWizard = {
checkPort: function() {
host = $('#ldap_host').val();
- user = $('#ldap_dn').val();
- pass = $('#ldap_agent_password').val();
+ port = $('#ldap_port').val();
- if(host && user && pass) {
+ if(host && !port) {
param = 'action=guessPortAndTLS'+
'&ldap_serverconfig_chooser='+$('#ldap_serverconfig_chooser').val();
LdapWizard.showSpinner('#ldap_port');
+ $('#ldap_port').prop('disabled', 'disabled');
LdapWizard.ajax(param,
function(result) {
LdapWizard.applyChanges(result);
LdapWizard.hideSpinner('#ldap_port');
if($('#ldap_port').val()) {
LdapWizard.checkBaseDN();
- $('#ldap_port').removeClass('invisible');
+ $('#ldap_port').prop('disabled', false);
LdapWizard.hideInfoBox();
}
},
function (result) {
LdapWizard.hideSpinner('#ldap_port');
- $('#ldap_port').removeClass('invisible');
- LdapWizard.showInfoBox('Please specify the BaseDN');
+ $('#ldap_port').prop('disabled', false);
+ LdapWizard.showInfoBox('Please specify the Port');
}
);
}
@@ -461,12 +462,6 @@ var LdapWizard = {
},
init: function() {
- if($('#ldap_port').val()) {
- $('#ldap_port').removeClass('invisible');
- }
- if($('#ldap_base').val()) {
- $('#ldap_base').removeClass('invisible');
- }
LdapWizard.basicStatusCheck();
},
@@ -521,6 +516,8 @@ var LdapWizard = {
},
processChanges: function(triggerObj) {
+ LdapWizard.hideInfoBox();
+
if(triggerObj.id == 'ldap_host'
|| triggerObj.id == 'ldap_port'
|| triggerObj.id == 'ldap_dn'
diff --git a/apps/user_ldap/l10n/ar.php b/apps/user_ldap/l10n/ar.php
index 47ec9db7909..2b0cbbd75a5 100644
--- a/apps/user_ldap/l10n/ar.php
+++ b/apps/user_ldap/l10n/ar.php
@@ -5,6 +5,7 @@ $TRANSLATIONS = array(
"Select groups" => "إختر مجموعة",
"_%s group found_::_%s groups found_" => array("","","","","",""),
"_%s user found_::_%s users found_" => array("","","","","",""),
+"Save" => "حفظ",
"Help" => "المساعدة",
"Host" => "المضيف",
"Password" => "كلمة المرور",
diff --git a/apps/user_ldap/l10n/bg_BG.php b/apps/user_ldap/l10n/bg_BG.php
index c236e57e0ec..588f6d448b4 100644
--- a/apps/user_ldap/l10n/bg_BG.php
+++ b/apps/user_ldap/l10n/bg_BG.php
@@ -3,6 +3,7 @@ $TRANSLATIONS = array(
"Error" => "Грешка",
"_%s group found_::_%s groups found_" => array("",""),
"_%s user found_::_%s users found_" => array("",""),
+"Save" => "Запис",
"Help" => "Помощ",
"Password" => "Парола"
);
diff --git a/apps/user_ldap/l10n/bn_BD.php b/apps/user_ldap/l10n/bn_BD.php
index 517ce90096c..01b93a1f42e 100644
--- a/apps/user_ldap/l10n/bn_BD.php
+++ b/apps/user_ldap/l10n/bn_BD.php
@@ -3,6 +3,7 @@ $TRANSLATIONS = array(
"Error" => "সমস্যা",
"_%s group found_::_%s groups found_" => array("",""),
"_%s user found_::_%s users found_" => array("",""),
+"Save" => "সংরক্ষণ",
"Help" => "সহায়িকা",
"Host" => "হোস্ট",
"You can omit the protocol, except you require SSL. Then start with ldaps://" => "SSL আবশ্যক না হলে আপনি এই প্রটোকলটি মুছে ফেলতে পারেন । এরপর শুরু করুন এটা দিয়ে ldaps://",
diff --git a/apps/user_ldap/l10n/bs.php b/apps/user_ldap/l10n/bs.php
index 1116aa8242b..7a64be44e0d 100644
--- a/apps/user_ldap/l10n/bs.php
+++ b/apps/user_ldap/l10n/bs.php
@@ -1,6 +1,7 @@
array("","",""),
-"_%s user found_::_%s users found_" => array("","","")
+"_%s user found_::_%s users found_" => array("","",""),
+"Save" => "Spasi"
);
$PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);";
diff --git a/apps/user_ldap/l10n/ca.php b/apps/user_ldap/l10n/ca.php
index 46fb7db9036..2c5358d6c77 100644
--- a/apps/user_ldap/l10n/ca.php
+++ b/apps/user_ldap/l10n/ca.php
@@ -27,6 +27,7 @@ $TRANSLATIONS = array(
"_%s user found_::_%s users found_" => array("S'ha trobat %s usuari","S'han trobat %s usuaris"),
"Invalid Host" => "Ordinador central no vàlid",
"Could not find the desired feature" => "La característica desitjada no s'ha trobat",
+"Save" => "Desa",
"Test Configuration" => "Comprovació de la configuració",
"Help" => "Ajuda",
"Limit the access to %s to groups meeting this criteria:" => "Limita l'accés a %s grups que compleixin amb el criteri:",
diff --git a/apps/user_ldap/l10n/cs_CZ.php b/apps/user_ldap/l10n/cs_CZ.php
index 9f496d1d0b2..8c90789251a 100644
--- a/apps/user_ldap/l10n/cs_CZ.php
+++ b/apps/user_ldap/l10n/cs_CZ.php
@@ -18,6 +18,7 @@ $TRANSLATIONS = array(
"Confirm Deletion" => "Potvrdit smazání",
"_%s group found_::_%s groups found_" => array("","",""),
"_%s user found_::_%s users found_" => array("","",""),
+"Save" => "Uložit",
"Test Configuration" => "Vyzkoušet nastavení",
"Help" => "Nápověda",
"Add Server Configuration" => "Přidat nastavení serveru",
diff --git a/apps/user_ldap/l10n/cy_GB.php b/apps/user_ldap/l10n/cy_GB.php
index ef85b47fc05..65a78432c75 100644
--- a/apps/user_ldap/l10n/cy_GB.php
+++ b/apps/user_ldap/l10n/cy_GB.php
@@ -4,6 +4,7 @@ $TRANSLATIONS = array(
"Error" => "Gwall",
"_%s group found_::_%s groups found_" => array("","","",""),
"_%s user found_::_%s users found_" => array("","","",""),
+"Save" => "Cadw",
"Help" => "Cymorth",
"Password" => "Cyfrinair"
);
diff --git a/apps/user_ldap/l10n/da.php b/apps/user_ldap/l10n/da.php
index d27317f0cd2..c35e8561442 100644
--- a/apps/user_ldap/l10n/da.php
+++ b/apps/user_ldap/l10n/da.php
@@ -15,6 +15,7 @@ $TRANSLATIONS = array(
"Confirm Deletion" => "Bekræft Sletning",
"_%s group found_::_%s groups found_" => array("",""),
"_%s user found_::_%s users found_" => array("",""),
+"Save" => "Gem",
"Test Configuration" => "Test Konfiguration",
"Help" => "Hjælp",
"Add Server Configuration" => "Tilføj Server Konfiguration",
diff --git a/apps/user_ldap/l10n/de.php b/apps/user_ldap/l10n/de.php
index ec1f87abbcc..15eefd842c2 100644
--- a/apps/user_ldap/l10n/de.php
+++ b/apps/user_ldap/l10n/de.php
@@ -27,6 +27,7 @@ $TRANSLATIONS = array(
"_%s user found_::_%s users found_" => array("%s Benutzer gefunden","%s Benutzer gefunden"),
"Invalid Host" => "Ungültiger Host",
"Could not find the desired feature" => "Konnte die gewünschte Funktion nicht finden",
+"Save" => "Speichern",
"Test Configuration" => "Testkonfiguration",
"Help" => "Hilfe",
"Limit the access to %s to groups meeting this criteria:" => "Beschränke den Zugriff auf %s auf Gruppen, die die folgenden Kriterien erfüllen:",
diff --git a/apps/user_ldap/l10n/de_CH.php b/apps/user_ldap/l10n/de_CH.php
index c447f17a9ab..58660840be4 100644
--- a/apps/user_ldap/l10n/de_CH.php
+++ b/apps/user_ldap/l10n/de_CH.php
@@ -18,6 +18,7 @@ $TRANSLATIONS = array(
"Confirm Deletion" => "Löschung bestätigen",
"_%s group found_::_%s groups found_" => array("",""),
"_%s user found_::_%s users found_" => array("",""),
+"Save" => "Speichern",
"Test Configuration" => "Testkonfiguration",
"Help" => "Hilfe",
"Add Server Configuration" => "Serverkonfiguration hinzufügen",
diff --git a/apps/user_ldap/l10n/de_DE.php b/apps/user_ldap/l10n/de_DE.php
index e719b449f27..0da5307d935 100644
--- a/apps/user_ldap/l10n/de_DE.php
+++ b/apps/user_ldap/l10n/de_DE.php
@@ -27,6 +27,7 @@ $TRANSLATIONS = array(
"_%s user found_::_%s users found_" => array("%s Benutzer gefunden","%s Benutzer gefunden"),
"Invalid Host" => "Ungültiger Host",
"Could not find the desired feature" => "Konnte die gewünschte Funktion nicht finden",
+"Save" => "Speichern",
"Test Configuration" => "Testkonfiguration",
"Help" => "Hilfe",
"Limit the access to %s to groups meeting this criteria:" => "Beschränke den Zugriff auf %s auf Gruppen, die die folgenden Kriterien erfüllen:",
diff --git a/apps/user_ldap/l10n/el.php b/apps/user_ldap/l10n/el.php
index c72281b678b..2cd93a4f07f 100644
--- a/apps/user_ldap/l10n/el.php
+++ b/apps/user_ldap/l10n/el.php
@@ -16,6 +16,7 @@ $TRANSLATIONS = array(
"Confirm Deletion" => "Επιβεβαίωση Διαγραφής",
"_%s group found_::_%s groups found_" => array("",""),
"_%s user found_::_%s users found_" => array("",""),
+"Save" => "Αποθήκευση",
"Test Configuration" => "Δοκιμαστικες ρυθμισεις",
"Help" => "Βοήθεια",
"Add Server Configuration" => "Προσθήκη Ρυθμίσεων Διακομιστή",
diff --git a/apps/user_ldap/l10n/en_GB.php b/apps/user_ldap/l10n/en_GB.php
index c582d56a896..325256bc8c2 100644
--- a/apps/user_ldap/l10n/en_GB.php
+++ b/apps/user_ldap/l10n/en_GB.php
@@ -27,6 +27,7 @@ $TRANSLATIONS = array(
"_%s user found_::_%s users found_" => array("%s user found","%s users found"),
"Invalid Host" => "Invalid Host",
"Could not find the desired feature" => "Could not find the desired feature",
+"Save" => "Save",
"Test Configuration" => "Test Configuration",
"Help" => "Help",
"Limit the access to %s to groups meeting this criteria:" => "Limit the access to %s to groups meeting this criteria:",
diff --git a/apps/user_ldap/l10n/eo.php b/apps/user_ldap/l10n/eo.php
index 727c39e3009..92521d08029 100644
--- a/apps/user_ldap/l10n/eo.php
+++ b/apps/user_ldap/l10n/eo.php
@@ -15,6 +15,7 @@ $TRANSLATIONS = array(
"_%s group found_::_%s groups found_" => array("%s grupo troviĝis","%s grupoj troviĝis"),
"_%s user found_::_%s users found_" => array("%s uzanto troviĝis","%s uzanto troviĝis"),
"Invalid Host" => "Nevalida gastigo",
+"Save" => "Konservi",
"Test Configuration" => "Provi agordon",
"Help" => "Helpo",
"only those object classes:" => "nur tiuj objektoklasoj:",
diff --git a/apps/user_ldap/l10n/es.php b/apps/user_ldap/l10n/es.php
index 325b94c6f8a..804cc9e4f16 100644
--- a/apps/user_ldap/l10n/es.php
+++ b/apps/user_ldap/l10n/es.php
@@ -27,6 +27,7 @@ $TRANSLATIONS = array(
"_%s user found_::_%s users found_" => array("Usuario %s encontrado","Usuarios %s encontrados"),
"Invalid Host" => "Host inválido",
"Could not find the desired feature" => "No se puede encontrar la función deseada.",
+"Save" => "Guardar",
"Test Configuration" => "Configuración de prueba",
"Help" => "Ayuda",
"Limit the access to %s to groups meeting this criteria:" => "Limitar el acceso a %s a los grupos que cumplan este criterio:",
diff --git a/apps/user_ldap/l10n/es_AR.php b/apps/user_ldap/l10n/es_AR.php
index 156b881413a..76fe0491241 100644
--- a/apps/user_ldap/l10n/es_AR.php
+++ b/apps/user_ldap/l10n/es_AR.php
@@ -18,6 +18,7 @@ $TRANSLATIONS = array(
"Confirm Deletion" => "Confirmar borrado",
"_%s group found_::_%s groups found_" => array("",""),
"_%s user found_::_%s users found_" => array("",""),
+"Save" => "Guardar",
"Test Configuration" => "Probar configuración",
"Help" => "Ayuda",
"Add Server Configuration" => "Añadir Configuración del Servidor",
diff --git a/apps/user_ldap/l10n/et_EE.php b/apps/user_ldap/l10n/et_EE.php
index b0f4ae5c0fe..cf19b062dff 100644
--- a/apps/user_ldap/l10n/et_EE.php
+++ b/apps/user_ldap/l10n/et_EE.php
@@ -27,6 +27,7 @@ $TRANSLATIONS = array(
"_%s user found_::_%s users found_" => array("%s kasutaja leitud","%s kasutajat leitud"),
"Invalid Host" => "Vigane server",
"Could not find the desired feature" => "Ei suuda leida soovitud funktsioonaalsust",
+"Save" => "Salvesta",
"Test Configuration" => "Testi seadistust",
"Help" => "Abiinfo",
"Limit the access to %s to groups meeting this criteria:" => "Piira ligipääs %s grupile, mis sobivad kriteeriumiga:",
diff --git a/apps/user_ldap/l10n/eu.php b/apps/user_ldap/l10n/eu.php
index 1d85f7d70e7..980c5c43242 100644
--- a/apps/user_ldap/l10n/eu.php
+++ b/apps/user_ldap/l10n/eu.php
@@ -16,6 +16,7 @@ $TRANSLATIONS = array(
"Confirm Deletion" => "Baieztatu Ezabatzea",
"_%s group found_::_%s groups found_" => array("",""),
"_%s user found_::_%s users found_" => array("",""),
+"Save" => "Gorde",
"Test Configuration" => "Egiaztatu Konfigurazioa",
"Help" => "Laguntza",
"Add Server Configuration" => "Gehitu Zerbitzariaren Konfigurazioa",
diff --git a/apps/user_ldap/l10n/fa.php b/apps/user_ldap/l10n/fa.php
index 7c37b8bf760..fb9267bbc88 100644
--- a/apps/user_ldap/l10n/fa.php
+++ b/apps/user_ldap/l10n/fa.php
@@ -16,6 +16,7 @@ $TRANSLATIONS = array(
"Confirm Deletion" => "تایید حذف",
"_%s group found_::_%s groups found_" => array(""),
"_%s user found_::_%s users found_" => array(""),
+"Save" => "ذخیره",
"Test Configuration" => "امتحان پیکربندی",
"Help" => "راهنما",
"Add Server Configuration" => "افزودن پیکربندی سرور",
diff --git a/apps/user_ldap/l10n/fi_FI.php b/apps/user_ldap/l10n/fi_FI.php
index 4137973de68..63a8578db49 100644
--- a/apps/user_ldap/l10n/fi_FI.php
+++ b/apps/user_ldap/l10n/fi_FI.php
@@ -11,6 +11,7 @@ $TRANSLATIONS = array(
"Confirm Deletion" => "Vahvista poisto",
"_%s group found_::_%s groups found_" => array("",""),
"_%s user found_::_%s users found_" => array("",""),
+"Save" => "Tallenna",
"Help" => "Ohje",
"Host" => "Isäntä",
"You can omit the protocol, except you require SSL. Then start with ldaps://" => "Voit jättää protokollan määrittämättä, paitsi kun vaadit SSL:ää. Aloita silloin ldaps://",
diff --git a/apps/user_ldap/l10n/fr.php b/apps/user_ldap/l10n/fr.php
index b8f34a4837e..d53f78eb36f 100644
--- a/apps/user_ldap/l10n/fr.php
+++ b/apps/user_ldap/l10n/fr.php
@@ -27,6 +27,7 @@ $TRANSLATIONS = array(
"_%s user found_::_%s users found_" => array("%s utilisateur trouvé","%s utilisateurs trouvés"),
"Invalid Host" => "Hôte invalide",
"Could not find the desired feature" => "Impossible de trouver la fonction souhaitée",
+"Save" => "Sauvegarder",
"Test Configuration" => "Tester la configuration",
"Help" => "Aide",
"Limit the access to %s to groups meeting this criteria:" => "Limiter l'accès à %s aux groupes respectant ce critère :",
diff --git a/apps/user_ldap/l10n/gl.php b/apps/user_ldap/l10n/gl.php
index 86341469117..6d7f8e334be 100644
--- a/apps/user_ldap/l10n/gl.php
+++ b/apps/user_ldap/l10n/gl.php
@@ -27,6 +27,7 @@ $TRANSLATIONS = array(
"_%s user found_::_%s users found_" => array("Atopouse %s usuario","Atopáronse %s usuarios"),
"Invalid Host" => "Máquina incorrecta",
"Could not find the desired feature" => "Non foi posíbel atopar a función desexada",
+"Save" => "Gardar",
"Test Configuration" => "Probar a configuración",
"Help" => "Axuda",
"Limit the access to %s to groups meeting this criteria:" => "Limitar o acceso a %s aos grupos que coincidan con estes criterios:",
diff --git a/apps/user_ldap/l10n/he.php b/apps/user_ldap/l10n/he.php
index 17261be266b..6f838cb5d9b 100644
--- a/apps/user_ldap/l10n/he.php
+++ b/apps/user_ldap/l10n/he.php
@@ -10,6 +10,7 @@ $TRANSLATIONS = array(
"Confirm Deletion" => "אישור המחיקה",
"_%s group found_::_%s groups found_" => array("",""),
"_%s user found_::_%s users found_" => array("",""),
+"Save" => "שמירה",
"Help" => "עזרה",
"Add Server Configuration" => "הוספת הגדרות השרת",
"Host" => "מארח",
diff --git a/apps/user_ldap/l10n/hi.php b/apps/user_ldap/l10n/hi.php
index ea41a19bfab..386134547eb 100644
--- a/apps/user_ldap/l10n/hi.php
+++ b/apps/user_ldap/l10n/hi.php
@@ -3,6 +3,7 @@ $TRANSLATIONS = array(
"Error" => "त्रुटि",
"_%s group found_::_%s groups found_" => array("",""),
"_%s user found_::_%s users found_" => array("",""),
+"Save" => "सहेजें",
"Help" => "सहयोग",
"Password" => "पासवर्ड"
);
diff --git a/apps/user_ldap/l10n/hr.php b/apps/user_ldap/l10n/hr.php
index d8023c5b43b..b28175994eb 100644
--- a/apps/user_ldap/l10n/hr.php
+++ b/apps/user_ldap/l10n/hr.php
@@ -3,6 +3,7 @@ $TRANSLATIONS = array(
"Error" => "Greška",
"_%s group found_::_%s groups found_" => array("","",""),
"_%s user found_::_%s users found_" => array("","",""),
+"Save" => "Snimi",
"Help" => "Pomoć",
"Password" => "Lozinka",
"Back" => "Natrag"
diff --git a/apps/user_ldap/l10n/hu_HU.php b/apps/user_ldap/l10n/hu_HU.php
index 92f2b5d5674..498221632f0 100644
--- a/apps/user_ldap/l10n/hu_HU.php
+++ b/apps/user_ldap/l10n/hu_HU.php
@@ -26,6 +26,7 @@ $TRANSLATIONS = array(
"_%s user found_::_%s users found_" => array("%s felhasználó van","%s felhasználó van"),
"Invalid Host" => "Érvénytelen gépnév",
"Could not find the desired feature" => "A kívánt funkció nem található",
+"Save" => "Mentés",
"Test Configuration" => "A beállítások tesztelése",
"Help" => "Súgó",
"Limit the access to %s to groups meeting this criteria:" => "Korlátozzuk %s elérését a következő feltételeknek megfelelő csoportokra:",
diff --git a/apps/user_ldap/l10n/hy.php b/apps/user_ldap/l10n/hy.php
index 3a1e002311c..805020b059c 100644
--- a/apps/user_ldap/l10n/hy.php
+++ b/apps/user_ldap/l10n/hy.php
@@ -1,6 +1,7 @@
array("",""),
-"_%s user found_::_%s users found_" => array("","")
+"_%s user found_::_%s users found_" => array("",""),
+"Save" => "Պահպանել"
);
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";
diff --git a/apps/user_ldap/l10n/ia.php b/apps/user_ldap/l10n/ia.php
index ced826ac6d8..4a23d5860c4 100644
--- a/apps/user_ldap/l10n/ia.php
+++ b/apps/user_ldap/l10n/ia.php
@@ -3,6 +3,7 @@ $TRANSLATIONS = array(
"Error" => "Error",
"_%s group found_::_%s groups found_" => array("",""),
"_%s user found_::_%s users found_" => array("",""),
+"Save" => "Salveguardar",
"Help" => "Adjuta",
"Password" => "Contrasigno",
"Back" => "Retro"
diff --git a/apps/user_ldap/l10n/id.php b/apps/user_ldap/l10n/id.php
index 3e8d47ef801..11e43d22206 100644
--- a/apps/user_ldap/l10n/id.php
+++ b/apps/user_ldap/l10n/id.php
@@ -16,6 +16,7 @@ $TRANSLATIONS = array(
"Confirm Deletion" => "Konfirmasi Penghapusan",
"_%s group found_::_%s groups found_" => array(""),
"_%s user found_::_%s users found_" => array(""),
+"Save" => "Simpan",
"Test Configuration" => "Uji Konfigurasi",
"Help" => "Bantuan",
"Add Server Configuration" => "Tambah Konfigurasi Server",
diff --git a/apps/user_ldap/l10n/is.php b/apps/user_ldap/l10n/is.php
index 0fdd6ca9c43..e146c93cb81 100644
--- a/apps/user_ldap/l10n/is.php
+++ b/apps/user_ldap/l10n/is.php
@@ -4,6 +4,7 @@ $TRANSLATIONS = array(
"Error" => "Villa",
"_%s group found_::_%s groups found_" => array("",""),
"_%s user found_::_%s users found_" => array("",""),
+"Save" => "Vista",
"Test Configuration" => "Prúfa uppsetningu",
"Help" => "Hjálp",
"Host" => "Netþjónn",
diff --git a/apps/user_ldap/l10n/it.php b/apps/user_ldap/l10n/it.php
index 9825832f3d8..97ca14e0a85 100644
--- a/apps/user_ldap/l10n/it.php
+++ b/apps/user_ldap/l10n/it.php
@@ -27,6 +27,7 @@ $TRANSLATIONS = array(
"_%s user found_::_%s users found_" => array("%s utente trovato","%s utenti trovati"),
"Invalid Host" => "Host non valido",
"Could not find the desired feature" => "Impossibile trovare la funzionalità desiderata",
+"Save" => "Salva",
"Test Configuration" => "Prova configurazione",
"Help" => "Aiuto",
"Limit the access to %s to groups meeting this criteria:" => "Limita l'accesso a %s ai gruppi che verificano questi criteri:",
diff --git a/apps/user_ldap/l10n/ja_JP.php b/apps/user_ldap/l10n/ja_JP.php
index 34bcbb22149..1c94743af49 100644
--- a/apps/user_ldap/l10n/ja_JP.php
+++ b/apps/user_ldap/l10n/ja_JP.php
@@ -26,6 +26,7 @@ $TRANSLATIONS = array(
"_%s user found_::_%s users found_" => array("%s ユーザが見つかりました"),
"Invalid Host" => "無効なホスト",
"Could not find the desired feature" => "望ましい機能は見つかりませんでした",
+"Save" => "保存",
"Test Configuration" => "設定をテスト",
"Help" => "ヘルプ",
"Limit the access to %s to groups meeting this criteria:" => "この基準に合致するグループに %s へのアクセスを制限:",
diff --git a/apps/user_ldap/l10n/ka_GE.php b/apps/user_ldap/l10n/ka_GE.php
index 6d79e80c15a..33483681044 100644
--- a/apps/user_ldap/l10n/ka_GE.php
+++ b/apps/user_ldap/l10n/ka_GE.php
@@ -16,6 +16,7 @@ $TRANSLATIONS = array(
"Confirm Deletion" => "წაშლის დადასტურება",
"_%s group found_::_%s groups found_" => array(""),
"_%s user found_::_%s users found_" => array(""),
+"Save" => "შენახვა",
"Test Configuration" => "კავშირის ტესტირება",
"Help" => "დახმარება",
"Add Server Configuration" => "სერვერის პარამეტრების დამატება",
diff --git a/apps/user_ldap/l10n/ko.php b/apps/user_ldap/l10n/ko.php
index a9dedd26716..423f094e239 100644
--- a/apps/user_ldap/l10n/ko.php
+++ b/apps/user_ldap/l10n/ko.php
@@ -8,6 +8,7 @@ $TRANSLATIONS = array(
"Connection test failed" => "연결 시험 실패",
"_%s group found_::_%s groups found_" => array(""),
"_%s user found_::_%s users found_" => array(""),
+"Save" => "저장",
"Help" => "도움말",
"Host" => "호스트",
"You can omit the protocol, except you require SSL. Then start with ldaps://" => "SSL을 사용하는 경우가 아니라면 프로토콜을 입력하지 않아도 됩니다. SSL을 사용하려면 ldaps://를 입력하십시오.",
diff --git a/apps/user_ldap/l10n/ku_IQ.php b/apps/user_ldap/l10n/ku_IQ.php
index 6e84a546a55..7d3b22f8494 100644
--- a/apps/user_ldap/l10n/ku_IQ.php
+++ b/apps/user_ldap/l10n/ku_IQ.php
@@ -4,6 +4,7 @@ $TRANSLATIONS = array(
"Error" => "ههڵه",
"_%s group found_::_%s groups found_" => array("",""),
"_%s user found_::_%s users found_" => array("",""),
+"Save" => "پاشکهوتکردن",
"Help" => "یارمەتی",
"Password" => "وشەی تێپەربو"
);
diff --git a/apps/user_ldap/l10n/lb.php b/apps/user_ldap/l10n/lb.php
index 906b26cf24f..c6fdc003548 100644
--- a/apps/user_ldap/l10n/lb.php
+++ b/apps/user_ldap/l10n/lb.php
@@ -4,6 +4,7 @@ $TRANSLATIONS = array(
"Error" => "Fehler",
"_%s group found_::_%s groups found_" => array("",""),
"_%s user found_::_%s users found_" => array("",""),
+"Save" => "Späicheren",
"Help" => "Hëllef",
"Host" => "Host",
"Password" => "Passwuert",
diff --git a/apps/user_ldap/l10n/lt_LT.php b/apps/user_ldap/l10n/lt_LT.php
index ee8bb28425c..4e5a562d7fd 100644
--- a/apps/user_ldap/l10n/lt_LT.php
+++ b/apps/user_ldap/l10n/lt_LT.php
@@ -16,6 +16,7 @@ $TRANSLATIONS = array(
"Confirm Deletion" => "Patvirtinkite trynimą",
"_%s group found_::_%s groups found_" => array("","",""),
"_%s user found_::_%s users found_" => array("","",""),
+"Save" => "Išsaugoti",
"Test Configuration" => "Bandyti konfigūraciją",
"Help" => "Pagalba",
"Add Server Configuration" => "Pridėti serverio konfigūraciją",
diff --git a/apps/user_ldap/l10n/lv.php b/apps/user_ldap/l10n/lv.php
index 7ab2210f79d..0cbf7415d33 100644
--- a/apps/user_ldap/l10n/lv.php
+++ b/apps/user_ldap/l10n/lv.php
@@ -15,6 +15,7 @@ $TRANSLATIONS = array(
"Confirm Deletion" => "Apstiprināt dzēšanu",
"_%s group found_::_%s groups found_" => array("","",""),
"_%s user found_::_%s users found_" => array("","",""),
+"Save" => "Saglabāt",
"Test Configuration" => "Testa konfigurācija",
"Help" => "Palīdzība",
"Add Server Configuration" => "Pievienot servera konfigurāciju",
diff --git a/apps/user_ldap/l10n/mk.php b/apps/user_ldap/l10n/mk.php
index 4b8055324d6..fcbc01f137b 100644
--- a/apps/user_ldap/l10n/mk.php
+++ b/apps/user_ldap/l10n/mk.php
@@ -1,12 +1,19 @@
"Бришењето е неуспешно",
+"Keep settings?" => "Да ги сочувам нагодувањата?",
+"Cannot add server configuration" => "Не можам да ја додадам конфигурацијата на серверот",
"Error" => "Грешка",
+"Connection test succeeded" => "Тестот за поврзување е успешен",
+"Connection test failed" => "Тестот за поврзување не е успешен",
+"Confirm Deletion" => "Потврдете го бришењето",
"_%s group found_::_%s groups found_" => array("",""),
"_%s user found_::_%s users found_" => array("",""),
+"Save" => "Сними",
"Help" => "Помош",
"Host" => "Домаќин",
"You can omit the protocol, except you require SSL. Then start with ldaps://" => "Може да го скокнете протколот освен ако не ви треба SSL. Тогаш ставете ldaps://",
+"Port" => "Порта",
"Password" => "Лозинка",
"Back" => "Назад",
"Continue" => "Продолжи"
diff --git a/apps/user_ldap/l10n/ms_MY.php b/apps/user_ldap/l10n/ms_MY.php
index b6a8ede78ee..7010e8a8f50 100644
--- a/apps/user_ldap/l10n/ms_MY.php
+++ b/apps/user_ldap/l10n/ms_MY.php
@@ -4,6 +4,7 @@ $TRANSLATIONS = array(
"Error" => "Ralat",
"_%s group found_::_%s groups found_" => array(""),
"_%s user found_::_%s users found_" => array(""),
+"Save" => "Simpan",
"Help" => "Bantuan",
"Password" => "Kata laluan",
"Back" => "Kembali"
diff --git a/apps/user_ldap/l10n/nb_NO.php b/apps/user_ldap/l10n/nb_NO.php
index 6d3c7e6aa42..42ff76f04a0 100644
--- a/apps/user_ldap/l10n/nb_NO.php
+++ b/apps/user_ldap/l10n/nb_NO.php
@@ -16,6 +16,7 @@ $TRANSLATIONS = array(
"Confirm Deletion" => "Bekreft sletting",
"_%s group found_::_%s groups found_" => array("",""),
"_%s user found_::_%s users found_" => array("",""),
+"Save" => "Lagre",
"Help" => "Hjelp",
"Add Server Configuration" => "Legg til tjener-konfigurasjon",
"Host" => "Tjener",
diff --git a/apps/user_ldap/l10n/nl.php b/apps/user_ldap/l10n/nl.php
index e6bedce683c..9acd9c088c8 100644
--- a/apps/user_ldap/l10n/nl.php
+++ b/apps/user_ldap/l10n/nl.php
@@ -27,6 +27,7 @@ $TRANSLATIONS = array(
"_%s user found_::_%s users found_" => array("%s gebruiker gevonden","%s gebruikers gevonden"),
"Invalid Host" => "Ongeldige server",
"Could not find the desired feature" => "Kon de gewenste functie niet vinden",
+"Save" => "Bewaren",
"Test Configuration" => "Test configuratie",
"Help" => "Help",
"Limit the access to %s to groups meeting this criteria:" => "Beperk toegang tot %s tot groepen die voldoen aan deze criteria:",
diff --git a/apps/user_ldap/l10n/nn_NO.php b/apps/user_ldap/l10n/nn_NO.php
index be2ce476137..c8b7ec091b6 100644
--- a/apps/user_ldap/l10n/nn_NO.php
+++ b/apps/user_ldap/l10n/nn_NO.php
@@ -5,6 +5,7 @@ $TRANSLATIONS = array(
"Select groups" => "Vel grupper",
"_%s group found_::_%s groups found_" => array("",""),
"_%s user found_::_%s users found_" => array("",""),
+"Save" => "Lagra",
"Help" => "Hjelp",
"Host" => "Tenar",
"Password" => "Passord",
diff --git a/apps/user_ldap/l10n/oc.php b/apps/user_ldap/l10n/oc.php
index 4bffe766a0b..3b3e8365a65 100644
--- a/apps/user_ldap/l10n/oc.php
+++ b/apps/user_ldap/l10n/oc.php
@@ -4,6 +4,7 @@ $TRANSLATIONS = array(
"Error" => "Error",
"_%s group found_::_%s groups found_" => array("",""),
"_%s user found_::_%s users found_" => array("",""),
+"Save" => "Enregistra",
"Help" => "Ajuda",
"Password" => "Senhal"
);
diff --git a/apps/user_ldap/l10n/pl.php b/apps/user_ldap/l10n/pl.php
index 39e43c0a6d1..945f72e0537 100644
--- a/apps/user_ldap/l10n/pl.php
+++ b/apps/user_ldap/l10n/pl.php
@@ -18,6 +18,7 @@ $TRANSLATIONS = array(
"Confirm Deletion" => "Potwierdź usunięcie",
"_%s group found_::_%s groups found_" => array("","",""),
"_%s user found_::_%s users found_" => array("","",""),
+"Save" => "Zapisz",
"Test Configuration" => "Konfiguracja testowa",
"Help" => "Pomoc",
"Add Server Configuration" => "Dodaj konfigurację servera",
diff --git a/apps/user_ldap/l10n/pt_BR.php b/apps/user_ldap/l10n/pt_BR.php
index f30fe35b15b..cf047b2c88c 100644
--- a/apps/user_ldap/l10n/pt_BR.php
+++ b/apps/user_ldap/l10n/pt_BR.php
@@ -4,6 +4,7 @@ $TRANSLATIONS = array(
"Failed to delete the server configuration" => "Falha ao deletar a configuração do servidor",
"The configuration is valid and the connection could be established!" => "A configuração é válida e a conexão foi estabelecida!",
"The configuration is valid, but the Bind failed. Please check the server settings and credentials." => "A configuração é válida, mas o Bind falhou. Confira as configurações do servidor e as credenciais.",
+"The configuration is invalid. Please have a look at the logs for further details." => "Configuração inválida. Por favor, dê uma olhada nos logs para mais detalhes.",
"No action specified" => "Nenhuma ação especificada",
"No configuration specified" => "Nenhuma configuração especificada",
"No data specified" => "Não há dados especificados",
@@ -26,6 +27,7 @@ $TRANSLATIONS = array(
"_%s user found_::_%s users found_" => array("usuário %s encontrado","usuários %s encontrados"),
"Invalid Host" => "Host inválido",
"Could not find the desired feature" => "Não foi possível encontrar a função desejada",
+"Save" => "Guardar",
"Test Configuration" => "Teste de Configuração",
"Help" => "Ajuda",
"Limit the access to %s to groups meeting this criteria:" => "Limitar o acesso a %s para grupos que coincidam com estes critérios:",
diff --git a/apps/user_ldap/l10n/pt_PT.php b/apps/user_ldap/l10n/pt_PT.php
index b9332990088..78516929e1a 100644
--- a/apps/user_ldap/l10n/pt_PT.php
+++ b/apps/user_ldap/l10n/pt_PT.php
@@ -18,6 +18,7 @@ $TRANSLATIONS = array(
"Confirm Deletion" => "Confirmar a operação de apagar",
"_%s group found_::_%s groups found_" => array("",""),
"_%s user found_::_%s users found_" => array("",""),
+"Save" => "Guardar",
"Test Configuration" => "Testar a configuração",
"Help" => "Ajuda",
"Add Server Configuration" => "Adicionar configurações do servidor",
diff --git a/apps/user_ldap/l10n/ro.php b/apps/user_ldap/l10n/ro.php
index 9454aa52465..34c1809ca11 100644
--- a/apps/user_ldap/l10n/ro.php
+++ b/apps/user_ldap/l10n/ro.php
@@ -5,6 +5,7 @@ $TRANSLATIONS = array(
"Error" => "Eroare",
"_%s group found_::_%s groups found_" => array("","",""),
"_%s user found_::_%s users found_" => array("","",""),
+"Save" => "Salvează",
"Help" => "Ajutor",
"Host" => "Gazdă",
"You can omit the protocol, except you require SSL. Then start with ldaps://" => "Puteți omite protocolul, decât dacă folosiți SSL. Atunci se începe cu ldaps://",
diff --git a/apps/user_ldap/l10n/ru.php b/apps/user_ldap/l10n/ru.php
index f75f23f2784..f908fa3cc70 100644
--- a/apps/user_ldap/l10n/ru.php
+++ b/apps/user_ldap/l10n/ru.php
@@ -1,10 +1,10 @@
"Не удалось очистить соотвествия.",
+"Failed to clear the mappings." => "Не удалось очистить соответствия.",
"Failed to delete the server configuration" => "Не удалось удалить конфигурацию сервера",
"The configuration is valid and the connection could be established!" => "Конфигурация правильная и подключение может быть установлено!",
"The configuration is valid, but the Bind failed. Please check the server settings and credentials." => "Конфигурация верна, но операция подключения завершилась неудачно. Пожалуйста, проверьте настройки сервера и учетные данные.",
-"The configuration is invalid. Please have a look at the logs for further details." => "Конфигурация не выполнена. Пожалуйста, просмотрите логи для уточнения деталей",
+"The configuration is invalid. Please have a look at the logs for further details." => "Конфигурация недействительна. Пожалуйста, просмотрите логи для уточнения деталей.",
"No action specified" => "Действие не указано",
"No configuration specified" => "Конфигурация не создана",
"No data specified" => "Нет данных",
@@ -16,60 +16,61 @@ $TRANSLATIONS = array(
"mappings cleared" => "Соответствия очищены",
"Success" => "Успешно",
"Error" => "Ошибка",
-"Select groups" => "Выбрать группы",
-"Select object classes" => "Выберите классы объекта",
+"Select groups" => "Выберите группы",
+"Select object classes" => "Выберите объектные классы",
"Select attributes" => "Выберите атрибуты",
"Connection test succeeded" => "Проверка соединения удалась",
"Connection test failed" => "Проверка соединения не удалась",
"Do you really want to delete the current Server Configuration?" => "Вы действительно хотите удалить существующую конфигурацию сервера?",
"Confirm Deletion" => "Подтверждение удаления",
-"_%s group found_::_%s groups found_" => array("%s гурппа найдена","%s группы найдены","%s групп найдено"),
+"_%s group found_::_%s groups found_" => array("%s группа найдена","%s группы найдены","%s групп найдено"),
"_%s user found_::_%s users found_" => array("%s пользователь найден","%s пользователя найдено","%s пользователей найдено"),
"Invalid Host" => "Неверный сервер",
"Could not find the desired feature" => "Не могу найти требуемой функциональности",
-"Test Configuration" => "Тестовая конфигурация",
+"Save" => "Сохранить",
+"Test Configuration" => "Проверить конфигурацию",
"Help" => "Помощь",
-"Limit the access to %s to groups meeting this criteria:" => "Ограничить доступ к %s группам удовлетворяющим этому критерию:",
-"only those object classes:" => "только эти классы объекта",
+"Limit the access to %s to groups meeting this criteria:" => "Ограничить доступ к %s группам, удовлетворяющим этому критерию:",
+"only those object classes:" => "только эти объектные классы",
"only from those groups:" => "только из этих групп",
"Edit raw filter instead" => "Редактировать исходный фильтр",
"Raw LDAP filter" => "Исходный LDAP фильтр",
-"The filter specifies which LDAP groups shall have access to the %s instance." => "Этот фильтр определяет какие LDAP группы должны иметь доступ к %s.",
+"The filter specifies which LDAP groups shall have access to the %s instance." => "Этот фильтр определяет, какие LDAP группы должны иметь доступ к %s.",
"groups found" => "групп найдено",
-"What attribute shall be used as login name:" => "Какой аттибут должен быть использован для логина:",
+"What attribute shall be used as login name:" => "Какой атрибут должен быть использован для логина:",
"LDAP Username:" => "Имя пользователя LDAP",
"LDAP Email Address:" => "LDAP адрес электронной почты:",
-"Other Attributes:" => "Другие аттрибуты:",
+"Other Attributes:" => "Другие атрибуты:",
"Add Server Configuration" => "Добавить конфигурацию сервера",
"Host" => "Сервер",
"You can omit the protocol, except you require SSL. Then start with ldaps://" => "Можно опустить протокол, за исключением того, когда вам требуется SSL. Тогда начните с ldaps :/ /",
"Port" => "Порт",
"User DN" => "DN пользователя",
-"The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." => "DN-клиента пользователя, с которым связывают должно быть заполнено, например, uid=агент, dc=пример, dc=com. Для анонимного доступа, оставьте DN и пароль пустыми.",
+"The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." => "DN пользователя, под которым выполняется подключение, например, uid=agent,dc=example,dc=com. Для анонимного доступа оставьте DN и пароль пустыми.",
"Password" => "Пароль",
"For anonymous access, leave DN and Password empty." => "Для анонимного доступа оставьте DN и пароль пустыми.",
-"One Base DN per line" => "По одному базовому DN в строке.",
+"One Base DN per line" => "По одной базе поиска (Base DN) в строке.",
"You can specify Base DN for users and groups in the Advanced tab" => "Вы можете задать Base DN для пользователей и групп на вкладке \"Расширенное\"",
-"Limit the access to %s to users meeting this criteria:" => "Ограничить доступ к %s пользователям удовлетворяющим этому критерию:",
-"The filter specifies which LDAP users shall have access to the %s instance." => "Этот фильтр указывает какие LDAP пользователи должны иметь доступ к %s.",
+"Limit the access to %s to users meeting this criteria:" => "Ограничить доступ к %s пользователям, удовлетворяющим этому критерию:",
+"The filter specifies which LDAP users shall have access to the %s instance." => "Этот фильтр указывает, какие пользователи LDAP должны иметь доступ к %s.",
"users found" => "пользователей найдено",
"Back" => "Назад",
"Continue" => "Продолжить",
-"Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." => "Предупреждение: Приложения user_ldap и user_webdavauth не совместимы. Вы можете наблюдать некорректное поведение. Пожалуйста попросите Вашего системного администратора отключить одно из них.",
+"Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." => "Предупреждение: Приложения user_ldap и user_webdavauth несовместимы. Вы можете наблюдать некорректное поведение. Пожалуйста, попросите вашего системного администратора отключить одно из них.",
"Warning: The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." => "Внимание: Модуль LDAP для PHP не установлен, бэкенд не будет работать. Пожалуйста, попросите вашего системного администратора его установить. ",
"Connection Settings" => "Настройки подключения",
"Configuration Active" => "Конфигурация активна",
"When unchecked, this configuration will be skipped." => "Когда галочка снята, эта конфигурация будет пропущена.",
-"User Login Filter" => "Фильтр входа пользователей",
+"User Login Filter" => "Фильтр учетных записей",
"Defines the filter to apply, when login is attempted. %%uid replaces the username in the login action. Example: \"uid=%%uid\"" => "Определяет фильтр для применения при попытке входа. %%uid заменяет имя пользователя при входе в систему. Например: \"uid=%%uid\"",
"Backup (Replica) Host" => "Адрес резервного сервера",
"Give an optional backup host. It must be a replica of the main LDAP/AD server." => "Укажите дополнительный резервный сервер. Он должен быть репликой главного LDAP/AD сервера.",
"Backup (Replica) Port" => "Порт резервного сервера",
-"Disable Main Server" => "Отключение главного сервера",
-"Only connect to the replica server." => "Только подключение к серверу реплик.",
+"Disable Main Server" => "Отключить главный сервер",
+"Only connect to the replica server." => "Подключаться только к серверу-реплике.",
"Case insensitve LDAP server (Windows)" => "Нечувствительный к регистру сервер LDAP (Windows)",
"Turn off SSL certificate validation." => "Отключить проверку сертификата SSL.",
-"Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." => "Не рекомендуется, используйте только в режиме тестирования! Если соединение работает только с этой опцией, импортируйте на ваш %s сервер сертификат SSL сервера LDAP.",
+"Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." => "Не рекомендуется, используйте только в режиме тестирования! Если соединение работает только с этой опцией, импортируйте на ваш %s сервер SSL-сертификат сервера LDAP.",
"Cache Time-To-Live" => "Кэш времени жизни",
"in seconds. A change empties the cache." => "в секундах. Изменение очистит кэш.",
"Directory Settings" => "Настройки каталога",
@@ -77,8 +78,8 @@ $TRANSLATIONS = array(
"The LDAP attribute to use to generate the user's display name." => "Атрибут LDAP, который используется для генерации отображаемого имени пользователя.",
"Base User Tree" => "База пользовательского дерева",
"One User Base DN per line" => "По одной базовому DN пользователей в строке.",
-"User Search Attributes" => "Поисковые атрибуты пользователя",
-"Optional; one attribute per line" => "Опционально; один атрибут на линию",
+"User Search Attributes" => "Атрибуты поиска пользоватетелей",
+"Optional; one attribute per line" => "Опционально; один атрибут в строке",
"Group Display Name Field" => "Поле отображаемого имени группы",
"The LDAP attribute to use to generate the groups's display name." => "Атрибут LDAP, который используется для генерации отображаемого имени группы.",
"Base Group Tree" => "База группового дерева",
@@ -86,21 +87,21 @@ $TRANSLATIONS = array(
"Group Search Attributes" => "Атрибуты поиска для группы",
"Group-Member association" => "Ассоциация Группа-Участник",
"Special Attributes" => "Специальные атрибуты",
-"Quota Field" => "Поле квота",
+"Quota Field" => "Поле квоты",
"Quota Default" => "Квота по умолчанию",
"in bytes" => "в байтах",
-"Email Field" => "Поле адресса эллектронной почты",
-"User Home Folder Naming Rule" => "Правило именования Домашней Папки Пользователя",
-"Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Оставьте имя пользователя пустым (по умолчанию). Иначе укажите атрибут LDAP/AD.",
+"Email Field" => "Поле адреса электронной почты",
+"User Home Folder Naming Rule" => "Правило именования домашней папки пользователя",
+"Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Оставьте пустым для использования имени пользователя (по умолчанию). Иначе укажите атрибут LDAP/AD.",
"Internal Username" => "Внутреннее имя пользователя",
-"By default the internal username will be created from the UUID attribute. It makes sure that the username is unique and characters do not need to be converted. The internal username has the restriction that only these characters are allowed: [ a-zA-Z0-9_.@- ]. Other characters are replaced with their ASCII correspondence or simply omitted. On collisions a number will be added/increased. The internal username is used to identify a user internally. It is also the default name for the user home folder. It is also a part of remote URLs, for instance for all *DAV services. With this setting, the default behavior can be overridden. To achieve a similar behavior as before ownCloud 5 enter the user display name attribute in the following field. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users." => "По-умолчанию внутреннее имя пользователя будет создано из атрибута UUID. Таким образом имя пользователя становится уникальным и не требует конвертации символов. Внутреннее имя пользователя может состоять только из следующих символов: [ a-zA-Z0-9_.@- ]. Остальные символы замещаются соответствиями из таблицы ASCII или же просто пропускаются. При совпадении к имени будет добавлено число. Внутреннее имя пользователя используется для внутренней идентификации пользователя. Также оно является именем по-умолчанию для папки пользователя в ownCloud. Оно также портом для удаленных ссылок, к примеру, для всех сервисов *DAV. С помощию данной настройки можно изменить поведение по-умолчанию. Чтобы достичь поведения, как было настроено до изменения, ownCloud 5 выводит атрибут имени пользователя в этом поле. Оставьте его пустым для режима по-умолчанию. Изменения будут иметь эффект только для новых подключенных (добавленных) пользователей LDAP.",
-"Internal Username Attribute:" => "Аттрибут для внутреннего имени:",
+"By default the internal username will be created from the UUID attribute. It makes sure that the username is unique and characters do not need to be converted. The internal username has the restriction that only these characters are allowed: [ a-zA-Z0-9_.@- ]. Other characters are replaced with their ASCII correspondence or simply omitted. On collisions a number will be added/increased. The internal username is used to identify a user internally. It is also the default name for the user home folder. It is also a part of remote URLs, for instance for all *DAV services. With this setting, the default behavior can be overridden. To achieve a similar behavior as before ownCloud 5 enter the user display name attribute in the following field. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users." => "По умолчанию внутреннее имя пользователя будет создано из атрибута UUID. Таким образом имя пользователя становится уникальным и не требует конвертации символов. Внутреннее имя пользователя может состоять только из следующих символов: [ a-zA-Z0-9_.@- ]. Остальные символы замещаются соответствиями из таблицы ASCII или же просто пропускаются. При совпадении к имени будет добавлено или увеличено число. Внутреннее имя пользователя используется для внутренней идентификации пользователя. Также оно является именем по умолчанию для папки пользователя в ownCloud. Оно также является частью URL, к примеру, для всех сервисов *DAV. С помощью данной настройки можно изменить поведение по умолчанию. Чтобы достичь поведения, как было до ownCloud 5, введите атрибут отображаемого имени пользователя в этом поле. Оставьте его пустым для режима по умолчанию. Изменения будут иметь эффект только для новых подключенных (добавленных) пользователей LDAP.",
+"Internal Username Attribute:" => "Атрибут для внутреннего имени:",
"Override UUID detection" => "Переопределить нахождение UUID",
-"By default, the UUID attribute is automatically detected. The UUID attribute is used to doubtlessly identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." => "По-умолчанию, ownCloud определяет атрибут UUID автоматически. Этот атрибут используется для того, чтобы достоверно индентифицировать пользователей и группы LDAP. Также, на основании атрибута UUID создается внутреннее имя пользователя, если выше не указано иначе. Вы можете переопределить эту настройку и указать свой атрибут по выбору. Вы должны удостовериться, что выбранный вами атрибут может быть выбран для пользователей и групп, а также то, что он уникальный. Оставьте поле пустым для поведения по-умолчанию. Изменения вступят в силу только для новых подключенных (добавленных) пользователей и групп LDAP.",
-"UUID Attribute for Users:" => "UUID Аттрибуты для Пользователей:",
-"UUID Attribute for Groups:" => "UUID Аттрибуты для Групп:",
+"By default, the UUID attribute is automatically detected. The UUID attribute is used to doubtlessly identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." => "По умолчанию ownCloud определяет атрибут UUID автоматически. Этот атрибут используется для того, чтобы достоверно индентифицировать пользователей и группы LDAP. Также на основании атрибута UUID создается внутреннее имя пользователя, если выше не указано иначе. Вы можете переопределить эту настройку и указать свой атрибут по выбору. Вы должны удостовериться, что выбранный вами атрибут может быть выбран для пользователей и групп, а также то, что он уникальный. Оставьте поле пустым для поведения по умолчанию. Изменения вступят в силу только для новых подключенных (добавленных) пользователей и групп LDAP.",
+"UUID Attribute for Users:" => "UUID-атрибуты для пользователей:",
+"UUID Attribute for Groups:" => "UUID-атрибуты для групп:",
"Username-LDAP User Mapping" => "Соответствия Имя-Пользователь LDAP",
-"Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have a internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." => "ownCloud использует имена пользователей для хранения и назначения метаданных. Для точной идентификации и распознавания пользователей, каждый пользователь LDAP будет иметь свое внутреннее имя пользователя. Это требует привязки имени пользователя ownCloud к пользователю LDAP. При создании имя пользователя назначается идентификатору UUID пользователя LDAP. Помимо этого кешируется доменное имя (DN) для уменьшения числа обращений к LDAP, однако оно не используется для идентификации. Если доменное имя было изменено, об этом станет известно ownCloud. Внутреннее имя ownCloud используется повсеместно в ownCloud. После сброса привязок в базе могут сохраниться остатки старой информации. Сброс привязок не привязан к конфигурации, он повлияет на все LDAP подключения! Ни в коем случае не рекомендуется сбрасывать привязки если система уже находится в эксплуатации, только на этапе тестирования.",
+"Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have a internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." => "ownCloud использует имена пользователей для хранения и назначения метаданных. Для точной идентификации и распознавания пользователей, каждый пользователь LDAP будет иметь свое внутреннее имя пользователя. Это требует привязки имени пользователя ownCloud к пользователю LDAP. При создании имя пользователя назначается идентификатору UUID пользователя LDAP. Помимо этого кешируется различающееся имя (DN) для уменьшения числа обращений к LDAP, однако оно не используется для идентификации. Если различающееся имя было изменено, об этом станет известно ownCloud. Внутреннее имя ownCloud используется повсеместно в ownCloud. После сброса привязок в базе могут сохраниться остатки старой информации. Сброс привязок не привязан к конфигурации, он повлияет на все LDAP-подключения! Ни в коем случае не рекомендуется сбрасывать привязки, если система уже находится в эксплуатации, только на этапе тестирования.",
"Clear Username-LDAP User Mapping" => "Очистить соответствия Имя-Пользователь LDAP",
"Clear Groupname-LDAP Group Mapping" => "Очистить соответствия Группа-Группа LDAP"
);
diff --git a/apps/user_ldap/l10n/ru_RU.php b/apps/user_ldap/l10n/ru_RU.php
index ca3bfec61bd..696e44a5bb5 100644
--- a/apps/user_ldap/l10n/ru_RU.php
+++ b/apps/user_ldap/l10n/ru_RU.php
@@ -4,6 +4,7 @@ $TRANSLATIONS = array(
"Select groups" => "Выбрать группы",
"_%s group found_::_%s groups found_" => array("","",""),
"_%s user found_::_%s users found_" => array("","",""),
+"Save" => "Сохранить",
"Help" => "Помощь",
"Password" => "Пароль",
"Back" => "Назад"
diff --git a/apps/user_ldap/l10n/si_LK.php b/apps/user_ldap/l10n/si_LK.php
index 9b427d13bb1..1672daf7eb4 100644
--- a/apps/user_ldap/l10n/si_LK.php
+++ b/apps/user_ldap/l10n/si_LK.php
@@ -5,6 +5,7 @@ $TRANSLATIONS = array(
"Error" => "දෝෂයක්",
"_%s group found_::_%s groups found_" => array("",""),
"_%s user found_::_%s users found_" => array("",""),
+"Save" => "සුරකින්න",
"Help" => "උදව්",
"Host" => "සත්කාරකය",
"You can omit the protocol, except you require SSL. Then start with ldaps://" => "SSL අවශ්යය වන විට පමණක් හැර, අන් අවස්ථාවන්හිදී ප්රොටොකෝලය අත් හැරිය හැක. භාවිතා කරන විට ldaps:// ලෙස ආරම්භ කරන්න",
diff --git a/apps/user_ldap/l10n/sk_SK.php b/apps/user_ldap/l10n/sk_SK.php
index c716dbb8d11..5367abca9a8 100644
--- a/apps/user_ldap/l10n/sk_SK.php
+++ b/apps/user_ldap/l10n/sk_SK.php
@@ -18,6 +18,7 @@ $TRANSLATIONS = array(
"Confirm Deletion" => "Potvrdiť vymazanie",
"_%s group found_::_%s groups found_" => array("","",""),
"_%s user found_::_%s users found_" => array("","",""),
+"Save" => "Uložiť",
"Test Configuration" => "Test nastavenia",
"Help" => "Pomoc",
"Add Server Configuration" => "Pridať nastavenia servera.",
diff --git a/apps/user_ldap/l10n/sl.php b/apps/user_ldap/l10n/sl.php
index 381d13a911a..7eefc34e433 100644
--- a/apps/user_ldap/l10n/sl.php
+++ b/apps/user_ldap/l10n/sl.php
@@ -18,6 +18,7 @@ $TRANSLATIONS = array(
"Confirm Deletion" => "Potrdi brisanje",
"_%s group found_::_%s groups found_" => array("","","",""),
"_%s user found_::_%s users found_" => array("","","",""),
+"Save" => "Shrani",
"Test Configuration" => "Preizkusne nastavitve",
"Help" => "Pomoč",
"Add Server Configuration" => "Dodaj nastavitve strežnika",
diff --git a/apps/user_ldap/l10n/sq.php b/apps/user_ldap/l10n/sq.php
index 322b56acbb8..ed19a49363e 100644
--- a/apps/user_ldap/l10n/sq.php
+++ b/apps/user_ldap/l10n/sq.php
@@ -17,6 +17,7 @@ $TRANSLATIONS = array(
"Confirm Deletion" => "Konfirmoni Fshirjen",
"_%s group found_::_%s groups found_" => array("",""),
"_%s user found_::_%s users found_" => array("",""),
+"Save" => "Ruaj",
"Test Configuration" => "Provoni konfigurimet",
"Help" => "Ndihmë",
"Add Server Configuration" => "Shtoni konfigurimet e serverit",
diff --git a/apps/user_ldap/l10n/sr.php b/apps/user_ldap/l10n/sr.php
index d79f6bf93f1..f44730e71a1 100644
--- a/apps/user_ldap/l10n/sr.php
+++ b/apps/user_ldap/l10n/sr.php
@@ -4,6 +4,7 @@ $TRANSLATIONS = array(
"Error" => "Грешка",
"_%s group found_::_%s groups found_" => array("","",""),
"_%s user found_::_%s users found_" => array("","",""),
+"Save" => "Сачувај",
"Help" => "Помоћ",
"Host" => "Домаћин",
"You can omit the protocol, except you require SSL. Then start with ldaps://" => "Можете да изоставите протокол, осим ако захтевате SSL. У том случају почните са ldaps://.",
diff --git a/apps/user_ldap/l10n/sr@latin.php b/apps/user_ldap/l10n/sr@latin.php
index 91e88b65381..e3023996ad3 100644
--- a/apps/user_ldap/l10n/sr@latin.php
+++ b/apps/user_ldap/l10n/sr@latin.php
@@ -3,6 +3,7 @@ $TRANSLATIONS = array(
"Error" => "Greška",
"_%s group found_::_%s groups found_" => array("","",""),
"_%s user found_::_%s users found_" => array("","",""),
+"Save" => "Snimi",
"Help" => "Pomoć",
"Password" => "Lozinka"
);
diff --git a/apps/user_ldap/l10n/sv.php b/apps/user_ldap/l10n/sv.php
index 072ed3b7d82..2a1a6e46e03 100644
--- a/apps/user_ldap/l10n/sv.php
+++ b/apps/user_ldap/l10n/sv.php
@@ -26,6 +26,7 @@ $TRANSLATIONS = array(
"_%s user found_::_%s users found_" => array("%s användare hittad","%s användare hittade"),
"Invalid Host" => "Felaktig Host",
"Could not find the desired feature" => "Det gick inte hitta den önskade funktionen",
+"Save" => "Spara",
"Test Configuration" => "Testa konfigurationen",
"Help" => "Hjälp",
"Limit the access to %s to groups meeting this criteria:" => "Begränsa åtkomsten till %s till grupper som möter följande kriterie:",
diff --git a/apps/user_ldap/l10n/ta_LK.php b/apps/user_ldap/l10n/ta_LK.php
index 30e59cb8374..c7efcf05894 100644
--- a/apps/user_ldap/l10n/ta_LK.php
+++ b/apps/user_ldap/l10n/ta_LK.php
@@ -4,6 +4,7 @@ $TRANSLATIONS = array(
"Error" => "வழு",
"_%s group found_::_%s groups found_" => array("",""),
"_%s user found_::_%s users found_" => array("",""),
+"Save" => "சேமிக்க ",
"Help" => "உதவி",
"Host" => "ஓம்புனர்",
"You can omit the protocol, except you require SSL. Then start with ldaps://" => "நீங்கள் SSL சேவையை தவிர உடன்படு வரைமுறையை தவிர்க்க முடியும். பிறகு ldaps:.// உடன் ஆரம்பிக்கவும்",
diff --git a/apps/user_ldap/l10n/te.php b/apps/user_ldap/l10n/te.php
index 734f200cf9c..ad3ffb1c5e8 100644
--- a/apps/user_ldap/l10n/te.php
+++ b/apps/user_ldap/l10n/te.php
@@ -3,6 +3,7 @@ $TRANSLATIONS = array(
"Error" => "పొరపాటు",
"_%s group found_::_%s groups found_" => array("",""),
"_%s user found_::_%s users found_" => array("",""),
+"Save" => "భద్రపరచు",
"Help" => "సహాయం",
"Password" => "సంకేతపదం"
);
diff --git a/apps/user_ldap/l10n/th_TH.php b/apps/user_ldap/l10n/th_TH.php
index 9835a6f7a3b..344015002db 100644
--- a/apps/user_ldap/l10n/th_TH.php
+++ b/apps/user_ldap/l10n/th_TH.php
@@ -15,6 +15,7 @@ $TRANSLATIONS = array(
"Confirm Deletion" => "ยืนยันการลบทิ้ง",
"_%s group found_::_%s groups found_" => array(""),
"_%s user found_::_%s users found_" => array(""),
+"Save" => "บันทึก",
"Help" => "ช่วยเหลือ",
"Add Server Configuration" => "เพิ่มการกำหนดค่าเซิร์ฟเวอร์",
"Host" => "โฮสต์",
diff --git a/apps/user_ldap/l10n/tr.php b/apps/user_ldap/l10n/tr.php
index 79f8b876600..80fd5705772 100644
--- a/apps/user_ldap/l10n/tr.php
+++ b/apps/user_ldap/l10n/tr.php
@@ -27,6 +27,7 @@ $TRANSLATIONS = array(
"_%s user found_::_%s users found_" => array("%s kullanıcı bulundu","%s kullanıcı bulundu"),
"Invalid Host" => "Geçersiz Makine",
"Could not find the desired feature" => "İstenen özellik bulunamadı",
+"Save" => "Kaydet",
"Test Configuration" => "Test Yapılandırması",
"Help" => "Yardım",
"Limit the access to %s to groups meeting this criteria:" => "%s erişimini, şu kriterle eşleşen gruplara sınırla:",
diff --git a/apps/user_ldap/l10n/ug.php b/apps/user_ldap/l10n/ug.php
index 0ca11c6120b..2b991501cbb 100644
--- a/apps/user_ldap/l10n/ug.php
+++ b/apps/user_ldap/l10n/ug.php
@@ -4,6 +4,7 @@ $TRANSLATIONS = array(
"Error" => "خاتالىق",
"_%s group found_::_%s groups found_" => array(""),
"_%s user found_::_%s users found_" => array(""),
+"Save" => "ساقلا",
"Help" => "ياردەم",
"Host" => "باش ئاپپارات",
"Port" => "ئېغىز",
diff --git a/apps/user_ldap/l10n/uk.php b/apps/user_ldap/l10n/uk.php
index 6d3d57f946c..ed0a9c3407f 100644
--- a/apps/user_ldap/l10n/uk.php
+++ b/apps/user_ldap/l10n/uk.php
@@ -16,6 +16,7 @@ $TRANSLATIONS = array(
"Confirm Deletion" => "Підтвердіть Видалення",
"_%s group found_::_%s groups found_" => array("","",""),
"_%s user found_::_%s users found_" => array("","",""),
+"Save" => "Зберегти",
"Test Configuration" => "Тестове налаштування",
"Help" => "Допомога",
"Add Server Configuration" => "Додати налаштування Сервера",
diff --git a/apps/user_ldap/l10n/uz.php b/apps/user_ldap/l10n/uz.php
new file mode 100644
index 00000000000..bba52d53a1a
--- /dev/null
+++ b/apps/user_ldap/l10n/uz.php
@@ -0,0 +1,6 @@
+ array(""),
+"_%s user found_::_%s users found_" => array("")
+);
+$PLURAL_FORMS = "nplurals=1; plural=0;";
diff --git a/apps/user_ldap/l10n/vi.php b/apps/user_ldap/l10n/vi.php
index 49347b12518..803101ef583 100644
--- a/apps/user_ldap/l10n/vi.php
+++ b/apps/user_ldap/l10n/vi.php
@@ -6,6 +6,7 @@ $TRANSLATIONS = array(
"Select groups" => "Chọn nhóm",
"_%s group found_::_%s groups found_" => array(""),
"_%s user found_::_%s users found_" => array(""),
+"Save" => "Lưu",
"Help" => "Giúp đỡ",
"Host" => "Máy chủ",
"You can omit the protocol, except you require SSL. Then start with ldaps://" => "Bạn có thể bỏ qua các giao thức, ngoại trừ SSL. Sau đó bắt đầu với ldaps://",
diff --git a/apps/user_ldap/l10n/zh_CN.php b/apps/user_ldap/l10n/zh_CN.php
index cfe60f20fb5..edc02471def 100644
--- a/apps/user_ldap/l10n/zh_CN.php
+++ b/apps/user_ldap/l10n/zh_CN.php
@@ -18,6 +18,7 @@ $TRANSLATIONS = array(
"Confirm Deletion" => "确认删除",
"_%s group found_::_%s groups found_" => array(""),
"_%s user found_::_%s users found_" => array(""),
+"Save" => "保存",
"Test Configuration" => "测试配置",
"Help" => "帮助",
"Add Server Configuration" => "添加服务器配置",
diff --git a/apps/user_ldap/l10n/zh_HK.php b/apps/user_ldap/l10n/zh_HK.php
index 222f7c7b3ca..cb504b17463 100644
--- a/apps/user_ldap/l10n/zh_HK.php
+++ b/apps/user_ldap/l10n/zh_HK.php
@@ -4,6 +4,7 @@ $TRANSLATIONS = array(
"Error" => "錯誤",
"_%s group found_::_%s groups found_" => array(""),
"_%s user found_::_%s users found_" => array(""),
+"Save" => "儲存",
"Help" => "幫助",
"Port" => "連接埠",
"Password" => "密碼"
diff --git a/apps/user_ldap/l10n/zh_TW.php b/apps/user_ldap/l10n/zh_TW.php
index 0cf3827dd48..8687a0c87d8 100644
--- a/apps/user_ldap/l10n/zh_TW.php
+++ b/apps/user_ldap/l10n/zh_TW.php
@@ -18,6 +18,7 @@ $TRANSLATIONS = array(
"Confirm Deletion" => "確認刪除",
"_%s group found_::_%s groups found_" => array(""),
"_%s user found_::_%s users found_" => array(""),
+"Save" => "儲存",
"Test Configuration" => "測試此設定",
"Help" => "說明",
"Add Server Configuration" => "新增伺服器設定",
diff --git a/apps/user_ldap/lib/wizard.php b/apps/user_ldap/lib/wizard.php
index 9428a98e29c..0b2a6a540ff 100644
--- a/apps/user_ldap/lib/wizard.php
+++ b/apps/user_ldap/lib/wizard.php
@@ -63,8 +63,6 @@ class Wizard extends LDAPUtility {
public function countGroups() {
if(!$this->checkRequirements(array('ldapHost',
'ldapPort',
- 'ldapAgentName',
- 'ldapAgentPassword',
'ldapBase',
))) {
return false;
@@ -98,8 +96,6 @@ class Wizard extends LDAPUtility {
public function countUsers() {
if(!$this->checkRequirements(array('ldapHost',
'ldapPort',
- 'ldapAgentName',
- 'ldapAgentPassword',
'ldapBase',
'ldapUserFilter',
))) {
@@ -130,8 +126,6 @@ class Wizard extends LDAPUtility {
public function determineAttributes() {
if(!$this->checkRequirements(array('ldapHost',
'ldapPort',
- 'ldapAgentName',
- 'ldapAgentPassword',
'ldapBase',
'ldapUserFilter',
))) {
@@ -160,8 +154,6 @@ class Wizard extends LDAPUtility {
private function getUserAttributes() {
if(!$this->checkRequirements(array('ldapHost',
'ldapPort',
- 'ldapAgentName',
- 'ldapAgentPassword',
'ldapBase',
'ldapUserFilter',
))) {
@@ -214,8 +206,6 @@ class Wizard extends LDAPUtility {
private function determineGroups($dbkey, $confkey, $testMemberOf = true) {
if(!$this->checkRequirements(array('ldapHost',
'ldapPort',
- 'ldapAgentName',
- 'ldapAgentPassword',
'ldapBase',
))) {
return false;
@@ -242,8 +232,6 @@ class Wizard extends LDAPUtility {
public function determineGroupMemberAssoc() {
if(!$this->checkRequirements(array('ldapHost',
'ldapPort',
- 'ldapAgentName',
- 'ldapAgentPassword',
'ldapGroupFilter',
))) {
return false;
@@ -266,8 +254,6 @@ class Wizard extends LDAPUtility {
public function determineGroupObjectClasses() {
if(!$this->checkRequirements(array('ldapHost',
'ldapPort',
- 'ldapAgentName',
- 'ldapAgentPassword',
'ldapBase',
))) {
return false;
@@ -294,8 +280,6 @@ class Wizard extends LDAPUtility {
public function determineUserObjectClasses() {
if(!$this->checkRequirements(array('ldapHost',
'ldapPort',
- 'ldapAgentName',
- 'ldapAgentPassword',
'ldapBase',
))) {
return false;
@@ -322,8 +306,6 @@ class Wizard extends LDAPUtility {
public function getGroupFilter() {
if(!$this->checkRequirements(array('ldapHost',
'ldapPort',
- 'ldapAgentName',
- 'ldapAgentPassword',
'ldapBase',
))) {
return false;
@@ -337,8 +319,6 @@ class Wizard extends LDAPUtility {
public function getUserListFilter() {
if(!$this->checkRequirements(array('ldapHost',
'ldapPort',
- 'ldapAgentName',
- 'ldapAgentPassword',
'ldapBase',
))) {
return false;
@@ -355,13 +335,12 @@ class Wizard extends LDAPUtility {
public function getUserLoginFilter() {
if(!$this->checkRequirements(array('ldapHost',
'ldapPort',
- 'ldapAgentName',
- 'ldapAgentPassword',
'ldapBase',
'ldapUserFilter',
))) {
return false;
}
+
$filter = $this->composeLdapFilter(self::LFILTER_LOGIN);
if(!$filter) {
throw new \Exception('Cannot create filter');
@@ -377,8 +356,6 @@ class Wizard extends LDAPUtility {
*/
public function guessPortAndTLS() {
if(!$this->checkRequirements(array('ldapHost',
- 'ldapAgentName',
- 'ldapAgentPassword'
))) {
return false;
}
@@ -418,8 +395,6 @@ class Wizard extends LDAPUtility {
*/
public function guessBaseDN() {
if(!$this->checkRequirements(array('ldapHost',
- 'ldapAgentName',
- 'ldapAgentPassword',
'ldapPort',
))) {
return false;
@@ -799,7 +774,22 @@ class Wizard extends LDAPUtility {
throw new \Exception($error);
}
+ /**
+ * @brief checks whether a valid combination of agent and password has been
+ * provided (either two values or nothing for anonymous connect)
+ * @return boolean, true if everything is fine, false otherwise
+ *
+ */
+ private function checkAgentRequirements() {
+ $agent = $this->configuration->ldapAgentName;
+ $pwd = $this->configuration->ldapAgentPassword;
+
+ return ( (!empty($agent) && !empty($pwd))
+ || (empty($agent) && empty($pwd)));
+ }
+
private function checkRequirements($reqs) {
+ $this->checkAgentRequirements();
foreach($reqs as $option) {
$value = $this->configuration->$option;
if(empty($value)) {
@@ -1005,9 +995,9 @@ class Wizard extends LDAPUtility {
//In case the port is already provided, we will check this first
if($port > 0) {
$hostInfo = parse_url($host);
- if(is_array($hostInfo)
+ if(!(is_array($hostInfo)
&& isset($hostInfo['scheme'])
- && stripos($hostInfo['scheme'], 'ldaps') === false) {
+ && stripos($hostInfo['scheme'], 'ldaps') !== false)) {
$portSettings[] = array('port' => $port, 'tls' => true);
}
$portSettings[] =array('port' => $port, 'tls' => false);
diff --git a/apps/user_ldap/templates/part.wizard-server.php b/apps/user_ldap/templates/part.wizard-server.php
index 01dd8d0fcb2..fde7c36cdd1 100644
--- a/apps/user_ldap/templates/part.wizard-server.php
+++ b/apps/user_ldap/templates/part.wizard-server.php
@@ -32,7 +32,7 @@
/>
@@ -56,7 +56,7 @@
diff --git a/apps/user_ldap/templates/settings.php b/apps/user_ldap/templates/settings.php
index 22aab0186f7..feb5ac6385d 100644
--- a/apps/user_ldap/templates/settings.php
+++ b/apps/user_ldap/templates/settings.php
@@ -20,8 +20,7 @@
t('Connection Settings'));?>
t('Configuration Active'));?>
-
t('User Login Filter'));?>
- t('User Login Filter'));?> " />
t('Backup (Replica) Host'));?>
diff --git a/apps/user_webdavauth/l10n/ms_MY.php b/apps/user_webdavauth/l10n/ms_MY.php
new file mode 100644
index 00000000000..a9266aa56ca
--- /dev/null
+++ b/apps/user_webdavauth/l10n/ms_MY.php
@@ -0,0 +1,7 @@
+ "Pengesahan ",
+"Address: " => "Alamat:",
+"The user credentials will be sent to this address. This plugin checks the response and will interpret the HTTP statuscodes 401 and 403 as invalid credentials, and all other responses as valid credentials." => "Butiran pengguna akan dihantar ke alamat ini. Plugin ini memeriksa maklum balas dan akan mentafsir kod status HTTP 401 dan 403 sebagai butiran tidak sah, dan semua maklum balas lain sebagai butiran yang sah."
+);
+$PLURAL_FORMS = "nplurals=1; plural=0;";
diff --git a/config/config.sample.php b/config/config.sample.php
index 54dbf3f7c33..105d4759cc1 100644
--- a/config/config.sample.php
+++ b/config/config.sample.php
@@ -184,7 +184,11 @@ $CONFIG = array(
*/
// "datadirectory" => "",
-/* Enable maintenance mode to disable ownCloud */
+/* Enable maintenance mode to disable ownCloud
+ If you want to prevent users to login to ownCloud before you start doing some maintenance work,
+ you need to set the value of the maintenance parameter to true.
+ Please keep in mind that users who are already logged-in are kicked out of ownCloud instantly.
+*/
"maintenance" => false,
"apps_paths" => array(
diff --git a/core/css/styles.css b/core/css/styles.css
index 868829b1c58..15eae529b45 100644
--- a/core/css/styles.css
+++ b/core/css/styles.css
@@ -122,7 +122,8 @@ input[type="submit"] img, input[type="button"] img, button img, .button img { cu
input:disabled, input:disabled:hover, input:disabled:focus,
button:disabled, button:disabled:hover, button:disabled:focus,
.button:disabled, .button:disabled:hover, .button:disabled:focus,
-a.disabled, a.disabled:hover, a.disabled:focus {
+a.disabled, a.disabled:hover, a.disabled:focus,
+textarea:disabled {
background-color: rgba(230,230,230,.9);
color: #999;
cursor: default;
diff --git a/core/l10n/uz.php b/core/l10n/uz.php
new file mode 100644
index 00000000000..dbedde7e637
--- /dev/null
+++ b/core/l10n/uz.php
@@ -0,0 +1,9 @@
+ array(""),
+"_%n hour ago_::_%n hours ago_" => array(""),
+"_%n day ago_::_%n days ago_" => array(""),
+"_%n month ago_::_%n months ago_" => array(""),
+"_{count} file conflict_::_{count} file conflicts_" => array("")
+);
+$PLURAL_FORMS = "nplurals=1; plural=0;";
diff --git a/l10n/ach/user_ldap.po b/l10n/ach/user_ldap.po
index 274ac49a746..1c7d4671450 100644
--- a/l10n/ach/user_ldap.po
+++ b/l10n/ach/user_ldap.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-03 12:38-0500\n"
-"PO-Revision-Date: 2013-11-03 17:39+0000\n"
+"POT-Creation-Date: 2013-11-09 01:44-0500\n"
+"PO-Revision-Date: 2013-11-09 06:44+0000\n"
"Last-Translator: I Robot
\n"
"Language-Team: Acoli (http://www.transifex.com/projects/p/owncloud/language/ach/)\n"
"MIME-Version: 1.0\n"
@@ -136,6 +136,10 @@ msgstr ""
msgid "Could not find the desired feature"
msgstr ""
+#: templates/part.settingcontrols.php:2
+msgid "Save"
+msgstr ""
+
#: templates/part.settingcontrols.php:4
msgid "Test Configuration"
msgstr ""
diff --git a/l10n/ady/user_ldap.po b/l10n/ady/user_ldap.po
index 142465bc2ef..6ff1c40794b 100644
--- a/l10n/ady/user_ldap.po
+++ b/l10n/ady/user_ldap.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-03 12:38-0500\n"
-"PO-Revision-Date: 2013-11-03 17:39+0000\n"
+"POT-Creation-Date: 2013-11-09 01:44-0500\n"
+"PO-Revision-Date: 2013-11-09 06:44+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Adyghe (http://www.transifex.com/projects/p/owncloud/language/ady/)\n"
"MIME-Version: 1.0\n"
@@ -136,6 +136,10 @@ msgstr ""
msgid "Could not find the desired feature"
msgstr ""
+#: templates/part.settingcontrols.php:2
+msgid "Save"
+msgstr ""
+
#: templates/part.settingcontrols.php:4
msgid "Test Configuration"
msgstr ""
diff --git a/l10n/af/user_ldap.po b/l10n/af/user_ldap.po
index eaf3000080f..6119a9b5c57 100644
--- a/l10n/af/user_ldap.po
+++ b/l10n/af/user_ldap.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-03 12:38-0500\n"
-"PO-Revision-Date: 2013-11-03 17:39+0000\n"
+"POT-Creation-Date: 2013-11-09 01:44-0500\n"
+"PO-Revision-Date: 2013-11-09 06:44+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Afrikaans (http://www.transifex.com/projects/p/owncloud/language/af/)\n"
"MIME-Version: 1.0\n"
@@ -136,6 +136,10 @@ msgstr ""
msgid "Could not find the desired feature"
msgstr ""
+#: templates/part.settingcontrols.php:2
+msgid "Save"
+msgstr ""
+
#: templates/part.settingcontrols.php:4
msgid "Test Configuration"
msgstr ""
diff --git a/l10n/af_ZA/core.po b/l10n/af_ZA/core.po
index 4eb90f4d2c4..c92f20bca2c 100644
--- a/l10n/af_ZA/core.po
+++ b/l10n/af_ZA/core.po
@@ -6,9 +6,9 @@
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
-"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-10-30 03:32-0400\n"
-"PO-Revision-Date: 2013-10-30 07:32+0000\n"
+"Report-Msgid-Bugs-To: translations@owncloud.org\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:11+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"
@@ -276,12 +276,12 @@ msgstr ""
msgid "Share"
msgstr ""
-#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:690
-#: js/share.js:702
+#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:692
+#: js/share.js:704
msgid "Error"
msgstr ""
-#: js/share.js:160 js/share.js:730
+#: js/share.js:160 js/share.js:732
msgid "Error while sharing"
msgstr ""
@@ -337,79 +337,79 @@ msgstr ""
msgid "Expiration date"
msgstr ""
-#: js/share.js:272
+#: js/share.js:274
msgid "Share via email:"
msgstr ""
-#: js/share.js:275
+#: js/share.js:277
msgid "No people found"
msgstr ""
-#: js/share.js:305 js/share.js:342
+#: js/share.js:307 js/share.js:344
msgid "group"
msgstr ""
-#: js/share.js:316
+#: js/share.js:318
msgid "Resharing is not allowed"
msgstr ""
-#: js/share.js:358
+#: js/share.js:360
msgid "Shared in {item} with {user}"
msgstr ""
-#: js/share.js:380
+#: js/share.js:382
msgid "Unshare"
msgstr ""
-#: js/share.js:388
+#: js/share.js:390
msgid "notify by email"
msgstr ""
-#: js/share.js:391
+#: js/share.js:393
msgid "can edit"
msgstr ""
-#: js/share.js:393
+#: js/share.js:395
msgid "access control"
msgstr ""
-#: js/share.js:396
+#: js/share.js:398
msgid "create"
msgstr ""
-#: js/share.js:399
+#: js/share.js:401
msgid "update"
msgstr ""
-#: js/share.js:402
+#: js/share.js:404
msgid "delete"
msgstr ""
-#: js/share.js:405
+#: js/share.js:407
msgid "share"
msgstr ""
-#: js/share.js:447 js/share.js:677
+#: js/share.js:449 js/share.js:679
msgid "Password protected"
msgstr ""
-#: js/share.js:690
+#: js/share.js:692
msgid "Error unsetting expiration date"
msgstr ""
-#: js/share.js:702
+#: js/share.js:704
msgid "Error setting expiration date"
msgstr ""
-#: js/share.js:717
+#: js/share.js:719
msgid "Sending ..."
msgstr ""
-#: js/share.js:728
+#: js/share.js:730
msgid "Email sent"
msgstr ""
-#: js/share.js:752
+#: js/share.js:754
msgid "Warning"
msgstr ""
diff --git a/l10n/af_ZA/files_sharing.po b/l10n/af_ZA/files_sharing.po
index e06c8e400f9..f3d58c417d3 100644
--- a/l10n/af_ZA/files_sharing.po
+++ b/l10n/af_ZA/files_sharing.po
@@ -6,9 +6,9 @@
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
-"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-10-29 07:28-0400\n"
-"PO-Revision-Date: 2013-10-28 10:45+0000\n"
+"Report-Msgid-Bugs-To: translations@owncloud.org\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+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/settings.po b/l10n/af_ZA/settings.po
index 16e4b2587e7..372aee8fe6e 100644
--- a/l10n/af_ZA/settings.po
+++ b/l10n/af_ZA/settings.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-06 21:43-0500\n"
-"PO-Revision-Date: 2013-11-07 02:43+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+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/user_ldap.po b/l10n/af_ZA/user_ldap.po
index b34871a5753..828651b2d6d 100644
--- a/l10n/af_ZA/user_ldap.po
+++ b/l10n/af_ZA/user_ldap.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-03 12:38-0500\n"
-"PO-Revision-Date: 2013-11-03 17:39+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+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"
@@ -136,6 +136,10 @@ msgstr ""
msgid "Could not find the desired feature"
msgstr ""
+#: templates/part.settingcontrols.php:2
+msgid "Save"
+msgstr ""
+
#: templates/part.settingcontrols.php:4
msgid "Test Configuration"
msgstr ""
diff --git a/l10n/ar/core.po b/l10n/ar/core.po
index 11e89311ad3..20a1a34e052 100644
--- a/l10n/ar/core.po
+++ b/l10n/ar/core.po
@@ -7,9 +7,9 @@
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
-"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-10-30 03:32-0400\n"
-"PO-Revision-Date: 2013-10-30 07:32+0000\n"
+"Report-Msgid-Bugs-To: translations@owncloud.org\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:11+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"
@@ -297,12 +297,12 @@ msgstr "مشارك"
msgid "Share"
msgstr "شارك"
-#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:690
-#: js/share.js:702
+#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:692
+#: js/share.js:704
msgid "Error"
msgstr "خطأ"
-#: js/share.js:160 js/share.js:730
+#: js/share.js:160 js/share.js:732
msgid "Error while sharing"
msgstr "حصل خطأ عند عملية المشاركة"
@@ -358,79 +358,79 @@ msgstr "تعيين تاريخ إنتهاء الصلاحية"
msgid "Expiration date"
msgstr "تاريخ إنتهاء الصلاحية"
-#: js/share.js:272
+#: js/share.js:274
msgid "Share via email:"
msgstr "مشاركة عبر البريد الإلكتروني:"
-#: js/share.js:275
+#: js/share.js:277
msgid "No people found"
msgstr "لم يتم العثور على أي شخص"
-#: js/share.js:305 js/share.js:342
+#: js/share.js:307 js/share.js:344
msgid "group"
msgstr "مجموعة"
-#: js/share.js:316
+#: js/share.js:318
msgid "Resharing is not allowed"
msgstr "لا يسمح بعملية إعادة المشاركة"
-#: js/share.js:358
+#: js/share.js:360
msgid "Shared in {item} with {user}"
msgstr "شورك في {item} مع {user}"
-#: js/share.js:380
+#: js/share.js:382
msgid "Unshare"
msgstr "إلغاء مشاركة"
-#: js/share.js:388
+#: js/share.js:390
msgid "notify by email"
msgstr ""
-#: js/share.js:391
+#: js/share.js:393
msgid "can edit"
msgstr "التحرير مسموح"
-#: js/share.js:393
+#: js/share.js:395
msgid "access control"
msgstr "ضبط الوصول"
-#: js/share.js:396
+#: js/share.js:398
msgid "create"
msgstr "إنشاء"
-#: js/share.js:399
+#: js/share.js:401
msgid "update"
msgstr "تحديث"
-#: js/share.js:402
+#: js/share.js:404
msgid "delete"
msgstr "حذف"
-#: js/share.js:405
+#: js/share.js:407
msgid "share"
msgstr "مشاركة"
-#: js/share.js:447 js/share.js:677
+#: js/share.js:449 js/share.js:679
msgid "Password protected"
msgstr "محمي بكلمة السر"
-#: js/share.js:690
+#: js/share.js:692
msgid "Error unsetting expiration date"
msgstr "حصل خطأ عند عملية إزالة تاريخ إنتهاء الصلاحية"
-#: js/share.js:702
+#: js/share.js:704
msgid "Error setting expiration date"
msgstr "حصل خطأ عند عملية تعيين تاريخ إنتهاء الصلاحية"
-#: js/share.js:717
+#: js/share.js:719
msgid "Sending ..."
msgstr "جاري الارسال ..."
-#: js/share.js:728
+#: js/share.js:730
msgid "Email sent"
msgstr "تم ارسال البريد الالكتروني"
-#: js/share.js:752
+#: js/share.js:754
msgid "Warning"
msgstr "تحذير"
diff --git a/l10n/ar/files.po b/l10n/ar/files.po
index 2bb2698d042..614f7227e56 100644
--- a/l10n/ar/files.po
+++ b/l10n/ar/files.po
@@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-03 12:38-0500\n"
-"PO-Revision-Date: 2013-11-03 17:38+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-09 07:01+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n"
"MIME-Version: 1.0\n"
@@ -29,7 +29,7 @@ msgstr "فشل في نقل الملف %s - يوجد ملف بنفس هذا ال
msgid "Could not move %s"
msgstr "فشل في نقل %s"
-#: ajax/newfile.php:56 js/files.js:27
+#: ajax/newfile.php:56 js/files.js:74
msgid "File name cannot be empty."
msgstr "اسم الملف لا يجوز أن يكون فارغا"
@@ -53,7 +53,7 @@ msgstr ""
msgid "Error while downloading %s to %s"
msgstr ""
-#: ajax/newfile.php:127
+#: ajax/newfile.php:128
msgid "Error when creating the file"
msgstr ""
@@ -116,15 +116,15 @@ msgstr "خطأ في الكتابة على القرص الصلب"
msgid "Not enough storage available"
msgstr "لا يوجد مساحة تخزينية كافية"
-#: ajax/upload.php:127 ajax/upload.php:153
+#: ajax/upload.php:127 ajax/upload.php:154
msgid "Upload failed. Could not get file info."
msgstr "فشلت عملية الرفع. تعذر الحصول على معلومات الملف."
-#: ajax/upload.php:143
+#: ajax/upload.php:144
msgid "Upload failed. Could not find uploaded file"
msgstr "*فشلت علمية الرفع. تعذر إيجاد الملف الذي تم رفعه.\n*فشلت علمية التحميل. تعذر إيجاد الملف الذي تم تحميله."
-#: ajax/upload.php:170
+#: ajax/upload.php:172
msgid "Invalid directory."
msgstr "مسار غير صحيح."
@@ -144,24 +144,24 @@ msgstr "لا توجد مساحة كافية"
msgid "Upload cancelled."
msgstr "تم إلغاء عملية رفع الملفات ."
-#: js/file-upload.js:345
+#: js/file-upload.js:344
msgid "Could not get result from server."
msgstr "تعذر الحصول على نتيجة من الخادم"
-#: js/file-upload.js:437
+#: js/file-upload.js:436
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr "عملية رفع الملفات قيد التنفيذ. اغلاق الصفحة سوف يلغي عملية رفع الملفات."
-#: js/file-upload.js:520
+#: js/file-upload.js:519
msgid "URL cannot be empty"
msgstr ""
-#: js/file-upload.js:524 js/filelist.js:364
+#: js/file-upload.js:523 js/filelist.js:371
msgid "In the home folder 'Shared' is a reserved filename"
msgstr ""
-#: js/file-upload.js:526 js/filelist.js:366
+#: js/file-upload.js:525 js/filelist.js:373
msgid "{new_name} already exists"
msgstr "{new_name} موجود مسبقا"
@@ -185,23 +185,23 @@ msgstr "حذف بشكل دائم"
msgid "Rename"
msgstr "إعادة تسميه"
-#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:854
+#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:857
msgid "Pending"
msgstr "قيد الانتظار"
-#: js/filelist.js:392
+#: js/filelist.js:399
msgid "Could not rename file"
msgstr ""
-#: js/filelist.js:511
+#: js/filelist.js:518
msgid "replaced {new_name} with {old_name}"
msgstr "استبدل {new_name} بـ {old_name}"
-#: js/filelist.js:511
+#: js/filelist.js:518
msgid "undo"
msgstr "تراجع"
-#: js/filelist.js:582 js/filelist.js:649 js/files.js:587
+#: js/filelist.js:578 js/filelist.js:652 js/files.js:631
msgid "%n folder"
msgid_plural "%n folders"
msgstr[0] "لا يوجد مجلدات %n"
@@ -211,7 +211,7 @@ msgstr[3] "عدد قليل من مجلدات %n"
msgstr[4] "عدد كبير من مجلدات %n"
msgstr[5] "مجلدات %n"
-#: js/filelist.js:583 js/filelist.js:650 js/files.js:593
+#: js/filelist.js:579 js/filelist.js:653 js/files.js:637
msgid "%n file"
msgid_plural "%n files"
msgstr[0] "لا يوجد ملفات %n"
@@ -221,11 +221,11 @@ msgstr[3] "قليل من ملفات %n"
msgstr[4] "الكثير من ملفات %n"
msgstr[5] " ملفات %n"
-#: js/filelist.js:590
+#: js/filelist.js:586
msgid "{dirs} and {files}"
msgstr "{dirs} و {files}"
-#: js/filelist.js:793 js/filelist.js:831
+#: js/filelist.js:796 js/filelist.js:834
msgid "Uploading %n file"
msgid_plural "Uploading %n files"
msgstr[0] "لا يوجد ملفات %n لتحميلها"
@@ -235,66 +235,66 @@ msgstr[3] "يتم تحميل عدد قليل من ملفات %n"
msgstr[4] "يتم تحميل عدد كبير من ملفات %n"
msgstr[5] "يتم تحميل ملفات %n"
-#: js/files.js:25
+#: js/files.js:72
msgid "'.' is an invalid file name."
msgstr "\".\" اسم ملف غير صحيح."
-#: js/files.js:34
+#: js/files.js:81
msgid ""
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not "
"allowed."
msgstr "اسم غير صحيح , الرموز '\\', '/', '<', '>', ':', '\"', '|', '?' و \"*\" غير مسموح استخدامها"
-#: js/files.js:46
+#: js/files.js:93
msgid "Your storage is full, files can not be updated or synced anymore!"
msgstr "مساحتك التخزينية ممتلئة, لا يمكم تحديث ملفاتك أو مزامنتها بعد الآن !"
-#: js/files.js:50
+#: js/files.js:97
msgid "Your storage is almost full ({usedSpacePercent}%)"
msgstr "مساحتك التخزينية امتلأت تقريبا "
-#: js/files.js:63
+#: js/files.js:110
msgid ""
"Encryption App is enabled but your keys are not initialized, please log-out "
"and log-in again"
msgstr "تم تمكين تشفير البرامج لكن لم يتم تهيئة المفاتيح لذا يرجى تسجيل الخروج ثم تسجيل الدخول مرة آخرى."
-#: js/files.js:67
+#: js/files.js:114
msgid ""
"Invalid private key for Encryption App. Please update your private key "
"password in your personal settings to recover access to your encrypted "
"files."
msgstr "المفتاح الخاص بتشفير التطبيقات غير صالح. يرجى تحديث كلمة السر الخاصة بالمفتاح الخاص من الإعدادت الشخصية حتى تتمكن من الوصول للملفات المشفرة."
-#: js/files.js:71
+#: js/files.js:118
msgid ""
"Encryption was disabled but your files are still encrypted. Please go to "
"your personal settings to decrypt your files."
msgstr "تم تعطيل التشفير لكن ملفاتك لا تزال مشفرة. فضلا اذهب إلى الإعدادات الشخصية لإزالة التشفير عن ملفاتك."
-#: js/files.js:302
+#: js/files.js:349
msgid ""
"Your download is being prepared. This might take some time if the files are "
"big."
msgstr "جاري تجهيز عملية التحميل. قد تستغرق بعض الوقت اذا كان حجم الملفات كبير."
-#: js/files.js:514 js/files.js:552
+#: js/files.js:558 js/files.js:596
msgid "Error moving file"
msgstr "حدث خطأ أثناء نقل الملف"
-#: js/files.js:514 js/files.js:552
+#: js/files.js:558 js/files.js:596
msgid "Error"
msgstr "خطأ"
-#: js/files.js:569 templates/index.php:56
+#: js/files.js:613 templates/index.php:56
msgid "Name"
msgstr "اسم"
-#: js/files.js:570 templates/index.php:68
+#: js/files.js:614 templates/index.php:68
msgid "Size"
msgstr "حجم"
-#: js/files.js:571 templates/index.php:70
+#: js/files.js:615 templates/index.php:70
msgid "Modified"
msgstr "معدل"
diff --git a/l10n/ar/files_sharing.po b/l10n/ar/files_sharing.po
index ba5ccc8329b..90313454094 100644
--- a/l10n/ar/files_sharing.po
+++ b/l10n/ar/files_sharing.po
@@ -6,9 +6,9 @@
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
-"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-10-29 07:28-0400\n"
-"PO-Revision-Date: 2013-10-28 10:45+0000\n"
+"Report-Msgid-Bugs-To: translations@owncloud.org\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+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/settings.po b/l10n/ar/settings.po
index c65f69ab3db..671786c9996 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: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-06 21:43-0500\n"
-"PO-Revision-Date: 2013-11-07 02:43+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+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 6af23ad67e4..5d6bd33032f 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: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-03 12:38-0500\n"
-"PO-Revision-Date: 2013-11-03 17:39+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+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"
@@ -144,6 +144,10 @@ msgstr ""
msgid "Could not find the desired feature"
msgstr ""
+#: templates/part.settingcontrols.php:2
+msgid "Save"
+msgstr "حفظ"
+
#: templates/part.settingcontrols.php:4
msgid "Test Configuration"
msgstr ""
diff --git a/l10n/be/user_ldap.po b/l10n/be/user_ldap.po
index 8843c8c3d24..261ccfdefc3 100644
--- a/l10n/be/user_ldap.po
+++ b/l10n/be/user_ldap.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-03 12:38-0500\n"
-"PO-Revision-Date: 2013-11-03 17:39+0000\n"
+"POT-Creation-Date: 2013-11-09 01:44-0500\n"
+"PO-Revision-Date: 2013-11-09 06:44+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n"
"MIME-Version: 1.0\n"
@@ -140,6 +140,10 @@ msgstr ""
msgid "Could not find the desired feature"
msgstr ""
+#: templates/part.settingcontrols.php:2
+msgid "Save"
+msgstr ""
+
#: templates/part.settingcontrols.php:4
msgid "Test Configuration"
msgstr ""
diff --git a/l10n/bg_BG/core.po b/l10n/bg_BG/core.po
index d65dbc63667..299128ca220 100644
--- a/l10n/bg_BG/core.po
+++ b/l10n/bg_BG/core.po
@@ -6,9 +6,9 @@
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
-"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-10-30 03:32-0400\n"
-"PO-Revision-Date: 2013-10-30 07:32+0000\n"
+"Report-Msgid-Bugs-To: translations@owncloud.org\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:11+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"
@@ -276,12 +276,12 @@ msgstr ""
msgid "Share"
msgstr "Споделяне"
-#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:690
-#: js/share.js:702
+#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:692
+#: js/share.js:704
msgid "Error"
msgstr "Грешка"
-#: js/share.js:160 js/share.js:730
+#: js/share.js:160 js/share.js:732
msgid "Error while sharing"
msgstr ""
@@ -337,79 +337,79 @@ msgstr ""
msgid "Expiration date"
msgstr ""
-#: js/share.js:272
+#: js/share.js:274
msgid "Share via email:"
msgstr ""
-#: js/share.js:275
+#: js/share.js:277
msgid "No people found"
msgstr ""
-#: js/share.js:305 js/share.js:342
+#: js/share.js:307 js/share.js:344
msgid "group"
msgstr ""
-#: js/share.js:316
+#: js/share.js:318
msgid "Resharing is not allowed"
msgstr ""
-#: js/share.js:358
+#: js/share.js:360
msgid "Shared in {item} with {user}"
msgstr ""
-#: js/share.js:380
+#: js/share.js:382
msgid "Unshare"
msgstr ""
-#: js/share.js:388
+#: js/share.js:390
msgid "notify by email"
msgstr ""
-#: js/share.js:391
+#: js/share.js:393
msgid "can edit"
msgstr ""
-#: js/share.js:393
+#: js/share.js:395
msgid "access control"
msgstr ""
-#: js/share.js:396
+#: js/share.js:398
msgid "create"
msgstr "създаване"
-#: js/share.js:399
+#: js/share.js:401
msgid "update"
msgstr ""
-#: js/share.js:402
+#: js/share.js:404
msgid "delete"
msgstr ""
-#: js/share.js:405
+#: js/share.js:407
msgid "share"
msgstr ""
-#: js/share.js:447 js/share.js:677
+#: js/share.js:449 js/share.js:679
msgid "Password protected"
msgstr ""
-#: js/share.js:690
+#: js/share.js:692
msgid "Error unsetting expiration date"
msgstr ""
-#: js/share.js:702
+#: js/share.js:704
msgid "Error setting expiration date"
msgstr ""
-#: js/share.js:717
+#: js/share.js:719
msgid "Sending ..."
msgstr ""
-#: js/share.js:728
+#: js/share.js:730
msgid "Email sent"
msgstr ""
-#: js/share.js:752
+#: js/share.js:754
msgid "Warning"
msgstr "Внимание"
diff --git a/l10n/bg_BG/files.po b/l10n/bg_BG/files.po
index d55f8e3ea72..9b37fc40bfd 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: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-03 12:38-0500\n"
-"PO-Revision-Date: 2013-11-03 17:38+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-09 07:01+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n"
"MIME-Version: 1.0\n"
@@ -27,7 +27,7 @@ msgstr ""
msgid "Could not move %s"
msgstr ""
-#: ajax/newfile.php:56 js/files.js:27
+#: ajax/newfile.php:56 js/files.js:74
msgid "File name cannot be empty."
msgstr ""
@@ -51,7 +51,7 @@ msgstr ""
msgid "Error while downloading %s to %s"
msgstr ""
-#: ajax/newfile.php:127
+#: ajax/newfile.php:128
msgid "Error when creating the file"
msgstr ""
@@ -114,15 +114,15 @@ msgstr "Възникна проблем при запис в диска"
msgid "Not enough storage available"
msgstr ""
-#: ajax/upload.php:127 ajax/upload.php:153
+#: ajax/upload.php:127 ajax/upload.php:154
msgid "Upload failed. Could not get file info."
msgstr ""
-#: ajax/upload.php:143
+#: ajax/upload.php:144
msgid "Upload failed. Could not find uploaded file"
msgstr ""
-#: ajax/upload.php:170
+#: ajax/upload.php:172
msgid "Invalid directory."
msgstr "Невалидна директория."
@@ -142,24 +142,24 @@ msgstr ""
msgid "Upload cancelled."
msgstr "Качването е спряно."
-#: js/file-upload.js:345
+#: js/file-upload.js:344
msgid "Could not get result from server."
msgstr ""
-#: js/file-upload.js:437
+#: js/file-upload.js:436
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr ""
-#: js/file-upload.js:520
+#: js/file-upload.js:519
msgid "URL cannot be empty"
msgstr ""
-#: js/file-upload.js:524 js/filelist.js:364
+#: js/file-upload.js:523 js/filelist.js:371
msgid "In the home folder 'Shared' is a reserved filename"
msgstr ""
-#: js/file-upload.js:526 js/filelist.js:366
+#: js/file-upload.js:525 js/filelist.js:373
msgid "{new_name} already exists"
msgstr ""
@@ -183,104 +183,104 @@ msgstr "Изтриване завинаги"
msgid "Rename"
msgstr "Преименуване"
-#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:854
+#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:857
msgid "Pending"
msgstr "Чакащо"
-#: js/filelist.js:392
+#: js/filelist.js:399
msgid "Could not rename file"
msgstr ""
-#: js/filelist.js:511
+#: js/filelist.js:518
msgid "replaced {new_name} with {old_name}"
msgstr ""
-#: js/filelist.js:511
+#: js/filelist.js:518
msgid "undo"
msgstr "възтановяване"
-#: js/filelist.js:582 js/filelist.js:649 js/files.js:587
+#: js/filelist.js:578 js/filelist.js:652 js/files.js:631
msgid "%n folder"
msgid_plural "%n folders"
msgstr[0] ""
msgstr[1] ""
-#: js/filelist.js:583 js/filelist.js:650 js/files.js:593
+#: js/filelist.js:579 js/filelist.js:653 js/files.js:637
msgid "%n file"
msgid_plural "%n files"
msgstr[0] ""
msgstr[1] ""
-#: js/filelist.js:590
+#: js/filelist.js:586
msgid "{dirs} and {files}"
msgstr ""
-#: js/filelist.js:793 js/filelist.js:831
+#: js/filelist.js:796 js/filelist.js:834
msgid "Uploading %n file"
msgid_plural "Uploading %n files"
msgstr[0] ""
msgstr[1] ""
-#: js/files.js:25
+#: js/files.js:72
msgid "'.' is an invalid file name."
msgstr ""
-#: js/files.js:34
+#: js/files.js:81
msgid ""
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not "
"allowed."
msgstr ""
-#: js/files.js:46
+#: js/files.js:93
msgid "Your storage is full, files can not be updated or synced anymore!"
msgstr ""
-#: js/files.js:50
+#: js/files.js:97
msgid "Your storage is almost full ({usedSpacePercent}%)"
msgstr ""
-#: js/files.js:63
+#: js/files.js:110
msgid ""
"Encryption App is enabled but your keys are not initialized, please log-out "
"and log-in again"
msgstr ""
-#: js/files.js:67
+#: js/files.js:114
msgid ""
"Invalid private key for Encryption App. Please update your private key "
"password in your personal settings to recover access to your encrypted "
"files."
msgstr ""
-#: js/files.js:71
+#: js/files.js:118
msgid ""
"Encryption was disabled but your files are still encrypted. Please go to "
"your personal settings to decrypt your files."
msgstr ""
-#: js/files.js:302
+#: js/files.js:349
msgid ""
"Your download is being prepared. This might take some time if the files are "
"big."
msgstr ""
-#: js/files.js:514 js/files.js:552
+#: js/files.js:558 js/files.js:596
msgid "Error moving file"
msgstr ""
-#: js/files.js:514 js/files.js:552
+#: js/files.js:558 js/files.js:596
msgid "Error"
msgstr "Грешка"
-#: js/files.js:569 templates/index.php:56
+#: js/files.js:613 templates/index.php:56
msgid "Name"
msgstr "Име"
-#: js/files.js:570 templates/index.php:68
+#: js/files.js:614 templates/index.php:68
msgid "Size"
msgstr "Размер"
-#: js/files.js:571 templates/index.php:70
+#: js/files.js:615 templates/index.php:70
msgid "Modified"
msgstr "Променено"
diff --git a/l10n/bg_BG/files_sharing.po b/l10n/bg_BG/files_sharing.po
index de1d0c5b82c..1d89afd535b 100644
--- a/l10n/bg_BG/files_sharing.po
+++ b/l10n/bg_BG/files_sharing.po
@@ -6,9 +6,9 @@
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
-"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-10-29 07:28-0400\n"
-"PO-Revision-Date: 2013-10-28 10:45+0000\n"
+"Report-Msgid-Bugs-To: translations@owncloud.org\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+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/settings.po b/l10n/bg_BG/settings.po
index f7dcdb80578..c5747c1da5a 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: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-06 21:43-0500\n"
-"PO-Revision-Date: 2013-11-07 02:43+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+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 3a090f5c771..ea02d149575 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: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-03 12:38-0500\n"
-"PO-Revision-Date: 2013-11-03 17:39+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+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"
@@ -136,6 +136,10 @@ msgstr ""
msgid "Could not find the desired feature"
msgstr ""
+#: templates/part.settingcontrols.php:2
+msgid "Save"
+msgstr "Запис"
+
#: templates/part.settingcontrols.php:4
msgid "Test Configuration"
msgstr ""
diff --git a/l10n/bn_BD/core.po b/l10n/bn_BD/core.po
index a6674c96bc5..b9b9e08447b 100644
--- a/l10n/bn_BD/core.po
+++ b/l10n/bn_BD/core.po
@@ -6,9 +6,9 @@
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
-"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-10-30 03:32-0400\n"
-"PO-Revision-Date: 2013-10-30 07:32+0000\n"
+"Report-Msgid-Bugs-To: translations@owncloud.org\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:11+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"
@@ -276,12 +276,12 @@ msgstr "ভাগাভাগিকৃত"
msgid "Share"
msgstr "ভাগাভাগি কর"
-#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:690
-#: js/share.js:702
+#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:692
+#: js/share.js:704
msgid "Error"
msgstr "সমস্যা"
-#: js/share.js:160 js/share.js:730
+#: js/share.js:160 js/share.js:732
msgid "Error while sharing"
msgstr "ভাগাভাগি করতে সমস্যা দেখা দিয়েছে "
@@ -337,79 +337,79 @@ msgstr "মেয়াদোত্তীর্ণ হওয়ার তারিখ
msgid "Expiration date"
msgstr "মেয়াদোত্তীর্ণ হওয়ার তারিখ"
-#: js/share.js:272
+#: js/share.js:274
msgid "Share via email:"
msgstr "ই-মেইলের মাধ্যমে ভাগাভাগি করুনঃ"
-#: js/share.js:275
+#: js/share.js:277
msgid "No people found"
msgstr "কোন ব্যক্তি খুঁজে পাওয়া গেল না"
-#: js/share.js:305 js/share.js:342
+#: js/share.js:307 js/share.js:344
msgid "group"
msgstr ""
-#: js/share.js:316
+#: js/share.js:318
msgid "Resharing is not allowed"
msgstr "পূনঃরায় ভাগাভাগি অনুমোদিত নয়"
-#: js/share.js:358
+#: js/share.js:360
msgid "Shared in {item} with {user}"
msgstr "{user} এর সাথে {item} ভাগাভাগি করা হয়েছে"
-#: js/share.js:380
+#: js/share.js:382
msgid "Unshare"
msgstr "ভাগাভাগি বাতিল "
-#: js/share.js:388
+#: js/share.js:390
msgid "notify by email"
msgstr ""
-#: js/share.js:391
+#: js/share.js:393
msgid "can edit"
msgstr "সম্পাদনা করতে পারবেন"
-#: js/share.js:393
+#: js/share.js:395
msgid "access control"
msgstr "অধিগম্যতা নিয়ন্ত্রণ"
-#: js/share.js:396
+#: js/share.js:398
msgid "create"
msgstr "তৈরী করুন"
-#: js/share.js:399
+#: js/share.js:401
msgid "update"
msgstr "পরিবর্ধন কর"
-#: js/share.js:402
+#: js/share.js:404
msgid "delete"
msgstr "মুছে ফেল"
-#: js/share.js:405
+#: js/share.js:407
msgid "share"
msgstr "ভাগাভাগি কর"
-#: js/share.js:447 js/share.js:677
+#: js/share.js:449 js/share.js:679
msgid "Password protected"
msgstr "কূটশব্দদ্বারা সুরক্ষিত"
-#: js/share.js:690
+#: js/share.js:692
msgid "Error unsetting expiration date"
msgstr "মেয়াদোত্তীর্ণ হওয়ার তারিখ নির্ধারণ বাতিল করতে সমস্যা দেখা দিয়েছে"
-#: js/share.js:702
+#: js/share.js:704
msgid "Error setting expiration date"
msgstr "মেয়াদোত্তীর্ণ হওয়ার তারিখ নির্ধারণ করতে সমস্যা দেখা দিয়েছে"
-#: js/share.js:717
+#: js/share.js:719
msgid "Sending ..."
msgstr "পাঠানো হচ্ছে......"
-#: js/share.js:728
+#: js/share.js:730
msgid "Email sent"
msgstr "ই-মেইল পাঠানো হয়েছে"
-#: js/share.js:752
+#: js/share.js:754
msgid "Warning"
msgstr "সতর্কবাণী"
diff --git a/l10n/bn_BD/files.po b/l10n/bn_BD/files.po
index 5265ee0e987..b90aed7e64e 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: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-03 12:38-0500\n"
-"PO-Revision-Date: 2013-11-03 17:38+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-09 07:01+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n"
"MIME-Version: 1.0\n"
@@ -27,7 +27,7 @@ msgstr "%s কে স্থানান্তর করা সম্ভব হ
msgid "Could not move %s"
msgstr "%s কে স্থানান্তর করা সম্ভব হলো না"
-#: ajax/newfile.php:56 js/files.js:27
+#: ajax/newfile.php:56 js/files.js:74
msgid "File name cannot be empty."
msgstr "ফাইলের নামটি ফাঁকা রাখা যাবে না।"
@@ -51,7 +51,7 @@ msgstr ""
msgid "Error while downloading %s to %s"
msgstr ""
-#: ajax/newfile.php:127
+#: ajax/newfile.php:128
msgid "Error when creating the file"
msgstr ""
@@ -114,15 +114,15 @@ msgstr "ডিস্কে লিখতে ব্যর্থ"
msgid "Not enough storage available"
msgstr ""
-#: ajax/upload.php:127 ajax/upload.php:153
+#: ajax/upload.php:127 ajax/upload.php:154
msgid "Upload failed. Could not get file info."
msgstr ""
-#: ajax/upload.php:143
+#: ajax/upload.php:144
msgid "Upload failed. Could not find uploaded file"
msgstr ""
-#: ajax/upload.php:170
+#: ajax/upload.php:172
msgid "Invalid directory."
msgstr "ভুল ডিরেক্টরি"
@@ -142,24 +142,24 @@ msgstr "যথেষ্ঠ পরিমাণ স্থান নেই"
msgid "Upload cancelled."
msgstr "আপলোড বাতিল করা হয়েছে।"
-#: js/file-upload.js:345
+#: js/file-upload.js:344
msgid "Could not get result from server."
msgstr ""
-#: js/file-upload.js:437
+#: js/file-upload.js:436
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr "ফাইল আপলোড চলমান। এই পৃষ্ঠা পরিত্যাগ করলে আপলোড বাতিল করা হবে।"
-#: js/file-upload.js:520
+#: js/file-upload.js:519
msgid "URL cannot be empty"
msgstr ""
-#: js/file-upload.js:524 js/filelist.js:364
+#: js/file-upload.js:523 js/filelist.js:371
msgid "In the home folder 'Shared' is a reserved filename"
msgstr ""
-#: js/file-upload.js:526 js/filelist.js:366
+#: js/file-upload.js:525 js/filelist.js:373
msgid "{new_name} already exists"
msgstr "{new_name} টি বিদ্যমান"
@@ -183,104 +183,104 @@ msgstr ""
msgid "Rename"
msgstr "পূনঃনামকরণ"
-#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:854
+#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:857
msgid "Pending"
msgstr "মুলতুবি"
-#: js/filelist.js:392
+#: js/filelist.js:399
msgid "Could not rename file"
msgstr ""
-#: js/filelist.js:511
+#: js/filelist.js:518
msgid "replaced {new_name} with {old_name}"
msgstr "{new_name} কে {old_name} নামে প্রতিস্থাপন করা হয়েছে"
-#: js/filelist.js:511
+#: js/filelist.js:518
msgid "undo"
msgstr "ক্রিয়া প্রত্যাহার"
-#: js/filelist.js:582 js/filelist.js:649 js/files.js:587
+#: js/filelist.js:578 js/filelist.js:652 js/files.js:631
msgid "%n folder"
msgid_plural "%n folders"
msgstr[0] ""
msgstr[1] ""
-#: js/filelist.js:583 js/filelist.js:650 js/files.js:593
+#: js/filelist.js:579 js/filelist.js:653 js/files.js:637
msgid "%n file"
msgid_plural "%n files"
msgstr[0] ""
msgstr[1] ""
-#: js/filelist.js:590
+#: js/filelist.js:586
msgid "{dirs} and {files}"
msgstr ""
-#: js/filelist.js:793 js/filelist.js:831
+#: js/filelist.js:796 js/filelist.js:834
msgid "Uploading %n file"
msgid_plural "Uploading %n files"
msgstr[0] ""
msgstr[1] ""
-#: js/files.js:25
+#: js/files.js:72
msgid "'.' is an invalid file name."
msgstr "টি একটি অননুমোদিত নাম।"
-#: js/files.js:34
+#: js/files.js:81
msgid ""
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not "
"allowed."
msgstr "নামটি সঠিক নয়, '\\', '/', '<', '>', ':', '\"', '|', '?' এবং '*' অনুমোদিত নয়।"
-#: js/files.js:46
+#: js/files.js:93
msgid "Your storage is full, files can not be updated or synced anymore!"
msgstr ""
-#: js/files.js:50
+#: js/files.js:97
msgid "Your storage is almost full ({usedSpacePercent}%)"
msgstr ""
-#: js/files.js:63
+#: js/files.js:110
msgid ""
"Encryption App is enabled but your keys are not initialized, please log-out "
"and log-in again"
msgstr ""
-#: js/files.js:67
+#: js/files.js:114
msgid ""
"Invalid private key for Encryption App. Please update your private key "
"password in your personal settings to recover access to your encrypted "
"files."
msgstr ""
-#: js/files.js:71
+#: js/files.js:118
msgid ""
"Encryption was disabled but your files are still encrypted. Please go to "
"your personal settings to decrypt your files."
msgstr ""
-#: js/files.js:302
+#: js/files.js:349
msgid ""
"Your download is being prepared. This might take some time if the files are "
"big."
msgstr ""
-#: js/files.js:514 js/files.js:552
+#: js/files.js:558 js/files.js:596
msgid "Error moving file"
msgstr ""
-#: js/files.js:514 js/files.js:552
+#: js/files.js:558 js/files.js:596
msgid "Error"
msgstr "সমস্যা"
-#: js/files.js:569 templates/index.php:56
+#: js/files.js:613 templates/index.php:56
msgid "Name"
msgstr "রাম"
-#: js/files.js:570 templates/index.php:68
+#: js/files.js:614 templates/index.php:68
msgid "Size"
msgstr "আকার"
-#: js/files.js:571 templates/index.php:70
+#: js/files.js:615 templates/index.php:70
msgid "Modified"
msgstr "পরিবর্তিত"
diff --git a/l10n/bn_BD/files_sharing.po b/l10n/bn_BD/files_sharing.po
index 8ccc626d695..5fc1f14b509 100644
--- a/l10n/bn_BD/files_sharing.po
+++ b/l10n/bn_BD/files_sharing.po
@@ -6,9 +6,9 @@
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
-"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-10-29 07:28-0400\n"
-"PO-Revision-Date: 2013-10-28 10:45+0000\n"
+"Report-Msgid-Bugs-To: translations@owncloud.org\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+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/settings.po b/l10n/bn_BD/settings.po
index 3b0f2140399..e1b7ef5de44 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: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-06 21:43-0500\n"
-"PO-Revision-Date: 2013-11-07 02:43+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+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 ceea078cbbc..5407b9ce9e9 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: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-03 12:38-0500\n"
-"PO-Revision-Date: 2013-11-03 17:39+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+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"
@@ -136,6 +136,10 @@ msgstr ""
msgid "Could not find the desired feature"
msgstr ""
+#: templates/part.settingcontrols.php:2
+msgid "Save"
+msgstr "সংরক্ষণ"
+
#: templates/part.settingcontrols.php:4
msgid "Test Configuration"
msgstr ""
diff --git a/l10n/bs/files.po b/l10n/bs/files.po
index 0195359f19a..2a203e4a591 100644
--- a/l10n/bs/files.po
+++ b/l10n/bs/files.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-03 12:38-0500\n"
-"PO-Revision-Date: 2013-11-03 17:38+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-09 07:01+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n"
"MIME-Version: 1.0\n"
@@ -27,7 +27,7 @@ msgstr ""
msgid "Could not move %s"
msgstr ""
-#: ajax/newfile.php:56 js/files.js:27
+#: ajax/newfile.php:56 js/files.js:74
msgid "File name cannot be empty."
msgstr ""
@@ -51,7 +51,7 @@ msgstr ""
msgid "Error while downloading %s to %s"
msgstr ""
-#: ajax/newfile.php:127
+#: ajax/newfile.php:128
msgid "Error when creating the file"
msgstr ""
@@ -114,15 +114,15 @@ msgstr ""
msgid "Not enough storage available"
msgstr ""
-#: ajax/upload.php:127 ajax/upload.php:153
+#: ajax/upload.php:127 ajax/upload.php:154
msgid "Upload failed. Could not get file info."
msgstr ""
-#: ajax/upload.php:143
+#: ajax/upload.php:144
msgid "Upload failed. Could not find uploaded file"
msgstr ""
-#: ajax/upload.php:170
+#: ajax/upload.php:172
msgid "Invalid directory."
msgstr ""
@@ -142,24 +142,24 @@ msgstr ""
msgid "Upload cancelled."
msgstr ""
-#: js/file-upload.js:345
+#: js/file-upload.js:344
msgid "Could not get result from server."
msgstr ""
-#: js/file-upload.js:437
+#: js/file-upload.js:436
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr ""
-#: js/file-upload.js:520
+#: js/file-upload.js:519
msgid "URL cannot be empty"
msgstr ""
-#: js/file-upload.js:524 js/filelist.js:364
+#: js/file-upload.js:523 js/filelist.js:371
msgid "In the home folder 'Shared' is a reserved filename"
msgstr ""
-#: js/file-upload.js:526 js/filelist.js:366
+#: js/file-upload.js:525 js/filelist.js:373
msgid "{new_name} already exists"
msgstr ""
@@ -183,107 +183,107 @@ msgstr ""
msgid "Rename"
msgstr ""
-#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:854
+#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:857
msgid "Pending"
msgstr ""
-#: js/filelist.js:392
+#: js/filelist.js:399
msgid "Could not rename file"
msgstr ""
-#: js/filelist.js:511
+#: js/filelist.js:518
msgid "replaced {new_name} with {old_name}"
msgstr ""
-#: js/filelist.js:511
+#: js/filelist.js:518
msgid "undo"
msgstr ""
-#: js/filelist.js:582 js/filelist.js:649 js/files.js:587
+#: js/filelist.js:578 js/filelist.js:652 js/files.js:631
msgid "%n folder"
msgid_plural "%n folders"
msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: js/filelist.js:583 js/filelist.js:650 js/files.js:593
+#: js/filelist.js:579 js/filelist.js:653 js/files.js:637
msgid "%n file"
msgid_plural "%n files"
msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: js/filelist.js:590
+#: js/filelist.js:586
msgid "{dirs} and {files}"
msgstr ""
-#: js/filelist.js:793 js/filelist.js:831
+#: js/filelist.js:796 js/filelist.js:834
msgid "Uploading %n file"
msgid_plural "Uploading %n files"
msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: js/files.js:25
+#: js/files.js:72
msgid "'.' is an invalid file name."
msgstr ""
-#: js/files.js:34
+#: js/files.js:81
msgid ""
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not "
"allowed."
msgstr ""
-#: js/files.js:46
+#: js/files.js:93
msgid "Your storage is full, files can not be updated or synced anymore!"
msgstr ""
-#: js/files.js:50
+#: js/files.js:97
msgid "Your storage is almost full ({usedSpacePercent}%)"
msgstr ""
-#: js/files.js:63
+#: js/files.js:110
msgid ""
"Encryption App is enabled but your keys are not initialized, please log-out "
"and log-in again"
msgstr ""
-#: js/files.js:67
+#: js/files.js:114
msgid ""
"Invalid private key for Encryption App. Please update your private key "
"password in your personal settings to recover access to your encrypted "
"files."
msgstr ""
-#: js/files.js:71
+#: js/files.js:118
msgid ""
"Encryption was disabled but your files are still encrypted. Please go to "
"your personal settings to decrypt your files."
msgstr ""
-#: js/files.js:302
+#: js/files.js:349
msgid ""
"Your download is being prepared. This might take some time if the files are "
"big."
msgstr ""
-#: js/files.js:514 js/files.js:552
+#: js/files.js:558 js/files.js:596
msgid "Error moving file"
msgstr ""
-#: js/files.js:514 js/files.js:552
+#: js/files.js:558 js/files.js:596
msgid "Error"
msgstr ""
-#: js/files.js:569 templates/index.php:56
+#: js/files.js:613 templates/index.php:56
msgid "Name"
msgstr "Ime"
-#: js/files.js:570 templates/index.php:68
+#: js/files.js:614 templates/index.php:68
msgid "Size"
msgstr "Veličina"
-#: js/files.js:571 templates/index.php:70
+#: js/files.js:615 templates/index.php:70
msgid "Modified"
msgstr ""
diff --git a/l10n/bs/user_ldap.po b/l10n/bs/user_ldap.po
index d21e92fdc6a..2c68ec3e741 100644
--- a/l10n/bs/user_ldap.po
+++ b/l10n/bs/user_ldap.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-03 12:38-0500\n"
-"PO-Revision-Date: 2013-11-03 17:39+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-09 07:02+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"
@@ -138,6 +138,10 @@ msgstr ""
msgid "Could not find the desired feature"
msgstr ""
+#: templates/part.settingcontrols.php:2
+msgid "Save"
+msgstr "Spasi"
+
#: templates/part.settingcontrols.php:4
msgid "Test Configuration"
msgstr ""
diff --git a/l10n/ca/core.po b/l10n/ca/core.po
index 3558e66baa4..6506aee4899 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: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-03 12:38-0500\n"
-"PO-Revision-Date: 2013-10-31 13:50+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:11+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 e0f2567a9f9..fd1d27d535b 100644
--- a/l10n/ca/files.po
+++ b/l10n/ca/files.po
@@ -10,8 +10,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-06 21:43-0500\n"
-"PO-Revision-Date: 2013-11-04 10:10+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-09 07:01+0000\n"
"Last-Translator: rogerc\n"
"Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n"
"MIME-Version: 1.0\n"
@@ -145,32 +145,32 @@ msgstr "No hi ha prou espai disponible"
msgid "Upload cancelled."
msgstr "La pujada s'ha cancel·lat."
-#: js/file-upload.js:345
+#: js/file-upload.js:344
msgid "Could not get result from server."
msgstr "No hi ha resposta del servidor."
-#: js/file-upload.js:437
+#: js/file-upload.js:436
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr "Hi ha una pujada en curs. Si abandoneu la pàgina la pujada es cancel·larà."
-#: js/file-upload.js:520
+#: js/file-upload.js:519
msgid "URL cannot be empty"
msgstr "L'URL no pot ser buit"
-#: js/file-upload.js:524 js/filelist.js:371
+#: js/file-upload.js:523 js/filelist.js:371
msgid "In the home folder 'Shared' is a reserved filename"
msgstr "A la carpeta inici 'Compartit' és un nom de fitxer reservat"
-#: js/file-upload.js:526 js/filelist.js:373
+#: js/file-upload.js:525 js/filelist.js:373
msgid "{new_name} already exists"
msgstr "{new_name} ja existeix"
-#: js/file-upload.js:586
+#: js/file-upload.js:585
msgid "Could not create file"
msgstr "No s'ha pogut crear el fitxer"
-#: js/file-upload.js:602
+#: js/file-upload.js:601
msgid "Could not create folder"
msgstr "No s'ha pogut crear la carpeta"
diff --git a/l10n/ca/files_sharing.po b/l10n/ca/files_sharing.po
index c5663624eb6..d617e9703dd 100644
--- a/l10n/ca/files_sharing.po
+++ b/l10n/ca/files_sharing.po
@@ -7,9 +7,9 @@
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
-"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-10-29 07:28-0400\n"
-"PO-Revision-Date: 2013-10-28 11:30+0000\n"
+"Report-Msgid-Bugs-To: translations@owncloud.org\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+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/settings.po b/l10n/ca/settings.po
index 4ce60d88439..9473043f189 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: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-06 21:43-0500\n"
-"PO-Revision-Date: 2013-11-07 02:43+0000\n"
-"Last-Translator: I Robot \n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+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"
@@ -30,11 +30,11 @@ msgstr "Error d'autenticació"
#: ajax/changedisplayname.php:31
msgid "Your full name has been changed."
-msgstr ""
+msgstr "El vostre nom complet ha canviat."
#: ajax/changedisplayname.php:34
msgid "Unable to change full name"
-msgstr ""
+msgstr "No s'ha pogut canviar el nom complet"
#: ajax/creategroup.php:10
msgid "Group already exists"
@@ -507,7 +507,7 @@ msgstr "Canvia la contrasenya"
#: templates/personal.php:58 templates/users.php:88
msgid "Full Name"
-msgstr ""
+msgstr "Nom complet"
#: templates/personal.php:73
msgid "Email"
@@ -628,7 +628,7 @@ msgstr "Emmagatzemament"
#: templates/users.php:108
msgid "change full name"
-msgstr ""
+msgstr "canvia el nom complet"
#: templates/users.php:112
msgid "set new password"
diff --git a/l10n/ca/user_ldap.po b/l10n/ca/user_ldap.po
index 8701b4065ae..2a055e14e4f 100644
--- a/l10n/ca/user_ldap.po
+++ b/l10n/ca/user_ldap.po
@@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-06 21:43-0500\n"
-"PO-Revision-Date: 2013-11-04 10:10+0000\n"
-"Last-Translator: rogerc\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+0000\n"
+"Last-Translator: I Robot \n"
"Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -137,6 +137,10 @@ msgstr "Ordinador central no vàlid"
msgid "Could not find the desired feature"
msgstr "La característica desitjada no s'ha trobat"
+#: templates/part.settingcontrols.php:2
+msgid "Save"
+msgstr "Desa"
+
#: templates/part.settingcontrols.php:4
msgid "Test Configuration"
msgstr "Comprovació de la configuració"
diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po
index e2a54c11193..64a3c0038f5 100644
--- a/l10n/cs_CZ/core.po
+++ b/l10n/cs_CZ/core.po
@@ -13,8 +13,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-03 12:38-0500\n"
-"PO-Revision-Date: 2013-10-30 07:50+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:11+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.po b/l10n/cs_CZ/files.po
index 54b4ffebcb1..4bec85562cf 100644
--- a/l10n/cs_CZ/files.po
+++ b/l10n/cs_CZ/files.po
@@ -12,8 +12,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-03 12:38-0500\n"
-"PO-Revision-Date: 2013-11-03 17:38+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-09 07:01+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n"
"MIME-Version: 1.0\n"
@@ -32,7 +32,7 @@ msgstr "Nelze přesunout %s - již existuje soubor se stejným názvem"
msgid "Could not move %s"
msgstr "Nelze přesunout %s"
-#: ajax/newfile.php:56 js/files.js:27
+#: ajax/newfile.php:56 js/files.js:74
msgid "File name cannot be empty."
msgstr "Název souboru nemůže být prázdný řetězec."
@@ -56,7 +56,7 @@ msgstr ""
msgid "Error while downloading %s to %s"
msgstr ""
-#: ajax/newfile.php:127
+#: ajax/newfile.php:128
msgid "Error when creating the file"
msgstr ""
@@ -119,15 +119,15 @@ msgstr "Zápis na disk selhal"
msgid "Not enough storage available"
msgstr "Nedostatek dostupného úložného prostoru"
-#: ajax/upload.php:127 ajax/upload.php:153
+#: ajax/upload.php:127 ajax/upload.php:154
msgid "Upload failed. Could not get file info."
msgstr "Nahrávání selhalo. Nepodařilo se získat informace o souboru."
-#: ajax/upload.php:143
+#: ajax/upload.php:144
msgid "Upload failed. Could not find uploaded file"
msgstr "Nahrávání selhalo. Nepodařilo se nalézt nahraný soubor."
-#: ajax/upload.php:170
+#: ajax/upload.php:172
msgid "Invalid directory."
msgstr "Neplatný adresář"
@@ -147,24 +147,24 @@ msgstr "Nedostatek volného místa"
msgid "Upload cancelled."
msgstr "Odesílání zrušeno."
-#: js/file-upload.js:345
+#: js/file-upload.js:344
msgid "Could not get result from server."
msgstr "Nepodařilo se získat výsledek ze serveru."
-#: js/file-upload.js:437
+#: js/file-upload.js:436
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr "Probíhá odesílání souboru. Opuštění stránky způsobí zrušení nahrávání."
-#: js/file-upload.js:520
+#: js/file-upload.js:519
msgid "URL cannot be empty"
msgstr ""
-#: js/file-upload.js:524 js/filelist.js:364
+#: js/file-upload.js:523 js/filelist.js:371
msgid "In the home folder 'Shared' is a reserved filename"
msgstr ""
-#: js/file-upload.js:526 js/filelist.js:366
+#: js/file-upload.js:525 js/filelist.js:373
msgid "{new_name} already exists"
msgstr "{new_name} již existuje"
@@ -188,107 +188,107 @@ msgstr "Trvale odstranit"
msgid "Rename"
msgstr "Přejmenovat"
-#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:854
+#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:857
msgid "Pending"
msgstr "Nevyřízené"
-#: js/filelist.js:392
+#: js/filelist.js:399
msgid "Could not rename file"
msgstr ""
-#: js/filelist.js:511
+#: js/filelist.js:518
msgid "replaced {new_name} with {old_name}"
msgstr "nahrazeno {new_name} s {old_name}"
-#: js/filelist.js:511
+#: js/filelist.js:518
msgid "undo"
msgstr "vrátit zpět"
-#: js/filelist.js:582 js/filelist.js:649 js/files.js:587
+#: js/filelist.js:578 js/filelist.js:652 js/files.js:631
msgid "%n folder"
msgid_plural "%n folders"
msgstr[0] "%n složka"
msgstr[1] "%n složky"
msgstr[2] "%n složek"
-#: js/filelist.js:583 js/filelist.js:650 js/files.js:593
+#: js/filelist.js:579 js/filelist.js:653 js/files.js:637
msgid "%n file"
msgid_plural "%n files"
msgstr[0] "%n soubor"
msgstr[1] "%n soubory"
msgstr[2] "%n souborů"
-#: js/filelist.js:590
+#: js/filelist.js:586
msgid "{dirs} and {files}"
msgstr "{dirs} a {files}"
-#: js/filelist.js:793 js/filelist.js:831
+#: js/filelist.js:796 js/filelist.js:834
msgid "Uploading %n file"
msgid_plural "Uploading %n files"
msgstr[0] "Nahrávám %n soubor"
msgstr[1] "Nahrávám %n soubory"
msgstr[2] "Nahrávám %n souborů"
-#: js/files.js:25
+#: js/files.js:72
msgid "'.' is an invalid file name."
msgstr "'.' je neplatným názvem souboru."
-#: js/files.js:34
+#: js/files.js:81
msgid ""
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not "
"allowed."
msgstr "Neplatný název, znaky '\\', '/', '<', '>', ':', '\"', '|', '?' a '*' nejsou povoleny."
-#: js/files.js:46
+#: js/files.js:93
msgid "Your storage is full, files can not be updated or synced anymore!"
msgstr "Vaše úložiště je plné, nelze aktualizovat ani synchronizovat soubory."
-#: js/files.js:50
+#: js/files.js:97
msgid "Your storage is almost full ({usedSpacePercent}%)"
msgstr "Vaše úložiště je téměř plné ({usedSpacePercent}%)"
-#: js/files.js:63
+#: js/files.js:110
msgid ""
"Encryption App is enabled but your keys are not initialized, please log-out "
"and log-in again"
msgstr "Aplikace pro šifrování je zapnuta, ale vaše klíče nejsou inicializované. Prosím odhlaste se a znovu přihlaste"
-#: js/files.js:67
+#: js/files.js:114
msgid ""
"Invalid private key for Encryption App. Please update your private key "
"password in your personal settings to recover access to your encrypted "
"files."
msgstr "Chybný soukromý klíč pro šifrovací aplikaci. Aktualizujte prosím heslo svého soukromého klíče ve vašem osobním nastavení, abyste znovu získali přístup k vašim zašifrovaným souborům."
-#: js/files.js:71
+#: js/files.js:118
msgid ""
"Encryption was disabled but your files are still encrypted. Please go to "
"your personal settings to decrypt your files."
msgstr "Šifrování bylo vypnuto, vaše soubory jsou však stále zašifrované. Běžte prosím do osobního nastavení, kde soubory odšifrujete."
-#: js/files.js:302
+#: js/files.js:349
msgid ""
"Your download is being prepared. This might take some time if the files are "
"big."
msgstr "Vaše soubory ke stažení se připravují. Pokud jsou velké, může to chvíli trvat."
-#: js/files.js:514 js/files.js:552
+#: js/files.js:558 js/files.js:596
msgid "Error moving file"
msgstr "Chyba při přesunu souboru"
-#: js/files.js:514 js/files.js:552
+#: js/files.js:558 js/files.js:596
msgid "Error"
msgstr "Chyba"
-#: js/files.js:569 templates/index.php:56
+#: js/files.js:613 templates/index.php:56
msgid "Name"
msgstr "Název"
-#: js/files.js:570 templates/index.php:68
+#: js/files.js:614 templates/index.php:68
msgid "Size"
msgstr "Velikost"
-#: js/files.js:571 templates/index.php:70
+#: js/files.js:615 templates/index.php:70
msgid "Modified"
msgstr "Upraveno"
diff --git a/l10n/cs_CZ/files_sharing.po b/l10n/cs_CZ/files_sharing.po
index 359afc837cb..605c94bbefc 100644
--- a/l10n/cs_CZ/files_sharing.po
+++ b/l10n/cs_CZ/files_sharing.po
@@ -7,9 +7,9 @@
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
-"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-10-29 07:28-0400\n"
-"PO-Revision-Date: 2013-10-28 10:45+0000\n"
+"Report-Msgid-Bugs-To: translations@owncloud.org\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+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/settings.po b/l10n/cs_CZ/settings.po
index 21952fe7893..b3c56abc22d 100644
--- a/l10n/cs_CZ/settings.po
+++ b/l10n/cs_CZ/settings.po
@@ -11,8 +11,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-06 21:43-0500\n"
-"PO-Revision-Date: 2013-11-07 02:43+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+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/user_ldap.po b/l10n/cs_CZ/user_ldap.po
index 6713fe648b5..6a36005b1de 100644
--- a/l10n/cs_CZ/user_ldap.po
+++ b/l10n/cs_CZ/user_ldap.po
@@ -11,8 +11,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-03 12:38-0500\n"
-"PO-Revision-Date: 2013-11-03 17:39+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+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"
@@ -142,6 +142,10 @@ msgstr ""
msgid "Could not find the desired feature"
msgstr ""
+#: templates/part.settingcontrols.php:2
+msgid "Save"
+msgstr "Uložit"
+
#: templates/part.settingcontrols.php:4
msgid "Test Configuration"
msgstr "Vyzkoušet nastavení"
diff --git a/l10n/cy_GB/core.po b/l10n/cy_GB/core.po
index 69fbdde96df..94d6397179a 100644
--- a/l10n/cy_GB/core.po
+++ b/l10n/cy_GB/core.po
@@ -7,9 +7,9 @@
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
-"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-10-30 03:32-0400\n"
-"PO-Revision-Date: 2013-10-30 07:32+0000\n"
+"Report-Msgid-Bugs-To: translations@owncloud.org\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:11+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"
@@ -287,12 +287,12 @@ msgstr "Rhannwyd"
msgid "Share"
msgstr "Rhannu"
-#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:690
-#: js/share.js:702
+#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:692
+#: js/share.js:704
msgid "Error"
msgstr "Gwall"
-#: js/share.js:160 js/share.js:730
+#: js/share.js:160 js/share.js:732
msgid "Error while sharing"
msgstr "Gwall wrth rannu"
@@ -348,79 +348,79 @@ msgstr "Gosod dyddiad dod i ben"
msgid "Expiration date"
msgstr "Dyddiad dod i ben"
-#: js/share.js:272
+#: js/share.js:274
msgid "Share via email:"
msgstr "Rhannu drwy e-bost:"
-#: js/share.js:275
+#: js/share.js:277
msgid "No people found"
msgstr "Heb ganfod pobl"
-#: js/share.js:305 js/share.js:342
+#: js/share.js:307 js/share.js:344
msgid "group"
msgstr "grŵp"
-#: js/share.js:316
+#: js/share.js:318
msgid "Resharing is not allowed"
msgstr "Does dim hawl ail-rannu"
-#: js/share.js:358
+#: js/share.js:360
msgid "Shared in {item} with {user}"
msgstr "Rhannwyd yn {item} â {user}"
-#: js/share.js:380
+#: js/share.js:382
msgid "Unshare"
msgstr "Dad-rannu"
-#: js/share.js:388
+#: js/share.js:390
msgid "notify by email"
msgstr ""
-#: js/share.js:391
+#: js/share.js:393
msgid "can edit"
msgstr "yn gallu golygu"
-#: js/share.js:393
+#: js/share.js:395
msgid "access control"
msgstr "rheolaeth mynediad"
-#: js/share.js:396
+#: js/share.js:398
msgid "create"
msgstr "creu"
-#: js/share.js:399
+#: js/share.js:401
msgid "update"
msgstr "diweddaru"
-#: js/share.js:402
+#: js/share.js:404
msgid "delete"
msgstr "dileu"
-#: js/share.js:405
+#: js/share.js:407
msgid "share"
msgstr "rhannu"
-#: js/share.js:447 js/share.js:677
+#: js/share.js:449 js/share.js:679
msgid "Password protected"
msgstr "Diogelwyd â chyfrinair"
-#: js/share.js:690
+#: js/share.js:692
msgid "Error unsetting expiration date"
msgstr "Gwall wrth ddad-osod dyddiad dod i ben"
-#: js/share.js:702
+#: js/share.js:704
msgid "Error setting expiration date"
msgstr "Gwall wrth osod dyddiad dod i ben"
-#: js/share.js:717
+#: js/share.js:719
msgid "Sending ..."
msgstr "Yn anfon ..."
-#: js/share.js:728
+#: js/share.js:730
msgid "Email sent"
msgstr "Anfonwyd yr e-bost"
-#: js/share.js:752
+#: js/share.js:754
msgid "Warning"
msgstr "Rhybudd"
diff --git a/l10n/cy_GB/files.po b/l10n/cy_GB/files.po
index 176459f2180..21be39540cb 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: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-03 12:38-0500\n"
-"PO-Revision-Date: 2013-11-03 17:38+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-09 07:01+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n"
"MIME-Version: 1.0\n"
@@ -27,7 +27,7 @@ msgstr "Methwyd symud %s - Mae ffeil gyda'r enw hwn eisoes yn bodoli"
msgid "Could not move %s"
msgstr "Methwyd symud %s"
-#: ajax/newfile.php:56 js/files.js:27
+#: ajax/newfile.php:56 js/files.js:74
msgid "File name cannot be empty."
msgstr "Does dim hawl cael enw ffeil gwag."
@@ -51,7 +51,7 @@ msgstr ""
msgid "Error while downloading %s to %s"
msgstr ""
-#: ajax/newfile.php:127
+#: ajax/newfile.php:128
msgid "Error when creating the file"
msgstr ""
@@ -114,15 +114,15 @@ msgstr "Methwyd ysgrifennu i'r ddisg"
msgid "Not enough storage available"
msgstr "Dim digon o le storio ar gael"
-#: ajax/upload.php:127 ajax/upload.php:153
+#: ajax/upload.php:127 ajax/upload.php:154
msgid "Upload failed. Could not get file info."
msgstr ""
-#: ajax/upload.php:143
+#: ajax/upload.php:144
msgid "Upload failed. Could not find uploaded file"
msgstr ""
-#: ajax/upload.php:170
+#: ajax/upload.php:172
msgid "Invalid directory."
msgstr "Cyfeiriadur annilys."
@@ -142,24 +142,24 @@ msgstr "Dim digon o le ar gael"
msgid "Upload cancelled."
msgstr "Diddymwyd llwytho i fyny."
-#: js/file-upload.js:345
+#: js/file-upload.js:344
msgid "Could not get result from server."
msgstr ""
-#: js/file-upload.js:437
+#: js/file-upload.js:436
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr "Mae ffeiliau'n cael eu llwytho i fyny. Bydd gadael y dudalen hon nawr yn diddymu'r broses."
-#: js/file-upload.js:520
+#: js/file-upload.js:519
msgid "URL cannot be empty"
msgstr ""
-#: js/file-upload.js:524 js/filelist.js:364
+#: js/file-upload.js:523 js/filelist.js:371
msgid "In the home folder 'Shared' is a reserved filename"
msgstr ""
-#: js/file-upload.js:526 js/filelist.js:366
+#: js/file-upload.js:525 js/filelist.js:373
msgid "{new_name} already exists"
msgstr "{new_name} yn bodoli'n barod"
@@ -183,23 +183,23 @@ msgstr "Dileu'n barhaol"
msgid "Rename"
msgstr "Ailenwi"
-#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:854
+#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:857
msgid "Pending"
msgstr "I ddod"
-#: js/filelist.js:392
+#: js/filelist.js:399
msgid "Could not rename file"
msgstr ""
-#: js/filelist.js:511
+#: js/filelist.js:518
msgid "replaced {new_name} with {old_name}"
msgstr "newidiwyd {new_name} yn lle {old_name}"
-#: js/filelist.js:511
+#: js/filelist.js:518
msgid "undo"
msgstr "dadwneud"
-#: js/filelist.js:582 js/filelist.js:649 js/files.js:587
+#: js/filelist.js:578 js/filelist.js:652 js/files.js:631
msgid "%n folder"
msgid_plural "%n folders"
msgstr[0] ""
@@ -207,7 +207,7 @@ msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
-#: js/filelist.js:583 js/filelist.js:650 js/files.js:593
+#: js/filelist.js:579 js/filelist.js:653 js/files.js:637
msgid "%n file"
msgid_plural "%n files"
msgstr[0] ""
@@ -215,11 +215,11 @@ msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
-#: js/filelist.js:590
+#: js/filelist.js:586
msgid "{dirs} and {files}"
msgstr ""
-#: js/filelist.js:793 js/filelist.js:831
+#: js/filelist.js:796 js/filelist.js:834
msgid "Uploading %n file"
msgid_plural "Uploading %n files"
msgstr[0] ""
@@ -227,66 +227,66 @@ msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
-#: js/files.js:25
+#: js/files.js:72
msgid "'.' is an invalid file name."
msgstr "Mae '.' yn enw ffeil annilys."
-#: js/files.js:34
+#: js/files.js:81
msgid ""
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not "
"allowed."
msgstr "Enw annilys, ni chaniateir, '\\', '/', '<', '>', ':', '\"', '|', '?' na '*'."
-#: js/files.js:46
+#: js/files.js:93
msgid "Your storage is full, files can not be updated or synced anymore!"
msgstr "Mae eich storfa'n llawn, ni ellir diweddaru a chydweddu ffeiliau mwyach!"
-#: js/files.js:50
+#: js/files.js:97
msgid "Your storage is almost full ({usedSpacePercent}%)"
msgstr "Mae eich storfa bron a bod yn llawn ({usedSpacePercent}%)"
-#: js/files.js:63
+#: js/files.js:110
msgid ""
"Encryption App is enabled but your keys are not initialized, please log-out "
"and log-in again"
msgstr ""
-#: js/files.js:67
+#: js/files.js:114
msgid ""
"Invalid private key for Encryption App. Please update your private key "
"password in your personal settings to recover access to your encrypted "
"files."
msgstr ""
-#: js/files.js:71
+#: js/files.js:118
msgid ""
"Encryption was disabled but your files are still encrypted. Please go to "
"your personal settings to decrypt your files."
msgstr ""
-#: js/files.js:302
+#: js/files.js:349
msgid ""
"Your download is being prepared. This might take some time if the files are "
"big."
msgstr "Wrthi'n paratoi i lwytho i lawr. Gall gymryd peth amser os yw'r ffeiliau'n fawr."
-#: js/files.js:514 js/files.js:552
+#: js/files.js:558 js/files.js:596
msgid "Error moving file"
msgstr ""
-#: js/files.js:514 js/files.js:552
+#: js/files.js:558 js/files.js:596
msgid "Error"
msgstr "Gwall"
-#: js/files.js:569 templates/index.php:56
+#: js/files.js:613 templates/index.php:56
msgid "Name"
msgstr "Enw"
-#: js/files.js:570 templates/index.php:68
+#: js/files.js:614 templates/index.php:68
msgid "Size"
msgstr "Maint"
-#: js/files.js:571 templates/index.php:70
+#: js/files.js:615 templates/index.php:70
msgid "Modified"
msgstr "Addaswyd"
diff --git a/l10n/cy_GB/files_sharing.po b/l10n/cy_GB/files_sharing.po
index 3604e9e5d4b..dbec736adbe 100644
--- a/l10n/cy_GB/files_sharing.po
+++ b/l10n/cy_GB/files_sharing.po
@@ -6,9 +6,9 @@
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
-"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-10-29 07:28-0400\n"
-"PO-Revision-Date: 2013-10-28 10:45+0000\n"
+"Report-Msgid-Bugs-To: translations@owncloud.org\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+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/settings.po b/l10n/cy_GB/settings.po
index c6b0f20933a..cb36613f126 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: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-06 21:43-0500\n"
-"PO-Revision-Date: 2013-11-07 02:43+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+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 d3a9843b6d0..1ba08894159 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: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-03 12:38-0500\n"
-"PO-Revision-Date: 2013-11-03 17:39+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+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"
@@ -140,6 +140,10 @@ msgstr ""
msgid "Could not find the desired feature"
msgstr ""
+#: templates/part.settingcontrols.php:2
+msgid "Save"
+msgstr "Cadw"
+
#: templates/part.settingcontrols.php:4
msgid "Test Configuration"
msgstr ""
diff --git a/l10n/da/core.po b/l10n/da/core.po
index 62325836826..8c48c99cf1a 100644
--- a/l10n/da/core.po
+++ b/l10n/da/core.po
@@ -12,8 +12,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-03 14:38-0500\n"
-"PO-Revision-Date: 2013-11-03 19:10+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+0000\n"
"Last-Translator: kaffeldt \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 9b5d51329fd..ecce0f3438f 100644
--- a/l10n/da/files.po
+++ b/l10n/da/files.po
@@ -10,8 +10,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-03 12:38-0500\n"
-"PO-Revision-Date: 2013-11-03 17:38+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-09 07:01+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n"
"MIME-Version: 1.0\n"
@@ -30,7 +30,7 @@ msgstr "Kunne ikke flytte %s - der findes allerede en fil med dette navn"
msgid "Could not move %s"
msgstr "Kunne ikke flytte %s"
-#: ajax/newfile.php:56 js/files.js:27
+#: ajax/newfile.php:56 js/files.js:74
msgid "File name cannot be empty."
msgstr "Filnavnet kan ikke stå tomt."
@@ -54,7 +54,7 @@ msgstr ""
msgid "Error while downloading %s to %s"
msgstr ""
-#: ajax/newfile.php:127
+#: ajax/newfile.php:128
msgid "Error when creating the file"
msgstr ""
@@ -117,15 +117,15 @@ msgstr "Fejl ved skrivning til disk."
msgid "Not enough storage available"
msgstr "Der er ikke nok plads til rådlighed"
-#: ajax/upload.php:127 ajax/upload.php:153
+#: ajax/upload.php:127 ajax/upload.php:154
msgid "Upload failed. Could not get file info."
msgstr "Upload fejlede. Kunne ikke hente filinformation."
-#: ajax/upload.php:143
+#: ajax/upload.php:144
msgid "Upload failed. Could not find uploaded file"
msgstr "Upload fejlede. Kunne ikke finde den uploadede fil."
-#: ajax/upload.php:170
+#: ajax/upload.php:172
msgid "Invalid directory."
msgstr "Ugyldig mappe."
@@ -145,24 +145,24 @@ msgstr "ikke nok tilgængelig ledig plads "
msgid "Upload cancelled."
msgstr "Upload afbrudt."
-#: js/file-upload.js:345
+#: js/file-upload.js:344
msgid "Could not get result from server."
msgstr "Kunne ikke hente resultat fra server."
-#: js/file-upload.js:437
+#: js/file-upload.js:436
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr "Fil upload kører. Hvis du forlader siden nu, vil uploadet blive annuleret."
-#: js/file-upload.js:520
+#: js/file-upload.js:519
msgid "URL cannot be empty"
msgstr ""
-#: js/file-upload.js:524 js/filelist.js:364
+#: js/file-upload.js:523 js/filelist.js:371
msgid "In the home folder 'Shared' is a reserved filename"
msgstr ""
-#: js/file-upload.js:526 js/filelist.js:366
+#: js/file-upload.js:525 js/filelist.js:373
msgid "{new_name} already exists"
msgstr "{new_name} eksisterer allerede"
@@ -186,104 +186,104 @@ msgstr "Slet permanent"
msgid "Rename"
msgstr "Omdøb"
-#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:854
+#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:857
msgid "Pending"
msgstr "Afventer"
-#: js/filelist.js:392
+#: js/filelist.js:399
msgid "Could not rename file"
msgstr ""
-#: js/filelist.js:511
+#: js/filelist.js:518
msgid "replaced {new_name} with {old_name}"
msgstr "erstattede {new_name} med {old_name}"
-#: js/filelist.js:511
+#: js/filelist.js:518
msgid "undo"
msgstr "fortryd"
-#: js/filelist.js:582 js/filelist.js:649 js/files.js:587
+#: js/filelist.js:578 js/filelist.js:652 js/files.js:631
msgid "%n folder"
msgid_plural "%n folders"
msgstr[0] "%n mappe"
msgstr[1] "%n mapper"
-#: js/filelist.js:583 js/filelist.js:650 js/files.js:593
+#: js/filelist.js:579 js/filelist.js:653 js/files.js:637
msgid "%n file"
msgid_plural "%n files"
msgstr[0] "%n fil"
msgstr[1] "%n filer"
-#: js/filelist.js:590
+#: js/filelist.js:586
msgid "{dirs} and {files}"
msgstr "{dirs} og {files}"
-#: js/filelist.js:793 js/filelist.js:831
+#: js/filelist.js:796 js/filelist.js:834
msgid "Uploading %n file"
msgid_plural "Uploading %n files"
msgstr[0] "Uploader %n fil"
msgstr[1] "Uploader %n filer"
-#: js/files.js:25
+#: js/files.js:72
msgid "'.' is an invalid file name."
msgstr "'.' er et ugyldigt filnavn."
-#: js/files.js:34
+#: js/files.js:81
msgid ""
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not "
"allowed."
msgstr "Ugyldigt navn, '\\', '/', '<', '>', ':' | '?', '\"', '', og '*' er ikke tilladt."
-#: js/files.js:46
+#: js/files.js:93
msgid "Your storage is full, files can not be updated or synced anymore!"
msgstr "Din opbevaringsplads er fyldt op, filer kan ikke opdateres eller synkroniseres længere!"
-#: js/files.js:50
+#: js/files.js:97
msgid "Your storage is almost full ({usedSpacePercent}%)"
msgstr "Din opbevaringsplads er næsten fyldt op ({usedSpacePercent}%)"
-#: js/files.js:63
+#: js/files.js:110
msgid ""
"Encryption App is enabled but your keys are not initialized, please log-out "
"and log-in again"
msgstr ""
-#: js/files.js:67
+#: js/files.js:114
msgid ""
"Invalid private key for Encryption App. Please update your private key "
"password in your personal settings to recover access to your encrypted "
"files."
msgstr ""
-#: js/files.js:71
+#: js/files.js:118
msgid ""
"Encryption was disabled but your files are still encrypted. Please go to "
"your personal settings to decrypt your files."
msgstr "Krypteringen blev deaktiveret, men dine filer er stadig krypteret. Gå venligst til dine personlige indstillinger for at dekryptere dine filer. "
-#: js/files.js:302
+#: js/files.js:349
msgid ""
"Your download is being prepared. This might take some time if the files are "
"big."
msgstr "Dit download forberedes. Dette kan tage lidt tid ved større filer."
-#: js/files.js:514 js/files.js:552
+#: js/files.js:558 js/files.js:596
msgid "Error moving file"
msgstr "Fejl ved flytning af fil"
-#: js/files.js:514 js/files.js:552
+#: js/files.js:558 js/files.js:596
msgid "Error"
msgstr "Fejl"
-#: js/files.js:569 templates/index.php:56
+#: js/files.js:613 templates/index.php:56
msgid "Name"
msgstr "Navn"
-#: js/files.js:570 templates/index.php:68
+#: js/files.js:614 templates/index.php:68
msgid "Size"
msgstr "Størrelse"
-#: js/files.js:571 templates/index.php:70
+#: js/files.js:615 templates/index.php:70
msgid "Modified"
msgstr "Ændret"
diff --git a/l10n/da/files_sharing.po b/l10n/da/files_sharing.po
index 0c3fefde633..d56df131c27 100644
--- a/l10n/da/files_sharing.po
+++ b/l10n/da/files_sharing.po
@@ -7,9 +7,9 @@
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
-"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-10-29 07:28-0400\n"
-"PO-Revision-Date: 2013-10-28 10:45+0000\n"
+"Report-Msgid-Bugs-To: translations@owncloud.org\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+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/settings.po b/l10n/da/settings.po
index cddd7bb71bf..bc20828e955 100644
--- a/l10n/da/settings.po
+++ b/l10n/da/settings.po
@@ -10,8 +10,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-06 21:43-0500\n"
-"PO-Revision-Date: 2013-11-07 02:43+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+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 b0867d4358f..340006e0e95 100644
--- a/l10n/da/user_ldap.po
+++ b/l10n/da/user_ldap.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-03 12:38-0500\n"
-"PO-Revision-Date: 2013-11-03 17:39+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+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"
@@ -137,6 +137,10 @@ msgstr ""
msgid "Could not find the desired feature"
msgstr ""
+#: templates/part.settingcontrols.php:2
+msgid "Save"
+msgstr "Gem"
+
#: templates/part.settingcontrols.php:4
msgid "Test Configuration"
msgstr "Test Konfiguration"
diff --git a/l10n/de/core.po b/l10n/de/core.po
index 4dedf6b74df..301d6978048 100644
--- a/l10n/de/core.po
+++ b/l10n/de/core.po
@@ -15,8 +15,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-03 12:38-0500\n"
-"PO-Revision-Date: 2013-10-30 07:50+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:11+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/de/files.po b/l10n/de/files.po
index 2c0e26578b8..00f8b5f40da 100644
--- a/l10n/de/files.po
+++ b/l10n/de/files.po
@@ -13,8 +13,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-06 21:43-0500\n"
-"PO-Revision-Date: 2013-11-05 09:59+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-09 07:01+0000\n"
"Last-Translator: Mario Siegmann \n"
"Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n"
"MIME-Version: 1.0\n"
@@ -148,32 +148,32 @@ msgstr "Nicht genug Speicherplatz verfügbar"
msgid "Upload cancelled."
msgstr "Upload abgebrochen."
-#: js/file-upload.js:345
+#: js/file-upload.js:344
msgid "Could not get result from server."
msgstr "Ergebnis konnte nicht vom Server abgerufen werden."
-#: js/file-upload.js:437
+#: js/file-upload.js:436
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr "Dateiupload läuft. Wenn Du die Seite jetzt verlässt, wird der Upload abgebrochen."
-#: js/file-upload.js:520
+#: js/file-upload.js:519
msgid "URL cannot be empty"
msgstr "Die URL darf nicht leer sein"
-#: js/file-upload.js:524 js/filelist.js:371
+#: js/file-upload.js:523 js/filelist.js:371
msgid "In the home folder 'Shared' is a reserved filename"
msgstr "Das Benutzerverzeichnis 'Shared' ist ein reservierter Dateiname"
-#: js/file-upload.js:526 js/filelist.js:373
+#: js/file-upload.js:525 js/filelist.js:373
msgid "{new_name} already exists"
msgstr "{new_name} existiert bereits"
-#: js/file-upload.js:586
+#: js/file-upload.js:585
msgid "Could not create file"
msgstr "Die Datei konnte nicht erstellt werden"
-#: js/file-upload.js:602
+#: js/file-upload.js:601
msgid "Could not create folder"
msgstr "Der Ordner konnte nicht erstellt werden"
diff --git a/l10n/de/files_sharing.po b/l10n/de/files_sharing.po
index 8a256a7d246..5d3ae17ac27 100644
--- a/l10n/de/files_sharing.po
+++ b/l10n/de/files_sharing.po
@@ -9,9 +9,9 @@
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
-"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-10-29 07:28-0400\n"
-"PO-Revision-Date: 2013-10-28 10:45+0000\n"
+"Report-Msgid-Bugs-To: translations@owncloud.org\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+0000\n"
"Last-Translator: Susi <>\n"
"Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/de/settings.po b/l10n/de/settings.po
index 5b4268787fc..5e358c30d26 100644
--- a/l10n/de/settings.po
+++ b/l10n/de/settings.po
@@ -13,9 +13,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-06 21:43-0500\n"
-"PO-Revision-Date: 2013-11-07 02:43+0000\n"
-"Last-Translator: I Robot \n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+0000\n"
+"Last-Translator: Mario Siegmann \n"
"Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -34,11 +34,11 @@ msgstr "Fehler bei der Anmeldung"
#: ajax/changedisplayname.php:31
msgid "Your full name has been changed."
-msgstr ""
+msgstr "Dein vollständiger Name ist geändert worden."
#: ajax/changedisplayname.php:34
msgid "Unable to change full name"
-msgstr ""
+msgstr "Der vollständige Name konnte nicht geändert werden"
#: ajax/creategroup.php:10
msgid "Group already exists"
@@ -511,7 +511,7 @@ msgstr "Passwort ändern"
#: templates/personal.php:58 templates/users.php:88
msgid "Full Name"
-msgstr ""
+msgstr "Vollständiger Name"
#: templates/personal.php:73
msgid "Email"
@@ -632,7 +632,7 @@ msgstr "Speicher"
#: templates/users.php:108
msgid "change full name"
-msgstr ""
+msgstr "Vollständigen Namen ändern"
#: templates/users.php:112
msgid "set new password"
diff --git a/l10n/de/user_ldap.po b/l10n/de/user_ldap.po
index d33ef51f7cc..3c221404350 100644
--- a/l10n/de/user_ldap.po
+++ b/l10n/de/user_ldap.po
@@ -11,9 +11,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-06 21:43-0500\n"
-"PO-Revision-Date: 2013-11-05 09:59+0000\n"
-"Last-Translator: Mario Siegmann \n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+0000\n"
+"Last-Translator: I Robot \n"
"Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -140,6 +140,10 @@ msgstr "Ungültiger Host"
msgid "Could not find the desired feature"
msgstr "Konnte die gewünschte Funktion nicht finden"
+#: templates/part.settingcontrols.php:2
+msgid "Save"
+msgstr "Speichern"
+
#: templates/part.settingcontrols.php:4
msgid "Test Configuration"
msgstr "Testkonfiguration"
diff --git a/l10n/de_AT/user_ldap.po b/l10n/de_AT/user_ldap.po
index 06cc3292afe..33803695501 100644
--- a/l10n/de_AT/user_ldap.po
+++ b/l10n/de_AT/user_ldap.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-03 12:38-0500\n"
-"PO-Revision-Date: 2013-11-03 17:39+0000\n"
+"POT-Creation-Date: 2013-11-09 01:44-0500\n"
+"PO-Revision-Date: 2013-11-09 06:44+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: German (Austria) (http://www.transifex.com/projects/p/owncloud/language/de_AT/)\n"
"MIME-Version: 1.0\n"
@@ -136,6 +136,10 @@ msgstr ""
msgid "Could not find the desired feature"
msgstr ""
+#: templates/part.settingcontrols.php:2
+msgid "Save"
+msgstr ""
+
#: templates/part.settingcontrols.php:4
msgid "Test Configuration"
msgstr ""
diff --git a/l10n/de_CH/core.po b/l10n/de_CH/core.po
index 654e27eaa5e..121c3b4fb8e 100644
--- a/l10n/de_CH/core.po
+++ b/l10n/de_CH/core.po
@@ -16,8 +16,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-03 12:38-0500\n"
-"PO-Revision-Date: 2013-10-30 07:50+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:11+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/de_CH/files.po b/l10n/de_CH/files.po
index b9b13935a07..d969ec13811 100644
--- a/l10n/de_CH/files.po
+++ b/l10n/de_CH/files.po
@@ -16,8 +16,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-03 12:38-0500\n"
-"PO-Revision-Date: 2013-11-03 17:38+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-09 07:01+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n"
"MIME-Version: 1.0\n"
@@ -36,7 +36,7 @@ msgstr "%s konnte nicht verschoben werden. Eine Datei mit diesem Namen existiert
msgid "Could not move %s"
msgstr "Konnte %s nicht verschieben"
-#: ajax/newfile.php:56 js/files.js:27
+#: ajax/newfile.php:56 js/files.js:74
msgid "File name cannot be empty."
msgstr "Der Dateiname darf nicht leer sein."
@@ -60,7 +60,7 @@ msgstr ""
msgid "Error while downloading %s to %s"
msgstr ""
-#: ajax/newfile.php:127
+#: ajax/newfile.php:128
msgid "Error when creating the file"
msgstr ""
@@ -123,15 +123,15 @@ msgstr "Fehler beim Schreiben auf die Festplatte"
msgid "Not enough storage available"
msgstr "Nicht genug Speicher vorhanden."
-#: ajax/upload.php:127 ajax/upload.php:153
+#: ajax/upload.php:127 ajax/upload.php:154
msgid "Upload failed. Could not get file info."
msgstr ""
-#: ajax/upload.php:143
+#: ajax/upload.php:144
msgid "Upload failed. Could not find uploaded file"
msgstr ""
-#: ajax/upload.php:170
+#: ajax/upload.php:172
msgid "Invalid directory."
msgstr "Ungültiges Verzeichnis."
@@ -151,24 +151,24 @@ msgstr "Nicht genügend Speicherplatz verfügbar"
msgid "Upload cancelled."
msgstr "Upload abgebrochen."
-#: js/file-upload.js:345
+#: js/file-upload.js:344
msgid "Could not get result from server."
msgstr ""
-#: js/file-upload.js:437
+#: js/file-upload.js:436
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr "Dateiupload läuft. Wenn Sie die Seite jetzt verlassen, wird der Upload abgebrochen."
-#: js/file-upload.js:520
+#: js/file-upload.js:519
msgid "URL cannot be empty"
msgstr ""
-#: js/file-upload.js:524 js/filelist.js:364
+#: js/file-upload.js:523 js/filelist.js:371
msgid "In the home folder 'Shared' is a reserved filename"
msgstr ""
-#: js/file-upload.js:526 js/filelist.js:366
+#: js/file-upload.js:525 js/filelist.js:373
msgid "{new_name} already exists"
msgstr "{new_name} existiert bereits"
@@ -192,104 +192,104 @@ msgstr "Endgültig löschen"
msgid "Rename"
msgstr "Umbenennen"
-#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:854
+#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:857
msgid "Pending"
msgstr "Ausstehend"
-#: js/filelist.js:392
+#: js/filelist.js:399
msgid "Could not rename file"
msgstr ""
-#: js/filelist.js:511
+#: js/filelist.js:518
msgid "replaced {new_name} with {old_name}"
msgstr "{old_name} wurde ersetzt durch {new_name}"
-#: js/filelist.js:511
+#: js/filelist.js:518
msgid "undo"
msgstr "rückgängig machen"
-#: js/filelist.js:582 js/filelist.js:649 js/files.js:587
+#: js/filelist.js:578 js/filelist.js:652 js/files.js:631
msgid "%n folder"
msgid_plural "%n folders"
msgstr[0] ""
msgstr[1] "%n Ordner"
-#: js/filelist.js:583 js/filelist.js:650 js/files.js:593
+#: js/filelist.js:579 js/filelist.js:653 js/files.js:637
msgid "%n file"
msgid_plural "%n files"
msgstr[0] ""
msgstr[1] "%n Dateien"
-#: js/filelist.js:590
+#: js/filelist.js:586
msgid "{dirs} and {files}"
msgstr ""
-#: js/filelist.js:793 js/filelist.js:831
+#: js/filelist.js:796 js/filelist.js:834
msgid "Uploading %n file"
msgid_plural "Uploading %n files"
msgstr[0] "%n Datei wird hochgeladen"
msgstr[1] "%n Dateien werden hochgeladen"
-#: js/files.js:25
+#: js/files.js:72
msgid "'.' is an invalid file name."
msgstr "'.' ist kein gültiger Dateiname."
-#: js/files.js:34
+#: js/files.js:81
msgid ""
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not "
"allowed."
msgstr "Ungültiger Name, «\\», «/», «<», «>», «:», «\"», «|», «?» und «*» sind nicht zulässig."
-#: js/files.js:46
+#: js/files.js:93
msgid "Your storage is full, files can not be updated or synced anymore!"
msgstr "Ihr Speicher ist voll, daher können keine Dateien mehr aktualisiert oder synchronisiert werden!"
-#: js/files.js:50
+#: js/files.js:97
msgid "Your storage is almost full ({usedSpacePercent}%)"
msgstr "Ihr Speicher ist fast voll ({usedSpacePercent}%)"
-#: js/files.js:63
+#: js/files.js:110
msgid ""
"Encryption App is enabled but your keys are not initialized, please log-out "
"and log-in again"
msgstr ""
-#: js/files.js:67
+#: js/files.js:114
msgid ""
"Invalid private key for Encryption App. Please update your private key "
"password in your personal settings to recover access to your encrypted "
"files."
msgstr ""
-#: js/files.js:71
+#: js/files.js:118
msgid ""
"Encryption was disabled but your files are still encrypted. Please go to "
"your personal settings to decrypt your files."
msgstr "Die Verschlüsselung wurde deaktiviert, jedoch sind Ihre Dateien nach wie vor verschlüsselt. Bitte gehen Sie zu Ihren persönlichen Einstellungen, um Ihre Dateien zu entschlüsseln."
-#: js/files.js:302
+#: js/files.js:349
msgid ""
"Your download is being prepared. This might take some time if the files are "
"big."
msgstr "Ihr Download wird vorbereitet. Dies kann bei grösseren Dateien etwas dauern."
-#: js/files.js:514 js/files.js:552
+#: js/files.js:558 js/files.js:596
msgid "Error moving file"
msgstr ""
-#: js/files.js:514 js/files.js:552
+#: js/files.js:558 js/files.js:596
msgid "Error"
msgstr "Fehler"
-#: js/files.js:569 templates/index.php:56
+#: js/files.js:613 templates/index.php:56
msgid "Name"
msgstr "Name"
-#: js/files.js:570 templates/index.php:68
+#: js/files.js:614 templates/index.php:68
msgid "Size"
msgstr "Grösse"
-#: js/files.js:571 templates/index.php:70
+#: js/files.js:615 templates/index.php:70
msgid "Modified"
msgstr "Geändert"
diff --git a/l10n/de_CH/files_sharing.po b/l10n/de_CH/files_sharing.po
index b3c9398ba27..cca85c8616d 100644
--- a/l10n/de_CH/files_sharing.po
+++ b/l10n/de_CH/files_sharing.po
@@ -9,9 +9,9 @@
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
-"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-10-29 07:28-0400\n"
-"PO-Revision-Date: 2013-10-28 10:45+0000\n"
+"Report-Msgid-Bugs-To: translations@owncloud.org\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/de_CH/settings.po b/l10n/de_CH/settings.po
index dd69160378a..eafde39871f 100644
--- a/l10n/de_CH/settings.po
+++ b/l10n/de_CH/settings.po
@@ -16,8 +16,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-06 21:43-0500\n"
-"PO-Revision-Date: 2013-11-07 02:43+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/de_CH/user_ldap.po b/l10n/de_CH/user_ldap.po
index 974ec72ec17..ccaf40dee60 100644
--- a/l10n/de_CH/user_ldap.po
+++ b/l10n/de_CH/user_ldap.po
@@ -15,8 +15,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-03 12:38-0500\n"
-"PO-Revision-Date: 2013-11-03 17:39+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n"
"MIME-Version: 1.0\n"
@@ -144,6 +144,10 @@ msgstr ""
msgid "Could not find the desired feature"
msgstr ""
+#: templates/part.settingcontrols.php:2
+msgid "Save"
+msgstr "Speichern"
+
#: templates/part.settingcontrols.php:4
msgid "Test Configuration"
msgstr "Testkonfiguration"
diff --git a/l10n/de_DE/core.po b/l10n/de_DE/core.po
index 5a82d8a3f55..0e5e1881503 100644
--- a/l10n/de_DE/core.po
+++ b/l10n/de_DE/core.po
@@ -15,8 +15,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-03 12:38-0500\n"
-"PO-Revision-Date: 2013-10-30 07:50+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:11+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/de_DE/files.po b/l10n/de_DE/files.po
index 922c7257c49..7b8f701473d 100644
--- a/l10n/de_DE/files.po
+++ b/l10n/de_DE/files.po
@@ -16,8 +16,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-06 21:43-0500\n"
-"PO-Revision-Date: 2013-11-05 09:59+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-09 07:01+0000\n"
"Last-Translator: Mario Siegmann \n"
"Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n"
"MIME-Version: 1.0\n"
@@ -151,32 +151,32 @@ msgstr "Nicht genügend Speicherplatz verfügbar"
msgid "Upload cancelled."
msgstr "Upload abgebrochen."
-#: js/file-upload.js:345
+#: js/file-upload.js:344
msgid "Could not get result from server."
msgstr "Ergebnis konnte nicht vom Server abgerufen werden."
-#: js/file-upload.js:437
+#: js/file-upload.js:436
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr "Dateiupload läuft. Wenn Sie die Seite jetzt verlassen, wird der Upload abgebrochen."
-#: js/file-upload.js:520
+#: js/file-upload.js:519
msgid "URL cannot be empty"
msgstr "Die URL darf nicht leer sein"
-#: js/file-upload.js:524 js/filelist.js:371
+#: js/file-upload.js:523 js/filelist.js:371
msgid "In the home folder 'Shared' is a reserved filename"
msgstr "Das Benutzerverzeichnis 'Shared' ist ein reservierter Dateiname"
-#: js/file-upload.js:526 js/filelist.js:373
+#: js/file-upload.js:525 js/filelist.js:373
msgid "{new_name} already exists"
msgstr "{new_name} existiert bereits"
-#: js/file-upload.js:586
+#: js/file-upload.js:585
msgid "Could not create file"
msgstr "Datei konnte nicht erstellt werden"
-#: js/file-upload.js:602
+#: js/file-upload.js:601
msgid "Could not create folder"
msgstr "Der Ordner konnte nicht erstellt werden"
diff --git a/l10n/de_DE/files_sharing.po b/l10n/de_DE/files_sharing.po
index c74f6b5033c..1b1aaee2820 100644
--- a/l10n/de_DE/files_sharing.po
+++ b/l10n/de_DE/files_sharing.po
@@ -8,9 +8,9 @@
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
-"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-10-29 07:28-0400\n"
-"PO-Revision-Date: 2013-10-28 10:45+0000\n"
+"Report-Msgid-Bugs-To: translations@owncloud.org\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+0000\n"
"Last-Translator: Mario Siegmann \n"
"Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po
index fdebe2f71f3..7aa95b7b188 100644
--- a/l10n/de_DE/settings.po
+++ b/l10n/de_DE/settings.po
@@ -14,9 +14,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-06 21:43-0500\n"
-"PO-Revision-Date: 2013-11-07 02:43+0000\n"
-"Last-Translator: I Robot \n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+0000\n"
+"Last-Translator: Mario Siegmann \n"
"Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -35,11 +35,11 @@ msgstr "Authentifizierungs-Fehler"
#: ajax/changedisplayname.php:31
msgid "Your full name has been changed."
-msgstr ""
+msgstr "Ihr vollständiger Name ist geändert worden."
#: ajax/changedisplayname.php:34
msgid "Unable to change full name"
-msgstr ""
+msgstr "Der vollständige Name konnte nicht geändert werden"
#: ajax/creategroup.php:10
msgid "Group already exists"
@@ -512,7 +512,7 @@ msgstr "Passwort ändern"
#: templates/personal.php:58 templates/users.php:88
msgid "Full Name"
-msgstr ""
+msgstr "Vollständiger Name"
#: templates/personal.php:73
msgid "Email"
@@ -633,7 +633,7 @@ msgstr "Speicher"
#: templates/users.php:108
msgid "change full name"
-msgstr ""
+msgstr "Vollständigen Namen ändern"
#: templates/users.php:112
msgid "set new password"
diff --git a/l10n/de_DE/user_ldap.po b/l10n/de_DE/user_ldap.po
index 5d79854b722..fd4ef74ae17 100644
--- a/l10n/de_DE/user_ldap.po
+++ b/l10n/de_DE/user_ldap.po
@@ -13,9 +13,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-06 21:43-0500\n"
-"PO-Revision-Date: 2013-11-05 09:59+0000\n"
-"Last-Translator: Mario Siegmann \n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+0000\n"
+"Last-Translator: I Robot \n"
"Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -142,6 +142,10 @@ msgstr "Ungültiger Host"
msgid "Could not find the desired feature"
msgstr "Konnte die gewünschte Funktion nicht finden"
+#: templates/part.settingcontrols.php:2
+msgid "Save"
+msgstr "Speichern"
+
#: templates/part.settingcontrols.php:4
msgid "Test Configuration"
msgstr "Testkonfiguration"
diff --git a/l10n/el/core.po b/l10n/el/core.po
index e35b8730188..e0dc660db48 100644
--- a/l10n/el/core.po
+++ b/l10n/el/core.po
@@ -15,8 +15,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-03 12:38-0500\n"
-"PO-Revision-Date: 2013-10-30 07:50+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+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.po b/l10n/el/files.po
index aab022e2c19..828a0014bd5 100644
--- a/l10n/el/files.po
+++ b/l10n/el/files.po
@@ -11,8 +11,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-03 12:38-0500\n"
-"PO-Revision-Date: 2013-11-03 17:38+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-09 07:01+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n"
"MIME-Version: 1.0\n"
@@ -31,7 +31,7 @@ msgstr "Αδυναμία μετακίνησης του %s - υπάρχει ήδ
msgid "Could not move %s"
msgstr "Αδυναμία μετακίνησης του %s"
-#: ajax/newfile.php:56 js/files.js:27
+#: ajax/newfile.php:56 js/files.js:74
msgid "File name cannot be empty."
msgstr "Το όνομα αρχείου δεν μπορεί να είναι κενό."
@@ -55,7 +55,7 @@ msgstr ""
msgid "Error while downloading %s to %s"
msgstr ""
-#: ajax/newfile.php:127
+#: ajax/newfile.php:128
msgid "Error when creating the file"
msgstr ""
@@ -118,15 +118,15 @@ msgstr "Αποτυχία εγγραφής στο δίσκο"
msgid "Not enough storage available"
msgstr "Μη επαρκής διαθέσιμος αποθηκευτικός χώρος"
-#: ajax/upload.php:127 ajax/upload.php:153
+#: ajax/upload.php:127 ajax/upload.php:154
msgid "Upload failed. Could not get file info."
msgstr ""
-#: ajax/upload.php:143
+#: ajax/upload.php:144
msgid "Upload failed. Could not find uploaded file"
msgstr ""
-#: ajax/upload.php:170
+#: ajax/upload.php:172
msgid "Invalid directory."
msgstr "Μη έγκυρος φάκελος."
@@ -146,24 +146,24 @@ msgstr "Δεν υπάρχει αρκετός διαθέσιμος χώρος"
msgid "Upload cancelled."
msgstr "Η αποστολή ακυρώθηκε."
-#: js/file-upload.js:345
+#: js/file-upload.js:344
msgid "Could not get result from server."
msgstr ""
-#: js/file-upload.js:437
+#: js/file-upload.js:436
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr "Η αποστολή του αρχείου βρίσκεται σε εξέλιξη. Το κλείσιμο της σελίδας θα ακυρώσει την αποστολή."
-#: js/file-upload.js:520
+#: js/file-upload.js:519
msgid "URL cannot be empty"
msgstr ""
-#: js/file-upload.js:524 js/filelist.js:364
+#: js/file-upload.js:523 js/filelist.js:371
msgid "In the home folder 'Shared' is a reserved filename"
msgstr ""
-#: js/file-upload.js:526 js/filelist.js:366
+#: js/file-upload.js:525 js/filelist.js:373
msgid "{new_name} already exists"
msgstr "{new_name} υπάρχει ήδη"
@@ -187,104 +187,104 @@ msgstr "Μόνιμη διαγραφή"
msgid "Rename"
msgstr "Μετονομασία"
-#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:854
+#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:857
msgid "Pending"
msgstr "Εκκρεμεί"
-#: js/filelist.js:392
+#: js/filelist.js:399
msgid "Could not rename file"
msgstr ""
-#: js/filelist.js:511
+#: js/filelist.js:518
msgid "replaced {new_name} with {old_name}"
msgstr "αντικαταστάθηκε το {new_name} με {old_name}"
-#: js/filelist.js:511
+#: js/filelist.js:518
msgid "undo"
msgstr "αναίρεση"
-#: js/filelist.js:582 js/filelist.js:649 js/files.js:587
+#: js/filelist.js:578 js/filelist.js:652 js/files.js:631
msgid "%n folder"
msgid_plural "%n folders"
msgstr[0] "%n φάκελος"
msgstr[1] "%n φάκελοι"
-#: js/filelist.js:583 js/filelist.js:650 js/files.js:593
+#: js/filelist.js:579 js/filelist.js:653 js/files.js:637
msgid "%n file"
msgid_plural "%n files"
msgstr[0] "%n αρχείο"
msgstr[1] "%n αρχεία"
-#: js/filelist.js:590
+#: js/filelist.js:586
msgid "{dirs} and {files}"
msgstr ""
-#: js/filelist.js:793 js/filelist.js:831
+#: js/filelist.js:796 js/filelist.js:834
msgid "Uploading %n file"
msgid_plural "Uploading %n files"
msgstr[0] "Ανέβασμα %n αρχείου"
msgstr[1] "Ανέβασμα %n αρχείων"
-#: js/files.js:25
+#: js/files.js:72
msgid "'.' is an invalid file name."
msgstr "'.' είναι μη έγκυρο όνομα αρχείου."
-#: js/files.js:34
+#: js/files.js:81
msgid ""
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not "
"allowed."
msgstr "Μη έγκυρο όνομα, '\\', '/', '<', '>', ':', '\"', '|', '?' και '*' δεν επιτρέπονται."
-#: js/files.js:46
+#: js/files.js:93
msgid "Your storage is full, files can not be updated or synced anymore!"
msgstr "Ο αποθηκευτικός σας χώρος είναι γεμάτος, τα αρχεία δεν μπορούν να ενημερωθούν ή να συγχρονιστούν πια!"
-#: js/files.js:50
+#: js/files.js:97
msgid "Your storage is almost full ({usedSpacePercent}%)"
msgstr "Ο αποθηκευτικός χώρος είναι σχεδόν γεμάτος ({usedSpacePercent}%)"
-#: js/files.js:63
+#: js/files.js:110
msgid ""
"Encryption App is enabled but your keys are not initialized, please log-out "
"and log-in again"
msgstr ""
-#: js/files.js:67
+#: js/files.js:114
msgid ""
"Invalid private key for Encryption App. Please update your private key "
"password in your personal settings to recover access to your encrypted "
"files."
msgstr ""
-#: js/files.js:71
+#: js/files.js:118
msgid ""
"Encryption was disabled but your files are still encrypted. Please go to "
"your personal settings to decrypt your files."
msgstr "Η κρυπτογράφηση απενεργοποιήθηκε, αλλά τα αρχεία σας είναι ακόμα κρυπτογραφημένα. Παρακαλούμε απενεργοποιήσετε την κρυπτογράφηση αρχείων από τις προσωπικές σας ρυθμίσεις"
-#: js/files.js:302
+#: js/files.js:349
msgid ""
"Your download is being prepared. This might take some time if the files are "
"big."
msgstr "Η λήψη προετοιμάζεται. Αυτό μπορεί να πάρει ώρα εάν τα αρχεία έχουν μεγάλο μέγεθος."
-#: js/files.js:514 js/files.js:552
+#: js/files.js:558 js/files.js:596
msgid "Error moving file"
msgstr "Σφάλμα κατά τη μετακίνηση του αρχείου"
-#: js/files.js:514 js/files.js:552
+#: js/files.js:558 js/files.js:596
msgid "Error"
msgstr "Σφάλμα"
-#: js/files.js:569 templates/index.php:56
+#: js/files.js:613 templates/index.php:56
msgid "Name"
msgstr "Όνομα"
-#: js/files.js:570 templates/index.php:68
+#: js/files.js:614 templates/index.php:68
msgid "Size"
msgstr "Μέγεθος"
-#: js/files.js:571 templates/index.php:70
+#: js/files.js:615 templates/index.php:70
msgid "Modified"
msgstr "Τροποποιήθηκε"
diff --git a/l10n/el/files_sharing.po b/l10n/el/files_sharing.po
index 0c2c2811bc5..f3aac82bb36 100644
--- a/l10n/el/files_sharing.po
+++ b/l10n/el/files_sharing.po
@@ -7,9 +7,9 @@
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
-"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-10-29 07:28-0400\n"
-"PO-Revision-Date: 2013-10-28 10:45+0000\n"
+"Report-Msgid-Bugs-To: translations@owncloud.org\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+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/settings.po b/l10n/el/settings.po
index db121474dd9..f2ea929c442 100644
--- a/l10n/el/settings.po
+++ b/l10n/el/settings.po
@@ -13,8 +13,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-06 21:43-0500\n"
-"PO-Revision-Date: 2013-11-07 02:43+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+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 026e3b36af2..81aa0ca8731 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: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-03 12:38-0500\n"
-"PO-Revision-Date: 2013-11-03 17:39+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+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"
@@ -136,6 +136,10 @@ msgstr ""
msgid "Could not find the desired feature"
msgstr ""
+#: templates/part.settingcontrols.php:2
+msgid "Save"
+msgstr "Αποθήκευση"
+
#: templates/part.settingcontrols.php:4
msgid "Test Configuration"
msgstr "Δοκιμαστικες ρυθμισεις"
diff --git a/l10n/en@pirate/core.po b/l10n/en@pirate/core.po
index 2405df4dcd1..8e26e5fafeb 100644
--- a/l10n/en@pirate/core.po
+++ b/l10n/en@pirate/core.po
@@ -7,9 +7,9 @@
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
-"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-10-30 03:32-0400\n"
-"PO-Revision-Date: 2013-10-30 07:32+0000\n"
+"Report-Msgid-Bugs-To: translations@owncloud.org\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:11+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"
@@ -277,12 +277,12 @@ msgstr ""
msgid "Share"
msgstr ""
-#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:690
-#: js/share.js:702
+#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:692
+#: js/share.js:704
msgid "Error"
msgstr ""
-#: js/share.js:160 js/share.js:730
+#: js/share.js:160 js/share.js:732
msgid "Error while sharing"
msgstr ""
@@ -338,79 +338,79 @@ msgstr ""
msgid "Expiration date"
msgstr ""
-#: js/share.js:272
+#: js/share.js:274
msgid "Share via email:"
msgstr ""
-#: js/share.js:275
+#: js/share.js:277
msgid "No people found"
msgstr ""
-#: js/share.js:305 js/share.js:342
+#: js/share.js:307 js/share.js:344
msgid "group"
msgstr ""
-#: js/share.js:316
+#: js/share.js:318
msgid "Resharing is not allowed"
msgstr ""
-#: js/share.js:358
+#: js/share.js:360
msgid "Shared in {item} with {user}"
msgstr ""
-#: js/share.js:380
+#: js/share.js:382
msgid "Unshare"
msgstr ""
-#: js/share.js:388
+#: js/share.js:390
msgid "notify by email"
msgstr ""
-#: js/share.js:391
+#: js/share.js:393
msgid "can edit"
msgstr ""
-#: js/share.js:393
+#: js/share.js:395
msgid "access control"
msgstr ""
-#: js/share.js:396
+#: js/share.js:398
msgid "create"
msgstr ""
-#: js/share.js:399
+#: js/share.js:401
msgid "update"
msgstr ""
-#: js/share.js:402
+#: js/share.js:404
msgid "delete"
msgstr ""
-#: js/share.js:405
+#: js/share.js:407
msgid "share"
msgstr ""
-#: js/share.js:447 js/share.js:677
+#: js/share.js:449 js/share.js:679
msgid "Password protected"
msgstr ""
-#: js/share.js:690
+#: js/share.js:692
msgid "Error unsetting expiration date"
msgstr ""
-#: js/share.js:702
+#: js/share.js:704
msgid "Error setting expiration date"
msgstr ""
-#: js/share.js:717
+#: js/share.js:719
msgid "Sending ..."
msgstr ""
-#: js/share.js:728
+#: js/share.js:730
msgid "Email sent"
msgstr ""
-#: js/share.js:752
+#: js/share.js:754
msgid "Warning"
msgstr ""
diff --git a/l10n/en@pirate/files_sharing.po b/l10n/en@pirate/files_sharing.po
index c0d3a08cba2..d63d2e37d9c 100644
--- a/l10n/en@pirate/files_sharing.po
+++ b/l10n/en@pirate/files_sharing.po
@@ -7,9 +7,9 @@
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
-"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-10-29 07:28-0400\n"
-"PO-Revision-Date: 2013-10-28 10:45+0000\n"
+"Report-Msgid-Bugs-To: translations@owncloud.org\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+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/settings.po b/l10n/en@pirate/settings.po
index 8ee9bb6c316..acdd7e85d81 100644
--- a/l10n/en@pirate/settings.po
+++ b/l10n/en@pirate/settings.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-06 21:43-0500\n"
-"PO-Revision-Date: 2013-11-07 02:43+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+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/user_ldap.po b/l10n/en@pirate/user_ldap.po
index a45dc03d932..d157aa65e4b 100644
--- a/l10n/en@pirate/user_ldap.po
+++ b/l10n/en@pirate/user_ldap.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-03 12:38-0500\n"
-"PO-Revision-Date: 2013-11-03 17:39+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+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"
@@ -136,6 +136,10 @@ msgstr ""
msgid "Could not find the desired feature"
msgstr ""
+#: templates/part.settingcontrols.php:2
+msgid "Save"
+msgstr ""
+
#: templates/part.settingcontrols.php:4
msgid "Test Configuration"
msgstr ""
diff --git a/l10n/en_GB/core.po b/l10n/en_GB/core.po
index d1826234679..1c80f38b935 100644
--- a/l10n/en_GB/core.po
+++ b/l10n/en_GB/core.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-03 12:38-0500\n"
-"PO-Revision-Date: 2013-10-31 16:40+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+0000\n"
"Last-Translator: mnestis \n"
"Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/en_GB/files.po b/l10n/en_GB/files.po
index bc79b967382..e98b5de92f9 100644
--- a/l10n/en_GB/files.po
+++ b/l10n/en_GB/files.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-06 21:43-0500\n"
-"PO-Revision-Date: 2013-11-04 17:40+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-09 07:01+0000\n"
"Last-Translator: mnestis \n"
"Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n"
"MIME-Version: 1.0\n"
@@ -143,32 +143,32 @@ msgstr "Not enough space available"
msgid "Upload cancelled."
msgstr "Upload cancelled."
-#: js/file-upload.js:345
+#: js/file-upload.js:344
msgid "Could not get result from server."
msgstr "Could not get result from server."
-#: js/file-upload.js:437
+#: js/file-upload.js:436
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr "File upload is in progress. Leaving the page now will cancel the upload."
-#: js/file-upload.js:520
+#: js/file-upload.js:519
msgid "URL cannot be empty"
msgstr "URL cannot be empty"
-#: js/file-upload.js:524 js/filelist.js:371
+#: js/file-upload.js:523 js/filelist.js:371
msgid "In the home folder 'Shared' is a reserved filename"
msgstr "In the home folder 'Shared' is a reserved file name"
-#: js/file-upload.js:526 js/filelist.js:373
+#: js/file-upload.js:525 js/filelist.js:373
msgid "{new_name} already exists"
msgstr "{new_name} already exists"
-#: js/file-upload.js:586
+#: js/file-upload.js:585
msgid "Could not create file"
msgstr "Could not create file"
-#: js/file-upload.js:602
+#: js/file-upload.js:601
msgid "Could not create folder"
msgstr "Could not create folder"
diff --git a/l10n/en_GB/files_sharing.po b/l10n/en_GB/files_sharing.po
index c550a2c5811..ccbfe64ab39 100644
--- a/l10n/en_GB/files_sharing.po
+++ b/l10n/en_GB/files_sharing.po
@@ -7,9 +7,9 @@
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
-"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-10-29 07:28-0400\n"
-"PO-Revision-Date: 2013-10-28 10:45+0000\n"
+"Report-Msgid-Bugs-To: translations@owncloud.org\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+0000\n"
"Last-Translator: mnestis \n"
"Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/en_GB/settings.po b/l10n/en_GB/settings.po
index c67da372c8d..42947c7fe77 100644
--- a/l10n/en_GB/settings.po
+++ b/l10n/en_GB/settings.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-06 21:43-0500\n"
-"PO-Revision-Date: 2013-11-07 02:43+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/en_GB/user_ldap.po b/l10n/en_GB/user_ldap.po
index a9eb53b4244..6bed4dda902 100644
--- a/l10n/en_GB/user_ldap.po
+++ b/l10n/en_GB/user_ldap.po
@@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-06 21:43-0500\n"
-"PO-Revision-Date: 2013-11-04 17:40+0000\n"
-"Last-Translator: mnestis \n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+0000\n"
+"Last-Translator: I Robot \n"
"Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -137,6 +137,10 @@ msgstr "Invalid Host"
msgid "Could not find the desired feature"
msgstr "Could not find the desired feature"
+#: templates/part.settingcontrols.php:2
+msgid "Save"
+msgstr "Save"
+
#: templates/part.settingcontrols.php:4
msgid "Test Configuration"
msgstr "Test Configuration"
diff --git a/l10n/eo/core.po b/l10n/eo/core.po
index e81b47c0c93..2d1f9ab8ff0 100644
--- a/l10n/eo/core.po
+++ b/l10n/eo/core.po
@@ -8,9 +8,9 @@
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
-"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-10-30 03:32-0400\n"
-"PO-Revision-Date: 2013-10-30 07:32+0000\n"
+"Report-Msgid-Bugs-To: translations@owncloud.org\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:11+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"
@@ -278,12 +278,12 @@ msgstr "Dividita"
msgid "Share"
msgstr "Kunhavigi"
-#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:690
-#: js/share.js:702
+#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:692
+#: js/share.js:704
msgid "Error"
msgstr "Eraro"
-#: js/share.js:160 js/share.js:730
+#: js/share.js:160 js/share.js:732
msgid "Error while sharing"
msgstr "Eraro dum kunhavigo"
@@ -339,79 +339,79 @@ msgstr "Agordi limdaton"
msgid "Expiration date"
msgstr "Limdato"
-#: js/share.js:272
+#: js/share.js:274
msgid "Share via email:"
msgstr "Kunhavigi per retpoŝto:"
-#: js/share.js:275
+#: js/share.js:277
msgid "No people found"
msgstr "Ne troviĝis gento"
-#: js/share.js:305 js/share.js:342
+#: js/share.js:307 js/share.js:344
msgid "group"
msgstr "grupo"
-#: js/share.js:316
+#: js/share.js:318
msgid "Resharing is not allowed"
msgstr "Rekunhavigo ne permesatas"
-#: js/share.js:358
+#: js/share.js:360
msgid "Shared in {item} with {user}"
msgstr "Kunhavigita en {item} kun {user}"
-#: js/share.js:380
+#: js/share.js:382
msgid "Unshare"
msgstr "Malkunhavigi"
-#: js/share.js:388
+#: js/share.js:390
msgid "notify by email"
msgstr ""
-#: js/share.js:391
+#: js/share.js:393
msgid "can edit"
msgstr "povas redakti"
-#: js/share.js:393
+#: js/share.js:395
msgid "access control"
msgstr "alirkontrolo"
-#: js/share.js:396
+#: js/share.js:398
msgid "create"
msgstr "krei"
-#: js/share.js:399
+#: js/share.js:401
msgid "update"
msgstr "ĝisdatigi"
-#: js/share.js:402
+#: js/share.js:404
msgid "delete"
msgstr "forigi"
-#: js/share.js:405
+#: js/share.js:407
msgid "share"
msgstr "kunhavigi"
-#: js/share.js:447 js/share.js:677
+#: js/share.js:449 js/share.js:679
msgid "Password protected"
msgstr "Protektita per pasvorto"
-#: js/share.js:690
+#: js/share.js:692
msgid "Error unsetting expiration date"
msgstr "Eraro dum malagordado de limdato"
-#: js/share.js:702
+#: js/share.js:704
msgid "Error setting expiration date"
msgstr "Eraro dum agordado de limdato"
-#: js/share.js:717
+#: js/share.js:719
msgid "Sending ..."
msgstr "Sendante..."
-#: js/share.js:728
+#: js/share.js:730
msgid "Email sent"
msgstr "La retpoŝtaĵo sendiĝis"
-#: js/share.js:752
+#: js/share.js:754
msgid "Warning"
msgstr "Averto"
diff --git a/l10n/eo/files.po b/l10n/eo/files.po
index 357ffe4c626..924a7f96d7f 100644
--- a/l10n/eo/files.po
+++ b/l10n/eo/files.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-06 21:43-0500\n"
-"PO-Revision-Date: 2013-11-03 19:52+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-09 07:01+0000\n"
"Last-Translator: Mariano \n"
"Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n"
"MIME-Version: 1.0\n"
@@ -143,32 +143,32 @@ msgstr "Ne haveblas sufiĉa spaco"
msgid "Upload cancelled."
msgstr "La alŝuto nuliĝis."
-#: js/file-upload.js:345
+#: js/file-upload.js:344
msgid "Could not get result from server."
msgstr "Ne povis ekhaviĝi rezulto el la servilo."
-#: js/file-upload.js:437
+#: js/file-upload.js:436
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr "Dosieralŝuto plenumiĝas. Lasi la paĝon nun nuligus la alŝuton."
-#: js/file-upload.js:520
+#: js/file-upload.js:519
msgid "URL cannot be empty"
msgstr "La URL ne povas malpleni"
-#: js/file-upload.js:524 js/filelist.js:371
+#: js/file-upload.js:523 js/filelist.js:371
msgid "In the home folder 'Shared' is a reserved filename"
msgstr ""
-#: js/file-upload.js:526 js/filelist.js:373
+#: js/file-upload.js:525 js/filelist.js:373
msgid "{new_name} already exists"
msgstr "{new_name} jam ekzistas"
-#: js/file-upload.js:586
+#: js/file-upload.js:585
msgid "Could not create file"
msgstr "Ne povis kreiĝi dosiero"
-#: js/file-upload.js:602
+#: js/file-upload.js:601
msgid "Could not create folder"
msgstr "Ne povis kreiĝi dosierujo"
diff --git a/l10n/eo/files_sharing.po b/l10n/eo/files_sharing.po
index 6ab072866df..efde7825f71 100644
--- a/l10n/eo/files_sharing.po
+++ b/l10n/eo/files_sharing.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-03 14:38-0500\n"
-"PO-Revision-Date: 2013-11-03 19:20+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+0000\n"
"Last-Translator: Mariano \n"
"Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/eo/settings.po b/l10n/eo/settings.po
index d9044aa0db6..32798c9af34 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: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-06 21:43-0500\n"
-"PO-Revision-Date: 2013-11-07 02:43+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+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 0c18a116964..c0dff8def5c 100644
--- a/l10n/eo/user_ldap.po
+++ b/l10n/eo/user_ldap.po
@@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-06 21:43-0500\n"
-"PO-Revision-Date: 2013-11-03 20:21+0000\n"
-"Last-Translator: Mariano \n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+0000\n"
+"Last-Translator: I Robot \n"
"Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -137,6 +137,10 @@ msgstr "Nevalida gastigo"
msgid "Could not find the desired feature"
msgstr ""
+#: templates/part.settingcontrols.php:2
+msgid "Save"
+msgstr "Konservi"
+
#: templates/part.settingcontrols.php:4
msgid "Test Configuration"
msgstr "Provi agordon"
diff --git a/l10n/es/core.po b/l10n/es/core.po
index 837f159d758..bbe11617efa 100644
--- a/l10n/es/core.po
+++ b/l10n/es/core.po
@@ -19,8 +19,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-03 12:38-0500\n"
-"PO-Revision-Date: 2013-10-30 07:50+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:11+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.po b/l10n/es/files.po
index 58c8154703a..ace67ff7784 100644
--- a/l10n/es/files.po
+++ b/l10n/es/files.po
@@ -16,8 +16,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-06 21:43-0500\n"
-"PO-Revision-Date: 2013-11-03 20:01+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-09 07:01+0000\n"
"Last-Translator: Raul Fernandez Garcia \n"
"Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n"
"MIME-Version: 1.0\n"
@@ -151,32 +151,32 @@ msgstr "No hay suficiente espacio disponible"
msgid "Upload cancelled."
msgstr "Subida cancelada."
-#: js/file-upload.js:345
+#: js/file-upload.js:344
msgid "Could not get result from server."
msgstr "No se pudo obtener respuesta del servidor."
-#: js/file-upload.js:437
+#: js/file-upload.js:436
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr "La subida del archivo está en proceso. Si sale de la página ahora, la subida será cancelada."
-#: js/file-upload.js:520
+#: js/file-upload.js:519
msgid "URL cannot be empty"
msgstr "La dirección URL no puede estar vacía"
-#: js/file-upload.js:524 js/filelist.js:371
+#: js/file-upload.js:523 js/filelist.js:371
msgid "In the home folder 'Shared' is a reserved filename"
msgstr "En la carpeta de inicio, 'Shared' es un nombre reservado"
-#: js/file-upload.js:526 js/filelist.js:373
+#: js/file-upload.js:525 js/filelist.js:373
msgid "{new_name} already exists"
msgstr "{new_name} ya existe"
-#: js/file-upload.js:586
+#: js/file-upload.js:585
msgid "Could not create file"
msgstr "No se pudo crear el archivo"
-#: js/file-upload.js:602
+#: js/file-upload.js:601
msgid "Could not create folder"
msgstr "No se pudo crear la carpeta"
diff --git a/l10n/es/files_sharing.po b/l10n/es/files_sharing.po
index 33f41a66523..49cc4db546a 100644
--- a/l10n/es/files_sharing.po
+++ b/l10n/es/files_sharing.po
@@ -10,9 +10,9 @@
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
-"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-10-29 07:28-0400\n"
-"PO-Revision-Date: 2013-10-28 10:45+0000\n"
+"Report-Msgid-Bugs-To: translations@owncloud.org\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+0000\n"
"Last-Translator: Rubén del Campo \n"
"Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/es/settings.po b/l10n/es/settings.po
index 0ebe0fa04c4..0b8480bf950 100644
--- a/l10n/es/settings.po
+++ b/l10n/es/settings.po
@@ -19,9 +19,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-06 21:43-0500\n"
-"PO-Revision-Date: 2013-11-07 02:43+0000\n"
-"Last-Translator: I Robot \n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+0000\n"
+"Last-Translator: Art O. Pal \n"
"Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -40,11 +40,11 @@ msgstr "Error de autenticación"
#: ajax/changedisplayname.php:31
msgid "Your full name has been changed."
-msgstr ""
+msgstr "Se ha cambiado su nombre completo."
#: ajax/changedisplayname.php:34
msgid "Unable to change full name"
-msgstr ""
+msgstr "No se puede cambiar el nombre completo"
#: ajax/creategroup.php:10
msgid "Group already exists"
@@ -517,7 +517,7 @@ msgstr "Cambiar contraseña"
#: templates/personal.php:58 templates/users.php:88
msgid "Full Name"
-msgstr ""
+msgstr "Nombre completo"
#: templates/personal.php:73
msgid "Email"
@@ -638,7 +638,7 @@ msgstr "Almacenamiento"
#: templates/users.php:108
msgid "change full name"
-msgstr ""
+msgstr "cambiar el nombre completo"
#: templates/users.php:112
msgid "set new password"
diff --git a/l10n/es/user_ldap.po b/l10n/es/user_ldap.po
index 4f2975cbf05..ac8e6672195 100644
--- a/l10n/es/user_ldap.po
+++ b/l10n/es/user_ldap.po
@@ -14,9 +14,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-06 21:43-0500\n"
-"PO-Revision-Date: 2013-11-03 20:01+0000\n"
-"Last-Translator: Raul Fernandez Garcia \n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+0000\n"
+"Last-Translator: I Robot \n"
"Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -143,6 +143,10 @@ msgstr "Host inválido"
msgid "Could not find the desired feature"
msgstr "No se puede encontrar la función deseada."
+#: templates/part.settingcontrols.php:2
+msgid "Save"
+msgstr "Guardar"
+
#: templates/part.settingcontrols.php:4
msgid "Test Configuration"
msgstr "Configuración de prueba"
diff --git a/l10n/es_AR/core.po b/l10n/es_AR/core.po
index dd3194d78b9..e199a97b497 100644
--- a/l10n/es_AR/core.po
+++ b/l10n/es_AR/core.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-03 12:38-0500\n"
-"PO-Revision-Date: 2013-10-30 07:50+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:11+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 4d0cdb27edd..1d0584cf168 100644
--- a/l10n/es_AR/files.po
+++ b/l10n/es_AR/files.po
@@ -11,8 +11,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-03 12:38-0500\n"
-"PO-Revision-Date: 2013-11-03 17:38+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-09 07:01+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"
@@ -31,7 +31,7 @@ msgstr "No se pudo mover %s - Un archivo con este nombre ya existe"
msgid "Could not move %s"
msgstr "No se pudo mover %s "
-#: ajax/newfile.php:56 js/files.js:27
+#: ajax/newfile.php:56 js/files.js:74
msgid "File name cannot be empty."
msgstr "El nombre del archivo no puede quedar vacío."
@@ -55,7 +55,7 @@ msgstr ""
msgid "Error while downloading %s to %s"
msgstr ""
-#: ajax/newfile.php:127
+#: ajax/newfile.php:128
msgid "Error when creating the file"
msgstr ""
@@ -118,15 +118,15 @@ msgstr "Error al escribir en el disco"
msgid "Not enough storage available"
msgstr "No hay suficiente almacenamiento"
-#: ajax/upload.php:127 ajax/upload.php:153
+#: ajax/upload.php:127 ajax/upload.php:154
msgid "Upload failed. Could not get file info."
msgstr ""
-#: ajax/upload.php:143
+#: ajax/upload.php:144
msgid "Upload failed. Could not find uploaded file"
msgstr ""
-#: ajax/upload.php:170
+#: ajax/upload.php:172
msgid "Invalid directory."
msgstr "Directorio inválido."
@@ -146,24 +146,24 @@ msgstr "No hay suficiente espacio disponible"
msgid "Upload cancelled."
msgstr "La subida fue cancelada"
-#: js/file-upload.js:345
+#: js/file-upload.js:344
msgid "Could not get result from server."
msgstr ""
-#: js/file-upload.js:437
+#: js/file-upload.js:436
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr "La subida del archivo está en proceso. Si salís de la página ahora, la subida se cancelará."
-#: js/file-upload.js:520
+#: js/file-upload.js:519
msgid "URL cannot be empty"
msgstr ""
-#: js/file-upload.js:524 js/filelist.js:364
+#: js/file-upload.js:523 js/filelist.js:371
msgid "In the home folder 'Shared' is a reserved filename"
msgstr ""
-#: js/file-upload.js:526 js/filelist.js:366
+#: js/file-upload.js:525 js/filelist.js:373
msgid "{new_name} already exists"
msgstr "{new_name} ya existe"
@@ -187,104 +187,104 @@ msgstr "Borrar permanentemente"
msgid "Rename"
msgstr "Cambiar nombre"
-#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:854
+#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:857
msgid "Pending"
msgstr "Pendientes"
-#: js/filelist.js:392
+#: js/filelist.js:399
msgid "Could not rename file"
msgstr ""
-#: js/filelist.js:511
+#: js/filelist.js:518
msgid "replaced {new_name} with {old_name}"
msgstr "se reemplazó {new_name} con {old_name}"
-#: js/filelist.js:511
+#: js/filelist.js:518
msgid "undo"
msgstr "deshacer"
-#: js/filelist.js:582 js/filelist.js:649 js/files.js:587
+#: js/filelist.js:578 js/filelist.js:652 js/files.js:631
msgid "%n folder"
msgid_plural "%n folders"
msgstr[0] "%n carpeta"
msgstr[1] "%n carpetas"
-#: js/filelist.js:583 js/filelist.js:650 js/files.js:593
+#: js/filelist.js:579 js/filelist.js:653 js/files.js:637
msgid "%n file"
msgid_plural "%n files"
msgstr[0] "%n archivo"
msgstr[1] "%n archivos"
-#: js/filelist.js:590
+#: js/filelist.js:586
msgid "{dirs} and {files}"
msgstr "{carpetas} y {archivos}"
-#: js/filelist.js:793 js/filelist.js:831
+#: js/filelist.js:796 js/filelist.js:834
msgid "Uploading %n file"
msgid_plural "Uploading %n files"
msgstr[0] "Subiendo %n archivo"
msgstr[1] "Subiendo %n archivos"
-#: js/files.js:25
+#: js/files.js:72
msgid "'.' is an invalid file name."
msgstr "'.' es un nombre de archivo inválido."
-#: js/files.js:34
+#: js/files.js:81
msgid ""
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not "
"allowed."
msgstr "Nombre invalido, '\\', '/', '<', '>', ':', '\"', '|', '?' y '*' no están permitidos."
-#: js/files.js:46
+#: js/files.js:93
msgid "Your storage is full, files can not be updated or synced anymore!"
msgstr "El almacenamiento está lleno, los archivos no se pueden seguir actualizando ni sincronizando"
-#: js/files.js:50
+#: js/files.js:97
msgid "Your storage is almost full ({usedSpacePercent}%)"
msgstr "El almacenamiento está casi lleno ({usedSpacePercent}%)"
-#: js/files.js:63
+#: js/files.js:110
msgid ""
"Encryption App is enabled but your keys are not initialized, please log-out "
"and log-in again"
msgstr ""
-#: js/files.js:67
+#: js/files.js:114
msgid ""
"Invalid private key for Encryption App. Please update your private key "
"password in your personal settings to recover access to your encrypted "
"files."
msgstr ""
-#: js/files.js:71
+#: js/files.js:118
msgid ""
"Encryption was disabled but your files are still encrypted. Please go to "
"your personal settings to decrypt your files."
msgstr "El proceso de cifrado se ha desactivado, pero los archivos aún están encriptados. Por favor, vaya a la configuración personal para descifrar los archivos."
-#: js/files.js:302
+#: js/files.js:349
msgid ""
"Your download is being prepared. This might take some time if the files are "
"big."
msgstr "Tu descarga se está preparando. Esto puede demorar si los archivos son muy grandes."
-#: js/files.js:514 js/files.js:552
+#: js/files.js:558 js/files.js:596
msgid "Error moving file"
msgstr ""
-#: js/files.js:514 js/files.js:552
+#: js/files.js:558 js/files.js:596
msgid "Error"
msgstr "Error"
-#: js/files.js:569 templates/index.php:56
+#: js/files.js:613 templates/index.php:56
msgid "Name"
msgstr "Nombre"
-#: js/files.js:570 templates/index.php:68
+#: js/files.js:614 templates/index.php:68
msgid "Size"
msgstr "Tamaño"
-#: js/files.js:571 templates/index.php:70
+#: js/files.js:615 templates/index.php:70
msgid "Modified"
msgstr "Modificado"
diff --git a/l10n/es_AR/files_sharing.po b/l10n/es_AR/files_sharing.po
index d781ce6d0f5..9269465465e 100644
--- a/l10n/es_AR/files_sharing.po
+++ b/l10n/es_AR/files_sharing.po
@@ -7,9 +7,9 @@
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
-"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-10-29 07:28-0400\n"
-"PO-Revision-Date: 2013-10-28 10:45+0000\n"
+"Report-Msgid-Bugs-To: translations@owncloud.org\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+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/settings.po b/l10n/es_AR/settings.po
index 8f5fed765e8..37dfddfa402 100644
--- a/l10n/es_AR/settings.po
+++ b/l10n/es_AR/settings.po
@@ -10,8 +10,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-06 21:43-0500\n"
-"PO-Revision-Date: 2013-11-07 02:43+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+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 7788181c551..7698b1faaa5 100644
--- a/l10n/es_AR/user_ldap.po
+++ b/l10n/es_AR/user_ldap.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-03 12:38-0500\n"
-"PO-Revision-Date: 2013-11-03 17:39+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+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"
@@ -137,6 +137,10 @@ msgstr ""
msgid "Could not find the desired feature"
msgstr ""
+#: templates/part.settingcontrols.php:2
+msgid "Save"
+msgstr "Guardar"
+
#: templates/part.settingcontrols.php:4
msgid "Test Configuration"
msgstr "Probar configuración"
diff --git a/l10n/es_MX/user_ldap.po b/l10n/es_MX/user_ldap.po
index e34c4624885..a475da33594 100644
--- a/l10n/es_MX/user_ldap.po
+++ b/l10n/es_MX/user_ldap.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-03 12:38-0500\n"
-"PO-Revision-Date: 2013-11-03 17:39+0000\n"
+"POT-Creation-Date: 2013-11-09 01:44-0500\n"
+"PO-Revision-Date: 2013-11-09 06:44+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n"
"MIME-Version: 1.0\n"
@@ -136,6 +136,10 @@ msgstr ""
msgid "Could not find the desired feature"
msgstr ""
+#: templates/part.settingcontrols.php:2
+msgid "Save"
+msgstr ""
+
#: templates/part.settingcontrols.php:4
msgid "Test Configuration"
msgstr ""
diff --git a/l10n/et_EE/core.po b/l10n/et_EE/core.po
index 356a998a106..380d7688281 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: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-06 21:43-0500\n"
-"PO-Revision-Date: 2013-11-04 09:40+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+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 45775d51d08..56df8ac9b2e 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: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-06 21:43-0500\n"
-"PO-Revision-Date: 2013-11-03 22:10+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-09 07:01+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"
@@ -144,32 +144,32 @@ msgstr "Pole piisavalt ruumi"
msgid "Upload cancelled."
msgstr "Üleslaadimine tühistati."
-#: js/file-upload.js:345
+#: js/file-upload.js:344
msgid "Could not get result from server."
msgstr "Serverist ei saadud tulemusi"
-#: js/file-upload.js:437
+#: js/file-upload.js:436
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr "Faili üleslaadimine on töös. Lehelt lahkumine katkestab selle üleslaadimise."
-#: js/file-upload.js:520
+#: js/file-upload.js:519
msgid "URL cannot be empty"
msgstr "URL ei saa olla tühi"
-#: js/file-upload.js:524 js/filelist.js:371
+#: js/file-upload.js:523 js/filelist.js:371
msgid "In the home folder 'Shared' is a reserved filename"
msgstr "Kodukataloogis 'Shared' on reserveeritud failinimi"
-#: js/file-upload.js:526 js/filelist.js:373
+#: js/file-upload.js:525 js/filelist.js:373
msgid "{new_name} already exists"
msgstr "{new_name} on juba olemas"
-#: js/file-upload.js:586
+#: js/file-upload.js:585
msgid "Could not create file"
msgstr "Ei suuda luua faili"
-#: js/file-upload.js:602
+#: js/file-upload.js:601
msgid "Could not create folder"
msgstr "Ei suuda luua kataloogi"
diff --git a/l10n/et_EE/files_sharing.po b/l10n/et_EE/files_sharing.po
index a4a2cef1b1d..4d76af06888 100644
--- a/l10n/et_EE/files_sharing.po
+++ b/l10n/et_EE/files_sharing.po
@@ -8,9 +8,9 @@
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
-"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-10-29 07:28-0400\n"
-"PO-Revision-Date: 2013-10-28 10:45+0000\n"
+"Report-Msgid-Bugs-To: translations@owncloud.org\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+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/settings.po b/l10n/et_EE/settings.po
index 82de71d5316..215fbbb44ee 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: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-06 21:43-0500\n"
-"PO-Revision-Date: 2013-11-07 02:43+0000\n"
-"Last-Translator: I Robot \n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+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"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -30,11 +30,11 @@ msgstr "Autentimise viga"
#: ajax/changedisplayname.php:31
msgid "Your full name has been changed."
-msgstr ""
+msgstr "Sinu täispikk nimi on muudetud."
#: ajax/changedisplayname.php:34
msgid "Unable to change full name"
-msgstr ""
+msgstr "Täispika nime muutmine ebaõnnestus"
#: ajax/creategroup.php:10
msgid "Group already exists"
@@ -507,7 +507,7 @@ msgstr "Muuda parooli"
#: templates/personal.php:58 templates/users.php:88
msgid "Full Name"
-msgstr ""
+msgstr "Täispikk nimi"
#: templates/personal.php:73
msgid "Email"
@@ -628,7 +628,7 @@ msgstr "Maht"
#: templates/users.php:108
msgid "change full name"
-msgstr ""
+msgstr "Muuda täispikka nime"
#: templates/users.php:112
msgid "set new password"
diff --git a/l10n/et_EE/user_ldap.po b/l10n/et_EE/user_ldap.po
index 9503bd57f98..eb5c36f056b 100644
--- a/l10n/et_EE/user_ldap.po
+++ b/l10n/et_EE/user_ldap.po
@@ -9,9 +9,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-06 21:43-0500\n"
-"PO-Revision-Date: 2013-11-04 09:50+0000\n"
-"Last-Translator: Rivo Zängov \n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+0000\n"
+"Last-Translator: I Robot \n"
"Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -138,6 +138,10 @@ msgstr "Vigane server"
msgid "Could not find the desired feature"
msgstr "Ei suuda leida soovitud funktsioonaalsust"
+#: templates/part.settingcontrols.php:2
+msgid "Save"
+msgstr "Salvesta"
+
#: templates/part.settingcontrols.php:4
msgid "Test Configuration"
msgstr "Testi seadistust"
diff --git a/l10n/eu/core.po b/l10n/eu/core.po
index 269c213c8b2..40fda75d95c 100644
--- a/l10n/eu/core.po
+++ b/l10n/eu/core.po
@@ -8,9 +8,9 @@
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
-"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-10-30 03:32-0400\n"
-"PO-Revision-Date: 2013-10-30 07:32+0000\n"
+"Report-Msgid-Bugs-To: translations@owncloud.org\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+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"
@@ -278,12 +278,12 @@ msgstr "Elkarbanatuta"
msgid "Share"
msgstr "Elkarbanatu"
-#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:690
-#: js/share.js:702
+#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:692
+#: js/share.js:704
msgid "Error"
msgstr "Errorea"
-#: js/share.js:160 js/share.js:730
+#: js/share.js:160 js/share.js:732
msgid "Error while sharing"
msgstr "Errore bat egon da elkarbanatzean"
@@ -339,79 +339,79 @@ msgstr "Ezarri muga data"
msgid "Expiration date"
msgstr "Muga data"
-#: js/share.js:272
+#: js/share.js:274
msgid "Share via email:"
msgstr "Elkarbanatu eposta bidez:"
-#: js/share.js:275
+#: js/share.js:277
msgid "No people found"
msgstr "Ez da inor aurkitu"
-#: js/share.js:305 js/share.js:342
+#: js/share.js:307 js/share.js:344
msgid "group"
msgstr "taldea"
-#: js/share.js:316
+#: js/share.js:318
msgid "Resharing is not allowed"
msgstr "Berriz elkarbanatzea ez dago baimendua"
-#: js/share.js:358
+#: js/share.js:360
msgid "Shared in {item} with {user}"
msgstr "{user}ekin {item}-n elkarbanatuta"
-#: js/share.js:380
+#: js/share.js:382
msgid "Unshare"
msgstr "Ez elkarbanatu"
-#: js/share.js:388
+#: js/share.js:390
msgid "notify by email"
msgstr ""
-#: js/share.js:391
+#: js/share.js:393
msgid "can edit"
msgstr "editatu dezake"
-#: js/share.js:393
+#: js/share.js:395
msgid "access control"
msgstr "sarrera kontrola"
-#: js/share.js:396
+#: js/share.js:398
msgid "create"
msgstr "sortu"
-#: js/share.js:399
+#: js/share.js:401
msgid "update"
msgstr "eguneratu"
-#: js/share.js:402
+#: js/share.js:404
msgid "delete"
msgstr "ezabatu"
-#: js/share.js:405
+#: js/share.js:407
msgid "share"
msgstr "elkarbanatu"
-#: js/share.js:447 js/share.js:677
+#: js/share.js:449 js/share.js:679
msgid "Password protected"
msgstr "Pasahitzarekin babestuta"
-#: js/share.js:690
+#: js/share.js:692
msgid "Error unsetting expiration date"
msgstr "Errorea izan da muga data kentzean"
-#: js/share.js:702
+#: js/share.js:704
msgid "Error setting expiration date"
msgstr "Errore bat egon da muga data ezartzean"
-#: js/share.js:717
+#: js/share.js:719
msgid "Sending ..."
msgstr "Bidaltzen ..."
-#: js/share.js:728
+#: js/share.js:730
msgid "Email sent"
msgstr "Eposta bidalia"
-#: js/share.js:752
+#: js/share.js:754
msgid "Warning"
msgstr "Abisua"
diff --git a/l10n/eu/files.po b/l10n/eu/files.po
index 7305de746f2..f668c715349 100644
--- a/l10n/eu/files.po
+++ b/l10n/eu/files.po
@@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-03 12:38-0500\n"
-"PO-Revision-Date: 2013-11-03 17:38+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-09 07:01+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n"
"MIME-Version: 1.0\n"
@@ -29,7 +29,7 @@ msgstr "Ezin da %s mugitu - Izen hau duen fitxategia dagoeneko existitzen da"
msgid "Could not move %s"
msgstr "Ezin dira fitxategiak mugitu %s"
-#: ajax/newfile.php:56 js/files.js:27
+#: ajax/newfile.php:56 js/files.js:74
msgid "File name cannot be empty."
msgstr "Fitxategi izena ezin da hutsa izan."
@@ -53,7 +53,7 @@ msgstr ""
msgid "Error while downloading %s to %s"
msgstr ""
-#: ajax/newfile.php:127
+#: ajax/newfile.php:128
msgid "Error when creating the file"
msgstr ""
@@ -116,15 +116,15 @@ msgstr "Errore bat izan da diskoan idazterakoan"
msgid "Not enough storage available"
msgstr "Ez dago behar aina leku erabilgarri,"
-#: ajax/upload.php:127 ajax/upload.php:153
+#: ajax/upload.php:127 ajax/upload.php:154
msgid "Upload failed. Could not get file info."
msgstr "Igoerak huts egin du. Ezin izan da fitxategiaren informazioa eskuratu."
-#: ajax/upload.php:143
+#: ajax/upload.php:144
msgid "Upload failed. Could not find uploaded file"
msgstr "Igoerak huts egin du. Ezin izan da igotako fitxategia aurkitu"
-#: ajax/upload.php:170
+#: ajax/upload.php:172
msgid "Invalid directory."
msgstr "Baliogabeko karpeta."
@@ -144,24 +144,24 @@ msgstr "Ez dago leku nahikorik."
msgid "Upload cancelled."
msgstr "Igoera ezeztatuta"
-#: js/file-upload.js:345
+#: js/file-upload.js:344
msgid "Could not get result from server."
msgstr "Ezin da zerbitzaritik emaitzik lortu"
-#: js/file-upload.js:437
+#: js/file-upload.js:436
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr "Fitxategien igoera martxan da. Orria orain uzteak igoera ezeztatutko du."
-#: js/file-upload.js:520
+#: js/file-upload.js:519
msgid "URL cannot be empty"
msgstr ""
-#: js/file-upload.js:524 js/filelist.js:364
+#: js/file-upload.js:523 js/filelist.js:371
msgid "In the home folder 'Shared' is a reserved filename"
msgstr ""
-#: js/file-upload.js:526 js/filelist.js:366
+#: js/file-upload.js:525 js/filelist.js:373
msgid "{new_name} already exists"
msgstr "{new_name} dagoeneko existitzen da"
@@ -185,104 +185,104 @@ msgstr "Ezabatu betirako"
msgid "Rename"
msgstr "Berrizendatu"
-#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:854
+#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:857
msgid "Pending"
msgstr "Zain"
-#: js/filelist.js:392
+#: js/filelist.js:399
msgid "Could not rename file"
msgstr ""
-#: js/filelist.js:511
+#: js/filelist.js:518
msgid "replaced {new_name} with {old_name}"
msgstr " {new_name}-k {old_name} ordezkatu du"
-#: js/filelist.js:511
+#: js/filelist.js:518
msgid "undo"
msgstr "desegin"
-#: js/filelist.js:582 js/filelist.js:649 js/files.js:587
+#: js/filelist.js:578 js/filelist.js:652 js/files.js:631
msgid "%n folder"
msgid_plural "%n folders"
msgstr[0] "karpeta %n"
msgstr[1] "%n karpeta"
-#: js/filelist.js:583 js/filelist.js:650 js/files.js:593
+#: js/filelist.js:579 js/filelist.js:653 js/files.js:637
msgid "%n file"
msgid_plural "%n files"
msgstr[0] "fitxategi %n"
msgstr[1] "%n fitxategi"
-#: js/filelist.js:590
+#: js/filelist.js:586
msgid "{dirs} and {files}"
msgstr "{dirs} eta {files}"
-#: js/filelist.js:793 js/filelist.js:831
+#: js/filelist.js:796 js/filelist.js:834
msgid "Uploading %n file"
msgid_plural "Uploading %n files"
msgstr[0] "Fitxategi %n igotzen"
msgstr[1] "%n fitxategi igotzen"
-#: js/files.js:25
+#: js/files.js:72
msgid "'.' is an invalid file name."
msgstr "'.' ez da fitxategi izen baliogarria."
-#: js/files.js:34
+#: js/files.js:81
msgid ""
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not "
"allowed."
msgstr "IZen aliogabea, '\\', '/', '<', '>', ':', '\"', '|', '?' eta '*' ez daude baimenduta."
-#: js/files.js:46
+#: js/files.js:93
msgid "Your storage is full, files can not be updated or synced anymore!"
msgstr "Zure biltegiratzea beterik dago, ezingo duzu aurrerantzean fitxategirik igo edo sinkronizatu!"
-#: js/files.js:50
+#: js/files.js:97
msgid "Your storage is almost full ({usedSpacePercent}%)"
msgstr "Zure biltegiratzea nahiko beterik dago (%{usedSpacePercent})"
-#: js/files.js:63
+#: js/files.js:110
msgid ""
"Encryption App is enabled but your keys are not initialized, please log-out "
"and log-in again"
msgstr "Enkriptazio aplikazioa gaituta dago baina zure gakoak ez daude konfiguratuta, mesedez saioa bukatu eta berriro hasi"
-#: js/files.js:67
+#: js/files.js:114
msgid ""
"Invalid private key for Encryption App. Please update your private key "
"password in your personal settings to recover access to your encrypted "
"files."
msgstr "Enkriptazio aplikaziorako gako pribatu okerra. Mesedez eguneratu zure gako pribatuaren pasahitza zure ezarpen pertsonaletan zure enkriptatuko fitxategietarako sarrera berreskuratzeko."
-#: js/files.js:71
+#: js/files.js:118
msgid ""
"Encryption was disabled but your files are still encrypted. Please go to "
"your personal settings to decrypt your files."
msgstr "Enkriptazioa desgaitua izan da baina zure fitxategiak oraindik enkriptatuta daude. Mesedez jo zure ezarpen pertsonaletara zure fitxategiak dekodifikatzeko."
-#: js/files.js:302
+#: js/files.js:349
msgid ""
"Your download is being prepared. This might take some time if the files are "
"big."
msgstr "Zure deskarga prestatu egin behar da. Denbora bat har lezake fitxategiak handiak badira. "
-#: js/files.js:514 js/files.js:552
+#: js/files.js:558 js/files.js:596
msgid "Error moving file"
msgstr "Errorea fitxategia mugitzean"
-#: js/files.js:514 js/files.js:552
+#: js/files.js:558 js/files.js:596
msgid "Error"
msgstr "Errorea"
-#: js/files.js:569 templates/index.php:56
+#: js/files.js:613 templates/index.php:56
msgid "Name"
msgstr "Izena"
-#: js/files.js:570 templates/index.php:68
+#: js/files.js:614 templates/index.php:68
msgid "Size"
msgstr "Tamaina"
-#: js/files.js:571 templates/index.php:70
+#: js/files.js:615 templates/index.php:70
msgid "Modified"
msgstr "Aldatuta"
diff --git a/l10n/eu/files_sharing.po b/l10n/eu/files_sharing.po
index 993f78140c9..a21d15672d8 100644
--- a/l10n/eu/files_sharing.po
+++ b/l10n/eu/files_sharing.po
@@ -7,9 +7,9 @@
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
-"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-10-29 07:28-0400\n"
-"PO-Revision-Date: 2013-10-28 10:45+0000\n"
+"Report-Msgid-Bugs-To: translations@owncloud.org\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+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/settings.po b/l10n/eu/settings.po
index ee6cc977dd4..0e9f658015d 100644
--- a/l10n/eu/settings.po
+++ b/l10n/eu/settings.po
@@ -10,8 +10,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-06 21:43-0500\n"
-"PO-Revision-Date: 2013-11-07 02:43+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+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 2baf4040d58..211c1f6629d 100644
--- a/l10n/eu/user_ldap.po
+++ b/l10n/eu/user_ldap.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-03 12:38-0500\n"
-"PO-Revision-Date: 2013-11-03 17:39+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+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"
@@ -137,6 +137,10 @@ msgstr ""
msgid "Could not find the desired feature"
msgstr ""
+#: templates/part.settingcontrols.php:2
+msgid "Save"
+msgstr "Gorde"
+
#: templates/part.settingcontrols.php:4
msgid "Test Configuration"
msgstr "Egiaztatu Konfigurazioa"
diff --git a/l10n/fa/core.po b/l10n/fa/core.po
index dff201f8230..0a0a02221b8 100644
--- a/l10n/fa/core.po
+++ b/l10n/fa/core.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-03 12:38-0500\n"
-"PO-Revision-Date: 2013-10-30 07:50+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+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 1994b348ad4..5ca5e21fdbc 100644
--- a/l10n/fa/files.po
+++ b/l10n/fa/files.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-03 12:38-0500\n"
-"PO-Revision-Date: 2013-11-03 17:38+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-09 07:01+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n"
"MIME-Version: 1.0\n"
@@ -28,7 +28,7 @@ msgstr "%s نمی تواند حرکت کند - در حال حاضر پرونده
msgid "Could not move %s"
msgstr "%s نمی تواند حرکت کند "
-#: ajax/newfile.php:56 js/files.js:27
+#: ajax/newfile.php:56 js/files.js:74
msgid "File name cannot be empty."
msgstr "نام پرونده نمی تواند خالی باشد."
@@ -52,7 +52,7 @@ msgstr ""
msgid "Error while downloading %s to %s"
msgstr ""
-#: ajax/newfile.php:127
+#: ajax/newfile.php:128
msgid "Error when creating the file"
msgstr ""
@@ -115,15 +115,15 @@ msgstr "نوشتن بر روی دیسک سخت ناموفق بود"
msgid "Not enough storage available"
msgstr "فضای کافی در دسترس نیست"
-#: ajax/upload.php:127 ajax/upload.php:153
+#: ajax/upload.php:127 ajax/upload.php:154
msgid "Upload failed. Could not get file info."
msgstr ""
-#: ajax/upload.php:143
+#: ajax/upload.php:144
msgid "Upload failed. Could not find uploaded file"
msgstr ""
-#: ajax/upload.php:170
+#: ajax/upload.php:172
msgid "Invalid directory."
msgstr "فهرست راهنما نامعتبر می باشد."
@@ -143,24 +143,24 @@ msgstr "فضای کافی در دسترس نیست"
msgid "Upload cancelled."
msgstr "بار گذاری لغو شد"
-#: js/file-upload.js:345
+#: js/file-upload.js:344
msgid "Could not get result from server."
msgstr ""
-#: js/file-upload.js:437
+#: js/file-upload.js:436
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr "آپلودکردن پرونده در حال پیشرفت است. در صورت خروج از صفحه آپلود لغو میگردد. "
-#: js/file-upload.js:520
+#: js/file-upload.js:519
msgid "URL cannot be empty"
msgstr ""
-#: js/file-upload.js:524 js/filelist.js:364
+#: js/file-upload.js:523 js/filelist.js:371
msgid "In the home folder 'Shared' is a reserved filename"
msgstr ""
-#: js/file-upload.js:526 js/filelist.js:366
+#: js/file-upload.js:525 js/filelist.js:373
msgid "{new_name} already exists"
msgstr "{نام _جدید} در حال حاضر وجود دارد."
@@ -184,101 +184,101 @@ msgstr "حذف قطعی"
msgid "Rename"
msgstr "تغییرنام"
-#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:854
+#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:857
msgid "Pending"
msgstr "در انتظار"
-#: js/filelist.js:392
+#: js/filelist.js:399
msgid "Could not rename file"
msgstr ""
-#: js/filelist.js:511
+#: js/filelist.js:518
msgid "replaced {new_name} with {old_name}"
msgstr "{نام_جدید} با { نام_قدیمی} جایگزین شد."
-#: js/filelist.js:511
+#: js/filelist.js:518
msgid "undo"
msgstr "بازگشت"
-#: js/filelist.js:582 js/filelist.js:649 js/files.js:587
+#: js/filelist.js:578 js/filelist.js:652 js/files.js:631
msgid "%n folder"
msgid_plural "%n folders"
msgstr[0] ""
-#: js/filelist.js:583 js/filelist.js:650 js/files.js:593
+#: js/filelist.js:579 js/filelist.js:653 js/files.js:637
msgid "%n file"
msgid_plural "%n files"
msgstr[0] ""
-#: js/filelist.js:590
+#: js/filelist.js:586
msgid "{dirs} and {files}"
msgstr ""
-#: js/filelist.js:793 js/filelist.js:831
+#: js/filelist.js:796 js/filelist.js:834
msgid "Uploading %n file"
msgid_plural "Uploading %n files"
msgstr[0] ""
-#: js/files.js:25
+#: js/files.js:72
msgid "'.' is an invalid file name."
msgstr "'.' یک نام پرونده نامعتبر است."
-#: js/files.js:34
+#: js/files.js:81
msgid ""
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not "
"allowed."
msgstr "نام نامعتبر ، '\\', '/', '<', '>', ':', '\"', '|', '?' و '*' مجاز نمی باشند."
-#: js/files.js:46
+#: js/files.js:93
msgid "Your storage is full, files can not be updated or synced anymore!"
msgstr "فضای ذخیره ی شما کاملا پر است، بیش از این فایلها بهنگام یا همگام سازی نمی توانند بشوند!"
-#: js/files.js:50
+#: js/files.js:97
msgid "Your storage is almost full ({usedSpacePercent}%)"
msgstr "فضای ذخیره ی شما تقریبا پر است ({usedSpacePercent}%)"
-#: js/files.js:63
+#: js/files.js:110
msgid ""
"Encryption App is enabled but your keys are not initialized, please log-out "
"and log-in again"
msgstr ""
-#: js/files.js:67
+#: js/files.js:114
msgid ""
"Invalid private key for Encryption App. Please update your private key "
"password in your personal settings to recover access to your encrypted "
"files."
msgstr ""
-#: js/files.js:71
+#: js/files.js:118
msgid ""
"Encryption was disabled but your files are still encrypted. Please go to "
"your personal settings to decrypt your files."
msgstr ""
-#: js/files.js:302
+#: js/files.js:349
msgid ""
"Your download is being prepared. This might take some time if the files are "
"big."
msgstr "دانلود شما در حال آماده شدن است. در صورتیکه پرونده ها بزرگ باشند ممکن است مدتی طول بکشد."
-#: js/files.js:514 js/files.js:552
+#: js/files.js:558 js/files.js:596
msgid "Error moving file"
msgstr ""
-#: js/files.js:514 js/files.js:552
+#: js/files.js:558 js/files.js:596
msgid "Error"
msgstr "خطا"
-#: js/files.js:569 templates/index.php:56
+#: js/files.js:613 templates/index.php:56
msgid "Name"
msgstr "نام"
-#: js/files.js:570 templates/index.php:68
+#: js/files.js:614 templates/index.php:68
msgid "Size"
msgstr "اندازه"
-#: js/files.js:571 templates/index.php:70
+#: js/files.js:615 templates/index.php:70
msgid "Modified"
msgstr "تاریخ"
diff --git a/l10n/fa/files_sharing.po b/l10n/fa/files_sharing.po
index e9b4bbae967..b08afda0b7d 100644
--- a/l10n/fa/files_sharing.po
+++ b/l10n/fa/files_sharing.po
@@ -7,9 +7,9 @@
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
-"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-10-29 07:28-0400\n"
-"PO-Revision-Date: 2013-10-28 10:45+0000\n"
+"Report-Msgid-Bugs-To: translations@owncloud.org\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+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/settings.po b/l10n/fa/settings.po
index a3c1dff80fd..6cfb019b9c9 100644
--- a/l10n/fa/settings.po
+++ b/l10n/fa/settings.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-06 21:43-0500\n"
-"PO-Revision-Date: 2013-11-07 02:43+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+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 88527c7f771..615891d7137 100644
--- a/l10n/fa/user_ldap.po
+++ b/l10n/fa/user_ldap.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-03 12:38-0500\n"
-"PO-Revision-Date: 2013-11-03 17:39+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+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"
@@ -135,6 +135,10 @@ msgstr ""
msgid "Could not find the desired feature"
msgstr ""
+#: templates/part.settingcontrols.php:2
+msgid "Save"
+msgstr "ذخیره"
+
#: templates/part.settingcontrols.php:4
msgid "Test Configuration"
msgstr "امتحان پیکربندی"
diff --git a/l10n/fi_FI/core.po b/l10n/fi_FI/core.po
index 973a5b83e66..4dc3d3778ba 100644
--- a/l10n/fi_FI/core.po
+++ b/l10n/fi_FI/core.po
@@ -8,9 +8,9 @@
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
-"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-10-30 03:32-0400\n"
-"PO-Revision-Date: 2013-10-30 07:32+0000\n"
+"Report-Msgid-Bugs-To: translations@owncloud.org\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:11+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"
@@ -278,12 +278,12 @@ msgstr "Jaettu"
msgid "Share"
msgstr "Jaa"
-#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:690
-#: js/share.js:702
+#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:692
+#: js/share.js:704
msgid "Error"
msgstr "Virhe"
-#: js/share.js:160 js/share.js:730
+#: js/share.js:160 js/share.js:732
msgid "Error while sharing"
msgstr "Virhe jaettaessa"
@@ -339,79 +339,79 @@ msgstr "Aseta päättymispäivä"
msgid "Expiration date"
msgstr "Päättymispäivä"
-#: js/share.js:272
+#: js/share.js:274
msgid "Share via email:"
msgstr "Jaa sähköpostilla:"
-#: js/share.js:275
+#: js/share.js:277
msgid "No people found"
msgstr "Henkilöitä ei löytynyt"
-#: js/share.js:305 js/share.js:342
+#: js/share.js:307 js/share.js:344
msgid "group"
msgstr "ryhmä"
-#: js/share.js:316
+#: js/share.js:318
msgid "Resharing is not allowed"
msgstr "Jakaminen uudelleen ei ole salittu"
-#: js/share.js:358
+#: js/share.js:360
msgid "Shared in {item} with {user}"
msgstr "{item} on jaettu {user} kanssa"
-#: js/share.js:380
+#: js/share.js:382
msgid "Unshare"
msgstr "Peru jakaminen"
-#: js/share.js:388
+#: js/share.js:390
msgid "notify by email"
msgstr "ilmoita sähköpostitse"
-#: js/share.js:391
+#: js/share.js:393
msgid "can edit"
msgstr "voi muokata"
-#: js/share.js:393
+#: js/share.js:395
msgid "access control"
msgstr "Pääsyn hallinta"
-#: js/share.js:396
+#: js/share.js:398
msgid "create"
msgstr "luo"
-#: js/share.js:399
+#: js/share.js:401
msgid "update"
msgstr "päivitä"
-#: js/share.js:402
+#: js/share.js:404
msgid "delete"
msgstr "poista"
-#: js/share.js:405
+#: js/share.js:407
msgid "share"
msgstr "jaa"
-#: js/share.js:447 js/share.js:677
+#: js/share.js:449 js/share.js:679
msgid "Password protected"
msgstr "Salasanasuojattu"
-#: js/share.js:690
+#: js/share.js:692
msgid "Error unsetting expiration date"
msgstr "Virhe purettaessa eräpäivää"
-#: js/share.js:702
+#: js/share.js:704
msgid "Error setting expiration date"
msgstr "Virhe päättymispäivää asettaessa"
-#: js/share.js:717
+#: js/share.js:719
msgid "Sending ..."
msgstr "Lähetetään..."
-#: js/share.js:728
+#: js/share.js:730
msgid "Email sent"
msgstr "Sähköposti lähetetty"
-#: js/share.js:752
+#: js/share.js:754
msgid "Warning"
msgstr "Varoitus"
diff --git a/l10n/fi_FI/files.po b/l10n/fi_FI/files.po
index 7cc4c700d5f..1471c420e13 100644
--- a/l10n/fi_FI/files.po
+++ b/l10n/fi_FI/files.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-06 21:43-0500\n"
-"PO-Revision-Date: 2013-11-03 21:22+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-09 07:01+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"
@@ -143,32 +143,32 @@ msgstr "Tilaa ei ole riittävästi"
msgid "Upload cancelled."
msgstr "Lähetys peruttu."
-#: js/file-upload.js:345
+#: js/file-upload.js:344
msgid "Could not get result from server."
msgstr "Tuloksien saaminen palvelimelta ei onnistunut."
-#: js/file-upload.js:437
+#: js/file-upload.js:436
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr "Tiedoston lähetys on meneillään. Sivulta poistuminen nyt peruu tiedoston lähetyksen."
-#: js/file-upload.js:520
+#: js/file-upload.js:519
msgid "URL cannot be empty"
msgstr "Osoite ei voi olla tyhjä"
-#: js/file-upload.js:524 js/filelist.js:371
+#: js/file-upload.js:523 js/filelist.js:371
msgid "In the home folder 'Shared' is a reserved filename"
msgstr ""
-#: js/file-upload.js:526 js/filelist.js:373
+#: js/file-upload.js:525 js/filelist.js:373
msgid "{new_name} already exists"
msgstr "{new_name} on jo olemassa"
-#: js/file-upload.js:586
+#: js/file-upload.js:585
msgid "Could not create file"
msgstr "Tiedoston luominen epäonnistui"
-#: js/file-upload.js:602
+#: js/file-upload.js:601
msgid "Could not create folder"
msgstr "Kansion luominen epäonnistui"
diff --git a/l10n/fi_FI/files_sharing.po b/l10n/fi_FI/files_sharing.po
index c12ffc25c08..35e80d55ea6 100644
--- a/l10n/fi_FI/files_sharing.po
+++ b/l10n/fi_FI/files_sharing.po
@@ -7,9 +7,9 @@
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
-"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-10-29 07:28-0400\n"
-"PO-Revision-Date: 2013-10-28 10:45+0000\n"
+"Report-Msgid-Bugs-To: translations@owncloud.org\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+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/settings.po b/l10n/fi_FI/settings.po
index 827660d9192..b3a65b041db 100644
--- a/l10n/fi_FI/settings.po
+++ b/l10n/fi_FI/settings.po
@@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-06 21:43-0500\n"
-"PO-Revision-Date: 2013-11-07 02:43+0000\n"
-"Last-Translator: I Robot \n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+0000\n"
+"Last-Translator: Jiri Grönroos \n"
"Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -29,11 +29,11 @@ msgstr "Tunnistautumisvirhe"
#: ajax/changedisplayname.php:31
msgid "Your full name has been changed."
-msgstr ""
+msgstr "Koko nimesi on muutettu."
#: ajax/changedisplayname.php:34
msgid "Unable to change full name"
-msgstr ""
+msgstr "Koko nimen muuttaminen epäonnistui"
#: ajax/creategroup.php:10
msgid "Group already exists"
@@ -237,7 +237,7 @@ msgstr "Virheet ja vakavat ongelmat"
#: templates/admin.php:12
msgid "Fatal issues only"
-msgstr ""
+msgstr "Vain vakavat ongelmat"
#: templates/admin.php:22
msgid "Security Warning"
@@ -506,7 +506,7 @@ msgstr "Vaihda salasana"
#: templates/personal.php:58 templates/users.php:88
msgid "Full Name"
-msgstr ""
+msgstr "Koko nimi"
#: templates/personal.php:73
msgid "Email"
@@ -627,7 +627,7 @@ msgstr "Tallennustila"
#: templates/users.php:108
msgid "change full name"
-msgstr ""
+msgstr "muuta koko nimi"
#: templates/users.php:112
msgid "set new password"
diff --git a/l10n/fi_FI/user_ldap.po b/l10n/fi_FI/user_ldap.po
index a0daab2c40a..f6de9f9de62 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: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-03 12:38-0500\n"
-"PO-Revision-Date: 2013-11-03 17:39+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+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"
@@ -136,6 +136,10 @@ msgstr ""
msgid "Could not find the desired feature"
msgstr ""
+#: templates/part.settingcontrols.php:2
+msgid "Save"
+msgstr "Tallenna"
+
#: templates/part.settingcontrols.php:4
msgid "Test Configuration"
msgstr ""
diff --git a/l10n/fr/core.po b/l10n/fr/core.po
index 57785aa5c50..7102e67850d 100644
--- a/l10n/fr/core.po
+++ b/l10n/fr/core.po
@@ -14,8 +14,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-03 12:38-0500\n"
-"PO-Revision-Date: 2013-10-30 07:50+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+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.po b/l10n/fr/files.po
index 8739d2954c8..03665c393d3 100644
--- a/l10n/fr/files.po
+++ b/l10n/fr/files.po
@@ -12,8 +12,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-06 21:43-0500\n"
-"PO-Revision-Date: 2013-11-06 20:40+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-09 07:01+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"
@@ -147,32 +147,32 @@ msgstr "Espace disponible insuffisant"
msgid "Upload cancelled."
msgstr "Envoi annulé."
-#: js/file-upload.js:345
+#: js/file-upload.js:344
msgid "Could not get result from server."
msgstr "Ne peut recevoir les résultats du serveur."
-#: js/file-upload.js:437
+#: js/file-upload.js:436
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr "L'envoi du fichier est en cours. Quitter cette page maintenant annulera l'envoi du fichier."
-#: js/file-upload.js:520
+#: js/file-upload.js:519
msgid "URL cannot be empty"
msgstr "L'URL ne peut pas être vide"
-#: js/file-upload.js:524 js/filelist.js:371
+#: js/file-upload.js:523 js/filelist.js:371
msgid "In the home folder 'Shared' is a reserved filename"
msgstr "Dans le dossier home, 'Partagé' est un nom de fichier réservé"
-#: js/file-upload.js:526 js/filelist.js:373
+#: js/file-upload.js:525 js/filelist.js:373
msgid "{new_name} already exists"
msgstr "{new_name} existe déjà"
-#: js/file-upload.js:586
+#: js/file-upload.js:585
msgid "Could not create file"
msgstr "Impossible de créer le fichier"
-#: js/file-upload.js:602
+#: js/file-upload.js:601
msgid "Could not create folder"
msgstr "Impossible de créer le dossier"
diff --git a/l10n/fr/files_sharing.po b/l10n/fr/files_sharing.po
index 98f962f94e7..355430d6102 100644
--- a/l10n/fr/files_sharing.po
+++ b/l10n/fr/files_sharing.po
@@ -10,9 +10,9 @@
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
-"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-10-29 07:28-0400\n"
-"PO-Revision-Date: 2013-10-28 10:45+0000\n"
+"Report-Msgid-Bugs-To: translations@owncloud.org\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+0000\n"
"Last-Translator: etiess \n"
"Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po
index 0a89aeebae9..52c24e64cc3 100644
--- a/l10n/fr/settings.po
+++ b/l10n/fr/settings.po
@@ -14,9 +14,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-06 21:43-0500\n"
-"PO-Revision-Date: 2013-11-07 02:43+0000\n"
-"Last-Translator: I Robot \n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+0000\n"
+"Last-Translator: etiess \n"
"Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -35,11 +35,11 @@ msgstr "Erreur d'authentification"
#: ajax/changedisplayname.php:31
msgid "Your full name has been changed."
-msgstr ""
+msgstr "Votre nom complet a été modifié."
#: ajax/changedisplayname.php:34
msgid "Unable to change full name"
-msgstr ""
+msgstr "Impossible de changer le nom complet"
#: ajax/creategroup.php:10
msgid "Group already exists"
@@ -512,7 +512,7 @@ msgstr "Changer de mot de passe"
#: templates/personal.php:58 templates/users.php:88
msgid "Full Name"
-msgstr ""
+msgstr "Nom complet"
#: templates/personal.php:73
msgid "Email"
@@ -633,7 +633,7 @@ msgstr "Support de stockage"
#: templates/users.php:108
msgid "change full name"
-msgstr ""
+msgstr "Modifier le nom complet"
#: templates/users.php:112
msgid "set new password"
diff --git a/l10n/fr/user_ldap.po b/l10n/fr/user_ldap.po
index 60b723e7a98..2ad86ef073c 100644
--- a/l10n/fr/user_ldap.po
+++ b/l10n/fr/user_ldap.po
@@ -10,9 +10,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-06 21:43-0500\n"
-"PO-Revision-Date: 2013-11-03 20:40+0000\n"
-"Last-Translator: Christophe Lherieau \n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+0000\n"
+"Last-Translator: I Robot \n"
"Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -139,6 +139,10 @@ msgstr "Hôte invalide"
msgid "Could not find the desired feature"
msgstr "Impossible de trouver la fonction souhaitée"
+#: templates/part.settingcontrols.php:2
+msgid "Save"
+msgstr "Sauvegarder"
+
#: templates/part.settingcontrols.php:4
msgid "Test Configuration"
msgstr "Tester la configuration"
diff --git a/l10n/gl/core.po b/l10n/gl/core.po
index 78b4696d321..c6548d97b2a 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: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-03 12:38-0500\n"
-"PO-Revision-Date: 2013-10-30 07:50+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:11+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.po b/l10n/gl/files.po
index 5ae5ceeb278..7f81618cfc5 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: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-06 21:43-0500\n"
-"PO-Revision-Date: 2013-11-05 09:59+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-09 07:01+0000\n"
"Last-Translator: mbouzada \n"
"Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n"
"MIME-Version: 1.0\n"
@@ -143,32 +143,32 @@ msgstr "O espazo dispoñíbel é insuficiente"
msgid "Upload cancelled."
msgstr "Envío cancelado."
-#: js/file-upload.js:345
+#: js/file-upload.js:344
msgid "Could not get result from server."
msgstr "Non foi posíbel obter o resultado do servidor."
-#: js/file-upload.js:437
+#: js/file-upload.js:436
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr "O envío do ficheiro está en proceso. Saír agora da páxina cancelará o envío."
-#: js/file-upload.js:520
+#: js/file-upload.js:519
msgid "URL cannot be empty"
msgstr "O URL non pode quedar en branco."
-#: js/file-upload.js:524 js/filelist.js:371
+#: js/file-upload.js:523 js/filelist.js:371
msgid "In the home folder 'Shared' is a reserved filename"
msgstr "«Shared» dentro do cartafol persoal é un nome reservado"
-#: js/file-upload.js:526 js/filelist.js:373
+#: js/file-upload.js:525 js/filelist.js:373
msgid "{new_name} already exists"
msgstr "Xa existe un {new_name}"
-#: js/file-upload.js:586
+#: js/file-upload.js:585
msgid "Could not create file"
msgstr "Non foi posíbel crear o ficheiro"
-#: js/file-upload.js:602
+#: js/file-upload.js:601
msgid "Could not create folder"
msgstr "Non foi posíbel crear o cartafol"
diff --git a/l10n/gl/files_sharing.po b/l10n/gl/files_sharing.po
index 0bfd7360de3..ddc0d36fe72 100644
--- a/l10n/gl/files_sharing.po
+++ b/l10n/gl/files_sharing.po
@@ -7,9 +7,9 @@
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
-"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-10-29 07:28-0400\n"
-"PO-Revision-Date: 2013-10-28 10:45+0000\n"
+"Report-Msgid-Bugs-To: translations@owncloud.org\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+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/settings.po b/l10n/gl/settings.po
index 7a45d11e643..ddb9a9a2502 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: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-06 21:43-0500\n"
-"PO-Revision-Date: 2013-11-07 02:43+0000\n"
-"Last-Translator: I Robot \n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+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"
@@ -29,11 +29,11 @@ msgstr "Produciuse un erro de autenticación"
#: ajax/changedisplayname.php:31
msgid "Your full name has been changed."
-msgstr ""
+msgstr "O seu nome completo foi cambiado"
#: ajax/changedisplayname.php:34
msgid "Unable to change full name"
-msgstr ""
+msgstr "Non é posíbel cambiar o nome completo"
#: ajax/creategroup.php:10
msgid "Group already exists"
@@ -506,7 +506,7 @@ msgstr "Cambiar o contrasinal"
#: templates/personal.php:58 templates/users.php:88
msgid "Full Name"
-msgstr ""
+msgstr "Nome completo"
#: templates/personal.php:73
msgid "Email"
@@ -627,7 +627,7 @@ msgstr "Almacenamento"
#: templates/users.php:108
msgid "change full name"
-msgstr ""
+msgstr "Cambiar o nome completo"
#: templates/users.php:112
msgid "set new password"
diff --git a/l10n/gl/user_ldap.po b/l10n/gl/user_ldap.po
index 4beecb1239d..73abf5d3567 100644
--- a/l10n/gl/user_ldap.po
+++ b/l10n/gl/user_ldap.po
@@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-06 21:43-0500\n"
-"PO-Revision-Date: 2013-11-05 09:59+0000\n"
-"Last-Translator: mbouzada \n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+0000\n"
+"Last-Translator: I Robot \n"
"Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -137,6 +137,10 @@ msgstr "Máquina incorrecta"
msgid "Could not find the desired feature"
msgstr "Non foi posíbel atopar a función desexada"
+#: templates/part.settingcontrols.php:2
+msgid "Save"
+msgstr "Gardar"
+
#: templates/part.settingcontrols.php:4
msgid "Test Configuration"
msgstr "Probar a configuración"
diff --git a/l10n/he/core.po b/l10n/he/core.po
index 5aa354ae4eb..3fb1922df0c 100644
--- a/l10n/he/core.po
+++ b/l10n/he/core.po
@@ -8,9 +8,9 @@
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
-"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-10-30 03:32-0400\n"
-"PO-Revision-Date: 2013-10-30 07:32+0000\n"
+"Report-Msgid-Bugs-To: translations@owncloud.org\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:11+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"
@@ -278,12 +278,12 @@ msgstr "שותף"
msgid "Share"
msgstr "שתף"
-#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:690
-#: js/share.js:702
+#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:692
+#: js/share.js:704
msgid "Error"
msgstr "שגיאה"
-#: js/share.js:160 js/share.js:730
+#: js/share.js:160 js/share.js:732
msgid "Error while sharing"
msgstr "שגיאה במהלך השיתוף"
@@ -339,79 +339,79 @@ msgstr "הגדרת תאריך תפוגה"
msgid "Expiration date"
msgstr "תאריך התפוגה"
-#: js/share.js:272
+#: js/share.js:274
msgid "Share via email:"
msgstr "שיתוף באמצעות דוא״ל:"
-#: js/share.js:275
+#: js/share.js:277
msgid "No people found"
msgstr "לא נמצאו אנשים"
-#: js/share.js:305 js/share.js:342
+#: js/share.js:307 js/share.js:344
msgid "group"
msgstr "קבוצה"
-#: js/share.js:316
+#: js/share.js:318
msgid "Resharing is not allowed"
msgstr "אסור לעשות שיתוף מחדש"
-#: js/share.js:358
+#: js/share.js:360
msgid "Shared in {item} with {user}"
msgstr "שותף תחת {item} עם {user}"
-#: js/share.js:380
+#: js/share.js:382
msgid "Unshare"
msgstr "הסר שיתוף"
-#: js/share.js:388
+#: js/share.js:390
msgid "notify by email"
msgstr ""
-#: js/share.js:391
+#: js/share.js:393
msgid "can edit"
msgstr "ניתן לערוך"
-#: js/share.js:393
+#: js/share.js:395
msgid "access control"
msgstr "בקרת גישה"
-#: js/share.js:396
+#: js/share.js:398
msgid "create"
msgstr "יצירה"
-#: js/share.js:399
+#: js/share.js:401
msgid "update"
msgstr "עדכון"
-#: js/share.js:402
+#: js/share.js:404
msgid "delete"
msgstr "מחיקה"
-#: js/share.js:405
+#: js/share.js:407
msgid "share"
msgstr "שיתוף"
-#: js/share.js:447 js/share.js:677
+#: js/share.js:449 js/share.js:679
msgid "Password protected"
msgstr "מוגן בססמה"
-#: js/share.js:690
+#: js/share.js:692
msgid "Error unsetting expiration date"
msgstr "אירעה שגיאה בביטול תאריך התפוגה"
-#: js/share.js:702
+#: js/share.js:704
msgid "Error setting expiration date"
msgstr "אירעה שגיאה בעת הגדרת תאריך התפוגה"
-#: js/share.js:717
+#: js/share.js:719
msgid "Sending ..."
msgstr "מתבצעת שליחה ..."
-#: js/share.js:728
+#: js/share.js:730
msgid "Email sent"
msgstr "הודעת הדוא״ל נשלחה"
-#: js/share.js:752
+#: js/share.js:754
msgid "Warning"
msgstr "אזהרה"
diff --git a/l10n/he/files.po b/l10n/he/files.po
index ca568c0ab74..deca4a189c5 100644
--- a/l10n/he/files.po
+++ b/l10n/he/files.po
@@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-03 12:38-0500\n"
-"PO-Revision-Date: 2013-11-03 17:38+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-09 07:01+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n"
"MIME-Version: 1.0\n"
@@ -29,7 +29,7 @@ msgstr "לא ניתן להעביר את %s - קובץ בשם הזה כבר קי
msgid "Could not move %s"
msgstr "לא ניתן להעביר את %s"
-#: ajax/newfile.php:56 js/files.js:27
+#: ajax/newfile.php:56 js/files.js:74
msgid "File name cannot be empty."
msgstr "שם קובץ אינו יכול להיות ריק"
@@ -53,7 +53,7 @@ msgstr ""
msgid "Error while downloading %s to %s"
msgstr ""
-#: ajax/newfile.php:127
+#: ajax/newfile.php:128
msgid "Error when creating the file"
msgstr ""
@@ -116,15 +116,15 @@ msgstr "הכתיבה לכונן נכשלה"
msgid "Not enough storage available"
msgstr "אין די שטח פנוי באחסון"
-#: ajax/upload.php:127 ajax/upload.php:153
+#: ajax/upload.php:127 ajax/upload.php:154
msgid "Upload failed. Could not get file info."
msgstr "העלאה נכשלה. לא ניתן להשיג את פרטי הקובץ."
-#: ajax/upload.php:143
+#: ajax/upload.php:144
msgid "Upload failed. Could not find uploaded file"
msgstr ""
-#: ajax/upload.php:170
+#: ajax/upload.php:172
msgid "Invalid directory."
msgstr "תיקייה שגויה."
@@ -144,24 +144,24 @@ msgstr ""
msgid "Upload cancelled."
msgstr "ההעלאה בוטלה."
-#: js/file-upload.js:345
+#: js/file-upload.js:344
msgid "Could not get result from server."
msgstr "לא ניתן לגשת לתוצאות מהשרת."
-#: js/file-upload.js:437
+#: js/file-upload.js:436
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr "מתבצעת כעת העלאת קבצים. עזיבה של העמוד תבטל את ההעלאה."
-#: js/file-upload.js:520
+#: js/file-upload.js:519
msgid "URL cannot be empty"
msgstr ""
-#: js/file-upload.js:524 js/filelist.js:364
+#: js/file-upload.js:523 js/filelist.js:371
msgid "In the home folder 'Shared' is a reserved filename"
msgstr ""
-#: js/file-upload.js:526 js/filelist.js:366
+#: js/file-upload.js:525 js/filelist.js:373
msgid "{new_name} already exists"
msgstr "{new_name} כבר קיים"
@@ -185,104 +185,104 @@ msgstr "מחק לצמיתות"
msgid "Rename"
msgstr "שינוי שם"
-#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:854
+#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:857
msgid "Pending"
msgstr "ממתין"
-#: js/filelist.js:392
+#: js/filelist.js:399
msgid "Could not rename file"
msgstr ""
-#: js/filelist.js:511
+#: js/filelist.js:518
msgid "replaced {new_name} with {old_name}"
msgstr "{new_name} הוחלף ב־{old_name}"
-#: js/filelist.js:511
+#: js/filelist.js:518
msgid "undo"
msgstr "ביטול"
-#: js/filelist.js:582 js/filelist.js:649 js/files.js:587
+#: js/filelist.js:578 js/filelist.js:652 js/files.js:631
msgid "%n folder"
msgid_plural "%n folders"
msgstr[0] ""
msgstr[1] ""
-#: js/filelist.js:583 js/filelist.js:650 js/files.js:593
+#: js/filelist.js:579 js/filelist.js:653 js/files.js:637
msgid "%n file"
msgid_plural "%n files"
msgstr[0] ""
msgstr[1] ""
-#: js/filelist.js:590
+#: js/filelist.js:586
msgid "{dirs} and {files}"
msgstr ""
-#: js/filelist.js:793 js/filelist.js:831
+#: js/filelist.js:796 js/filelist.js:834
msgid "Uploading %n file"
msgid_plural "Uploading %n files"
msgstr[0] ""
msgstr[1] ""
-#: js/files.js:25
+#: js/files.js:72
msgid "'.' is an invalid file name."
msgstr ""
-#: js/files.js:34
+#: js/files.js:81
msgid ""
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not "
"allowed."
msgstr "השם שגוי, אסור להשתמש בתווים '\\', '/', '<', '>', ':', '\"', '|', '?' ו־'*'."
-#: js/files.js:46
+#: js/files.js:93
msgid "Your storage is full, files can not be updated or synced anymore!"
msgstr ""
-#: js/files.js:50
+#: js/files.js:97
msgid "Your storage is almost full ({usedSpacePercent}%)"
msgstr "שטח האחסון שלך כמעט מלא ({usedSpacePercent}%)"
-#: js/files.js:63
+#: js/files.js:110
msgid ""
"Encryption App is enabled but your keys are not initialized, please log-out "
"and log-in again"
msgstr ""
-#: js/files.js:67
+#: js/files.js:114
msgid ""
"Invalid private key for Encryption App. Please update your private key "
"password in your personal settings to recover access to your encrypted "
"files."
msgstr ""
-#: js/files.js:71
+#: js/files.js:118
msgid ""
"Encryption was disabled but your files are still encrypted. Please go to "
"your personal settings to decrypt your files."
msgstr ""
-#: js/files.js:302
+#: js/files.js:349
msgid ""
"Your download is being prepared. This might take some time if the files are "
"big."
msgstr ""
-#: js/files.js:514 js/files.js:552
+#: js/files.js:558 js/files.js:596
msgid "Error moving file"
msgstr ""
-#: js/files.js:514 js/files.js:552
+#: js/files.js:558 js/files.js:596
msgid "Error"
msgstr "שגיאה"
-#: js/files.js:569 templates/index.php:56
+#: js/files.js:613 templates/index.php:56
msgid "Name"
msgstr "שם"
-#: js/files.js:570 templates/index.php:68
+#: js/files.js:614 templates/index.php:68
msgid "Size"
msgstr "גודל"
-#: js/files.js:571 templates/index.php:70
+#: js/files.js:615 templates/index.php:70
msgid "Modified"
msgstr "זמן שינוי"
diff --git a/l10n/he/files_sharing.po b/l10n/he/files_sharing.po
index e11f6ef338a..44dc68c41b8 100644
--- a/l10n/he/files_sharing.po
+++ b/l10n/he/files_sharing.po
@@ -6,9 +6,9 @@
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
-"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-10-29 07:28-0400\n"
-"PO-Revision-Date: 2013-10-28 10:45+0000\n"
+"Report-Msgid-Bugs-To: translations@owncloud.org\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+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/settings.po b/l10n/he/settings.po
index b3b19245f77..8e092dff92b 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: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-06 21:43-0500\n"
-"PO-Revision-Date: 2013-11-07 02:43+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+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 dbbbad656da..492560eba6c 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: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-03 12:38-0500\n"
-"PO-Revision-Date: 2013-11-03 17:39+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+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"
@@ -137,6 +137,10 @@ msgstr ""
msgid "Could not find the desired feature"
msgstr ""
+#: templates/part.settingcontrols.php:2
+msgid "Save"
+msgstr "שמירה"
+
#: templates/part.settingcontrols.php:4
msgid "Test Configuration"
msgstr ""
diff --git a/l10n/hi/core.po b/l10n/hi/core.po
index a1deb749bf2..fbce42617ab 100644
--- a/l10n/hi/core.po
+++ b/l10n/hi/core.po
@@ -8,9 +8,9 @@
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
-"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-10-30 03:32-0400\n"
-"PO-Revision-Date: 2013-10-30 07:32+0000\n"
+"Report-Msgid-Bugs-To: translations@owncloud.org\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:11+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"
@@ -278,12 +278,12 @@ msgstr ""
msgid "Share"
msgstr "साझा करें"
-#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:690
-#: js/share.js:702
+#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:692
+#: js/share.js:704
msgid "Error"
msgstr "त्रुटि"
-#: js/share.js:160 js/share.js:730
+#: js/share.js:160 js/share.js:732
msgid "Error while sharing"
msgstr ""
@@ -339,79 +339,79 @@ msgstr ""
msgid "Expiration date"
msgstr ""
-#: js/share.js:272
+#: js/share.js:274
msgid "Share via email:"
msgstr ""
-#: js/share.js:275
+#: js/share.js:277
msgid "No people found"
msgstr "कोई व्यक्ति नहीं मिले "
-#: js/share.js:305 js/share.js:342
+#: js/share.js:307 js/share.js:344
msgid "group"
msgstr ""
-#: js/share.js:316
+#: js/share.js:318
msgid "Resharing is not allowed"
msgstr ""
-#: js/share.js:358
+#: js/share.js:360
msgid "Shared in {item} with {user}"
msgstr ""
-#: js/share.js:380
+#: js/share.js:382
msgid "Unshare"
msgstr ""
-#: js/share.js:388
+#: js/share.js:390
msgid "notify by email"
msgstr ""
-#: js/share.js:391
+#: js/share.js:393
msgid "can edit"
msgstr ""
-#: js/share.js:393
+#: js/share.js:395
msgid "access control"
msgstr ""
-#: js/share.js:396
+#: js/share.js:398
msgid "create"
msgstr ""
-#: js/share.js:399
+#: js/share.js:401
msgid "update"
msgstr ""
-#: js/share.js:402
+#: js/share.js:404
msgid "delete"
msgstr ""
-#: js/share.js:405
+#: js/share.js:407
msgid "share"
msgstr ""
-#: js/share.js:447 js/share.js:677
+#: js/share.js:449 js/share.js:679
msgid "Password protected"
msgstr ""
-#: js/share.js:690
+#: js/share.js:692
msgid "Error unsetting expiration date"
msgstr ""
-#: js/share.js:702
+#: js/share.js:704
msgid "Error setting expiration date"
msgstr ""
-#: js/share.js:717
+#: js/share.js:719
msgid "Sending ..."
msgstr "भेजा जा रहा है"
-#: js/share.js:728
+#: js/share.js:730
msgid "Email sent"
msgstr "ईमेल भेज दिया गया है "
-#: js/share.js:752
+#: js/share.js:754
msgid "Warning"
msgstr "चेतावनी "
diff --git a/l10n/hi/files.po b/l10n/hi/files.po
index 62197b39224..e8d87b1ca77 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: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-03 12:38-0500\n"
-"PO-Revision-Date: 2013-11-03 17:38+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-09 07:01+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n"
"MIME-Version: 1.0\n"
@@ -27,7 +27,7 @@ msgstr ""
msgid "Could not move %s"
msgstr ""
-#: ajax/newfile.php:56 js/files.js:27
+#: ajax/newfile.php:56 js/files.js:74
msgid "File name cannot be empty."
msgstr ""
@@ -51,7 +51,7 @@ msgstr ""
msgid "Error while downloading %s to %s"
msgstr ""
-#: ajax/newfile.php:127
+#: ajax/newfile.php:128
msgid "Error when creating the file"
msgstr ""
@@ -114,15 +114,15 @@ msgstr ""
msgid "Not enough storage available"
msgstr ""
-#: ajax/upload.php:127 ajax/upload.php:153
+#: ajax/upload.php:127 ajax/upload.php:154
msgid "Upload failed. Could not get file info."
msgstr ""
-#: ajax/upload.php:143
+#: ajax/upload.php:144
msgid "Upload failed. Could not find uploaded file"
msgstr ""
-#: ajax/upload.php:170
+#: ajax/upload.php:172
msgid "Invalid directory."
msgstr ""
@@ -142,24 +142,24 @@ msgstr ""
msgid "Upload cancelled."
msgstr ""
-#: js/file-upload.js:345
+#: js/file-upload.js:344
msgid "Could not get result from server."
msgstr ""
-#: js/file-upload.js:437
+#: js/file-upload.js:436
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr ""
-#: js/file-upload.js:520
+#: js/file-upload.js:519
msgid "URL cannot be empty"
msgstr ""
-#: js/file-upload.js:524 js/filelist.js:364
+#: js/file-upload.js:523 js/filelist.js:371
msgid "In the home folder 'Shared' is a reserved filename"
msgstr ""
-#: js/file-upload.js:526 js/filelist.js:366
+#: js/file-upload.js:525 js/filelist.js:373
msgid "{new_name} already exists"
msgstr ""
@@ -183,104 +183,104 @@ msgstr ""
msgid "Rename"
msgstr ""
-#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:854
+#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:857
msgid "Pending"
msgstr ""
-#: js/filelist.js:392
+#: js/filelist.js:399
msgid "Could not rename file"
msgstr ""
-#: js/filelist.js:511
+#: js/filelist.js:518
msgid "replaced {new_name} with {old_name}"
msgstr ""
-#: js/filelist.js:511
+#: js/filelist.js:518
msgid "undo"
msgstr ""
-#: js/filelist.js:582 js/filelist.js:649 js/files.js:587
+#: js/filelist.js:578 js/filelist.js:652 js/files.js:631
msgid "%n folder"
msgid_plural "%n folders"
msgstr[0] ""
msgstr[1] ""
-#: js/filelist.js:583 js/filelist.js:650 js/files.js:593
+#: js/filelist.js:579 js/filelist.js:653 js/files.js:637
msgid "%n file"
msgid_plural "%n files"
msgstr[0] ""
msgstr[1] ""
-#: js/filelist.js:590
+#: js/filelist.js:586
msgid "{dirs} and {files}"
msgstr ""
-#: js/filelist.js:793 js/filelist.js:831
+#: js/filelist.js:796 js/filelist.js:834
msgid "Uploading %n file"
msgid_plural "Uploading %n files"
msgstr[0] ""
msgstr[1] ""
-#: js/files.js:25
+#: js/files.js:72
msgid "'.' is an invalid file name."
msgstr ""
-#: js/files.js:34
+#: js/files.js:81
msgid ""
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not "
"allowed."
msgstr ""
-#: js/files.js:46
+#: js/files.js:93
msgid "Your storage is full, files can not be updated or synced anymore!"
msgstr ""
-#: js/files.js:50
+#: js/files.js:97
msgid "Your storage is almost full ({usedSpacePercent}%)"
msgstr ""
-#: js/files.js:63
+#: js/files.js:110
msgid ""
"Encryption App is enabled but your keys are not initialized, please log-out "
"and log-in again"
msgstr ""
-#: js/files.js:67
+#: js/files.js:114
msgid ""
"Invalid private key for Encryption App. Please update your private key "
"password in your personal settings to recover access to your encrypted "
"files."
msgstr ""
-#: js/files.js:71
+#: js/files.js:118
msgid ""
"Encryption was disabled but your files are still encrypted. Please go to "
"your personal settings to decrypt your files."
msgstr ""
-#: js/files.js:302
+#: js/files.js:349
msgid ""
"Your download is being prepared. This might take some time if the files are "
"big."
msgstr ""
-#: js/files.js:514 js/files.js:552
+#: js/files.js:558 js/files.js:596
msgid "Error moving file"
msgstr ""
-#: js/files.js:514 js/files.js:552
+#: js/files.js:558 js/files.js:596
msgid "Error"
msgstr "त्रुटि"
-#: js/files.js:569 templates/index.php:56
+#: js/files.js:613 templates/index.php:56
msgid "Name"
msgstr ""
-#: js/files.js:570 templates/index.php:68
+#: js/files.js:614 templates/index.php:68
msgid "Size"
msgstr ""
-#: js/files.js:571 templates/index.php:70
+#: js/files.js:615 templates/index.php:70
msgid "Modified"
msgstr ""
diff --git a/l10n/hi/files_sharing.po b/l10n/hi/files_sharing.po
index 880d709f268..c46f3afab36 100644
--- a/l10n/hi/files_sharing.po
+++ b/l10n/hi/files_sharing.po
@@ -6,9 +6,9 @@
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
-"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-10-29 07:28-0400\n"
-"PO-Revision-Date: 2013-10-28 10:45+0000\n"
+"Report-Msgid-Bugs-To: translations@owncloud.org\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+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/settings.po b/l10n/hi/settings.po
index c6b9c74b3e1..50b828d472f 100644
--- a/l10n/hi/settings.po
+++ b/l10n/hi/settings.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-06 21:43-0500\n"
-"PO-Revision-Date: 2013-11-07 02:43+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+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/user_ldap.po b/l10n/hi/user_ldap.po
index 584cb25e33f..0d9b10ae4ad 100644
--- a/l10n/hi/user_ldap.po
+++ b/l10n/hi/user_ldap.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-03 12:38-0500\n"
-"PO-Revision-Date: 2013-11-03 17:39+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+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"
@@ -136,6 +136,10 @@ msgstr ""
msgid "Could not find the desired feature"
msgstr ""
+#: templates/part.settingcontrols.php:2
+msgid "Save"
+msgstr "सहेजें"
+
#: templates/part.settingcontrols.php:4
msgid "Test Configuration"
msgstr ""
diff --git a/l10n/hr/core.po b/l10n/hr/core.po
index fd43553cbad..04ddb4f13cc 100644
--- a/l10n/hr/core.po
+++ b/l10n/hr/core.po
@@ -6,9 +6,9 @@
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
-"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-10-30 03:32-0400\n"
-"PO-Revision-Date: 2013-10-30 07:32+0000\n"
+"Report-Msgid-Bugs-To: translations@owncloud.org\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:11+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"
@@ -281,12 +281,12 @@ msgstr ""
msgid "Share"
msgstr "Podijeli"
-#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:690
-#: js/share.js:702
+#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:692
+#: js/share.js:704
msgid "Error"
msgstr "Greška"
-#: js/share.js:160 js/share.js:730
+#: js/share.js:160 js/share.js:732
msgid "Error while sharing"
msgstr "Greška prilikom djeljenja"
@@ -342,79 +342,79 @@ msgstr "Postavi datum isteka"
msgid "Expiration date"
msgstr "Datum isteka"
-#: js/share.js:272
+#: js/share.js:274
msgid "Share via email:"
msgstr "Dijeli preko email-a:"
-#: js/share.js:275
+#: js/share.js:277
msgid "No people found"
msgstr "Osobe nisu pronađene"
-#: js/share.js:305 js/share.js:342
+#: js/share.js:307 js/share.js:344
msgid "group"
msgstr ""
-#: js/share.js:316
+#: js/share.js:318
msgid "Resharing is not allowed"
msgstr "Ponovo dijeljenje nije dopušteno"
-#: js/share.js:358
+#: js/share.js:360
msgid "Shared in {item} with {user}"
msgstr ""
-#: js/share.js:380
+#: js/share.js:382
msgid "Unshare"
msgstr "Makni djeljenje"
-#: js/share.js:388
+#: js/share.js:390
msgid "notify by email"
msgstr ""
-#: js/share.js:391
+#: js/share.js:393
msgid "can edit"
msgstr "može mjenjat"
-#: js/share.js:393
+#: js/share.js:395
msgid "access control"
msgstr "kontrola pristupa"
-#: js/share.js:396
+#: js/share.js:398
msgid "create"
msgstr "kreiraj"
-#: js/share.js:399
+#: js/share.js:401
msgid "update"
msgstr "ažuriraj"
-#: js/share.js:402
+#: js/share.js:404
msgid "delete"
msgstr "izbriši"
-#: js/share.js:405
+#: js/share.js:407
msgid "share"
msgstr "djeli"
-#: js/share.js:447 js/share.js:677
+#: js/share.js:449 js/share.js:679
msgid "Password protected"
msgstr "Zaštita lozinkom"
-#: js/share.js:690
+#: js/share.js:692
msgid "Error unsetting expiration date"
msgstr "Greška prilikom brisanja datuma isteka"
-#: js/share.js:702
+#: js/share.js:704
msgid "Error setting expiration date"
msgstr "Greška prilikom postavljanja datuma isteka"
-#: js/share.js:717
+#: js/share.js:719
msgid "Sending ..."
msgstr ""
-#: js/share.js:728
+#: js/share.js:730
msgid "Email sent"
msgstr ""
-#: js/share.js:752
+#: js/share.js:754
msgid "Warning"
msgstr ""
diff --git a/l10n/hr/files.po b/l10n/hr/files.po
index 20dafee734d..e0a1c7a9787 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: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-03 12:38-0500\n"
-"PO-Revision-Date: 2013-11-03 17:38+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-09 07:01+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n"
"MIME-Version: 1.0\n"
@@ -27,7 +27,7 @@ msgstr ""
msgid "Could not move %s"
msgstr ""
-#: ajax/newfile.php:56 js/files.js:27
+#: ajax/newfile.php:56 js/files.js:74
msgid "File name cannot be empty."
msgstr ""
@@ -51,7 +51,7 @@ msgstr ""
msgid "Error while downloading %s to %s"
msgstr ""
-#: ajax/newfile.php:127
+#: ajax/newfile.php:128
msgid "Error when creating the file"
msgstr ""
@@ -114,15 +114,15 @@ msgstr "Neuspjelo pisanje na disk"
msgid "Not enough storage available"
msgstr ""
-#: ajax/upload.php:127 ajax/upload.php:153
+#: ajax/upload.php:127 ajax/upload.php:154
msgid "Upload failed. Could not get file info."
msgstr ""
-#: ajax/upload.php:143
+#: ajax/upload.php:144
msgid "Upload failed. Could not find uploaded file"
msgstr ""
-#: ajax/upload.php:170
+#: ajax/upload.php:172
msgid "Invalid directory."
msgstr ""
@@ -142,24 +142,24 @@ msgstr ""
msgid "Upload cancelled."
msgstr "Slanje poništeno."
-#: js/file-upload.js:345
+#: js/file-upload.js:344
msgid "Could not get result from server."
msgstr ""
-#: js/file-upload.js:437
+#: js/file-upload.js:436
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr "Učitavanje datoteke. Napuštanjem stranice će prekinuti učitavanje."
-#: js/file-upload.js:520
+#: js/file-upload.js:519
msgid "URL cannot be empty"
msgstr ""
-#: js/file-upload.js:524 js/filelist.js:364
+#: js/file-upload.js:523 js/filelist.js:371
msgid "In the home folder 'Shared' is a reserved filename"
msgstr ""
-#: js/file-upload.js:526 js/filelist.js:366
+#: js/file-upload.js:525 js/filelist.js:373
msgid "{new_name} already exists"
msgstr ""
@@ -183,107 +183,107 @@ msgstr ""
msgid "Rename"
msgstr "Promjeni ime"
-#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:854
+#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:857
msgid "Pending"
msgstr "U tijeku"
-#: js/filelist.js:392
+#: js/filelist.js:399
msgid "Could not rename file"
msgstr ""
-#: js/filelist.js:511
+#: js/filelist.js:518
msgid "replaced {new_name} with {old_name}"
msgstr ""
-#: js/filelist.js:511
+#: js/filelist.js:518
msgid "undo"
msgstr "vrati"
-#: js/filelist.js:582 js/filelist.js:649 js/files.js:587
+#: js/filelist.js:578 js/filelist.js:652 js/files.js:631
msgid "%n folder"
msgid_plural "%n folders"
msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: js/filelist.js:583 js/filelist.js:650 js/files.js:593
+#: js/filelist.js:579 js/filelist.js:653 js/files.js:637
msgid "%n file"
msgid_plural "%n files"
msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: js/filelist.js:590
+#: js/filelist.js:586
msgid "{dirs} and {files}"
msgstr ""
-#: js/filelist.js:793 js/filelist.js:831
+#: js/filelist.js:796 js/filelist.js:834
msgid "Uploading %n file"
msgid_plural "Uploading %n files"
msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: js/files.js:25
+#: js/files.js:72
msgid "'.' is an invalid file name."
msgstr ""
-#: js/files.js:34
+#: js/files.js:81
msgid ""
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not "
"allowed."
msgstr ""
-#: js/files.js:46
+#: js/files.js:93
msgid "Your storage is full, files can not be updated or synced anymore!"
msgstr ""
-#: js/files.js:50
+#: js/files.js:97
msgid "Your storage is almost full ({usedSpacePercent}%)"
msgstr ""
-#: js/files.js:63
+#: js/files.js:110
msgid ""
"Encryption App is enabled but your keys are not initialized, please log-out "
"and log-in again"
msgstr ""
-#: js/files.js:67
+#: js/files.js:114
msgid ""
"Invalid private key for Encryption App. Please update your private key "
"password in your personal settings to recover access to your encrypted "
"files."
msgstr ""
-#: js/files.js:71
+#: js/files.js:118
msgid ""
"Encryption was disabled but your files are still encrypted. Please go to "
"your personal settings to decrypt your files."
msgstr ""
-#: js/files.js:302
+#: js/files.js:349
msgid ""
"Your download is being prepared. This might take some time if the files are "
"big."
msgstr ""
-#: js/files.js:514 js/files.js:552
+#: js/files.js:558 js/files.js:596
msgid "Error moving file"
msgstr ""
-#: js/files.js:514 js/files.js:552
+#: js/files.js:558 js/files.js:596
msgid "Error"
msgstr "Greška"
-#: js/files.js:569 templates/index.php:56
+#: js/files.js:613 templates/index.php:56
msgid "Name"
msgstr "Ime"
-#: js/files.js:570 templates/index.php:68
+#: js/files.js:614 templates/index.php:68
msgid "Size"
msgstr "Veličina"
-#: js/files.js:571 templates/index.php:70
+#: js/files.js:615 templates/index.php:70
msgid "Modified"
msgstr "Zadnja promjena"
diff --git a/l10n/hr/files_sharing.po b/l10n/hr/files_sharing.po
index a4f5c03712f..f03584a61ae 100644
--- a/l10n/hr/files_sharing.po
+++ b/l10n/hr/files_sharing.po
@@ -6,9 +6,9 @@
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
-"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-10-29 07:28-0400\n"
-"PO-Revision-Date: 2013-10-28 10:45+0000\n"
+"Report-Msgid-Bugs-To: translations@owncloud.org\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+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/settings.po b/l10n/hr/settings.po
index ec0a1291568..ebf415dd910 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: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-06 21:43-0500\n"
-"PO-Revision-Date: 2013-11-07 02:43+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+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 eec66c71fc2..7d1781372ed 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: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-03 12:38-0500\n"
-"PO-Revision-Date: 2013-11-03 17:39+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+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"
@@ -138,6 +138,10 @@ msgstr ""
msgid "Could not find the desired feature"
msgstr ""
+#: templates/part.settingcontrols.php:2
+msgid "Save"
+msgstr "Snimi"
+
#: templates/part.settingcontrols.php:4
msgid "Test Configuration"
msgstr ""
diff --git a/l10n/hu_HU/core.po b/l10n/hu_HU/core.po
index 388fe9a8d54..79dafd940cb 100644
--- a/l10n/hu_HU/core.po
+++ b/l10n/hu_HU/core.po
@@ -10,8 +10,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-03 12:38-0500\n"
-"PO-Revision-Date: 2013-10-30 19:30+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:11+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 799bb5ac569..f9575b4deab 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: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-03 12:38-0500\n"
-"PO-Revision-Date: 2013-11-03 17:38+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-09 07:01+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n"
"MIME-Version: 1.0\n"
@@ -28,7 +28,7 @@ msgstr "%s áthelyezése nem sikerült - már létezik másik fájl ezzel a név
msgid "Could not move %s"
msgstr "Nem sikerült %s áthelyezése"
-#: ajax/newfile.php:56 js/files.js:27
+#: ajax/newfile.php:56 js/files.js:74
msgid "File name cannot be empty."
msgstr "A fájlnév nem lehet semmi."
@@ -52,7 +52,7 @@ msgstr "A kiinduló állomány érvénytelen"
msgid "Error while downloading %s to %s"
msgstr "Hiba történt miközben %s-t letöltöttük %s-be"
-#: ajax/newfile.php:127
+#: ajax/newfile.php:128
msgid "Error when creating the file"
msgstr "Hiba történt az állomány létrehozásakor"
@@ -115,15 +115,15 @@ msgstr "Nem sikerült a lemezre történő írás"
msgid "Not enough storage available"
msgstr "Nincs elég szabad hely."
-#: ajax/upload.php:127 ajax/upload.php:153
+#: ajax/upload.php:127 ajax/upload.php:154
msgid "Upload failed. Could not get file info."
msgstr "A feltöltés nem sikerült. Az állományt leíró információk nem érhetők el."
-#: ajax/upload.php:143
+#: ajax/upload.php:144
msgid "Upload failed. Could not find uploaded file"
msgstr "A feltöltés nem sikerült. Nem található a feltöltendő állomány."
-#: ajax/upload.php:170
+#: ajax/upload.php:172
msgid "Invalid directory."
msgstr "Érvénytelen mappa."
@@ -143,24 +143,24 @@ msgstr "Nincs elég szabad hely"
msgid "Upload cancelled."
msgstr "A feltöltést megszakítottuk."
-#: js/file-upload.js:345
+#: js/file-upload.js:344
msgid "Could not get result from server."
msgstr "A kiszolgálótól nem kapható meg az eredmény."
-#: js/file-upload.js:437
+#: js/file-upload.js:436
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr "Fájlfeltöltés van folyamatban. Az oldal elhagyása megszakítja a feltöltést."
-#: js/file-upload.js:520
+#: js/file-upload.js:519
msgid "URL cannot be empty"
msgstr "Az URL-cím nem maradhat kitöltetlenül"
-#: js/file-upload.js:524 js/filelist.js:364
+#: js/file-upload.js:523 js/filelist.js:371
msgid "In the home folder 'Shared' is a reserved filename"
msgstr "A kiindulási mappában a 'Shared' egy belső használatra fenntartott név"
-#: js/file-upload.js:526 js/filelist.js:366
+#: js/file-upload.js:525 js/filelist.js:373
msgid "{new_name} already exists"
msgstr "{new_name} már létezik"
@@ -184,104 +184,104 @@ msgstr "Végleges törlés"
msgid "Rename"
msgstr "Átnevezés"
-#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:854
+#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:857
msgid "Pending"
msgstr "Folyamatban"
-#: js/filelist.js:392
+#: js/filelist.js:399
msgid "Could not rename file"
msgstr "Az állomány nem nevezhető át"
-#: js/filelist.js:511
+#: js/filelist.js:518
msgid "replaced {new_name} with {old_name}"
msgstr "{new_name} fájlt kicseréltük ezzel: {old_name}"
-#: js/filelist.js:511
+#: js/filelist.js:518
msgid "undo"
msgstr "visszavonás"
-#: js/filelist.js:582 js/filelist.js:649 js/files.js:587
+#: js/filelist.js:578 js/filelist.js:652 js/files.js:631
msgid "%n folder"
msgid_plural "%n folders"
msgstr[0] "%n mappa"
msgstr[1] "%n mappa"
-#: js/filelist.js:583 js/filelist.js:650 js/files.js:593
+#: js/filelist.js:579 js/filelist.js:653 js/files.js:637
msgid "%n file"
msgid_plural "%n files"
msgstr[0] "%n állomány"
msgstr[1] "%n állomány"
-#: js/filelist.js:590
+#: js/filelist.js:586
msgid "{dirs} and {files}"
msgstr "{dirs} és {files}"
-#: js/filelist.js:793 js/filelist.js:831
+#: js/filelist.js:796 js/filelist.js:834
msgid "Uploading %n file"
msgid_plural "Uploading %n files"
msgstr[0] "%n állomány feltöltése"
msgstr[1] "%n állomány feltöltése"
-#: js/files.js:25
+#: js/files.js:72
msgid "'.' is an invalid file name."
msgstr "'.' fájlnév érvénytelen."
-#: js/files.js:34
+#: js/files.js:81
msgid ""
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not "
"allowed."
msgstr "Érvénytelen elnevezés. Ezek a karakterek nem használhatók: '\\', '/', '<', '>', ':', '\"', '|', '?' és '*'"
-#: js/files.js:46
+#: js/files.js:93
msgid "Your storage is full, files can not be updated or synced anymore!"
msgstr "A tároló tele van, a fájlok nem frissíthetőek vagy szinkronizálhatóak a jövőben."
-#: js/files.js:50
+#: js/files.js:97
msgid "Your storage is almost full ({usedSpacePercent}%)"
msgstr "A tároló majdnem tele van ({usedSpacePercent}%)"
-#: js/files.js:63
+#: js/files.js:110
msgid ""
"Encryption App is enabled but your keys are not initialized, please log-out "
"and log-in again"
msgstr "Az állományok titkosítása engedélyezve van, de az Ön titkos kulcsai nincsenek beállítva. Ezért kérjük, hogy jelentkezzen ki, és lépjen be újra!"
-#: js/files.js:67
+#: js/files.js:114
msgid ""
"Invalid private key for Encryption App. Please update your private key "
"password in your personal settings to recover access to your encrypted "
"files."
msgstr "Az állományok titkosításához használt titkos kulcsa érvénytelen. Kérjük frissítse a titkos kulcs jelszót a személyes beállításokban, hogy ismét hozzáférjen a titkosított állományaihoz!"
-#: js/files.js:71
+#: js/files.js:118
msgid ""
"Encryption was disabled but your files are still encrypted. Please go to "
"your personal settings to decrypt your files."
msgstr "A titkosítási funkciót kikapcsolták, de az Ön állományai még mindig titkosított állapotban vannak. A személyes beállításoknál tudja a titkosítást feloldani."
-#: js/files.js:302
+#: js/files.js:349
msgid ""
"Your download is being prepared. This might take some time if the files are "
"big."
msgstr "Készül a letöltendő állomány. Ez eltarthat egy ideig, ha nagyok a fájlok."
-#: js/files.js:514 js/files.js:552
+#: js/files.js:558 js/files.js:596
msgid "Error moving file"
msgstr "Az állomány áthelyezése nem sikerült."
-#: js/files.js:514 js/files.js:552
+#: js/files.js:558 js/files.js:596
msgid "Error"
msgstr "Hiba"
-#: js/files.js:569 templates/index.php:56
+#: js/files.js:613 templates/index.php:56
msgid "Name"
msgstr "Név"
-#: js/files.js:570 templates/index.php:68
+#: js/files.js:614 templates/index.php:68
msgid "Size"
msgstr "Méret"
-#: js/files.js:571 templates/index.php:70
+#: js/files.js:615 templates/index.php:70
msgid "Modified"
msgstr "Módosítva"
diff --git a/l10n/hu_HU/files_sharing.po b/l10n/hu_HU/files_sharing.po
index f4947ec2a20..257a0c485b3 100644
--- a/l10n/hu_HU/files_sharing.po
+++ b/l10n/hu_HU/files_sharing.po
@@ -7,9 +7,9 @@
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
-"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-10-29 07:28-0400\n"
-"PO-Revision-Date: 2013-10-28 10:45+0000\n"
+"Report-Msgid-Bugs-To: translations@owncloud.org\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+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/settings.po b/l10n/hu_HU/settings.po
index 23c5e35ae12..01304063d7c 100644
--- a/l10n/hu_HU/settings.po
+++ b/l10n/hu_HU/settings.po
@@ -11,8 +11,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-06 21:43-0500\n"
-"PO-Revision-Date: 2013-11-07 02:43+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+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 8d2ad438808..3b791212359 100644
--- a/l10n/hu_HU/user_ldap.po
+++ b/l10n/hu_HU/user_ldap.po
@@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-03 12:38-0500\n"
-"PO-Revision-Date: 2013-11-03 17:39+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+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"
@@ -138,6 +138,10 @@ msgstr "Érvénytelen gépnév"
msgid "Could not find the desired feature"
msgstr "A kívánt funkció nem található"
+#: templates/part.settingcontrols.php:2
+msgid "Save"
+msgstr "Mentés"
+
#: templates/part.settingcontrols.php:4
msgid "Test Configuration"
msgstr "A beállítások tesztelése"
diff --git a/l10n/hy/files.po b/l10n/hy/files.po
index ecc6f0ae8cd..dc0e68a5643 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: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-03 12:38-0500\n"
-"PO-Revision-Date: 2013-11-03 17:38+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-09 07:01+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n"
"MIME-Version: 1.0\n"
@@ -27,7 +27,7 @@ msgstr ""
msgid "Could not move %s"
msgstr ""
-#: ajax/newfile.php:56 js/files.js:27
+#: ajax/newfile.php:56 js/files.js:74
msgid "File name cannot be empty."
msgstr ""
@@ -51,7 +51,7 @@ msgstr ""
msgid "Error while downloading %s to %s"
msgstr ""
-#: ajax/newfile.php:127
+#: ajax/newfile.php:128
msgid "Error when creating the file"
msgstr ""
@@ -114,15 +114,15 @@ msgstr ""
msgid "Not enough storage available"
msgstr ""
-#: ajax/upload.php:127 ajax/upload.php:153
+#: ajax/upload.php:127 ajax/upload.php:154
msgid "Upload failed. Could not get file info."
msgstr ""
-#: ajax/upload.php:143
+#: ajax/upload.php:144
msgid "Upload failed. Could not find uploaded file"
msgstr ""
-#: ajax/upload.php:170
+#: ajax/upload.php:172
msgid "Invalid directory."
msgstr ""
@@ -142,24 +142,24 @@ msgstr ""
msgid "Upload cancelled."
msgstr ""
-#: js/file-upload.js:345
+#: js/file-upload.js:344
msgid "Could not get result from server."
msgstr ""
-#: js/file-upload.js:437
+#: js/file-upload.js:436
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr ""
-#: js/file-upload.js:520
+#: js/file-upload.js:519
msgid "URL cannot be empty"
msgstr ""
-#: js/file-upload.js:524 js/filelist.js:364
+#: js/file-upload.js:523 js/filelist.js:371
msgid "In the home folder 'Shared' is a reserved filename"
msgstr ""
-#: js/file-upload.js:526 js/filelist.js:366
+#: js/file-upload.js:525 js/filelist.js:373
msgid "{new_name} already exists"
msgstr ""
@@ -183,104 +183,104 @@ msgstr ""
msgid "Rename"
msgstr ""
-#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:854
+#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:857
msgid "Pending"
msgstr ""
-#: js/filelist.js:392
+#: js/filelist.js:399
msgid "Could not rename file"
msgstr ""
-#: js/filelist.js:511
+#: js/filelist.js:518
msgid "replaced {new_name} with {old_name}"
msgstr ""
-#: js/filelist.js:511
+#: js/filelist.js:518
msgid "undo"
msgstr ""
-#: js/filelist.js:582 js/filelist.js:649 js/files.js:587
+#: js/filelist.js:578 js/filelist.js:652 js/files.js:631
msgid "%n folder"
msgid_plural "%n folders"
msgstr[0] ""
msgstr[1] ""
-#: js/filelist.js:583 js/filelist.js:650 js/files.js:593
+#: js/filelist.js:579 js/filelist.js:653 js/files.js:637
msgid "%n file"
msgid_plural "%n files"
msgstr[0] ""
msgstr[1] ""
-#: js/filelist.js:590
+#: js/filelist.js:586
msgid "{dirs} and {files}"
msgstr ""
-#: js/filelist.js:793 js/filelist.js:831
+#: js/filelist.js:796 js/filelist.js:834
msgid "Uploading %n file"
msgid_plural "Uploading %n files"
msgstr[0] ""
msgstr[1] ""
-#: js/files.js:25
+#: js/files.js:72
msgid "'.' is an invalid file name."
msgstr ""
-#: js/files.js:34
+#: js/files.js:81
msgid ""
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not "
"allowed."
msgstr ""
-#: js/files.js:46
+#: js/files.js:93
msgid "Your storage is full, files can not be updated or synced anymore!"
msgstr ""
-#: js/files.js:50
+#: js/files.js:97
msgid "Your storage is almost full ({usedSpacePercent}%)"
msgstr ""
-#: js/files.js:63
+#: js/files.js:110
msgid ""
"Encryption App is enabled but your keys are not initialized, please log-out "
"and log-in again"
msgstr ""
-#: js/files.js:67
+#: js/files.js:114
msgid ""
"Invalid private key for Encryption App. Please update your private key "
"password in your personal settings to recover access to your encrypted "
"files."
msgstr ""
-#: js/files.js:71
+#: js/files.js:118
msgid ""
"Encryption was disabled but your files are still encrypted. Please go to "
"your personal settings to decrypt your files."
msgstr ""
-#: js/files.js:302
+#: js/files.js:349
msgid ""
"Your download is being prepared. This might take some time if the files are "
"big."
msgstr ""
-#: js/files.js:514 js/files.js:552
+#: js/files.js:558 js/files.js:596
msgid "Error moving file"
msgstr ""
-#: js/files.js:514 js/files.js:552
+#: js/files.js:558 js/files.js:596
msgid "Error"
msgstr ""
-#: js/files.js:569 templates/index.php:56
+#: js/files.js:613 templates/index.php:56
msgid "Name"
msgstr ""
-#: js/files.js:570 templates/index.php:68
+#: js/files.js:614 templates/index.php:68
msgid "Size"
msgstr ""
-#: js/files.js:571 templates/index.php:70
+#: js/files.js:615 templates/index.php:70
msgid "Modified"
msgstr ""
diff --git a/l10n/hy/user_ldap.po b/l10n/hy/user_ldap.po
index 6e337f8ba3d..189acad7c3d 100644
--- a/l10n/hy/user_ldap.po
+++ b/l10n/hy/user_ldap.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-03 12:38-0500\n"
-"PO-Revision-Date: 2013-11-03 17:39+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-09 07:02+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n"
"MIME-Version: 1.0\n"
@@ -136,6 +136,10 @@ msgstr ""
msgid "Could not find the desired feature"
msgstr ""
+#: templates/part.settingcontrols.php:2
+msgid "Save"
+msgstr "Պահպանել"
+
#: templates/part.settingcontrols.php:4
msgid "Test Configuration"
msgstr ""
diff --git a/l10n/ia/core.po b/l10n/ia/core.po
index 5b6fc0a369d..be410bda0db 100644
--- a/l10n/ia/core.po
+++ b/l10n/ia/core.po
@@ -6,9 +6,9 @@
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
-"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-10-30 03:32-0400\n"
-"PO-Revision-Date: 2013-10-30 07:32+0000\n"
+"Report-Msgid-Bugs-To: translations@owncloud.org\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+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"
@@ -276,12 +276,12 @@ msgstr ""
msgid "Share"
msgstr "Compartir"
-#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:690
-#: js/share.js:702
+#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:692
+#: js/share.js:704
msgid "Error"
msgstr "Error"
-#: js/share.js:160 js/share.js:730
+#: js/share.js:160 js/share.js:732
msgid "Error while sharing"
msgstr ""
@@ -337,79 +337,79 @@ msgstr ""
msgid "Expiration date"
msgstr ""
-#: js/share.js:272
+#: js/share.js:274
msgid "Share via email:"
msgstr ""
-#: js/share.js:275
+#: js/share.js:277
msgid "No people found"
msgstr ""
-#: js/share.js:305 js/share.js:342
+#: js/share.js:307 js/share.js:344
msgid "group"
msgstr ""
-#: js/share.js:316
+#: js/share.js:318
msgid "Resharing is not allowed"
msgstr ""
-#: js/share.js:358
+#: js/share.js:360
msgid "Shared in {item} with {user}"
msgstr ""
-#: js/share.js:380
+#: js/share.js:382
msgid "Unshare"
msgstr ""
-#: js/share.js:388
+#: js/share.js:390
msgid "notify by email"
msgstr ""
-#: js/share.js:391
+#: js/share.js:393
msgid "can edit"
msgstr ""
-#: js/share.js:393
+#: js/share.js:395
msgid "access control"
msgstr ""
-#: js/share.js:396
+#: js/share.js:398
msgid "create"
msgstr ""
-#: js/share.js:399
+#: js/share.js:401
msgid "update"
msgstr ""
-#: js/share.js:402
+#: js/share.js:404
msgid "delete"
msgstr ""
-#: js/share.js:405
+#: js/share.js:407
msgid "share"
msgstr ""
-#: js/share.js:447 js/share.js:677
+#: js/share.js:449 js/share.js:679
msgid "Password protected"
msgstr ""
-#: js/share.js:690
+#: js/share.js:692
msgid "Error unsetting expiration date"
msgstr ""
-#: js/share.js:702
+#: js/share.js:704
msgid "Error setting expiration date"
msgstr ""
-#: js/share.js:717
+#: js/share.js:719
msgid "Sending ..."
msgstr ""
-#: js/share.js:728
+#: js/share.js:730
msgid "Email sent"
msgstr ""
-#: js/share.js:752
+#: js/share.js:754
msgid "Warning"
msgstr ""
diff --git a/l10n/ia/files.po b/l10n/ia/files.po
index c7547240c02..39400d1bf0a 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: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-03 12:38-0500\n"
-"PO-Revision-Date: 2013-11-03 17:38+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-09 07:01+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n"
"MIME-Version: 1.0\n"
@@ -27,7 +27,7 @@ msgstr ""
msgid "Could not move %s"
msgstr ""
-#: ajax/newfile.php:56 js/files.js:27
+#: ajax/newfile.php:56 js/files.js:74
msgid "File name cannot be empty."
msgstr ""
@@ -51,7 +51,7 @@ msgstr ""
msgid "Error while downloading %s to %s"
msgstr ""
-#: ajax/newfile.php:127
+#: ajax/newfile.php:128
msgid "Error when creating the file"
msgstr ""
@@ -114,15 +114,15 @@ msgstr ""
msgid "Not enough storage available"
msgstr ""
-#: ajax/upload.php:127 ajax/upload.php:153
+#: ajax/upload.php:127 ajax/upload.php:154
msgid "Upload failed. Could not get file info."
msgstr ""
-#: ajax/upload.php:143
+#: ajax/upload.php:144
msgid "Upload failed. Could not find uploaded file"
msgstr ""
-#: ajax/upload.php:170
+#: ajax/upload.php:172
msgid "Invalid directory."
msgstr ""
@@ -142,24 +142,24 @@ msgstr ""
msgid "Upload cancelled."
msgstr ""
-#: js/file-upload.js:345
+#: js/file-upload.js:344
msgid "Could not get result from server."
msgstr ""
-#: js/file-upload.js:437
+#: js/file-upload.js:436
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr ""
-#: js/file-upload.js:520
+#: js/file-upload.js:519
msgid "URL cannot be empty"
msgstr ""
-#: js/file-upload.js:524 js/filelist.js:364
+#: js/file-upload.js:523 js/filelist.js:371
msgid "In the home folder 'Shared' is a reserved filename"
msgstr ""
-#: js/file-upload.js:526 js/filelist.js:366
+#: js/file-upload.js:525 js/filelist.js:373
msgid "{new_name} already exists"
msgstr ""
@@ -183,104 +183,104 @@ msgstr ""
msgid "Rename"
msgstr ""
-#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:854
+#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:857
msgid "Pending"
msgstr ""
-#: js/filelist.js:392
+#: js/filelist.js:399
msgid "Could not rename file"
msgstr ""
-#: js/filelist.js:511
+#: js/filelist.js:518
msgid "replaced {new_name} with {old_name}"
msgstr ""
-#: js/filelist.js:511
+#: js/filelist.js:518
msgid "undo"
msgstr ""
-#: js/filelist.js:582 js/filelist.js:649 js/files.js:587
+#: js/filelist.js:578 js/filelist.js:652 js/files.js:631
msgid "%n folder"
msgid_plural "%n folders"
msgstr[0] ""
msgstr[1] ""
-#: js/filelist.js:583 js/filelist.js:650 js/files.js:593
+#: js/filelist.js:579 js/filelist.js:653 js/files.js:637
msgid "%n file"
msgid_plural "%n files"
msgstr[0] ""
msgstr[1] ""
-#: js/filelist.js:590
+#: js/filelist.js:586
msgid "{dirs} and {files}"
msgstr ""
-#: js/filelist.js:793 js/filelist.js:831
+#: js/filelist.js:796 js/filelist.js:834
msgid "Uploading %n file"
msgid_plural "Uploading %n files"
msgstr[0] ""
msgstr[1] ""
-#: js/files.js:25
+#: js/files.js:72
msgid "'.' is an invalid file name."
msgstr ""
-#: js/files.js:34
+#: js/files.js:81
msgid ""
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not "
"allowed."
msgstr ""
-#: js/files.js:46
+#: js/files.js:93
msgid "Your storage is full, files can not be updated or synced anymore!"
msgstr ""
-#: js/files.js:50
+#: js/files.js:97
msgid "Your storage is almost full ({usedSpacePercent}%)"
msgstr ""
-#: js/files.js:63
+#: js/files.js:110
msgid ""
"Encryption App is enabled but your keys are not initialized, please log-out "
"and log-in again"
msgstr ""
-#: js/files.js:67
+#: js/files.js:114
msgid ""
"Invalid private key for Encryption App. Please update your private key "
"password in your personal settings to recover access to your encrypted "
"files."
msgstr ""
-#: js/files.js:71
+#: js/files.js:118
msgid ""
"Encryption was disabled but your files are still encrypted. Please go to "
"your personal settings to decrypt your files."
msgstr ""
-#: js/files.js:302
+#: js/files.js:349
msgid ""
"Your download is being prepared. This might take some time if the files are "
"big."
msgstr ""
-#: js/files.js:514 js/files.js:552
+#: js/files.js:558 js/files.js:596
msgid "Error moving file"
msgstr ""
-#: js/files.js:514 js/files.js:552
+#: js/files.js:558 js/files.js:596
msgid "Error"
msgstr "Error"
-#: js/files.js:569 templates/index.php:56
+#: js/files.js:613 templates/index.php:56
msgid "Name"
msgstr "Nomine"
-#: js/files.js:570 templates/index.php:68
+#: js/files.js:614 templates/index.php:68
msgid "Size"
msgstr "Dimension"
-#: js/files.js:571 templates/index.php:70
+#: js/files.js:615 templates/index.php:70
msgid "Modified"
msgstr "Modificate"
diff --git a/l10n/ia/files_sharing.po b/l10n/ia/files_sharing.po
index 7039bcdfcd0..42a9ec9e9ff 100644
--- a/l10n/ia/files_sharing.po
+++ b/l10n/ia/files_sharing.po
@@ -6,9 +6,9 @@
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
-"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-10-29 07:28-0400\n"
-"PO-Revision-Date: 2013-10-28 10:45+0000\n"
+"Report-Msgid-Bugs-To: translations@owncloud.org\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+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/settings.po b/l10n/ia/settings.po
index 0c5a5aab79d..65e6efb406d 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: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-06 21:43-0500\n"
-"PO-Revision-Date: 2013-11-07 02:43+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+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 24de1402160..3c014a64f25 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: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-03 12:38-0500\n"
-"PO-Revision-Date: 2013-11-03 17:39+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+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"
@@ -136,6 +136,10 @@ msgstr ""
msgid "Could not find the desired feature"
msgstr ""
+#: templates/part.settingcontrols.php:2
+msgid "Save"
+msgstr "Salveguardar"
+
#: templates/part.settingcontrols.php:4
msgid "Test Configuration"
msgstr ""
diff --git a/l10n/id/core.po b/l10n/id/core.po
index 1c251bfde5f..314ab0dffea 100644
--- a/l10n/id/core.po
+++ b/l10n/id/core.po
@@ -6,9 +6,9 @@
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
-"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-10-30 03:32-0400\n"
-"PO-Revision-Date: 2013-10-30 07:32+0000\n"
+"Report-Msgid-Bugs-To: translations@owncloud.org\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:11+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"
@@ -271,12 +271,12 @@ msgstr "Dibagikan"
msgid "Share"
msgstr "Bagikan"
-#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:690
-#: js/share.js:702
+#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:692
+#: js/share.js:704
msgid "Error"
msgstr "Galat"
-#: js/share.js:160 js/share.js:730
+#: js/share.js:160 js/share.js:732
msgid "Error while sharing"
msgstr "Galat ketika membagikan"
@@ -332,79 +332,79 @@ msgstr "Setel tanggal kedaluwarsa"
msgid "Expiration date"
msgstr "Tanggal kedaluwarsa"
-#: js/share.js:272
+#: js/share.js:274
msgid "Share via email:"
msgstr "Bagian lewat email:"
-#: js/share.js:275
+#: js/share.js:277
msgid "No people found"
msgstr "Tidak ada orang ditemukan"
-#: js/share.js:305 js/share.js:342
+#: js/share.js:307 js/share.js:344
msgid "group"
msgstr "grup"
-#: js/share.js:316
+#: js/share.js:318
msgid "Resharing is not allowed"
msgstr "Berbagi ulang tidak diizinkan"
-#: js/share.js:358
+#: js/share.js:360
msgid "Shared in {item} with {user}"
msgstr "Dibagikan dalam {item} dengan {user}"
-#: js/share.js:380
+#: js/share.js:382
msgid "Unshare"
msgstr "Batalkan berbagi"
-#: js/share.js:388
+#: js/share.js:390
msgid "notify by email"
msgstr ""
-#: js/share.js:391
+#: js/share.js:393
msgid "can edit"
msgstr "dapat mengedit"
-#: js/share.js:393
+#: js/share.js:395
msgid "access control"
msgstr "kontrol akses"
-#: js/share.js:396
+#: js/share.js:398
msgid "create"
msgstr "buat"
-#: js/share.js:399
+#: js/share.js:401
msgid "update"
msgstr "perbarui"
-#: js/share.js:402
+#: js/share.js:404
msgid "delete"
msgstr "hapus"
-#: js/share.js:405
+#: js/share.js:407
msgid "share"
msgstr "bagikan"
-#: js/share.js:447 js/share.js:677
+#: js/share.js:449 js/share.js:679
msgid "Password protected"
msgstr "Dilindungi sandi"
-#: js/share.js:690
+#: js/share.js:692
msgid "Error unsetting expiration date"
msgstr "Galat ketika menghapus tanggal kedaluwarsa"
-#: js/share.js:702
+#: js/share.js:704
msgid "Error setting expiration date"
msgstr "Galat ketika menyetel tanggal kedaluwarsa"
-#: js/share.js:717
+#: js/share.js:719
msgid "Sending ..."
msgstr "Mengirim ..."
-#: js/share.js:728
+#: js/share.js:730
msgid "Email sent"
msgstr "Email terkirim"
-#: js/share.js:752
+#: js/share.js:754
msgid "Warning"
msgstr "Peringatan"
diff --git a/l10n/id/files.po b/l10n/id/files.po
index fb785a9cf45..c5f5e6d55f6 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: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-03 12:38-0500\n"
-"PO-Revision-Date: 2013-11-03 17:38+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-09 07:01+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n"
"MIME-Version: 1.0\n"
@@ -27,7 +27,7 @@ msgstr "Tidak dapat memindahkan %s - Berkas dengan nama ini sudah ada"
msgid "Could not move %s"
msgstr "Tidak dapat memindahkan %s"
-#: ajax/newfile.php:56 js/files.js:27
+#: ajax/newfile.php:56 js/files.js:74
msgid "File name cannot be empty."
msgstr "Nama berkas tidak boleh kosong."
@@ -51,7 +51,7 @@ msgstr ""
msgid "Error while downloading %s to %s"
msgstr ""
-#: ajax/newfile.php:127
+#: ajax/newfile.php:128
msgid "Error when creating the file"
msgstr ""
@@ -114,15 +114,15 @@ msgstr "Gagal menulis ke disk"
msgid "Not enough storage available"
msgstr "Ruang penyimpanan tidak mencukupi"
-#: ajax/upload.php:127 ajax/upload.php:153
+#: ajax/upload.php:127 ajax/upload.php:154
msgid "Upload failed. Could not get file info."
msgstr ""
-#: ajax/upload.php:143
+#: ajax/upload.php:144
msgid "Upload failed. Could not find uploaded file"
msgstr ""
-#: ajax/upload.php:170
+#: ajax/upload.php:172
msgid "Invalid directory."
msgstr "Direktori tidak valid."
@@ -142,24 +142,24 @@ msgstr "Ruang penyimpanan tidak mencukupi"
msgid "Upload cancelled."
msgstr "Pengunggahan dibatalkan."
-#: js/file-upload.js:345
+#: js/file-upload.js:344
msgid "Could not get result from server."
msgstr ""
-#: js/file-upload.js:437
+#: js/file-upload.js:436
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr "Berkas sedang diunggah. Meninggalkan halaman ini akan membatalkan proses."
-#: js/file-upload.js:520
+#: js/file-upload.js:519
msgid "URL cannot be empty"
msgstr ""
-#: js/file-upload.js:524 js/filelist.js:364
+#: js/file-upload.js:523 js/filelist.js:371
msgid "In the home folder 'Shared' is a reserved filename"
msgstr ""
-#: js/file-upload.js:526 js/filelist.js:366
+#: js/file-upload.js:525 js/filelist.js:373
msgid "{new_name} already exists"
msgstr "{new_name} sudah ada"
@@ -183,101 +183,101 @@ msgstr "Hapus secara permanen"
msgid "Rename"
msgstr "Ubah nama"
-#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:854
+#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:857
msgid "Pending"
msgstr "Menunggu"
-#: js/filelist.js:392
+#: js/filelist.js:399
msgid "Could not rename file"
msgstr ""
-#: js/filelist.js:511
+#: js/filelist.js:518
msgid "replaced {new_name} with {old_name}"
msgstr "mengganti {new_name} dengan {old_name}"
-#: js/filelist.js:511
+#: js/filelist.js:518
msgid "undo"
msgstr "urungkan"
-#: js/filelist.js:582 js/filelist.js:649 js/files.js:587
+#: js/filelist.js:578 js/filelist.js:652 js/files.js:631
msgid "%n folder"
msgid_plural "%n folders"
msgstr[0] ""
-#: js/filelist.js:583 js/filelist.js:650 js/files.js:593
+#: js/filelist.js:579 js/filelist.js:653 js/files.js:637
msgid "%n file"
msgid_plural "%n files"
msgstr[0] ""
-#: js/filelist.js:590
+#: js/filelist.js:586
msgid "{dirs} and {files}"
msgstr ""
-#: js/filelist.js:793 js/filelist.js:831
+#: js/filelist.js:796 js/filelist.js:834
msgid "Uploading %n file"
msgid_plural "Uploading %n files"
msgstr[0] ""
-#: js/files.js:25
+#: js/files.js:72
msgid "'.' is an invalid file name."
msgstr "'.' bukan nama berkas yang valid."
-#: js/files.js:34
+#: js/files.js:81
msgid ""
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not "
"allowed."
msgstr "Nama tidak valid, karakter '\\', '/', '<', '>', ':', '\"', '|', '?' dan '*' tidak diizinkan."
-#: js/files.js:46
+#: js/files.js:93
msgid "Your storage is full, files can not be updated or synced anymore!"
msgstr "Ruang penyimpanan Anda penuh, berkas tidak dapat diperbarui atau disinkronkan lagi!"
-#: js/files.js:50
+#: js/files.js:97
msgid "Your storage is almost full ({usedSpacePercent}%)"
msgstr "Ruang penyimpanan hampir penuh ({usedSpacePercent}%)"
-#: js/files.js:63
+#: js/files.js:110
msgid ""
"Encryption App is enabled but your keys are not initialized, please log-out "
"and log-in again"
msgstr ""
-#: js/files.js:67
+#: js/files.js:114
msgid ""
"Invalid private key for Encryption App. Please update your private key "
"password in your personal settings to recover access to your encrypted "
"files."
msgstr ""
-#: js/files.js:71
+#: js/files.js:118
msgid ""
"Encryption was disabled but your files are still encrypted. Please go to "
"your personal settings to decrypt your files."
msgstr ""
-#: js/files.js:302
+#: js/files.js:349
msgid ""
"Your download is being prepared. This might take some time if the files are "
"big."
msgstr "Unduhan Anda sedang disiapkan. Prosesnya dapat berlangsung agak lama jika ukuran berkasnya besar."
-#: js/files.js:514 js/files.js:552
+#: js/files.js:558 js/files.js:596
msgid "Error moving file"
msgstr ""
-#: js/files.js:514 js/files.js:552
+#: js/files.js:558 js/files.js:596
msgid "Error"
msgstr "Galat"
-#: js/files.js:569 templates/index.php:56
+#: js/files.js:613 templates/index.php:56
msgid "Name"
msgstr "Nama"
-#: js/files.js:570 templates/index.php:68
+#: js/files.js:614 templates/index.php:68
msgid "Size"
msgstr "Ukuran"
-#: js/files.js:571 templates/index.php:70
+#: js/files.js:615 templates/index.php:70
msgid "Modified"
msgstr "Dimodifikasi"
diff --git a/l10n/id/files_sharing.po b/l10n/id/files_sharing.po
index 05befc2585b..f5c7d85daa3 100644
--- a/l10n/id/files_sharing.po
+++ b/l10n/id/files_sharing.po
@@ -6,9 +6,9 @@
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
-"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-10-29 07:28-0400\n"
-"PO-Revision-Date: 2013-10-28 10:45+0000\n"
+"Report-Msgid-Bugs-To: translations@owncloud.org\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+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/settings.po b/l10n/id/settings.po
index d3fa4c5609d..9c509915d92 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: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-06 21:43-0500\n"
-"PO-Revision-Date: 2013-11-07 02:43+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+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 c30db6060bf..fd433ea167d 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: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-03 12:38-0500\n"
-"PO-Revision-Date: 2013-11-03 17:39+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+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"
@@ -134,6 +134,10 @@ msgstr ""
msgid "Could not find the desired feature"
msgstr ""
+#: templates/part.settingcontrols.php:2
+msgid "Save"
+msgstr "Simpan"
+
#: templates/part.settingcontrols.php:4
msgid "Test Configuration"
msgstr "Uji Konfigurasi"
diff --git a/l10n/is/core.po b/l10n/is/core.po
index 9e6e26c3dd4..844655386b6 100644
--- a/l10n/is/core.po
+++ b/l10n/is/core.po
@@ -7,9 +7,9 @@
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
-"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-10-30 03:32-0400\n"
-"PO-Revision-Date: 2013-10-30 07:32+0000\n"
+"Report-Msgid-Bugs-To: translations@owncloud.org\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:11+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"
@@ -277,12 +277,12 @@ msgstr "Deilt"
msgid "Share"
msgstr "Deila"
-#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:690
-#: js/share.js:702
+#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:692
+#: js/share.js:704
msgid "Error"
msgstr "Villa"
-#: js/share.js:160 js/share.js:730
+#: js/share.js:160 js/share.js:732
msgid "Error while sharing"
msgstr "Villa við deilingu"
@@ -338,79 +338,79 @@ msgstr "Setja gildistíma"
msgid "Expiration date"
msgstr "Gildir til"
-#: js/share.js:272
+#: js/share.js:274
msgid "Share via email:"
msgstr "Deila með tölvupósti:"
-#: js/share.js:275
+#: js/share.js:277
msgid "No people found"
msgstr "Engir notendur fundust"
-#: js/share.js:305 js/share.js:342
+#: js/share.js:307 js/share.js:344
msgid "group"
msgstr ""
-#: js/share.js:316
+#: js/share.js:318
msgid "Resharing is not allowed"
msgstr "Endurdeiling er ekki leyfð"
-#: js/share.js:358
+#: js/share.js:360
msgid "Shared in {item} with {user}"
msgstr "Deilt með {item} ásamt {user}"
-#: js/share.js:380
+#: js/share.js:382
msgid "Unshare"
msgstr "Hætta deilingu"
-#: js/share.js:388
+#: js/share.js:390
msgid "notify by email"
msgstr ""
-#: js/share.js:391
+#: js/share.js:393
msgid "can edit"
msgstr "getur breytt"
-#: js/share.js:393
+#: js/share.js:395
msgid "access control"
msgstr "aðgangsstýring"
-#: js/share.js:396
+#: js/share.js:398
msgid "create"
msgstr "mynda"
-#: js/share.js:399
+#: js/share.js:401
msgid "update"
msgstr "uppfæra"
-#: js/share.js:402
+#: js/share.js:404
msgid "delete"
msgstr "eyða"
-#: js/share.js:405
+#: js/share.js:407
msgid "share"
msgstr "deila"
-#: js/share.js:447 js/share.js:677
+#: js/share.js:449 js/share.js:679
msgid "Password protected"
msgstr "Verja með lykilorði"
-#: js/share.js:690
+#: js/share.js:692
msgid "Error unsetting expiration date"
msgstr "Villa við að aftengja gildistíma"
-#: js/share.js:702
+#: js/share.js:704
msgid "Error setting expiration date"
msgstr "Villa við að setja gildistíma"
-#: js/share.js:717
+#: js/share.js:719
msgid "Sending ..."
msgstr "Sendi ..."
-#: js/share.js:728
+#: js/share.js:730
msgid "Email sent"
msgstr "Tölvupóstur sendur"
-#: js/share.js:752
+#: js/share.js:754
msgid "Warning"
msgstr "Aðvörun"
diff --git a/l10n/is/files.po b/l10n/is/files.po
index 2c104983dab..3c51272e4e3 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: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-03 12:38-0500\n"
-"PO-Revision-Date: 2013-11-03 17:38+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-09 07:01+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n"
"MIME-Version: 1.0\n"
@@ -27,7 +27,7 @@ msgstr "Gat ekki fært %s - Skrá með þessu nafni er þegar til"
msgid "Could not move %s"
msgstr "Gat ekki fært %s"
-#: ajax/newfile.php:56 js/files.js:27
+#: ajax/newfile.php:56 js/files.js:74
msgid "File name cannot be empty."
msgstr "Nafn skráar má ekki vera tómt"
@@ -51,7 +51,7 @@ msgstr ""
msgid "Error while downloading %s to %s"
msgstr ""
-#: ajax/newfile.php:127
+#: ajax/newfile.php:128
msgid "Error when creating the file"
msgstr ""
@@ -114,15 +114,15 @@ msgstr "Tókst ekki að skrifa á disk"
msgid "Not enough storage available"
msgstr ""
-#: ajax/upload.php:127 ajax/upload.php:153
+#: ajax/upload.php:127 ajax/upload.php:154
msgid "Upload failed. Could not get file info."
msgstr ""
-#: ajax/upload.php:143
+#: ajax/upload.php:144
msgid "Upload failed. Could not find uploaded file"
msgstr ""
-#: ajax/upload.php:170
+#: ajax/upload.php:172
msgid "Invalid directory."
msgstr "Ógild mappa."
@@ -142,24 +142,24 @@ msgstr "Ekki nægt pláss tiltækt"
msgid "Upload cancelled."
msgstr "Hætt við innsendingu."
-#: js/file-upload.js:345
+#: js/file-upload.js:344
msgid "Could not get result from server."
msgstr ""
-#: js/file-upload.js:437
+#: js/file-upload.js:436
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr "Innsending í gangi. Ef þú ferð af þessari síðu mun innsending misheppnast."
-#: js/file-upload.js:520
+#: js/file-upload.js:519
msgid "URL cannot be empty"
msgstr ""
-#: js/file-upload.js:524 js/filelist.js:364
+#: js/file-upload.js:523 js/filelist.js:371
msgid "In the home folder 'Shared' is a reserved filename"
msgstr ""
-#: js/file-upload.js:526 js/filelist.js:366
+#: js/file-upload.js:525 js/filelist.js:373
msgid "{new_name} already exists"
msgstr "{new_name} er þegar til"
@@ -183,104 +183,104 @@ msgstr ""
msgid "Rename"
msgstr "Endurskýra"
-#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:854
+#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:857
msgid "Pending"
msgstr "Bíður"
-#: js/filelist.js:392
+#: js/filelist.js:399
msgid "Could not rename file"
msgstr ""
-#: js/filelist.js:511
+#: js/filelist.js:518
msgid "replaced {new_name} with {old_name}"
msgstr "yfirskrifaði {new_name} með {old_name}"
-#: js/filelist.js:511
+#: js/filelist.js:518
msgid "undo"
msgstr "afturkalla"
-#: js/filelist.js:582 js/filelist.js:649 js/files.js:587
+#: js/filelist.js:578 js/filelist.js:652 js/files.js:631
msgid "%n folder"
msgid_plural "%n folders"
msgstr[0] ""
msgstr[1] ""
-#: js/filelist.js:583 js/filelist.js:650 js/files.js:593
+#: js/filelist.js:579 js/filelist.js:653 js/files.js:637
msgid "%n file"
msgid_plural "%n files"
msgstr[0] ""
msgstr[1] ""
-#: js/filelist.js:590
+#: js/filelist.js:586
msgid "{dirs} and {files}"
msgstr ""
-#: js/filelist.js:793 js/filelist.js:831
+#: js/filelist.js:796 js/filelist.js:834
msgid "Uploading %n file"
msgid_plural "Uploading %n files"
msgstr[0] ""
msgstr[1] ""
-#: js/files.js:25
+#: js/files.js:72
msgid "'.' is an invalid file name."
msgstr "'.' er ekki leyfilegt nafn."
-#: js/files.js:34
+#: js/files.js:81
msgid ""
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not "
"allowed."
msgstr "Ógilt nafn, táknin '\\', '/', '<', '>', ':', '\"', '|', '?' og '*' eru ekki leyfð."
-#: js/files.js:46
+#: js/files.js:93
msgid "Your storage is full, files can not be updated or synced anymore!"
msgstr ""
-#: js/files.js:50
+#: js/files.js:97
msgid "Your storage is almost full ({usedSpacePercent}%)"
msgstr ""
-#: js/files.js:63
+#: js/files.js:110
msgid ""
"Encryption App is enabled but your keys are not initialized, please log-out "
"and log-in again"
msgstr ""
-#: js/files.js:67
+#: js/files.js:114
msgid ""
"Invalid private key for Encryption App. Please update your private key "
"password in your personal settings to recover access to your encrypted "
"files."
msgstr ""
-#: js/files.js:71
+#: js/files.js:118
msgid ""
"Encryption was disabled but your files are still encrypted. Please go to "
"your personal settings to decrypt your files."
msgstr ""
-#: js/files.js:302
+#: js/files.js:349
msgid ""
"Your download is being prepared. This might take some time if the files are "
"big."
msgstr ""
-#: js/files.js:514 js/files.js:552
+#: js/files.js:558 js/files.js:596
msgid "Error moving file"
msgstr ""
-#: js/files.js:514 js/files.js:552
+#: js/files.js:558 js/files.js:596
msgid "Error"
msgstr "Villa"
-#: js/files.js:569 templates/index.php:56
+#: js/files.js:613 templates/index.php:56
msgid "Name"
msgstr "Nafn"
-#: js/files.js:570 templates/index.php:68
+#: js/files.js:614 templates/index.php:68
msgid "Size"
msgstr "Stærð"
-#: js/files.js:571 templates/index.php:70
+#: js/files.js:615 templates/index.php:70
msgid "Modified"
msgstr "Breytt"
diff --git a/l10n/is/files_sharing.po b/l10n/is/files_sharing.po
index 59ce2995c69..ce88bf6bef3 100644
--- a/l10n/is/files_sharing.po
+++ b/l10n/is/files_sharing.po
@@ -6,9 +6,9 @@
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
-"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-10-29 07:28-0400\n"
-"PO-Revision-Date: 2013-10-28 10:45+0000\n"
+"Report-Msgid-Bugs-To: translations@owncloud.org\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+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/settings.po b/l10n/is/settings.po
index 2b6252513f5..1dfc2d4a1f9 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: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-06 21:43-0500\n"
-"PO-Revision-Date: 2013-11-07 02:43+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+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 accbd3558be..6427efbd510 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: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-03 12:38-0500\n"
-"PO-Revision-Date: 2013-11-03 17:39+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+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"
@@ -137,6 +137,10 @@ msgstr ""
msgid "Could not find the desired feature"
msgstr ""
+#: templates/part.settingcontrols.php:2
+msgid "Save"
+msgstr "Vista"
+
#: templates/part.settingcontrols.php:4
msgid "Test Configuration"
msgstr "Prúfa uppsetningu"
diff --git a/l10n/it/core.po b/l10n/it/core.po
index 5b4cf2ebae1..6fbc914f83f 100644
--- a/l10n/it/core.po
+++ b/l10n/it/core.po
@@ -11,8 +11,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-03 12:38-0500\n"
-"PO-Revision-Date: 2013-11-02 11:40+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:11+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 4eb420cb5f9..a1cbe0a51aa 100644
--- a/l10n/it/files.po
+++ b/l10n/it/files.po
@@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-03 14:38-0500\n"
-"PO-Revision-Date: 2013-11-03 17:43+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-09 07:01+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"
@@ -29,7 +29,7 @@ msgstr "Impossibile spostare %s - un file con questo nome esiste già"
msgid "Could not move %s"
msgstr "Impossibile spostare %s"
-#: ajax/newfile.php:56 js/files.js:27
+#: ajax/newfile.php:56 js/files.js:74
msgid "File name cannot be empty."
msgstr "Il nome del file non può essere vuoto."
@@ -53,7 +53,7 @@ msgstr "Non è una sorgente valida"
msgid "Error while downloading %s to %s"
msgstr "Errore durante lo scaricamento di %s su %s"
-#: ajax/newfile.php:127
+#: ajax/newfile.php:128
msgid "Error when creating the file"
msgstr "Errore durante la creazione del file"
@@ -116,15 +116,15 @@ msgstr "Scrittura su disco non riuscita"
msgid "Not enough storage available"
msgstr "Spazio di archiviazione insufficiente"
-#: ajax/upload.php:127 ajax/upload.php:153
+#: ajax/upload.php:127 ajax/upload.php:154
msgid "Upload failed. Could not get file info."
msgstr "Caricamento non riuscito. Impossibile ottenere informazioni sul file."
-#: ajax/upload.php:143
+#: ajax/upload.php:144
msgid "Upload failed. Could not find uploaded file"
msgstr "Caricamento non riuscito. Impossibile trovare il file caricato."
-#: ajax/upload.php:170
+#: ajax/upload.php:172
msgid "Invalid directory."
msgstr "Cartella non valida."
@@ -144,24 +144,24 @@ msgstr "Spazio disponibile insufficiente"
msgid "Upload cancelled."
msgstr "Invio annullato"
-#: js/file-upload.js:345
+#: js/file-upload.js:344
msgid "Could not get result from server."
msgstr "Impossibile ottenere il risultato dal server."
-#: js/file-upload.js:437
+#: js/file-upload.js:436
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr "Caricamento del file in corso. La chiusura della pagina annullerà il caricamento."
-#: js/file-upload.js:520
+#: js/file-upload.js:519
msgid "URL cannot be empty"
msgstr "L'URL non può essere vuoto."
-#: js/file-upload.js:524 js/filelist.js:364
+#: js/file-upload.js:523 js/filelist.js:371
msgid "In the home folder 'Shared' is a reserved filename"
msgstr "Nella cartella home 'Shared' è un nome riservato"
-#: js/file-upload.js:526 js/filelist.js:366
+#: js/file-upload.js:525 js/filelist.js:373
msgid "{new_name} already exists"
msgstr "{new_name} esiste già"
@@ -185,104 +185,104 @@ msgstr "Elimina definitivamente"
msgid "Rename"
msgstr "Rinomina"
-#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:854
+#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:857
msgid "Pending"
msgstr "In corso"
-#: js/filelist.js:392
+#: js/filelist.js:399
msgid "Could not rename file"
msgstr "Impossibile rinominare il file"
-#: js/filelist.js:511
+#: js/filelist.js:518
msgid "replaced {new_name} with {old_name}"
msgstr "sostituito {new_name} con {old_name}"
-#: js/filelist.js:511
+#: js/filelist.js:518
msgid "undo"
msgstr "annulla"
-#: js/filelist.js:582 js/filelist.js:649 js/files.js:587
+#: js/filelist.js:578 js/filelist.js:652 js/files.js:631
msgid "%n folder"
msgid_plural "%n folders"
msgstr[0] "%n cartella"
msgstr[1] "%n cartelle"
-#: js/filelist.js:583 js/filelist.js:650 js/files.js:593
+#: js/filelist.js:579 js/filelist.js:653 js/files.js:637
msgid "%n file"
msgid_plural "%n files"
msgstr[0] "%n file"
msgstr[1] "%n file"
-#: js/filelist.js:590
+#: js/filelist.js:586
msgid "{dirs} and {files}"
msgstr "{dirs} e {files}"
-#: js/filelist.js:793 js/filelist.js:831
+#: js/filelist.js:796 js/filelist.js:834
msgid "Uploading %n file"
msgid_plural "Uploading %n files"
msgstr[0] "Caricamento di %n file in corso"
msgstr[1] "Caricamento di %n file in corso"
-#: js/files.js:25
+#: js/files.js:72
msgid "'.' is an invalid file name."
msgstr "'.' non è un nome file valido."
-#: js/files.js:34
+#: js/files.js:81
msgid ""
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not "
"allowed."
msgstr "Nome non valido, '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' non sono consentiti."
-#: js/files.js:46
+#: js/files.js:93
msgid "Your storage is full, files can not be updated or synced anymore!"
msgstr "Lo spazio di archiviazione è pieno, i file non possono essere più aggiornati o sincronizzati!"
-#: js/files.js:50
+#: js/files.js:97
msgid "Your storage is almost full ({usedSpacePercent}%)"
msgstr "Lo spazio di archiviazione è quasi pieno ({usedSpacePercent}%)"
-#: js/files.js:63
+#: js/files.js:110
msgid ""
"Encryption App is enabled but your keys are not initialized, please log-out "
"and log-in again"
msgstr "L'applicazione di cifratura è abilitata, ma le chiavi non sono state inizializzate, disconnettiti ed effettua nuovamente l'accesso"
-#: js/files.js:67
+#: js/files.js:114
msgid ""
"Invalid private key for Encryption App. Please update your private key "
"password in your personal settings to recover access to your encrypted "
"files."
msgstr "Chiave privata non valida per l'applicazione di cifratura. Aggiorna la password della chiave privata nelle impostazioni personali per ripristinare l'accesso ai tuoi file cifrati."
-#: js/files.js:71
+#: js/files.js:118
msgid ""
"Encryption was disabled but your files are still encrypted. Please go to "
"your personal settings to decrypt your files."
msgstr "La cifratura è stata disabilitata ma i tuoi file sono ancora cifrati. Vai nelle impostazioni personali per decifrare i file."
-#: js/files.js:302
+#: js/files.js:349
msgid ""
"Your download is being prepared. This might take some time if the files are "
"big."
msgstr "Il tuo scaricamento è in fase di preparazione. Ciò potrebbe richiedere del tempo se i file sono grandi."
-#: js/files.js:514 js/files.js:552
+#: js/files.js:558 js/files.js:596
msgid "Error moving file"
msgstr "Errore durante lo spostamento del file"
-#: js/files.js:514 js/files.js:552
+#: js/files.js:558 js/files.js:596
msgid "Error"
msgstr "Errore"
-#: js/files.js:569 templates/index.php:56
+#: js/files.js:613 templates/index.php:56
msgid "Name"
msgstr "Nome"
-#: js/files.js:570 templates/index.php:68
+#: js/files.js:614 templates/index.php:68
msgid "Size"
msgstr "Dimensione"
-#: js/files.js:571 templates/index.php:70
+#: js/files.js:615 templates/index.php:70
msgid "Modified"
msgstr "Modificato"
diff --git a/l10n/it/files_sharing.po b/l10n/it/files_sharing.po
index a0a67a95c9d..710b5842ab7 100644
--- a/l10n/it/files_sharing.po
+++ b/l10n/it/files_sharing.po
@@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-03 14:38-0500\n"
-"PO-Revision-Date: 2013-11-03 17:51+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+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/settings.po b/l10n/it/settings.po
index 380c52a9deb..1b8db985cb6 100644
--- a/l10n/it/settings.po
+++ b/l10n/it/settings.po
@@ -11,9 +11,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-06 21:43-0500\n"
-"PO-Revision-Date: 2013-11-07 02:43+0000\n"
-"Last-Translator: I Robot \n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+0000\n"
+"Last-Translator: polxmod \n"
"Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -32,11 +32,11 @@ msgstr "Errore di autenticazione"
#: ajax/changedisplayname.php:31
msgid "Your full name has been changed."
-msgstr ""
+msgstr "Il tuo nome completo è stato cambiato."
#: ajax/changedisplayname.php:34
msgid "Unable to change full name"
-msgstr ""
+msgstr "Impossibile cambiare il nome completo"
#: ajax/creategroup.php:10
msgid "Group already exists"
@@ -509,7 +509,7 @@ msgstr "Modifica password"
#: templates/personal.php:58 templates/users.php:88
msgid "Full Name"
-msgstr ""
+msgstr "Nome Completo"
#: templates/personal.php:73
msgid "Email"
@@ -630,7 +630,7 @@ msgstr "Archiviazione"
#: templates/users.php:108
msgid "change full name"
-msgstr ""
+msgstr "Modica nome completo"
#: templates/users.php:112
msgid "set new password"
diff --git a/l10n/it/user_ldap.po b/l10n/it/user_ldap.po
index bb853c39aa1..7ce86bd5630 100644
--- a/l10n/it/user_ldap.po
+++ b/l10n/it/user_ldap.po
@@ -9,9 +9,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-03 14:38-0500\n"
-"PO-Revision-Date: 2013-11-03 17:51+0000\n"
-"Last-Translator: Vincenzo Reale \n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+0000\n"
+"Last-Translator: I Robot \n"
"Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -138,6 +138,10 @@ msgstr "Host non valido"
msgid "Could not find the desired feature"
msgstr "Impossibile trovare la funzionalità desiderata"
+#: templates/part.settingcontrols.php:2
+msgid "Save"
+msgstr "Salva"
+
#: templates/part.settingcontrols.php:4
msgid "Test Configuration"
msgstr "Prova configurazione"
diff --git a/l10n/ja_JP/core.po b/l10n/ja_JP/core.po
index 16f783ce3a8..2f38e9a11ce 100644
--- a/l10n/ja_JP/core.po
+++ b/l10n/ja_JP/core.po
@@ -11,8 +11,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-03 12:38-0500\n"
-"PO-Revision-Date: 2013-10-30 07:50+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/ja_JP/files.po b/l10n/ja_JP/files.po
index 2de721fa5d3..2dddb635fd9 100644
--- a/l10n/ja_JP/files.po
+++ b/l10n/ja_JP/files.po
@@ -12,8 +12,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-03 12:38-0500\n"
-"PO-Revision-Date: 2013-11-03 17:38+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-09 07:01+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n"
"MIME-Version: 1.0\n"
@@ -32,7 +32,7 @@ msgstr "%s を移動できませんでした ― この名前のファイルは
msgid "Could not move %s"
msgstr "%s を移動できませんでした"
-#: ajax/newfile.php:56 js/files.js:27
+#: ajax/newfile.php:56 js/files.js:74
msgid "File name cannot be empty."
msgstr "ファイル名を空にすることはできません。"
@@ -56,7 +56,7 @@ msgstr "有効なソースではありません"
msgid "Error while downloading %s to %s"
msgstr "%s から %s へのダウンロードエラー"
-#: ajax/newfile.php:127
+#: ajax/newfile.php:128
msgid "Error when creating the file"
msgstr "ファイルの生成エラー"
@@ -119,15 +119,15 @@ msgstr "ディスクへの書き込みに失敗しました"
msgid "Not enough storage available"
msgstr "ストレージに十分な空き容量がありません"
-#: ajax/upload.php:127 ajax/upload.php:153
+#: ajax/upload.php:127 ajax/upload.php:154
msgid "Upload failed. Could not get file info."
msgstr "アップロードに失敗。ファイル情報を取得できませんでした。"
-#: ajax/upload.php:143
+#: ajax/upload.php:144
msgid "Upload failed. Could not find uploaded file"
msgstr "アップロードに失敗。アップロード済みのファイルを見つけることができませんでした。"
-#: ajax/upload.php:170
+#: ajax/upload.php:172
msgid "Invalid directory."
msgstr "無効なディレクトリです。"
@@ -147,24 +147,24 @@ msgstr "利用可能なスペースが十分にありません"
msgid "Upload cancelled."
msgstr "アップロードはキャンセルされました。"
-#: js/file-upload.js:345
+#: js/file-upload.js:344
msgid "Could not get result from server."
msgstr "サーバから結果を取得できませんでした。"
-#: js/file-upload.js:437
+#: js/file-upload.js:436
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr "ファイル転送を実行中です。今このページから移動するとアップロードが中止されます。"
-#: js/file-upload.js:520
+#: js/file-upload.js:519
msgid "URL cannot be empty"
msgstr "URL は空にできません"
-#: js/file-upload.js:524 js/filelist.js:364
+#: js/file-upload.js:523 js/filelist.js:371
msgid "In the home folder 'Shared' is a reserved filename"
msgstr "ホームフォルダでは、'Shared' はシステムが使用する予約済みのファイル名です"
-#: js/file-upload.js:526 js/filelist.js:366
+#: js/file-upload.js:525 js/filelist.js:373
msgid "{new_name} already exists"
msgstr "{new_name} はすでに存在しています"
@@ -188,101 +188,101 @@ msgstr "完全に削除する"
msgid "Rename"
msgstr "名前の変更"
-#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:854
+#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:857
msgid "Pending"
msgstr "中断"
-#: js/filelist.js:392
+#: js/filelist.js:399
msgid "Could not rename file"
msgstr "ファイルの名前変更ができませんでした"
-#: js/filelist.js:511
+#: js/filelist.js:518
msgid "replaced {new_name} with {old_name}"
msgstr "{old_name} を {new_name} に置換"
-#: js/filelist.js:511
+#: js/filelist.js:518
msgid "undo"
msgstr "元に戻す"
-#: js/filelist.js:582 js/filelist.js:649 js/files.js:587
+#: js/filelist.js:578 js/filelist.js:652 js/files.js:631
msgid "%n folder"
msgid_plural "%n folders"
msgstr[0] "%n 個のフォルダ"
-#: js/filelist.js:583 js/filelist.js:650 js/files.js:593
+#: js/filelist.js:579 js/filelist.js:653 js/files.js:637
msgid "%n file"
msgid_plural "%n files"
msgstr[0] "%n 個のファイル"
-#: js/filelist.js:590
+#: js/filelist.js:586
msgid "{dirs} and {files}"
msgstr "{dirs} と {files}"
-#: js/filelist.js:793 js/filelist.js:831
+#: js/filelist.js:796 js/filelist.js:834
msgid "Uploading %n file"
msgid_plural "Uploading %n files"
msgstr[0] "%n 個のファイルをアップロード中"
-#: js/files.js:25
+#: js/files.js:72
msgid "'.' is an invalid file name."
msgstr "'.' は無効なファイル名です。"
-#: js/files.js:34
+#: js/files.js:81
msgid ""
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not "
"allowed."
msgstr "無効な名前、'\\', '/', '<', '>', ':', '\"', '|', '?', '*' は使用できません。"
-#: js/files.js:46
+#: js/files.js:93
msgid "Your storage is full, files can not be updated or synced anymore!"
msgstr "あなたのストレージは一杯です。ファイルの更新と同期はもうできません!"
-#: js/files.js:50
+#: js/files.js:97
msgid "Your storage is almost full ({usedSpacePercent}%)"
msgstr "あなたのストレージはほぼ一杯です({usedSpacePercent}%)"
-#: js/files.js:63
+#: js/files.js:110
msgid ""
"Encryption App is enabled but your keys are not initialized, please log-out "
"and log-in again"
msgstr "暗号化アプリは有効ですが、あなたの暗号化キーは初期化されていません。ログアウトした後に、再度ログインしてください"
-#: js/files.js:67
+#: js/files.js:114
msgid ""
"Invalid private key for Encryption App. Please update your private key "
"password in your personal settings to recover access to your encrypted "
"files."
msgstr "暗号化アプリの無効なプライベートキーです。あなたの暗号化されたファイルへアクセスするために、個人設定からプライベートキーのパスワードを更新してください。"
-#: js/files.js:71
+#: js/files.js:118
msgid ""
"Encryption was disabled but your files are still encrypted. Please go to "
"your personal settings to decrypt your files."
msgstr "暗号化の機能は無効化されましたが、ファイルはすでに暗号化されています。個人設定からファイルを複合を行ってください。"
-#: js/files.js:302
+#: js/files.js:349
msgid ""
"Your download is being prepared. This might take some time if the files are "
"big."
msgstr "ダウンロードの準備中です。ファイルサイズが大きい場合は少し時間がかかるかもしれません。"
-#: js/files.js:514 js/files.js:552
+#: js/files.js:558 js/files.js:596
msgid "Error moving file"
msgstr "ファイルの移動エラー"
-#: js/files.js:514 js/files.js:552
+#: js/files.js:558 js/files.js:596
msgid "Error"
msgstr "エラー"
-#: js/files.js:569 templates/index.php:56
+#: js/files.js:613 templates/index.php:56
msgid "Name"
msgstr "名前"
-#: js/files.js:570 templates/index.php:68
+#: js/files.js:614 templates/index.php:68
msgid "Size"
msgstr "サイズ"
-#: js/files.js:571 templates/index.php:70
+#: js/files.js:615 templates/index.php:70
msgid "Modified"
msgstr "更新日時"
diff --git a/l10n/ja_JP/files_sharing.po b/l10n/ja_JP/files_sharing.po
index eb7e0315b09..5875789e866 100644
--- a/l10n/ja_JP/files_sharing.po
+++ b/l10n/ja_JP/files_sharing.po
@@ -8,9 +8,9 @@
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
-"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-10-29 07:28-0400\n"
-"PO-Revision-Date: 2013-10-28 10:45+0000\n"
+"Report-Msgid-Bugs-To: translations@owncloud.org\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+0000\n"
"Last-Translator: Daisuke Deguchi \n"
"Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/ja_JP/settings.po b/l10n/ja_JP/settings.po
index 62da86289cc..f01e25a60af 100644
--- a/l10n/ja_JP/settings.po
+++ b/l10n/ja_JP/settings.po
@@ -10,8 +10,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-06 21:43-0500\n"
-"PO-Revision-Date: 2013-11-07 02:43+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/ja_JP/user_ldap.po b/l10n/ja_JP/user_ldap.po
index 1e5db1cc134..967cda02680 100644
--- a/l10n/ja_JP/user_ldap.po
+++ b/l10n/ja_JP/user_ldap.po
@@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-03 12:38-0500\n"
-"PO-Revision-Date: 2013-11-03 17:39+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n"
"MIME-Version: 1.0\n"
@@ -136,6 +136,10 @@ msgstr "無効なホスト"
msgid "Could not find the desired feature"
msgstr "望ましい機能は見つかりませんでした"
+#: templates/part.settingcontrols.php:2
+msgid "Save"
+msgstr "保存"
+
#: templates/part.settingcontrols.php:4
msgid "Test Configuration"
msgstr "設定をテスト"
diff --git a/l10n/ka/core.po b/l10n/ka/core.po
index 577db801b7e..928cbb27b27 100644
--- a/l10n/ka/core.po
+++ b/l10n/ka/core.po
@@ -6,9 +6,9 @@
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
-"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-10-30 03:32-0400\n"
-"PO-Revision-Date: 2013-10-30 07:32+0000\n"
+"Report-Msgid-Bugs-To: translations@owncloud.org\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:11+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n"
"MIME-Version: 1.0\n"
@@ -271,12 +271,12 @@ msgstr ""
msgid "Share"
msgstr ""
-#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:690
-#: js/share.js:702
+#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:692
+#: js/share.js:704
msgid "Error"
msgstr ""
-#: js/share.js:160 js/share.js:730
+#: js/share.js:160 js/share.js:732
msgid "Error while sharing"
msgstr ""
@@ -332,79 +332,79 @@ msgstr ""
msgid "Expiration date"
msgstr ""
-#: js/share.js:272
+#: js/share.js:274
msgid "Share via email:"
msgstr ""
-#: js/share.js:275
+#: js/share.js:277
msgid "No people found"
msgstr ""
-#: js/share.js:305 js/share.js:342
+#: js/share.js:307 js/share.js:344
msgid "group"
msgstr ""
-#: js/share.js:316
+#: js/share.js:318
msgid "Resharing is not allowed"
msgstr ""
-#: js/share.js:358
+#: js/share.js:360
msgid "Shared in {item} with {user}"
msgstr ""
-#: js/share.js:380
+#: js/share.js:382
msgid "Unshare"
msgstr ""
-#: js/share.js:388
+#: js/share.js:390
msgid "notify by email"
msgstr ""
-#: js/share.js:391
+#: js/share.js:393
msgid "can edit"
msgstr ""
-#: js/share.js:393
+#: js/share.js:395
msgid "access control"
msgstr ""
-#: js/share.js:396
+#: js/share.js:398
msgid "create"
msgstr ""
-#: js/share.js:399
+#: js/share.js:401
msgid "update"
msgstr ""
-#: js/share.js:402
+#: js/share.js:404
msgid "delete"
msgstr ""
-#: js/share.js:405
+#: js/share.js:407
msgid "share"
msgstr ""
-#: js/share.js:447 js/share.js:677
+#: js/share.js:449 js/share.js:679
msgid "Password protected"
msgstr ""
-#: js/share.js:690
+#: js/share.js:692
msgid "Error unsetting expiration date"
msgstr ""
-#: js/share.js:702
+#: js/share.js:704
msgid "Error setting expiration date"
msgstr ""
-#: js/share.js:717
+#: js/share.js:719
msgid "Sending ..."
msgstr ""
-#: js/share.js:728
+#: js/share.js:730
msgid "Email sent"
msgstr ""
-#: js/share.js:752
+#: js/share.js:754
msgid "Warning"
msgstr ""
diff --git a/l10n/ka/files_sharing.po b/l10n/ka/files_sharing.po
index 150551f2985..472be2e0a09 100644
--- a/l10n/ka/files_sharing.po
+++ b/l10n/ka/files_sharing.po
@@ -6,9 +6,9 @@
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
-"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-10-29 07:28-0400\n"
-"PO-Revision-Date: 2013-10-28 10:45+0000\n"
+"Report-Msgid-Bugs-To: translations@owncloud.org\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/ka/settings.po b/l10n/ka/settings.po
index d3c1224f251..82c98105995 100644
--- a/l10n/ka/settings.po
+++ b/l10n/ka/settings.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-06 21:43-0500\n"
-"PO-Revision-Date: 2013-11-07 02:43+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/ka/user_ldap.po b/l10n/ka/user_ldap.po
index df6e0298c9d..0a52fe6f5ac 100644
--- a/l10n/ka/user_ldap.po
+++ b/l10n/ka/user_ldap.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-03 12:38-0500\n"
-"PO-Revision-Date: 2013-11-03 17:39+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n"
"MIME-Version: 1.0\n"
@@ -134,6 +134,10 @@ msgstr ""
msgid "Could not find the desired feature"
msgstr ""
+#: templates/part.settingcontrols.php:2
+msgid "Save"
+msgstr ""
+
#: templates/part.settingcontrols.php:4
msgid "Test Configuration"
msgstr ""
diff --git a/l10n/ka_GE/core.po b/l10n/ka_GE/core.po
index 9e013abd1c1..244ae2796c0 100644
--- a/l10n/ka_GE/core.po
+++ b/l10n/ka_GE/core.po
@@ -6,9 +6,9 @@
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
-"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-10-30 03:32-0400\n"
-"PO-Revision-Date: 2013-10-30 07:32+0000\n"
+"Report-Msgid-Bugs-To: translations@owncloud.org\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n"
"MIME-Version: 1.0\n"
@@ -271,12 +271,12 @@ msgstr "გაზიარებული"
msgid "Share"
msgstr "გაზიარება"
-#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:690
-#: js/share.js:702
+#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:692
+#: js/share.js:704
msgid "Error"
msgstr "შეცდომა"
-#: js/share.js:160 js/share.js:730
+#: js/share.js:160 js/share.js:732
msgid "Error while sharing"
msgstr "შეცდომა გაზიარების დროს"
@@ -332,79 +332,79 @@ msgstr "მიუთითე ვადის გასვლის დრო"
msgid "Expiration date"
msgstr "ვადის გასვლის დრო"
-#: js/share.js:272
+#: js/share.js:274
msgid "Share via email:"
msgstr "გააზიარე მეილზე"
-#: js/share.js:275
+#: js/share.js:277
msgid "No people found"
msgstr "მომხმარებელი არ არის ნაპოვნი"
-#: js/share.js:305 js/share.js:342
+#: js/share.js:307 js/share.js:344
msgid "group"
msgstr "ჯგუფი"
-#: js/share.js:316
+#: js/share.js:318
msgid "Resharing is not allowed"
msgstr "მეორეჯერ გაზიარება არ არის დაშვებული"
-#: js/share.js:358
+#: js/share.js:360
msgid "Shared in {item} with {user}"
msgstr "გაზიარდა {item}–ში {user}–ის მიერ"
-#: js/share.js:380
+#: js/share.js:382
msgid "Unshare"
msgstr "გაუზიარებადი"
-#: js/share.js:388
+#: js/share.js:390
msgid "notify by email"
msgstr ""
-#: js/share.js:391
+#: js/share.js:393
msgid "can edit"
msgstr "შეგიძლია შეცვლა"
-#: js/share.js:393
+#: js/share.js:395
msgid "access control"
msgstr "დაშვების კონტროლი"
-#: js/share.js:396
+#: js/share.js:398
msgid "create"
msgstr "შექმნა"
-#: js/share.js:399
+#: js/share.js:401
msgid "update"
msgstr "განახლება"
-#: js/share.js:402
+#: js/share.js:404
msgid "delete"
msgstr "წაშლა"
-#: js/share.js:405
+#: js/share.js:407
msgid "share"
msgstr "გაზიარება"
-#: js/share.js:447 js/share.js:677
+#: js/share.js:449 js/share.js:679
msgid "Password protected"
msgstr "პაროლით დაცული"
-#: js/share.js:690
+#: js/share.js:692
msgid "Error unsetting expiration date"
msgstr "შეცდომა ვადის გასვლის მოხსნის დროს"
-#: js/share.js:702
+#: js/share.js:704
msgid "Error setting expiration date"
msgstr "შეცდომა ვადის გასვლის მითითების დროს"
-#: js/share.js:717
+#: js/share.js:719
msgid "Sending ..."
msgstr "გაგზავნა ...."
-#: js/share.js:728
+#: js/share.js:730
msgid "Email sent"
msgstr "იმეილი გაიგზავნა"
-#: js/share.js:752
+#: js/share.js:754
msgid "Warning"
msgstr "გაფრთხილება"
diff --git a/l10n/ka_GE/files.po b/l10n/ka_GE/files.po
index ee9fe09e6c6..411e16a530a 100644
--- a/l10n/ka_GE/files.po
+++ b/l10n/ka_GE/files.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-03 12:38-0500\n"
-"PO-Revision-Date: 2013-11-03 17:38+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-09 07:01+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n"
"MIME-Version: 1.0\n"
@@ -27,7 +27,7 @@ msgstr "%s –ის გადატანა ვერ მოხერხდა
msgid "Could not move %s"
msgstr "%s –ის გადატანა ვერ მოხერხდა"
-#: ajax/newfile.php:56 js/files.js:27
+#: ajax/newfile.php:56 js/files.js:74
msgid "File name cannot be empty."
msgstr "ფაილის სახელი არ შეიძლება იყოს ცარიელი."
@@ -51,7 +51,7 @@ msgstr ""
msgid "Error while downloading %s to %s"
msgstr ""
-#: ajax/newfile.php:127
+#: ajax/newfile.php:128
msgid "Error when creating the file"
msgstr ""
@@ -114,15 +114,15 @@ msgstr "შეცდომა დისკზე ჩაწერისას"
msgid "Not enough storage available"
msgstr "საცავში საკმარისი ადგილი არ არის"
-#: ajax/upload.php:127 ajax/upload.php:153
+#: ajax/upload.php:127 ajax/upload.php:154
msgid "Upload failed. Could not get file info."
msgstr ""
-#: ajax/upload.php:143
+#: ajax/upload.php:144
msgid "Upload failed. Could not find uploaded file"
msgstr ""
-#: ajax/upload.php:170
+#: ajax/upload.php:172
msgid "Invalid directory."
msgstr "დაუშვებელი დირექტორია."
@@ -142,24 +142,24 @@ msgstr "საკმარისი ადგილი არ არის"
msgid "Upload cancelled."
msgstr "ატვირთვა შეჩერებულ იქნა."
-#: js/file-upload.js:345
+#: js/file-upload.js:344
msgid "Could not get result from server."
msgstr ""
-#: js/file-upload.js:437
+#: js/file-upload.js:436
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr "მიმდინარეობს ფაილის ატვირთვა. სხვა გვერდზე გადასვლა გამოიწვევს ატვირთვის შეჩერებას"
-#: js/file-upload.js:520
+#: js/file-upload.js:519
msgid "URL cannot be empty"
msgstr ""
-#: js/file-upload.js:524 js/filelist.js:364
+#: js/file-upload.js:523 js/filelist.js:371
msgid "In the home folder 'Shared' is a reserved filename"
msgstr ""
-#: js/file-upload.js:526 js/filelist.js:366
+#: js/file-upload.js:525 js/filelist.js:373
msgid "{new_name} already exists"
msgstr "{new_name} უკვე არსებობს"
@@ -183,101 +183,101 @@ msgstr "სრულად წაშლა"
msgid "Rename"
msgstr "გადარქმევა"
-#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:854
+#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:857
msgid "Pending"
msgstr "მოცდის რეჟიმში"
-#: js/filelist.js:392
+#: js/filelist.js:399
msgid "Could not rename file"
msgstr ""
-#: js/filelist.js:511
+#: js/filelist.js:518
msgid "replaced {new_name} with {old_name}"
msgstr "{new_name} შეცვლილია {old_name}–ით"
-#: js/filelist.js:511
+#: js/filelist.js:518
msgid "undo"
msgstr "დაბრუნება"
-#: js/filelist.js:582 js/filelist.js:649 js/files.js:587
+#: js/filelist.js:578 js/filelist.js:652 js/files.js:631
msgid "%n folder"
msgid_plural "%n folders"
msgstr[0] ""
-#: js/filelist.js:583 js/filelist.js:650 js/files.js:593
+#: js/filelist.js:579 js/filelist.js:653 js/files.js:637
msgid "%n file"
msgid_plural "%n files"
msgstr[0] ""
-#: js/filelist.js:590
+#: js/filelist.js:586
msgid "{dirs} and {files}"
msgstr ""
-#: js/filelist.js:793 js/filelist.js:831
+#: js/filelist.js:796 js/filelist.js:834
msgid "Uploading %n file"
msgid_plural "Uploading %n files"
msgstr[0] ""
-#: js/files.js:25
+#: js/files.js:72
msgid "'.' is an invalid file name."
msgstr "'.' არის დაუშვებელი ფაილის სახელი."
-#: js/files.js:34
+#: js/files.js:81
msgid ""
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not "
"allowed."
msgstr "არადაშვებადი სახელი, '\\', '/', '<', '>', ':', '\"', '|', '?' და '*' არ არის დაიშვებული."
-#: js/files.js:46
+#: js/files.js:93
msgid "Your storage is full, files can not be updated or synced anymore!"
msgstr "თქვენი საცავი გადაივსო. ფაილების განახლება და სინქრონიზირება ვერ მოხერხდება!"
-#: js/files.js:50
+#: js/files.js:97
msgid "Your storage is almost full ({usedSpacePercent}%)"
msgstr "თქვენი საცავი თითქმის გადაივსო ({usedSpacePercent}%)"
-#: js/files.js:63
+#: js/files.js:110
msgid ""
"Encryption App is enabled but your keys are not initialized, please log-out "
"and log-in again"
msgstr ""
-#: js/files.js:67
+#: js/files.js:114
msgid ""
"Invalid private key for Encryption App. Please update your private key "
"password in your personal settings to recover access to your encrypted "
"files."
msgstr ""
-#: js/files.js:71
+#: js/files.js:118
msgid ""
"Encryption was disabled but your files are still encrypted. Please go to "
"your personal settings to decrypt your files."
msgstr ""
-#: js/files.js:302
+#: js/files.js:349
msgid ""
"Your download is being prepared. This might take some time if the files are "
"big."
msgstr "გადმოწერის მოთხოვნა მუშავდება. ის მოითხოვს გარკვეულ დროს რაგდან ფაილები არის დიდი ზომის."
-#: js/files.js:514 js/files.js:552
+#: js/files.js:558 js/files.js:596
msgid "Error moving file"
msgstr ""
-#: js/files.js:514 js/files.js:552
+#: js/files.js:558 js/files.js:596
msgid "Error"
msgstr "შეცდომა"
-#: js/files.js:569 templates/index.php:56
+#: js/files.js:613 templates/index.php:56
msgid "Name"
msgstr "სახელი"
-#: js/files.js:570 templates/index.php:68
+#: js/files.js:614 templates/index.php:68
msgid "Size"
msgstr "ზომა"
-#: js/files.js:571 templates/index.php:70
+#: js/files.js:615 templates/index.php:70
msgid "Modified"
msgstr "შეცვლილია"
diff --git a/l10n/ka_GE/files_sharing.po b/l10n/ka_GE/files_sharing.po
index ab7a9d0a56a..d02fb69280c 100644
--- a/l10n/ka_GE/files_sharing.po
+++ b/l10n/ka_GE/files_sharing.po
@@ -6,9 +6,9 @@
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
-"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-10-29 07:28-0400\n"
-"PO-Revision-Date: 2013-10-28 10:45+0000\n"
+"Report-Msgid-Bugs-To: translations@owncloud.org\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/ka_GE/settings.po b/l10n/ka_GE/settings.po
index e16874021e3..53788b24a0e 100644
--- a/l10n/ka_GE/settings.po
+++ b/l10n/ka_GE/settings.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-06 21:43-0500\n"
-"PO-Revision-Date: 2013-11-07 02:43+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/ka_GE/user_ldap.po b/l10n/ka_GE/user_ldap.po
index ef8c97bd635..0c4610f92e7 100644
--- a/l10n/ka_GE/user_ldap.po
+++ b/l10n/ka_GE/user_ldap.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-03 12:38-0500\n"
-"PO-Revision-Date: 2013-11-03 17:39+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n"
"MIME-Version: 1.0\n"
@@ -134,6 +134,10 @@ msgstr ""
msgid "Could not find the desired feature"
msgstr ""
+#: templates/part.settingcontrols.php:2
+msgid "Save"
+msgstr "შენახვა"
+
#: templates/part.settingcontrols.php:4
msgid "Test Configuration"
msgstr "კავშირის ტესტირება"
diff --git a/l10n/km/user_ldap.po b/l10n/km/user_ldap.po
index 7879ad8910f..50e9bed1bcc 100644
--- a/l10n/km/user_ldap.po
+++ b/l10n/km/user_ldap.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-03 12:38-0500\n"
-"PO-Revision-Date: 2013-11-03 17:39+0000\n"
+"POT-Creation-Date: 2013-11-09 01:44-0500\n"
+"PO-Revision-Date: 2013-11-09 06:44+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Khmer (http://www.transifex.com/projects/p/owncloud/language/km/)\n"
"MIME-Version: 1.0\n"
@@ -134,6 +134,10 @@ msgstr ""
msgid "Could not find the desired feature"
msgstr ""
+#: templates/part.settingcontrols.php:2
+msgid "Save"
+msgstr ""
+
#: templates/part.settingcontrols.php:4
msgid "Test Configuration"
msgstr ""
diff --git a/l10n/kn/user_ldap.po b/l10n/kn/user_ldap.po
index 4b3de2defa0..ea15b960d23 100644
--- a/l10n/kn/user_ldap.po
+++ b/l10n/kn/user_ldap.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-03 12:38-0500\n"
-"PO-Revision-Date: 2013-11-03 17:39+0000\n"
+"POT-Creation-Date: 2013-11-09 01:44-0500\n"
+"PO-Revision-Date: 2013-11-09 06:44+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n"
"MIME-Version: 1.0\n"
@@ -134,6 +134,10 @@ msgstr ""
msgid "Could not find the desired feature"
msgstr ""
+#: templates/part.settingcontrols.php:2
+msgid "Save"
+msgstr ""
+
#: templates/part.settingcontrols.php:4
msgid "Test Configuration"
msgstr ""
diff --git a/l10n/ko/core.po b/l10n/ko/core.po
index 4f42ae8f381..0f73bdd1482 100644
--- a/l10n/ko/core.po
+++ b/l10n/ko/core.po
@@ -4,13 +4,13 @@
#
# Translators:
# Shinjo Park , 2013
-# smallsnail , 2013
+# 책읽는달팽 , 2013
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
-"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-10-30 03:32-0400\n"
-"PO-Revision-Date: 2013-10-30 07:32+0000\n"
+"Report-Msgid-Bugs-To: translations@owncloud.org\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:11+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n"
"MIME-Version: 1.0\n"
@@ -273,12 +273,12 @@ msgstr "공유됨"
msgid "Share"
msgstr "공유"
-#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:690
-#: js/share.js:702
+#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:692
+#: js/share.js:704
msgid "Error"
msgstr "오류"
-#: js/share.js:160 js/share.js:730
+#: js/share.js:160 js/share.js:732
msgid "Error while sharing"
msgstr "공유하는 중 오류 발생"
@@ -334,79 +334,79 @@ msgstr "만료 날짜 설정"
msgid "Expiration date"
msgstr "만료 날짜"
-#: js/share.js:272
+#: js/share.js:274
msgid "Share via email:"
msgstr "이메일로 공유:"
-#: js/share.js:275
+#: js/share.js:277
msgid "No people found"
msgstr "발견된 사람 없음"
-#: js/share.js:305 js/share.js:342
+#: js/share.js:307 js/share.js:344
msgid "group"
msgstr "그룹"
-#: js/share.js:316
+#: js/share.js:318
msgid "Resharing is not allowed"
msgstr "다시 공유할 수 없습니다"
-#: js/share.js:358
+#: js/share.js:360
msgid "Shared in {item} with {user}"
msgstr "{user} 님과 {item}에서 공유 중"
-#: js/share.js:380
+#: js/share.js:382
msgid "Unshare"
msgstr "공유 해제"
-#: js/share.js:388
+#: js/share.js:390
msgid "notify by email"
msgstr ""
-#: js/share.js:391
+#: js/share.js:393
msgid "can edit"
msgstr "편집 가능"
-#: js/share.js:393
+#: js/share.js:395
msgid "access control"
msgstr "접근 제어"
-#: js/share.js:396
+#: js/share.js:398
msgid "create"
msgstr "생성"
-#: js/share.js:399
+#: js/share.js:401
msgid "update"
msgstr "업데이트"
-#: js/share.js:402
+#: js/share.js:404
msgid "delete"
msgstr "삭제"
-#: js/share.js:405
+#: js/share.js:407
msgid "share"
msgstr "공유"
-#: js/share.js:447 js/share.js:677
+#: js/share.js:449 js/share.js:679
msgid "Password protected"
msgstr "암호로 보호됨"
-#: js/share.js:690
+#: js/share.js:692
msgid "Error unsetting expiration date"
msgstr "만료 날짜 해제 오류"
-#: js/share.js:702
+#: js/share.js:704
msgid "Error setting expiration date"
msgstr "만료 날짜 설정 오류"
-#: js/share.js:717
+#: js/share.js:719
msgid "Sending ..."
msgstr "전송 중..."
-#: js/share.js:728
+#: js/share.js:730
msgid "Email sent"
msgstr "이메일 발송됨"
-#: js/share.js:752
+#: js/share.js:754
msgid "Warning"
msgstr "경고"
diff --git a/l10n/ko/files.po b/l10n/ko/files.po
index 54665c7cf78..d662743dfab 100644
--- a/l10n/ko/files.po
+++ b/l10n/ko/files.po
@@ -5,13 +5,13 @@
# Translators:
# ujuc Gang , 2013
# ujuc Gang , 2013
-# smallsnail , 2013
+# 책읽는달팽 , 2013
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-03 12:38-0500\n"
-"PO-Revision-Date: 2013-11-03 17:38+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-09 07:01+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n"
"MIME-Version: 1.0\n"
@@ -30,7 +30,7 @@ msgstr "%s 항목을 이동시키지 못하였음 - 파일 이름이 이미 존
msgid "Could not move %s"
msgstr "%s 항목을 이딩시키지 못하였음"
-#: ajax/newfile.php:56 js/files.js:27
+#: ajax/newfile.php:56 js/files.js:74
msgid "File name cannot be empty."
msgstr "파일 이름이 비어 있을 수 없습니다."
@@ -54,7 +54,7 @@ msgstr ""
msgid "Error while downloading %s to %s"
msgstr ""
-#: ajax/newfile.php:127
+#: ajax/newfile.php:128
msgid "Error when creating the file"
msgstr ""
@@ -117,15 +117,15 @@ msgstr "디스크에 쓰지 못했습니다"
msgid "Not enough storage available"
msgstr "저장소가 용량이 충분하지 않습니다."
-#: ajax/upload.php:127 ajax/upload.php:153
+#: ajax/upload.php:127 ajax/upload.php:154
msgid "Upload failed. Could not get file info."
msgstr "업로드에 실패했습니다. 파일 정보를 가져올수 없습니다."
-#: ajax/upload.php:143
+#: ajax/upload.php:144
msgid "Upload failed. Could not find uploaded file"
msgstr "업로드에 실패했습니다. 업로드할 파일을 찾을수 없습니다"
-#: ajax/upload.php:170
+#: ajax/upload.php:172
msgid "Invalid directory."
msgstr "올바르지 않은 디렉터리입니다."
@@ -145,24 +145,24 @@ msgstr "여유 공간이 부족합니다"
msgid "Upload cancelled."
msgstr "업로드가 취소되었습니다."
-#: js/file-upload.js:345
+#: js/file-upload.js:344
msgid "Could not get result from server."
msgstr "서버에서 결과를 가져올수 없습니다."
-#: js/file-upload.js:437
+#: js/file-upload.js:436
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr "파일 업로드가 진행 중입니다. 이 페이지를 벗어나면 업로드가 취소됩니다."
-#: js/file-upload.js:520
+#: js/file-upload.js:519
msgid "URL cannot be empty"
msgstr ""
-#: js/file-upload.js:524 js/filelist.js:364
+#: js/file-upload.js:523 js/filelist.js:371
msgid "In the home folder 'Shared' is a reserved filename"
msgstr ""
-#: js/file-upload.js:526 js/filelist.js:366
+#: js/file-upload.js:525 js/filelist.js:373
msgid "{new_name} already exists"
msgstr "{new_name}이(가) 이미 존재함"
@@ -186,101 +186,101 @@ msgstr "영원히 삭제"
msgid "Rename"
msgstr "이름 바꾸기"
-#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:854
+#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:857
msgid "Pending"
msgstr "대기 중"
-#: js/filelist.js:392
+#: js/filelist.js:399
msgid "Could not rename file"
msgstr ""
-#: js/filelist.js:511
+#: js/filelist.js:518
msgid "replaced {new_name} with {old_name}"
msgstr "{old_name}이(가) {new_name}(으)로 대체됨"
-#: js/filelist.js:511
+#: js/filelist.js:518
msgid "undo"
msgstr "되돌리기"
-#: js/filelist.js:582 js/filelist.js:649 js/files.js:587
+#: js/filelist.js:578 js/filelist.js:652 js/files.js:631
msgid "%n folder"
msgid_plural "%n folders"
msgstr[0] "폴더 %n"
-#: js/filelist.js:583 js/filelist.js:650 js/files.js:593
+#: js/filelist.js:579 js/filelist.js:653 js/files.js:637
msgid "%n file"
msgid_plural "%n files"
msgstr[0] "파일 %n 개"
-#: js/filelist.js:590
+#: js/filelist.js:586
msgid "{dirs} and {files}"
msgstr "{dirs} 그리고 {files}"
-#: js/filelist.js:793 js/filelist.js:831
+#: js/filelist.js:796 js/filelist.js:834
msgid "Uploading %n file"
msgid_plural "Uploading %n files"
msgstr[0] "%n 개의 파일을 업로드중"
-#: js/files.js:25
+#: js/files.js:72
msgid "'.' is an invalid file name."
msgstr "'.' 는 올바르지 않은 파일 이름 입니다."
-#: js/files.js:34
+#: js/files.js:81
msgid ""
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not "
"allowed."
msgstr "폴더 이름이 올바르지 않습니다. 이름에 문자 '\\', '/', '<', '>', ':', '\"', '|', '? ', '*'는 사용할 수 없습니다."
-#: js/files.js:46
+#: js/files.js:93
msgid "Your storage is full, files can not be updated or synced anymore!"
msgstr "저장 공간이 가득 찼습니다. 파일을 업데이트하거나 동기화할 수 없습니다!"
-#: js/files.js:50
+#: js/files.js:97
msgid "Your storage is almost full ({usedSpacePercent}%)"
msgstr "저장 공간이 거의 가득 찼습니다 ({usedSpacePercent}%)"
-#: js/files.js:63
+#: js/files.js:110
msgid ""
"Encryption App is enabled but your keys are not initialized, please log-out "
"and log-in again"
msgstr ""
-#: js/files.js:67
+#: js/files.js:114
msgid ""
"Invalid private key for Encryption App. Please update your private key "
"password in your personal settings to recover access to your encrypted "
"files."
msgstr ""
-#: js/files.js:71
+#: js/files.js:118
msgid ""
"Encryption was disabled but your files are still encrypted. Please go to "
"your personal settings to decrypt your files."
msgstr "암호화는 해제되어 있지만, 파일은 아직 암호화 되어 있습니다. 개인 설저에 가셔서 암호를 해제하십시오"
-#: js/files.js:302
+#: js/files.js:349
msgid ""
"Your download is being prepared. This might take some time if the files are "
"big."
msgstr "다운로드가 준비 중입니다. 파일 크기가 크다면 시간이 오래 걸릴 수도 있습니다."
-#: js/files.js:514 js/files.js:552
+#: js/files.js:558 js/files.js:596
msgid "Error moving file"
msgstr "파일 이동 오류"
-#: js/files.js:514 js/files.js:552
+#: js/files.js:558 js/files.js:596
msgid "Error"
msgstr "오류"
-#: js/files.js:569 templates/index.php:56
+#: js/files.js:613 templates/index.php:56
msgid "Name"
msgstr "이름"
-#: js/files.js:570 templates/index.php:68
+#: js/files.js:614 templates/index.php:68
msgid "Size"
msgstr "크기"
-#: js/files.js:571 templates/index.php:70
+#: js/files.js:615 templates/index.php:70
msgid "Modified"
msgstr "수정됨"
diff --git a/l10n/ko/files_sharing.po b/l10n/ko/files_sharing.po
index 11846bb153b..24f5ef87ff6 100644
--- a/l10n/ko/files_sharing.po
+++ b/l10n/ko/files_sharing.po
@@ -3,13 +3,13 @@
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
-# smallsnail , 2013
+# 책읽는달팽 , 2013
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
-"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-10-29 07:28-0400\n"
-"PO-Revision-Date: 2013-10-28 10:45+0000\n"
+"Report-Msgid-Bugs-To: translations@owncloud.org\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/ko/settings.po b/l10n/ko/settings.po
index 25cf84d638c..3682e52549d 100644
--- a/l10n/ko/settings.po
+++ b/l10n/ko/settings.po
@@ -4,13 +4,13 @@
#
# Translators:
# Shinjo Park , 2013
-# smallsnail , 2013
+# 책읽는달팽 , 2013
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-06 21:43-0500\n"
-"PO-Revision-Date: 2013-11-07 02:43+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/ko/user_ldap.po b/l10n/ko/user_ldap.po
index 2df0d5a6fd2..0658a4da45d 100644
--- a/l10n/ko/user_ldap.po
+++ b/l10n/ko/user_ldap.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-03 12:38-0500\n"
-"PO-Revision-Date: 2013-11-03 17:39+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n"
"MIME-Version: 1.0\n"
@@ -134,6 +134,10 @@ msgstr ""
msgid "Could not find the desired feature"
msgstr ""
+#: templates/part.settingcontrols.php:2
+msgid "Save"
+msgstr "저장"
+
#: templates/part.settingcontrols.php:4
msgid "Test Configuration"
msgstr ""
diff --git a/l10n/ku_IQ/core.po b/l10n/ku_IQ/core.po
index 30345a7a0ae..eed00139379 100644
--- a/l10n/ku_IQ/core.po
+++ b/l10n/ku_IQ/core.po
@@ -6,9 +6,9 @@
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
-"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-10-30 03:32-0400\n"
-"PO-Revision-Date: 2013-10-30 07:32+0000\n"
+"Report-Msgid-Bugs-To: translations@owncloud.org\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:11+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n"
"MIME-Version: 1.0\n"
@@ -276,12 +276,12 @@ msgstr ""
msgid "Share"
msgstr "هاوبەشی کردن"
-#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:690
-#: js/share.js:702
+#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:692
+#: js/share.js:704
msgid "Error"
msgstr "ههڵه"
-#: js/share.js:160 js/share.js:730
+#: js/share.js:160 js/share.js:732
msgid "Error while sharing"
msgstr ""
@@ -337,79 +337,79 @@ msgstr ""
msgid "Expiration date"
msgstr ""
-#: js/share.js:272
+#: js/share.js:274
msgid "Share via email:"
msgstr ""
-#: js/share.js:275
+#: js/share.js:277
msgid "No people found"
msgstr ""
-#: js/share.js:305 js/share.js:342
+#: js/share.js:307 js/share.js:344
msgid "group"
msgstr ""
-#: js/share.js:316
+#: js/share.js:318
msgid "Resharing is not allowed"
msgstr ""
-#: js/share.js:358
+#: js/share.js:360
msgid "Shared in {item} with {user}"
msgstr ""
-#: js/share.js:380
+#: js/share.js:382
msgid "Unshare"
msgstr ""
-#: js/share.js:388
+#: js/share.js:390
msgid "notify by email"
msgstr ""
-#: js/share.js:391
+#: js/share.js:393
msgid "can edit"
msgstr ""
-#: js/share.js:393
+#: js/share.js:395
msgid "access control"
msgstr ""
-#: js/share.js:396
+#: js/share.js:398
msgid "create"
msgstr ""
-#: js/share.js:399
+#: js/share.js:401
msgid "update"
msgstr ""
-#: js/share.js:402
+#: js/share.js:404
msgid "delete"
msgstr ""
-#: js/share.js:405
+#: js/share.js:407
msgid "share"
msgstr ""
-#: js/share.js:447 js/share.js:677
+#: js/share.js:449 js/share.js:679
msgid "Password protected"
msgstr ""
-#: js/share.js:690
+#: js/share.js:692
msgid "Error unsetting expiration date"
msgstr ""
-#: js/share.js:702
+#: js/share.js:704
msgid "Error setting expiration date"
msgstr ""
-#: js/share.js:717
+#: js/share.js:719
msgid "Sending ..."
msgstr ""
-#: js/share.js:728
+#: js/share.js:730
msgid "Email sent"
msgstr ""
-#: js/share.js:752
+#: js/share.js:754
msgid "Warning"
msgstr "ئاگاداری"
diff --git a/l10n/ku_IQ/files.po b/l10n/ku_IQ/files.po
index 79612051eb5..858e3558327 100644
--- a/l10n/ku_IQ/files.po
+++ b/l10n/ku_IQ/files.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-03 12:38-0500\n"
-"PO-Revision-Date: 2013-11-03 17:38+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-09 07:01+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n"
"MIME-Version: 1.0\n"
@@ -27,7 +27,7 @@ msgstr ""
msgid "Could not move %s"
msgstr ""
-#: ajax/newfile.php:56 js/files.js:27
+#: ajax/newfile.php:56 js/files.js:74
msgid "File name cannot be empty."
msgstr ""
@@ -51,7 +51,7 @@ msgstr ""
msgid "Error while downloading %s to %s"
msgstr ""
-#: ajax/newfile.php:127
+#: ajax/newfile.php:128
msgid "Error when creating the file"
msgstr ""
@@ -114,15 +114,15 @@ msgstr ""
msgid "Not enough storage available"
msgstr ""
-#: ajax/upload.php:127 ajax/upload.php:153
+#: ajax/upload.php:127 ajax/upload.php:154
msgid "Upload failed. Could not get file info."
msgstr ""
-#: ajax/upload.php:143
+#: ajax/upload.php:144
msgid "Upload failed. Could not find uploaded file"
msgstr ""
-#: ajax/upload.php:170
+#: ajax/upload.php:172
msgid "Invalid directory."
msgstr ""
@@ -142,24 +142,24 @@ msgstr ""
msgid "Upload cancelled."
msgstr ""
-#: js/file-upload.js:345
+#: js/file-upload.js:344
msgid "Could not get result from server."
msgstr ""
-#: js/file-upload.js:437
+#: js/file-upload.js:436
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr ""
-#: js/file-upload.js:520
+#: js/file-upload.js:519
msgid "URL cannot be empty"
msgstr ""
-#: js/file-upload.js:524 js/filelist.js:364
+#: js/file-upload.js:523 js/filelist.js:371
msgid "In the home folder 'Shared' is a reserved filename"
msgstr ""
-#: js/file-upload.js:526 js/filelist.js:366
+#: js/file-upload.js:525 js/filelist.js:373
msgid "{new_name} already exists"
msgstr ""
@@ -183,104 +183,104 @@ msgstr ""
msgid "Rename"
msgstr ""
-#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:854
+#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:857
msgid "Pending"
msgstr ""
-#: js/filelist.js:392
+#: js/filelist.js:399
msgid "Could not rename file"
msgstr ""
-#: js/filelist.js:511
+#: js/filelist.js:518
msgid "replaced {new_name} with {old_name}"
msgstr ""
-#: js/filelist.js:511
+#: js/filelist.js:518
msgid "undo"
msgstr ""
-#: js/filelist.js:582 js/filelist.js:649 js/files.js:587
+#: js/filelist.js:578 js/filelist.js:652 js/files.js:631
msgid "%n folder"
msgid_plural "%n folders"
msgstr[0] ""
msgstr[1] ""
-#: js/filelist.js:583 js/filelist.js:650 js/files.js:593
+#: js/filelist.js:579 js/filelist.js:653 js/files.js:637
msgid "%n file"
msgid_plural "%n files"
msgstr[0] ""
msgstr[1] ""
-#: js/filelist.js:590
+#: js/filelist.js:586
msgid "{dirs} and {files}"
msgstr ""
-#: js/filelist.js:793 js/filelist.js:831
+#: js/filelist.js:796 js/filelist.js:834
msgid "Uploading %n file"
msgid_plural "Uploading %n files"
msgstr[0] ""
msgstr[1] ""
-#: js/files.js:25
+#: js/files.js:72
msgid "'.' is an invalid file name."
msgstr ""
-#: js/files.js:34
+#: js/files.js:81
msgid ""
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not "
"allowed."
msgstr ""
-#: js/files.js:46
+#: js/files.js:93
msgid "Your storage is full, files can not be updated or synced anymore!"
msgstr ""
-#: js/files.js:50
+#: js/files.js:97
msgid "Your storage is almost full ({usedSpacePercent}%)"
msgstr ""
-#: js/files.js:63
+#: js/files.js:110
msgid ""
"Encryption App is enabled but your keys are not initialized, please log-out "
"and log-in again"
msgstr ""
-#: js/files.js:67
+#: js/files.js:114
msgid ""
"Invalid private key for Encryption App. Please update your private key "
"password in your personal settings to recover access to your encrypted "
"files."
msgstr ""
-#: js/files.js:71
+#: js/files.js:118
msgid ""
"Encryption was disabled but your files are still encrypted. Please go to "
"your personal settings to decrypt your files."
msgstr ""
-#: js/files.js:302
+#: js/files.js:349
msgid ""
"Your download is being prepared. This might take some time if the files are "
"big."
msgstr ""
-#: js/files.js:514 js/files.js:552
+#: js/files.js:558 js/files.js:596
msgid "Error moving file"
msgstr ""
-#: js/files.js:514 js/files.js:552
+#: js/files.js:558 js/files.js:596
msgid "Error"
msgstr "ههڵه"
-#: js/files.js:569 templates/index.php:56
+#: js/files.js:613 templates/index.php:56
msgid "Name"
msgstr "ناو"
-#: js/files.js:570 templates/index.php:68
+#: js/files.js:614 templates/index.php:68
msgid "Size"
msgstr ""
-#: js/files.js:571 templates/index.php:70
+#: js/files.js:615 templates/index.php:70
msgid "Modified"
msgstr ""
diff --git a/l10n/ku_IQ/files_sharing.po b/l10n/ku_IQ/files_sharing.po
index dd414667ae3..c4858712378 100644
--- a/l10n/ku_IQ/files_sharing.po
+++ b/l10n/ku_IQ/files_sharing.po
@@ -6,9 +6,9 @@
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
-"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-10-29 07:28-0400\n"
-"PO-Revision-Date: 2013-10-28 10:45+0000\n"
+"Report-Msgid-Bugs-To: translations@owncloud.org\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/ku_IQ/settings.po b/l10n/ku_IQ/settings.po
index 3a09e5de796..e348e79ee1c 100644
--- a/l10n/ku_IQ/settings.po
+++ b/l10n/ku_IQ/settings.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-06 21:43-0500\n"
-"PO-Revision-Date: 2013-11-07 02:43+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/ku_IQ/user_ldap.po b/l10n/ku_IQ/user_ldap.po
index f5f177f19a8..41e8279ada7 100644
--- a/l10n/ku_IQ/user_ldap.po
+++ b/l10n/ku_IQ/user_ldap.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-03 12:38-0500\n"
-"PO-Revision-Date: 2013-11-03 17:39+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n"
"MIME-Version: 1.0\n"
@@ -136,6 +136,10 @@ msgstr ""
msgid "Could not find the desired feature"
msgstr ""
+#: templates/part.settingcontrols.php:2
+msgid "Save"
+msgstr "پاشکهوتکردن"
+
#: templates/part.settingcontrols.php:4
msgid "Test Configuration"
msgstr ""
diff --git a/l10n/lb/core.po b/l10n/lb/core.po
index 745e91aaa20..45c7ce89d42 100644
--- a/l10n/lb/core.po
+++ b/l10n/lb/core.po
@@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-06 21:43-0500\n"
-"PO-Revision-Date: 2013-11-05 21:40+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:11+0000\n"
"Last-Translator: Michel Weimerskirch \n"
"Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/lb/files.po b/l10n/lb/files.po
index 20dc006087a..3b7e2fc0bbd 100644
--- a/l10n/lb/files.po
+++ b/l10n/lb/files.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-06 21:43-0500\n"
-"PO-Revision-Date: 2013-11-03 19:52+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-09 07:01+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n"
"MIME-Version: 1.0\n"
@@ -142,32 +142,32 @@ msgstr ""
msgid "Upload cancelled."
msgstr "Upload ofgebrach."
-#: js/file-upload.js:345
+#: js/file-upload.js:344
msgid "Could not get result from server."
msgstr ""
-#: js/file-upload.js:437
+#: js/file-upload.js:436
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr "File Upload am gaang. Wann's de des Säit verléiss gëtt den Upload ofgebrach."
-#: js/file-upload.js:520
+#: js/file-upload.js:519
msgid "URL cannot be empty"
msgstr ""
-#: js/file-upload.js:524 js/filelist.js:371
+#: js/file-upload.js:523 js/filelist.js:371
msgid "In the home folder 'Shared' is a reserved filename"
msgstr ""
-#: js/file-upload.js:526 js/filelist.js:373
+#: js/file-upload.js:525 js/filelist.js:373
msgid "{new_name} already exists"
msgstr ""
-#: js/file-upload.js:586
+#: js/file-upload.js:585
msgid "Could not create file"
msgstr ""
-#: js/file-upload.js:602
+#: js/file-upload.js:601
msgid "Could not create folder"
msgstr ""
diff --git a/l10n/lb/files_sharing.po b/l10n/lb/files_sharing.po
index 0d542f1f935..8e32fe4c4dc 100644
--- a/l10n/lb/files_sharing.po
+++ b/l10n/lb/files_sharing.po
@@ -7,9 +7,9 @@
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
-"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-10-29 07:28-0400\n"
-"PO-Revision-Date: 2013-10-28 10:45+0000\n"
+"Report-Msgid-Bugs-To: translations@owncloud.org\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/lb/settings.po b/l10n/lb/settings.po
index f4e9bb35604..18264e8bd81 100644
--- a/l10n/lb/settings.po
+++ b/l10n/lb/settings.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-06 21:43-0500\n"
-"PO-Revision-Date: 2013-11-07 02:43+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/lb/user_ldap.po b/l10n/lb/user_ldap.po
index f36eb935772..660cb70d3ce 100644
--- a/l10n/lb/user_ldap.po
+++ b/l10n/lb/user_ldap.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-06 21:43-0500\n"
-"PO-Revision-Date: 2013-11-03 22:20+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n"
"MIME-Version: 1.0\n"
@@ -136,6 +136,10 @@ msgstr ""
msgid "Could not find the desired feature"
msgstr ""
+#: templates/part.settingcontrols.php:2
+msgid "Save"
+msgstr "Späicheren"
+
#: templates/part.settingcontrols.php:4
msgid "Test Configuration"
msgstr ""
diff --git a/l10n/lt_LT/core.po b/l10n/lt_LT/core.po
index 373425cb485..2f76cf29073 100644
--- a/l10n/lt_LT/core.po
+++ b/l10n/lt_LT/core.po
@@ -11,9 +11,9 @@
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
-"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-10-30 03:32-0400\n"
-"PO-Revision-Date: 2013-10-30 07:32+0000\n"
+"Report-Msgid-Bugs-To: translations@owncloud.org\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:11+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n"
"MIME-Version: 1.0\n"
@@ -286,12 +286,12 @@ msgstr "Dalinamasi"
msgid "Share"
msgstr "Dalintis"
-#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:690
-#: js/share.js:702
+#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:692
+#: js/share.js:704
msgid "Error"
msgstr "Klaida"
-#: js/share.js:160 js/share.js:730
+#: js/share.js:160 js/share.js:732
msgid "Error while sharing"
msgstr "Klaida, dalijimosi metu"
@@ -347,79 +347,79 @@ msgstr "Nustatykite galiojimo laiką"
msgid "Expiration date"
msgstr "Galiojimo laikas"
-#: js/share.js:272
+#: js/share.js:274
msgid "Share via email:"
msgstr "Dalintis per el. paštą:"
-#: js/share.js:275
+#: js/share.js:277
msgid "No people found"
msgstr "Žmonių nerasta"
-#: js/share.js:305 js/share.js:342
+#: js/share.js:307 js/share.js:344
msgid "group"
msgstr "grupė"
-#: js/share.js:316
+#: js/share.js:318
msgid "Resharing is not allowed"
msgstr "Dalijinasis išnaujo negalimas"
-#: js/share.js:358
+#: js/share.js:360
msgid "Shared in {item} with {user}"
msgstr "Pasidalino {item} su {user}"
-#: js/share.js:380
+#: js/share.js:382
msgid "Unshare"
msgstr "Nebesidalinti"
-#: js/share.js:388
+#: js/share.js:390
msgid "notify by email"
msgstr "pranešti el. paštu"
-#: js/share.js:391
+#: js/share.js:393
msgid "can edit"
msgstr "gali redaguoti"
-#: js/share.js:393
+#: js/share.js:395
msgid "access control"
msgstr "priėjimo kontrolė"
-#: js/share.js:396
+#: js/share.js:398
msgid "create"
msgstr "sukurti"
-#: js/share.js:399
+#: js/share.js:401
msgid "update"
msgstr "atnaujinti"
-#: js/share.js:402
+#: js/share.js:404
msgid "delete"
msgstr "ištrinti"
-#: js/share.js:405
+#: js/share.js:407
msgid "share"
msgstr "dalintis"
-#: js/share.js:447 js/share.js:677
+#: js/share.js:449 js/share.js:679
msgid "Password protected"
msgstr "Apsaugota slaptažodžiu"
-#: js/share.js:690
+#: js/share.js:692
msgid "Error unsetting expiration date"
msgstr "Klaida nuimant galiojimo laiką"
-#: js/share.js:702
+#: js/share.js:704
msgid "Error setting expiration date"
msgstr "Klaida nustatant galiojimo laiką"
-#: js/share.js:717
+#: js/share.js:719
msgid "Sending ..."
msgstr "Siunčiama..."
-#: js/share.js:728
+#: js/share.js:730
msgid "Email sent"
msgstr "Laiškas išsiųstas"
-#: js/share.js:752
+#: js/share.js:754
msgid "Warning"
msgstr "Įspėjimas"
diff --git a/l10n/lt_LT/files.po b/l10n/lt_LT/files.po
index db2dc8a157f..558bf2e9939 100644
--- a/l10n/lt_LT/files.po
+++ b/l10n/lt_LT/files.po
@@ -10,8 +10,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-03 12:38-0500\n"
-"PO-Revision-Date: 2013-11-03 17:38+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-09 07:01+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n"
"MIME-Version: 1.0\n"
@@ -30,7 +30,7 @@ msgstr "Nepavyko perkelti %s - failas su tokiu pavadinimu jau egzistuoja"
msgid "Could not move %s"
msgstr "Nepavyko perkelti %s"
-#: ajax/newfile.php:56 js/files.js:27
+#: ajax/newfile.php:56 js/files.js:74
msgid "File name cannot be empty."
msgstr "Failo pavadinimas negali būti tuščias."
@@ -54,7 +54,7 @@ msgstr ""
msgid "Error while downloading %s to %s"
msgstr "Klaida siunčiant %s į %s"
-#: ajax/newfile.php:127
+#: ajax/newfile.php:128
msgid "Error when creating the file"
msgstr "Klaida kuriant failą"
@@ -117,15 +117,15 @@ msgstr "Nepavyko įrašyti į diską"
msgid "Not enough storage available"
msgstr "Nepakanka vietos serveryje"
-#: ajax/upload.php:127 ajax/upload.php:153
+#: ajax/upload.php:127 ajax/upload.php:154
msgid "Upload failed. Could not get file info."
msgstr "Įkėlimas nepavyko. Nepavyko gauti failo informacijos."
-#: ajax/upload.php:143
+#: ajax/upload.php:144
msgid "Upload failed. Could not find uploaded file"
msgstr "Įkėlimas nepavyko. Nepavyko rasti įkelto failo"
-#: ajax/upload.php:170
+#: ajax/upload.php:172
msgid "Invalid directory."
msgstr "Neteisingas aplankas"
@@ -145,24 +145,24 @@ msgstr "Nepakanka vietos"
msgid "Upload cancelled."
msgstr "Įkėlimas atšauktas."
-#: js/file-upload.js:345
+#: js/file-upload.js:344
msgid "Could not get result from server."
msgstr "Nepavyko gauti rezultato iš serverio."
-#: js/file-upload.js:437
+#: js/file-upload.js:436
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr "Failo įkėlimas pradėtas. Jei paliksite šį puslapį, įkėlimas nutrūks."
-#: js/file-upload.js:520
+#: js/file-upload.js:519
msgid "URL cannot be empty"
msgstr "URL negali būti tuščias."
-#: js/file-upload.js:524 js/filelist.js:364
+#: js/file-upload.js:523 js/filelist.js:371
msgid "In the home folder 'Shared' is a reserved filename"
msgstr ""
-#: js/file-upload.js:526 js/filelist.js:366
+#: js/file-upload.js:525 js/filelist.js:373
msgid "{new_name} already exists"
msgstr "{new_name} jau egzistuoja"
@@ -186,107 +186,107 @@ msgstr "Ištrinti negrįžtamai"
msgid "Rename"
msgstr "Pervadinti"
-#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:854
+#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:857
msgid "Pending"
msgstr "Laukiantis"
-#: js/filelist.js:392
+#: js/filelist.js:399
msgid "Could not rename file"
msgstr "Neįmanoma pervadinti failo"
-#: js/filelist.js:511
+#: js/filelist.js:518
msgid "replaced {new_name} with {old_name}"
msgstr "pakeiskite {new_name} į {old_name}"
-#: js/filelist.js:511
+#: js/filelist.js:518
msgid "undo"
msgstr "anuliuoti"
-#: js/filelist.js:582 js/filelist.js:649 js/files.js:587
+#: js/filelist.js:578 js/filelist.js:652 js/files.js:631
msgid "%n folder"
msgid_plural "%n folders"
msgstr[0] "%n aplankas"
msgstr[1] "%n aplankai"
msgstr[2] "%n aplankų"
-#: js/filelist.js:583 js/filelist.js:650 js/files.js:593
+#: js/filelist.js:579 js/filelist.js:653 js/files.js:637
msgid "%n file"
msgid_plural "%n files"
msgstr[0] "%n failas"
msgstr[1] "%n failai"
msgstr[2] "%n failų"
-#: js/filelist.js:590
+#: js/filelist.js:586
msgid "{dirs} and {files}"
msgstr "{dirs} ir {files}"
-#: js/filelist.js:793 js/filelist.js:831
+#: js/filelist.js:796 js/filelist.js:834
msgid "Uploading %n file"
msgid_plural "Uploading %n files"
msgstr[0] "Įkeliamas %n failas"
msgstr[1] "Įkeliami %n failai"
msgstr[2] "Įkeliama %n failų"
-#: js/files.js:25
+#: js/files.js:72
msgid "'.' is an invalid file name."
msgstr "'.' yra neleidžiamas failo pavadinime."
-#: js/files.js:34
+#: js/files.js:81
msgid ""
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not "
"allowed."
msgstr "Neleistinas pavadinimas, '\\', '/', '<', '>', ':', '\"', '|', '?' ir '*' yra neleidžiami."
-#: js/files.js:46
+#: js/files.js:93
msgid "Your storage is full, files can not be updated or synced anymore!"
msgstr "Jūsų visa vieta serveryje užimta"
-#: js/files.js:50
+#: js/files.js:97
msgid "Your storage is almost full ({usedSpacePercent}%)"
msgstr "Jūsų vieta serveryje beveik visa užimta ({usedSpacePercent}%)"
-#: js/files.js:63
+#: js/files.js:110
msgid ""
"Encryption App is enabled but your keys are not initialized, please log-out "
"and log-in again"
msgstr "Šifravimo programa įjungta, bet Jūsų raktai nėra pritaikyti. Prašome atsijungti ir vėl prisijungti"
-#: js/files.js:67
+#: js/files.js:114
msgid ""
"Invalid private key for Encryption App. Please update your private key "
"password in your personal settings to recover access to your encrypted "
"files."
msgstr "Netinkamas privatus raktas Šifravimo programai. Prašome atnaujinti savo privataus rakto slaptažodį asmeniniuose nustatymuose, kad atkurti prieigą prie šifruotų failų."
-#: js/files.js:71
+#: js/files.js:118
msgid ""
"Encryption was disabled but your files are still encrypted. Please go to "
"your personal settings to decrypt your files."
msgstr "Šifravimas buvo išjungtas, bet Jūsų failai vis dar užšifruoti. Prašome eiti į asmeninius nustatymus ir iššifruoti savo failus."
-#: js/files.js:302
+#: js/files.js:349
msgid ""
"Your download is being prepared. This might take some time if the files are "
"big."
msgstr "Jūsų atsisiuntimas yra paruošiamas. tai gali užtrukti jei atsisiunčiamas didelis failas."
-#: js/files.js:514 js/files.js:552
+#: js/files.js:558 js/files.js:596
msgid "Error moving file"
msgstr "Klaida perkeliant failą"
-#: js/files.js:514 js/files.js:552
+#: js/files.js:558 js/files.js:596
msgid "Error"
msgstr "Klaida"
-#: js/files.js:569 templates/index.php:56
+#: js/files.js:613 templates/index.php:56
msgid "Name"
msgstr "Pavadinimas"
-#: js/files.js:570 templates/index.php:68
+#: js/files.js:614 templates/index.php:68
msgid "Size"
msgstr "Dydis"
-#: js/files.js:571 templates/index.php:70
+#: js/files.js:615 templates/index.php:70
msgid "Modified"
msgstr "Pakeista"
diff --git a/l10n/lt_LT/files_sharing.po b/l10n/lt_LT/files_sharing.po
index 594a739fcc7..8d9e9a39d19 100644
--- a/l10n/lt_LT/files_sharing.po
+++ b/l10n/lt_LT/files_sharing.po
@@ -9,9 +9,9 @@
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
-"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-10-29 07:28-0400\n"
-"PO-Revision-Date: 2013-10-28 10:45+0000\n"
+"Report-Msgid-Bugs-To: translations@owncloud.org\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+0000\n"
"Last-Translator: Dr. ROX \n"
"Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/lt_LT/settings.po b/l10n/lt_LT/settings.po
index 1f25a9779cc..25d31b75a7c 100644
--- a/l10n/lt_LT/settings.po
+++ b/l10n/lt_LT/settings.po
@@ -12,8 +12,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-06 21:43-0500\n"
-"PO-Revision-Date: 2013-11-07 02:43+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/lt_LT/user_ldap.po b/l10n/lt_LT/user_ldap.po
index 7092a2ea2bd..701f510b76e 100644
--- a/l10n/lt_LT/user_ldap.po
+++ b/l10n/lt_LT/user_ldap.po
@@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-03 12:38-0500\n"
-"PO-Revision-Date: 2013-11-03 17:39+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n"
"MIME-Version: 1.0\n"
@@ -140,6 +140,10 @@ msgstr ""
msgid "Could not find the desired feature"
msgstr ""
+#: templates/part.settingcontrols.php:2
+msgid "Save"
+msgstr "Išsaugoti"
+
#: templates/part.settingcontrols.php:4
msgid "Test Configuration"
msgstr "Bandyti konfigūraciją"
diff --git a/l10n/lv/core.po b/l10n/lv/core.po
index e26400dc096..424c54fba7d 100644
--- a/l10n/lv/core.po
+++ b/l10n/lv/core.po
@@ -7,9 +7,9 @@
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
-"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-10-30 03:32-0400\n"
-"PO-Revision-Date: 2013-10-30 07:32+0000\n"
+"Report-Msgid-Bugs-To: translations@owncloud.org\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:11+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n"
"MIME-Version: 1.0\n"
@@ -282,12 +282,12 @@ msgstr "Kopīgs"
msgid "Share"
msgstr "Dalīties"
-#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:690
-#: js/share.js:702
+#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:692
+#: js/share.js:704
msgid "Error"
msgstr "Kļūda"
-#: js/share.js:160 js/share.js:730
+#: js/share.js:160 js/share.js:732
msgid "Error while sharing"
msgstr "Kļūda, daloties"
@@ -343,79 +343,79 @@ msgstr "Iestaties termiņa datumu"
msgid "Expiration date"
msgstr "Termiņa datums"
-#: js/share.js:272
+#: js/share.js:274
msgid "Share via email:"
msgstr "Dalīties, izmantojot e-pastu:"
-#: js/share.js:275
+#: js/share.js:277
msgid "No people found"
msgstr "Nav atrastu cilvēku"
-#: js/share.js:305 js/share.js:342
+#: js/share.js:307 js/share.js:344
msgid "group"
msgstr "grupa"
-#: js/share.js:316
+#: js/share.js:318
msgid "Resharing is not allowed"
msgstr "Atkārtota dalīšanās nav atļauta"
-#: js/share.js:358
+#: js/share.js:360
msgid "Shared in {item} with {user}"
msgstr "Dalījās ar {item} ar {user}"
-#: js/share.js:380
+#: js/share.js:382
msgid "Unshare"
msgstr "Pārtraukt dalīšanos"
-#: js/share.js:388
+#: js/share.js:390
msgid "notify by email"
msgstr ""
-#: js/share.js:391
+#: js/share.js:393
msgid "can edit"
msgstr "var rediģēt"
-#: js/share.js:393
+#: js/share.js:395
msgid "access control"
msgstr "piekļuves vadība"
-#: js/share.js:396
+#: js/share.js:398
msgid "create"
msgstr "izveidot"
-#: js/share.js:399
+#: js/share.js:401
msgid "update"
msgstr "atjaunināt"
-#: js/share.js:402
+#: js/share.js:404
msgid "delete"
msgstr "dzēst"
-#: js/share.js:405
+#: js/share.js:407
msgid "share"
msgstr "dalīties"
-#: js/share.js:447 js/share.js:677
+#: js/share.js:449 js/share.js:679
msgid "Password protected"
msgstr "Aizsargāts ar paroli"
-#: js/share.js:690
+#: js/share.js:692
msgid "Error unsetting expiration date"
msgstr "Kļūda, noņemot termiņa datumu"
-#: js/share.js:702
+#: js/share.js:704
msgid "Error setting expiration date"
msgstr "Kļūda, iestatot termiņa datumu"
-#: js/share.js:717
+#: js/share.js:719
msgid "Sending ..."
msgstr "Sūta..."
-#: js/share.js:728
+#: js/share.js:730
msgid "Email sent"
msgstr "Vēstule nosūtīta"
-#: js/share.js:752
+#: js/share.js:754
msgid "Warning"
msgstr "Brīdinājums"
diff --git a/l10n/lv/files.po b/l10n/lv/files.po
index e6630595dfd..c52f55984b8 100644
--- a/l10n/lv/files.po
+++ b/l10n/lv/files.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-03 12:38-0500\n"
-"PO-Revision-Date: 2013-11-03 17:38+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-09 07:01+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n"
"MIME-Version: 1.0\n"
@@ -28,7 +28,7 @@ msgstr "Nevarēja pārvietot %s — jau eksistē datne ar tādu nosaukumu"
msgid "Could not move %s"
msgstr "Nevarēja pārvietot %s"
-#: ajax/newfile.php:56 js/files.js:27
+#: ajax/newfile.php:56 js/files.js:74
msgid "File name cannot be empty."
msgstr "Datnes nosaukums nevar būt tukšs."
@@ -52,7 +52,7 @@ msgstr ""
msgid "Error while downloading %s to %s"
msgstr ""
-#: ajax/newfile.php:127
+#: ajax/newfile.php:128
msgid "Error when creating the file"
msgstr ""
@@ -115,15 +115,15 @@ msgstr "Neizdevās saglabāt diskā"
msgid "Not enough storage available"
msgstr "Nav pietiekami daudz vietas"
-#: ajax/upload.php:127 ajax/upload.php:153
+#: ajax/upload.php:127 ajax/upload.php:154
msgid "Upload failed. Could not get file info."
msgstr ""
-#: ajax/upload.php:143
+#: ajax/upload.php:144
msgid "Upload failed. Could not find uploaded file"
msgstr ""
-#: ajax/upload.php:170
+#: ajax/upload.php:172
msgid "Invalid directory."
msgstr "Nederīga direktorija."
@@ -143,24 +143,24 @@ msgstr "Nepietiek brīvas vietas"
msgid "Upload cancelled."
msgstr "Augšupielāde ir atcelta."
-#: js/file-upload.js:345
+#: js/file-upload.js:344
msgid "Could not get result from server."
msgstr ""
-#: js/file-upload.js:437
+#: js/file-upload.js:436
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr "Notiek augšupielāde. Pametot lapu tagad, tiks atcelta augšupielāde."
-#: js/file-upload.js:520
+#: js/file-upload.js:519
msgid "URL cannot be empty"
msgstr ""
-#: js/file-upload.js:524 js/filelist.js:364
+#: js/file-upload.js:523 js/filelist.js:371
msgid "In the home folder 'Shared' is a reserved filename"
msgstr ""
-#: js/file-upload.js:526 js/filelist.js:366
+#: js/file-upload.js:525 js/filelist.js:373
msgid "{new_name} already exists"
msgstr "{new_name} jau eksistē"
@@ -184,107 +184,107 @@ msgstr "Dzēst pavisam"
msgid "Rename"
msgstr "Pārsaukt"
-#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:854
+#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:857
msgid "Pending"
msgstr "Gaida savu kārtu"
-#: js/filelist.js:392
+#: js/filelist.js:399
msgid "Could not rename file"
msgstr ""
-#: js/filelist.js:511
+#: js/filelist.js:518
msgid "replaced {new_name} with {old_name}"
msgstr "aizvietoja {new_name} ar {old_name}"
-#: js/filelist.js:511
+#: js/filelist.js:518
msgid "undo"
msgstr "atsaukt"
-#: js/filelist.js:582 js/filelist.js:649 js/files.js:587
+#: js/filelist.js:578 js/filelist.js:652 js/files.js:631
msgid "%n folder"
msgid_plural "%n folders"
msgstr[0] "%n mapes"
msgstr[1] "%n mape"
msgstr[2] "%n mapes"
-#: js/filelist.js:583 js/filelist.js:650 js/files.js:593
+#: js/filelist.js:579 js/filelist.js:653 js/files.js:637
msgid "%n file"
msgid_plural "%n files"
msgstr[0] "%n faili"
msgstr[1] "%n fails"
msgstr[2] "%n faili"
-#: js/filelist.js:590
+#: js/filelist.js:586
msgid "{dirs} and {files}"
msgstr ""
-#: js/filelist.js:793 js/filelist.js:831
+#: js/filelist.js:796 js/filelist.js:834
msgid "Uploading %n file"
msgid_plural "Uploading %n files"
msgstr[0] "%n"
msgstr[1] "Augšupielāde %n failu"
msgstr[2] "Augšupielāde %n failus"
-#: js/files.js:25
+#: js/files.js:72
msgid "'.' is an invalid file name."
msgstr "'.' ir nederīgs datnes nosaukums."
-#: js/files.js:34
+#: js/files.js:81
msgid ""
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not "
"allowed."
msgstr "Nederīgs nosaukums, nav atļauti '\\', '/', '<', '>', ':', '\"', '|', '?' un '*'."
-#: js/files.js:46
+#: js/files.js:93
msgid "Your storage is full, files can not be updated or synced anymore!"
msgstr "Jūsu krātuve ir pilna, datnes vairs nevar augšupielādēt vai sinhronizēt!"
-#: js/files.js:50
+#: js/files.js:97
msgid "Your storage is almost full ({usedSpacePercent}%)"
msgstr "Jūsu krātuve ir gandrīz pilna ({usedSpacePercent}%)"
-#: js/files.js:63
+#: js/files.js:110
msgid ""
"Encryption App is enabled but your keys are not initialized, please log-out "
"and log-in again"
msgstr ""
-#: js/files.js:67
+#: js/files.js:114
msgid ""
"Invalid private key for Encryption App. Please update your private key "
"password in your personal settings to recover access to your encrypted "
"files."
msgstr ""
-#: js/files.js:71
+#: js/files.js:118
msgid ""
"Encryption was disabled but your files are still encrypted. Please go to "
"your personal settings to decrypt your files."
msgstr "Šifrēšana tika atslēgta, tomēr jūsu faili joprojām ir šifrēti. Atšifrēt failus var Personiskajos uzstādījumos."
-#: js/files.js:302
+#: js/files.js:349
msgid ""
"Your download is being prepared. This might take some time if the files are "
"big."
msgstr "Tiek sagatavota lejupielāde. Tas var aizņemt kādu laiciņu, ja datnes ir lielas."
-#: js/files.js:514 js/files.js:552
+#: js/files.js:558 js/files.js:596
msgid "Error moving file"
msgstr ""
-#: js/files.js:514 js/files.js:552
+#: js/files.js:558 js/files.js:596
msgid "Error"
msgstr "Kļūda"
-#: js/files.js:569 templates/index.php:56
+#: js/files.js:613 templates/index.php:56
msgid "Name"
msgstr "Nosaukums"
-#: js/files.js:570 templates/index.php:68
+#: js/files.js:614 templates/index.php:68
msgid "Size"
msgstr "Izmērs"
-#: js/files.js:571 templates/index.php:70
+#: js/files.js:615 templates/index.php:70
msgid "Modified"
msgstr "Mainīts"
diff --git a/l10n/lv/files_sharing.po b/l10n/lv/files_sharing.po
index bd7f9148684..8c461027070 100644
--- a/l10n/lv/files_sharing.po
+++ b/l10n/lv/files_sharing.po
@@ -6,9 +6,9 @@
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
-"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-10-29 07:28-0400\n"
-"PO-Revision-Date: 2013-10-28 10:45+0000\n"
+"Report-Msgid-Bugs-To: translations@owncloud.org\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/lv/settings.po b/l10n/lv/settings.po
index 48ff2e8b814..33a1b4fe06a 100644
--- a/l10n/lv/settings.po
+++ b/l10n/lv/settings.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-06 21:43-0500\n"
-"PO-Revision-Date: 2013-11-07 02:43+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/lv/user_ldap.po b/l10n/lv/user_ldap.po
index ddeb6525c4c..0e48e629356 100644
--- a/l10n/lv/user_ldap.po
+++ b/l10n/lv/user_ldap.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-03 12:38-0500\n"
-"PO-Revision-Date: 2013-11-03 17:39+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n"
"MIME-Version: 1.0\n"
@@ -138,6 +138,10 @@ msgstr ""
msgid "Could not find the desired feature"
msgstr ""
+#: templates/part.settingcontrols.php:2
+msgid "Save"
+msgstr "Saglabāt"
+
#: templates/part.settingcontrols.php:4
msgid "Test Configuration"
msgstr "Testa konfigurācija"
diff --git a/l10n/mk/core.po b/l10n/mk/core.po
index 3d8ab4debb4..8fb654199c3 100644
--- a/l10n/mk/core.po
+++ b/l10n/mk/core.po
@@ -7,9 +7,9 @@
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
-"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-10-30 03:32-0400\n"
-"PO-Revision-Date: 2013-10-30 07:32+0000\n"
+"Report-Msgid-Bugs-To: translations@owncloud.org\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:11+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n"
"MIME-Version: 1.0\n"
@@ -277,12 +277,12 @@ msgstr "Споделен"
msgid "Share"
msgstr "Сподели"
-#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:690
-#: js/share.js:702
+#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:692
+#: js/share.js:704
msgid "Error"
msgstr "Грешка"
-#: js/share.js:160 js/share.js:730
+#: js/share.js:160 js/share.js:732
msgid "Error while sharing"
msgstr "Грешка при споделување"
@@ -338,79 +338,79 @@ msgstr "Постави рок на траење"
msgid "Expiration date"
msgstr "Рок на траење"
-#: js/share.js:272
+#: js/share.js:274
msgid "Share via email:"
msgstr "Сподели по е-пошта:"
-#: js/share.js:275
+#: js/share.js:277
msgid "No people found"
msgstr "Не се најдени луѓе"
-#: js/share.js:305 js/share.js:342
+#: js/share.js:307 js/share.js:344
msgid "group"
msgstr "група"
-#: js/share.js:316
+#: js/share.js:318
msgid "Resharing is not allowed"
msgstr "Повторно споделување не е дозволено"
-#: js/share.js:358
+#: js/share.js:360
msgid "Shared in {item} with {user}"
msgstr "Споделено во {item} со {user}"
-#: js/share.js:380
+#: js/share.js:382
msgid "Unshare"
msgstr "Не споделувај"
-#: js/share.js:388
+#: js/share.js:390
msgid "notify by email"
msgstr "извести преку електронска пошта"
-#: js/share.js:391
+#: js/share.js:393
msgid "can edit"
msgstr "може да се измени"
-#: js/share.js:393
+#: js/share.js:395
msgid "access control"
msgstr "контрола на пристап"
-#: js/share.js:396
+#: js/share.js:398
msgid "create"
msgstr "креирај"
-#: js/share.js:399
+#: js/share.js:401
msgid "update"
msgstr "ажурирај"
-#: js/share.js:402
+#: js/share.js:404
msgid "delete"
msgstr "избриши"
-#: js/share.js:405
+#: js/share.js:407
msgid "share"
msgstr "сподели"
-#: js/share.js:447 js/share.js:677
+#: js/share.js:449 js/share.js:679
msgid "Password protected"
msgstr "Заштитено со лозинка"
-#: js/share.js:690
+#: js/share.js:692
msgid "Error unsetting expiration date"
msgstr "Грешка при тргање на рокот на траење"
-#: js/share.js:702
+#: js/share.js:704
msgid "Error setting expiration date"
msgstr "Грешка при поставување на рок на траење"
-#: js/share.js:717
+#: js/share.js:719
msgid "Sending ..."
msgstr "Праќање..."
-#: js/share.js:728
+#: js/share.js:730
msgid "Email sent"
msgstr "Е-порака пратена"
-#: js/share.js:752
+#: js/share.js:754
msgid "Warning"
msgstr "Предупредување"
diff --git a/l10n/mk/files.po b/l10n/mk/files.po
index be89d72f0e7..d6600d5b841 100644
--- a/l10n/mk/files.po
+++ b/l10n/mk/files.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-03 12:38-0500\n"
-"PO-Revision-Date: 2013-11-03 17:38+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-09 07:01+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n"
"MIME-Version: 1.0\n"
@@ -28,7 +28,7 @@ msgstr "Не можам да го преместам %s - Датотека со
msgid "Could not move %s"
msgstr "Не можам да ги префрлам %s"
-#: ajax/newfile.php:56 js/files.js:27
+#: ajax/newfile.php:56 js/files.js:74
msgid "File name cannot be empty."
msgstr "Името на датотеката не може да биде празно."
@@ -52,7 +52,7 @@ msgstr "Не е валиден извор"
msgid "Error while downloading %s to %s"
msgstr "Грешка додека преземам %s to %s"
-#: ajax/newfile.php:127
+#: ajax/newfile.php:128
msgid "Error when creating the file"
msgstr "Грешка при креирање на датотека"
@@ -115,15 +115,15 @@ msgstr "Неуспеав да запишам на диск"
msgid "Not enough storage available"
msgstr "Нема доволно слободен сториџ"
-#: ajax/upload.php:127 ajax/upload.php:153
+#: ajax/upload.php:127 ajax/upload.php:154
msgid "Upload failed. Could not get file info."
msgstr ""
-#: ajax/upload.php:143
+#: ajax/upload.php:144
msgid "Upload failed. Could not find uploaded file"
msgstr "Префрлањето е неуспешно. Не можам да го најдам префрлената датотека."
-#: ajax/upload.php:170
+#: ajax/upload.php:172
msgid "Invalid directory."
msgstr "Погрешна папка."
@@ -143,24 +143,24 @@ msgstr "Немате доволно дисков простор"
msgid "Upload cancelled."
msgstr "Преземањето е прекинато."
-#: js/file-upload.js:345
+#: js/file-upload.js:344
msgid "Could not get result from server."
msgstr "Не можам да добијам резултат од серверот."
-#: js/file-upload.js:437
+#: js/file-upload.js:436
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr "Подигање на датотека е во тек. Напуштење на страницата ќе го прекине."
-#: js/file-upload.js:520
+#: js/file-upload.js:519
msgid "URL cannot be empty"
msgstr "URL-то не може да биде празно"
-#: js/file-upload.js:524 js/filelist.js:364
+#: js/file-upload.js:523 js/filelist.js:371
msgid "In the home folder 'Shared' is a reserved filename"
msgstr "Во домашната папка, 'Shared' е резервирано има на датотека/папка"
-#: js/file-upload.js:526 js/filelist.js:366
+#: js/file-upload.js:525 js/filelist.js:373
msgid "{new_name} already exists"
msgstr "{new_name} веќе постои"
@@ -184,104 +184,104 @@ msgstr "Трајно избришани"
msgid "Rename"
msgstr "Преименувај"
-#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:854
+#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:857
msgid "Pending"
msgstr "Чека"
-#: js/filelist.js:392
+#: js/filelist.js:399
msgid "Could not rename file"
msgstr "Не можам да ја преименувам датотеката"
-#: js/filelist.js:511
+#: js/filelist.js:518
msgid "replaced {new_name} with {old_name}"
msgstr "заменета {new_name} со {old_name}"
-#: js/filelist.js:511
+#: js/filelist.js:518
msgid "undo"
msgstr "врати"
-#: js/filelist.js:582 js/filelist.js:649 js/files.js:587
+#: js/filelist.js:578 js/filelist.js:652 js/files.js:631
msgid "%n folder"
msgid_plural "%n folders"
msgstr[0] ""
msgstr[1] ""
-#: js/filelist.js:583 js/filelist.js:650 js/files.js:593
+#: js/filelist.js:579 js/filelist.js:653 js/files.js:637
msgid "%n file"
msgid_plural "%n files"
msgstr[0] ""
msgstr[1] ""
-#: js/filelist.js:590
+#: js/filelist.js:586
msgid "{dirs} and {files}"
msgstr "{dirs} и {files}"
-#: js/filelist.js:793 js/filelist.js:831
+#: js/filelist.js:796 js/filelist.js:834
msgid "Uploading %n file"
msgid_plural "Uploading %n files"
msgstr[0] ""
msgstr[1] ""
-#: js/files.js:25
+#: js/files.js:72
msgid "'.' is an invalid file name."
msgstr "'.' е грешно име за датотека."
-#: js/files.js:34
+#: js/files.js:81
msgid ""
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not "
"allowed."
msgstr "Неправилно име. , '\\', '/', '<', '>', ':', '\"', '|', '?' и '*' не се дозволени."
-#: js/files.js:46
+#: js/files.js:93
msgid "Your storage is full, files can not be updated or synced anymore!"
msgstr "Вашиот сториџ е полн, датотеките веќе не можат да се освежуваат или синхронизираат!"
-#: js/files.js:50
+#: js/files.js:97
msgid "Your storage is almost full ({usedSpacePercent}%)"
msgstr "Вашиот сториџ е скоро полн ({usedSpacePercent}%)"
-#: js/files.js:63
+#: js/files.js:110
msgid ""
"Encryption App is enabled but your keys are not initialized, please log-out "
"and log-in again"
msgstr ""
-#: js/files.js:67
+#: js/files.js:114
msgid ""
"Invalid private key for Encryption App. Please update your private key "
"password in your personal settings to recover access to your encrypted "
"files."
msgstr ""
-#: js/files.js:71
+#: js/files.js:118
msgid ""
"Encryption was disabled but your files are still encrypted. Please go to "
"your personal settings to decrypt your files."
msgstr ""
-#: js/files.js:302
+#: js/files.js:349
msgid ""
"Your download is being prepared. This might take some time if the files are "
"big."
msgstr "Вашето преземање се подготвува. Ова може да потрае до колку датотеките се големи."
-#: js/files.js:514 js/files.js:552
+#: js/files.js:558 js/files.js:596
msgid "Error moving file"
msgstr "Грешка при префрлање на датотека"
-#: js/files.js:514 js/files.js:552
+#: js/files.js:558 js/files.js:596
msgid "Error"
msgstr "Грешка"
-#: js/files.js:569 templates/index.php:56
+#: js/files.js:613 templates/index.php:56
msgid "Name"
msgstr "Име"
-#: js/files.js:570 templates/index.php:68
+#: js/files.js:614 templates/index.php:68
msgid "Size"
msgstr "Големина"
-#: js/files.js:571 templates/index.php:70
+#: js/files.js:615 templates/index.php:70
msgid "Modified"
msgstr "Променето"
diff --git a/l10n/mk/files_sharing.po b/l10n/mk/files_sharing.po
index a3919b48474..252d3aeaefc 100644
--- a/l10n/mk/files_sharing.po
+++ b/l10n/mk/files_sharing.po
@@ -6,9 +6,9 @@
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
-"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-10-29 07:28-0400\n"
-"PO-Revision-Date: 2013-10-28 10:45+0000\n"
+"Report-Msgid-Bugs-To: translations@owncloud.org\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/mk/settings.po b/l10n/mk/settings.po
index 11c9f7fa191..5d6d7275269 100644
--- a/l10n/mk/settings.po
+++ b/l10n/mk/settings.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-06 21:43-0500\n"
-"PO-Revision-Date: 2013-11-07 02:43+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/mk/user_ldap.po b/l10n/mk/user_ldap.po
index f184e1827a8..f756bfbd87b 100644
--- a/l10n/mk/user_ldap.po
+++ b/l10n/mk/user_ldap.po
@@ -3,12 +3,13 @@
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
+# miroj , 2013
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-03 12:38-0500\n"
-"PO-Revision-Date: 2013-11-03 17:39+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n"
"MIME-Version: 1.0\n"
@@ -68,11 +69,11 @@ msgstr ""
#: js/settings.js:84
msgid "Keep settings?"
-msgstr ""
+msgstr "Да ги сочувам нагодувањата?"
#: js/settings.js:99
msgid "Cannot add server configuration"
-msgstr ""
+msgstr "Не можам да ја додадам конфигурацијата на серверот"
#: js/settings.js:113
msgid "mappings cleared"
@@ -100,11 +101,11 @@ msgstr ""
#: js/settings.js:694
msgid "Connection test succeeded"
-msgstr ""
+msgstr "Тестот за поврзување е успешен"
#: js/settings.js:699
msgid "Connection test failed"
-msgstr ""
+msgstr "Тестот за поврзување не е успешен"
#: js/settings.js:709
msgid "Do you really want to delete the current Server Configuration?"
@@ -112,7 +113,7 @@ msgstr ""
#: js/settings.js:710
msgid "Confirm Deletion"
-msgstr ""
+msgstr "Потврдете го бришењето"
#: lib/wizard.php:78 lib/wizard.php:92
#, php-format
@@ -136,6 +137,10 @@ msgstr ""
msgid "Could not find the desired feature"
msgstr ""
+#: templates/part.settingcontrols.php:2
+msgid "Save"
+msgstr "Сними"
+
#: templates/part.settingcontrols.php:4
msgid "Test Configuration"
msgstr ""
@@ -210,7 +215,7 @@ msgstr "Може да го скокнете протколот освен ако
#: templates/part.wizard-server.php:36
msgid "Port"
-msgstr ""
+msgstr "Порта"
#: templates/part.wizard-server.php:44
msgid "User DN"
diff --git a/l10n/ml_IN/user_ldap.po b/l10n/ml_IN/user_ldap.po
index 3921d09d0d3..70cc5309b01 100644
--- a/l10n/ml_IN/user_ldap.po
+++ b/l10n/ml_IN/user_ldap.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-03 12:38-0500\n"
-"PO-Revision-Date: 2013-11-03 17:39+0000\n"
+"POT-Creation-Date: 2013-11-09 01:44-0500\n"
+"PO-Revision-Date: 2013-11-09 06:44+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Malayalam (India) (http://www.transifex.com/projects/p/owncloud/language/ml_IN/)\n"
"MIME-Version: 1.0\n"
@@ -136,6 +136,10 @@ msgstr ""
msgid "Could not find the desired feature"
msgstr ""
+#: templates/part.settingcontrols.php:2
+msgid "Save"
+msgstr ""
+
#: templates/part.settingcontrols.php:4
msgid "Test Configuration"
msgstr ""
diff --git a/l10n/ms_MY/core.po b/l10n/ms_MY/core.po
index 368a83da85e..5378cbe8ab4 100644
--- a/l10n/ms_MY/core.po
+++ b/l10n/ms_MY/core.po
@@ -6,9 +6,9 @@
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
-"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-10-30 03:32-0400\n"
-"PO-Revision-Date: 2013-10-30 07:32+0000\n"
+"Report-Msgid-Bugs-To: translations@owncloud.org\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:11+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n"
"MIME-Version: 1.0\n"
@@ -271,12 +271,12 @@ msgstr ""
msgid "Share"
msgstr "Kongsi"
-#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:690
-#: js/share.js:702
+#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:692
+#: js/share.js:704
msgid "Error"
msgstr "Ralat"
-#: js/share.js:160 js/share.js:730
+#: js/share.js:160 js/share.js:732
msgid "Error while sharing"
msgstr ""
@@ -332,79 +332,79 @@ msgstr ""
msgid "Expiration date"
msgstr ""
-#: js/share.js:272
+#: js/share.js:274
msgid "Share via email:"
msgstr ""
-#: js/share.js:275
+#: js/share.js:277
msgid "No people found"
msgstr ""
-#: js/share.js:305 js/share.js:342
+#: js/share.js:307 js/share.js:344
msgid "group"
msgstr ""
-#: js/share.js:316
+#: js/share.js:318
msgid "Resharing is not allowed"
msgstr ""
-#: js/share.js:358
+#: js/share.js:360
msgid "Shared in {item} with {user}"
msgstr ""
-#: js/share.js:380
+#: js/share.js:382
msgid "Unshare"
msgstr ""
-#: js/share.js:388
+#: js/share.js:390
msgid "notify by email"
msgstr ""
-#: js/share.js:391
+#: js/share.js:393
msgid "can edit"
msgstr ""
-#: js/share.js:393
+#: js/share.js:395
msgid "access control"
msgstr ""
-#: js/share.js:396
+#: js/share.js:398
msgid "create"
msgstr ""
-#: js/share.js:399
+#: js/share.js:401
msgid "update"
msgstr ""
-#: js/share.js:402
+#: js/share.js:404
msgid "delete"
msgstr ""
-#: js/share.js:405
+#: js/share.js:407
msgid "share"
msgstr ""
-#: js/share.js:447 js/share.js:677
+#: js/share.js:449 js/share.js:679
msgid "Password protected"
msgstr ""
-#: js/share.js:690
+#: js/share.js:692
msgid "Error unsetting expiration date"
msgstr ""
-#: js/share.js:702
+#: js/share.js:704
msgid "Error setting expiration date"
msgstr ""
-#: js/share.js:717
+#: js/share.js:719
msgid "Sending ..."
msgstr ""
-#: js/share.js:728
+#: js/share.js:730
msgid "Email sent"
msgstr ""
-#: js/share.js:752
+#: js/share.js:754
msgid "Warning"
msgstr "Amaran"
diff --git a/l10n/ms_MY/files.po b/l10n/ms_MY/files.po
index 4bc615b7e37..2aa9bf0befc 100644
--- a/l10n/ms_MY/files.po
+++ b/l10n/ms_MY/files.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-03 12:38-0500\n"
-"PO-Revision-Date: 2013-11-03 17:38+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-09 07:01+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n"
"MIME-Version: 1.0\n"
@@ -27,7 +27,7 @@ msgstr ""
msgid "Could not move %s"
msgstr ""
-#: ajax/newfile.php:56 js/files.js:27
+#: ajax/newfile.php:56 js/files.js:74
msgid "File name cannot be empty."
msgstr ""
@@ -51,7 +51,7 @@ msgstr ""
msgid "Error while downloading %s to %s"
msgstr ""
-#: ajax/newfile.php:127
+#: ajax/newfile.php:128
msgid "Error when creating the file"
msgstr ""
@@ -114,15 +114,15 @@ msgstr "Gagal untuk disimpan"
msgid "Not enough storage available"
msgstr ""
-#: ajax/upload.php:127 ajax/upload.php:153
+#: ajax/upload.php:127 ajax/upload.php:154
msgid "Upload failed. Could not get file info."
msgstr ""
-#: ajax/upload.php:143
+#: ajax/upload.php:144
msgid "Upload failed. Could not find uploaded file"
msgstr ""
-#: ajax/upload.php:170
+#: ajax/upload.php:172
msgid "Invalid directory."
msgstr ""
@@ -142,24 +142,24 @@ msgstr ""
msgid "Upload cancelled."
msgstr "Muatnaik dibatalkan."
-#: js/file-upload.js:345
+#: js/file-upload.js:344
msgid "Could not get result from server."
msgstr ""
-#: js/file-upload.js:437
+#: js/file-upload.js:436
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr ""
-#: js/file-upload.js:520
+#: js/file-upload.js:519
msgid "URL cannot be empty"
msgstr ""
-#: js/file-upload.js:524 js/filelist.js:364
+#: js/file-upload.js:523 js/filelist.js:371
msgid "In the home folder 'Shared' is a reserved filename"
msgstr ""
-#: js/file-upload.js:526 js/filelist.js:366
+#: js/file-upload.js:525 js/filelist.js:373
msgid "{new_name} already exists"
msgstr ""
@@ -183,101 +183,101 @@ msgstr ""
msgid "Rename"
msgstr "Namakan"
-#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:854
+#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:857
msgid "Pending"
msgstr "Dalam proses"
-#: js/filelist.js:392
+#: js/filelist.js:399
msgid "Could not rename file"
msgstr ""
-#: js/filelist.js:511
+#: js/filelist.js:518
msgid "replaced {new_name} with {old_name}"
msgstr ""
-#: js/filelist.js:511
+#: js/filelist.js:518
msgid "undo"
msgstr ""
-#: js/filelist.js:582 js/filelist.js:649 js/files.js:587
+#: js/filelist.js:578 js/filelist.js:652 js/files.js:631
msgid "%n folder"
msgid_plural "%n folders"
msgstr[0] ""
-#: js/filelist.js:583 js/filelist.js:650 js/files.js:593
+#: js/filelist.js:579 js/filelist.js:653 js/files.js:637
msgid "%n file"
msgid_plural "%n files"
msgstr[0] ""
-#: js/filelist.js:590
+#: js/filelist.js:586
msgid "{dirs} and {files}"
msgstr ""
-#: js/filelist.js:793 js/filelist.js:831
+#: js/filelist.js:796 js/filelist.js:834
msgid "Uploading %n file"
msgid_plural "Uploading %n files"
msgstr[0] ""
-#: js/files.js:25
+#: js/files.js:72
msgid "'.' is an invalid file name."
msgstr ""
-#: js/files.js:34
+#: js/files.js:81
msgid ""
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not "
"allowed."
msgstr ""
-#: js/files.js:46
+#: js/files.js:93
msgid "Your storage is full, files can not be updated or synced anymore!"
msgstr ""
-#: js/files.js:50
+#: js/files.js:97
msgid "Your storage is almost full ({usedSpacePercent}%)"
msgstr ""
-#: js/files.js:63
+#: js/files.js:110
msgid ""
"Encryption App is enabled but your keys are not initialized, please log-out "
"and log-in again"
msgstr ""
-#: js/files.js:67
+#: js/files.js:114
msgid ""
"Invalid private key for Encryption App. Please update your private key "
"password in your personal settings to recover access to your encrypted "
"files."
msgstr ""
-#: js/files.js:71
+#: js/files.js:118
msgid ""
"Encryption was disabled but your files are still encrypted. Please go to "
"your personal settings to decrypt your files."
msgstr ""
-#: js/files.js:302
+#: js/files.js:349
msgid ""
"Your download is being prepared. This might take some time if the files are "
"big."
msgstr ""
-#: js/files.js:514 js/files.js:552
+#: js/files.js:558 js/files.js:596
msgid "Error moving file"
msgstr ""
-#: js/files.js:514 js/files.js:552
+#: js/files.js:558 js/files.js:596
msgid "Error"
msgstr "Ralat"
-#: js/files.js:569 templates/index.php:56
+#: js/files.js:613 templates/index.php:56
msgid "Name"
msgstr "Nama"
-#: js/files.js:570 templates/index.php:68
+#: js/files.js:614 templates/index.php:68
msgid "Size"
msgstr "Saiz"
-#: js/files.js:571 templates/index.php:70
+#: js/files.js:615 templates/index.php:70
msgid "Modified"
msgstr "Dimodifikasi"
diff --git a/l10n/ms_MY/files_sharing.po b/l10n/ms_MY/files_sharing.po
index 7ed51639e9c..2d407227e52 100644
--- a/l10n/ms_MY/files_sharing.po
+++ b/l10n/ms_MY/files_sharing.po
@@ -6,9 +6,9 @@
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
-"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-10-29 07:28-0400\n"
-"PO-Revision-Date: 2013-10-28 10:45+0000\n"
+"Report-Msgid-Bugs-To: translations@owncloud.org\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/ms_MY/files_trashbin.po b/l10n/ms_MY/files_trashbin.po
index 35f781ee9f9..b717b91b1ef 100644
--- a/l10n/ms_MY/files_trashbin.po
+++ b/l10n/ms_MY/files_trashbin.po
@@ -3,13 +3,14 @@
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
+# Puretech , 2013
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
-"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-10-16 00:26-0400\n"
-"PO-Revision-Date: 2013-10-14 00:42+0000\n"
-"Last-Translator: I Robot \n"
+"Report-Msgid-Bugs-To: translations@owncloud.org\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-09 13:30+0000\n"
+"Last-Translator: Puretech \n"
"Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -20,12 +21,12 @@ msgstr ""
#: ajax/delete.php:42
#, php-format
msgid "Couldn't delete %s permanently"
-msgstr ""
+msgstr "Tidak dapat menghapuskan %s secara kekal"
#: ajax/undelete.php:42
#, php-format
msgid "Couldn't restore %s"
-msgstr ""
+msgstr "Tidak dapat memulihkan %s"
#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149
msgid "Error"
@@ -33,11 +34,11 @@ msgstr "Ralat"
#: lib/trashbin.php:814 lib/trashbin.php:816
msgid "restored"
-msgstr ""
+msgstr "dipulihkan"
#: templates/index.php:8
msgid "Nothing in here. Your trash bin is empty!"
-msgstr ""
+msgstr "Tiada apa disini. Tong sampah anda kosong!"
#: templates/index.php:22
msgid "Name"
@@ -45,11 +46,11 @@ msgstr "Nama"
#: templates/index.php:25 templates/index.php:27
msgid "Restore"
-msgstr ""
+msgstr "Pulihkan"
#: templates/index.php:33
msgid "Deleted"
-msgstr ""
+msgstr "Dihapuskan"
#: templates/index.php:36 templates/index.php:37
msgid "Delete"
@@ -57,4 +58,4 @@ msgstr "Padam"
#: templates/part.breadcrumb.php:9
msgid "Deleted Files"
-msgstr ""
+msgstr "Fail Dihapus"
diff --git a/l10n/ms_MY/files_versions.po b/l10n/ms_MY/files_versions.po
index e18c5a6cab0..af02e6b6866 100644
--- a/l10n/ms_MY/files_versions.po
+++ b/l10n/ms_MY/files_versions.po
@@ -3,13 +3,14 @@
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
+# Puretech , 2013
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
-"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-07-27 01:56-0400\n"
-"PO-Revision-Date: 2013-07-27 05:56+0000\n"
-"Last-Translator: I Robot \n"
+"Report-Msgid-Bugs-To: translations@owncloud.org\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-09 13:30+0000\n"
+"Last-Translator: Puretech \n"
"Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -20,24 +21,24 @@ msgstr ""
#: ajax/rollbackVersion.php:13
#, php-format
msgid "Could not revert: %s"
-msgstr ""
+msgstr "Tidak dapat kembalikan: %s"
-#: js/versions.js:7
+#: js/versions.js:14
msgid "Versions"
-msgstr ""
+msgstr "Versi"
-#: js/versions.js:53
+#: js/versions.js:60
msgid "Failed to revert {file} to revision {timestamp}."
-msgstr ""
+msgstr "Gagal kembalikan {file} ke semakan {timestamp}."
-#: js/versions.js:79
+#: js/versions.js:86
msgid "More versions..."
-msgstr ""
+msgstr "Lagi versi..."
-#: js/versions.js:116
+#: js/versions.js:123
msgid "No other versions available"
-msgstr ""
+msgstr "Tiada lagi versi lain"
-#: js/versions.js:149
+#: js/versions.js:154
msgid "Restore"
-msgstr ""
+msgstr "Pulihkan"
diff --git a/l10n/ms_MY/settings.po b/l10n/ms_MY/settings.po
index 49bb30712e7..b05eff55ef2 100644
--- a/l10n/ms_MY/settings.po
+++ b/l10n/ms_MY/settings.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-06 21:43-0500\n"
-"PO-Revision-Date: 2013-11-07 02:43+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/ms_MY/user_ldap.po b/l10n/ms_MY/user_ldap.po
index a185a9de3d2..0f19a96fb37 100644
--- a/l10n/ms_MY/user_ldap.po
+++ b/l10n/ms_MY/user_ldap.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2013-11-03 12:38-0500\n"
-"PO-Revision-Date: 2013-11-03 17:39+0000\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n"
"MIME-Version: 1.0\n"
@@ -134,6 +134,10 @@ msgstr ""
msgid "Could not find the desired feature"
msgstr ""
+#: templates/part.settingcontrols.php:2
+msgid "Save"
+msgstr "Simpan"
+
#: templates/part.settingcontrols.php:4
msgid "Test Configuration"
msgstr ""
diff --git a/l10n/ms_MY/user_webdavauth.po b/l10n/ms_MY/user_webdavauth.po
index fb396528932..da9cf299c67 100644
--- a/l10n/ms_MY/user_webdavauth.po
+++ b/l10n/ms_MY/user_webdavauth.po
@@ -3,13 +3,14 @@
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
+# Puretech , 2013
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
-"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-07-27 01:56-0400\n"
-"PO-Revision-Date: 2013-07-27 05:57+0000\n"
-"Last-Translator: I Robot \n"
+"Report-Msgid-Bugs-To: translations@owncloud.org\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-09 14:10+0000\n"
+"Last-Translator: Puretech \n"
"Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -19,15 +20,15 @@ msgstr ""
#: templates/settings.php:3
msgid "WebDAV Authentication"
-msgstr ""
+msgstr "Pengesahan "
#: templates/settings.php:4
msgid "Address: "
-msgstr ""
+msgstr "Alamat:"
#: templates/settings.php:7
msgid ""
"The user credentials will be sent to this address. This plugin checks the "
"response and will interpret the HTTP statuscodes 401 and 403 as invalid "
"credentials, and all other responses as valid credentials."
-msgstr ""
+msgstr "Butiran pengguna akan dihantar ke alamat ini. Plugin ini memeriksa maklum balas dan akan mentafsir kod status HTTP 401 dan 403 sebagai butiran tidak sah, dan semua maklum balas lain sebagai butiran yang sah."
diff --git a/l10n/my_MM/core.po b/l10n/my_MM/core.po
index ae2e1d69755..be800d816db 100644
--- a/l10n/my_MM/core.po
+++ b/l10n/my_MM/core.po
@@ -6,9 +6,9 @@
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
-"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-10-30 03:32-0400\n"
-"PO-Revision-Date: 2013-10-30 07:32+0000\n"
+"Report-Msgid-Bugs-To: translations@owncloud.org\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:11+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n"
"MIME-Version: 1.0\n"
@@ -271,12 +271,12 @@ msgstr ""
msgid "Share"
msgstr ""
-#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:690
-#: js/share.js:702
+#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:692
+#: js/share.js:704
msgid "Error"
msgstr ""
-#: js/share.js:160 js/share.js:730
+#: js/share.js:160 js/share.js:732
msgid "Error while sharing"
msgstr ""
@@ -332,79 +332,79 @@ msgstr "သက်တမ်းကုန်ဆုံးမည့်ရက်သတ
msgid "Expiration date"
msgstr "သက်တမ်းကုန်ဆုံးမည့်ရက်"
-#: js/share.js:272
+#: js/share.js:274
msgid "Share via email:"
msgstr "အီးမေးလ်ဖြင့်ဝေမျှမည် -"
-#: js/share.js:275
+#: js/share.js:277
msgid "No people found"
msgstr ""
-#: js/share.js:305 js/share.js:342
+#: js/share.js:307 js/share.js:344
msgid "group"
msgstr ""
-#: js/share.js:316
+#: js/share.js:318
msgid "Resharing is not allowed"
msgstr "ပြန်လည်ဝေမျှခြင်းခွင့်မပြုပါ"
-#: js/share.js:358
+#: js/share.js:360
msgid "Shared in {item} with {user}"
msgstr ""
-#: js/share.js:380
+#: js/share.js:382
msgid "Unshare"
msgstr ""
-#: js/share.js:388
+#: js/share.js:390
msgid "notify by email"
msgstr ""
-#: js/share.js:391
+#: js/share.js:393
msgid "can edit"
msgstr "ပြင်ဆင်နိုင်"
-#: js/share.js:393
+#: js/share.js:395
msgid "access control"
msgstr ""
-#: js/share.js:396
+#: js/share.js:398
msgid "create"
msgstr "ဖန်တီးမည်"
-#: js/share.js:399
+#: js/share.js:401
msgid "update"
msgstr ""
-#: js/share.js:402
+#: js/share.js:404
msgid "delete"
msgstr "ဖျက်မည်"
-#: js/share.js:405
+#: js/share.js:407
msgid "share"
msgstr "ဝေမျှမည်"
-#: js/share.js:447 js/share.js:677
+#: js/share.js:449 js/share.js:679
msgid "Password protected"
msgstr "စကားဝှက်ဖြင့်ကာကွယ်ထားသည်"
-#: js/share.js:690
+#: js/share.js:692
msgid "Error unsetting expiration date"
msgstr ""
-#: js/share.js:702
+#: js/share.js:704
msgid "Error setting expiration date"
msgstr ""
-#: js/share.js:717
+#: js/share.js:719
msgid "Sending ..."
msgstr ""
-#: js/share.js:728
+#: js/share.js:730
msgid "Email sent"
msgstr ""
-#: js/share.js:752
+#: js/share.js:754
msgid "Warning"
msgstr ""
diff --git a/l10n/my_MM/files_sharing.po b/l10n/my_MM/files_sharing.po
index 02df07902c4..eba03b76fae 100644
--- a/l10n/my_MM/files_sharing.po
+++ b/l10n/my_MM/files_sharing.po
@@ -6,9 +6,9 @@
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
-"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2013-10-29 07:28-0400\n"
-"PO-Revision-Date: 2013-10-28 10:45+0000\n"
+"Report-Msgid-Bugs-To: translations@owncloud.org\n"
+"POT-Creation-Date: 2013-11-11 05:45-0500\n"
+"PO-Revision-Date: 2013-11-11 08:12+0000\n"
"Last-Translator: I Robot