diff --git a/3rdparty/MDB2/Driver/Reverse/oci8.php b/3rdparty/MDB2/Driver/Reverse/oci8.php
index c86847fa6b4b2a8db50e12c0ea3b773959acea0d..d89ad771374b3d631a1e7c1877ed2e83c3e4c14b 100644
--- a/3rdparty/MDB2/Driver/Reverse/oci8.php
+++ b/3rdparty/MDB2/Driver/Reverse/oci8.php
@@ -84,12 +84,12 @@ class MDB2_Driver_Reverse_oci8 extends MDB2_Driver_Reverse_Common
             $owner = $db->dsn['username'];
         }
 
-        $query = 'SELECT column_name name,
-                         data_type "type",
-                         nullable,
-                         data_default "default",
-                         COALESCE(data_precision, data_length) "length",
-                         data_scale "scale"
+        $query = 'SELECT column_name AS "name",
+                         data_type AS "type",
+                         nullable AS "nullable",
+                         data_default AS "default",
+                         COALESCE(data_precision, data_length) AS "length",
+                         data_scale AS "scale"
                     FROM all_tab_columns
                    WHERE (table_name=? OR table_name=?)
                      AND (owner=? OR owner=?)
@@ -146,6 +146,10 @@ class MDB2_Driver_Reverse_oci8 extends MDB2_Driver_Reverse_Common
             if ($default === 'NULL') {
                 $default = null;
             }
+			//ugly hack, but works for the reverse direction
+			if ($default == "''") {
+				$default = '';
+			}
             if ((null === $default) && $notnull) {
                 $default = '';
             }
@@ -221,11 +225,11 @@ class MDB2_Driver_Reverse_oci8 extends MDB2_Driver_Reverse_Common
             $owner = $db->dsn['username'];
         }
 
-        $query = "SELECT aic.column_name,
-                         aic.column_position,
-                         aic.descend,
-                         aic.table_owner,
-                         alc.constraint_type
+        $query = 'SELECT aic.column_name AS "column_name",
+                         aic.column_position AS "column_position",
+                         aic.descend AS "descend",
+                         aic.table_owner AS "table_owner",
+                         alc.constraint_type AS "constraint_type"
                     FROM all_ind_columns aic
                LEFT JOIN all_constraints alc
                       ON aic.index_name = alc.constraint_name
@@ -234,7 +238,7 @@ class MDB2_Driver_Reverse_oci8 extends MDB2_Driver_Reverse_Common
                    WHERE (aic.table_name=? OR aic.table_name=?)
                      AND (aic.index_name=? OR aic.index_name=?)
                      AND (aic.table_owner=? OR aic.table_owner=?)
-                ORDER BY column_position";
+                ORDER BY column_position';
         $stmt = $db->prepare($query);
         if (PEAR::isError($stmt)) {
             return $stmt;
@@ -331,9 +335,9 @@ class MDB2_Driver_Reverse_oci8 extends MDB2_Driver_Reverse_Common
                          \'SIMPLE\' "match",
                          CASE alc.deferrable WHEN \'NOT DEFERRABLE\' THEN 0 ELSE 1 END "deferrable",
                          CASE alc.deferred WHEN \'IMMEDIATE\' THEN 0 ELSE 1 END "initiallydeferred",
-                         alc.search_condition,
+                         alc.search_condition AS "search_condition",
                          alc.table_name,
-                         cols.column_name,
+                         cols.column_name AS "column_name",
                          cols.position,
                          r_alc.table_name "references_table",
                          r_cols.column_name "references_field",
@@ -509,14 +513,14 @@ class MDB2_Driver_Reverse_oci8 extends MDB2_Driver_Reverse_Common
             return $db;
         }
 
-        $query = 'SELECT trigger_name,
-                         table_name,
-                         trigger_body,
-                         trigger_type,
-                         triggering_event trigger_event,
-                         description trigger_comment,
-                         1 trigger_enabled,
-                         when_clause
+        $query = 'SELECT trigger_name AS "trigger_name",
+                         table_name AS "table_name",
+                         trigger_body AS "trigger_body",
+                         trigger_type AS "trigger_type",
+                         triggering_event AS "trigger_event",
+                         description AS "trigger_comment",
+                         1 AS "trigger_enabled",
+                         when_clause AS "when_clause"
                     FROM user_triggers
                    WHERE trigger_name = \''. strtoupper($trigger).'\'';
         $types = array(
diff --git a/3rdparty/MDB2/Driver/oci8.php b/3rdparty/MDB2/Driver/oci8.php
index 9f4137d610c8dd4b930127b605c1fa5a4ebe5b98..a1eefc94d15f9d1ddd9aa8dcd5c0aecad49d57f2 100644
--- a/3rdparty/MDB2/Driver/oci8.php
+++ b/3rdparty/MDB2/Driver/oci8.php
@@ -634,6 +634,59 @@ class MDB2_Driver_oci8 extends MDB2_Driver_Common
         return $query;
     }
 
+    /**
+     * Obtain DBMS specific SQL code portion needed to declare a generic type
+     * field to be used in statement like CREATE TABLE, without the field name
+     * and type values (ie. just the character set, default value, if the
+     * field is permitted to be NULL or not, and the collation options).
+     *
+     * @param array  $field  associative array with the name of the properties
+     *      of the field being declared as array indexes. Currently, the types
+     *      of supported field properties are as follows:
+     *
+     *      default
+     *          Text value to be used as default for this field.
+     *      notnull
+     *          Boolean flag that indicates whether this field is constrained
+     *          to not be set to null.
+     *      charset
+     *          Text value with the default CHARACTER SET for this field.
+     *      collation
+     *          Text value with the default COLLATION for this field.
+     * @return string  DBMS specific SQL code portion that should be used to
+     *      declare the specified field's options.
+     * @access protected
+     */
+    function _getDeclarationOptions($field)
+    {
+        $charset = empty($field['charset']) ? '' :
+            ' '.$this->_getCharsetFieldDeclaration($field['charset']);
+
+        $notnull = empty($field['notnull']) ? ' NULL' : ' NOT NULL';
+        $default = '';
+        if (array_key_exists('default', $field)) {
+            if ($field['default'] === '') {
+                $db = $this->getDBInstance();
+                if (PEAR::isError($db)) {
+                    return $db;
+                }
+                $valid_default_values = $this->getValidTypes();
+                $field['default'] = $valid_default_values[$field['type']];
+                if ($field['default'] === '' && ($db->options['portability'] & MDB2_PORTABILITY_EMPTY_TO_NULL)) {
+                    $field['default'] = ' ';
+                }
+            }
+            if (null !== $field['default']) {
+                $default = ' DEFAULT ' . $this->quote($field['default'], $field['type']);
+            }
+        }
+
+        $collation = empty($field['collation']) ? '' :
+            ' '.$this->_getCollationFieldDeclaration($field['collation']);
+
+        return $charset.$default.$notnull.$collation;
+    }
+
     // }}}
     // {{{ _doQuery()
 
diff --git a/apps/files/ajax/newfile.php b/apps/files/ajax/newfile.php
index 4619315ce0913e230fe0773fdd2af7d131dc2252..495c821216367fa864b73e2d698d3ce366ca2817 100644
--- a/apps/files/ajax/newfile.php
+++ b/apps/files/ajax/newfile.php
@@ -67,7 +67,7 @@ if($source) {
 	$result=OC_Filesystem::file_put_contents($target, $sourceStream);
 	if($result) {
 		$mime=OC_Filesystem::getMimetype($target);
-		$eventSource->send('success', $mime);
+		$eventSource->send('success', array('mime'=>$mime, 'size'=>OC_Filesystem::filesize($target)));
 	} else {
 		$eventSource->send('error', "Error while downloading ".$source. ' to '.$target);
 	}
diff --git a/apps/files/ajax/upload.php b/apps/files/ajax/upload.php
index 7709becc6a8952c6be7b86920b855c4949a58ee3..fb3e277a2151ff1769017c48f3812f28787dec89 100644
--- a/apps/files/ajax/upload.php
+++ b/apps/files/ajax/upload.php
@@ -49,7 +49,7 @@ if(strpos($dir, '..') === false) {
 	for($i=0;$i<$fileCount;$i++) {
         $target = OCP\Files::buildNotExistingFileName(stripslashes($dir), $files['name'][$i]);
 		if(is_uploaded_file($files['tmp_name'][$i]) and OC_Filesystem::fromTmpFile($files['tmp_name'][$i], $target)) {
-			$meta=OC_FileCache_Cached::get($target);
+			$meta = OC_FileCache::get($target);
 			$result[]=array( "status" => "success", 'mime'=>$meta['mimetype'],'size'=>$meta['size'],'name'=>basename($target));
 		}
 	}
diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js
index 7ebfd4b68bbe5ea83ce183beee0e2ffeac6b9522..f2b558496e0cf5609191d5b0ceeb0abc22d3b5da 100644
--- a/apps/files/js/filelist.js
+++ b/apps/files/js/filelist.js
@@ -260,7 +260,6 @@ var FileList={
 				FileList.prepareDeletion(files);
 			}
 			FileList.lastAction();
-			return;
 		}
 		FileList.prepareDeletion(files);
 		// NOTE: Temporary fix to change the text to unshared for files in root of Shared folder
diff --git a/apps/files/js/files.js b/apps/files/js/files.js
index 101e2bad2e4c3d898ad5e96b613527854e453883..aefd6f20bec12255a92d18698c68d4c72f3f6fe0 100644
--- a/apps/files/js/files.js
+++ b/apps/files/js/files.js
@@ -253,10 +253,10 @@ $(document).ready(function() {
 									var img = OC.imagePath('core', 'loading.gif');
 									var tr=$('tr').filterAttr('data-file',dirName);
 									tr.find('td.filename').attr('style','background-image:url('+img+')');
-									uploadtext.text('1 file uploading');
+									uploadtext.text(t('files', '1 file uploading'));
 									uploadtext.show();
 								} else {
-									uploadtext.text(currentUploads + ' files uploading')
+									uploadtext.text(currentUploads + ' ' + t('files', 'files uploading'));
 								}
 							}
 						}
@@ -301,7 +301,7 @@ $(document).ready(function() {
 												uploadtext.text('');
 												uploadtext.hide();
 											} else {
-												uploadtext.text(currentUploads + ' files uploading')
+												uploadtext.text(currentUploads + ' ' + t('files', 'files uploading'));
 											}
 										})
 								.error(function(jqXHR, textStatus, errorThrown) {
@@ -316,7 +316,7 @@ $(document).ready(function() {
 											uploadtext.text('');
 											uploadtext.hide();
 										} else {
-											uploadtext.text(currentUploads + ' files uploading')
+											uploadtext.text(currentUploads + ' ' + t('files', 'files uploading'));
 										}
 										$('#notification').hide();
 										$('#notification').text(t('files', 'Upload cancelled.'));
@@ -556,10 +556,12 @@ $(document).ready(function() {
 					eventSource.listen('progress',function(progress){
 						$('#uploadprogressbar').progressbar('value',progress);
 					});
-					eventSource.listen('success',function(mime){
+					eventSource.listen('success',function(data){
+						var mime=data.mime;
+						var size=data.size;
 						$('#uploadprogressbar').fadeOut();
 						var date=new Date();
-						FileList.addFile(localName,0,date,false,hidden);
+						FileList.addFile(localName,size,date,false,hidden);
 						var tr=$('tr').filterAttr('data-file',localName);
 						tr.data('mime',mime);
 						getMimeIcon(mime,function(path){
@@ -661,7 +663,7 @@ function scanFiles(force,dir){
 	var scannerEventSource=new OC.EventSource(OC.filePath('files','ajax','scan.php'),{force:force,dir:dir});
 	scanFiles.cancel=scannerEventSource.close.bind(scannerEventSource);
 	scannerEventSource.listen('scanning',function(data){
-		$('#scan-count').text(data.count+' files scanned');
+		$('#scan-count').text(data.count + ' ' + t('files', 'files scanned'));
 		$('#scan-current').text(data.file+'/');
 	});
 	scannerEventSource.listen('success',function(success){
@@ -669,7 +671,7 @@ function scanFiles(force,dir){
 		if(success){
 			window.location.reload();
 		}else{
-			alert('error while scanning');
+			alert(t('files', 'error while scanning'));
 		}
 	});
 }
diff --git a/apps/files/l10n/da.php b/apps/files/l10n/da.php
index 020f6142ec65ce910afc4ec7478c26c7c7634dc5..de0df6a26f0455f8cfa1d5e800eed0736bad3dac 100644
--- a/apps/files/l10n/da.php
+++ b/apps/files/l10n/da.php
@@ -7,13 +7,16 @@
 "Missing a temporary folder" => "Mangler en midlertidig mappe",
 "Failed to write to disk" => "Fejl ved skrivning til disk.",
 "Files" => "Filer",
+"Unshare" => "Fjern deling",
 "Delete" => "Slet",
 "already exists" => "findes allerede",
 "replace" => "erstat",
+"suggest name" => "foreslå navn",
 "cancel" => "fortryd",
 "replaced" => "erstattet",
 "undo" => "fortryd",
 "with" => "med",
+"unshared" => "udelt",
 "deleted" => "Slettet",
 "generating ZIP-file, it may take some time." => "genererer ZIP-fil, det kan tage lidt tid.",
 "Unable to upload your file as it is a directory or has 0 bytes" => "Kunne ikke uploade din fil, da det enten er en mappe eller er tom",
@@ -35,6 +38,7 @@
 "Enable ZIP-download" => "Muliggør ZIP-download",
 "0 is unlimited" => "0 er ubegrænset",
 "Maximum input size for ZIP files" => "Maksimal størrelse på ZIP filer",
+"Save" => "Gem",
 "New" => "Ny",
 "Text file" => "Tekstfil",
 "Folder" => "Mappe",
diff --git a/apps/files/l10n/de.php b/apps/files/l10n/de.php
index 324fae16f08e0b534f7f6ecf18823565f39c98cf..701c3e877ad1f9db514819fc234734f5342161cd 100644
--- a/apps/files/l10n/de.php
+++ b/apps/files/l10n/de.php
@@ -52,5 +52,5 @@
 "Upload too large" => "Upload zu groß",
 "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Die Datei überschreitet die Maximalgröße für Uploads auf diesem Server.",
 "Files are being scanned, please wait." => "Dateien werden gescannt, bitte warten.",
-"Current scanning" => "Scannen"
+"Current scanning" => "Scanne"
 );
diff --git a/apps/files/l10n/el.php b/apps/files/l10n/el.php
index 9f311c6b28eab3972a62d3ccd9d07bc45f05aba3..5b9f11814cfcc11f1f1fa415d098c009a23a0a5d 100644
--- a/apps/files/l10n/el.php
+++ b/apps/files/l10n/el.php
@@ -7,19 +7,23 @@
 "Missing a temporary folder" => "Λείπει ένας προσωρινός φάκελος",
 "Failed to write to disk" => "Η εγγραφή στο δίσκο απέτυχε",
 "Files" => "Αρχεία",
+"Unshare" => "Διακοπή κοινής χρήσης",
 "Delete" => "Διαγραφή",
 "already exists" => "υπάρχει ήδη",
 "replace" => "αντικατέστησε",
+"suggest name" => "συνιστώμενο όνομα",
 "cancel" => "ακύρωση",
 "replaced" => "αντικαταστάθηκε",
 "undo" => "αναίρεση",
 "with" => "με",
+"unshared" => "Διακόπηκε η κοινή χρήση",
 "deleted" => "διαγράφηκε",
 "generating ZIP-file, it may take some time." => "παραγωγή αρχείου ZIP, ίσως διαρκέσει αρκετά.",
 "Unable to upload your file as it is a directory or has 0 bytes" => "Αδυναμία στην μεταφόρτωση του αρχείου σας αφού είναι φάκελος ή έχει 0 bytes",
 "Upload Error" => "Σφάλμα Μεταφόρτωσης",
 "Pending" => "Εν αναμονή",
 "Upload cancelled." => "Η μεταφόρτωση ακυρώθηκε.",
+"File upload is in progress. Leaving the page now will cancel the upload." => "Η μεταφόρτωση του αρχείου βρίσκεται σε εξέλιξη.  Έξοδος από την σελίδα τώρα θα ακυρώσει την μεταφόρτωση.",
 "Invalid name, '/' is not allowed." => "Μη έγκυρο όνομα, το '/' δεν επιτρέπεται.",
 "Size" => "Μέγεθος",
 "Modified" => "Τροποποιήθηκε",
@@ -34,6 +38,7 @@
 "Enable ZIP-download" => "Ενεργοποίηση κατεβάσματος ZIP",
 "0 is unlimited" => "0 για απεριόριστο",
 "Maximum input size for ZIP files" => "Μέγιστο μέγεθος για αρχεία ZIP",
+"Save" => "Αποθήκευση",
 "New" => "Νέο",
 "Text file" => "Αρχείο κειμένου",
 "Folder" => "Φάκελος",
diff --git a/apps/files/l10n/fr.php b/apps/files/l10n/fr.php
index 929a2ffd4a398c1768b5536f86708a57b52cd74e..c0f08b118d58d73c3a72fec39612d6bac22c60e7 100644
--- a/apps/files/l10n/fr.php
+++ b/apps/files/l10n/fr.php
@@ -7,6 +7,7 @@
 "Missing a temporary folder" => "Il manque un répertoire temporaire",
 "Failed to write to disk" => "Erreur d'écriture sur le disque",
 "Files" => "Fichiers",
+"Unshare" => "Ne plus partager",
 "Delete" => "Supprimer",
 "already exists" => "existe déjà",
 "replace" => "remplacer",
diff --git a/apps/files/l10n/he.php b/apps/files/l10n/he.php
index 65d093e3662ca67c32d21a74ac81964a4fe0e297..e7ab4a524bc3bb7302e10a1b42f14244268a395b 100644
--- a/apps/files/l10n/he.php
+++ b/apps/files/l10n/he.php
@@ -8,6 +8,7 @@
 "Failed to write to disk" => "הכתיבה לכונן נכשלה",
 "Files" => "קבצים",
 "Delete" => "מחיקה",
+"already exists" => "כבר קיים",
 "generating ZIP-file, it may take some time." => "יוצר קובץ ZIP, אנא המתן.",
 "Unable to upload your file as it is a directory or has 0 bytes" => "לא יכול להעלות את הקובץ מכיוון שזו תקיה או שמשקל הקובץ 0 בתים",
 "Upload Error" => "שגיאת העלאה",
diff --git a/apps/files/l10n/pl.php b/apps/files/l10n/pl.php
index d3814333aca07ff3891a2452ebf5423c2b5a5a91..289a613915844ff35859760c45c5ebf4cce0548d 100644
--- a/apps/files/l10n/pl.php
+++ b/apps/files/l10n/pl.php
@@ -7,6 +7,7 @@
 "Missing a temporary folder" => "Brak katalogu tymczasowego",
 "Failed to write to disk" => "Błąd zapisu na dysk",
 "Files" => "Pliki",
+"Unshare" => "Nie udostępniaj",
 "Delete" => "Usuwa element",
 "already exists" => "Już istnieje",
 "replace" => "zastap",
@@ -15,6 +16,7 @@
 "replaced" => "zastąpione",
 "undo" => "wróć",
 "with" => "z",
+"unshared" => "Nie udostępnione",
 "deleted" => "skasuj",
 "generating ZIP-file, it may take some time." => "Generowanie pliku ZIP, może potrwać pewien czas.",
 "Unable to upload your file as it is a directory or has 0 bytes" => "Nie można wczytać pliku jeśli jest katalogiem lub ma 0 bajtów",
diff --git a/apps/files/l10n/ru_RU.php b/apps/files/l10n/ru_RU.php
new file mode 100644
index 0000000000000000000000000000000000000000..f43959d4e956a319b5c814bae568406e2553a10a
--- /dev/null
+++ b/apps/files/l10n/ru_RU.php
@@ -0,0 +1,56 @@
+<?php $TRANSLATIONS = array(
+"There is no error, the file uploaded with success" => "Ошибка отсутствует, файл загружен успешно.",
+"The uploaded file exceeds the upload_max_filesize directive in php.ini" => "Размер загруженного файла превышает заданный в директиве upload_max_filesize в php.ini",
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Размер загруженного",
+"The uploaded file was only partially uploaded" => "Загружаемый файл был загружен частично",
+"No file was uploaded" => "Файл не был загружен",
+"Missing a temporary folder" => "Отсутствует временная папка",
+"Failed to write to disk" => "Не удалось записать на диск",
+"Files" => "Файлы",
+"Unshare" => "Скрыть",
+"Delete" => "Удалить",
+"already exists" => "уже существует",
+"replace" => "отмена",
+"suggest name" => "подобрать название",
+"cancel" => "отменить",
+"replaced" => "заменено",
+"undo" => "отменить действие",
+"with" => "с",
+"unshared" => "скрытый",
+"deleted" => "удалено",
+"generating ZIP-file, it may take some time." => "Создание ZIP-файла, это может занять некоторое время.",
+"Unable to upload your file as it is a directory or has 0 bytes" => "Невозможно загрузить файл,\n так как он имеет нулевой размер или является директорией",
+"Upload Error" => "Ошибка загрузки",
+"Pending" => "Ожидающий решения",
+"Upload cancelled." => "Загрузка отменена",
+"File upload is in progress. Leaving the page now will cancel the upload." => "Процесс загрузки файла. Если покинуть страницу сейчас, загрузка будет отменена.",
+"Invalid name, '/' is not allowed." => "Неправильное имя, '/' не допускается.",
+"Size" => "Размер",
+"Modified" => "Изменен",
+"folder" => "папка",
+"folders" => "папки",
+"file" => "файл",
+"files" => "файлы",
+"File handling" => "Работа с файлами",
+"Maximum upload size" => "Максимальный размер загружаемого файла",
+"max. possible: " => "Максимально возможный",
+"Needed for multi-file and folder downloads." => "Необходимо для множественной загрузки.",
+"Enable ZIP-download" => "Включение ZIP-загрузки",
+"0 is unlimited" => "0 без ограничений",
+"Maximum input size for ZIP files" => "Максимальный размер входящих ZIP-файлов ",
+"Save" => "Сохранить",
+"New" => "Новый",
+"Text file" => "Текстовый файл",
+"Folder" => "Папка",
+"From url" => "Из url",
+"Upload" => "Загрузить ",
+"Cancel upload" => "Отмена загрузки",
+"Nothing in here. Upload something!" => "Здесь ничего нет. Загрузите что-нибудь!",
+"Name" => "Имя",
+"Share" => "Сделать общим",
+"Download" => "Загрузить",
+"Upload too large" => "Загрузка слишком велика",
+"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Размер файлов, которые Вы пытаетесь загрузить, превышает максимально допустимый размер для загрузки на данный сервер.",
+"Files are being scanned, please wait." => "Файлы сканируются, пожалуйста, подождите.",
+"Current scanning" => "Текущее сканирование"
+);
diff --git a/apps/files/l10n/zh_CN.GB2312.php b/apps/files/l10n/zh_CN.GB2312.php
index 42063712eac6b408ddeffe0e9960659c19623bcd..846f4234de15b38b49201cc9067954b16ba7d83d 100644
--- a/apps/files/l10n/zh_CN.GB2312.php
+++ b/apps/files/l10n/zh_CN.GB2312.php
@@ -7,19 +7,23 @@
 "Missing a temporary folder" => "丢失了一个临时文件夹",
 "Failed to write to disk" => "写磁盘失败",
 "Files" => "文件",
+"Unshare" => "取消共享",
 "Delete" => "删除",
 "already exists" => "已经存在了",
 "replace" => "替换",
+"suggest name" => "推荐名称",
 "cancel" => "取消",
 "replaced" => "替换过了",
 "undo" => "撤销",
 "with" => "随着",
+"unshared" => "已取消共享",
 "deleted" => "删除",
 "generating ZIP-file, it may take some time." => "正在生成ZIP文件,这可能需要点时间",
 "Unable to upload your file as it is a directory or has 0 bytes" => "不能上传你指定的文件,可能因为它是个文件夹或者大小为0",
 "Upload Error" => "上传错误",
 "Pending" => "Pending",
 "Upload cancelled." => "上传取消了",
+"File upload is in progress. Leaving the page now will cancel the upload." => "文件正在上传。关闭页面会取消上传。",
 "Invalid name, '/' is not allowed." => "非法文件名,\"/\"是不被许可的",
 "Size" => "大小",
 "Modified" => "修改日期",
@@ -34,6 +38,7 @@
 "Enable ZIP-download" => "支持ZIP下载",
 "0 is unlimited" => "0是无限的",
 "Maximum input size for ZIP files" => "最大的ZIP文件输入大小",
+"Save" => "保存",
 "New" => "新建",
 "Text file" => "文本文档",
 "Folder" => "文件夹",
diff --git a/apps/files/l10n/zh_CN.php b/apps/files/l10n/zh_CN.php
index 3fdb5b6af3e64d534fdcda07e9799e01bd220cb5..cd8dbe406a41c7ba02f190414165d0e7a9153e50 100644
--- a/apps/files/l10n/zh_CN.php
+++ b/apps/files/l10n/zh_CN.php
@@ -7,6 +7,7 @@
 "Missing a temporary folder" => "缺少临时目录",
 "Failed to write to disk" => "写入磁盘失败",
 "Files" => "文件",
+"Unshare" => "取消分享",
 "Delete" => "删除",
 "already exists" => "已经存在",
 "replace" => "替换",
@@ -15,6 +16,7 @@
 "replaced" => "已经替换",
 "undo" => "撤销",
 "with" => "随着",
+"unshared" => "已取消分享",
 "deleted" => "已经删除",
 "generating ZIP-file, it may take some time." => "正在生成 ZIP 文件,可能需要一些时间",
 "Unable to upload your file as it is a directory or has 0 bytes" => "无法上传文件,因为它是一个目录或者大小为 0 字节",
diff --git a/apps/files_encryption/l10n/da.php b/apps/files_encryption/l10n/da.php
new file mode 100644
index 0000000000000000000000000000000000000000..144c9f97084f6768bda1bce92d4515b50d05b1dd
--- /dev/null
+++ b/apps/files_encryption/l10n/da.php
@@ -0,0 +1,6 @@
+<?php $TRANSLATIONS = array(
+"Encryption" => "Kryptering",
+"Exclude the following file types from encryption" => "Ekskluder følgende filtyper fra kryptering",
+"None" => "Ingen",
+"Enable Encryption" => "Aktivér kryptering"
+);
diff --git a/apps/files_encryption/l10n/zh_CN.GB2312.php b/apps/files_encryption/l10n/zh_CN.GB2312.php
new file mode 100644
index 0000000000000000000000000000000000000000..297444fcf558cc43f74b1ff8269c24691d4bf2a2
--- /dev/null
+++ b/apps/files_encryption/l10n/zh_CN.GB2312.php
@@ -0,0 +1,6 @@
+<?php $TRANSLATIONS = array(
+"Encryption" => "加密",
+"Exclude the following file types from encryption" => "从加密中排除如下文件类型",
+"None" => "无",
+"Enable Encryption" => "启用加密"
+);
diff --git a/apps/files_external/js/dropbox.js b/apps/files_external/js/dropbox.js
index dd3a1cb1858f4a566aa9079f55d69f1e8431d8aa..6082fdd2cb7e1fff4e8201644cb8cb8054064785 100644
--- a/apps/files_external/js/dropbox.js
+++ b/apps/files_external/js/dropbox.js
@@ -19,6 +19,7 @@ $(document).ready(function() {
 						if (result && result.status == 'success') {
 							$(token).val(result.access_token);
 							$(token_secret).val(result.access_token_secret);
+							$(configured).val('true');
 							OC.MountConfig.saveStorage(tr);
 							$(tr).find('.configuration input').attr('disabled', 'disabled');
 							$(tr).find('.configuration').append('<span id="access" style="padding-left:0.5em;">Access granted</span>');
diff --git a/apps/files_external/l10n/el.php b/apps/files_external/l10n/el.php
index 7dcf13b3972a93bd890e1f827a0222d8b2727ff9..3de151eb751229babc866f04dbe067391f575344 100644
--- a/apps/files_external/l10n/el.php
+++ b/apps/files_external/l10n/el.php
@@ -1,10 +1,18 @@
 <?php $TRANSLATIONS = array(
-"External Storage" => "Εξωτερική αποθήκευση",
+"External Storage" => "Εξωτερικό Αποθηκευτικό Μέσο",
 "Mount point" => "Σημείο προσάρτησης",
+"Backend" => "Σύστημα υποστήριξης",
 "Configuration" => "Ρυθμίσεις",
 "Options" => "Επιλογές",
+"Applicable" => "Εφαρμόσιμο",
+"Add mount point" => "Προσθήκη σημείου προσάρτησης",
+"None set" => "Κανένα επιλεγμένο",
 "All Users" => "Όλοι οι χρήστες",
 "Groups" => "Ομάδες",
 "Users" => "Χρήστες",
-"Delete" => "Διαγραφή"
+"Delete" => "Διαγραφή",
+"SSL root certificates" => "Πιστοποιητικά SSL root",
+"Import Root Certificate" => "Εισαγωγή Πιστοποιητικού Root",
+"Enable User External Storage" => "Ενεργοποίηση Εξωτερικού Αποθηκευτικού Χώρου Χρήστη",
+"Allow users to mount their own external storage" => "Να επιτρέπεται στους χρήστες να προσαρτούν δικό τους εξωτερικό αποθηκευτικό χώρο"
 );
diff --git a/apps/files_external/l10n/zh_CN.GB2312.php b/apps/files_external/l10n/zh_CN.GB2312.php
new file mode 100644
index 0000000000000000000000000000000000000000..6a6d1c6d12f52295f84c4945f96d9c531c935800
--- /dev/null
+++ b/apps/files_external/l10n/zh_CN.GB2312.php
@@ -0,0 +1,18 @@
+<?php $TRANSLATIONS = array(
+"External Storage" => "外部存储",
+"Mount point" => "挂载点",
+"Backend" => "后端",
+"Configuration" => "配置",
+"Options" => "选项",
+"Applicable" => "可应用",
+"Add mount point" => "添加挂载点",
+"None set" => "未设置",
+"All Users" => "所有用户",
+"Groups" => "群组",
+"Users" => "用户",
+"Delete" => "删除",
+"SSL root certificates" => "SSL 根证书",
+"Import Root Certificate" => "导入根证书",
+"Enable User External Storage" => "启用用户外部存储",
+"Allow users to mount their own external storage" => "允许用户挂载他们的外部存储"
+);
diff --git a/apps/files_external/settings.php b/apps/files_external/settings.php
index b586ce1e8cd0914309793397ba85219a9cf36bce..d2be21b71161491f083e841ad2b692c190bcfecf 100644
--- a/apps/files_external/settings.php
+++ b/apps/files_external/settings.php
@@ -21,7 +21,9 @@
 */
 
 OCP\Util::addScript('files_external', 'settings');
+OCP\Util::addscript('3rdparty', 'chosen/chosen.jquery.min');
 OCP\Util::addStyle('files_external', 'settings');
+OCP\Util::addStyle('3rdparty', 'chosen/chosen');
 $tmpl = new OCP\Template('files_external', 'settings');
 $tmpl->assign('isAdminPage', true, false);
 $tmpl->assign('mounts', OC_Mount_Config::getSystemMountPoints());
diff --git a/apps/files_sharing/l10n/da.php b/apps/files_sharing/l10n/da.php
new file mode 100644
index 0000000000000000000000000000000000000000..1fd9f774a965509a22d3b617da5675879a46a059
--- /dev/null
+++ b/apps/files_sharing/l10n/da.php
@@ -0,0 +1,7 @@
+<?php $TRANSLATIONS = array(
+"Password" => "Kodeord",
+"Submit" => "Send",
+"Download" => "Download",
+"No preview available for" => "Forhåndsvisning ikke tilgængelig for",
+"web services under your control" => "Webtjenester under din kontrol"
+);
diff --git a/apps/files_sharing/l10n/el.php b/apps/files_sharing/l10n/el.php
index 123a008e554167cc2ef06a6a375ee40d496c50eb..3406c508e611462460506e11477b413c50ad8cfd 100644
--- a/apps/files_sharing/l10n/el.php
+++ b/apps/files_sharing/l10n/el.php
@@ -1,4 +1,7 @@
 <?php $TRANSLATIONS = array(
 "Password" => "Συνθηματικό",
-"Submit" => "Καταχώρηση"
+"Submit" => "Καταχώρηση",
+"Download" => "Λήψη",
+"No preview available for" => "Δεν υπάρχει διαθέσιμη προεπισκόπηση για",
+"web services under your control" => "υπηρεσίες δικτύου υπό τον έλεγχό σας"
 );
diff --git a/apps/files_sharing/l10n/zh_CN.GB2312.php b/apps/files_sharing/l10n/zh_CN.GB2312.php
new file mode 100644
index 0000000000000000000000000000000000000000..fdde2c641f6c3ecb32851e7b30081e4d7ecc1d12
--- /dev/null
+++ b/apps/files_sharing/l10n/zh_CN.GB2312.php
@@ -0,0 +1,7 @@
+<?php $TRANSLATIONS = array(
+"Password" => "密码",
+"Submit" => "提交",
+"Download" => "下载",
+"No preview available for" => "没有预览可用于",
+"web services under your control" => "您控制的网络服务"
+);
diff --git a/apps/files_versions/l10n/ca.php b/apps/files_versions/l10n/ca.php
index b6ddc6feecf9d31757eef35466a0fba5fe250094..51ff7aba1dd6bba82c2db95296519837d11407f6 100644
--- a/apps/files_versions/l10n/ca.php
+++ b/apps/files_versions/l10n/ca.php
@@ -1,6 +1,5 @@
 <?php $TRANSLATIONS = array(
 "Expire all versions" => "Expira totes les versions",
 "Versions" => "Versions",
-"This will delete all existing backup versions of your files" => "Això eliminarà totes les versions de còpia de seguretat dels vostres fitxers",
-"Enable Files Versioning" => "Habilita les versions de fitxers"
+"This will delete all existing backup versions of your files" => "Això eliminarà totes les versions de còpia de seguretat dels vostres fitxers"
 );
diff --git a/apps/files_versions/l10n/cs_CZ.php b/apps/files_versions/l10n/cs_CZ.php
index 4f33c1915f2230f375eecea9fd30a8b6679ff9a8..c99c4a27e823a40db56bc1fc532427282c3f1f6b 100644
--- a/apps/files_versions/l10n/cs_CZ.php
+++ b/apps/files_versions/l10n/cs_CZ.php
@@ -2,5 +2,6 @@
 "Expire all versions" => "Vypršet všechny verze",
 "Versions" => "Verze",
 "This will delete all existing backup versions of your files" => "Odstraní všechny existující zálohované verze Vašich souborů",
-"Enable Files Versioning" => "Povolit verzování souborů"
+"Files Versioning" => "Verzování souborů",
+"Enable" => "Povolit"
 );
diff --git a/apps/files_versions/l10n/da.php b/apps/files_versions/l10n/da.php
new file mode 100644
index 0000000000000000000000000000000000000000..6a69fdbe4cc2d5182602414a49aabff25aef91bc
--- /dev/null
+++ b/apps/files_versions/l10n/da.php
@@ -0,0 +1,5 @@
+<?php $TRANSLATIONS = array(
+"Expire all versions" => "Lad alle versioner udløbe",
+"Versions" => "Versioner",
+"This will delete all existing backup versions of your files" => "Dette vil slette alle eksisterende backupversioner af dine filer"
+);
diff --git a/apps/files_versions/l10n/de.php b/apps/files_versions/l10n/de.php
index 2c15884d1b587b2ff102ceb11e5c08414c51b44c..235e31aedfe120d570022dc10572006f48beaf0f 100644
--- a/apps/files_versions/l10n/de.php
+++ b/apps/files_versions/l10n/de.php
@@ -2,5 +2,6 @@
 "Expire all versions" => "Alle Versionen löschen",
 "Versions" => "Versionen",
 "This will delete all existing backup versions of your files" => "Dies löscht alle vorhandenen Sicherungsversionen Ihrer Dateien.",
-"Enable Files Versioning" => "Datei-Versionierung aktivieren"
+"Files Versioning" => "Dateiversionierung",
+"Enable" => "Aktivieren"
 );
diff --git a/apps/files_versions/l10n/el.php b/apps/files_versions/l10n/el.php
index 8953c96bd11801a8eb2b437e231debd32c3075d8..24511f37395ceefd55a314daf96fca10f8cf16a0 100644
--- a/apps/files_versions/l10n/el.php
+++ b/apps/files_versions/l10n/el.php
@@ -1,4 +1,7 @@
 <?php $TRANSLATIONS = array(
 "Expire all versions" => "Λήξη όλων των εκδόσεων",
-"Enable Files Versioning" => "Ενεργοποίηση παρακολούθησης εκδόσεων αρχείων"
+"Versions" => "Εκδόσεις",
+"This will delete all existing backup versions of your files" => "Αυτό θα διαγράψει όλες τις υπάρχουσες εκδόσεις των αντιγράφων ασφαλείας των αρχείων σας",
+"Files Versioning" => "Εκδόσεις Αρχείων",
+"Enable" => "Ενεργοποίηση"
 );
diff --git a/apps/files_versions/l10n/eo.php b/apps/files_versions/l10n/eo.php
index 2f22b5ac0a57e33c9972744b5c1a2f4a27a33597..d0f89c576d458056ef965838114dd19b7046c22a 100644
--- a/apps/files_versions/l10n/eo.php
+++ b/apps/files_versions/l10n/eo.php
@@ -1,6 +1,5 @@
 <?php $TRANSLATIONS = array(
 "Expire all versions" => "Eksvalidigi ĉiujn eldonojn",
 "Versions" => "Eldonoj",
-"This will delete all existing backup versions of your files" => "Ĉi tio forigos ĉiujn estantajn sekurkopiajn eldonojn de viaj dosieroj",
-"Enable Files Versioning" => "Kapabligi dosiereldonkontrolon"
+"This will delete all existing backup versions of your files" => "Ĉi tio forigos ĉiujn estantajn sekurkopiajn eldonojn de viaj dosieroj"
 );
diff --git a/apps/files_versions/l10n/es.php b/apps/files_versions/l10n/es.php
index 83d7ed0da2cd16f459972c77476a33c5e14ba737..cff15bce43a91da6e4f48eaed29170a31e04d844 100644
--- a/apps/files_versions/l10n/es.php
+++ b/apps/files_versions/l10n/es.php
@@ -2,5 +2,6 @@
 "Expire all versions" => "Expirar todas las versiones",
 "Versions" => "Versiones",
 "This will delete all existing backup versions of your files" => "Esto eliminará todas las versiones guardadas como copia de seguridad de tus archivos",
-"Enable Files Versioning" => "Habilitar versionamiento de archivos"
+"Files Versioning" => "Versionado de archivos",
+"Enable" => "Habilitar"
 );
diff --git a/apps/files_versions/l10n/et_EE.php b/apps/files_versions/l10n/et_EE.php
index cfc48537e092e890f6e09e219c936f00485ed7b1..f1ebd082ad5ba5b11ed08243e9dc224308e71306 100644
--- a/apps/files_versions/l10n/et_EE.php
+++ b/apps/files_versions/l10n/et_EE.php
@@ -1,6 +1,5 @@
 <?php $TRANSLATIONS = array(
 "Expire all versions" => "Kõikide versioonide aegumine",
 "Versions" => "Versioonid",
-"This will delete all existing backup versions of your files" => "See kustutab kõik sinu failidest tehtud varuversiooni",
-"Enable Files Versioning" => "Luba failide versioonihaldus"
+"This will delete all existing backup versions of your files" => "See kustutab kõik sinu failidest tehtud varuversiooni"
 );
diff --git a/apps/files_versions/l10n/eu.php b/apps/files_versions/l10n/eu.php
index 0f065c1e93ca8f37d458615187694c51382f3740..889e762c6b9f145ac1ce18116f150ef981d4da05 100644
--- a/apps/files_versions/l10n/eu.php
+++ b/apps/files_versions/l10n/eu.php
@@ -1,6 +1,5 @@
 <?php $TRANSLATIONS = array(
 "Expire all versions" => "Iraungi bertsio guztiak",
 "Versions" => "Bertsioak",
-"This will delete all existing backup versions of your files" => "Honek zure fitxategien bertsio guztiak ezabatuko ditu",
-"Enable Files Versioning" => "Gaitu fitxategien bertsioak"
+"This will delete all existing backup versions of your files" => "Honek zure fitxategien bertsio guztiak ezabatuko ditu"
 );
diff --git a/apps/files_versions/l10n/fa.php b/apps/files_versions/l10n/fa.php
index e2dc6cba63fd83d1539d0139b426ac58a5d0851e..98dd415969afe5ee6c9c6bdae3013e70cd862b6e 100644
--- a/apps/files_versions/l10n/fa.php
+++ b/apps/files_versions/l10n/fa.php
@@ -1,4 +1,3 @@
 <?php $TRANSLATIONS = array(
-"Expire all versions" => "انقضای تمامی نسخه‌ها",
-"Enable Files Versioning" => "فعال‌کردن پرونده‌های نسخه‌بندی"
+"Expire all versions" => "انقضای تمامی نسخه‌ها"
 );
diff --git a/apps/files_versions/l10n/fi_FI.php b/apps/files_versions/l10n/fi_FI.php
index 5cfcbf28bd4314885e00aa3dde62abf6d9cf291d..bc8aa67dc7965199a8408257793d9ea9273a2e2f 100644
--- a/apps/files_versions/l10n/fi_FI.php
+++ b/apps/files_versions/l10n/fi_FI.php
@@ -1,6 +1,5 @@
 <?php $TRANSLATIONS = array(
 "Expire all versions" => "Vanhenna kaikki versiot",
 "Versions" => "Versiot",
-"This will delete all existing backup versions of your files" => "Tämä poistaa kaikki tiedostojesi olemassa olevat varmuuskopioversiot",
-"Enable Files Versioning" => "Käytä tiedostojen versiointia"
+"This will delete all existing backup versions of your files" => "Tämä poistaa kaikki tiedostojesi olemassa olevat varmuuskopioversiot"
 );
diff --git a/apps/files_versions/l10n/fr.php b/apps/files_versions/l10n/fr.php
index 965fa02de98c61ba82bd9d54bdc7f88fd2764dca..b0e658e8df0285e60fae3ee8c281d41f6bb09d6f 100644
--- a/apps/files_versions/l10n/fr.php
+++ b/apps/files_versions/l10n/fr.php
@@ -1,6 +1,5 @@
 <?php $TRANSLATIONS = array(
 "Expire all versions" => "Supprimer les versions intermédiaires",
 "Versions" => "Versions",
-"This will delete all existing backup versions of your files" => "Cette opération va effacer toutes les versions intermédiaires de vos fichiers (et ne garder que la dernière version en date).",
-"Enable Files Versioning" => "Activer le versionnage"
+"This will delete all existing backup versions of your files" => "Cette opération va effacer toutes les versions intermédiaires de vos fichiers (et ne garder que la dernière version en date)."
 );
diff --git a/apps/files_versions/l10n/he.php b/apps/files_versions/l10n/he.php
index 097169b2a499c783f607ae342063026b61c6289f..09a013f45a8c77c13c94772e83beeea8aee6c0f7 100644
--- a/apps/files_versions/l10n/he.php
+++ b/apps/files_versions/l10n/he.php
@@ -1,6 +1,5 @@
 <?php $TRANSLATIONS = array(
 "Expire all versions" => "הפגת תוקף כל הגרסאות",
 "Versions" => "גרסאות",
-"This will delete all existing backup versions of your files" => "פעולה זו תמחק את כל גיבויי הגרסאות הקיימים של הקבצים שלך",
-"Enable Files Versioning" => "הפעלת ניהול גרסאות לקבצים"
+"This will delete all existing backup versions of your files" => "פעולה זו תמחק את כל גיבויי הגרסאות הקיימים של הקבצים שלך"
 );
diff --git a/apps/files_versions/l10n/it.php b/apps/files_versions/l10n/it.php
index b7b0b9627b16de72fbe30e3a338170a192a25585..59f7e759b197a57e68f0ef566f2ab441d68eb336 100644
--- a/apps/files_versions/l10n/it.php
+++ b/apps/files_versions/l10n/it.php
@@ -2,5 +2,6 @@
 "Expire all versions" => "Scadenza di tutte le versioni",
 "Versions" => "Versioni",
 "This will delete all existing backup versions of your files" => "Ciò eliminerà tutte le versioni esistenti dei tuoi file",
-"Enable Files Versioning" => "Abilita controllo di versione"
+"Files Versioning" => "Controllo di versione dei file",
+"Enable" => "Abilita"
 );
diff --git a/apps/files_versions/l10n/ja_JP.php b/apps/files_versions/l10n/ja_JP.php
index 81d17f56f8f5c457a2637fdb2cd3e843007a39fd..7a00d0b4dade887163ffc21bbbfc17a6c14929ee 100644
--- a/apps/files_versions/l10n/ja_JP.php
+++ b/apps/files_versions/l10n/ja_JP.php
@@ -1,6 +1,5 @@
 <?php $TRANSLATIONS = array(
 "Expire all versions" => "すべてのバージョンを削除する",
 "Versions" => "バージョン",
-"This will delete all existing backup versions of your files" => "これは、あなたのファイルのすべてのバックアップバージョンを削除します",
-"Enable Files Versioning" => "ファイルのバージョン管理を有効にする"
+"This will delete all existing backup versions of your files" => "これは、あなたのファイルのすべてのバックアップバージョンを削除します"
 );
diff --git a/apps/files_versions/l10n/lt_LT.php b/apps/files_versions/l10n/lt_LT.php
index 5da209f31b95b0fa6c77796acbb9276b01a1cf0e..b3810d06ec75331952085743e0accfc4519bbe36 100644
--- a/apps/files_versions/l10n/lt_LT.php
+++ b/apps/files_versions/l10n/lt_LT.php
@@ -1,4 +1,3 @@
 <?php $TRANSLATIONS = array(
-"Expire all versions" => "Panaikinti visų versijų galiojimą",
-"Enable Files Versioning" => "Įjungti failų versijų vedimą"
+"Expire all versions" => "Panaikinti visų versijų galiojimą"
 );
diff --git a/apps/files_versions/l10n/nl.php b/apps/files_versions/l10n/nl.php
index da31603ff54b4a311e1cb81e9cd2563281315ab5..486b4ed45cf7c00ab35f6d39f9029de586a572dc 100644
--- a/apps/files_versions/l10n/nl.php
+++ b/apps/files_versions/l10n/nl.php
@@ -1,6 +1,5 @@
 <?php $TRANSLATIONS = array(
 "Expire all versions" => "Alle versies laten verlopen",
 "Versions" => "Versies",
-"This will delete all existing backup versions of your files" => "Dit zal alle bestaande backup versies van uw bestanden verwijderen",
-"Enable Files Versioning" => "Activeer file versioning"
+"This will delete all existing backup versions of your files" => "Dit zal alle bestaande backup versies van uw bestanden verwijderen"
 );
diff --git a/apps/files_versions/l10n/pl.php b/apps/files_versions/l10n/pl.php
index c25d37611a09dd2ddbe80c144744409cfb49e20e..a198792a5bc419a31e6a2844a82a4c17dff4dae6 100644
--- a/apps/files_versions/l10n/pl.php
+++ b/apps/files_versions/l10n/pl.php
@@ -1,6 +1,5 @@
 <?php $TRANSLATIONS = array(
 "Expire all versions" => "Wygasają wszystkie wersje",
 "Versions" => "Wersje",
-"This will delete all existing backup versions of your files" => "Spowoduje to usunięcie wszystkich istniejących wersji kopii zapasowych plików",
-"Enable Files Versioning" => "Włącz wersjonowanie plików"
+"This will delete all existing backup versions of your files" => "Spowoduje to usunięcie wszystkich istniejących wersji kopii zapasowych plików"
 );
diff --git a/apps/files_versions/l10n/pt_BR.php b/apps/files_versions/l10n/pt_BR.php
index a90b48fe3a3182e3a20de2e7ba33e1a57639806f..102b6d62743fd14354613f60dd6de1bef1d6a56b 100644
--- a/apps/files_versions/l10n/pt_BR.php
+++ b/apps/files_versions/l10n/pt_BR.php
@@ -1,4 +1,3 @@
 <?php $TRANSLATIONS = array(
-"Expire all versions" => "Expirar todas as versões",
-"Enable Files Versioning" => "Habilitar versionamento de arquivos"
+"Expire all versions" => "Expirar todas as versões"
 );
diff --git a/apps/files_versions/l10n/ru.php b/apps/files_versions/l10n/ru.php
index 675dd090d3028bc3180613b7f03c0d173087b87b..f91cae90a146f2b4438a62f2767406b1eedd46b0 100644
--- a/apps/files_versions/l10n/ru.php
+++ b/apps/files_versions/l10n/ru.php
@@ -1,6 +1,5 @@
 <?php $TRANSLATIONS = array(
 "Expire all versions" => "Просрочить все версии",
 "Versions" => "Версии",
-"This will delete all existing backup versions of your files" => "Очистить список версий ваших файлов",
-"Enable Files Versioning" => "Включить ведение версий файлов"
+"This will delete all existing backup versions of your files" => "Очистить список версий ваших файлов"
 );
diff --git a/apps/files_versions/l10n/sl.php b/apps/files_versions/l10n/sl.php
index aec6edb3c22e8bda3e0e8f5ded6f36056b479890..9984bcb5e80d7703383ad8e0a03ad97bf34b4bde 100644
--- a/apps/files_versions/l10n/sl.php
+++ b/apps/files_versions/l10n/sl.php
@@ -2,5 +2,6 @@
 "Expire all versions" => "Zastaraj vse različice",
 "Versions" => "Različice",
 "This will delete all existing backup versions of your files" => "To bo izbrisalo vse obstoječe različice varnostnih kopij vaših datotek",
-"Enable Files Versioning" => "Omogoči sledenje različicam datotek"
+"Files Versioning" => "Sledenje različicam",
+"Enable" => "Omogoči"
 );
diff --git a/apps/files_versions/l10n/sv.php b/apps/files_versions/l10n/sv.php
index 5788d8ae197e560d68ab63a32b20015c859a9d2c..218bd6ee2ea84f0740a58c198ac293bf2d9c245c 100644
--- a/apps/files_versions/l10n/sv.php
+++ b/apps/files_versions/l10n/sv.php
@@ -2,5 +2,6 @@
 "Expire all versions" => "Upphör alla versioner",
 "Versions" => "Versioner",
 "This will delete all existing backup versions of your files" => "Detta kommer att radera alla befintliga säkerhetskopior av dina filer",
-"Enable Files Versioning" => "Aktivera versionshantering"
+"Files Versioning" => "Versionshantering av filer",
+"Enable" => "Aktivera"
 );
diff --git a/apps/files_versions/l10n/th_TH.php b/apps/files_versions/l10n/th_TH.php
index 4f26e3bd03598731e51cdbeaa83ad141a4d1d678..62ab0548f4b196a80ee925e50b74c64bfd66daa7 100644
--- a/apps/files_versions/l10n/th_TH.php
+++ b/apps/files_versions/l10n/th_TH.php
@@ -2,5 +2,6 @@
 "Expire all versions" => "หมดอายุทุกรุ่น",
 "Versions" => "รุ่น",
 "This will delete all existing backup versions of your files" => "นี่จะเป็นลบทิ้งไฟล์รุ่นที่ทำการสำรองข้อมูลทั้งหมดที่มีอยู่ของคุณทิ้งไป",
-"Enable Files Versioning" => "เปิดใช้งานคุณสมบัติการแยกสถานะรุ่นหรือเวอร์ชั่นของไฟล์"
+"Files Versioning" => "การกำหนดเวอร์ชั่นของไฟล์",
+"Enable" => "เปิดใช้งาน"
 );
diff --git a/apps/files_versions/l10n/vi.php b/apps/files_versions/l10n/vi.php
index 6743395481fa6f80fff67ae3732230ea87e8be94..992c0751d0aa79ba506ded52cdb286b30e9e98da 100644
--- a/apps/files_versions/l10n/vi.php
+++ b/apps/files_versions/l10n/vi.php
@@ -1,6 +1,5 @@
 <?php $TRANSLATIONS = array(
 "Expire all versions" => "Hết hạn tất cả các phiên bản",
 "Versions" => "Phiên bản",
-"This will delete all existing backup versions of your files" => "Điều này sẽ xóa tất cả các phiên bản sao lưu hiện có ",
-"Enable Files Versioning" => "BẬT tập tin phiên bản"
+"This will delete all existing backup versions of your files" => "Điều này sẽ xóa tất cả các phiên bản sao lưu hiện có "
 );
diff --git a/apps/files_versions/l10n/zh_CN.GB2312.php b/apps/files_versions/l10n/zh_CN.GB2312.php
new file mode 100644
index 0000000000000000000000000000000000000000..43af097a21edba2bffdabef2b9bf403af6157f45
--- /dev/null
+++ b/apps/files_versions/l10n/zh_CN.GB2312.php
@@ -0,0 +1,7 @@
+<?php $TRANSLATIONS = array(
+"Expire all versions" => "作废所有版本",
+"Versions" => "版本",
+"This will delete all existing backup versions of your files" => "这将删除所有您现有文件的备份版本",
+"Files Versioning" => "文件版本",
+"Enable" => "启用"
+);
diff --git a/apps/files_versions/l10n/zh_CN.php b/apps/files_versions/l10n/zh_CN.php
index 56a474be89ac3e5353be298d514110f1ed87ac93..1a5caae7dfafea4012eed710b94553626ca01163 100644
--- a/apps/files_versions/l10n/zh_CN.php
+++ b/apps/files_versions/l10n/zh_CN.php
@@ -2,5 +2,6 @@
 "Expire all versions" => "过期所有版本",
 "Versions" => "版本",
 "This will delete all existing backup versions of your files" => "将会删除您的文件的所有备份版本",
-"Enable Files Versioning" => "开启文件版本"
+"Files Versioning" => "文件版本",
+"Enable" => "开启"
 );
diff --git a/apps/files_versions/lib/versions.php b/apps/files_versions/lib/versions.php
index dedd83fc25a79bdaae0081eaf156b1a84e7741ef..c517eb01ff5071c6d3ee1a20768bb20f28be6030 100644
--- a/apps/files_versions/lib/versions.php
+++ b/apps/files_versions/lib/versions.php
@@ -77,6 +77,7 @@ class Storage {
 			$versionsFolderName=\OCP\Config::getSystemValue('datadirectory') .  $this->view->getAbsolutePath('');
 
 			//check if source file already exist as version to avoid recursions.
+			// todo does this check work?
 			if ($users_view->file_exists($filename)) {
 				return false;
 			}
@@ -96,6 +97,11 @@ class Storage {
 				}
 			}
 
+			// we should have a source file to work with
+			if (!$files_view->file_exists($filename)) {
+				return false;
+			}
+
 			// check filesize
 			if($files_view->filesize($filename)>\OCP\Config::getSystemValue('files_versionsmaxfilesize', Storage::DEFAULTMAXFILESIZE)) {
 				return false;
@@ -118,7 +124,7 @@ class Storage {
 			if(!file_exists($versionsFolderName.'/'.$info['dirname'])) mkdir($versionsFolderName.'/'.$info['dirname'],0700,true);
 
 			// store a new version of a file
-			@$users_view->copy('files'.$filename, 'files_versions'.$filename.'.v'.time());
+			$users_view->copy('files'.$filename, 'files_versions'.$filename.'.v'.time());
 
 			// expire old revisions if necessary
 			Storage::expire($filename);
diff --git a/apps/files_versions/templates/settings.php b/apps/files_versions/templates/settings.php
index 8682fc0f4996b3fb88a43f6ecdd7c3d4f40548f3..88063cb075ba246f7e2e5d99de22fb23ba3e2c11 100644
--- a/apps/files_versions/templates/settings.php
+++ b/apps/files_versions/templates/settings.php
@@ -1,5 +1,6 @@
 <form id="versionssettings">
         <fieldset class="personalblock">
-	        <input type="checkbox" name="versions" id="versions" value="1" <?php if (OCP\Config::getSystemValue('versions', 'true')=='true') echo ' checked="checked"'; ?> /> <label for="versions"><?php echo $l->t('Enable Files Versioning'); ?></label> <br/>
+	        <legend><strong><?php echo $l->t('Files Versioning');?></strong></legend>
+	        <input type="checkbox" name="versions" id="versions" value="1" <?php if (OCP\Config::getSystemValue('versions', 'true')=='true') echo ' checked="checked"'; ?> /> <label for="versions"><?php echo $l->t('Enable'); ?></label> <br/>
         </fieldset>
 </form>
diff --git a/apps/user_ldap/l10n/de.php b/apps/user_ldap/l10n/de.php
index 2c178d0b4fd9471e969c0649ffce5d09739a5e73..df6767117924f83ec80ccf75b0b1d41f52bd8b7b 100644
--- a/apps/user_ldap/l10n/de.php
+++ b/apps/user_ldap/l10n/de.php
@@ -24,7 +24,7 @@
 "Do not use it for SSL connections, it will fail." => "Verwenden Sie es nicht für SSL-Verbindungen, es wird fehlschlagen.",
 "Case insensitve LDAP server (Windows)" => "LDAP-Server (Windows: Groß- und Kleinschreibung bleibt unbeachtet)",
 "Turn off SSL certificate validation." => "Schalte die SSL-Zertifikatsprüfung aus.",
-"If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Falls die Verbindung es erfordert, wird das SSL-Zertifikat des LDAP-Server importiert werden.",
+"If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Falls die Verbindung es erfordert, muss das SSL-Zertifikat des LDAP-Server importiert werden.",
 "Not recommended, use for testing only." => "Nicht empfohlen, nur zu Testzwecken.",
 "User Display Name Field" => "Feld für den Anzeigenamen des Benutzers",
 "The LDAP attribute to use to generate the user`s ownCloud name." => "Das LDAP-Attribut für die Generierung des Benutzernamens in ownCloud. ",
diff --git a/apps/user_ldap/l10n/zh_CN.GB2312.php b/apps/user_ldap/l10n/zh_CN.GB2312.php
new file mode 100644
index 0000000000000000000000000000000000000000..8b906aea5ceba097edbbcda3b1107f6107c0c9e2
--- /dev/null
+++ b/apps/user_ldap/l10n/zh_CN.GB2312.php
@@ -0,0 +1,37 @@
+<?php $TRANSLATIONS = array(
+"Host" => "主机",
+"You can omit the protocol, except you require SSL. Then start with ldaps://" => "您可以忽略协议,除非您需要 SSL。然后用 ldaps:// 开头",
+"Base DN" => "基本判别名",
+"You can specify Base DN for users and groups in the Advanced tab" => "您可以在高级选项卡中为用户和群组指定基本判别名",
+"User 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." => "客户机用户的判别名,将用于绑定,例如 uid=agent, dc=example, dc=com。匿名访问请留空判别名和密码。",
+"Password" => "密码",
+"For anonymous access, leave DN and Password empty." => "匿名访问请留空判别名和密码。",
+"User Login Filter" => "用户登录过滤器",
+"Defines the filter to apply, when login is attempted. %%uid replaces the username in the login action." => "定义尝试登录时要应用的过滤器。用 %%uid 替换登录操作中使用的用户名。",
+"use %%uid placeholder, e.g. \"uid=%%uid\"" => "使用 %%uid 占位符,例如 \"uid=%%uid\"",
+"User List Filter" => "用户列表过滤器",
+"Defines the filter to apply, when retrieving users." => "定义撷取用户时要应用的过滤器。",
+"without any placeholder, e.g. \"objectClass=person\"." => "不能使用占位符,例如 \"objectClass=person\"。",
+"Group Filter" => "群组过滤器",
+"Defines the filter to apply, when retrieving groups." => "定义撷取群组时要应用的过滤器",
+"without any placeholder, e.g. \"objectClass=posixGroup\"." => "不能使用占位符,例如 \"objectClass=posixGroup\"。",
+"Port" => "端口",
+"Base User Tree" => "基本用户树",
+"Base Group Tree" => "基本群组树",
+"Group-Member association" => "群组-成员组合",
+"Use TLS" => "使用 TLS",
+"Do not use it for SSL connections, it will fail." => "不要使用它进行 SSL 连接,会失败的。",
+"Case insensitve LDAP server (Windows)" => "大小写不敏感的 LDAP 服务器 (Windows)",
+"Turn off SSL certificate validation." => "关闭 SSL 证书校验。",
+"If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "如果只有使用此选项才能连接,请导入 LDAP 服务器的 SSL 证书到您的 ownCloud 服务器。",
+"Not recommended, use for testing only." => "不推荐,仅供测试",
+"User Display Name Field" => "用户显示名称字段",
+"The LDAP attribute to use to generate the user`s ownCloud name." => "用于生成用户的 ownCloud 名称的 LDAP 属性。",
+"Group Display Name Field" => "群组显示名称字段",
+"The LDAP attribute to use to generate the groups`s ownCloud name." => "用于生成群组的 ownCloud 名称的 LDAP 属性。",
+"in bytes" => "以字节计",
+"in seconds. A change empties the cache." => "以秒计。修改会清空缓存。",
+"Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "用户名请留空 (默认)。否则,请指定一个 LDAP/AD 属性。",
+"Help" => "帮助"
+);
diff --git a/apps/user_ldap/lib/access.php b/apps/user_ldap/lib/access.php
index 089548a69ba75fe9ae95926cb1c3be4c837b587f..53619ab4c1dc3d0db3f3d264bae16c1742145fbd 100644
--- a/apps/user_ldap/lib/access.php
+++ b/apps/user_ldap/lib/access.php
@@ -385,7 +385,7 @@ abstract class Access {
 		$sqlAdjustment = '';
 		$dbtype = \OCP\Config::getSystemValue('dbtype');
 		if($dbtype == 'mysql') {
-			$sqlAdjustment = 'FROM `dual`';
+			$sqlAdjustment = 'FROM DUAL';
 		}
 
 		$insert = \OCP\DB::prepare('
diff --git a/core/l10n/de.php b/core/l10n/de.php
index 611c208fe4d7552e1509b3c826acb5d2eb218ccf..bcc04496405b5c5f60e95bf0e438763f3fea269e 100644
--- a/core/l10n/de.php
+++ b/core/l10n/de.php
@@ -1,5 +1,5 @@
 <?php $TRANSLATIONS = array(
-"Application name not provided." => "Applikationsname nicht angegeben",
+"Application name not provided." => "Anwendungsname nicht angegeben",
 "No category to add?" => "Keine Kategorie hinzuzufügen?",
 "This category already exists: " => "Kategorie existiert bereits:",
 "Settings" => "Einstellungen",
diff --git a/core/l10n/el.php b/core/l10n/el.php
index 18a26f892c0ce69d78c54ed136244655e53c096a..227e981f2b2230e9f4a0243e5652359f9a632677 100644
--- a/core/l10n/el.php
+++ b/core/l10n/el.php
@@ -50,6 +50,7 @@
 "Database user" => "Χρήστης της βάσης δεδομένων",
 "Database password" => "Κωδικός πρόσβασης βάσης δεδομένων",
 "Database name" => "Όνομα βάσης δεδομένων",
+"Database tablespace" => "Κενά Πινάκων Βάσης Δεδομένων",
 "Database host" => "Διακομιστής βάσης δεδομένων",
 "Finish setup" => "Ολοκλήρωση εγκατάστασης",
 "web services under your control" => "Υπηρεσίες web υπό τον έλεγχό σας",
diff --git a/core/l10n/he.php b/core/l10n/he.php
index f0a18103a8fb57499650ca722c0e4cd911105839..74b6fe7aa43b7f23d3e301ceb466500019168f65 100644
--- a/core/l10n/he.php
+++ b/core/l10n/he.php
@@ -50,6 +50,7 @@
 "Database user" => "שם משתמש במסד הנתונים",
 "Database password" => "ססמת מסד הנתונים",
 "Database name" => "שם מסד הנתונים",
+"Database tablespace" => "מרחב הכתובות של מסד הנתונים",
 "Database host" => "שרת בסיס נתונים",
 "Finish setup" => "סיום התקנה",
 "web services under your control" => "שירותי רשת בשליטתך",
diff --git a/core/l10n/ro.php b/core/l10n/ro.php
index 484a47727dcdfb5ad283d68922cc6d30cd75ee21..9ec6a048fcf73ec262fc34a22b03b45c51800ada 100644
--- a/core/l10n/ro.php
+++ b/core/l10n/ro.php
@@ -3,6 +3,24 @@
 "No category to add?" => "Nici o categorie de adăugat?",
 "This category already exists: " => "Această categorie deja există:",
 "Settings" => "Configurări",
+"January" => "Ianuarie",
+"February" => "Februarie",
+"March" => "Martie",
+"April" => "Aprilie",
+"May" => "Mai",
+"June" => "Iunie",
+"July" => "Iulie",
+"August" => "August",
+"September" => "Septembrie",
+"October" => "Octombrie",
+"November" => "Noiembrie",
+"December" => "Decembrie",
+"Cancel" => "Anulare",
+"No" => "Nu",
+"Yes" => "Da",
+"Ok" => "Ok",
+"No categories selected for deletion." => "Nici o categorie selectată pentru ștergere.",
+"Error" => "Eroare",
 "ownCloud password reset" => "Resetarea parolei ownCloud ",
 "Use the following link to reset your password: {link}" => "Folosește următorul link pentru a reseta parola: {link}",
 "You will receive a link to reset your password via Email." => "Vei primi un mesaj prin care vei putea reseta parola via email",
diff --git a/core/l10n/ru_RU.php b/core/l10n/ru_RU.php
new file mode 100644
index 0000000000000000000000000000000000000000..190ecda9ebb19f73aee0fb267cf15cc90f81c88b
--- /dev/null
+++ b/core/l10n/ru_RU.php
@@ -0,0 +1,64 @@
+<?php $TRANSLATIONS = array(
+"Application name not provided." => "Имя приложения не предоставлено.",
+"No category to add?" => "Нет категории для добавления?",
+"This category already exists: " => "Эта категория уже существует:",
+"Settings" => "Настройки",
+"January" => "Январь",
+"February" => "Февраль",
+"March" => "Март",
+"April" => "Апрель",
+"May" => "Май",
+"June" => "Июнь",
+"July" => "Июль",
+"August" => "Август",
+"September" => "Сентябрь",
+"October" => "Октябрь",
+"November" => "Ноябрь",
+"December" => "Декабрь",
+"Cancel" => "Отмена",
+"No" => "Нет",
+"Yes" => "Да",
+"Ok" => "Да",
+"No categories selected for deletion." => "Нет категорий, выбранных для удаления.",
+"Error" => "Ошибка",
+"ownCloud password reset" => "Переназначение пароля",
+"Use the following link to reset your password: {link}" => "Воспользуйтесь следующей ссылкой для переназначения пароля: {link}",
+"You will receive a link to reset your password via Email." => "Вы получите ссылку для восстановления пароля по электронной почте.",
+"Requested" => "Запрашиваемое",
+"Login failed!" => "Войти не удалось!",
+"Username" => "Имя пользователя",
+"Request reset" => "Сброс запроса",
+"Your password was reset" => "Ваш пароль был переустановлен",
+"To login page" => "На страницу входа",
+"New password" => "Новый пароль",
+"Reset password" => "Переназначение пароля",
+"Personal" => "Персональный",
+"Users" => "Пользователи",
+"Apps" => "Приложения",
+"Admin" => "Администратор",
+"Help" => "Помощь",
+"Access forbidden" => "Доступ запрещен",
+"Cloud not found" => "Облако не найдено",
+"Edit categories" => "Редактирование категорий",
+"Add" => "Добавить",
+"Create an <strong>admin account</strong>" => "Создать <strong>admin account</strong>",
+"Password" => "Пароль",
+"Advanced" => "Расширенный",
+"Data folder" => "Папка данных",
+"Configure the database" => "Настроить базу данных",
+"will be used" => "будет использоваться",
+"Database user" => "Пользователь базы данных",
+"Database password" => "Пароль базы данных",
+"Database name" => "Имя базы данных",
+"Database tablespace" => "Табличная область базы данных",
+"Database host" => "Сервер базы данных",
+"Finish setup" => "Завершение настройки",
+"web services under your control" => "веб-сервисы под Вашим контролем",
+"Log out" => "Выйти",
+"Lost your password?" => "Забыли пароль?",
+"remember" => "запомнить",
+"Log in" => "Войти",
+"You are logged out." => "Вы вышли из системы.",
+"prev" => "предыдущий",
+"next" => "следующий"
+);
diff --git a/core/l10n/zh_CN.GB2312.php b/core/l10n/zh_CN.GB2312.php
index 58104df399726ae0ea4f00197dfcda898e70d7f6..e59a935f3941db4774979df4c62d02cf8876ae0d 100644
--- a/core/l10n/zh_CN.GB2312.php
+++ b/core/l10n/zh_CN.GB2312.php
@@ -50,6 +50,7 @@
 "Database user" => "数据库用户",
 "Database password" => "数据库密码",
 "Database name" => "数据库用户名",
+"Database tablespace" => "数据库表格空间",
 "Database host" => "数据库主机",
 "Finish setup" => "完成安装",
 "web services under your control" => "你控制下的网络服务",
diff --git a/db_structure.xml b/db_structure.xml
index 2256dff943cfb840d9a02878e51765870e25693b..74e2805308a967a5c6daa017200ef5c5e684b6ec 100644
--- a/db_structure.xml
+++ b/db_structure.xml
@@ -76,8 +76,7 @@
    <field>
 	   <name>parent</name>
 	   <type>integer</type>
-	   <default>
-	   </default>
+	   <default>0</default>
 	   <notnull>true</notnull>
 	   <length>8</length>
    </field>
@@ -85,8 +84,7 @@
    <field>
 	   <name>name</name>
 	   <type>text</type>
-	   <default>
-	   </default>
+	   <default></default>
 	   <notnull>true</notnull>
 	   <length>300</length>
    </field>
@@ -94,8 +92,7 @@
    <field>
 	   <name>user</name>
 	   <type>text</type>
-	   <default>
-	   </default>
+	   <default></default>
 	   <notnull>true</notnull>
 	   <length>64</length>
    </field>
@@ -103,7 +100,7 @@
    <field>
     <name>size</name>
     <type>integer</type>
-    <default></default>
+    <default>0</default>
     <notnull>true</notnull>
     <length>8</length>
    </field>
@@ -111,8 +108,7 @@
    <field>
 	   <name>ctime</name>
 	   <type>integer</type>
-	   <default>
-	   </default>
+	   <default>0</default>
 	   <notnull>true</notnull>
 	   <length>8</length>
    </field>
@@ -120,8 +116,7 @@
    <field>
 	   <name>mtime</name>
 	   <type>integer</type>
-	   <default>
-	   </default>
+	   <default>0</default>
 	   <notnull>true</notnull>
 	   <length>8</length>
    </field>
@@ -129,8 +124,7 @@
    <field>
 	   <name>mimetype</name>
 	   <type>text</type>
-	   <default>
-	   </default>
+	   <default></default>
 	   <notnull>true</notnull>
 	   <length>96</length>
    </field>
@@ -138,8 +132,7 @@
    <field>
 	   <name>mimepart</name>
 	   <type>text</type>
-	   <default>
-	   </default>
+	   <default></default>
 	   <notnull>true</notnull>
 	   <length>32</length>
    </field>
@@ -322,7 +315,6 @@
    <field>
     <name>timeout</name>
     <type>integer</type>
-    <default></default>
     <notnull>false</notnull>
     <unsigned>true</unsigned>
     <length>4</length>
@@ -331,7 +323,6 @@
    <field>
     <name>created</name>
     <type>integer</type>
-    <default></default>
     <notnull>false</notnull>
     <length>8</length>
    </field>
@@ -347,7 +338,6 @@
    <field>
     <name>scope</name>
     <type>integer</type>
-    <default></default>
     <notnull>false</notnull>
     <length>1</length>
    </field>
@@ -355,7 +345,6 @@
    <field>
     <name>depth</name>
     <type>integer</type>
-    <default></default>
     <notnull>false</notnull>
     <length>1</length>
    </field>
@@ -469,7 +458,7 @@
    <field>
     <name>share_type</name>
     <type>integer</type>
-    <default></default>
+    <default>0</default>
     <notnull>true</notnull>
     <length>1</length>
    </field>
@@ -493,7 +482,6 @@
    <field>
     <name>parent</name>
     <type>integer</type>
-    <default></default>
     <notnull>false</notnull>
     <length>4</length>
    </field>
@@ -525,7 +513,6 @@
    <field>
     <name>file_source</name>
     <type>integer</type>
-    <default></default>
     <notnull>false</notnull>
     <length>4</length>
    </field>
@@ -541,7 +528,7 @@
    <field>
     <name>permissions</name>
     <type>integer</type>
-    <default></default>
+    <default>0</default>
     <notnull>true</notnull>
     <length>1</length>
    </field>
@@ -549,7 +536,7 @@
    <field>
     <name>stime</name>
     <type>integer</type>
-    <default></default>
+    <default>0</default>
     <notnull>true</notnull>
     <length>8</length>
    </field>
diff --git a/l10n/af/files.po b/l10n/af/files.po
index 6cd6b21cefa6a190499cd923e348752386d218f7..a16e059df3cd8f385c500d935e9a4043b330f356 100644
--- a/l10n/af/files.po
+++ b/l10n/af/files.po
@@ -7,8 +7,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-08 02:01+0200\n"
-"PO-Revision-Date: 2012-09-08 00:02+0000\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
+"PO-Revision-Date: 2012-09-18 00:02+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Afrikaans (http://www.transifex.com/projects/p/owncloud/language/af/)\n"
 "MIME-Version: 1.0\n"
@@ -79,7 +79,7 @@ msgstr ""
 msgid "replaced"
 msgstr ""
 
-#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270
+#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269
 msgid "undo"
 msgstr ""
 
@@ -87,11 +87,11 @@ msgstr ""
 msgid "with"
 msgstr ""
 
-#: js/filelist.js:268
+#: js/filelist.js:267
 msgid "unshared"
 msgstr ""
 
-#: js/filelist.js:270
+#: js/filelist.js:269
 msgid "deleted"
 msgstr ""
 
@@ -124,27 +124,35 @@ msgstr ""
 msgid "Invalid name, '/' is not allowed."
 msgstr ""
 
-#: js/files.js:746 templates/index.php:56
+#: js/files.js:666
+msgid "files scanned"
+msgstr ""
+
+#: js/files.js:674
+msgid "error while scanning"
+msgstr ""
+
+#: js/files.js:748 templates/index.php:56
 msgid "Size"
 msgstr ""
 
-#: js/files.js:747 templates/index.php:58
+#: js/files.js:749 templates/index.php:58
 msgid "Modified"
 msgstr ""
 
-#: js/files.js:774
+#: js/files.js:776
 msgid "folder"
 msgstr ""
 
-#: js/files.js:776
+#: js/files.js:778
 msgid "folders"
 msgstr ""
 
-#: js/files.js:784
+#: js/files.js:786
 msgid "file"
 msgstr ""
 
-#: js/files.js:786
+#: js/files.js:788
 msgid "files"
 msgstr ""
 
diff --git a/l10n/af/files_versions.po b/l10n/af/files_versions.po
index 48efcf1e4309c638425f6d16d242b3b8a2570c26..feda4351a8365a19884ace31dd533007bf0d25a4 100644
--- a/l10n/af/files_versions.po
+++ b/l10n/af/files_versions.po
@@ -7,15 +7,15 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-01 13:35+0200\n"
-"PO-Revision-Date: 2012-09-01 11:35+0000\n"
+"POT-Creation-Date: 2012-09-17 02:02+0200\n"
+"PO-Revision-Date: 2012-09-17 00:04+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Afrikaans (http://www.transifex.com/projects/p/owncloud/language/af/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: af\n"
-"Plural-Forms: nplurals=2; plural=(n != 1)\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #: js/settings-personal.js:31 templates/settings-personal.php:10
 msgid "Expire all versions"
@@ -30,5 +30,9 @@ msgid "This will delete all existing backup versions of your files"
 msgstr ""
 
 #: templates/settings.php:3
-msgid "Enable Files Versioning"
+msgid "Files Versioning"
+msgstr ""
+
+#: templates/settings.php:4
+msgid "Enable"
 msgstr ""
diff --git a/l10n/af/settings.po b/l10n/af/settings.po
index b6b7b9e156584a58c32f3f37d07abaf7d4c6d7f3..2110490f32985364593f2752edf30fa7f299e7da 100644
--- a/l10n/af/settings.po
+++ b/l10n/af/settings.po
@@ -7,8 +7,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-05 02:02+0200\n"
-"PO-Revision-Date: 2012-09-05 00:02+0000\n"
+"POT-Creation-Date: 2012-09-17 02:03+0200\n"
+"PO-Revision-Date: 2012-09-17 00:03+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Afrikaans (http://www.transifex.com/projects/p/owncloud/language/af/)\n"
 "MIME-Version: 1.0\n"
@@ -34,6 +34,10 @@ msgstr ""
 msgid "Unable to add group"
 msgstr ""
 
+#: ajax/enableapp.php:13
+msgid "Could not enable app. "
+msgstr ""
+
 #: ajax/lostpassword.php:14
 msgid "Email saved"
 msgstr ""
@@ -109,63 +113,67 @@ msgstr ""
 msgid "Cron"
 msgstr ""
 
-#: templates/admin.php:33
-msgid "execute one task with each page loaded"
+#: templates/admin.php:37
+msgid "Execute one task with each page loaded"
 msgstr ""
 
-#: templates/admin.php:35
-msgid "cron.php is registered at a webcron service"
+#: templates/admin.php:43
+msgid ""
+"cron.php is registered at a webcron service. Call the cron.php page in the "
+"owncloud root once a minute over http."
 msgstr ""
 
-#: templates/admin.php:37
-msgid "use systems cron service"
+#: templates/admin.php:49
+msgid ""
+"Use systems cron service. Call the cron.php file in the owncloud folder via "
+"a system cronjob once a minute."
 msgstr ""
 
-#: templates/admin.php:41
-msgid "Share API"
+#: templates/admin.php:56
+msgid "Sharing"
 msgstr ""
 
-#: templates/admin.php:46
+#: templates/admin.php:61
 msgid "Enable Share API"
 msgstr ""
 
-#: templates/admin.php:47
+#: templates/admin.php:62
 msgid "Allow apps to use the Share API"
 msgstr ""
 
-#: templates/admin.php:51
+#: templates/admin.php:67
 msgid "Allow links"
 msgstr ""
 
-#: templates/admin.php:52
+#: templates/admin.php:68
 msgid "Allow users to share items to the public with links"
 msgstr ""
 
-#: templates/admin.php:56
+#: templates/admin.php:73
 msgid "Allow resharing"
 msgstr ""
 
-#: templates/admin.php:57
+#: templates/admin.php:74
 msgid "Allow users to share items shared with them again"
 msgstr ""
 
-#: templates/admin.php:60
+#: templates/admin.php:79
 msgid "Allow users to share with anyone"
 msgstr ""
 
-#: templates/admin.php:62
+#: templates/admin.php:81
 msgid "Allow users to only share with users in their groups"
 msgstr ""
 
-#: templates/admin.php:69
+#: templates/admin.php:88
 msgid "Log"
 msgstr ""
 
-#: templates/admin.php:97
+#: templates/admin.php:116
 msgid "More"
 msgstr ""
 
-#: templates/admin.php:105
+#: templates/admin.php:124
 msgid ""
 "Developed by the <a href=\"http://ownCloud.org/contact\" "
 "target=\"_blank\">ownCloud community</a>, the <a "
diff --git a/l10n/ar/files.po b/l10n/ar/files.po
index 7221caf070d40d7c38233fa5b0584c9d5f10bc3f..18222f6892f4c47cf58207021b74360b5ede72f4 100644
--- a/l10n/ar/files.po
+++ b/l10n/ar/files.po
@@ -8,8 +8,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-08 02:01+0200\n"
-"PO-Revision-Date: 2012-09-08 00:02+0000\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
+"PO-Revision-Date: 2012-09-18 00:01+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n"
 "MIME-Version: 1.0\n"
@@ -80,7 +80,7 @@ msgstr ""
 msgid "replaced"
 msgstr ""
 
-#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270
+#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269
 msgid "undo"
 msgstr ""
 
@@ -88,11 +88,11 @@ msgstr ""
 msgid "with"
 msgstr ""
 
-#: js/filelist.js:268
+#: js/filelist.js:267
 msgid "unshared"
 msgstr ""
 
-#: js/filelist.js:270
+#: js/filelist.js:269
 msgid "deleted"
 msgstr ""
 
@@ -125,27 +125,35 @@ msgstr ""
 msgid "Invalid name, '/' is not allowed."
 msgstr ""
 
-#: js/files.js:746 templates/index.php:56
+#: js/files.js:666
+msgid "files scanned"
+msgstr ""
+
+#: js/files.js:674
+msgid "error while scanning"
+msgstr ""
+
+#: js/files.js:748 templates/index.php:56
 msgid "Size"
 msgstr "حجم"
 
-#: js/files.js:747 templates/index.php:58
+#: js/files.js:749 templates/index.php:58
 msgid "Modified"
 msgstr "معدل"
 
-#: js/files.js:774
+#: js/files.js:776
 msgid "folder"
 msgstr ""
 
-#: js/files.js:776
+#: js/files.js:778
 msgid "folders"
 msgstr ""
 
-#: js/files.js:784
+#: js/files.js:786
 msgid "file"
 msgstr ""
 
-#: js/files.js:786
+#: js/files.js:788
 msgid "files"
 msgstr ""
 
diff --git a/l10n/ar/files_versions.po b/l10n/ar/files_versions.po
index ab6c4493898999ea0c8838016bb4d73c8f879862..d39b59268e37646ddb2ee207763921eb7d7a9b3e 100644
--- a/l10n/ar/files_versions.po
+++ b/l10n/ar/files_versions.po
@@ -7,15 +7,15 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-01 13:35+0200\n"
-"PO-Revision-Date: 2012-09-01 11:35+0000\n"
+"POT-Creation-Date: 2012-09-17 02:02+0200\n"
+"PO-Revision-Date: 2012-09-17 00:04+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: ar\n"
-"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5\n"
+"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
 
 #: js/settings-personal.js:31 templates/settings-personal.php:10
 msgid "Expire all versions"
@@ -30,5 +30,9 @@ msgid "This will delete all existing backup versions of your files"
 msgstr ""
 
 #: templates/settings.php:3
-msgid "Enable Files Versioning"
+msgid "Files Versioning"
+msgstr ""
+
+#: templates/settings.php:4
+msgid "Enable"
 msgstr ""
diff --git a/l10n/ar/settings.po b/l10n/ar/settings.po
index ece25b8fda82948d2626179e2820495a0bd6652d..47d059f279839b11076b9b711f11e915b8d47cd8 100644
--- a/l10n/ar/settings.po
+++ b/l10n/ar/settings.po
@@ -9,8 +9,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-05 02:02+0200\n"
-"PO-Revision-Date: 2012-09-05 00:02+0000\n"
+"POT-Creation-Date: 2012-09-17 02:03+0200\n"
+"PO-Revision-Date: 2012-09-17 00:03+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n"
 "MIME-Version: 1.0\n"
@@ -36,6 +36,10 @@ msgstr ""
 msgid "Unable to add group"
 msgstr ""
 
+#: ajax/enableapp.php:13
+msgid "Could not enable app. "
+msgstr ""
+
 #: ajax/lostpassword.php:14
 msgid "Email saved"
 msgstr ""
@@ -111,63 +115,67 @@ msgstr ""
 msgid "Cron"
 msgstr ""
 
-#: templates/admin.php:33
-msgid "execute one task with each page loaded"
+#: templates/admin.php:37
+msgid "Execute one task with each page loaded"
 msgstr ""
 
-#: templates/admin.php:35
-msgid "cron.php is registered at a webcron service"
+#: templates/admin.php:43
+msgid ""
+"cron.php is registered at a webcron service. Call the cron.php page in the "
+"owncloud root once a minute over http."
 msgstr ""
 
-#: templates/admin.php:37
-msgid "use systems cron service"
+#: templates/admin.php:49
+msgid ""
+"Use systems cron service. Call the cron.php file in the owncloud folder via "
+"a system cronjob once a minute."
 msgstr ""
 
-#: templates/admin.php:41
-msgid "Share API"
+#: templates/admin.php:56
+msgid "Sharing"
 msgstr ""
 
-#: templates/admin.php:46
+#: templates/admin.php:61
 msgid "Enable Share API"
 msgstr ""
 
-#: templates/admin.php:47
+#: templates/admin.php:62
 msgid "Allow apps to use the Share API"
 msgstr ""
 
-#: templates/admin.php:51
+#: templates/admin.php:67
 msgid "Allow links"
 msgstr ""
 
-#: templates/admin.php:52
+#: templates/admin.php:68
 msgid "Allow users to share items to the public with links"
 msgstr ""
 
-#: templates/admin.php:56
+#: templates/admin.php:73
 msgid "Allow resharing"
 msgstr ""
 
-#: templates/admin.php:57
+#: templates/admin.php:74
 msgid "Allow users to share items shared with them again"
 msgstr ""
 
-#: templates/admin.php:60
+#: templates/admin.php:79
 msgid "Allow users to share with anyone"
 msgstr ""
 
-#: templates/admin.php:62
+#: templates/admin.php:81
 msgid "Allow users to only share with users in their groups"
 msgstr ""
 
-#: templates/admin.php:69
+#: templates/admin.php:88
 msgid "Log"
 msgstr ""
 
-#: templates/admin.php:97
+#: templates/admin.php:116
 msgid "More"
 msgstr ""
 
-#: templates/admin.php:105
+#: templates/admin.php:124
 msgid ""
 "Developed by the <a href=\"http://ownCloud.org/contact\" "
 "target=\"_blank\">ownCloud community</a>, the <a "
diff --git a/l10n/ar_SA/files.po b/l10n/ar_SA/files.po
index 8651ddd072e4e8441a5b55fe5040c2230f8f3cdd..7e240be4fa60068e71d07d18a7f07240e07ef62e 100644
--- a/l10n/ar_SA/files.po
+++ b/l10n/ar_SA/files.po
@@ -7,8 +7,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-08 02:01+0200\n"
-"PO-Revision-Date: 2012-09-08 00:02+0000\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
+"PO-Revision-Date: 2012-09-18 00:02+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Arabic (Saudi Arabia) (http://www.transifex.com/projects/p/owncloud/language/ar_SA/)\n"
 "MIME-Version: 1.0\n"
@@ -79,7 +79,7 @@ msgstr ""
 msgid "replaced"
 msgstr ""
 
-#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270
+#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269
 msgid "undo"
 msgstr ""
 
@@ -87,11 +87,11 @@ msgstr ""
 msgid "with"
 msgstr ""
 
-#: js/filelist.js:268
+#: js/filelist.js:267
 msgid "unshared"
 msgstr ""
 
-#: js/filelist.js:270
+#: js/filelist.js:269
 msgid "deleted"
 msgstr ""
 
@@ -124,27 +124,35 @@ msgstr ""
 msgid "Invalid name, '/' is not allowed."
 msgstr ""
 
-#: js/files.js:746 templates/index.php:56
+#: js/files.js:666
+msgid "files scanned"
+msgstr ""
+
+#: js/files.js:674
+msgid "error while scanning"
+msgstr ""
+
+#: js/files.js:748 templates/index.php:56
 msgid "Size"
 msgstr ""
 
-#: js/files.js:747 templates/index.php:58
+#: js/files.js:749 templates/index.php:58
 msgid "Modified"
 msgstr ""
 
-#: js/files.js:774
+#: js/files.js:776
 msgid "folder"
 msgstr ""
 
-#: js/files.js:776
+#: js/files.js:778
 msgid "folders"
 msgstr ""
 
-#: js/files.js:784
+#: js/files.js:786
 msgid "file"
 msgstr ""
 
-#: js/files.js:786
+#: js/files.js:788
 msgid "files"
 msgstr ""
 
diff --git a/l10n/ar_SA/files_versions.po b/l10n/ar_SA/files_versions.po
index 9596994e8a8829683ec1c7d227e6cbf8f6db5d4f..c20b1ea16c8b75266227b5b76c5eca40a973eacd 100644
--- a/l10n/ar_SA/files_versions.po
+++ b/l10n/ar_SA/files_versions.po
@@ -7,15 +7,15 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-01 13:35+0200\n"
-"PO-Revision-Date: 2012-09-01 11:35+0000\n"
+"POT-Creation-Date: 2012-09-17 02:02+0200\n"
+"PO-Revision-Date: 2012-09-17 00:04+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Arabic (Saudi Arabia) (http://www.transifex.com/projects/p/owncloud/language/ar_SA/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: ar_SA\n"
-"Plural-Forms: nplurals=2; plural=(n != 1)\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #: js/settings-personal.js:31 templates/settings-personal.php:10
 msgid "Expire all versions"
@@ -30,5 +30,9 @@ msgid "This will delete all existing backup versions of your files"
 msgstr ""
 
 #: templates/settings.php:3
-msgid "Enable Files Versioning"
+msgid "Files Versioning"
+msgstr ""
+
+#: templates/settings.php:4
+msgid "Enable"
 msgstr ""
diff --git a/l10n/ar_SA/settings.po b/l10n/ar_SA/settings.po
index 22e19d517dbecdbecd553075267eca3d772ad08a..884941c4a523ba9ae554a8318d74591cdf3d4d64 100644
--- a/l10n/ar_SA/settings.po
+++ b/l10n/ar_SA/settings.po
@@ -7,8 +7,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-05 02:02+0200\n"
-"PO-Revision-Date: 2012-09-05 00:02+0000\n"
+"POT-Creation-Date: 2012-09-17 02:03+0200\n"
+"PO-Revision-Date: 2012-09-17 00:03+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Arabic (Saudi Arabia) (http://www.transifex.com/projects/p/owncloud/language/ar_SA/)\n"
 "MIME-Version: 1.0\n"
@@ -34,6 +34,10 @@ msgstr ""
 msgid "Unable to add group"
 msgstr ""
 
+#: ajax/enableapp.php:13
+msgid "Could not enable app. "
+msgstr ""
+
 #: ajax/lostpassword.php:14
 msgid "Email saved"
 msgstr ""
@@ -109,63 +113,67 @@ msgstr ""
 msgid "Cron"
 msgstr ""
 
-#: templates/admin.php:33
-msgid "execute one task with each page loaded"
+#: templates/admin.php:37
+msgid "Execute one task with each page loaded"
 msgstr ""
 
-#: templates/admin.php:35
-msgid "cron.php is registered at a webcron service"
+#: templates/admin.php:43
+msgid ""
+"cron.php is registered at a webcron service. Call the cron.php page in the "
+"owncloud root once a minute over http."
 msgstr ""
 
-#: templates/admin.php:37
-msgid "use systems cron service"
+#: templates/admin.php:49
+msgid ""
+"Use systems cron service. Call the cron.php file in the owncloud folder via "
+"a system cronjob once a minute."
 msgstr ""
 
-#: templates/admin.php:41
-msgid "Share API"
+#: templates/admin.php:56
+msgid "Sharing"
 msgstr ""
 
-#: templates/admin.php:46
+#: templates/admin.php:61
 msgid "Enable Share API"
 msgstr ""
 
-#: templates/admin.php:47
+#: templates/admin.php:62
 msgid "Allow apps to use the Share API"
 msgstr ""
 
-#: templates/admin.php:51
+#: templates/admin.php:67
 msgid "Allow links"
 msgstr ""
 
-#: templates/admin.php:52
+#: templates/admin.php:68
 msgid "Allow users to share items to the public with links"
 msgstr ""
 
-#: templates/admin.php:56
+#: templates/admin.php:73
 msgid "Allow resharing"
 msgstr ""
 
-#: templates/admin.php:57
+#: templates/admin.php:74
 msgid "Allow users to share items shared with them again"
 msgstr ""
 
-#: templates/admin.php:60
+#: templates/admin.php:79
 msgid "Allow users to share with anyone"
 msgstr ""
 
-#: templates/admin.php:62
+#: templates/admin.php:81
 msgid "Allow users to only share with users in their groups"
 msgstr ""
 
-#: templates/admin.php:69
+#: templates/admin.php:88
 msgid "Log"
 msgstr ""
 
-#: templates/admin.php:97
+#: templates/admin.php:116
 msgid "More"
 msgstr ""
 
-#: templates/admin.php:105
+#: templates/admin.php:124
 msgid ""
 "Developed by the <a href=\"http://ownCloud.org/contact\" "
 "target=\"_blank\">ownCloud community</a>, the <a "
diff --git a/l10n/bg_BG/files.po b/l10n/bg_BG/files.po
index f1667a2327f5d3d765a50eca91b169a6cf9285fb..f6587e5c3467bcc2e4d30a46da31870acebd5f1e 100644
--- a/l10n/bg_BG/files.po
+++ b/l10n/bg_BG/files.po
@@ -9,8 +9,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-08 02:01+0200\n"
-"PO-Revision-Date: 2012-09-08 00:02+0000\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
+"PO-Revision-Date: 2012-09-18 00:01+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n"
 "MIME-Version: 1.0\n"
@@ -81,7 +81,7 @@ msgstr ""
 msgid "replaced"
 msgstr ""
 
-#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270
+#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269
 msgid "undo"
 msgstr ""
 
@@ -89,11 +89,11 @@ msgstr ""
 msgid "with"
 msgstr ""
 
-#: js/filelist.js:268
+#: js/filelist.js:267
 msgid "unshared"
 msgstr ""
 
-#: js/filelist.js:270
+#: js/filelist.js:269
 msgid "deleted"
 msgstr ""
 
@@ -126,27 +126,35 @@ msgstr ""
 msgid "Invalid name, '/' is not allowed."
 msgstr "Неправилно име – \"/\" не е позволено."
 
-#: js/files.js:746 templates/index.php:56
+#: js/files.js:666
+msgid "files scanned"
+msgstr ""
+
+#: js/files.js:674
+msgid "error while scanning"
+msgstr ""
+
+#: js/files.js:748 templates/index.php:56
 msgid "Size"
 msgstr "Размер"
 
-#: js/files.js:747 templates/index.php:58
+#: js/files.js:749 templates/index.php:58
 msgid "Modified"
 msgstr "Променено"
 
-#: js/files.js:774
+#: js/files.js:776
 msgid "folder"
 msgstr "папка"
 
-#: js/files.js:776
+#: js/files.js:778
 msgid "folders"
 msgstr "папки"
 
-#: js/files.js:784
+#: js/files.js:786
 msgid "file"
 msgstr "файл"
 
-#: js/files.js:786
+#: js/files.js:788
 msgid "files"
 msgstr ""
 
diff --git a/l10n/bg_BG/files_versions.po b/l10n/bg_BG/files_versions.po
index bc5aaca01cc774d57adbdac0062c20bb886f0dd2..f28061ea72434cf6978fc92d9a4d8e5226573133 100644
--- a/l10n/bg_BG/files_versions.po
+++ b/l10n/bg_BG/files_versions.po
@@ -7,15 +7,15 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-01 13:35+0200\n"
-"PO-Revision-Date: 2012-09-01 11:35+0000\n"
+"POT-Creation-Date: 2012-09-17 02:02+0200\n"
+"PO-Revision-Date: 2012-09-17 00:04+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: bg_BG\n"
-"Plural-Forms: nplurals=2; plural=(n != 1)\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #: js/settings-personal.js:31 templates/settings-personal.php:10
 msgid "Expire all versions"
@@ -30,5 +30,9 @@ msgid "This will delete all existing backup versions of your files"
 msgstr ""
 
 #: templates/settings.php:3
-msgid "Enable Files Versioning"
+msgid "Files Versioning"
+msgstr ""
+
+#: templates/settings.php:4
+msgid "Enable"
 msgstr ""
diff --git a/l10n/bg_BG/settings.po b/l10n/bg_BG/settings.po
index fc6de0ffaac6a5fcc41ff9d0881751e4da4145f1..efd8be694d30bc7bf467d02b80714381b1e13424 100644
--- a/l10n/bg_BG/settings.po
+++ b/l10n/bg_BG/settings.po
@@ -10,8 +10,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-05 02:02+0200\n"
-"PO-Revision-Date: 2012-09-05 00:02+0000\n"
+"POT-Creation-Date: 2012-09-17 02:03+0200\n"
+"PO-Revision-Date: 2012-09-17 00:03+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n"
 "MIME-Version: 1.0\n"
@@ -37,6 +37,10 @@ msgstr ""
 msgid "Unable to add group"
 msgstr ""
 
+#: ajax/enableapp.php:13
+msgid "Could not enable app. "
+msgstr ""
+
 #: ajax/lostpassword.php:14
 msgid "Email saved"
 msgstr "Е-пощата е записана"
@@ -112,63 +116,67 @@ msgstr ""
 msgid "Cron"
 msgstr ""
 
-#: templates/admin.php:33
-msgid "execute one task with each page loaded"
+#: templates/admin.php:37
+msgid "Execute one task with each page loaded"
 msgstr ""
 
-#: templates/admin.php:35
-msgid "cron.php is registered at a webcron service"
+#: templates/admin.php:43
+msgid ""
+"cron.php is registered at a webcron service. Call the cron.php page in the "
+"owncloud root once a minute over http."
 msgstr ""
 
-#: templates/admin.php:37
-msgid "use systems cron service"
+#: templates/admin.php:49
+msgid ""
+"Use systems cron service. Call the cron.php file in the owncloud folder via "
+"a system cronjob once a minute."
 msgstr ""
 
-#: templates/admin.php:41
-msgid "Share API"
+#: templates/admin.php:56
+msgid "Sharing"
 msgstr ""
 
-#: templates/admin.php:46
+#: templates/admin.php:61
 msgid "Enable Share API"
 msgstr ""
 
-#: templates/admin.php:47
+#: templates/admin.php:62
 msgid "Allow apps to use the Share API"
 msgstr ""
 
-#: templates/admin.php:51
+#: templates/admin.php:67
 msgid "Allow links"
 msgstr ""
 
-#: templates/admin.php:52
+#: templates/admin.php:68
 msgid "Allow users to share items to the public with links"
 msgstr ""
 
-#: templates/admin.php:56
+#: templates/admin.php:73
 msgid "Allow resharing"
 msgstr ""
 
-#: templates/admin.php:57
+#: templates/admin.php:74
 msgid "Allow users to share items shared with them again"
 msgstr ""
 
-#: templates/admin.php:60
+#: templates/admin.php:79
 msgid "Allow users to share with anyone"
 msgstr ""
 
-#: templates/admin.php:62
+#: templates/admin.php:81
 msgid "Allow users to only share with users in their groups"
 msgstr ""
 
-#: templates/admin.php:69
+#: templates/admin.php:88
 msgid "Log"
 msgstr ""
 
-#: templates/admin.php:97
+#: templates/admin.php:116
 msgid "More"
 msgstr ""
 
-#: templates/admin.php:105
+#: templates/admin.php:124
 msgid ""
 "Developed by the <a href=\"http://ownCloud.org/contact\" "
 "target=\"_blank\">ownCloud community</a>, the <a "
diff --git a/l10n/ca/files.po b/l10n/ca/files.po
index 09799489c82340179f2dd187383ae492cec72eef..214a4c9125e0d917623a25375f8703ccd09b2ee8 100644
--- a/l10n/ca/files.po
+++ b/l10n/ca/files.po
@@ -10,9 +10,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-11 02:02+0200\n"
-"PO-Revision-Date: 2012-09-10 07:25+0000\n"
-"Last-Translator: rogerc <rcalvoi@yahoo.com>\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
+"PO-Revision-Date: 2012-09-18 00:01+0000\n"
+"Last-Translator: I Robot <thomas.mueller@tmit.eu>\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"
@@ -82,7 +82,7 @@ msgstr "cancel·la"
 msgid "replaced"
 msgstr "substituït"
 
-#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270
+#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269
 msgid "undo"
 msgstr "desfés"
 
@@ -90,11 +90,11 @@ msgstr "desfés"
 msgid "with"
 msgstr "per"
 
-#: js/filelist.js:268
+#: js/filelist.js:267
 msgid "unshared"
 msgstr "No compartits"
 
-#: js/filelist.js:270
+#: js/filelist.js:269
 msgid "deleted"
 msgstr "esborrat"
 
@@ -127,27 +127,35 @@ msgstr "Hi ha una pujada en curs. Si abandoneu la pàgina la pujada es cancel·l
 msgid "Invalid name, '/' is not allowed."
 msgstr "El nom no és vàlid, no es permet '/'."
 
-#: js/files.js:746 templates/index.php:56
+#: js/files.js:666
+msgid "files scanned"
+msgstr ""
+
+#: js/files.js:674
+msgid "error while scanning"
+msgstr ""
+
+#: js/files.js:748 templates/index.php:56
 msgid "Size"
 msgstr "Mida"
 
-#: js/files.js:747 templates/index.php:58
+#: js/files.js:749 templates/index.php:58
 msgid "Modified"
 msgstr "Modificat"
 
-#: js/files.js:774
+#: js/files.js:776
 msgid "folder"
 msgstr "carpeta"
 
-#: js/files.js:776
+#: js/files.js:778
 msgid "folders"
 msgstr "carpetes"
 
-#: js/files.js:784
+#: js/files.js:786
 msgid "file"
 msgstr "fitxer"
 
-#: js/files.js:786
+#: js/files.js:788
 msgid "files"
 msgstr "fitxers"
 
diff --git a/l10n/ca/files_versions.po b/l10n/ca/files_versions.po
index 12b6059c7b608679f00bd4f8319d9024738450b3..8ac9add87a64367c019d649559507923dcf75a90 100644
--- a/l10n/ca/files_versions.po
+++ b/l10n/ca/files_versions.po
@@ -8,9 +8,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-04 02:01+0200\n"
-"PO-Revision-Date: 2012-09-03 10:13+0000\n"
-"Last-Translator: rogerc <rcalvoi@yahoo.com>\n"
+"POT-Creation-Date: 2012-09-17 02:02+0200\n"
+"PO-Revision-Date: 2012-09-17 00:04+0000\n"
+"Last-Translator: I Robot <thomas.mueller@tmit.eu>\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"
@@ -31,5 +31,9 @@ msgid "This will delete all existing backup versions of your files"
 msgstr "Això eliminarà totes les versions de còpia de seguretat dels vostres fitxers"
 
 #: templates/settings.php:3
-msgid "Enable Files Versioning"
-msgstr "Habilita les versions de fitxers"
+msgid "Files Versioning"
+msgstr ""
+
+#: templates/settings.php:4
+msgid "Enable"
+msgstr ""
diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po
index 8065c1ebeec2c5b4e888e722182a795643481545..a71b4c0e4aa99d93daf527d88de9e99a005ba5bf 100644
--- a/l10n/ca/settings.po
+++ b/l10n/ca/settings.po
@@ -10,9 +10,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-07 02:04+0200\n"
-"PO-Revision-Date: 2012-09-06 06:39+0000\n"
-"Last-Translator: rogerc <rcalvoi@yahoo.com>\n"
+"POT-Creation-Date: 2012-09-17 02:03+0200\n"
+"PO-Revision-Date: 2012-09-17 00:03+0000\n"
+"Last-Translator: I Robot <thomas.mueller@tmit.eu>\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"
@@ -37,6 +37,10 @@ msgstr "El grup ja existeix"
 msgid "Unable to add group"
 msgstr "No es pot afegir el grup"
 
+#: ajax/enableapp.php:13
+msgid "Could not enable app. "
+msgstr "No s'ha pogut activar l'apliació"
+
 #: ajax/lostpassword.php:14
 msgid "Email saved"
 msgstr "S'ha desat el correu electrònic"
@@ -112,63 +116,67 @@ msgstr "La carpeta de dades i els vostres fitxersprobablement són accessibles d
 msgid "Cron"
 msgstr "Cron"
 
-#: templates/admin.php:33
-msgid "execute one task with each page loaded"
-msgstr "executa una tasca en carregar cada pàgina"
+#: templates/admin.php:37
+msgid "Execute one task with each page loaded"
+msgstr ""
 
-#: templates/admin.php:35
-msgid "cron.php is registered at a webcron service"
-msgstr "cron.php està registrat en un servei web cron"
+#: templates/admin.php:43
+msgid ""
+"cron.php is registered at a webcron service. Call the cron.php page in the "
+"owncloud root once a minute over http."
+msgstr "cron.php està registrat en un servei webcron. Feu una crida a la pàgina cron.php a l'arrel de ownCloud cada minut a través de http."
 
-#: templates/admin.php:37
-msgid "use systems cron service"
-msgstr "usa el servei cron del sistema"
+#: templates/admin.php:49
+msgid ""
+"Use systems cron service. Call the cron.php file in the owncloud folder via "
+"a system cronjob once a minute."
+msgstr ""
 
-#: templates/admin.php:41
-msgid "Share API"
-msgstr "API de compartir"
+#: templates/admin.php:56
+msgid "Sharing"
+msgstr ""
 
-#: templates/admin.php:46
+#: templates/admin.php:61
 msgid "Enable Share API"
 msgstr "Activa l'API de compartir"
 
-#: templates/admin.php:47
+#: templates/admin.php:62
 msgid "Allow apps to use the Share API"
 msgstr "Permet que les aplicacions usin l'API de compartir"
 
-#: templates/admin.php:51
+#: templates/admin.php:67
 msgid "Allow links"
 msgstr "Permet enllaços"
 
-#: templates/admin.php:52
+#: templates/admin.php:68
 msgid "Allow users to share items to the public with links"
 msgstr "Permet als usuaris compartir elements amb el públic amb enllaços"
 
-#: templates/admin.php:56
+#: templates/admin.php:73
 msgid "Allow resharing"
 msgstr "Permet compartir de nou"
 
-#: templates/admin.php:57
+#: templates/admin.php:74
 msgid "Allow users to share items shared with them again"
 msgstr "Permet als usuaris comparir elements ja compartits amb ells"
 
-#: templates/admin.php:60
+#: templates/admin.php:79
 msgid "Allow users to share with anyone"
 msgstr "Permet als usuaris compartir amb qualsevol"
 
-#: templates/admin.php:62
+#: templates/admin.php:81
 msgid "Allow users to only share with users in their groups"
 msgstr "Permet als usuaris compartir només amb usuaris del seu grup"
 
-#: templates/admin.php:69
+#: templates/admin.php:88
 msgid "Log"
 msgstr "Registre"
 
-#: templates/admin.php:97
+#: templates/admin.php:116
 msgid "More"
 msgstr "Més"
 
-#: templates/admin.php:105
+#: templates/admin.php:124
 msgid ""
 "Developed by the <a href=\"http://ownCloud.org/contact\" "
 "target=\"_blank\">ownCloud community</a>, the <a "
diff --git a/l10n/cs_CZ/files.po b/l10n/cs_CZ/files.po
index 8da1d5687eb235efd0fe475258b9da01ba8c63db..fe8d0af8aa18100781de57fd0e099ec6e4a04ad4 100644
--- a/l10n/cs_CZ/files.po
+++ b/l10n/cs_CZ/files.po
@@ -10,9 +10,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-10 02:02+0200\n"
-"PO-Revision-Date: 2012-09-09 10:25+0000\n"
-"Last-Translator: Tomáš Chvátal <tomas.chvatal@gmail.com>\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
+"PO-Revision-Date: 2012-09-18 00:01+0000\n"
+"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -82,7 +82,7 @@ msgstr "zrušit"
 msgid "replaced"
 msgstr "nahrazeno"
 
-#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270
+#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269
 msgid "undo"
 msgstr "zpět"
 
@@ -90,11 +90,11 @@ msgstr "zpět"
 msgid "with"
 msgstr "s"
 
-#: js/filelist.js:268
+#: js/filelist.js:267
 msgid "unshared"
 msgstr "sdílení zrušeno"
 
-#: js/filelist.js:270
+#: js/filelist.js:269
 msgid "deleted"
 msgstr "smazáno"
 
@@ -127,27 +127,35 @@ msgstr "Probíhá odesílání souboru. Opuštění stránky vyústí ve zrušen
 msgid "Invalid name, '/' is not allowed."
 msgstr "Neplatný název, znak '/' není povolen"
 
-#: js/files.js:746 templates/index.php:56
+#: js/files.js:666
+msgid "files scanned"
+msgstr ""
+
+#: js/files.js:674
+msgid "error while scanning"
+msgstr ""
+
+#: js/files.js:748 templates/index.php:56
 msgid "Size"
 msgstr "Velikost"
 
-#: js/files.js:747 templates/index.php:58
+#: js/files.js:749 templates/index.php:58
 msgid "Modified"
 msgstr "Změněno"
 
-#: js/files.js:774
+#: js/files.js:776
 msgid "folder"
 msgstr "složka"
 
-#: js/files.js:776
+#: js/files.js:778
 msgid "folders"
 msgstr "složky"
 
-#: js/files.js:784
+#: js/files.js:786
 msgid "file"
 msgstr "soubor"
 
-#: js/files.js:786
+#: js/files.js:788
 msgid "files"
 msgstr "soubory"
 
diff --git a/l10n/cs_CZ/files_versions.po b/l10n/cs_CZ/files_versions.po
index 0c6a43324f78e135dd970525f3b8047c9bc1766f..61b1531b7ef7e4e9cfeb18f4f7b19c0ada24f161 100644
--- a/l10n/cs_CZ/files_versions.po
+++ b/l10n/cs_CZ/files_versions.po
@@ -9,8 +9,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-06 02:02+0200\n"
-"PO-Revision-Date: 2012-09-05 13:37+0000\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
+"PO-Revision-Date: 2012-09-17 14:45+0000\n"
 "Last-Translator: Tomáš Chvátal <tomas.chvatal@gmail.com>\n"
 "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n"
 "MIME-Version: 1.0\n"
@@ -32,5 +32,9 @@ msgid "This will delete all existing backup versions of your files"
 msgstr "Odstraní všechny existující zálohované verze Vašich souborů"
 
 #: templates/settings.php:3
-msgid "Enable Files Versioning"
-msgstr "Povolit verzování souborů"
+msgid "Files Versioning"
+msgstr "Verzování souborů"
+
+#: templates/settings.php:4
+msgid "Enable"
+msgstr "Povolit"
diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po
index 3511d379d65d8c50fd0c5ab9bf63f591431b48e1..eb866f05823a52c56506131c25f5c63455546ba9 100644
--- a/l10n/cs_CZ/settings.po
+++ b/l10n/cs_CZ/settings.po
@@ -13,8 +13,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-06 02:02+0200\n"
-"PO-Revision-Date: 2012-09-05 13:36+0000\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
+"PO-Revision-Date: 2012-09-17 14:48+0000\n"
 "Last-Translator: Tomáš Chvátal <tomas.chvatal@gmail.com>\n"
 "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n"
 "MIME-Version: 1.0\n"
@@ -40,6 +40,10 @@ msgstr "Skupina již existuje"
 msgid "Unable to add group"
 msgstr "Nelze přidat skupinu"
 
+#: ajax/enableapp.php:14
+msgid "Could not enable app. "
+msgstr "Nelze povolit aplikaci."
+
 #: ajax/lostpassword.php:14
 msgid "Email saved"
 msgstr "E-mail uložen"
@@ -115,63 +119,67 @@ msgstr "Váš adresář dat a soubory jsou pravděpodobně přístupné z intern
 msgid "Cron"
 msgstr "Cron"
 
-#: templates/admin.php:33
-msgid "execute one task with each page loaded"
-msgstr "spustit jednu úlohu s každou načtenou stránkou"
+#: templates/admin.php:37
+msgid "Execute one task with each page loaded"
+msgstr "Spustit jednu úlohu s každou načtenou stránkou"
 
-#: templates/admin.php:35
-msgid "cron.php is registered at a webcron service"
-msgstr "cron.php je registrován jako služba webcron"
+#: templates/admin.php:43
+msgid ""
+"cron.php is registered at a webcron service. Call the cron.php page in the "
+"owncloud root once a minute over http."
+msgstr "cron.php je registrován u služby webcron. Zavolá stránku cron.php v kořenovém adresáři owncloud každou minutu skrze http."
 
-#: templates/admin.php:37
-msgid "use systems cron service"
-msgstr "použít systémovou službu cron"
+#: templates/admin.php:49
+msgid ""
+"Use systems cron service. Call the cron.php file in the owncloud folder via "
+"a system cronjob once a minute."
+msgstr "Použít systémovou službu cron. Zavolat soubor cron.php ze složky owncloud pomocí systémové úlohy cron každou minutu."
 
-#: templates/admin.php:41
-msgid "Share API"
-msgstr "API sdílení"
+#: templates/admin.php:56
+msgid "Sharing"
+msgstr "Sdílení"
 
-#: templates/admin.php:46
+#: templates/admin.php:61
 msgid "Enable Share API"
 msgstr "Povolit API sdílení"
 
-#: templates/admin.php:47
+#: templates/admin.php:62
 msgid "Allow apps to use the Share API"
 msgstr "Povolit aplikacím používat API sdílení"
 
-#: templates/admin.php:51
+#: templates/admin.php:67
 msgid "Allow links"
 msgstr "Povolit odkazy"
 
-#: templates/admin.php:52
+#: templates/admin.php:68
 msgid "Allow users to share items to the public with links"
 msgstr "Povolit uživatelům sdílet položky s veřejností pomocí odkazů"
 
-#: templates/admin.php:56
+#: templates/admin.php:73
 msgid "Allow resharing"
 msgstr "Povolit znovu-sdílení"
 
-#: templates/admin.php:57
+#: templates/admin.php:74
 msgid "Allow users to share items shared with them again"
 msgstr "Povolit uživatelům znovu sdílet položky, které jsou pro ně sdíleny"
 
-#: templates/admin.php:60
+#: templates/admin.php:79
 msgid "Allow users to share with anyone"
 msgstr "Povolit uživatelům sdílet s kýmkoliv"
 
-#: templates/admin.php:62
+#: templates/admin.php:81
 msgid "Allow users to only share with users in their groups"
 msgstr "Povolit uživatelům sdílet pouze s uživateli v jejich skupinách"
 
-#: templates/admin.php:69
+#: templates/admin.php:88
 msgid "Log"
 msgstr "Záznam"
 
-#: templates/admin.php:97
+#: templates/admin.php:116
 msgid "More"
 msgstr "Více"
 
-#: templates/admin.php:105
+#: templates/admin.php:124
 msgid ""
 "Developed by the <a href=\"http://ownCloud.org/contact\" "
 "target=\"_blank\">ownCloud community</a>, the <a "
diff --git a/l10n/da/files.po b/l10n/da/files.po
index c2e2ab70ee009ca3cc794086781f5df5377910ef..8059cf0e9e023f89c6c5ccce2e9ecf405cc30362 100644
--- a/l10n/da/files.po
+++ b/l10n/da/files.po
@@ -4,6 +4,7 @@
 # 
 # Translators:
 # Morten Juhl-Johansen Zölde-Fejér <morten@writtenandread.net>, 2011, 2012.
+#   <osos@openeyes.dk>, 2012.
 # Pascal d'Hermilly <pascal@dhermilly.dk>, 2011.
 #   <simon@rosmi.dk>, 2012.
 # Thomas Tanghus <>, 2012.
@@ -12,8 +13,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-08 02:01+0200\n"
-"PO-Revision-Date: 2012-09-08 00:02+0000\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
+"PO-Revision-Date: 2012-09-18 00:01+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -58,7 +59,7 @@ msgstr "Filer"
 
 #: js/fileactions.js:108 templates/index.php:62
 msgid "Unshare"
-msgstr ""
+msgstr "Fjern deling"
 
 #: js/fileactions.js:110 templates/index.php:64
 msgid "Delete"
@@ -74,7 +75,7 @@ msgstr "erstat"
 
 #: js/filelist.js:186
 msgid "suggest name"
-msgstr ""
+msgstr "foreslå navn"
 
 #: js/filelist.js:186 js/filelist.js:188
 msgid "cancel"
@@ -84,7 +85,7 @@ msgstr "fortryd"
 msgid "replaced"
 msgstr "erstattet"
 
-#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270
+#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269
 msgid "undo"
 msgstr "fortryd"
 
@@ -92,11 +93,11 @@ msgstr "fortryd"
 msgid "with"
 msgstr "med"
 
-#: js/filelist.js:268
+#: js/filelist.js:267
 msgid "unshared"
-msgstr ""
+msgstr "udelt"
 
-#: js/filelist.js:270
+#: js/filelist.js:269
 msgid "deleted"
 msgstr "Slettet"
 
@@ -129,27 +130,35 @@ msgstr "Fil upload kører. Hvis du forlader siden nu, vil uploadet blive annuler
 msgid "Invalid name, '/' is not allowed."
 msgstr "Ugyldigt navn, '/' er ikke tilladt."
 
-#: js/files.js:746 templates/index.php:56
+#: js/files.js:666
+msgid "files scanned"
+msgstr ""
+
+#: js/files.js:674
+msgid "error while scanning"
+msgstr ""
+
+#: js/files.js:748 templates/index.php:56
 msgid "Size"
 msgstr "Størrelse"
 
-#: js/files.js:747 templates/index.php:58
+#: js/files.js:749 templates/index.php:58
 msgid "Modified"
 msgstr "Ændret"
 
-#: js/files.js:774
+#: js/files.js:776
 msgid "folder"
 msgstr "mappe"
 
-#: js/files.js:776
+#: js/files.js:778
 msgid "folders"
 msgstr "mapper"
 
-#: js/files.js:784
+#: js/files.js:786
 msgid "file"
 msgstr "fil"
 
-#: js/files.js:786
+#: js/files.js:788
 msgid "files"
 msgstr "filer"
 
@@ -183,7 +192,7 @@ msgstr "Maksimal størrelse på ZIP filer"
 
 #: templates/admin.php:14
 msgid "Save"
-msgstr ""
+msgstr "Gem"
 
 #: templates/index.php:7
 msgid "New"
diff --git a/l10n/da/files_encryption.po b/l10n/da/files_encryption.po
index 94a4333bd18f4c3bf69b31e8aa10c91466258bba..bd1c9864514732a0237e25ec9899e78fd3003b0e 100644
--- a/l10n/da/files_encryption.po
+++ b/l10n/da/files_encryption.po
@@ -3,32 +3,33 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
+#   <osos@openeyes.dk>, 2012.
 msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-08-13 23:12+0200\n"
-"PO-Revision-Date: 2012-08-12 22:33+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"POT-Creation-Date: 2012-09-14 02:01+0200\n"
+"PO-Revision-Date: 2012-09-13 09:42+0000\n"
+"Last-Translator: osos <osos@openeyes.dk>\n"
 "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: da\n"
-"Plural-Forms: nplurals=2; plural=(n != 1)\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #: templates/settings.php:3
 msgid "Encryption"
-msgstr ""
+msgstr "Kryptering"
 
 #: templates/settings.php:4
 msgid "Exclude the following file types from encryption"
-msgstr ""
+msgstr "Ekskluder følgende filtyper fra kryptering"
 
 #: templates/settings.php:5
 msgid "None"
-msgstr ""
+msgstr "Ingen"
 
 #: templates/settings.php:10
 msgid "Enable Encryption"
-msgstr ""
+msgstr "Aktivér kryptering"
diff --git a/l10n/da/files_sharing.po b/l10n/da/files_sharing.po
index cae9bfa4d9b51cf5f874ed8021a7f5a6f3279cea..d67a3ef190dba5b2490f42f36ac5400049f79cf1 100644
--- a/l10n/da/files_sharing.po
+++ b/l10n/da/files_sharing.po
@@ -3,36 +3,37 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
+#   <osos@openeyes.dk>, 2012.
 msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-08-31 02:02+0200\n"
-"PO-Revision-Date: 2012-08-31 00:03+0000\n"
-"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
+"POT-Creation-Date: 2012-09-14 02:01+0200\n"
+"PO-Revision-Date: 2012-09-13 09:35+0000\n"
+"Last-Translator: osos <osos@openeyes.dk>\n"
 "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: da\n"
-"Plural-Forms: nplurals=2; plural=(n != 1)\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #: templates/authenticate.php:4
 msgid "Password"
-msgstr ""
+msgstr "Kodeord"
 
 #: templates/authenticate.php:6
 msgid "Submit"
-msgstr ""
+msgstr "Send"
 
 #: templates/public.php:9 templates/public.php:19
 msgid "Download"
-msgstr ""
+msgstr "Download"
 
 #: templates/public.php:18
 msgid "No preview available for"
-msgstr ""
+msgstr "Forhåndsvisning ikke tilgængelig for"
 
-#: templates/public.php:23
+#: templates/public.php:25
 msgid "web services under your control"
-msgstr ""
+msgstr "Webtjenester under din kontrol"
diff --git a/l10n/da/files_versions.po b/l10n/da/files_versions.po
index 667b5eef5511d9edf75aa70753704d227ee32dc9..b0e8abb06f65afdaf23f95518d4617360d0dc4d8 100644
--- a/l10n/da/files_versions.po
+++ b/l10n/da/files_versions.po
@@ -3,32 +3,37 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
+#   <osos@openeyes.dk>, 2012.
 msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-01 13:35+0200\n"
-"PO-Revision-Date: 2012-09-01 11:35+0000\n"
+"POT-Creation-Date: 2012-09-17 02:02+0200\n"
+"PO-Revision-Date: 2012-09-17 00:04+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: da\n"
-"Plural-Forms: nplurals=2; plural=(n != 1)\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #: js/settings-personal.js:31 templates/settings-personal.php:10
 msgid "Expire all versions"
-msgstr ""
+msgstr "Lad alle versioner udløbe"
 
 #: templates/settings-personal.php:4
 msgid "Versions"
-msgstr ""
+msgstr "Versioner"
 
 #: templates/settings-personal.php:7
 msgid "This will delete all existing backup versions of your files"
-msgstr ""
+msgstr "Dette vil slette alle eksisterende backupversioner af dine filer"
 
 #: templates/settings.php:3
-msgid "Enable Files Versioning"
+msgid "Files Versioning"
+msgstr ""
+
+#: templates/settings.php:4
+msgid "Enable"
 msgstr ""
diff --git a/l10n/da/lib.po b/l10n/da/lib.po
index 75cf36398bc8be6d33b68b60a4ccd3568d350285..e9b14de3e58e3e3f7cab721c11bbd57dcdafb593 100644
--- a/l10n/da/lib.po
+++ b/l10n/da/lib.po
@@ -4,41 +4,42 @@
 # 
 # Translators:
 # Morten Juhl-Johansen Zölde-Fejér <morten@writtenandread.net>, 2012.
+#   <osos@openeyes.dk>, 2012.
 msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-01 02:01+0200\n"
-"PO-Revision-Date: 2012-09-01 00:02+0000\n"
-"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
+"POT-Creation-Date: 2012-09-14 02:01+0200\n"
+"PO-Revision-Date: 2012-09-13 09:43+0000\n"
+"Last-Translator: osos <osos@openeyes.dk>\n"
 "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: da\n"
-"Plural-Forms: nplurals=2; plural=(n != 1)\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: app.php:288
+#: app.php:285
 msgid "Help"
 msgstr "Hjælp"
 
-#: app.php:295
+#: app.php:292
 msgid "Personal"
 msgstr "Personlig"
 
-#: app.php:300
+#: app.php:297
 msgid "Settings"
 msgstr "Indstillinger"
 
-#: app.php:305
+#: app.php:302
 msgid "Users"
 msgstr "Brugere"
 
-#: app.php:312
+#: app.php:309
 msgid "Apps"
 msgstr "Apps"
 
-#: app.php:314
+#: app.php:311
 msgid "Admin"
 msgstr "Admin"
 
@@ -70,56 +71,56 @@ msgstr "Adgangsfejl"
 msgid "Token expired. Please reload page."
 msgstr "Adgang er udløbet. Genindlæs siden."
 
-#: template.php:86
+#: template.php:87
 msgid "seconds ago"
 msgstr "sekunder siden"
 
-#: template.php:87
+#: template.php:88
 msgid "1 minute ago"
 msgstr "1 minut siden"
 
-#: template.php:88
+#: template.php:89
 #, php-format
 msgid "%d minutes ago"
 msgstr "%d minutter siden"
 
-#: template.php:91
+#: template.php:92
 msgid "today"
 msgstr "I dag"
 
-#: template.php:92
+#: template.php:93
 msgid "yesterday"
 msgstr "I går"
 
-#: template.php:93
+#: template.php:94
 #, php-format
 msgid "%d days ago"
 msgstr "%d dage siden"
 
-#: template.php:94
+#: template.php:95
 msgid "last month"
 msgstr "Sidste måned"
 
-#: template.php:95
+#: template.php:96
 msgid "months ago"
 msgstr "måneder siden"
 
-#: template.php:96
+#: template.php:97
 msgid "last year"
 msgstr "Sidste år"
 
-#: template.php:97
+#: template.php:98
 msgid "years ago"
 msgstr "år siden"
 
 #: updater.php:66
 #, php-format
 msgid "%s is available. Get <a href=\"%s\">more information</a>"
-msgstr ""
+msgstr "%s er tilgængelig. Få <a href=\"%s\">mere information</a>"
 
 #: updater.php:68
 msgid "up to date"
-msgstr ""
+msgstr "opdateret"
 
 #: updater.php:71
 msgid "updates check is disabled"
diff --git a/l10n/da/settings.po b/l10n/da/settings.po
index 022d5ee2338a0c7c5b4e794b4ebc725cefdfa664..d9cace921798c71caed215348b8de18a53ef1bfc 100644
--- a/l10n/da/settings.po
+++ b/l10n/da/settings.po
@@ -15,8 +15,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-05 02:02+0200\n"
-"PO-Revision-Date: 2012-09-05 00:02+0000\n"
+"POT-Creation-Date: 2012-09-17 02:03+0200\n"
+"PO-Revision-Date: 2012-09-17 00:03+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -42,6 +42,10 @@ msgstr ""
 msgid "Unable to add group"
 msgstr ""
 
+#: ajax/enableapp.php:13
+msgid "Could not enable app. "
+msgstr ""
+
 #: ajax/lostpassword.php:14
 msgid "Email saved"
 msgstr "Email adresse gemt"
@@ -117,63 +121,67 @@ msgstr ""
 msgid "Cron"
 msgstr "Cron"
 
-#: templates/admin.php:33
-msgid "execute one task with each page loaded"
-msgstr "udfør en opgave for hver indlæst side"
+#: templates/admin.php:37
+msgid "Execute one task with each page loaded"
+msgstr ""
 
-#: templates/admin.php:35
-msgid "cron.php is registered at a webcron service"
-msgstr "cron.php er tilmeldt en webcron tjeneste"
+#: templates/admin.php:43
+msgid ""
+"cron.php is registered at a webcron service. Call the cron.php page in the "
+"owncloud root once a minute over http."
+msgstr ""
 
-#: templates/admin.php:37
-msgid "use systems cron service"
-msgstr "brug systemets cron service"
+#: templates/admin.php:49
+msgid ""
+"Use systems cron service. Call the cron.php file in the owncloud folder via "
+"a system cronjob once a minute."
+msgstr ""
 
-#: templates/admin.php:41
-msgid "Share API"
-msgstr "Del API"
+#: templates/admin.php:56
+msgid "Sharing"
+msgstr ""
 
-#: templates/admin.php:46
+#: templates/admin.php:61
 msgid "Enable Share API"
 msgstr "Aktiver dele API"
 
-#: templates/admin.php:47
+#: templates/admin.php:62
 msgid "Allow apps to use the Share API"
 msgstr "Tillad apps a bruge dele APIen"
 
-#: templates/admin.php:51
+#: templates/admin.php:67
 msgid "Allow links"
 msgstr "Tillad links"
 
-#: templates/admin.php:52
+#: templates/admin.php:68
 msgid "Allow users to share items to the public with links"
 msgstr "Tillad brugere at dele elementer med offentligheden med links"
 
-#: templates/admin.php:56
+#: templates/admin.php:73
 msgid "Allow resharing"
 msgstr "Tillad gendeling"
 
-#: templates/admin.php:57
+#: templates/admin.php:74
 msgid "Allow users to share items shared with them again"
 msgstr ""
 
-#: templates/admin.php:60
+#: templates/admin.php:79
 msgid "Allow users to share with anyone"
 msgstr "Tillad brugere at dele med hvem som helst"
 
-#: templates/admin.php:62
+#: templates/admin.php:81
 msgid "Allow users to only share with users in their groups"
 msgstr "Tillad kun deling med brugere i brugerens egen gruppe"
 
-#: templates/admin.php:69
+#: templates/admin.php:88
 msgid "Log"
 msgstr "Log"
 
-#: templates/admin.php:97
+#: templates/admin.php:116
 msgid "More"
 msgstr "Mere"
 
-#: templates/admin.php:105
+#: templates/admin.php:124
 msgid ""
 "Developed by the <a href=\"http://ownCloud.org/contact\" "
 "target=\"_blank\">ownCloud community</a>, the <a "
diff --git a/l10n/de/core.po b/l10n/de/core.po
index d2dca57566e008aab82d2b5b2ea2e322b1a3159a..0f9a95fa25f6c66f1c7825a43dd60d226307f021 100644
--- a/l10n/de/core.po
+++ b/l10n/de/core.po
@@ -8,6 +8,7 @@
 #   <georg.stefan.germany@googlemail.com>, 2011.
 # I Robot <thomas.mueller@tmit.eu>, 2012.
 # Jan-Christoph Borchardt <JanCBorchardt@fsfe.org>, 2011.
+#   <mail@felixmoeller.de>, 2012.
 # Marcel Kühlhorn <susefan93@gmx.de>, 2012.
 #   <m.fresel@sysangels.com>, 2012.
 #   <niko@nik-o-mat.de>, 2012.
@@ -18,9 +19,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-06 02:02+0200\n"
-"PO-Revision-Date: 2012-09-06 00:03+0000\n"
-"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
+"PO-Revision-Date: 2012-09-17 06:28+0000\n"
+"Last-Translator: fmms <mail@felixmoeller.de>\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"
@@ -30,7 +31,7 @@ msgstr ""
 
 #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23
 msgid "Application name not provided."
-msgstr "Applikationsname nicht angegeben"
+msgstr "Anwendungsname nicht angegeben"
 
 #: ajax/vcategories/add.php:29
 msgid "No category to add?"
@@ -40,55 +41,55 @@ msgstr "Keine Kategorie hinzuzufügen?"
 msgid "This category already exists: "
 msgstr "Kategorie existiert bereits:"
 
-#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61
+#: js/js.js:214 templates/layout.user.php:54 templates/layout.user.php:55
 msgid "Settings"
 msgstr "Einstellungen"
 
-#: js/js.js:593
+#: js/js.js:642
 msgid "January"
 msgstr "Januar"
 
-#: js/js.js:593
+#: js/js.js:642
 msgid "February"
 msgstr "Februar"
 
-#: js/js.js:593
+#: js/js.js:642
 msgid "March"
 msgstr "März"
 
-#: js/js.js:593
+#: js/js.js:642
 msgid "April"
 msgstr "April"
 
-#: js/js.js:593
+#: js/js.js:642
 msgid "May"
 msgstr "Mai"
 
-#: js/js.js:593
+#: js/js.js:642
 msgid "June"
 msgstr "Juni"
 
-#: js/js.js:594
+#: js/js.js:643
 msgid "July"
 msgstr "Juli"
 
-#: js/js.js:594
+#: js/js.js:643
 msgid "August"
 msgstr "August"
 
-#: js/js.js:594
+#: js/js.js:643
 msgid "September"
 msgstr "September"
 
-#: js/js.js:594
+#: js/js.js:643
 msgid "October"
 msgstr "Oktober"
 
-#: js/js.js:594
+#: js/js.js:643
 msgid "November"
 msgstr "November"
 
-#: js/js.js:594
+#: js/js.js:643
 msgid "December"
 msgstr "Dezember"
 
@@ -246,11 +247,11 @@ msgstr "Datenbank-Host"
 msgid "Finish setup"
 msgstr "Installation abschließen"
 
-#: templates/layout.guest.php:42
+#: templates/layout.guest.php:36
 msgid "web services under your control"
 msgstr "Web-Services unter Ihrer Kontrolle"
 
-#: templates/layout.user.php:45
+#: templates/layout.user.php:39
 msgid "Log out"
 msgstr "Abmelden"
 
diff --git a/l10n/de/files.po b/l10n/de/files.po
index 406a0d25064041dd77cdeecdde28c9bd32049779..89c0f6c40f331208e47e69c6a23615c190e3aca8 100644
--- a/l10n/de/files.po
+++ b/l10n/de/files.po
@@ -7,6 +7,7 @@
 # I Robot <thomas.mueller@tmit.eu>, 2012.
 # Jan-Christoph Borchardt <JanCBorchardt@fsfe.org>, 2011.
 # Jan-Christoph Borchardt <jan@unhosted.org>, 2011.
+#   <mail@felixmoeller.de>, 2012.
 # Marcel Kühlhorn <susefan93@gmx.de>, 2012.
 # Michael Krell <m4dmike.mni@gmail.com>, 2012.
 #   <nelsonfritsch@gmail.com>, 2012.
@@ -19,8 +20,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-11 02:02+0200\n"
-"PO-Revision-Date: 2012-09-10 13:09+0000\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
+"PO-Revision-Date: 2012-09-18 00:01+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n"
 "MIME-Version: 1.0\n"
@@ -91,7 +92,7 @@ msgstr "abbrechen"
 msgid "replaced"
 msgstr "ersetzt"
 
-#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270
+#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269
 msgid "undo"
 msgstr "rückgängig machen"
 
@@ -99,11 +100,11 @@ msgstr "rückgängig machen"
 msgid "with"
 msgstr "mit"
 
-#: js/filelist.js:268
+#: js/filelist.js:267
 msgid "unshared"
 msgstr "Nicht mehr teilen"
 
-#: js/filelist.js:270
+#: js/filelist.js:269
 msgid "deleted"
 msgstr "gelöscht"
 
@@ -136,27 +137,35 @@ msgstr "Dateiupload läuft. Wenn Sie die Seite jetzt verlassen, wird der Upload
 msgid "Invalid name, '/' is not allowed."
 msgstr "Ungültiger Name: \"/\" ist nicht erlaubt."
 
-#: js/files.js:746 templates/index.php:56
+#: js/files.js:666
+msgid "files scanned"
+msgstr ""
+
+#: js/files.js:674
+msgid "error while scanning"
+msgstr ""
+
+#: js/files.js:748 templates/index.php:56
 msgid "Size"
 msgstr "Größe"
 
-#: js/files.js:747 templates/index.php:58
+#: js/files.js:749 templates/index.php:58
 msgid "Modified"
 msgstr "Bearbeitet"
 
-#: js/files.js:774
+#: js/files.js:776
 msgid "folder"
 msgstr "Ordner"
 
-#: js/files.js:776
+#: js/files.js:778
 msgid "folders"
 msgstr "Ordner"
 
-#: js/files.js:784
+#: js/files.js:786
 msgid "file"
 msgstr "Datei"
 
-#: js/files.js:786
+#: js/files.js:788
 msgid "files"
 msgstr "Dateien"
 
@@ -248,4 +257,4 @@ msgstr "Dateien werden gescannt, bitte warten."
 
 #: templates/index.php:85
 msgid "Current scanning"
-msgstr "Scannen"
+msgstr "Scanne"
diff --git a/l10n/de/files_versions.po b/l10n/de/files_versions.po
index f4e27ec5144301a09f73d99373f9dfe85a61459e..acda1c165a6c5ef43a9bd9db25c2d3e50de1afac 100644
--- a/l10n/de/files_versions.po
+++ b/l10n/de/files_versions.po
@@ -4,21 +4,22 @@
 # 
 # Translators:
 # I Robot <thomas.mueller@tmit.eu>, 2012.
+#   <mail@felixmoeller.de>, 2012.
 #   <niko@nik-o-mat.de>, 2012.
 #   <thomas.mueller@tmit.eu>, 2012.
 msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-03 02:04+0200\n"
-"PO-Revision-Date: 2012-09-02 06:01+0000\n"
-"Last-Translator: JamFX <niko@nik-o-mat.de>\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
+"PO-Revision-Date: 2012-09-17 06:25+0000\n"
+"Last-Translator: fmms <mail@felixmoeller.de>\n"
 "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: de\n"
-"Plural-Forms: nplurals=2; plural=(n != 1)\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #: js/settings-personal.js:31 templates/settings-personal.php:10
 msgid "Expire all versions"
@@ -33,5 +34,9 @@ msgid "This will delete all existing backup versions of your files"
 msgstr "Dies löscht alle vorhandenen Sicherungsversionen Ihrer Dateien."
 
 #: templates/settings.php:3
-msgid "Enable Files Versioning"
-msgstr "Datei-Versionierung aktivieren"
+msgid "Files Versioning"
+msgstr "Dateiversionierung"
+
+#: templates/settings.php:4
+msgid "Enable"
+msgstr "Aktivieren"
diff --git a/l10n/de/lib.po b/l10n/de/lib.po
index b43e2799fd99badeb554a2a2b59db47b6891deb9..e066695345df2cb180aa1c626154bb60067e6dfb 100644
--- a/l10n/de/lib.po
+++ b/l10n/de/lib.po
@@ -10,37 +10,37 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-01 13:35+0200\n"
-"PO-Revision-Date: 2012-09-01 08:07+0000\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
+"PO-Revision-Date: 2012-09-17 21:03+0000\n"
 "Last-Translator: traductor <transifex.3.mensaje@spamgourmet.com>\n"
 "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: de\n"
-"Plural-Forms: nplurals=2; plural=(n != 1)\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: app.php:288
+#: app.php:285
 msgid "Help"
 msgstr "Hilfe"
 
-#: app.php:295
+#: app.php:292
 msgid "Personal"
 msgstr "Persönlich"
 
-#: app.php:300
+#: app.php:297
 msgid "Settings"
 msgstr "Einstellungen"
 
-#: app.php:305
+#: app.php:302
 msgid "Users"
 msgstr "Benutzer"
 
-#: app.php:312
+#: app.php:309
 msgid "Apps"
 msgstr "Apps"
 
-#: app.php:314
+#: app.php:311
 msgid "Admin"
 msgstr "Administrator"
 
@@ -72,45 +72,45 @@ msgstr "Authentifizierungs-Fehler"
 msgid "Token expired. Please reload page."
 msgstr "Token abgelaufen. Bitte laden Sie die Seite neu."
 
-#: template.php:86
+#: template.php:87
 msgid "seconds ago"
 msgstr "Vor wenigen Sekunden"
 
-#: template.php:87
+#: template.php:88
 msgid "1 minute ago"
 msgstr "Vor einer Minute"
 
-#: template.php:88
+#: template.php:89
 #, php-format
 msgid "%d minutes ago"
-msgstr "Vor %d Minuten"
+msgstr "Vor %d Minute(n)"
 
-#: template.php:91
+#: template.php:92
 msgid "today"
 msgstr "Heute"
 
-#: template.php:92
+#: template.php:93
 msgid "yesterday"
 msgstr "Gestern"
 
-#: template.php:93
+#: template.php:94
 #, php-format
 msgid "%d days ago"
-msgstr "Vor %d Tagen"
+msgstr "Vor %d Tag(en)"
 
-#: template.php:94
+#: template.php:95
 msgid "last month"
 msgstr "Letzten Monat"
 
-#: template.php:95
+#: template.php:96
 msgid "months ago"
 msgstr "Vor Monaten"
 
-#: template.php:96
+#: template.php:97
 msgid "last year"
 msgstr "Letztes Jahr"
 
-#: template.php:97
+#: template.php:98
 msgid "years ago"
 msgstr "Vor Jahren"
 
diff --git a/l10n/de/settings.po b/l10n/de/settings.po
index e0d81804f6aa26adb49e921f40c51b2cd6216e80..88ca1c44b7a833a63bcacf929aa33d1271855a30 100644
--- a/l10n/de/settings.po
+++ b/l10n/de/settings.po
@@ -7,6 +7,8 @@
 #   <icewind1991@gmail.com>, 2012.
 # I Robot <thomas.mueller@tmit.eu>, 2012.
 # Jan-Christoph Borchardt <JanCBorchardt@fsfe.org>, 2011.
+# Jan T <jan-temesinko@web.de>, 2012.
+#   <mail@felixmoeller.de>, 2012.
 # Marcel Kühlhorn <susefan93@gmx.de>, 2012.
 #   <nelsonfritsch@gmail.com>, 2012.
 #   <niko@nik-o-mat.de>, 2012.
@@ -17,9 +19,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-06 02:02+0200\n"
-"PO-Revision-Date: 2012-09-05 07:52+0000\n"
-"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
+"PO-Revision-Date: 2012-09-17 06:24+0000\n"
+"Last-Translator: fmms <mail@felixmoeller.de>\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"
@@ -44,6 +46,10 @@ msgstr "Gruppe existiert bereits"
 msgid "Unable to add group"
 msgstr "Gruppe konnte nicht angelegt werden"
 
+#: ajax/enableapp.php:14
+msgid "Could not enable app. "
+msgstr "App konnte nicht aktiviert werden."
+
 #: ajax/lostpassword.php:14
 msgid "Email saved"
 msgstr "E-Mail gespeichert"
@@ -119,63 +125,67 @@ msgstr "Ihr Datenverzeichnis ist möglicher Weise aus dem Internet erreichbar. D
 msgid "Cron"
 msgstr "Cron"
 
-#: templates/admin.php:33
-msgid "execute one task with each page loaded"
+#: templates/admin.php:37
+msgid "Execute one task with each page loaded"
 msgstr "Führe eine Aufgabe pro geladener Seite aus."
 
-#: templates/admin.php:35
-msgid "cron.php is registered at a webcron service"
-msgstr "cron.php ist beim Webcron-Service registriert"
+#: templates/admin.php:43
+msgid ""
+"cron.php is registered at a webcron service. Call the cron.php page in the "
+"owncloud root once a minute over http."
+msgstr "cron.php ist bei einem Webcron-Dienst registriert. Rufen Sie die Seite cron.php im owncloud Root minütlich per HTTP auf."
 
-#: templates/admin.php:37
-msgid "use systems cron service"
-msgstr "Nutze System-Cron-Service"
+#: templates/admin.php:49
+msgid ""
+"Use systems cron service. Call the cron.php file in the owncloud folder via "
+"a system cronjob once a minute."
+msgstr "Benutzen Sie den System-Crondienst. Rufen Sie die cron.php im owncloud-Ordner über einen System-Cronjob minütlich auf."
 
-#: templates/admin.php:41
-msgid "Share API"
-msgstr "Teilungs-API"
+#: templates/admin.php:56
+msgid "Sharing"
+msgstr "Freigabe"
 
-#: templates/admin.php:46
+#: templates/admin.php:61
 msgid "Enable Share API"
 msgstr "Teilungs-API aktivieren"
 
-#: templates/admin.php:47
+#: templates/admin.php:62
 msgid "Allow apps to use the Share API"
 msgstr "Erlaubt Nutzern, die Teilungs-API zu nutzen"
 
-#: templates/admin.php:51
+#: templates/admin.php:67
 msgid "Allow links"
 msgstr "Links erlauben"
 
-#: templates/admin.php:52
+#: templates/admin.php:68
 msgid "Allow users to share items to the public with links"
 msgstr "Erlaube Nutzern, Dateien mithilfe von Links mit der Öffentlichkeit zu teilen"
 
-#: templates/admin.php:56
+#: templates/admin.php:73
 msgid "Allow resharing"
 msgstr "Erneutes Teilen erlauben"
 
-#: templates/admin.php:57
+#: templates/admin.php:74
 msgid "Allow users to share items shared with them again"
 msgstr "Erlaubt Nutzern, Dateien die mit ihnen geteilt wurden, erneut zu teilen"
 
-#: templates/admin.php:60
+#: templates/admin.php:79
 msgid "Allow users to share with anyone"
 msgstr "Erlaube Nutzern mit jedem zu Teilen"
 
-#: templates/admin.php:62
+#: templates/admin.php:81
 msgid "Allow users to only share with users in their groups"
 msgstr "Erlaube Nutzern nur das Teilen in ihrer Gruppe"
 
-#: templates/admin.php:69
+#: templates/admin.php:88
 msgid "Log"
 msgstr "Log"
 
-#: templates/admin.php:97
+#: templates/admin.php:116
 msgid "More"
 msgstr "Mehr"
 
-#: templates/admin.php:105
+#: templates/admin.php:124
 msgid ""
 "Developed by the <a href=\"http://ownCloud.org/contact\" "
 "target=\"_blank\">ownCloud community</a>, the <a "
@@ -235,7 +245,7 @@ msgstr "der verfügbaren"
 
 #: templates/personal.php:12
 msgid "Desktop and Mobile Syncing Clients"
-msgstr "Desktop- und mobile Synchronierungs-Clients"
+msgstr "Desktop- und mobile Clients für die Synchronisation"
 
 #: templates/personal.php:13
 msgid "Download"
diff --git a/l10n/de/user_ldap.po b/l10n/de/user_ldap.po
index c8b3a60d6a6858735e6c394cb5e56a2856267856..951faf6839ac8240866dcf30039feb812a767592 100644
--- a/l10n/de/user_ldap.po
+++ b/l10n/de/user_ldap.po
@@ -12,15 +12,15 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-01 02:01+0200\n"
-"PO-Revision-Date: 2012-08-31 15:48+0000\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
+"PO-Revision-Date: 2012-09-17 20:49+0000\n"
 "Last-Translator: traductor <transifex.3.mensaje@spamgourmet.com>\n"
 "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: de\n"
-"Plural-Forms: nplurals=2; plural=(n != 1)\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #: templates/settings.php:8
 msgid "Host"
@@ -134,7 +134,7 @@ msgstr "Schalte die SSL-Zertifikatsprüfung aus."
 msgid ""
 "If connection only works with this option, import the LDAP server's SSL "
 "certificate in your ownCloud server."
-msgstr "Falls die Verbindung es erfordert, wird das SSL-Zertifikat des LDAP-Server importiert werden."
+msgstr "Falls die Verbindung es erfordert, muss das SSL-Zertifikat des LDAP-Server importiert werden."
 
 #: templates/settings.php:23
 msgid "Not recommended, use for testing only."
diff --git a/l10n/el/core.po b/l10n/el/core.po
index 0a9a6e0388fa7378546f015fe0cd6cb38fdd94ec..babcd9f4e81f8e5c313ff49d0c6c088e1ce4f560 100644
--- a/l10n/el/core.po
+++ b/l10n/el/core.po
@@ -4,6 +4,7 @@
 # 
 # Translators:
 # Dimitris M. <monopatis@gmail.com>, 2012.
+# Efstathios Iosifidis <diamond_gr@freemail.gr>, 2012.
 # Marios Bekatoros <>, 2012.
 #   <petros.kyladitis@gmail.com>, 2011.
 # Petros Kyladitis <petros.kyladitis@gmail.com>, 2011, 2012.
@@ -11,9 +12,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-06 02:02+0200\n"
-"PO-Revision-Date: 2012-09-06 00:03+0000\n"
-"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
+"PO-Revision-Date: 2012-09-17 19:33+0000\n"
+"Last-Translator: Efstathios Iosifidis <diamond_gr@freemail.gr>\n"
 "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -33,55 +34,55 @@ msgstr "Δεν έχετε να προστέσθέσεται μια κα"
 msgid "This category already exists: "
 msgstr "Αυτή η κατηγορία υπάρχει ήδη"
 
-#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61
+#: js/js.js:214 templates/layout.user.php:54 templates/layout.user.php:55
 msgid "Settings"
 msgstr "Ρυθμίσεις"
 
-#: js/js.js:593
+#: js/js.js:642
 msgid "January"
 msgstr "Ιανουάριος"
 
-#: js/js.js:593
+#: js/js.js:642
 msgid "February"
 msgstr "Φεβρουάριος"
 
-#: js/js.js:593
+#: js/js.js:642
 msgid "March"
 msgstr "Μάρτιος"
 
-#: js/js.js:593
+#: js/js.js:642
 msgid "April"
 msgstr "Απρίλιος"
 
-#: js/js.js:593
+#: js/js.js:642
 msgid "May"
 msgstr "Μάϊος"
 
-#: js/js.js:593
+#: js/js.js:642
 msgid "June"
 msgstr "Ιούνιος"
 
-#: js/js.js:594
+#: js/js.js:643
 msgid "July"
 msgstr "Ιούλιος"
 
-#: js/js.js:594
+#: js/js.js:643
 msgid "August"
 msgstr "Αύγουστος"
 
-#: js/js.js:594
+#: js/js.js:643
 msgid "September"
 msgstr "Σεπτέμβριος"
 
-#: js/js.js:594
+#: js/js.js:643
 msgid "October"
 msgstr "Οκτώβριος"
 
-#: js/js.js:594
+#: js/js.js:643
 msgid "November"
 msgstr "Νοέμβριος"
 
-#: js/js.js:594
+#: js/js.js:643
 msgid "December"
 msgstr "Δεκέμβριος"
 
@@ -229,7 +230,7 @@ msgstr "Όνομα βάσης δεδομένων"
 
 #: templates/installation.php:109
 msgid "Database tablespace"
-msgstr ""
+msgstr "Κενά Πινάκων Βάσης Δεδομένων"
 
 #: templates/installation.php:115
 msgid "Database host"
@@ -239,11 +240,11 @@ msgstr "Διακομιστής βάσης δεδομένων"
 msgid "Finish setup"
 msgstr "Ολοκλήρωση εγκατάστασης"
 
-#: templates/layout.guest.php:42
+#: templates/layout.guest.php:36
 msgid "web services under your control"
 msgstr "Υπηρεσίες web υπό τον έλεγχό σας"
 
-#: templates/layout.user.php:45
+#: templates/layout.user.php:39
 msgid "Log out"
 msgstr "Αποσύνδεση"
 
diff --git a/l10n/el/files.po b/l10n/el/files.po
index 0daee77ea7d82b18ba576d50d949a1dba424bde6..0912afaf796eb0ab83dec5aec185754e3584a483 100644
--- a/l10n/el/files.po
+++ b/l10n/el/files.po
@@ -4,14 +4,15 @@
 # 
 # Translators:
 # Dimitris M. <monopatis@gmail.com>, 2012.
+# Efstathios Iosifidis <diamond_gr@freemail.gr>, 2012.
 # Marios Bekatoros <>, 2012.
 # Petros Kyladitis <petros.kyladitis@gmail.com>, 2011, 2012.
 msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-08 02:01+0200\n"
-"PO-Revision-Date: 2012-09-08 00:02+0000\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
+"PO-Revision-Date: 2012-09-18 00:01+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n"
 "MIME-Version: 1.0\n"
@@ -56,7 +57,7 @@ msgstr "Αρχεία"
 
 #: js/fileactions.js:108 templates/index.php:62
 msgid "Unshare"
-msgstr ""
+msgstr "Διακοπή κοινής χρήσης"
 
 #: js/fileactions.js:110 templates/index.php:64
 msgid "Delete"
@@ -72,7 +73,7 @@ msgstr "αντικατέστησε"
 
 #: js/filelist.js:186
 msgid "suggest name"
-msgstr ""
+msgstr "συνιστώμενο όνομα"
 
 #: js/filelist.js:186 js/filelist.js:188
 msgid "cancel"
@@ -82,7 +83,7 @@ msgstr "ακύρωση"
 msgid "replaced"
 msgstr "αντικαταστάθηκε"
 
-#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270
+#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269
 msgid "undo"
 msgstr "αναίρεση"
 
@@ -90,11 +91,11 @@ msgstr "αναίρεση"
 msgid "with"
 msgstr "με"
 
-#: js/filelist.js:268
+#: js/filelist.js:267
 msgid "unshared"
-msgstr ""
+msgstr "Διακόπηκε η κοινή χρήση"
 
-#: js/filelist.js:270
+#: js/filelist.js:269
 msgid "deleted"
 msgstr "διαγράφηκε"
 
@@ -121,33 +122,41 @@ msgstr "Η μεταφόρτωση ακυρώθηκε."
 #: js/files.js:423
 msgid ""
 "File upload is in progress. Leaving the page now will cancel the upload."
-msgstr ""
+msgstr "Η μεταφόρτωση του αρχείου βρίσκεται σε εξέλιξη.  Έξοδος από την σελίδα τώρα θα ακυρώσει την μεταφόρτωση."
 
 #: js/files.js:493
 msgid "Invalid name, '/' is not allowed."
 msgstr "Μη έγκυρο όνομα, το '/' δεν επιτρέπεται."
 
-#: js/files.js:746 templates/index.php:56
+#: js/files.js:666
+msgid "files scanned"
+msgstr ""
+
+#: js/files.js:674
+msgid "error while scanning"
+msgstr ""
+
+#: js/files.js:748 templates/index.php:56
 msgid "Size"
 msgstr "Μέγεθος"
 
-#: js/files.js:747 templates/index.php:58
+#: js/files.js:749 templates/index.php:58
 msgid "Modified"
 msgstr "Τροποποιήθηκε"
 
-#: js/files.js:774
+#: js/files.js:776
 msgid "folder"
 msgstr "φάκελος"
 
-#: js/files.js:776
+#: js/files.js:778
 msgid "folders"
 msgstr "φάκελοι"
 
-#: js/files.js:784
+#: js/files.js:786
 msgid "file"
 msgstr "αρχείο"
 
-#: js/files.js:786
+#: js/files.js:788
 msgid "files"
 msgstr "αρχεία"
 
@@ -181,7 +190,7 @@ msgstr "Μέγιστο μέγεθος για αρχεία ZIP"
 
 #: templates/admin.php:14
 msgid "Save"
-msgstr ""
+msgstr "Αποθήκευση"
 
 #: templates/index.php:7
 msgid "New"
diff --git a/l10n/el/files_external.po b/l10n/el/files_external.po
index d11daf7f325d46e24715ff6901e7b4beb34f2133..26acbf9da90ca7cdabab39bf9b17d9518678db9d 100644
--- a/l10n/el/files_external.po
+++ b/l10n/el/files_external.po
@@ -3,25 +3,26 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
+# Efstathios Iosifidis <iosifidis@opensuse.org>, 2012.
 # Nisok Kosin <nikos.efthimiou@gmail.com>, 2012.
 # Petros Kyladitis <petros.kyladitis@gmail.com>, 2012.
 msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-08-27 02:01+0200\n"
-"PO-Revision-Date: 2012-08-26 21:45+0000\n"
-"Last-Translator: Petros Kyladitis <petros.kyladitis@gmail.com>\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
+"PO-Revision-Date: 2012-09-17 20:07+0000\n"
+"Last-Translator: Efstathios Iosifidis <diamond_gr@freemail.gr>\n"
 "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: el\n"
-"Plural-Forms: nplurals=2; plural=(n != 1)\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #: templates/settings.php:3
 msgid "External Storage"
-msgstr "Εξωτερική αποθήκευση"
+msgstr "Εξωτερικό Αποθηκευτικό Μέσο"
 
 #: templates/settings.php:7 templates/settings.php:19
 msgid "Mount point"
@@ -29,7 +30,7 @@ msgstr "Σημείο προσάρτησης"
 
 #: templates/settings.php:8
 msgid "Backend"
-msgstr ""
+msgstr "Σύστημα υποστήριξης"
 
 #: templates/settings.php:9
 msgid "Configuration"
@@ -41,15 +42,15 @@ msgstr "Επιλογές"
 
 #: templates/settings.php:11
 msgid "Applicable"
-msgstr ""
+msgstr "Εφαρμόσιμο"
 
 #: templates/settings.php:23
 msgid "Add mount point"
-msgstr ""
+msgstr "Προσθήκη σημείου προσάρτησης"
 
 #: templates/settings.php:54 templates/settings.php:62
 msgid "None set"
-msgstr ""
+msgstr "Κανένα επιλεγμένο"
 
 #: templates/settings.php:63
 msgid "All Users"
@@ -69,16 +70,16 @@ msgstr "Διαγραφή"
 
 #: templates/settings.php:88
 msgid "SSL root certificates"
-msgstr ""
+msgstr "Πιστοποιητικά SSL root"
 
 #: templates/settings.php:102
 msgid "Import Root Certificate"
-msgstr ""
+msgstr "Εισαγωγή Πιστοποιητικού Root"
 
 #: templates/settings.php:108
 msgid "Enable User External Storage"
-msgstr ""
+msgstr "Ενεργοποίηση Εξωτερικού Αποθηκευτικού Χώρου Χρήστη"
 
 #: templates/settings.php:109
 msgid "Allow users to mount their own external storage"
-msgstr ""
+msgstr "Να επιτρέπεται στους χρήστες να προσαρτούν δικό τους εξωτερικό αποθηκευτικό χώρο"
diff --git a/l10n/el/files_sharing.po b/l10n/el/files_sharing.po
index fafebf49441f6bf441393cee4a28509fe4d8689d..01a1f99bd98ac62252e20522c94dce9281492d39 100644
--- a/l10n/el/files_sharing.po
+++ b/l10n/el/files_sharing.po
@@ -4,20 +4,21 @@
 # 
 # Translators:
 # Dimitris M. <monopatis@gmail.com>, 2012.
+# Efstathios Iosifidis <diamond_gr@freemail.gr>, 2012.
 # Nisok Kosin <nikos.efthimiou@gmail.com>, 2012.
 msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-08-31 02:02+0200\n"
-"PO-Revision-Date: 2012-08-31 00:04+0000\n"
-"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
+"PO-Revision-Date: 2012-09-17 19:13+0000\n"
+"Last-Translator: Efstathios Iosifidis <diamond_gr@freemail.gr>\n"
 "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: el\n"
-"Plural-Forms: nplurals=2; plural=(n != 1)\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #: templates/authenticate.php:4
 msgid "Password"
@@ -29,12 +30,12 @@ msgstr "Καταχώρηση"
 
 #: templates/public.php:9 templates/public.php:19
 msgid "Download"
-msgstr ""
+msgstr "Λήψη"
 
 #: templates/public.php:18
 msgid "No preview available for"
-msgstr ""
+msgstr "Δεν υπάρχει διαθέσιμη προεπισκόπηση για"
 
-#: templates/public.php:23
+#: templates/public.php:25
 msgid "web services under your control"
-msgstr ""
+msgstr "υπηρεσίες δικτύου υπό τον έλεγχό σας"
diff --git a/l10n/el/files_versions.po b/l10n/el/files_versions.po
index df855bfec1280abbeed2f3df1a14ddb467e06155..d6b4a6a230bd197eee4b4235bbe15de98c8808d3 100644
--- a/l10n/el/files_versions.po
+++ b/l10n/el/files_versions.po
@@ -3,20 +3,21 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
+# Efstathios Iosifidis <diamond_gr@freemail.gr>, 2012.
 # Nisok Kosin <nikos.efthimiou@gmail.com>, 2012.
 msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-01 13:35+0200\n"
-"PO-Revision-Date: 2012-09-01 11:35+0000\n"
-"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
+"PO-Revision-Date: 2012-09-17 20:10+0000\n"
+"Last-Translator: Efstathios Iosifidis <diamond_gr@freemail.gr>\n"
 "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: el\n"
-"Plural-Forms: nplurals=2; plural=(n != 1)\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #: js/settings-personal.js:31 templates/settings-personal.php:10
 msgid "Expire all versions"
@@ -24,12 +25,16 @@ msgstr "Λήξη όλων των εκδόσεων"
 
 #: templates/settings-personal.php:4
 msgid "Versions"
-msgstr ""
+msgstr "Εκδόσεις"
 
 #: templates/settings-personal.php:7
 msgid "This will delete all existing backup versions of your files"
-msgstr ""
+msgstr "Αυτό θα διαγράψει όλες τις υπάρχουσες εκδόσεις των αντιγράφων ασφαλείας των αρχείων σας"
 
 #: templates/settings.php:3
-msgid "Enable Files Versioning"
-msgstr "Ενεργοποίηση παρακολούθησης εκδόσεων αρχείων"
+msgid "Files Versioning"
+msgstr "Εκδόσεις Αρχείων"
+
+#: templates/settings.php:4
+msgid "Enable"
+msgstr "Ενεργοποίηση"
diff --git a/l10n/el/settings.po b/l10n/el/settings.po
index bbec7abd9bff1cde3583f05bef1464e1e619a9d4..ba761612ae3fd53f1e6b81dcd30c0945f944ba97 100644
--- a/l10n/el/settings.po
+++ b/l10n/el/settings.po
@@ -4,19 +4,20 @@
 # 
 # Translators:
 # Dimitris M. <monopatis@gmail.com>, 2012.
+# Efstathios Iosifidis <diamond_gr@freemail.gr>, 2012.
 # Efstathios Iosifidis <iosifidis@opensuse.org>, 2012.
 #   <icewind1991@gmail.com>, 2012.
 # Marios Bekatoros <>, 2012.
 # Nisok Kosin <nikos.efthimiou@gmail.com>, 2012.
 #   <petros.kyladitis@gmail.com>, 2011.
-# Petros Kyladitis <petros.kyladitis@gmail.com>, 2011, 2012.
+# Petros Kyladitis <petros.kyladitis@gmail.com>, 2011-2012.
 msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-05 02:02+0200\n"
-"PO-Revision-Date: 2012-09-05 00:02+0000\n"
-"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
+"PO-Revision-Date: 2012-09-17 19:31+0000\n"
+"Last-Translator: Efstathios Iosifidis <diamond_gr@freemail.gr>\n"
 "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -35,11 +36,15 @@ msgstr "Σφάλμα πιστοποίησης"
 
 #: ajax/creategroup.php:19
 msgid "Group already exists"
-msgstr ""
+msgstr "Η ομάδα υπάρχει ήδη"
 
 #: ajax/creategroup.php:28
 msgid "Unable to add group"
-msgstr ""
+msgstr "Αδυναμία προσθήκης ομάδας"
+
+#: ajax/enableapp.php:14
+msgid "Could not enable app. "
+msgstr "Αδυναμία ενεργοποίησης εφαρμογής "
 
 #: ajax/lostpassword.php:14
 msgid "Email saved"
@@ -59,11 +64,11 @@ msgstr "Μη έγκυρο αίτημα"
 
 #: ajax/removegroup.php:16
 msgid "Unable to delete group"
-msgstr ""
+msgstr "Αδυναμία διαγραφής ομάδας"
 
 #: ajax/removeuser.php:22
 msgid "Unable to delete user"
-msgstr ""
+msgstr "Αδυναμία διαγραφής χρήστη"
 
 #: ajax/setlanguage.php:18
 msgid "Language changed"
@@ -72,12 +77,12 @@ msgstr "Η γλώσσα άλλαξε"
 #: ajax/togglegroups.php:25
 #, php-format
 msgid "Unable to add user to group %s"
-msgstr ""
+msgstr "Αδυναμία προσθήκη χρήστη στην ομάδα %s"
 
 #: ajax/togglegroups.php:31
 #, php-format
 msgid "Unable to remove user from group %s"
-msgstr ""
+msgstr "Αδυναμία αφαίρεσης χρήστη από την ομάδα %s"
 
 #: js/apps.js:18
 msgid "Error"
@@ -110,69 +115,73 @@ msgid ""
 "strongly suggest that you configure your webserver in a way that the data "
 "directory is no longer accessible or you move the data directory outside the"
 " webserver document root."
-msgstr ""
+msgstr "Ο κατάλογος δεδομένων και τα αρχεία σας είναι πιθανότατα προσβάσιμα από το διαδίκτυο. Το αρχείο .htaccess που παρέχει το owncloud, δεν λειτουργεί. Σας συνιστούμε να ρυθμίσετε τον εξυπηρετητή σας έτσι ώστε ο κατάλογος δεδομένων να μην είναι πλεον προσβάσιμος ή μετακινήστε τον κατάλογο δεδομένων εκτός του καταλόγου document του εξυπηρετητή σας."
 
 #: templates/admin.php:31
 msgid "Cron"
 msgstr "Cron"
 
-#: templates/admin.php:33
-msgid "execute one task with each page loaded"
-msgstr "Εκτέλεση μίας εργασίας με κάθε σελίδα που φορτώνεται"
+#: templates/admin.php:37
+msgid "Execute one task with each page loaded"
+msgstr "Εκτέλεση μιας εργασίας με κάθε σελίδα που φορτώνεται"
 
-#: templates/admin.php:35
-msgid "cron.php is registered at a webcron service"
-msgstr "Το cron.php έχει καταχωρηθεί σε μια webcron υπηρεσία"
+#: templates/admin.php:43
+msgid ""
+"cron.php is registered at a webcron service. Call the cron.php page in the "
+"owncloud root once a minute over http."
+msgstr "Το cron.php είναι καταχωρημένο στην υπηρεσία webcron. Να καλείται μια φορά το λεπτό η σελίδα cron.php από τον root του owncloud μέσω http"
 
-#: templates/admin.php:37
-msgid "use systems cron service"
-msgstr "Χρήση της υπηρεσίας cron του συστήματος"
+#: templates/admin.php:49
+msgid ""
+"Use systems cron service. Call the cron.php file in the owncloud folder via "
+"a system cronjob once a minute."
+msgstr "Χρήση υπηρεσίας συστήματος cron. Να καλείται μια φορά το λεπτό, το αρχείο cron.php από τον φάκελο του owncloud μέσω του cronjob του συστήματος."
 
-#: templates/admin.php:41
-msgid "Share API"
-msgstr ""
+#: templates/admin.php:56
+msgid "Sharing"
+msgstr "Διαμοιρασμός"
 
-#: templates/admin.php:46
+#: templates/admin.php:61
 msgid "Enable Share API"
-msgstr ""
+msgstr "Ενεργοποίηση API Διαμοιρασμού"
 
-#: templates/admin.php:47
+#: templates/admin.php:62
 msgid "Allow apps to use the Share API"
-msgstr ""
+msgstr "Να επιτρέπεται στις εφαρμογές να χρησιμοποιούν το API Διαμοιρασμού"
 
-#: templates/admin.php:51
+#: templates/admin.php:67
 msgid "Allow links"
-msgstr ""
+msgstr "Να επιτρέπονται σύνδεσμοι"
 
-#: templates/admin.php:52
+#: templates/admin.php:68
 msgid "Allow users to share items to the public with links"
-msgstr ""
+msgstr "Να επιτρέπεται στους χρήστες να διαμοιράζονται δημόσια με συνδέσμους"
 
-#: templates/admin.php:56
+#: templates/admin.php:73
 msgid "Allow resharing"
-msgstr ""
+msgstr "Να επιτρέπεται ο επαναδιαμοιρασμός"
 
-#: templates/admin.php:57
+#: templates/admin.php:74
 msgid "Allow users to share items shared with them again"
-msgstr ""
+msgstr "Να επιτρέπεται στους χρήστες να διαμοιράζουν ότι τους έχει διαμοιραστεί"
 
-#: templates/admin.php:60
+#: templates/admin.php:79
 msgid "Allow users to share with anyone"
-msgstr ""
+msgstr "Να επιτρέπεται ο διαμοιρασμός με οποιονδήποτε"
 
-#: templates/admin.php:62
+#: templates/admin.php:81
 msgid "Allow users to only share with users in their groups"
-msgstr ""
+msgstr "Να επιτρέπεται ο διαμοιρασμός μόνο με χρήστες της ίδιας ομάδας"
 
-#: templates/admin.php:69
+#: templates/admin.php:88
 msgid "Log"
 msgstr "Αρχείο καταγραφής"
 
-#: templates/admin.php:97
+#: templates/admin.php:116
 msgid "More"
 msgstr "Περισσότερο"
 
-#: templates/admin.php:105
+#: templates/admin.php:124
 msgid ""
 "Developed by the <a href=\"http://ownCloud.org/contact\" "
 "target=\"_blank\">ownCloud community</a>, the <a "
@@ -180,7 +189,7 @@ msgid ""
 "licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" "
 "target=\"_blank\"><abbr title=\"Affero General Public "
 "License\">AGPL</abbr></a>."
-msgstr ""
+msgstr "Αναπτύχθηκε από την <a href=\"http://ownCloud.org/contact\" target=\"_blank\">κοινότητα ownCloud</a>, ο <a href=\"https://github.com/owncloud\" target=\"_blank\">πηγαίος κώδικας</a> είναι υπό άδεια χρήσης <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>."
 
 #: templates/apps.php:10
 msgid "Add your App"
@@ -196,7 +205,7 @@ msgstr "Η σελίδα εφαρμογών στο apps.owncloud.com"
 
 #: templates/apps.php:30
 msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>"
-msgstr ""
+msgstr "<span class=\"licence\"></span>-άδεια από <span class=\"author\"></span>"
 
 #: templates/help.php:9
 msgid "Documentation"
@@ -312,7 +321,7 @@ msgstr "Άλλα"
 
 #: templates/users.php:80 templates/users.php:112
 msgid "Group Admin"
-msgstr "Διαχειρηστής ομάδας"
+msgstr "Ομάδα Διαχειριστών"
 
 #: templates/users.php:82
 msgid "Quota"
diff --git a/l10n/eo/files.po b/l10n/eo/files.po
index d62532d142c55fe4c649ace5a2aa18db9cb78ebf..9aa4aa30afbed9e03c86b32aab3a60460a7fb986 100644
--- a/l10n/eo/files.po
+++ b/l10n/eo/files.po
@@ -9,9 +9,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-09 02:01+0200\n"
-"PO-Revision-Date: 2012-09-08 21:57+0000\n"
-"Last-Translator: Mariano <mstreet@kde.org.ar>\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
+"PO-Revision-Date: 2012-09-18 00:01+0000\n"
+"Last-Translator: I Robot <thomas.mueller@tmit.eu>\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"
@@ -81,7 +81,7 @@ msgstr "nuligi"
 msgid "replaced"
 msgstr "anstataŭigita"
 
-#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270
+#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269
 msgid "undo"
 msgstr "malfari"
 
@@ -89,11 +89,11 @@ msgstr "malfari"
 msgid "with"
 msgstr "kun"
 
-#: js/filelist.js:268
+#: js/filelist.js:267
 msgid "unshared"
 msgstr "malkunhavigita"
 
-#: js/filelist.js:270
+#: js/filelist.js:269
 msgid "deleted"
 msgstr "forigita"
 
@@ -126,27 +126,35 @@ msgstr "Dosieralŝuto plenumiĝas. Lasi la paĝon nun nuligus la alŝuton."
 msgid "Invalid name, '/' is not allowed."
 msgstr "Nevalida nomo, “/” ne estas permesata."
 
-#: js/files.js:746 templates/index.php:56
+#: js/files.js:666
+msgid "files scanned"
+msgstr ""
+
+#: js/files.js:674
+msgid "error while scanning"
+msgstr ""
+
+#: js/files.js:748 templates/index.php:56
 msgid "Size"
 msgstr "Grando"
 
-#: js/files.js:747 templates/index.php:58
+#: js/files.js:749 templates/index.php:58
 msgid "Modified"
 msgstr "Modifita"
 
-#: js/files.js:774
+#: js/files.js:776
 msgid "folder"
 msgstr "dosierujo"
 
-#: js/files.js:776
+#: js/files.js:778
 msgid "folders"
 msgstr "dosierujoj"
 
-#: js/files.js:784
+#: js/files.js:786
 msgid "file"
 msgstr "dosiero"
 
-#: js/files.js:786
+#: js/files.js:788
 msgid "files"
 msgstr "dosieroj"
 
diff --git a/l10n/eo/files_versions.po b/l10n/eo/files_versions.po
index 75c78ded12a2a4fc7b76bca3c88493b6db6b49dd..dc9b94a1b3a6bd058eb8320a91f072b46a683c13 100644
--- a/l10n/eo/files_versions.po
+++ b/l10n/eo/files_versions.po
@@ -8,9 +8,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-09 02:01+0200\n"
-"PO-Revision-Date: 2012-09-08 21:36+0000\n"
-"Last-Translator: Mariano <mstreet@kde.org.ar>\n"
+"POT-Creation-Date: 2012-09-17 02:02+0200\n"
+"PO-Revision-Date: 2012-09-17 00:04+0000\n"
+"Last-Translator: I Robot <thomas.mueller@tmit.eu>\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"
@@ -31,5 +31,9 @@ msgid "This will delete all existing backup versions of your files"
 msgstr "Ĉi tio forigos ĉiujn estantajn sekurkopiajn eldonojn de viaj dosieroj"
 
 #: templates/settings.php:3
-msgid "Enable Files Versioning"
-msgstr "Kapabligi dosiereldonkontrolon"
+msgid "Files Versioning"
+msgstr ""
+
+#: templates/settings.php:4
+msgid "Enable"
+msgstr ""
diff --git a/l10n/eo/settings.po b/l10n/eo/settings.po
index d51e0c54239002ceb9c9886f00593499d02ce8d6..e8a18dc730edf98083f2c422df74d5b6871ff6b9 100644
--- a/l10n/eo/settings.po
+++ b/l10n/eo/settings.po
@@ -9,8 +9,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-05 02:02+0200\n"
-"PO-Revision-Date: 2012-09-05 00:02+0000\n"
+"POT-Creation-Date: 2012-09-17 02:03+0200\n"
+"PO-Revision-Date: 2012-09-17 00:03+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n"
 "MIME-Version: 1.0\n"
@@ -36,6 +36,10 @@ msgstr ""
 msgid "Unable to add group"
 msgstr ""
 
+#: ajax/enableapp.php:13
+msgid "Could not enable app. "
+msgstr ""
+
 #: ajax/lostpassword.php:14
 msgid "Email saved"
 msgstr "La retpoŝtadreso konserviĝis"
@@ -111,63 +115,67 @@ msgstr ""
 msgid "Cron"
 msgstr "Cron"
 
-#: templates/admin.php:33
-msgid "execute one task with each page loaded"
-msgstr "lanĉi unu taskon po ĉiu paĝo ŝargita"
+#: templates/admin.php:37
+msgid "Execute one task with each page loaded"
+msgstr ""
 
-#: templates/admin.php:35
-msgid "cron.php is registered at a webcron service"
-msgstr "cron.php estas registrita kiel webcron-servilo"
+#: templates/admin.php:43
+msgid ""
+"cron.php is registered at a webcron service. Call the cron.php page in the "
+"owncloud root once a minute over http."
+msgstr ""
 
-#: templates/admin.php:37
-msgid "use systems cron service"
-msgstr "uzi la cron-servon de la sistemo"
+#: templates/admin.php:49
+msgid ""
+"Use systems cron service. Call the cron.php file in the owncloud folder via "
+"a system cronjob once a minute."
+msgstr ""
 
-#: templates/admin.php:41
-msgid "Share API"
+#: templates/admin.php:56
+msgid "Sharing"
 msgstr ""
 
-#: templates/admin.php:46
+#: templates/admin.php:61
 msgid "Enable Share API"
 msgstr ""
 
-#: templates/admin.php:47
+#: templates/admin.php:62
 msgid "Allow apps to use the Share API"
 msgstr ""
 
-#: templates/admin.php:51
+#: templates/admin.php:67
 msgid "Allow links"
 msgstr ""
 
-#: templates/admin.php:52
+#: templates/admin.php:68
 msgid "Allow users to share items to the public with links"
 msgstr ""
 
-#: templates/admin.php:56
+#: templates/admin.php:73
 msgid "Allow resharing"
 msgstr ""
 
-#: templates/admin.php:57
+#: templates/admin.php:74
 msgid "Allow users to share items shared with them again"
 msgstr ""
 
-#: templates/admin.php:60
+#: templates/admin.php:79
 msgid "Allow users to share with anyone"
 msgstr ""
 
-#: templates/admin.php:62
+#: templates/admin.php:81
 msgid "Allow users to only share with users in their groups"
 msgstr ""
 
-#: templates/admin.php:69
+#: templates/admin.php:88
 msgid "Log"
 msgstr "Protokolo"
 
-#: templates/admin.php:97
+#: templates/admin.php:116
 msgid "More"
 msgstr "Pli"
 
-#: templates/admin.php:105
+#: templates/admin.php:124
 msgid ""
 "Developed by the <a href=\"http://ownCloud.org/contact\" "
 "target=\"_blank\">ownCloud community</a>, the <a "
diff --git a/l10n/es/files.po b/l10n/es/files.po
index a50f0e53fd3a6d7bb79a8dcb6690c96b71fc3c63..5dffbb2efc7f64c07c2e620105ca9eb6b41fbadf 100644
--- a/l10n/es/files.po
+++ b/l10n/es/files.po
@@ -11,9 +11,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-10 02:02+0200\n"
-"PO-Revision-Date: 2012-09-09 03:24+0000\n"
-"Last-Translator: juanman <juanma@kde.org.ar>\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
+"PO-Revision-Date: 2012-09-18 00:01+0000\n"
+"Last-Translator: I Robot <thomas.mueller@tmit.eu>\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"
@@ -83,7 +83,7 @@ msgstr "cancelar"
 msgid "replaced"
 msgstr "reemplazado"
 
-#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270
+#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269
 msgid "undo"
 msgstr "deshacer"
 
@@ -91,11 +91,11 @@ msgstr "deshacer"
 msgid "with"
 msgstr "con"
 
-#: js/filelist.js:268
+#: js/filelist.js:267
 msgid "unshared"
 msgstr "no compartido"
 
-#: js/filelist.js:270
+#: js/filelist.js:269
 msgid "deleted"
 msgstr "borrado"
 
@@ -128,27 +128,35 @@ msgstr "La subida del archivo está en proceso. Salir de la página ahora cancel
 msgid "Invalid name, '/' is not allowed."
 msgstr "Nombre no válido, '/' no está permitido."
 
-#: js/files.js:746 templates/index.php:56
+#: js/files.js:666
+msgid "files scanned"
+msgstr ""
+
+#: js/files.js:674
+msgid "error while scanning"
+msgstr ""
+
+#: js/files.js:748 templates/index.php:56
 msgid "Size"
 msgstr "Tamaño"
 
-#: js/files.js:747 templates/index.php:58
+#: js/files.js:749 templates/index.php:58
 msgid "Modified"
 msgstr "Modificado"
 
-#: js/files.js:774
+#: js/files.js:776
 msgid "folder"
 msgstr "carpeta"
 
-#: js/files.js:776
+#: js/files.js:778
 msgid "folders"
 msgstr "carpetas"
 
-#: js/files.js:784
+#: js/files.js:786
 msgid "file"
 msgstr "archivo"
 
-#: js/files.js:786
+#: js/files.js:788
 msgid "files"
 msgstr "archivos"
 
diff --git a/l10n/es/files_versions.po b/l10n/es/files_versions.po
index 05f6814b37ae8d6ced9a0cf60e9e318dcb955a4b..ff439b927921303fa5357a1a2ae66404e9862785 100644
--- a/l10n/es/files_versions.po
+++ b/l10n/es/files_versions.po
@@ -10,15 +10,15 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-02 02:01+0200\n"
-"PO-Revision-Date: 2012-09-01 18:22+0000\n"
-"Last-Translator: Rubén Trujillo <rubentrf@gmail.com>\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
+"PO-Revision-Date: 2012-09-17 00:30+0000\n"
+"Last-Translator: juanman <juanma@kde.org.ar>\n"
 "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es\n"
-"Plural-Forms: nplurals=2; plural=(n != 1)\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #: js/settings-personal.js:31 templates/settings-personal.php:10
 msgid "Expire all versions"
@@ -33,5 +33,9 @@ msgid "This will delete all existing backup versions of your files"
 msgstr "Esto eliminará todas las versiones guardadas como copia de seguridad de tus archivos"
 
 #: templates/settings.php:3
-msgid "Enable Files Versioning"
-msgstr "Habilitar versionamiento de archivos"
+msgid "Files Versioning"
+msgstr "Versionado de archivos"
+
+#: templates/settings.php:4
+msgid "Enable"
+msgstr "Habilitar"
diff --git a/l10n/es/settings.po b/l10n/es/settings.po
index 8d1da62428c8befd92df4c65d1eb06f8b65d502f..6657754d3c8be1601bd3f61ae84043059f3911d4 100644
--- a/l10n/es/settings.po
+++ b/l10n/es/settings.po
@@ -8,6 +8,7 @@
 #   <juanma@kde.org.ar>, 2011-2012.
 #   <monty_2731@hotmail.com>, 2011.
 # oSiNaReF  <>, 2012.
+# Raul Fernandez Garcia <raulfg3@gmail.com>, 2012.
 #   <rodrigo.calvo@gmail.com>, 2012.
 #   <rom1dep@gmail.com>, 2011.
 # Rubén Trujillo <rubentrf@gmail.com>, 2012.
@@ -16,8 +17,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-06 02:02+0200\n"
-"PO-Revision-Date: 2012-09-05 15:29+0000\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
+"PO-Revision-Date: 2012-09-17 00:32+0000\n"
 "Last-Translator: juanman <juanma@kde.org.ar>\n"
 "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n"
 "MIME-Version: 1.0\n"
@@ -43,6 +44,10 @@ msgstr "El grupo ya existe"
 msgid "Unable to add group"
 msgstr "No se pudo añadir el grupo"
 
+#: ajax/enableapp.php:14
+msgid "Could not enable app. "
+msgstr "No puedo habilitar la app."
+
 #: ajax/lostpassword.php:14
 msgid "Email saved"
 msgstr "Correo guardado"
@@ -118,63 +123,67 @@ msgstr "El directorio de datos -data- y sus archivos probablemente son accesible
 msgid "Cron"
 msgstr "Cron"
 
-#: templates/admin.php:33
-msgid "execute one task with each page loaded"
-msgstr "ejecutar una tarea con cada página cargada"
+#: templates/admin.php:37
+msgid "Execute one task with each page loaded"
+msgstr "Ejecutar una tarea con cada página cargada"
 
-#: templates/admin.php:35
-msgid "cron.php is registered at a webcron service"
-msgstr "cron.php se registra en un servicio webcron"
+#: templates/admin.php:43
+msgid ""
+"cron.php is registered at a webcron service. Call the cron.php page in the "
+"owncloud root once a minute over http."
+msgstr "cron.php está registrado como un servicio del webcron. Llama a la página de cron.php en la raíz de owncloud cada minuto sobre http."
 
-#: templates/admin.php:37
-msgid "use systems cron service"
-msgstr "usar servicio cron del sistema"
+#: templates/admin.php:49
+msgid ""
+"Use systems cron service. Call the cron.php file in the owncloud folder via "
+"a system cronjob once a minute."
+msgstr ""
 
-#: templates/admin.php:41
-msgid "Share API"
-msgstr "API de compartición"
+#: templates/admin.php:56
+msgid "Sharing"
+msgstr "Compartir"
 
-#: templates/admin.php:46
+#: templates/admin.php:61
 msgid "Enable Share API"
 msgstr "Activar API de compartición"
 
-#: templates/admin.php:47
+#: templates/admin.php:62
 msgid "Allow apps to use the Share API"
 msgstr "Permitir a las aplicaciones usar la API de compartición"
 
-#: templates/admin.php:51
+#: templates/admin.php:67
 msgid "Allow links"
 msgstr "Permitir enlaces"
 
-#: templates/admin.php:52
+#: templates/admin.php:68
 msgid "Allow users to share items to the public with links"
 msgstr "Permitir a los usuarios compartir elementos públicamente con enlaces"
 
-#: templates/admin.php:56
+#: templates/admin.php:73
 msgid "Allow resharing"
 msgstr "Permitir re-compartir"
 
-#: templates/admin.php:57
+#: templates/admin.php:74
 msgid "Allow users to share items shared with them again"
 msgstr "Permitir a los usuarios compartir elementos compartidos con ellos de nuevo"
 
-#: templates/admin.php:60
+#: templates/admin.php:79
 msgid "Allow users to share with anyone"
 msgstr "Permitir a los usuarios compartir con cualquiera"
 
-#: templates/admin.php:62
+#: templates/admin.php:81
 msgid "Allow users to only share with users in their groups"
 msgstr "Permitir a los usuarios compartir con usuarios en sus grupos"
 
-#: templates/admin.php:69
+#: templates/admin.php:88
 msgid "Log"
 msgstr "Registro"
 
-#: templates/admin.php:97
+#: templates/admin.php:116
 msgid "More"
 msgstr "Más"
 
-#: templates/admin.php:105
+#: templates/admin.php:124
 msgid ""
 "Developed by the <a href=\"http://ownCloud.org/contact\" "
 "target=\"_blank\">ownCloud community</a>, the <a "
diff --git a/l10n/et_EE/files.po b/l10n/et_EE/files.po
index a2e851dd2f1bb385e12ec793c081842b421c5be6..047952b5cf86c030a4f0db0fddd71637d09651e3 100644
--- a/l10n/et_EE/files.po
+++ b/l10n/et_EE/files.po
@@ -8,9 +8,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-12 02:01+0200\n"
-"PO-Revision-Date: 2012-09-11 10:21+0000\n"
-"Last-Translator: Rivo Zängov <eraser@eraser.ee>\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
+"PO-Revision-Date: 2012-09-18 00:01+0000\n"
+"Last-Translator: I Robot <thomas.mueller@tmit.eu>\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"
@@ -80,7 +80,7 @@ msgstr "loobu"
 msgid "replaced"
 msgstr "asendatud"
 
-#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270
+#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269
 msgid "undo"
 msgstr "tagasi"
 
@@ -88,11 +88,11 @@ msgstr "tagasi"
 msgid "with"
 msgstr "millega"
 
-#: js/filelist.js:268
+#: js/filelist.js:267
 msgid "unshared"
 msgstr "jagamata"
 
-#: js/filelist.js:270
+#: js/filelist.js:269
 msgid "deleted"
 msgstr "kustutatud"
 
@@ -125,27 +125,35 @@ msgstr "Faili üleslaadimine on töös.  Lehelt lahkumine katkestab selle ülesl
 msgid "Invalid name, '/' is not allowed."
 msgstr "Vigane nimi, '/' pole lubatud."
 
-#: js/files.js:746 templates/index.php:56
+#: js/files.js:666
+msgid "files scanned"
+msgstr ""
+
+#: js/files.js:674
+msgid "error while scanning"
+msgstr ""
+
+#: js/files.js:748 templates/index.php:56
 msgid "Size"
 msgstr "Suurus"
 
-#: js/files.js:747 templates/index.php:58
+#: js/files.js:749 templates/index.php:58
 msgid "Modified"
 msgstr "Muudetud"
 
-#: js/files.js:774
+#: js/files.js:776
 msgid "folder"
 msgstr "kaust"
 
-#: js/files.js:776
+#: js/files.js:778
 msgid "folders"
 msgstr "kausta"
 
-#: js/files.js:784
+#: js/files.js:786
 msgid "file"
 msgstr "fail"
 
-#: js/files.js:786
+#: js/files.js:788
 msgid "files"
 msgstr "faili"
 
diff --git a/l10n/et_EE/files_versions.po b/l10n/et_EE/files_versions.po
index 4344220fe7b4fcd66caf33f2a596d4261482e294..0117bbd83e304ef306a93c3ee88e176f84c8068c 100644
--- a/l10n/et_EE/files_versions.po
+++ b/l10n/et_EE/files_versions.po
@@ -8,9 +8,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-12 02:01+0200\n"
-"PO-Revision-Date: 2012-09-11 10:28+0000\n"
-"Last-Translator: Rivo Zängov <eraser@eraser.ee>\n"
+"POT-Creation-Date: 2012-09-17 02:02+0200\n"
+"PO-Revision-Date: 2012-09-17 00:04+0000\n"
+"Last-Translator: I Robot <thomas.mueller@tmit.eu>\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"
@@ -31,5 +31,9 @@ msgid "This will delete all existing backup versions of your files"
 msgstr "See kustutab kõik sinu failidest tehtud varuversiooni"
 
 #: templates/settings.php:3
-msgid "Enable Files Versioning"
-msgstr "Luba failide versioonihaldus"
+msgid "Files Versioning"
+msgstr ""
+
+#: templates/settings.php:4
+msgid "Enable"
+msgstr ""
diff --git a/l10n/et_EE/settings.po b/l10n/et_EE/settings.po
index 90042b1958565428b60c342d9abfeaee5597e5e5..d5cf241bdeb459300e06cf9b301d5b68c91b1e74 100644
--- a/l10n/et_EE/settings.po
+++ b/l10n/et_EE/settings.po
@@ -9,9 +9,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-12 02:01+0200\n"
-"PO-Revision-Date: 2012-09-11 11:12+0000\n"
-"Last-Translator: Rivo Zängov <eraser@eraser.ee>\n"
+"POT-Creation-Date: 2012-09-17 02:03+0200\n"
+"PO-Revision-Date: 2012-09-17 00:03+0000\n"
+"Last-Translator: I Robot <thomas.mueller@tmit.eu>\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"
@@ -36,6 +36,10 @@ msgstr "Grupp on juba olemas"
 msgid "Unable to add group"
 msgstr "Keela grupi lisamine"
 
+#: ajax/enableapp.php:13
+msgid "Could not enable app. "
+msgstr ""
+
 #: ajax/lostpassword.php:14
 msgid "Email saved"
 msgstr "Kiri on salvestatud"
@@ -111,63 +115,67 @@ msgstr ""
 msgid "Cron"
 msgstr "Ajastatud töö"
 
-#: templates/admin.php:33
-msgid "execute one task with each page loaded"
-msgstr "käivita iga laetud lehe juures üks ülesanne"
+#: templates/admin.php:37
+msgid "Execute one task with each page loaded"
+msgstr ""
 
-#: templates/admin.php:35
-msgid "cron.php is registered at a webcron service"
-msgstr "cron.php on webcron teenuses registreeritud"
+#: templates/admin.php:43
+msgid ""
+"cron.php is registered at a webcron service. Call the cron.php page in the "
+"owncloud root once a minute over http."
+msgstr ""
 
-#: templates/admin.php:37
-msgid "use systems cron service"
-msgstr "kasuta süsteemide cron teenuseid"
+#: templates/admin.php:49
+msgid ""
+"Use systems cron service. Call the cron.php file in the owncloud folder via "
+"a system cronjob once a minute."
+msgstr ""
 
-#: templates/admin.php:41
-msgid "Share API"
-msgstr "Jagamise API"
+#: templates/admin.php:56
+msgid "Sharing"
+msgstr ""
 
-#: templates/admin.php:46
+#: templates/admin.php:61
 msgid "Enable Share API"
 msgstr "Luba jagamise API"
 
-#: templates/admin.php:47
+#: templates/admin.php:62
 msgid "Allow apps to use the Share API"
 msgstr "Luba rakendustel kasutada jagamise API-t"
 
-#: templates/admin.php:51
+#: templates/admin.php:67
 msgid "Allow links"
 msgstr "Luba linke"
 
-#: templates/admin.php:52
+#: templates/admin.php:68
 msgid "Allow users to share items to the public with links"
 msgstr "Luba kasutajatel jagada kirjeid avalike linkidega"
 
-#: templates/admin.php:56
+#: templates/admin.php:73
 msgid "Allow resharing"
 msgstr "Luba edasijagamine"
 
-#: templates/admin.php:57
+#: templates/admin.php:74
 msgid "Allow users to share items shared with them again"
 msgstr "Luba kasutajatel jagada edasi kirjeid, mida on neile jagatud"
 
-#: templates/admin.php:60
+#: templates/admin.php:79
 msgid "Allow users to share with anyone"
 msgstr "Luba kasutajatel kõigiga jagada"
 
-#: templates/admin.php:62
+#: templates/admin.php:81
 msgid "Allow users to only share with users in their groups"
 msgstr "Luba kasutajatel jagada kirjeid ainult nende grupi liikmetele, millesse nad ise kuuluvad"
 
-#: templates/admin.php:69
+#: templates/admin.php:88
 msgid "Log"
 msgstr "Logi"
 
-#: templates/admin.php:97
+#: templates/admin.php:116
 msgid "More"
 msgstr "Veel"
 
-#: templates/admin.php:105
+#: templates/admin.php:124
 msgid ""
 "Developed by the <a href=\"http://ownCloud.org/contact\" "
 "target=\"_blank\">ownCloud community</a>, the <a "
diff --git a/l10n/eu/files.po b/l10n/eu/files.po
index 2cd338beb7493fcdca5098ad4d79cbec4c248e92..c90216557e3938d5380873954064cad6698983e2 100644
--- a/l10n/eu/files.po
+++ b/l10n/eu/files.po
@@ -9,9 +9,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-09 02:01+0200\n"
-"PO-Revision-Date: 2012-09-08 19:20+0000\n"
-"Last-Translator: asieriko <asieriko@gmail.com>\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
+"PO-Revision-Date: 2012-09-18 00:01+0000\n"
+"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -81,7 +81,7 @@ msgstr "ezeztatu"
 msgid "replaced"
 msgstr "ordeztua"
 
-#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270
+#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269
 msgid "undo"
 msgstr "desegin"
 
@@ -89,11 +89,11 @@ msgstr "desegin"
 msgid "with"
 msgstr "honekin"
 
-#: js/filelist.js:268
+#: js/filelist.js:267
 msgid "unshared"
 msgstr "Ez partekatuta"
 
-#: js/filelist.js:270
+#: js/filelist.js:269
 msgid "deleted"
 msgstr "ezabatuta"
 
@@ -126,27 +126,35 @@ msgstr "Fitxategien igoera martxan da. Orria orain uzteak igoera ezeztatutko du.
 msgid "Invalid name, '/' is not allowed."
 msgstr "Baliogabeko izena, '/' ezin da erabili. "
 
-#: js/files.js:746 templates/index.php:56
+#: js/files.js:666
+msgid "files scanned"
+msgstr ""
+
+#: js/files.js:674
+msgid "error while scanning"
+msgstr ""
+
+#: js/files.js:748 templates/index.php:56
 msgid "Size"
 msgstr "Tamaina"
 
-#: js/files.js:747 templates/index.php:58
+#: js/files.js:749 templates/index.php:58
 msgid "Modified"
 msgstr "Aldatuta"
 
-#: js/files.js:774
+#: js/files.js:776
 msgid "folder"
 msgstr "karpeta"
 
-#: js/files.js:776
+#: js/files.js:778
 msgid "folders"
 msgstr "Karpetak"
 
-#: js/files.js:784
+#: js/files.js:786
 msgid "file"
 msgstr "fitxategia"
 
-#: js/files.js:786
+#: js/files.js:788
 msgid "files"
 msgstr "fitxategiak"
 
diff --git a/l10n/eu/files_versions.po b/l10n/eu/files_versions.po
index 0f7610079ceaedc60562fb74c7a564d41d65dada..c77fa0cef96c2a1ce87913ae9327f9c81cc6a495 100644
--- a/l10n/eu/files_versions.po
+++ b/l10n/eu/files_versions.po
@@ -8,9 +8,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-04 02:01+0200\n"
-"PO-Revision-Date: 2012-09-03 12:58+0000\n"
-"Last-Translator: asieriko <asieriko@gmail.com>\n"
+"POT-Creation-Date: 2012-09-17 02:02+0200\n"
+"PO-Revision-Date: 2012-09-17 00:04+0000\n"
+"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -31,5 +31,9 @@ msgid "This will delete all existing backup versions of your files"
 msgstr "Honek zure fitxategien bertsio guztiak ezabatuko ditu"
 
 #: templates/settings.php:3
-msgid "Enable Files Versioning"
-msgstr "Gaitu fitxategien bertsioak"
+msgid "Files Versioning"
+msgstr ""
+
+#: templates/settings.php:4
+msgid "Enable"
+msgstr ""
diff --git a/l10n/eu/settings.po b/l10n/eu/settings.po
index 1fb2c354a997f4136d081557d6b148998e199df9..7e6f4e8d9c37e2a789b42e4689584d796d21838b 100644
--- a/l10n/eu/settings.po
+++ b/l10n/eu/settings.po
@@ -10,9 +10,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-08 02:02+0200\n"
-"PO-Revision-Date: 2012-09-07 14:30+0000\n"
-"Last-Translator: asieriko <asieriko@gmail.com>\n"
+"POT-Creation-Date: 2012-09-17 02:03+0200\n"
+"PO-Revision-Date: 2012-09-17 00:03+0000\n"
+"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -37,6 +37,10 @@ msgstr "Taldea dagoeneko existitzenda"
 msgid "Unable to add group"
 msgstr "Ezin izan da taldea gehitu"
 
+#: ajax/enableapp.php:13
+msgid "Could not enable app. "
+msgstr "Ezin izan da aplikazioa gaitu."
+
 #: ajax/lostpassword.php:14
 msgid "Email saved"
 msgstr "Eposta gorde da"
@@ -112,63 +116,67 @@ msgstr "Zure data karpeta eta zure fitxategiak internetetik zuzenean eskuragarri
 msgid "Cron"
 msgstr "Cron"
 
-#: templates/admin.php:33
-msgid "execute one task with each page loaded"
-msgstr "exekutatu zeregina orri karga bakoitzean"
+#: templates/admin.php:37
+msgid "Execute one task with each page loaded"
+msgstr ""
 
-#: templates/admin.php:35
-msgid "cron.php is registered at a webcron service"
-msgstr "cron.php webcron zerbitzu batean erregistratuta dago"
+#: templates/admin.php:43
+msgid ""
+"cron.php is registered at a webcron service. Call the cron.php page in the "
+"owncloud root once a minute over http."
+msgstr "cron.php webcron zerbitzu batean erregistratua dago. Deitu cron.php orria ownclouden erroan minuturo http bidez."
 
-#: templates/admin.php:37
-msgid "use systems cron service"
-msgstr "erabili sistemaren cron zerbitzua"
+#: templates/admin.php:49
+msgid ""
+"Use systems cron service. Call the cron.php file in the owncloud folder via "
+"a system cronjob once a minute."
+msgstr ""
 
-#: templates/admin.php:41
-msgid "Share API"
-msgstr "Partekatze APIa"
+#: templates/admin.php:56
+msgid "Sharing"
+msgstr ""
 
-#: templates/admin.php:46
+#: templates/admin.php:61
 msgid "Enable Share API"
 msgstr "Gaitu Partekatze APIa"
 
-#: templates/admin.php:47
+#: templates/admin.php:62
 msgid "Allow apps to use the Share API"
 msgstr "Baimendu aplikazioak Partekatze APIa erabiltzeko"
 
-#: templates/admin.php:51
+#: templates/admin.php:67
 msgid "Allow links"
 msgstr "Baimendu loturak"
 
-#: templates/admin.php:52
+#: templates/admin.php:68
 msgid "Allow users to share items to the public with links"
 msgstr "Baimendu erabiltzaileak loturen bidez fitxategiak publikoki partekatzen"
 
-#: templates/admin.php:56
+#: templates/admin.php:73
 msgid "Allow resharing"
 msgstr "Baimendu birpartekatzea"
 
-#: templates/admin.php:57
+#: templates/admin.php:74
 msgid "Allow users to share items shared with them again"
 msgstr "Baimendu erabiltzaileak haiekin partekatutako fitxategiak berriz ere partekatzen"
 
-#: templates/admin.php:60
+#: templates/admin.php:79
 msgid "Allow users to share with anyone"
 msgstr "Baimendu erabiltzaileak edonorekin partekatzen"
 
-#: templates/admin.php:62
+#: templates/admin.php:81
 msgid "Allow users to only share with users in their groups"
 msgstr "Baimendu erabiltzaileak bakarrik bere taldeko erabiltzaileekin partekatzen"
 
-#: templates/admin.php:69
+#: templates/admin.php:88
 msgid "Log"
 msgstr "Egunkaria"
 
-#: templates/admin.php:97
+#: templates/admin.php:116
 msgid "More"
 msgstr "Gehiago"
 
-#: templates/admin.php:105
+#: templates/admin.php:124
 msgid ""
 "Developed by the <a href=\"http://ownCloud.org/contact\" "
 "target=\"_blank\">ownCloud community</a>, the <a "
diff --git a/l10n/eu_ES/files.po b/l10n/eu_ES/files.po
index 0b6110c70d7bd8526591b108731ec3a2ab4e8688..24b986c0404f478379928e234eddd0e028eae52a 100644
--- a/l10n/eu_ES/files.po
+++ b/l10n/eu_ES/files.po
@@ -7,8 +7,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-08 02:01+0200\n"
-"PO-Revision-Date: 2012-09-08 00:02+0000\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
+"PO-Revision-Date: 2012-09-18 00:02+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n"
 "MIME-Version: 1.0\n"
@@ -79,7 +79,7 @@ msgstr ""
 msgid "replaced"
 msgstr ""
 
-#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270
+#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269
 msgid "undo"
 msgstr ""
 
@@ -87,11 +87,11 @@ msgstr ""
 msgid "with"
 msgstr ""
 
-#: js/filelist.js:268
+#: js/filelist.js:267
 msgid "unshared"
 msgstr ""
 
-#: js/filelist.js:270
+#: js/filelist.js:269
 msgid "deleted"
 msgstr ""
 
@@ -124,27 +124,35 @@ msgstr ""
 msgid "Invalid name, '/' is not allowed."
 msgstr ""
 
-#: js/files.js:746 templates/index.php:56
+#: js/files.js:666
+msgid "files scanned"
+msgstr ""
+
+#: js/files.js:674
+msgid "error while scanning"
+msgstr ""
+
+#: js/files.js:748 templates/index.php:56
 msgid "Size"
 msgstr ""
 
-#: js/files.js:747 templates/index.php:58
+#: js/files.js:749 templates/index.php:58
 msgid "Modified"
 msgstr ""
 
-#: js/files.js:774
+#: js/files.js:776
 msgid "folder"
 msgstr ""
 
-#: js/files.js:776
+#: js/files.js:778
 msgid "folders"
 msgstr ""
 
-#: js/files.js:784
+#: js/files.js:786
 msgid "file"
 msgstr ""
 
-#: js/files.js:786
+#: js/files.js:788
 msgid "files"
 msgstr ""
 
diff --git a/l10n/eu_ES/files_versions.po b/l10n/eu_ES/files_versions.po
index cf5651aa2224207c25fd731f4e5f35fcb11336ad..b86d5a6e68f44dd1bc5ff7bdab96b7de9c16fe26 100644
--- a/l10n/eu_ES/files_versions.po
+++ b/l10n/eu_ES/files_versions.po
@@ -7,15 +7,15 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-01 13:35+0200\n"
-"PO-Revision-Date: 2012-09-01 11:35+0000\n"
+"POT-Creation-Date: 2012-09-17 02:02+0200\n"
+"PO-Revision-Date: 2012-09-17 00:04+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: eu_ES\n"
-"Plural-Forms: nplurals=2; plural=(n != 1)\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #: js/settings-personal.js:31 templates/settings-personal.php:10
 msgid "Expire all versions"
@@ -30,5 +30,9 @@ msgid "This will delete all existing backup versions of your files"
 msgstr ""
 
 #: templates/settings.php:3
-msgid "Enable Files Versioning"
+msgid "Files Versioning"
+msgstr ""
+
+#: templates/settings.php:4
+msgid "Enable"
 msgstr ""
diff --git a/l10n/eu_ES/settings.po b/l10n/eu_ES/settings.po
index bca1c25debd4b3a686e1f061d4b23f46b6892cfa..1d02c170d7d93c23456ab075317215ec4c852a82 100644
--- a/l10n/eu_ES/settings.po
+++ b/l10n/eu_ES/settings.po
@@ -7,8 +7,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-05 02:02+0200\n"
-"PO-Revision-Date: 2012-09-05 00:02+0000\n"
+"POT-Creation-Date: 2012-09-17 02:03+0200\n"
+"PO-Revision-Date: 2012-09-17 00:03+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n"
 "MIME-Version: 1.0\n"
@@ -34,6 +34,10 @@ msgstr ""
 msgid "Unable to add group"
 msgstr ""
 
+#: ajax/enableapp.php:13
+msgid "Could not enable app. "
+msgstr ""
+
 #: ajax/lostpassword.php:14
 msgid "Email saved"
 msgstr ""
@@ -109,63 +113,67 @@ msgstr ""
 msgid "Cron"
 msgstr ""
 
-#: templates/admin.php:33
-msgid "execute one task with each page loaded"
+#: templates/admin.php:37
+msgid "Execute one task with each page loaded"
 msgstr ""
 
-#: templates/admin.php:35
-msgid "cron.php is registered at a webcron service"
+#: templates/admin.php:43
+msgid ""
+"cron.php is registered at a webcron service. Call the cron.php page in the "
+"owncloud root once a minute over http."
 msgstr ""
 
-#: templates/admin.php:37
-msgid "use systems cron service"
+#: templates/admin.php:49
+msgid ""
+"Use systems cron service. Call the cron.php file in the owncloud folder via "
+"a system cronjob once a minute."
 msgstr ""
 
-#: templates/admin.php:41
-msgid "Share API"
+#: templates/admin.php:56
+msgid "Sharing"
 msgstr ""
 
-#: templates/admin.php:46
+#: templates/admin.php:61
 msgid "Enable Share API"
 msgstr ""
 
-#: templates/admin.php:47
+#: templates/admin.php:62
 msgid "Allow apps to use the Share API"
 msgstr ""
 
-#: templates/admin.php:51
+#: templates/admin.php:67
 msgid "Allow links"
 msgstr ""
 
-#: templates/admin.php:52
+#: templates/admin.php:68
 msgid "Allow users to share items to the public with links"
 msgstr ""
 
-#: templates/admin.php:56
+#: templates/admin.php:73
 msgid "Allow resharing"
 msgstr ""
 
-#: templates/admin.php:57
+#: templates/admin.php:74
 msgid "Allow users to share items shared with them again"
 msgstr ""
 
-#: templates/admin.php:60
+#: templates/admin.php:79
 msgid "Allow users to share with anyone"
 msgstr ""
 
-#: templates/admin.php:62
+#: templates/admin.php:81
 msgid "Allow users to only share with users in their groups"
 msgstr ""
 
-#: templates/admin.php:69
+#: templates/admin.php:88
 msgid "Log"
 msgstr ""
 
-#: templates/admin.php:97
+#: templates/admin.php:116
 msgid "More"
 msgstr ""
 
-#: templates/admin.php:105
+#: templates/admin.php:124
 msgid ""
 "Developed by the <a href=\"http://ownCloud.org/contact\" "
 "target=\"_blank\">ownCloud community</a>, the <a "
diff --git a/l10n/fa/files.po b/l10n/fa/files.po
index 37b2cc70c39a88506ed49e13aeccdba5eea47c3a..d189e3addffc779e31e7626655cdf7f2d43cc7e5 100644
--- a/l10n/fa/files.po
+++ b/l10n/fa/files.po
@@ -10,8 +10,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-08 02:01+0200\n"
-"PO-Revision-Date: 2012-09-08 00:02+0000\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
+"PO-Revision-Date: 2012-09-18 00:01+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n"
 "MIME-Version: 1.0\n"
@@ -82,7 +82,7 @@ msgstr "لغو"
 msgid "replaced"
 msgstr "جایگزین‌شده"
 
-#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270
+#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269
 msgid "undo"
 msgstr "بازگشت"
 
@@ -90,11 +90,11 @@ msgstr "بازگشت"
 msgid "with"
 msgstr "همراه"
 
-#: js/filelist.js:268
+#: js/filelist.js:267
 msgid "unshared"
 msgstr ""
 
-#: js/filelist.js:270
+#: js/filelist.js:269
 msgid "deleted"
 msgstr "حذف شده"
 
@@ -127,27 +127,35 @@ msgstr ""
 msgid "Invalid name, '/' is not allowed."
 msgstr "نام نامناسب '/' غیرفعال است"
 
-#: js/files.js:746 templates/index.php:56
+#: js/files.js:666
+msgid "files scanned"
+msgstr ""
+
+#: js/files.js:674
+msgid "error while scanning"
+msgstr ""
+
+#: js/files.js:748 templates/index.php:56
 msgid "Size"
 msgstr "اندازه"
 
-#: js/files.js:747 templates/index.php:58
+#: js/files.js:749 templates/index.php:58
 msgid "Modified"
 msgstr "تغییر یافته"
 
-#: js/files.js:774
+#: js/files.js:776
 msgid "folder"
 msgstr "پوشه"
 
-#: js/files.js:776
+#: js/files.js:778
 msgid "folders"
 msgstr "پوشه ها"
 
-#: js/files.js:784
+#: js/files.js:786
 msgid "file"
 msgstr "پرونده"
 
-#: js/files.js:786
+#: js/files.js:788
 msgid "files"
 msgstr "پرونده ها"
 
diff --git a/l10n/fa/files_versions.po b/l10n/fa/files_versions.po
index 012dceedd11479d65d170a5c008c02b27a17f0b1..21aa2b6701a7f0707370c9c0aac6ffd27130ea8b 100644
--- a/l10n/fa/files_versions.po
+++ b/l10n/fa/files_versions.po
@@ -8,15 +8,15 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-01 13:35+0200\n"
-"PO-Revision-Date: 2012-09-01 11:35+0000\n"
+"POT-Creation-Date: 2012-09-17 02:02+0200\n"
+"PO-Revision-Date: 2012-09-17 00:04+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: fa\n"
-"Plural-Forms: nplurals=1; plural=0\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
 
 #: js/settings-personal.js:31 templates/settings-personal.php:10
 msgid "Expire all versions"
@@ -31,5 +31,9 @@ msgid "This will delete all existing backup versions of your files"
 msgstr ""
 
 #: templates/settings.php:3
-msgid "Enable Files Versioning"
-msgstr "فعال‌کردن پرونده‌های نسخه‌بندی"
+msgid "Files Versioning"
+msgstr ""
+
+#: templates/settings.php:4
+msgid "Enable"
+msgstr ""
diff --git a/l10n/fa/settings.po b/l10n/fa/settings.po
index 9f3314e70602695aaca5d6b7c6c57090794c51a8..05cf00feb1fba5d0738ce8eda7032ccbd9b8c0c5 100644
--- a/l10n/fa/settings.po
+++ b/l10n/fa/settings.po
@@ -9,8 +9,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-05 02:02+0200\n"
-"PO-Revision-Date: 2012-09-05 00:02+0000\n"
+"POT-Creation-Date: 2012-09-17 02:03+0200\n"
+"PO-Revision-Date: 2012-09-17 00:03+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n"
 "MIME-Version: 1.0\n"
@@ -36,6 +36,10 @@ msgstr ""
 msgid "Unable to add group"
 msgstr ""
 
+#: ajax/enableapp.php:13
+msgid "Could not enable app. "
+msgstr ""
+
 #: ajax/lostpassword.php:14
 msgid "Email saved"
 msgstr "ایمیل ذخیره شد"
@@ -111,63 +115,67 @@ msgstr ""
 msgid "Cron"
 msgstr ""
 
-#: templates/admin.php:33
-msgid "execute one task with each page loaded"
+#: templates/admin.php:37
+msgid "Execute one task with each page loaded"
 msgstr ""
 
-#: templates/admin.php:35
-msgid "cron.php is registered at a webcron service"
+#: templates/admin.php:43
+msgid ""
+"cron.php is registered at a webcron service. Call the cron.php page in the "
+"owncloud root once a minute over http."
 msgstr ""
 
-#: templates/admin.php:37
-msgid "use systems cron service"
+#: templates/admin.php:49
+msgid ""
+"Use systems cron service. Call the cron.php file in the owncloud folder via "
+"a system cronjob once a minute."
 msgstr ""
 
-#: templates/admin.php:41
-msgid "Share API"
+#: templates/admin.php:56
+msgid "Sharing"
 msgstr ""
 
-#: templates/admin.php:46
+#: templates/admin.php:61
 msgid "Enable Share API"
 msgstr ""
 
-#: templates/admin.php:47
+#: templates/admin.php:62
 msgid "Allow apps to use the Share API"
 msgstr ""
 
-#: templates/admin.php:51
+#: templates/admin.php:67
 msgid "Allow links"
 msgstr ""
 
-#: templates/admin.php:52
+#: templates/admin.php:68
 msgid "Allow users to share items to the public with links"
 msgstr ""
 
-#: templates/admin.php:56
+#: templates/admin.php:73
 msgid "Allow resharing"
 msgstr ""
 
-#: templates/admin.php:57
+#: templates/admin.php:74
 msgid "Allow users to share items shared with them again"
 msgstr ""
 
-#: templates/admin.php:60
+#: templates/admin.php:79
 msgid "Allow users to share with anyone"
 msgstr ""
 
-#: templates/admin.php:62
+#: templates/admin.php:81
 msgid "Allow users to only share with users in their groups"
 msgstr ""
 
-#: templates/admin.php:69
+#: templates/admin.php:88
 msgid "Log"
 msgstr "کارنامه"
 
-#: templates/admin.php:97
+#: templates/admin.php:116
 msgid "More"
 msgstr "بیشتر"
 
-#: templates/admin.php:105
+#: templates/admin.php:124
 msgid ""
 "Developed by the <a href=\"http://ownCloud.org/contact\" "
 "target=\"_blank\">ownCloud community</a>, the <a "
diff --git a/l10n/fi/files.po b/l10n/fi/files.po
index 1d569839df60ec8bf75793358984bd0ecd175878..6326b9d2c5bf15e4e0fe71db9b57a15dc205557a 100644
--- a/l10n/fi/files.po
+++ b/l10n/fi/files.po
@@ -7,8 +7,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-08 02:01+0200\n"
-"PO-Revision-Date: 2012-09-08 00:02+0000\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
+"PO-Revision-Date: 2012-09-18 00:02+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Finnish (http://www.transifex.com/projects/p/owncloud/language/fi/)\n"
 "MIME-Version: 1.0\n"
@@ -79,7 +79,7 @@ msgstr ""
 msgid "replaced"
 msgstr ""
 
-#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270
+#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269
 msgid "undo"
 msgstr ""
 
@@ -87,11 +87,11 @@ msgstr ""
 msgid "with"
 msgstr ""
 
-#: js/filelist.js:268
+#: js/filelist.js:267
 msgid "unshared"
 msgstr ""
 
-#: js/filelist.js:270
+#: js/filelist.js:269
 msgid "deleted"
 msgstr ""
 
@@ -124,27 +124,35 @@ msgstr ""
 msgid "Invalid name, '/' is not allowed."
 msgstr ""
 
-#: js/files.js:746 templates/index.php:56
+#: js/files.js:666
+msgid "files scanned"
+msgstr ""
+
+#: js/files.js:674
+msgid "error while scanning"
+msgstr ""
+
+#: js/files.js:748 templates/index.php:56
 msgid "Size"
 msgstr ""
 
-#: js/files.js:747 templates/index.php:58
+#: js/files.js:749 templates/index.php:58
 msgid "Modified"
 msgstr ""
 
-#: js/files.js:774
+#: js/files.js:776
 msgid "folder"
 msgstr ""
 
-#: js/files.js:776
+#: js/files.js:778
 msgid "folders"
 msgstr ""
 
-#: js/files.js:784
+#: js/files.js:786
 msgid "file"
 msgstr ""
 
-#: js/files.js:786
+#: js/files.js:788
 msgid "files"
 msgstr ""
 
diff --git a/l10n/fi/files_versions.po b/l10n/fi/files_versions.po
index cd80c0a4869c425eefaae63967ad5bdc6736f4db..684cdfa5e94c58a53d580fa04db7c9e01007d7c5 100644
--- a/l10n/fi/files_versions.po
+++ b/l10n/fi/files_versions.po
@@ -7,15 +7,15 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-01 13:35+0200\n"
-"PO-Revision-Date: 2012-09-01 11:35+0000\n"
+"POT-Creation-Date: 2012-09-17 02:02+0200\n"
+"PO-Revision-Date: 2012-09-17 00:04+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Finnish (http://www.transifex.com/projects/p/owncloud/language/fi/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: fi\n"
-"Plural-Forms: nplurals=2; plural=(n != 1)\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #: js/settings-personal.js:31 templates/settings-personal.php:10
 msgid "Expire all versions"
@@ -30,5 +30,9 @@ msgid "This will delete all existing backup versions of your files"
 msgstr ""
 
 #: templates/settings.php:3
-msgid "Enable Files Versioning"
+msgid "Files Versioning"
+msgstr ""
+
+#: templates/settings.php:4
+msgid "Enable"
 msgstr ""
diff --git a/l10n/fi/settings.po b/l10n/fi/settings.po
index b2daafd990f041124d07c9bb471736129637a007..1343234a7d0a2b1fa7643ed6c3c8d39386ffd258 100644
--- a/l10n/fi/settings.po
+++ b/l10n/fi/settings.po
@@ -7,8 +7,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-05 02:02+0200\n"
-"PO-Revision-Date: 2012-09-05 00:02+0000\n"
+"POT-Creation-Date: 2012-09-17 02:03+0200\n"
+"PO-Revision-Date: 2012-09-17 00:03+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Finnish (http://www.transifex.com/projects/p/owncloud/language/fi/)\n"
 "MIME-Version: 1.0\n"
@@ -34,6 +34,10 @@ msgstr ""
 msgid "Unable to add group"
 msgstr ""
 
+#: ajax/enableapp.php:13
+msgid "Could not enable app. "
+msgstr ""
+
 #: ajax/lostpassword.php:14
 msgid "Email saved"
 msgstr ""
@@ -109,63 +113,67 @@ msgstr ""
 msgid "Cron"
 msgstr ""
 
-#: templates/admin.php:33
-msgid "execute one task with each page loaded"
+#: templates/admin.php:37
+msgid "Execute one task with each page loaded"
 msgstr ""
 
-#: templates/admin.php:35
-msgid "cron.php is registered at a webcron service"
+#: templates/admin.php:43
+msgid ""
+"cron.php is registered at a webcron service. Call the cron.php page in the "
+"owncloud root once a minute over http."
 msgstr ""
 
-#: templates/admin.php:37
-msgid "use systems cron service"
+#: templates/admin.php:49
+msgid ""
+"Use systems cron service. Call the cron.php file in the owncloud folder via "
+"a system cronjob once a minute."
 msgstr ""
 
-#: templates/admin.php:41
-msgid "Share API"
+#: templates/admin.php:56
+msgid "Sharing"
 msgstr ""
 
-#: templates/admin.php:46
+#: templates/admin.php:61
 msgid "Enable Share API"
 msgstr ""
 
-#: templates/admin.php:47
+#: templates/admin.php:62
 msgid "Allow apps to use the Share API"
 msgstr ""
 
-#: templates/admin.php:51
+#: templates/admin.php:67
 msgid "Allow links"
 msgstr ""
 
-#: templates/admin.php:52
+#: templates/admin.php:68
 msgid "Allow users to share items to the public with links"
 msgstr ""
 
-#: templates/admin.php:56
+#: templates/admin.php:73
 msgid "Allow resharing"
 msgstr ""
 
-#: templates/admin.php:57
+#: templates/admin.php:74
 msgid "Allow users to share items shared with them again"
 msgstr ""
 
-#: templates/admin.php:60
+#: templates/admin.php:79
 msgid "Allow users to share with anyone"
 msgstr ""
 
-#: templates/admin.php:62
+#: templates/admin.php:81
 msgid "Allow users to only share with users in their groups"
 msgstr ""
 
-#: templates/admin.php:69
+#: templates/admin.php:88
 msgid "Log"
 msgstr ""
 
-#: templates/admin.php:97
+#: templates/admin.php:116
 msgid "More"
 msgstr ""
 
-#: templates/admin.php:105
+#: templates/admin.php:124
 msgid ""
 "Developed by the <a href=\"http://ownCloud.org/contact\" "
 "target=\"_blank\">ownCloud community</a>, the <a "
diff --git a/l10n/fi_FI/files.po b/l10n/fi_FI/files.po
index c642c07ab82dba3b2e1cfd51ccb7b6cefd7834af..3f9eec5f1ca90b2fd0bfff48077aca45155377ec 100644
--- a/l10n/fi_FI/files.po
+++ b/l10n/fi_FI/files.po
@@ -12,8 +12,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-08 02:01+0200\n"
-"PO-Revision-Date: 2012-09-08 00:02+0000\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
+"PO-Revision-Date: 2012-09-18 00:02+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n"
 "MIME-Version: 1.0\n"
@@ -84,7 +84,7 @@ msgstr "peru"
 msgid "replaced"
 msgstr "korvattu"
 
-#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270
+#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269
 msgid "undo"
 msgstr "kumoa"
 
@@ -92,11 +92,11 @@ msgstr "kumoa"
 msgid "with"
 msgstr "käyttäen"
 
-#: js/filelist.js:268
+#: js/filelist.js:267
 msgid "unshared"
 msgstr ""
 
-#: js/filelist.js:270
+#: js/filelist.js:269
 msgid "deleted"
 msgstr "poistettu"
 
@@ -129,27 +129,35 @@ msgstr "Tiedoston lähetys on meneillään. Sivulta poistuminen nyt peruu tiedos
 msgid "Invalid name, '/' is not allowed."
 msgstr "Virheellinen nimi, merkki '/' ei ole sallittu."
 
-#: js/files.js:746 templates/index.php:56
+#: js/files.js:666
+msgid "files scanned"
+msgstr ""
+
+#: js/files.js:674
+msgid "error while scanning"
+msgstr ""
+
+#: js/files.js:748 templates/index.php:56
 msgid "Size"
 msgstr "Koko"
 
-#: js/files.js:747 templates/index.php:58
+#: js/files.js:749 templates/index.php:58
 msgid "Modified"
 msgstr "Muutettu"
 
-#: js/files.js:774
+#: js/files.js:776
 msgid "folder"
 msgstr "kansio"
 
-#: js/files.js:776
+#: js/files.js:778
 msgid "folders"
 msgstr "kansiota"
 
-#: js/files.js:784
+#: js/files.js:786
 msgid "file"
 msgstr "tiedosto"
 
-#: js/files.js:786
+#: js/files.js:788
 msgid "files"
 msgstr "tiedostoa"
 
diff --git a/l10n/fi_FI/files_versions.po b/l10n/fi_FI/files_versions.po
index 7d47ae421418e4107150c132b5ffef499ad18957..8be1e0f643daae4941a13e709ca89e627db0567b 100644
--- a/l10n/fi_FI/files_versions.po
+++ b/l10n/fi_FI/files_versions.po
@@ -8,15 +8,15 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-03 02:04+0200\n"
-"PO-Revision-Date: 2012-09-02 15:39+0000\n"
-"Last-Translator: Jiri Grönroos <jiri.gronroos@iki.fi>\n"
+"POT-Creation-Date: 2012-09-17 02:02+0200\n"
+"PO-Revision-Date: 2012-09-17 00:04+0000\n"
+"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: fi_FI\n"
-"Plural-Forms: nplurals=2; plural=(n != 1)\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #: js/settings-personal.js:31 templates/settings-personal.php:10
 msgid "Expire all versions"
@@ -31,5 +31,9 @@ msgid "This will delete all existing backup versions of your files"
 msgstr "Tämä poistaa kaikki tiedostojesi olemassa olevat varmuuskopioversiot"
 
 #: templates/settings.php:3
-msgid "Enable Files Versioning"
-msgstr "Käytä tiedostojen versiointia"
+msgid "Files Versioning"
+msgstr ""
+
+#: templates/settings.php:4
+msgid "Enable"
+msgstr ""
diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po
index 2f9cfc602d5bbd2c5de8188a1dc1dd9c542eccbb..5b6f5d055cc8d002aadb4579cdbd2f659148ec9f 100644
--- a/l10n/fi_FI/settings.po
+++ b/l10n/fi_FI/settings.po
@@ -10,9 +10,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-06 02:02+0200\n"
-"PO-Revision-Date: 2012-09-05 16:14+0000\n"
-"Last-Translator: teho <tehoratopato@gmail.com>\n"
+"POT-Creation-Date: 2012-09-17 02:03+0200\n"
+"PO-Revision-Date: 2012-09-17 00:03+0000\n"
+"Last-Translator: I Robot <thomas.mueller@tmit.eu>\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"
@@ -37,6 +37,10 @@ msgstr "Ryhmä on jo olemassa"
 msgid "Unable to add group"
 msgstr "Ryhmän lisäys epäonnistui"
 
+#: ajax/enableapp.php:13
+msgid "Could not enable app. "
+msgstr "Sovelluksen käyttöönotto epäonnistui."
+
 #: ajax/lostpassword.php:14
 msgid "Email saved"
 msgstr "Sähköposti tallennettu"
@@ -112,63 +116,67 @@ msgstr "Data-kansio ja tiedostot ovat ehkä saavutettavissa Internetistä. .htac
 msgid "Cron"
 msgstr "Cron"
 
-#: templates/admin.php:33
-msgid "execute one task with each page loaded"
-msgstr "suorita yksi tehtävä jokaisella ladatulla sivulla"
+#: templates/admin.php:37
+msgid "Execute one task with each page loaded"
+msgstr ""
 
-#: templates/admin.php:35
-msgid "cron.php is registered at a webcron service"
-msgstr "cron.php on rekisteröity webcron-palvelulla"
+#: templates/admin.php:43
+msgid ""
+"cron.php is registered at a webcron service. Call the cron.php page in the "
+"owncloud root once a minute over http."
+msgstr ""
 
-#: templates/admin.php:37
-msgid "use systems cron service"
-msgstr "käytä järjestelmän cron-palvelua"
+#: templates/admin.php:49
+msgid ""
+"Use systems cron service. Call the cron.php file in the owncloud folder via "
+"a system cronjob once a minute."
+msgstr ""
 
-#: templates/admin.php:41
-msgid "Share API"
-msgstr "Jaon ohelmointirajapinta (Share API)"
+#: templates/admin.php:56
+msgid "Sharing"
+msgstr ""
 
-#: templates/admin.php:46
+#: templates/admin.php:61
 msgid "Enable Share API"
 msgstr "Ota käyttöön jaon ohjelmoitirajapinta (Share API)"
 
-#: templates/admin.php:47
+#: templates/admin.php:62
 msgid "Allow apps to use the Share API"
 msgstr "Salli sovellusten käyttää jaon ohjelmointirajapintaa (Share API)"
 
-#: templates/admin.php:51
+#: templates/admin.php:67
 msgid "Allow links"
 msgstr "Salli linkit"
 
-#: templates/admin.php:52
+#: templates/admin.php:68
 msgid "Allow users to share items to the public with links"
 msgstr "Salli käyttäjien jakaa kohteita julkisesti linkkejä käyttäen"
 
-#: templates/admin.php:56
+#: templates/admin.php:73
 msgid "Allow resharing"
 msgstr "Salli uudelleenjako"
 
-#: templates/admin.php:57
+#: templates/admin.php:74
 msgid "Allow users to share items shared with them again"
 msgstr "Salli käyttäjien jakaa heille itselleen jaettuja tietoja edelleen"
 
-#: templates/admin.php:60
+#: templates/admin.php:79
 msgid "Allow users to share with anyone"
 msgstr "Salli käyttäjien jakaa kohteita kenen tahansa kanssa"
 
-#: templates/admin.php:62
+#: templates/admin.php:81
 msgid "Allow users to only share with users in their groups"
 msgstr "Salli käyttäjien jakaa kohteita vain omien ryhmien jäsenten kesken"
 
-#: templates/admin.php:69
+#: templates/admin.php:88
 msgid "Log"
 msgstr "Loki"
 
-#: templates/admin.php:97
+#: templates/admin.php:116
 msgid "More"
 msgstr "Lisää"
 
-#: templates/admin.php:105
+#: templates/admin.php:124
 msgid ""
 "Developed by the <a href=\"http://ownCloud.org/contact\" "
 "target=\"_blank\">ownCloud community</a>, the <a "
diff --git a/l10n/fr/files.po b/l10n/fr/files.po
index c60dcb1567c60c79092f1bd280f87ca366d66aa1..6d8496dc8333a608aab4010722931b60ecd203a0 100644
--- a/l10n/fr/files.po
+++ b/l10n/fr/files.po
@@ -16,9 +16,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-12 02:01+0200\n"
-"PO-Revision-Date: 2012-09-11 14:35+0000\n"
-"Last-Translator: Geoffrey Guerrier <geoffrey.guerrier@gmail.com>\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
+"PO-Revision-Date: 2012-09-18 00:01+0000\n"
+"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -62,7 +62,7 @@ msgstr "Fichiers"
 
 #: js/fileactions.js:108 templates/index.php:62
 msgid "Unshare"
-msgstr ""
+msgstr "Ne plus partager"
 
 #: js/fileactions.js:110 templates/index.php:64
 msgid "Delete"
@@ -88,7 +88,7 @@ msgstr "annuler"
 msgid "replaced"
 msgstr "remplacé"
 
-#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270
+#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269
 msgid "undo"
 msgstr "annuler"
 
@@ -96,11 +96,11 @@ msgstr "annuler"
 msgid "with"
 msgstr "avec"
 
-#: js/filelist.js:268
+#: js/filelist.js:267
 msgid "unshared"
 msgstr "non partagée"
 
-#: js/filelist.js:270
+#: js/filelist.js:269
 msgid "deleted"
 msgstr "supprimé"
 
@@ -133,27 +133,35 @@ msgstr "L'envoi du fichier est en cours. Quitter cette page maintenant annulera
 msgid "Invalid name, '/' is not allowed."
 msgstr "Nom invalide, '/' n'est pas autorisé."
 
-#: js/files.js:746 templates/index.php:56
+#: js/files.js:666
+msgid "files scanned"
+msgstr ""
+
+#: js/files.js:674
+msgid "error while scanning"
+msgstr ""
+
+#: js/files.js:748 templates/index.php:56
 msgid "Size"
 msgstr "Taille"
 
-#: js/files.js:747 templates/index.php:58
+#: js/files.js:749 templates/index.php:58
 msgid "Modified"
 msgstr "Modifié"
 
-#: js/files.js:774
+#: js/files.js:776
 msgid "folder"
 msgstr "dossier"
 
-#: js/files.js:776
+#: js/files.js:778
 msgid "folders"
 msgstr "dossiers"
 
-#: js/files.js:784
+#: js/files.js:786
 msgid "file"
 msgstr "fichier"
 
-#: js/files.js:786
+#: js/files.js:788
 msgid "files"
 msgstr "fichiers"
 
diff --git a/l10n/fr/files_versions.po b/l10n/fr/files_versions.po
index 707718935247fdb0ad1b85be8584c2ba2b73a21a..ac58bbea0b541d2ee9040364a8415eca4ce2d96f 100644
--- a/l10n/fr/files_versions.po
+++ b/l10n/fr/files_versions.po
@@ -8,15 +8,15 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-02 02:01+0200\n"
-"PO-Revision-Date: 2012-09-01 16:41+0000\n"
-"Last-Translator: Romain DEP. <rom1dep@gmail.com>\n"
+"POT-Creation-Date: 2012-09-17 02:02+0200\n"
+"PO-Revision-Date: 2012-09-17 00:04+0000\n"
+"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: fr\n"
-"Plural-Forms: nplurals=2; plural=(n > 1)\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
 
 #: js/settings-personal.js:31 templates/settings-personal.php:10
 msgid "Expire all versions"
@@ -31,5 +31,9 @@ msgid "This will delete all existing backup versions of your files"
 msgstr "Cette opération va effacer toutes les versions intermédiaires de vos fichiers (et ne garder que la dernière version en date)."
 
 #: templates/settings.php:3
-msgid "Enable Files Versioning"
-msgstr "Activer le versionnage"
+msgid "Files Versioning"
+msgstr ""
+
+#: templates/settings.php:4
+msgid "Enable"
+msgstr ""
diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po
index ae731ca30bf64cdb0ba23d5e60e4f62e48515bfa..7e5fba19f044cecc95ad6d4c9166c4e3d5af2a65 100644
--- a/l10n/fr/settings.po
+++ b/l10n/fr/settings.po
@@ -19,9 +19,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-11 02:02+0200\n"
-"PO-Revision-Date: 2012-09-10 20:41+0000\n"
-"Last-Translator: Brice <bmaron@gmail.com>\n"
+"POT-Creation-Date: 2012-09-17 02:03+0200\n"
+"PO-Revision-Date: 2012-09-17 00:03+0000\n"
+"Last-Translator: I Robot <thomas.mueller@tmit.eu>\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"
@@ -46,6 +46,10 @@ msgstr "Ce groupe existe déjà"
 msgid "Unable to add group"
 msgstr "Impossible d'ajouter le groupe"
 
+#: ajax/enableapp.php:13
+msgid "Could not enable app. "
+msgstr ""
+
 #: ajax/lostpassword.php:14
 msgid "Email saved"
 msgstr "E-mail sauvegardé"
@@ -121,63 +125,67 @@ msgstr "Votre répertoire de données et vos fichiers sont probablement accessib
 msgid "Cron"
 msgstr "Cron"
 
-#: templates/admin.php:33
-msgid "execute one task with each page loaded"
-msgstr "exécuter une tâche pour chaque page chargée"
+#: templates/admin.php:37
+msgid "Execute one task with each page loaded"
+msgstr ""
 
-#: templates/admin.php:35
-msgid "cron.php is registered at a webcron service"
-msgstr "cron.php est enregistré comme un service webcron"
+#: templates/admin.php:43
+msgid ""
+"cron.php is registered at a webcron service. Call the cron.php page in the "
+"owncloud root once a minute over http."
+msgstr ""
 
-#: templates/admin.php:37
-msgid "use systems cron service"
-msgstr "utiliser le service cron du système "
+#: templates/admin.php:49
+msgid ""
+"Use systems cron service. Call the cron.php file in the owncloud folder via "
+"a system cronjob once a minute."
+msgstr ""
 
-#: templates/admin.php:41
-msgid "Share API"
-msgstr "API de partage"
+#: templates/admin.php:56
+msgid "Sharing"
+msgstr ""
 
-#: templates/admin.php:46
+#: templates/admin.php:61
 msgid "Enable Share API"
 msgstr "Activer l'API de partage"
 
-#: templates/admin.php:47
+#: templates/admin.php:62
 msgid "Allow apps to use the Share API"
 msgstr "Autoriser les applications à utiliser l'API de partage"
 
-#: templates/admin.php:51
+#: templates/admin.php:67
 msgid "Allow links"
 msgstr "Autoriser les liens"
 
-#: templates/admin.php:52
+#: templates/admin.php:68
 msgid "Allow users to share items to the public with links"
 msgstr "Autoriser les utilisateurs à partager du contenu public avec des liens"
 
-#: templates/admin.php:56
+#: templates/admin.php:73
 msgid "Allow resharing"
 msgstr "Autoriser le re-partage"
 
-#: templates/admin.php:57
+#: templates/admin.php:74
 msgid "Allow users to share items shared with them again"
 msgstr "Autoriser les utilisateurs à partager des éléments déjà partagés entre eux"
 
-#: templates/admin.php:60
+#: templates/admin.php:79
 msgid "Allow users to share with anyone"
 msgstr "Autoriser les utilisateurs à partager avec tout le monde"
 
-#: templates/admin.php:62
+#: templates/admin.php:81
 msgid "Allow users to only share with users in their groups"
 msgstr "Autoriser les utilisateurs à ne partager qu'avec les utilisateurs dans leurs groupes"
 
-#: templates/admin.php:69
+#: templates/admin.php:88
 msgid "Log"
 msgstr "Journaux"
 
-#: templates/admin.php:97
+#: templates/admin.php:116
 msgid "More"
 msgstr "Plus"
 
-#: templates/admin.php:105
+#: templates/admin.php:124
 msgid ""
 "Developed by the <a href=\"http://ownCloud.org/contact\" "
 "target=\"_blank\">ownCloud community</a>, the <a "
diff --git a/l10n/gl/files.po b/l10n/gl/files.po
index f51ab64695bed107f58869ffa93dcaaa1145a425..cd392ff6bca6994f8ca7d33d4d343c8dc1075f3c 100644
--- a/l10n/gl/files.po
+++ b/l10n/gl/files.po
@@ -9,8 +9,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-08 02:01+0200\n"
-"PO-Revision-Date: 2012-09-08 00:02+0000\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
+"PO-Revision-Date: 2012-09-18 00:01+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n"
 "MIME-Version: 1.0\n"
@@ -81,7 +81,7 @@ msgstr "cancelar"
 msgid "replaced"
 msgstr "substituído"
 
-#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270
+#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269
 msgid "undo"
 msgstr "desfacer"
 
@@ -89,11 +89,11 @@ msgstr "desfacer"
 msgid "with"
 msgstr "con"
 
-#: js/filelist.js:268
+#: js/filelist.js:267
 msgid "unshared"
 msgstr ""
 
-#: js/filelist.js:270
+#: js/filelist.js:269
 msgid "deleted"
 msgstr "eliminado"
 
@@ -126,27 +126,35 @@ msgstr ""
 msgid "Invalid name, '/' is not allowed."
 msgstr "Nome non válido, '/' non está permitido."
 
-#: js/files.js:746 templates/index.php:56
+#: js/files.js:666
+msgid "files scanned"
+msgstr ""
+
+#: js/files.js:674
+msgid "error while scanning"
+msgstr ""
+
+#: js/files.js:748 templates/index.php:56
 msgid "Size"
 msgstr "Tamaño"
 
-#: js/files.js:747 templates/index.php:58
+#: js/files.js:749 templates/index.php:58
 msgid "Modified"
 msgstr "Modificado"
 
-#: js/files.js:774
+#: js/files.js:776
 msgid "folder"
 msgstr "cartafol"
 
-#: js/files.js:776
+#: js/files.js:778
 msgid "folders"
 msgstr "cartafoles"
 
-#: js/files.js:784
+#: js/files.js:786
 msgid "file"
 msgstr "ficheiro"
 
-#: js/files.js:786
+#: js/files.js:788
 msgid "files"
 msgstr "ficheiros"
 
diff --git a/l10n/gl/files_versions.po b/l10n/gl/files_versions.po
index 035f8080242bd1a828ef6e4e3bfc37f8e1c43fa3..ceb964a6b7bcf052186d62e11123978bb065c22d 100644
--- a/l10n/gl/files_versions.po
+++ b/l10n/gl/files_versions.po
@@ -7,15 +7,15 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-01 13:35+0200\n"
-"PO-Revision-Date: 2012-09-01 11:35+0000\n"
+"POT-Creation-Date: 2012-09-17 02:02+0200\n"
+"PO-Revision-Date: 2012-09-17 00:04+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: gl\n"
-"Plural-Forms: nplurals=2; plural=(n != 1)\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #: js/settings-personal.js:31 templates/settings-personal.php:10
 msgid "Expire all versions"
@@ -30,5 +30,9 @@ msgid "This will delete all existing backup versions of your files"
 msgstr ""
 
 #: templates/settings.php:3
-msgid "Enable Files Versioning"
+msgid "Files Versioning"
+msgstr ""
+
+#: templates/settings.php:4
+msgid "Enable"
 msgstr ""
diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po
index 60828ee96fa166413a6437606fa051811acfa727..306515b40d44c90598aa686fd327f01becfae97e 100644
--- a/l10n/gl/settings.po
+++ b/l10n/gl/settings.po
@@ -9,8 +9,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-05 02:02+0200\n"
-"PO-Revision-Date: 2012-09-05 00:02+0000\n"
+"POT-Creation-Date: 2012-09-17 02:03+0200\n"
+"PO-Revision-Date: 2012-09-17 00:03+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n"
 "MIME-Version: 1.0\n"
@@ -36,6 +36,10 @@ msgstr ""
 msgid "Unable to add group"
 msgstr ""
 
+#: ajax/enableapp.php:13
+msgid "Could not enable app. "
+msgstr ""
+
 #: ajax/lostpassword.php:14
 msgid "Email saved"
 msgstr "Correo electrónico gardado"
@@ -111,63 +115,67 @@ msgstr ""
 msgid "Cron"
 msgstr "Cron"
 
-#: templates/admin.php:33
-msgid "execute one task with each page loaded"
-msgstr "executar unha tarefa con cada páxina cargada"
+#: templates/admin.php:37
+msgid "Execute one task with each page loaded"
+msgstr ""
 
-#: templates/admin.php:35
-msgid "cron.php is registered at a webcron service"
-msgstr "cron.php está rexistrada como un servizo webcron"
+#: templates/admin.php:43
+msgid ""
+"cron.php is registered at a webcron service. Call the cron.php page in the "
+"owncloud root once a minute over http."
+msgstr ""
 
-#: templates/admin.php:37
-msgid "use systems cron service"
-msgstr "utilice o servizo cron do sistema"
+#: templates/admin.php:49
+msgid ""
+"Use systems cron service. Call the cron.php file in the owncloud folder via "
+"a system cronjob once a minute."
+msgstr ""
 
-#: templates/admin.php:41
-msgid "Share API"
+#: templates/admin.php:56
+msgid "Sharing"
 msgstr ""
 
-#: templates/admin.php:46
+#: templates/admin.php:61
 msgid "Enable Share API"
 msgstr ""
 
-#: templates/admin.php:47
+#: templates/admin.php:62
 msgid "Allow apps to use the Share API"
 msgstr ""
 
-#: templates/admin.php:51
+#: templates/admin.php:67
 msgid "Allow links"
 msgstr ""
 
-#: templates/admin.php:52
+#: templates/admin.php:68
 msgid "Allow users to share items to the public with links"
 msgstr ""
 
-#: templates/admin.php:56
+#: templates/admin.php:73
 msgid "Allow resharing"
 msgstr ""
 
-#: templates/admin.php:57
+#: templates/admin.php:74
 msgid "Allow users to share items shared with them again"
 msgstr ""
 
-#: templates/admin.php:60
+#: templates/admin.php:79
 msgid "Allow users to share with anyone"
 msgstr ""
 
-#: templates/admin.php:62
+#: templates/admin.php:81
 msgid "Allow users to only share with users in their groups"
 msgstr ""
 
-#: templates/admin.php:69
+#: templates/admin.php:88
 msgid "Log"
 msgstr "Conectar"
 
-#: templates/admin.php:97
+#: templates/admin.php:116
 msgid "More"
 msgstr "Máis"
 
-#: templates/admin.php:105
+#: templates/admin.php:124
 msgid ""
 "Developed by the <a href=\"http://ownCloud.org/contact\" "
 "target=\"_blank\">ownCloud community</a>, the <a "
diff --git a/l10n/he/core.po b/l10n/he/core.po
index babf202fb320fbc0bf1558d32324c55c083819b2..3c738506dd0586cd60fd8908f475094b8c7e3198 100644
--- a/l10n/he/core.po
+++ b/l10n/he/core.po
@@ -3,6 +3,7 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
+# Dovix Dovix <dovix2003@gmail.com>, 2012.
 #   <ido.parag@gmail.com>, 2012.
 #   <tomerc+transifex.net@gmail.com>, 2011.
 # Yaron Shahrabani <sh.yaron@gmail.com>, 2011, 2012.
@@ -10,9 +11,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-06 02:02+0200\n"
-"PO-Revision-Date: 2012-09-06 00:03+0000\n"
-"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
+"POT-Creation-Date: 2012-09-17 02:02+0200\n"
+"PO-Revision-Date: 2012-09-16 18:05+0000\n"
+"Last-Translator: Dovix Dovix <dovix2003@gmail.com>\n"
 "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -32,55 +33,55 @@ msgstr "אין קטגוריה להוספה?"
 msgid "This category already exists: "
 msgstr "קטגוריה זאת כבר קיימת: "
 
-#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61
+#: js/js.js:214 templates/layout.user.php:54 templates/layout.user.php:55
 msgid "Settings"
 msgstr "הגדרות"
 
-#: js/js.js:593
+#: js/js.js:642
 msgid "January"
 msgstr "ינואר"
 
-#: js/js.js:593
+#: js/js.js:642
 msgid "February"
 msgstr "פברואר"
 
-#: js/js.js:593
+#: js/js.js:642
 msgid "March"
 msgstr "מרץ"
 
-#: js/js.js:593
+#: js/js.js:642
 msgid "April"
 msgstr "אפריל"
 
-#: js/js.js:593
+#: js/js.js:642
 msgid "May"
 msgstr "מאי"
 
-#: js/js.js:593
+#: js/js.js:642
 msgid "June"
 msgstr "יוני"
 
-#: js/js.js:594
+#: js/js.js:643
 msgid "July"
 msgstr "יולי"
 
-#: js/js.js:594
+#: js/js.js:643
 msgid "August"
 msgstr "אוגוסט"
 
-#: js/js.js:594
+#: js/js.js:643
 msgid "September"
 msgstr "ספטמבר"
 
-#: js/js.js:594
+#: js/js.js:643
 msgid "October"
 msgstr "אוקטובר"
 
-#: js/js.js:594
+#: js/js.js:643
 msgid "November"
 msgstr "נובמבר"
 
-#: js/js.js:594
+#: js/js.js:643
 msgid "December"
 msgstr "דצמבר"
 
@@ -228,7 +229,7 @@ msgstr "שם מסד הנתונים"
 
 #: templates/installation.php:109
 msgid "Database tablespace"
-msgstr ""
+msgstr "מרחב הכתובות של מסד הנתונים"
 
 #: templates/installation.php:115
 msgid "Database host"
@@ -238,11 +239,11 @@ msgstr "שרת בסיס נתונים"
 msgid "Finish setup"
 msgstr "סיום התקנה"
 
-#: templates/layout.guest.php:42
+#: templates/layout.guest.php:36
 msgid "web services under your control"
 msgstr "שירותי רשת בשליטתך"
 
-#: templates/layout.user.php:45
+#: templates/layout.user.php:39
 msgid "Log out"
 msgstr "התנתקות"
 
diff --git a/l10n/he/files.po b/l10n/he/files.po
index 5cac6d4e90d5f1343af496620b0c3f5fb5c555e2..5a7931d12ad3e98aa90acd64e0e7ba57895b6776 100644
--- a/l10n/he/files.po
+++ b/l10n/he/files.po
@@ -3,6 +3,7 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
+# Dovix Dovix <dovix2003@gmail.com>, 2012.
 #   <ido.parag@gmail.com>, 2012.
 #   <tomerc+transifex.net@gmail.com>, 2011.
 # Yaron Shahrabani <sh.yaron@gmail.com>, 2012.
@@ -10,8 +11,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-08 02:01+0200\n"
-"PO-Revision-Date: 2012-09-08 00:02+0000\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
+"PO-Revision-Date: 2012-09-18 00:01+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n"
 "MIME-Version: 1.0\n"
@@ -64,7 +65,7 @@ msgstr "מחיקה"
 
 #: js/filelist.js:186 js/filelist.js:188
 msgid "already exists"
-msgstr ""
+msgstr "כבר קיים"
 
 #: js/filelist.js:186 js/filelist.js:188
 msgid "replace"
@@ -82,7 +83,7 @@ msgstr ""
 msgid "replaced"
 msgstr ""
 
-#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270
+#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269
 msgid "undo"
 msgstr ""
 
@@ -90,11 +91,11 @@ msgstr ""
 msgid "with"
 msgstr ""
 
-#: js/filelist.js:268
+#: js/filelist.js:267
 msgid "unshared"
 msgstr ""
 
-#: js/filelist.js:270
+#: js/filelist.js:269
 msgid "deleted"
 msgstr ""
 
@@ -127,27 +128,35 @@ msgstr ""
 msgid "Invalid name, '/' is not allowed."
 msgstr "שם לא חוקי, '/' אסור לשימוש."
 
-#: js/files.js:746 templates/index.php:56
+#: js/files.js:666
+msgid "files scanned"
+msgstr ""
+
+#: js/files.js:674
+msgid "error while scanning"
+msgstr ""
+
+#: js/files.js:748 templates/index.php:56
 msgid "Size"
 msgstr "גודל"
 
-#: js/files.js:747 templates/index.php:58
+#: js/files.js:749 templates/index.php:58
 msgid "Modified"
 msgstr "זמן שינוי"
 
-#: js/files.js:774
+#: js/files.js:776
 msgid "folder"
 msgstr "תקיה"
 
-#: js/files.js:776
+#: js/files.js:778
 msgid "folders"
 msgstr "תקיות"
 
-#: js/files.js:784
+#: js/files.js:786
 msgid "file"
 msgstr "קובץ"
 
-#: js/files.js:786
+#: js/files.js:788
 msgid "files"
 msgstr "קבצים"
 
diff --git a/l10n/he/files_versions.po b/l10n/he/files_versions.po
index e0cb0e526e39b9c87246c7052d5e63ac2b24c6cc..cb49463e169551d92f7a7aca3978414a94cfb672 100644
--- a/l10n/he/files_versions.po
+++ b/l10n/he/files_versions.po
@@ -8,9 +8,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-05 02:01+0200\n"
-"PO-Revision-Date: 2012-09-04 23:22+0000\n"
-"Last-Translator: Tomer Cohen <tomerc+transifex.net@gmail.com>\n"
+"POT-Creation-Date: 2012-09-17 02:02+0200\n"
+"PO-Revision-Date: 2012-09-17 00:04+0000\n"
+"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -31,5 +31,9 @@ msgid "This will delete all existing backup versions of your files"
 msgstr "פעולה זו תמחק את כל גיבויי הגרסאות הקיימים של הקבצים שלך"
 
 #: templates/settings.php:3
-msgid "Enable Files Versioning"
-msgstr "הפעלת ניהול גרסאות לקבצים"
+msgid "Files Versioning"
+msgstr ""
+
+#: templates/settings.php:4
+msgid "Enable"
+msgstr ""
diff --git a/l10n/he/settings.po b/l10n/he/settings.po
index bd56d364279b24cbb68d7dcd2431c54ee7b7a6c3..b1857fd4bcac2de084c2b78436897e7776fcbb20 100644
--- a/l10n/he/settings.po
+++ b/l10n/he/settings.po
@@ -10,8 +10,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-05 02:02+0200\n"
-"PO-Revision-Date: 2012-09-05 00:02+0000\n"
+"POT-Creation-Date: 2012-09-17 02:03+0200\n"
+"PO-Revision-Date: 2012-09-17 00:03+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n"
 "MIME-Version: 1.0\n"
@@ -37,6 +37,10 @@ msgstr ""
 msgid "Unable to add group"
 msgstr ""
 
+#: ajax/enableapp.php:13
+msgid "Could not enable app. "
+msgstr ""
+
 #: ajax/lostpassword.php:14
 msgid "Email saved"
 msgstr "הדוא״ל נשמר"
@@ -112,63 +116,67 @@ msgstr ""
 msgid "Cron"
 msgstr ""
 
-#: templates/admin.php:33
-msgid "execute one task with each page loaded"
+#: templates/admin.php:37
+msgid "Execute one task with each page loaded"
 msgstr ""
 
-#: templates/admin.php:35
-msgid "cron.php is registered at a webcron service"
+#: templates/admin.php:43
+msgid ""
+"cron.php is registered at a webcron service. Call the cron.php page in the "
+"owncloud root once a minute over http."
 msgstr ""
 
-#: templates/admin.php:37
-msgid "use systems cron service"
+#: templates/admin.php:49
+msgid ""
+"Use systems cron service. Call the cron.php file in the owncloud folder via "
+"a system cronjob once a minute."
 msgstr ""
 
-#: templates/admin.php:41
-msgid "Share API"
+#: templates/admin.php:56
+msgid "Sharing"
 msgstr ""
 
-#: templates/admin.php:46
+#: templates/admin.php:61
 msgid "Enable Share API"
 msgstr ""
 
-#: templates/admin.php:47
+#: templates/admin.php:62
 msgid "Allow apps to use the Share API"
 msgstr ""
 
-#: templates/admin.php:51
+#: templates/admin.php:67
 msgid "Allow links"
 msgstr ""
 
-#: templates/admin.php:52
+#: templates/admin.php:68
 msgid "Allow users to share items to the public with links"
 msgstr ""
 
-#: templates/admin.php:56
+#: templates/admin.php:73
 msgid "Allow resharing"
 msgstr ""
 
-#: templates/admin.php:57
+#: templates/admin.php:74
 msgid "Allow users to share items shared with them again"
 msgstr ""
 
-#: templates/admin.php:60
+#: templates/admin.php:79
 msgid "Allow users to share with anyone"
 msgstr ""
 
-#: templates/admin.php:62
+#: templates/admin.php:81
 msgid "Allow users to only share with users in their groups"
 msgstr ""
 
-#: templates/admin.php:69
+#: templates/admin.php:88
 msgid "Log"
 msgstr "יומן"
 
-#: templates/admin.php:97
+#: templates/admin.php:116
 msgid "More"
 msgstr "עוד"
 
-#: templates/admin.php:105
+#: templates/admin.php:124
 msgid ""
 "Developed by the <a href=\"http://ownCloud.org/contact\" "
 "target=\"_blank\">ownCloud community</a>, the <a "
diff --git a/l10n/hi/files.po b/l10n/hi/files.po
index 238575d5e479b3dda3661dd80822a32d53770e06..276a0baded9c270f4971a7ff3b064d9205c3a781 100644
--- a/l10n/hi/files.po
+++ b/l10n/hi/files.po
@@ -7,8 +7,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-08 02:01+0200\n"
-"PO-Revision-Date: 2012-09-08 00:02+0000\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
+"PO-Revision-Date: 2012-09-18 00:02+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n"
 "MIME-Version: 1.0\n"
@@ -79,7 +79,7 @@ msgstr ""
 msgid "replaced"
 msgstr ""
 
-#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270
+#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269
 msgid "undo"
 msgstr ""
 
@@ -87,11 +87,11 @@ msgstr ""
 msgid "with"
 msgstr ""
 
-#: js/filelist.js:268
+#: js/filelist.js:267
 msgid "unshared"
 msgstr ""
 
-#: js/filelist.js:270
+#: js/filelist.js:269
 msgid "deleted"
 msgstr ""
 
@@ -124,27 +124,35 @@ msgstr ""
 msgid "Invalid name, '/' is not allowed."
 msgstr ""
 
-#: js/files.js:746 templates/index.php:56
+#: js/files.js:666
+msgid "files scanned"
+msgstr ""
+
+#: js/files.js:674
+msgid "error while scanning"
+msgstr ""
+
+#: js/files.js:748 templates/index.php:56
 msgid "Size"
 msgstr ""
 
-#: js/files.js:747 templates/index.php:58
+#: js/files.js:749 templates/index.php:58
 msgid "Modified"
 msgstr ""
 
-#: js/files.js:774
+#: js/files.js:776
 msgid "folder"
 msgstr ""
 
-#: js/files.js:776
+#: js/files.js:778
 msgid "folders"
 msgstr ""
 
-#: js/files.js:784
+#: js/files.js:786
 msgid "file"
 msgstr ""
 
-#: js/files.js:786
+#: js/files.js:788
 msgid "files"
 msgstr ""
 
diff --git a/l10n/hi/files_versions.po b/l10n/hi/files_versions.po
index c1e27c1c31ddc2e26f1ae409fb81b17fd09f8f5f..af2c20c4b40b1fe0edddd594b4468ba9f0b15780 100644
--- a/l10n/hi/files_versions.po
+++ b/l10n/hi/files_versions.po
@@ -7,15 +7,15 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-01 13:35+0200\n"
-"PO-Revision-Date: 2012-09-01 11:35+0000\n"
+"POT-Creation-Date: 2012-09-17 02:02+0200\n"
+"PO-Revision-Date: 2012-09-17 00:04+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: hi\n"
-"Plural-Forms: nplurals=2; plural=(n != 1)\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #: js/settings-personal.js:31 templates/settings-personal.php:10
 msgid "Expire all versions"
@@ -30,5 +30,9 @@ msgid "This will delete all existing backup versions of your files"
 msgstr ""
 
 #: templates/settings.php:3
-msgid "Enable Files Versioning"
+msgid "Files Versioning"
+msgstr ""
+
+#: templates/settings.php:4
+msgid "Enable"
 msgstr ""
diff --git a/l10n/hi/settings.po b/l10n/hi/settings.po
index db0cc7e30fa1f69b9bb7e684ff09b17cd7b983e5..1b137320efb42a9dd19f7084cbe4dc8a874bfcdd 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: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-05 02:02+0200\n"
-"PO-Revision-Date: 2012-09-05 00:02+0000\n"
+"POT-Creation-Date: 2012-09-17 02:03+0200\n"
+"PO-Revision-Date: 2012-09-17 00:03+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n"
 "MIME-Version: 1.0\n"
@@ -34,6 +34,10 @@ msgstr ""
 msgid "Unable to add group"
 msgstr ""
 
+#: ajax/enableapp.php:13
+msgid "Could not enable app. "
+msgstr ""
+
 #: ajax/lostpassword.php:14
 msgid "Email saved"
 msgstr ""
@@ -109,63 +113,67 @@ msgstr ""
 msgid "Cron"
 msgstr ""
 
-#: templates/admin.php:33
-msgid "execute one task with each page loaded"
+#: templates/admin.php:37
+msgid "Execute one task with each page loaded"
 msgstr ""
 
-#: templates/admin.php:35
-msgid "cron.php is registered at a webcron service"
+#: templates/admin.php:43
+msgid ""
+"cron.php is registered at a webcron service. Call the cron.php page in the "
+"owncloud root once a minute over http."
 msgstr ""
 
-#: templates/admin.php:37
-msgid "use systems cron service"
+#: templates/admin.php:49
+msgid ""
+"Use systems cron service. Call the cron.php file in the owncloud folder via "
+"a system cronjob once a minute."
 msgstr ""
 
-#: templates/admin.php:41
-msgid "Share API"
+#: templates/admin.php:56
+msgid "Sharing"
 msgstr ""
 
-#: templates/admin.php:46
+#: templates/admin.php:61
 msgid "Enable Share API"
 msgstr ""
 
-#: templates/admin.php:47
+#: templates/admin.php:62
 msgid "Allow apps to use the Share API"
 msgstr ""
 
-#: templates/admin.php:51
+#: templates/admin.php:67
 msgid "Allow links"
 msgstr ""
 
-#: templates/admin.php:52
+#: templates/admin.php:68
 msgid "Allow users to share items to the public with links"
 msgstr ""
 
-#: templates/admin.php:56
+#: templates/admin.php:73
 msgid "Allow resharing"
 msgstr ""
 
-#: templates/admin.php:57
+#: templates/admin.php:74
 msgid "Allow users to share items shared with them again"
 msgstr ""
 
-#: templates/admin.php:60
+#: templates/admin.php:79
 msgid "Allow users to share with anyone"
 msgstr ""
 
-#: templates/admin.php:62
+#: templates/admin.php:81
 msgid "Allow users to only share with users in their groups"
 msgstr ""
 
-#: templates/admin.php:69
+#: templates/admin.php:88
 msgid "Log"
 msgstr ""
 
-#: templates/admin.php:97
+#: templates/admin.php:116
 msgid "More"
 msgstr ""
 
-#: templates/admin.php:105
+#: templates/admin.php:124
 msgid ""
 "Developed by the <a href=\"http://ownCloud.org/contact\" "
 "target=\"_blank\">ownCloud community</a>, the <a "
diff --git a/l10n/hr/files.po b/l10n/hr/files.po
index c7d3870a5a142761399548399fc022b8e5f33ceb..00012d604e9be1b9d9a3ecc3521083f7d5c8b37e 100644
--- a/l10n/hr/files.po
+++ b/l10n/hr/files.po
@@ -10,8 +10,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-08 02:01+0200\n"
-"PO-Revision-Date: 2012-09-08 00:02+0000\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
+"PO-Revision-Date: 2012-09-18 00:01+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n"
 "MIME-Version: 1.0\n"
@@ -82,7 +82,7 @@ msgstr "odustani"
 msgid "replaced"
 msgstr "zamjenjeno"
 
-#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270
+#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269
 msgid "undo"
 msgstr "vrati"
 
@@ -90,11 +90,11 @@ msgstr "vrati"
 msgid "with"
 msgstr "sa"
 
-#: js/filelist.js:268
+#: js/filelist.js:267
 msgid "unshared"
 msgstr ""
 
-#: js/filelist.js:270
+#: js/filelist.js:269
 msgid "deleted"
 msgstr "izbrisano"
 
@@ -127,27 +127,35 @@ msgstr ""
 msgid "Invalid name, '/' is not allowed."
 msgstr "Neispravan naziv, znak '/' nije dozvoljen."
 
-#: js/files.js:746 templates/index.php:56
+#: js/files.js:666
+msgid "files scanned"
+msgstr ""
+
+#: js/files.js:674
+msgid "error while scanning"
+msgstr ""
+
+#: js/files.js:748 templates/index.php:56
 msgid "Size"
 msgstr "Veličina"
 
-#: js/files.js:747 templates/index.php:58
+#: js/files.js:749 templates/index.php:58
 msgid "Modified"
 msgstr "Zadnja promjena"
 
-#: js/files.js:774
+#: js/files.js:776
 msgid "folder"
 msgstr "mapa"
 
-#: js/files.js:776
+#: js/files.js:778
 msgid "folders"
 msgstr "mape"
 
-#: js/files.js:784
+#: js/files.js:786
 msgid "file"
 msgstr "datoteka"
 
-#: js/files.js:786
+#: js/files.js:788
 msgid "files"
 msgstr "datoteke"
 
diff --git a/l10n/hr/files_versions.po b/l10n/hr/files_versions.po
index 46ae10682732959f71b8bd2f067e0746ffa2e39f..4037662f02629bebcbaad4db1a2d92af6f7f1b56 100644
--- a/l10n/hr/files_versions.po
+++ b/l10n/hr/files_versions.po
@@ -7,15 +7,15 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-01 13:35+0200\n"
-"PO-Revision-Date: 2012-09-01 11:35+0000\n"
+"POT-Creation-Date: 2012-09-17 02:02+0200\n"
+"PO-Revision-Date: 2012-09-17 00:04+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: hr\n"
-"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n"
+"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
 
 #: js/settings-personal.js:31 templates/settings-personal.php:10
 msgid "Expire all versions"
@@ -30,5 +30,9 @@ msgid "This will delete all existing backup versions of your files"
 msgstr ""
 
 #: templates/settings.php:3
-msgid "Enable Files Versioning"
+msgid "Files Versioning"
+msgstr ""
+
+#: templates/settings.php:4
+msgid "Enable"
 msgstr ""
diff --git a/l10n/hr/settings.po b/l10n/hr/settings.po
index ef3eacff14859f39552440c4692554f14fd94b7f..c6c42e61934c98e3c2d8af51e48967bb70c6c67c 100644
--- a/l10n/hr/settings.po
+++ b/l10n/hr/settings.po
@@ -10,8 +10,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-05 02:02+0200\n"
-"PO-Revision-Date: 2012-09-05 00:02+0000\n"
+"POT-Creation-Date: 2012-09-17 02:03+0200\n"
+"PO-Revision-Date: 2012-09-17 00:03+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n"
 "MIME-Version: 1.0\n"
@@ -37,6 +37,10 @@ msgstr ""
 msgid "Unable to add group"
 msgstr ""
 
+#: ajax/enableapp.php:13
+msgid "Could not enable app. "
+msgstr ""
+
 #: ajax/lostpassword.php:14
 msgid "Email saved"
 msgstr "Email spremljen"
@@ -112,63 +116,67 @@ msgstr ""
 msgid "Cron"
 msgstr "Cron"
 
-#: templates/admin.php:33
-msgid "execute one task with each page loaded"
+#: templates/admin.php:37
+msgid "Execute one task with each page loaded"
 msgstr ""
 
-#: templates/admin.php:35
-msgid "cron.php is registered at a webcron service"
-msgstr "cron.php je registriran kod webcron servisa"
+#: templates/admin.php:43
+msgid ""
+"cron.php is registered at a webcron service. Call the cron.php page in the "
+"owncloud root once a minute over http."
+msgstr ""
 
-#: templates/admin.php:37
-msgid "use systems cron service"
-msgstr "koristi sistemski cron servis"
+#: templates/admin.php:49
+msgid ""
+"Use systems cron service. Call the cron.php file in the owncloud folder via "
+"a system cronjob once a minute."
+msgstr ""
 
-#: templates/admin.php:41
-msgid "Share API"
+#: templates/admin.php:56
+msgid "Sharing"
 msgstr ""
 
-#: templates/admin.php:46
+#: templates/admin.php:61
 msgid "Enable Share API"
 msgstr ""
 
-#: templates/admin.php:47
+#: templates/admin.php:62
 msgid "Allow apps to use the Share API"
 msgstr ""
 
-#: templates/admin.php:51
+#: templates/admin.php:67
 msgid "Allow links"
 msgstr ""
 
-#: templates/admin.php:52
+#: templates/admin.php:68
 msgid "Allow users to share items to the public with links"
 msgstr ""
 
-#: templates/admin.php:56
+#: templates/admin.php:73
 msgid "Allow resharing"
 msgstr ""
 
-#: templates/admin.php:57
+#: templates/admin.php:74
 msgid "Allow users to share items shared with them again"
 msgstr ""
 
-#: templates/admin.php:60
+#: templates/admin.php:79
 msgid "Allow users to share with anyone"
 msgstr ""
 
-#: templates/admin.php:62
+#: templates/admin.php:81
 msgid "Allow users to only share with users in their groups"
 msgstr ""
 
-#: templates/admin.php:69
+#: templates/admin.php:88
 msgid "Log"
 msgstr "dnevnik"
 
-#: templates/admin.php:97
+#: templates/admin.php:116
 msgid "More"
 msgstr "više"
 
-#: templates/admin.php:105
+#: templates/admin.php:124
 msgid ""
 "Developed by the <a href=\"http://ownCloud.org/contact\" "
 "target=\"_blank\">ownCloud community</a>, the <a "
diff --git a/l10n/hu_HU/files.po b/l10n/hu_HU/files.po
index 09722e387138326ab953d7748bcba9d47114b4de..b8ea72acba102cedf9f8931a7a602ee748d25faa 100644
--- a/l10n/hu_HU/files.po
+++ b/l10n/hu_HU/files.po
@@ -10,8 +10,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-08 02:01+0200\n"
-"PO-Revision-Date: 2012-09-08 00:02+0000\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
+"PO-Revision-Date: 2012-09-18 00:01+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n"
 "MIME-Version: 1.0\n"
@@ -82,7 +82,7 @@ msgstr "mégse"
 msgid "replaced"
 msgstr "kicserélve"
 
-#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270
+#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269
 msgid "undo"
 msgstr "visszavon"
 
@@ -90,11 +90,11 @@ msgstr "visszavon"
 msgid "with"
 msgstr "-val/-vel"
 
-#: js/filelist.js:268
+#: js/filelist.js:267
 msgid "unshared"
 msgstr ""
 
-#: js/filelist.js:270
+#: js/filelist.js:269
 msgid "deleted"
 msgstr "törölve"
 
@@ -127,27 +127,35 @@ msgstr ""
 msgid "Invalid name, '/' is not allowed."
 msgstr "Érvénytelen név, a '/' nem megengedett"
 
-#: js/files.js:746 templates/index.php:56
+#: js/files.js:666
+msgid "files scanned"
+msgstr ""
+
+#: js/files.js:674
+msgid "error while scanning"
+msgstr ""
+
+#: js/files.js:748 templates/index.php:56
 msgid "Size"
 msgstr "Méret"
 
-#: js/files.js:747 templates/index.php:58
+#: js/files.js:749 templates/index.php:58
 msgid "Modified"
 msgstr "Módosítva"
 
-#: js/files.js:774
+#: js/files.js:776
 msgid "folder"
 msgstr "mappa"
 
-#: js/files.js:776
+#: js/files.js:778
 msgid "folders"
 msgstr "mappák"
 
-#: js/files.js:784
+#: js/files.js:786
 msgid "file"
 msgstr "fájl"
 
-#: js/files.js:786
+#: js/files.js:788
 msgid "files"
 msgstr "fájlok"
 
diff --git a/l10n/hu_HU/files_versions.po b/l10n/hu_HU/files_versions.po
index 8110815df5c7f3ccefe9be2d596c8d1f1fbf5f41..fa823d968f47db25e9abbefddae157cc31967daf 100644
--- a/l10n/hu_HU/files_versions.po
+++ b/l10n/hu_HU/files_versions.po
@@ -7,15 +7,15 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-01 13:35+0200\n"
-"PO-Revision-Date: 2012-09-01 11:35+0000\n"
+"POT-Creation-Date: 2012-09-17 02:02+0200\n"
+"PO-Revision-Date: 2012-09-17 00:04+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: hu_HU\n"
-"Plural-Forms: nplurals=2; plural=(n != 1)\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #: js/settings-personal.js:31 templates/settings-personal.php:10
 msgid "Expire all versions"
@@ -30,5 +30,9 @@ msgid "This will delete all existing backup versions of your files"
 msgstr ""
 
 #: templates/settings.php:3
-msgid "Enable Files Versioning"
+msgid "Files Versioning"
+msgstr ""
+
+#: templates/settings.php:4
+msgid "Enable"
 msgstr ""
diff --git a/l10n/hu_HU/settings.po b/l10n/hu_HU/settings.po
index 5f3d66a4dd96003e38bf0788b5d926333f1e2ea6..1554df638cad35f4a038cbd310fcd6ead6bcf4b6 100644
--- a/l10n/hu_HU/settings.po
+++ b/l10n/hu_HU/settings.po
@@ -9,8 +9,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-05 02:02+0200\n"
-"PO-Revision-Date: 2012-09-05 00:02+0000\n"
+"POT-Creation-Date: 2012-09-17 02:03+0200\n"
+"PO-Revision-Date: 2012-09-17 00:03+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n"
 "MIME-Version: 1.0\n"
@@ -36,6 +36,10 @@ msgstr ""
 msgid "Unable to add group"
 msgstr ""
 
+#: ajax/enableapp.php:13
+msgid "Could not enable app. "
+msgstr ""
+
 #: ajax/lostpassword.php:14
 msgid "Email saved"
 msgstr "Email mentve"
@@ -111,63 +115,67 @@ msgstr ""
 msgid "Cron"
 msgstr ""
 
-#: templates/admin.php:33
-msgid "execute one task with each page loaded"
+#: templates/admin.php:37
+msgid "Execute one task with each page loaded"
 msgstr ""
 
-#: templates/admin.php:35
-msgid "cron.php is registered at a webcron service"
+#: templates/admin.php:43
+msgid ""
+"cron.php is registered at a webcron service. Call the cron.php page in the "
+"owncloud root once a minute over http."
 msgstr ""
 
-#: templates/admin.php:37
-msgid "use systems cron service"
+#: templates/admin.php:49
+msgid ""
+"Use systems cron service. Call the cron.php file in the owncloud folder via "
+"a system cronjob once a minute."
 msgstr ""
 
-#: templates/admin.php:41
-msgid "Share API"
+#: templates/admin.php:56
+msgid "Sharing"
 msgstr ""
 
-#: templates/admin.php:46
+#: templates/admin.php:61
 msgid "Enable Share API"
 msgstr ""
 
-#: templates/admin.php:47
+#: templates/admin.php:62
 msgid "Allow apps to use the Share API"
 msgstr ""
 
-#: templates/admin.php:51
+#: templates/admin.php:67
 msgid "Allow links"
 msgstr ""
 
-#: templates/admin.php:52
+#: templates/admin.php:68
 msgid "Allow users to share items to the public with links"
 msgstr ""
 
-#: templates/admin.php:56
+#: templates/admin.php:73
 msgid "Allow resharing"
 msgstr ""
 
-#: templates/admin.php:57
+#: templates/admin.php:74
 msgid "Allow users to share items shared with them again"
 msgstr ""
 
-#: templates/admin.php:60
+#: templates/admin.php:79
 msgid "Allow users to share with anyone"
 msgstr ""
 
-#: templates/admin.php:62
+#: templates/admin.php:81
 msgid "Allow users to only share with users in their groups"
 msgstr ""
 
-#: templates/admin.php:69
+#: templates/admin.php:88
 msgid "Log"
 msgstr "Napló"
 
-#: templates/admin.php:97
+#: templates/admin.php:116
 msgid "More"
 msgstr "Tovább"
 
-#: templates/admin.php:105
+#: templates/admin.php:124
 msgid ""
 "Developed by the <a href=\"http://ownCloud.org/contact\" "
 "target=\"_blank\">ownCloud community</a>, the <a "
diff --git a/l10n/hy/files.po b/l10n/hy/files.po
index 9a144a813094808b854f754f661f25fd5d1f2b03..38dddfc1bd26d3333dd69a8a4f83659c2d58eb20 100644
--- a/l10n/hy/files.po
+++ b/l10n/hy/files.po
@@ -7,8 +7,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-08 02:01+0200\n"
-"PO-Revision-Date: 2012-09-08 00:02+0000\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
+"PO-Revision-Date: 2012-09-18 00:01+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n"
 "MIME-Version: 1.0\n"
@@ -79,7 +79,7 @@ msgstr ""
 msgid "replaced"
 msgstr ""
 
-#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270
+#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269
 msgid "undo"
 msgstr ""
 
@@ -87,11 +87,11 @@ msgstr ""
 msgid "with"
 msgstr ""
 
-#: js/filelist.js:268
+#: js/filelist.js:267
 msgid "unshared"
 msgstr ""
 
-#: js/filelist.js:270
+#: js/filelist.js:269
 msgid "deleted"
 msgstr ""
 
@@ -124,27 +124,35 @@ msgstr ""
 msgid "Invalid name, '/' is not allowed."
 msgstr ""
 
-#: js/files.js:746 templates/index.php:56
+#: js/files.js:666
+msgid "files scanned"
+msgstr ""
+
+#: js/files.js:674
+msgid "error while scanning"
+msgstr ""
+
+#: js/files.js:748 templates/index.php:56
 msgid "Size"
 msgstr ""
 
-#: js/files.js:747 templates/index.php:58
+#: js/files.js:749 templates/index.php:58
 msgid "Modified"
 msgstr ""
 
-#: js/files.js:774
+#: js/files.js:776
 msgid "folder"
 msgstr ""
 
-#: js/files.js:776
+#: js/files.js:778
 msgid "folders"
 msgstr ""
 
-#: js/files.js:784
+#: js/files.js:786
 msgid "file"
 msgstr ""
 
-#: js/files.js:786
+#: js/files.js:788
 msgid "files"
 msgstr ""
 
diff --git a/l10n/hy/files_versions.po b/l10n/hy/files_versions.po
index 7ac5f7649e76e651ab09aa94082b9d728748959d..54fa5d6e1955dca9d65801854762e5aeb50c25f2 100644
--- a/l10n/hy/files_versions.po
+++ b/l10n/hy/files_versions.po
@@ -7,15 +7,15 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-01 13:35+0200\n"
-"PO-Revision-Date: 2012-09-01 11:35+0000\n"
+"POT-Creation-Date: 2012-09-17 02:02+0200\n"
+"PO-Revision-Date: 2012-09-17 00:04+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: hy\n"
-"Plural-Forms: nplurals=2; plural=(n != 1)\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #: js/settings-personal.js:31 templates/settings-personal.php:10
 msgid "Expire all versions"
@@ -30,5 +30,9 @@ msgid "This will delete all existing backup versions of your files"
 msgstr ""
 
 #: templates/settings.php:3
-msgid "Enable Files Versioning"
+msgid "Files Versioning"
+msgstr ""
+
+#: templates/settings.php:4
+msgid "Enable"
 msgstr ""
diff --git a/l10n/hy/settings.po b/l10n/hy/settings.po
index 394122cdf15f8dfb2d426c1b5673b4647af09d68..3698a77bef269e844035dc539aed09cec058553a 100644
--- a/l10n/hy/settings.po
+++ b/l10n/hy/settings.po
@@ -7,8 +7,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-05 02:02+0200\n"
-"PO-Revision-Date: 2012-09-05 00:02+0000\n"
+"POT-Creation-Date: 2012-09-17 02:03+0200\n"
+"PO-Revision-Date: 2012-09-17 00:03+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n"
 "MIME-Version: 1.0\n"
@@ -34,6 +34,10 @@ msgstr ""
 msgid "Unable to add group"
 msgstr ""
 
+#: ajax/enableapp.php:13
+msgid "Could not enable app. "
+msgstr ""
+
 #: ajax/lostpassword.php:14
 msgid "Email saved"
 msgstr ""
@@ -109,63 +113,67 @@ msgstr ""
 msgid "Cron"
 msgstr ""
 
-#: templates/admin.php:33
-msgid "execute one task with each page loaded"
+#: templates/admin.php:37
+msgid "Execute one task with each page loaded"
 msgstr ""
 
-#: templates/admin.php:35
-msgid "cron.php is registered at a webcron service"
+#: templates/admin.php:43
+msgid ""
+"cron.php is registered at a webcron service. Call the cron.php page in the "
+"owncloud root once a minute over http."
 msgstr ""
 
-#: templates/admin.php:37
-msgid "use systems cron service"
+#: templates/admin.php:49
+msgid ""
+"Use systems cron service. Call the cron.php file in the owncloud folder via "
+"a system cronjob once a minute."
 msgstr ""
 
-#: templates/admin.php:41
-msgid "Share API"
+#: templates/admin.php:56
+msgid "Sharing"
 msgstr ""
 
-#: templates/admin.php:46
+#: templates/admin.php:61
 msgid "Enable Share API"
 msgstr ""
 
-#: templates/admin.php:47
+#: templates/admin.php:62
 msgid "Allow apps to use the Share API"
 msgstr ""
 
-#: templates/admin.php:51
+#: templates/admin.php:67
 msgid "Allow links"
 msgstr ""
 
-#: templates/admin.php:52
+#: templates/admin.php:68
 msgid "Allow users to share items to the public with links"
 msgstr ""
 
-#: templates/admin.php:56
+#: templates/admin.php:73
 msgid "Allow resharing"
 msgstr ""
 
-#: templates/admin.php:57
+#: templates/admin.php:74
 msgid "Allow users to share items shared with them again"
 msgstr ""
 
-#: templates/admin.php:60
+#: templates/admin.php:79
 msgid "Allow users to share with anyone"
 msgstr ""
 
-#: templates/admin.php:62
+#: templates/admin.php:81
 msgid "Allow users to only share with users in their groups"
 msgstr ""
 
-#: templates/admin.php:69
+#: templates/admin.php:88
 msgid "Log"
 msgstr ""
 
-#: templates/admin.php:97
+#: templates/admin.php:116
 msgid "More"
 msgstr ""
 
-#: templates/admin.php:105
+#: templates/admin.php:124
 msgid ""
 "Developed by the <a href=\"http://ownCloud.org/contact\" "
 "target=\"_blank\">ownCloud community</a>, the <a "
diff --git a/l10n/ia/files.po b/l10n/ia/files.po
index cdce2e1a66e8f59923094be6b1ede174bd8fe9c4..6b931f1c7d0d380e5fc56bd9d04f747231133984 100644
--- a/l10n/ia/files.po
+++ b/l10n/ia/files.po
@@ -9,8 +9,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-08 02:01+0200\n"
-"PO-Revision-Date: 2012-09-08 00:02+0000\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
+"PO-Revision-Date: 2012-09-18 00:01+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n"
 "MIME-Version: 1.0\n"
@@ -81,7 +81,7 @@ msgstr ""
 msgid "replaced"
 msgstr ""
 
-#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270
+#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269
 msgid "undo"
 msgstr ""
 
@@ -89,11 +89,11 @@ msgstr ""
 msgid "with"
 msgstr ""
 
-#: js/filelist.js:268
+#: js/filelist.js:267
 msgid "unshared"
 msgstr ""
 
-#: js/filelist.js:270
+#: js/filelist.js:269
 msgid "deleted"
 msgstr ""
 
@@ -126,27 +126,35 @@ msgstr ""
 msgid "Invalid name, '/' is not allowed."
 msgstr ""
 
-#: js/files.js:746 templates/index.php:56
+#: js/files.js:666
+msgid "files scanned"
+msgstr ""
+
+#: js/files.js:674
+msgid "error while scanning"
+msgstr ""
+
+#: js/files.js:748 templates/index.php:56
 msgid "Size"
 msgstr "Dimension"
 
-#: js/files.js:747 templates/index.php:58
+#: js/files.js:749 templates/index.php:58
 msgid "Modified"
 msgstr "Modificate"
 
-#: js/files.js:774
+#: js/files.js:776
 msgid "folder"
 msgstr ""
 
-#: js/files.js:776
+#: js/files.js:778
 msgid "folders"
 msgstr ""
 
-#: js/files.js:784
+#: js/files.js:786
 msgid "file"
 msgstr ""
 
-#: js/files.js:786
+#: js/files.js:788
 msgid "files"
 msgstr ""
 
diff --git a/l10n/ia/files_versions.po b/l10n/ia/files_versions.po
index c874ecb7e4681f0a0a1bb97bab530d5bfd415c0d..123a9945dafaf42ef4e46a48bec4ba52f9200d63 100644
--- a/l10n/ia/files_versions.po
+++ b/l10n/ia/files_versions.po
@@ -7,15 +7,15 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-01 13:35+0200\n"
-"PO-Revision-Date: 2012-09-01 11:35+0000\n"
+"POT-Creation-Date: 2012-09-17 02:02+0200\n"
+"PO-Revision-Date: 2012-09-17 00:04+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: ia\n"
-"Plural-Forms: nplurals=2; plural=(n != 1)\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #: js/settings-personal.js:31 templates/settings-personal.php:10
 msgid "Expire all versions"
@@ -30,5 +30,9 @@ msgid "This will delete all existing backup versions of your files"
 msgstr ""
 
 #: templates/settings.php:3
-msgid "Enable Files Versioning"
+msgid "Files Versioning"
+msgstr ""
+
+#: templates/settings.php:4
+msgid "Enable"
 msgstr ""
diff --git a/l10n/ia/settings.po b/l10n/ia/settings.po
index ab80ed851adde1746e4171cb8179aee3341c34b0..14db6bd79c9ce1f011e12a7e53fa5004a8e12d54 100644
--- a/l10n/ia/settings.po
+++ b/l10n/ia/settings.po
@@ -9,8 +9,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-05 02:02+0200\n"
-"PO-Revision-Date: 2012-09-05 00:02+0000\n"
+"POT-Creation-Date: 2012-09-17 02:03+0200\n"
+"PO-Revision-Date: 2012-09-17 00:03+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n"
 "MIME-Version: 1.0\n"
@@ -36,6 +36,10 @@ msgstr ""
 msgid "Unable to add group"
 msgstr ""
 
+#: ajax/enableapp.php:13
+msgid "Could not enable app. "
+msgstr ""
+
 #: ajax/lostpassword.php:14
 msgid "Email saved"
 msgstr ""
@@ -111,63 +115,67 @@ msgstr ""
 msgid "Cron"
 msgstr ""
 
-#: templates/admin.php:33
-msgid "execute one task with each page loaded"
+#: templates/admin.php:37
+msgid "Execute one task with each page loaded"
 msgstr ""
 
-#: templates/admin.php:35
-msgid "cron.php is registered at a webcron service"
+#: templates/admin.php:43
+msgid ""
+"cron.php is registered at a webcron service. Call the cron.php page in the "
+"owncloud root once a minute over http."
 msgstr ""
 
-#: templates/admin.php:37
-msgid "use systems cron service"
+#: templates/admin.php:49
+msgid ""
+"Use systems cron service. Call the cron.php file in the owncloud folder via "
+"a system cronjob once a minute."
 msgstr ""
 
-#: templates/admin.php:41
-msgid "Share API"
+#: templates/admin.php:56
+msgid "Sharing"
 msgstr ""
 
-#: templates/admin.php:46
+#: templates/admin.php:61
 msgid "Enable Share API"
 msgstr ""
 
-#: templates/admin.php:47
+#: templates/admin.php:62
 msgid "Allow apps to use the Share API"
 msgstr ""
 
-#: templates/admin.php:51
+#: templates/admin.php:67
 msgid "Allow links"
 msgstr ""
 
-#: templates/admin.php:52
+#: templates/admin.php:68
 msgid "Allow users to share items to the public with links"
 msgstr ""
 
-#: templates/admin.php:56
+#: templates/admin.php:73
 msgid "Allow resharing"
 msgstr ""
 
-#: templates/admin.php:57
+#: templates/admin.php:74
 msgid "Allow users to share items shared with them again"
 msgstr ""
 
-#: templates/admin.php:60
+#: templates/admin.php:79
 msgid "Allow users to share with anyone"
 msgstr ""
 
-#: templates/admin.php:62
+#: templates/admin.php:81
 msgid "Allow users to only share with users in their groups"
 msgstr ""
 
-#: templates/admin.php:69
+#: templates/admin.php:88
 msgid "Log"
 msgstr "Registro"
 
-#: templates/admin.php:97
+#: templates/admin.php:116
 msgid "More"
 msgstr "Plus"
 
-#: templates/admin.php:105
+#: templates/admin.php:124
 msgid ""
 "Developed by the <a href=\"http://ownCloud.org/contact\" "
 "target=\"_blank\">ownCloud community</a>, the <a "
diff --git a/l10n/id/files.po b/l10n/id/files.po
index 9479165468a978fc445c612169782341d2ac5214..bde4915a6e552743010c9b7cf18aa4cad19c356f 100644
--- a/l10n/id/files.po
+++ b/l10n/id/files.po
@@ -10,8 +10,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-08 02:01+0200\n"
-"PO-Revision-Date: 2012-09-08 00:02+0000\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
+"PO-Revision-Date: 2012-09-18 00:01+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n"
 "MIME-Version: 1.0\n"
@@ -82,7 +82,7 @@ msgstr "batalkan"
 msgid "replaced"
 msgstr "diganti"
 
-#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270
+#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269
 msgid "undo"
 msgstr "batal dikerjakan"
 
@@ -90,11 +90,11 @@ msgstr "batal dikerjakan"
 msgid "with"
 msgstr "dengan"
 
-#: js/filelist.js:268
+#: js/filelist.js:267
 msgid "unshared"
 msgstr ""
 
-#: js/filelist.js:270
+#: js/filelist.js:269
 msgid "deleted"
 msgstr "dihapus"
 
@@ -127,27 +127,35 @@ msgstr ""
 msgid "Invalid name, '/' is not allowed."
 msgstr "Kesalahan nama, '/' tidak diijinkan."
 
-#: js/files.js:746 templates/index.php:56
+#: js/files.js:666
+msgid "files scanned"
+msgstr ""
+
+#: js/files.js:674
+msgid "error while scanning"
+msgstr ""
+
+#: js/files.js:748 templates/index.php:56
 msgid "Size"
 msgstr "Ukuran"
 
-#: js/files.js:747 templates/index.php:58
+#: js/files.js:749 templates/index.php:58
 msgid "Modified"
 msgstr "Dimodifikasi"
 
-#: js/files.js:774
+#: js/files.js:776
 msgid "folder"
 msgstr "folder"
 
-#: js/files.js:776
+#: js/files.js:778
 msgid "folders"
 msgstr "folder-folder"
 
-#: js/files.js:784
+#: js/files.js:786
 msgid "file"
 msgstr "berkas"
 
-#: js/files.js:786
+#: js/files.js:788
 msgid "files"
 msgstr "berkas-berkas"
 
diff --git a/l10n/id/files_versions.po b/l10n/id/files_versions.po
index b28e40950f123a7bf263eddb8e46a4319222c130..487329246e8d877f4f9140361d234ce63b8c5d73 100644
--- a/l10n/id/files_versions.po
+++ b/l10n/id/files_versions.po
@@ -7,15 +7,15 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-01 13:35+0200\n"
-"PO-Revision-Date: 2012-09-01 11:35+0000\n"
+"POT-Creation-Date: 2012-09-17 02:02+0200\n"
+"PO-Revision-Date: 2012-09-17 00:04+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: id\n"
-"Plural-Forms: nplurals=1; plural=0\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
 
 #: js/settings-personal.js:31 templates/settings-personal.php:10
 msgid "Expire all versions"
@@ -30,5 +30,9 @@ msgid "This will delete all existing backup versions of your files"
 msgstr ""
 
 #: templates/settings.php:3
-msgid "Enable Files Versioning"
+msgid "Files Versioning"
+msgstr ""
+
+#: templates/settings.php:4
+msgid "Enable"
 msgstr ""
diff --git a/l10n/id/settings.po b/l10n/id/settings.po
index c2bd93b9e17f78eb15dc2eee0d0426d365670473..2683a4b6382878b1a1190dc786b2c2e52a6e3fb1 100644
--- a/l10n/id/settings.po
+++ b/l10n/id/settings.po
@@ -10,8 +10,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-05 02:02+0200\n"
-"PO-Revision-Date: 2012-09-05 00:02+0000\n"
+"POT-Creation-Date: 2012-09-17 02:03+0200\n"
+"PO-Revision-Date: 2012-09-17 00:03+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n"
 "MIME-Version: 1.0\n"
@@ -37,6 +37,10 @@ msgstr ""
 msgid "Unable to add group"
 msgstr ""
 
+#: ajax/enableapp.php:13
+msgid "Could not enable app. "
+msgstr ""
+
 #: ajax/lostpassword.php:14
 msgid "Email saved"
 msgstr "Email tersimpan"
@@ -112,63 +116,67 @@ msgstr ""
 msgid "Cron"
 msgstr ""
 
-#: templates/admin.php:33
-msgid "execute one task with each page loaded"
+#: templates/admin.php:37
+msgid "Execute one task with each page loaded"
 msgstr ""
 
-#: templates/admin.php:35
-msgid "cron.php is registered at a webcron service"
+#: templates/admin.php:43
+msgid ""
+"cron.php is registered at a webcron service. Call the cron.php page in the "
+"owncloud root once a minute over http."
 msgstr ""
 
-#: templates/admin.php:37
-msgid "use systems cron service"
+#: templates/admin.php:49
+msgid ""
+"Use systems cron service. Call the cron.php file in the owncloud folder via "
+"a system cronjob once a minute."
 msgstr ""
 
-#: templates/admin.php:41
-msgid "Share API"
+#: templates/admin.php:56
+msgid "Sharing"
 msgstr ""
 
-#: templates/admin.php:46
+#: templates/admin.php:61
 msgid "Enable Share API"
 msgstr ""
 
-#: templates/admin.php:47
+#: templates/admin.php:62
 msgid "Allow apps to use the Share API"
 msgstr ""
 
-#: templates/admin.php:51
+#: templates/admin.php:67
 msgid "Allow links"
 msgstr ""
 
-#: templates/admin.php:52
+#: templates/admin.php:68
 msgid "Allow users to share items to the public with links"
 msgstr ""
 
-#: templates/admin.php:56
+#: templates/admin.php:73
 msgid "Allow resharing"
 msgstr ""
 
-#: templates/admin.php:57
+#: templates/admin.php:74
 msgid "Allow users to share items shared with them again"
 msgstr ""
 
-#: templates/admin.php:60
+#: templates/admin.php:79
 msgid "Allow users to share with anyone"
 msgstr ""
 
-#: templates/admin.php:62
+#: templates/admin.php:81
 msgid "Allow users to only share with users in their groups"
 msgstr ""
 
-#: templates/admin.php:69
+#: templates/admin.php:88
 msgid "Log"
 msgstr "Log"
 
-#: templates/admin.php:97
+#: templates/admin.php:116
 msgid "More"
 msgstr "Lebih"
 
-#: templates/admin.php:105
+#: templates/admin.php:124
 msgid ""
 "Developed by the <a href=\"http://ownCloud.org/contact\" "
 "target=\"_blank\">ownCloud community</a>, the <a "
diff --git a/l10n/id_ID/files.po b/l10n/id_ID/files.po
index 813b83410c6c6086f2b425aa4beaffa41d640115..1ec81ead784dc38d17afb851982106a8ecc57336 100644
--- a/l10n/id_ID/files.po
+++ b/l10n/id_ID/files.po
@@ -7,8 +7,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-08 02:01+0200\n"
-"PO-Revision-Date: 2012-09-08 00:02+0000\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
+"PO-Revision-Date: 2012-09-18 00:02+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Indonesian (Indonesia) (http://www.transifex.com/projects/p/owncloud/language/id_ID/)\n"
 "MIME-Version: 1.0\n"
@@ -79,7 +79,7 @@ msgstr ""
 msgid "replaced"
 msgstr ""
 
-#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270
+#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269
 msgid "undo"
 msgstr ""
 
@@ -87,11 +87,11 @@ msgstr ""
 msgid "with"
 msgstr ""
 
-#: js/filelist.js:268
+#: js/filelist.js:267
 msgid "unshared"
 msgstr ""
 
-#: js/filelist.js:270
+#: js/filelist.js:269
 msgid "deleted"
 msgstr ""
 
@@ -124,27 +124,35 @@ msgstr ""
 msgid "Invalid name, '/' is not allowed."
 msgstr ""
 
-#: js/files.js:746 templates/index.php:56
+#: js/files.js:666
+msgid "files scanned"
+msgstr ""
+
+#: js/files.js:674
+msgid "error while scanning"
+msgstr ""
+
+#: js/files.js:748 templates/index.php:56
 msgid "Size"
 msgstr ""
 
-#: js/files.js:747 templates/index.php:58
+#: js/files.js:749 templates/index.php:58
 msgid "Modified"
 msgstr ""
 
-#: js/files.js:774
+#: js/files.js:776
 msgid "folder"
 msgstr ""
 
-#: js/files.js:776
+#: js/files.js:778
 msgid "folders"
 msgstr ""
 
-#: js/files.js:784
+#: js/files.js:786
 msgid "file"
 msgstr ""
 
-#: js/files.js:786
+#: js/files.js:788
 msgid "files"
 msgstr ""
 
diff --git a/l10n/id_ID/files_versions.po b/l10n/id_ID/files_versions.po
index 027df71e5ea9dce3632ca871e097ab9dd7a1e8d5..c91232aacc8fbeb6be245d9fbc995970cfd57e31 100644
--- a/l10n/id_ID/files_versions.po
+++ b/l10n/id_ID/files_versions.po
@@ -7,15 +7,15 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-01 13:35+0200\n"
-"PO-Revision-Date: 2012-09-01 11:35+0000\n"
+"POT-Creation-Date: 2012-09-17 02:02+0200\n"
+"PO-Revision-Date: 2012-09-17 00:04+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Indonesian (Indonesia) (http://www.transifex.com/projects/p/owncloud/language/id_ID/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: id_ID\n"
-"Plural-Forms: nplurals=1; plural=0\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
 
 #: js/settings-personal.js:31 templates/settings-personal.php:10
 msgid "Expire all versions"
@@ -30,5 +30,9 @@ msgid "This will delete all existing backup versions of your files"
 msgstr ""
 
 #: templates/settings.php:3
-msgid "Enable Files Versioning"
+msgid "Files Versioning"
+msgstr ""
+
+#: templates/settings.php:4
+msgid "Enable"
 msgstr ""
diff --git a/l10n/id_ID/settings.po b/l10n/id_ID/settings.po
index b70af6b0c3f4ec37e5ae2def750bc3b290d4a531..68339ff2e36206883a470bccc7753b61596c26d2 100644
--- a/l10n/id_ID/settings.po
+++ b/l10n/id_ID/settings.po
@@ -7,8 +7,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-05 02:02+0200\n"
-"PO-Revision-Date: 2012-09-05 00:02+0000\n"
+"POT-Creation-Date: 2012-09-17 02:03+0200\n"
+"PO-Revision-Date: 2012-09-17 00:03+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Indonesian (Indonesia) (http://www.transifex.com/projects/p/owncloud/language/id_ID/)\n"
 "MIME-Version: 1.0\n"
@@ -34,6 +34,10 @@ msgstr ""
 msgid "Unable to add group"
 msgstr ""
 
+#: ajax/enableapp.php:13
+msgid "Could not enable app. "
+msgstr ""
+
 #: ajax/lostpassword.php:14
 msgid "Email saved"
 msgstr ""
@@ -109,63 +113,67 @@ msgstr ""
 msgid "Cron"
 msgstr ""
 
-#: templates/admin.php:33
-msgid "execute one task with each page loaded"
+#: templates/admin.php:37
+msgid "Execute one task with each page loaded"
 msgstr ""
 
-#: templates/admin.php:35
-msgid "cron.php is registered at a webcron service"
+#: templates/admin.php:43
+msgid ""
+"cron.php is registered at a webcron service. Call the cron.php page in the "
+"owncloud root once a minute over http."
 msgstr ""
 
-#: templates/admin.php:37
-msgid "use systems cron service"
+#: templates/admin.php:49
+msgid ""
+"Use systems cron service. Call the cron.php file in the owncloud folder via "
+"a system cronjob once a minute."
 msgstr ""
 
-#: templates/admin.php:41
-msgid "Share API"
+#: templates/admin.php:56
+msgid "Sharing"
 msgstr ""
 
-#: templates/admin.php:46
+#: templates/admin.php:61
 msgid "Enable Share API"
 msgstr ""
 
-#: templates/admin.php:47
+#: templates/admin.php:62
 msgid "Allow apps to use the Share API"
 msgstr ""
 
-#: templates/admin.php:51
+#: templates/admin.php:67
 msgid "Allow links"
 msgstr ""
 
-#: templates/admin.php:52
+#: templates/admin.php:68
 msgid "Allow users to share items to the public with links"
 msgstr ""
 
-#: templates/admin.php:56
+#: templates/admin.php:73
 msgid "Allow resharing"
 msgstr ""
 
-#: templates/admin.php:57
+#: templates/admin.php:74
 msgid "Allow users to share items shared with them again"
 msgstr ""
 
-#: templates/admin.php:60
+#: templates/admin.php:79
 msgid "Allow users to share with anyone"
 msgstr ""
 
-#: templates/admin.php:62
+#: templates/admin.php:81
 msgid "Allow users to only share with users in their groups"
 msgstr ""
 
-#: templates/admin.php:69
+#: templates/admin.php:88
 msgid "Log"
 msgstr ""
 
-#: templates/admin.php:97
+#: templates/admin.php:116
 msgid "More"
 msgstr ""
 
-#: templates/admin.php:105
+#: templates/admin.php:124
 msgid ""
 "Developed by the <a href=\"http://ownCloud.org/contact\" "
 "target=\"_blank\">ownCloud community</a>, the <a "
diff --git a/l10n/it/files.po b/l10n/it/files.po
index 0c00e3d9e915d08448356658b77fa4c127dfff21..1fbe4da1d4396ca6a68fd7c7683d808cb9ef9000 100644
--- a/l10n/it/files.po
+++ b/l10n/it/files.po
@@ -11,9 +11,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-09 02:01+0200\n"
-"PO-Revision-Date: 2012-09-08 07:13+0000\n"
-"Last-Translator: Vincenzo Reale <vinx.reale@gmail.com>\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
+"PO-Revision-Date: 2012-09-18 00:01+0000\n"
+"Last-Translator: I Robot <thomas.mueller@tmit.eu>\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"
@@ -83,7 +83,7 @@ msgstr "annulla"
 msgid "replaced"
 msgstr "sostituito"
 
-#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270
+#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269
 msgid "undo"
 msgstr "annulla"
 
@@ -91,11 +91,11 @@ msgstr "annulla"
 msgid "with"
 msgstr "con"
 
-#: js/filelist.js:268
+#: js/filelist.js:267
 msgid "unshared"
 msgstr "condivisione rimossa"
 
-#: js/filelist.js:270
+#: js/filelist.js:269
 msgid "deleted"
 msgstr "eliminati"
 
@@ -128,27 +128,35 @@ msgstr "Caricamento del file in corso. La chiusura della pagina annullerà il ca
 msgid "Invalid name, '/' is not allowed."
 msgstr "Nome non valido"
 
-#: js/files.js:746 templates/index.php:56
+#: js/files.js:666
+msgid "files scanned"
+msgstr ""
+
+#: js/files.js:674
+msgid "error while scanning"
+msgstr ""
+
+#: js/files.js:748 templates/index.php:56
 msgid "Size"
 msgstr "Dimensione"
 
-#: js/files.js:747 templates/index.php:58
+#: js/files.js:749 templates/index.php:58
 msgid "Modified"
 msgstr "Modificato"
 
-#: js/files.js:774
+#: js/files.js:776
 msgid "folder"
 msgstr "cartella"
 
-#: js/files.js:776
+#: js/files.js:778
 msgid "folders"
 msgstr "cartelle"
 
-#: js/files.js:784
+#: js/files.js:786
 msgid "file"
 msgstr "file"
 
-#: js/files.js:786
+#: js/files.js:788
 msgid "files"
 msgstr "file"
 
diff --git a/l10n/it/files_versions.po b/l10n/it/files_versions.po
index 9e8a8ae6bb38b91256c2ca0dc7e2fa99f7901f11..054ddeffa7b7ca6de57950eb74f025cd2ee09ab4 100644
--- a/l10n/it/files_versions.po
+++ b/l10n/it/files_versions.po
@@ -8,15 +8,15 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-02 02:01+0200\n"
-"PO-Revision-Date: 2012-09-01 11:42+0000\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
+"PO-Revision-Date: 2012-09-17 05:42+0000\n"
 "Last-Translator: Vincenzo Reale <vinx.reale@gmail.com>\n"
 "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: it\n"
-"Plural-Forms: nplurals=2; plural=(n != 1)\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #: js/settings-personal.js:31 templates/settings-personal.php:10
 msgid "Expire all versions"
@@ -31,5 +31,9 @@ msgid "This will delete all existing backup versions of your files"
 msgstr "Ciò eliminerà tutte le versioni esistenti dei tuoi file"
 
 #: templates/settings.php:3
-msgid "Enable Files Versioning"
-msgstr "Abilita controllo di versione"
+msgid "Files Versioning"
+msgstr "Controllo di versione dei file"
+
+#: templates/settings.php:4
+msgid "Enable"
+msgstr "Abilita"
diff --git a/l10n/it/settings.po b/l10n/it/settings.po
index 1ec0daf688cd8e9a4c05dec06dbe6e599203ec57..f63eb7de50c8ff935110ad78eea837a2a6f0913e 100644
--- a/l10n/it/settings.po
+++ b/l10n/it/settings.po
@@ -14,8 +14,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-06 02:02+0200\n"
-"PO-Revision-Date: 2012-09-05 05:39+0000\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
+"PO-Revision-Date: 2012-09-17 15:51+0000\n"
 "Last-Translator: Vincenzo Reale <vinx.reale@gmail.com>\n"
 "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n"
 "MIME-Version: 1.0\n"
@@ -41,6 +41,10 @@ msgstr "Il gruppo esiste già"
 msgid "Unable to add group"
 msgstr "Impossibile aggiungere il gruppo"
 
+#: ajax/enableapp.php:14
+msgid "Could not enable app. "
+msgstr "Impossibile abilitare l'applicazione."
+
 #: ajax/lostpassword.php:14
 msgid "Email saved"
 msgstr "Email salvata"
@@ -116,63 +120,67 @@ msgstr "La cartella dei dati e i tuoi file sono probabilmente accessibili da Int
 msgid "Cron"
 msgstr "Cron"
 
-#: templates/admin.php:33
-msgid "execute one task with each page loaded"
-msgstr "esegui un'attività con ogni pagina caricata"
+#: templates/admin.php:37
+msgid "Execute one task with each page loaded"
+msgstr "Esegui un'operazione per ogni pagina caricata"
 
-#: templates/admin.php:35
-msgid "cron.php is registered at a webcron service"
-msgstr "cron.php è registrato a un servizio webcron"
+#: templates/admin.php:43
+msgid ""
+"cron.php is registered at a webcron service. Call the cron.php page in the "
+"owncloud root once a minute over http."
+msgstr "cron.php è registrato su un servizio webcron. Chiama la pagina cron.php nella radice di owncloud ogni minuto su http."
 
-#: templates/admin.php:37
-msgid "use systems cron service"
-msgstr "usa il servizio cron di sistema"
+#: templates/admin.php:49
+msgid ""
+"Use systems cron service. Call the cron.php file in the owncloud folder via "
+"a system cronjob once a minute."
+msgstr "Usa il servizio cron di sistema. Chiama il file cron.php nella cartella di owncloud tramite una pianificazione del cron di sistema ogni minuto."
 
-#: templates/admin.php:41
-msgid "Share API"
-msgstr "API di condivisione"
+#: templates/admin.php:56
+msgid "Sharing"
+msgstr "Condivisione"
 
-#: templates/admin.php:46
+#: templates/admin.php:61
 msgid "Enable Share API"
 msgstr "Abilita API di condivisione"
 
-#: templates/admin.php:47
+#: templates/admin.php:62
 msgid "Allow apps to use the Share API"
 msgstr "Consenti alle applicazioni di utilizzare le API di condivisione"
 
-#: templates/admin.php:51
+#: templates/admin.php:67
 msgid "Allow links"
 msgstr "Consenti collegamenti"
 
-#: templates/admin.php:52
+#: templates/admin.php:68
 msgid "Allow users to share items to the public with links"
 msgstr "Consenti agli utenti di condividere elementi al pubblico con collegamenti"
 
-#: templates/admin.php:56
+#: templates/admin.php:73
 msgid "Allow resharing"
 msgstr "Consenti la ri-condivisione"
 
-#: templates/admin.php:57
+#: templates/admin.php:74
 msgid "Allow users to share items shared with them again"
 msgstr "Consenti agli utenti di condividere elementi già condivisi"
 
-#: templates/admin.php:60
+#: templates/admin.php:79
 msgid "Allow users to share with anyone"
 msgstr "Consenti agli utenti di condividere con chiunque"
 
-#: templates/admin.php:62
+#: templates/admin.php:81
 msgid "Allow users to only share with users in their groups"
 msgstr "Consenti agli utenti di condividere con gli utenti del proprio gruppo"
 
-#: templates/admin.php:69
+#: templates/admin.php:88
 msgid "Log"
 msgstr "Registro"
 
-#: templates/admin.php:97
+#: templates/admin.php:116
 msgid "More"
 msgstr "Altro"
 
-#: templates/admin.php:105
+#: templates/admin.php:124
 msgid ""
 "Developed by the <a href=\"http://ownCloud.org/contact\" "
 "target=\"_blank\">ownCloud community</a>, the <a "
diff --git a/l10n/ja_JP/files.po b/l10n/ja_JP/files.po
index 6e3d70c125c47faa748eb7801bba53e0ce4eb186..18748ab64d8dd69dbed6dd0e873ce8f5bb24e9de 100644
--- a/l10n/ja_JP/files.po
+++ b/l10n/ja_JP/files.po
@@ -9,9 +9,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-10 02:02+0200\n"
-"PO-Revision-Date: 2012-09-09 05:11+0000\n"
-"Last-Translator: ttyn <tetuyano+transi@gmail.com>\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
+"PO-Revision-Date: 2012-09-18 00:01+0000\n"
+"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -81,7 +81,7 @@ msgstr "キャンセル"
 msgid "replaced"
 msgstr "置換:"
 
-#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270
+#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269
 msgid "undo"
 msgstr "元に戻す"
 
@@ -89,11 +89,11 @@ msgstr "元に戻す"
 msgid "with"
 msgstr "←"
 
-#: js/filelist.js:268
+#: js/filelist.js:267
 msgid "unshared"
 msgstr "未共有"
 
-#: js/filelist.js:270
+#: js/filelist.js:269
 msgid "deleted"
 msgstr "削除"
 
@@ -126,27 +126,35 @@ msgstr "ファイル転送を実行中です。今このページから移動す
 msgid "Invalid name, '/' is not allowed."
 msgstr "無効な名前、'/' は使用できません。"
 
-#: js/files.js:746 templates/index.php:56
+#: js/files.js:666
+msgid "files scanned"
+msgstr ""
+
+#: js/files.js:674
+msgid "error while scanning"
+msgstr ""
+
+#: js/files.js:748 templates/index.php:56
 msgid "Size"
 msgstr "サイズ"
 
-#: js/files.js:747 templates/index.php:58
+#: js/files.js:749 templates/index.php:58
 msgid "Modified"
 msgstr "更新日時"
 
-#: js/files.js:774
+#: js/files.js:776
 msgid "folder"
 msgstr "フォルダ"
 
-#: js/files.js:776
+#: js/files.js:778
 msgid "folders"
 msgstr "フォルダ"
 
-#: js/files.js:784
+#: js/files.js:786
 msgid "file"
 msgstr "ファイル"
 
-#: js/files.js:786
+#: js/files.js:788
 msgid "files"
 msgstr "ファイル"
 
diff --git a/l10n/ja_JP/files_versions.po b/l10n/ja_JP/files_versions.po
index a2dc0289007353dc11c9b6e9eaece86ea2aa7cf0..2923fe476f92726f7619d173d5f2b8b03d20b73d 100644
--- a/l10n/ja_JP/files_versions.po
+++ b/l10n/ja_JP/files_versions.po
@@ -8,9 +8,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-04 02:01+0200\n"
-"PO-Revision-Date: 2012-09-03 15:56+0000\n"
-"Last-Translator: Daisuke Deguchi <ddeguchi@is.nagoya-u.ac.jp>\n"
+"POT-Creation-Date: 2012-09-17 02:02+0200\n"
+"PO-Revision-Date: 2012-09-17 00:04+0000\n"
+"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -31,5 +31,9 @@ msgid "This will delete all existing backup versions of your files"
 msgstr "これは、あなたのファイルのすべてのバックアップバージョンを削除します"
 
 #: templates/settings.php:3
-msgid "Enable Files Versioning"
-msgstr "ファイルのバージョン管理を有効にする"
+msgid "Files Versioning"
+msgstr ""
+
+#: templates/settings.php:4
+msgid "Enable"
+msgstr ""
diff --git a/l10n/ja_JP/settings.po b/l10n/ja_JP/settings.po
index 9652d0d97571335bb27d5e33f04a41f34bb07495..a22d6af28be4a10d9a9ebe8b1edc2ccfcb7fe7aa 100644
--- a/l10n/ja_JP/settings.po
+++ b/l10n/ja_JP/settings.po
@@ -9,9 +9,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-06 02:02+0200\n"
-"PO-Revision-Date: 2012-09-05 02:09+0000\n"
-"Last-Translator: Daisuke Deguchi <ddeguchi@is.nagoya-u.ac.jp>\n"
+"POT-Creation-Date: 2012-09-17 02:03+0200\n"
+"PO-Revision-Date: 2012-09-17 00:03+0000\n"
+"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -36,6 +36,10 @@ msgstr "グループは既に存在しています"
 msgid "Unable to add group"
 msgstr "グループを追加できません"
 
+#: ajax/enableapp.php:13
+msgid "Could not enable app. "
+msgstr "アプリを有効にできませんでした。"
+
 #: ajax/lostpassword.php:14
 msgid "Email saved"
 msgstr "メールアドレスを保存しました"
@@ -111,63 +115,67 @@ msgstr "データディレクトリとファイルが恐らくインターネッ
 msgid "Cron"
 msgstr "cron(自動定期実行)"
 
-#: templates/admin.php:33
-msgid "execute one task with each page loaded"
-msgstr "ページを開く毎にタスクを1つ実行"
+#: templates/admin.php:37
+msgid "Execute one task with each page loaded"
+msgstr ""
 
-#: templates/admin.php:35
-msgid "cron.php is registered at a webcron service"
-msgstr "cron.phpをwebcronサービスに登録しました"
+#: templates/admin.php:43
+msgid ""
+"cron.php is registered at a webcron service. Call the cron.php page in the "
+"owncloud root once a minute over http."
+msgstr "cron.php は webcron サービスとして登録されています。HTTP経由で1分間に1回の頻度で owncloud のルートページ内の cron.php ページを呼び出します。"
 
-#: templates/admin.php:37
-msgid "use systems cron service"
-msgstr "システムのcronサービスを使用"
+#: templates/admin.php:49
+msgid ""
+"Use systems cron service. Call the cron.php file in the owncloud folder via "
+"a system cronjob once a minute."
+msgstr ""
 
-#: templates/admin.php:41
-msgid "Share API"
-msgstr "Share API"
+#: templates/admin.php:56
+msgid "Sharing"
+msgstr ""
 
-#: templates/admin.php:46
+#: templates/admin.php:61
 msgid "Enable Share API"
 msgstr "Share APIを有効"
 
-#: templates/admin.php:47
+#: templates/admin.php:62
 msgid "Allow apps to use the Share API"
 msgstr "Share APIの使用をアプリケーションに許可"
 
-#: templates/admin.php:51
+#: templates/admin.php:67
 msgid "Allow links"
 msgstr "リンクを許可"
 
-#: templates/admin.php:52
+#: templates/admin.php:68
 msgid "Allow users to share items to the public with links"
 msgstr "ユーザーがリンクによる公開でアイテムを共有することが出来るようにする"
 
-#: templates/admin.php:56
+#: templates/admin.php:73
 msgid "Allow resharing"
 msgstr "再共有を許可"
 
-#: templates/admin.php:57
+#: templates/admin.php:74
 msgid "Allow users to share items shared with them again"
 msgstr "ユーザーが共有されているアイテムをさらに共有することが出来るようにする"
 
-#: templates/admin.php:60
+#: templates/admin.php:79
 msgid "Allow users to share with anyone"
 msgstr "ユーザーが誰にでも共有出来るようにする"
 
-#: templates/admin.php:62
+#: templates/admin.php:81
 msgid "Allow users to only share with users in their groups"
 msgstr "ユーザーがグループの人にしか共有出来ないようにする"
 
-#: templates/admin.php:69
+#: templates/admin.php:88
 msgid "Log"
 msgstr "ログ"
 
-#: templates/admin.php:97
+#: templates/admin.php:116
 msgid "More"
 msgstr "もっと"
 
-#: templates/admin.php:105
+#: templates/admin.php:124
 msgid ""
 "Developed by the <a href=\"http://ownCloud.org/contact\" "
 "target=\"_blank\">ownCloud community</a>, the <a "
diff --git a/l10n/ko/files.po b/l10n/ko/files.po
index 7167506ae4826e701816700de804ce191286acaa..7aff85c9a0034c5062e9a3d6687e2d2f6e27d9d0 100644
--- a/l10n/ko/files.po
+++ b/l10n/ko/files.po
@@ -9,8 +9,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-08 02:01+0200\n"
-"PO-Revision-Date: 2012-09-08 00:02+0000\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
+"PO-Revision-Date: 2012-09-18 00:01+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n"
 "MIME-Version: 1.0\n"
@@ -81,7 +81,7 @@ msgstr "취소"
 msgid "replaced"
 msgstr "대체됨"
 
-#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270
+#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269
 msgid "undo"
 msgstr "복구"
 
@@ -89,11 +89,11 @@ msgstr "복구"
 msgid "with"
 msgstr "와"
 
-#: js/filelist.js:268
+#: js/filelist.js:267
 msgid "unshared"
 msgstr ""
 
-#: js/filelist.js:270
+#: js/filelist.js:269
 msgid "deleted"
 msgstr "삭제"
 
@@ -126,27 +126,35 @@ msgstr ""
 msgid "Invalid name, '/' is not allowed."
 msgstr "잘못된 이름, '/' 은 허용이 되지 않습니다."
 
-#: js/files.js:746 templates/index.php:56
+#: js/files.js:666
+msgid "files scanned"
+msgstr ""
+
+#: js/files.js:674
+msgid "error while scanning"
+msgstr ""
+
+#: js/files.js:748 templates/index.php:56
 msgid "Size"
 msgstr "크기"
 
-#: js/files.js:747 templates/index.php:58
+#: js/files.js:749 templates/index.php:58
 msgid "Modified"
 msgstr "수정됨"
 
-#: js/files.js:774
+#: js/files.js:776
 msgid "folder"
 msgstr "폴더"
 
-#: js/files.js:776
+#: js/files.js:778
 msgid "folders"
 msgstr "폴더"
 
-#: js/files.js:784
+#: js/files.js:786
 msgid "file"
 msgstr "파일"
 
-#: js/files.js:786
+#: js/files.js:788
 msgid "files"
 msgstr "파일"
 
diff --git a/l10n/ko/files_versions.po b/l10n/ko/files_versions.po
index bf42a0a8c89b2efe4cb67208ebf265a283aacef8..60f6f7ab632163b23001c644e0cd2c1fcffc5502 100644
--- a/l10n/ko/files_versions.po
+++ b/l10n/ko/files_versions.po
@@ -7,15 +7,15 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-01 13:35+0200\n"
-"PO-Revision-Date: 2012-09-01 11:35+0000\n"
+"POT-Creation-Date: 2012-09-17 02:02+0200\n"
+"PO-Revision-Date: 2012-09-17 00:04+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: ko\n"
-"Plural-Forms: nplurals=1; plural=0\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
 
 #: js/settings-personal.js:31 templates/settings-personal.php:10
 msgid "Expire all versions"
@@ -30,5 +30,9 @@ msgid "This will delete all existing backup versions of your files"
 msgstr ""
 
 #: templates/settings.php:3
-msgid "Enable Files Versioning"
+msgid "Files Versioning"
+msgstr ""
+
+#: templates/settings.php:4
+msgid "Enable"
 msgstr ""
diff --git a/l10n/ko/settings.po b/l10n/ko/settings.po
index 74a1df47382f69e63e4f57bc3f6e3b8d96a06a8a..7012c67898c7f4dac979e9d7339d483e0200e87c 100644
--- a/l10n/ko/settings.po
+++ b/l10n/ko/settings.po
@@ -9,8 +9,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-05 02:02+0200\n"
-"PO-Revision-Date: 2012-09-05 00:02+0000\n"
+"POT-Creation-Date: 2012-09-17 02:03+0200\n"
+"PO-Revision-Date: 2012-09-17 00:03+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n"
 "MIME-Version: 1.0\n"
@@ -36,6 +36,10 @@ msgstr ""
 msgid "Unable to add group"
 msgstr ""
 
+#: ajax/enableapp.php:13
+msgid "Could not enable app. "
+msgstr ""
+
 #: ajax/lostpassword.php:14
 msgid "Email saved"
 msgstr "이메일 저장"
@@ -111,63 +115,67 @@ msgstr ""
 msgid "Cron"
 msgstr "크론"
 
-#: templates/admin.php:33
-msgid "execute one task with each page loaded"
-msgstr "각 페이지가 로드 된 하나의 작업을 실행"
+#: templates/admin.php:37
+msgid "Execute one task with each page loaded"
+msgstr ""
 
-#: templates/admin.php:35
-msgid "cron.php is registered at a webcron service"
-msgstr "cron.php는 webcron 서비스에 등록이 되어 있습니다."
+#: templates/admin.php:43
+msgid ""
+"cron.php is registered at a webcron service. Call the cron.php page in the "
+"owncloud root once a minute over http."
+msgstr ""
 
-#: templates/admin.php:37
-msgid "use systems cron service"
-msgstr "cron 시스템 서비스를 사용"
+#: templates/admin.php:49
+msgid ""
+"Use systems cron service. Call the cron.php file in the owncloud folder via "
+"a system cronjob once a minute."
+msgstr ""
 
-#: templates/admin.php:41
-msgid "Share API"
+#: templates/admin.php:56
+msgid "Sharing"
 msgstr ""
 
-#: templates/admin.php:46
+#: templates/admin.php:61
 msgid "Enable Share API"
 msgstr ""
 
-#: templates/admin.php:47
+#: templates/admin.php:62
 msgid "Allow apps to use the Share API"
 msgstr ""
 
-#: templates/admin.php:51
+#: templates/admin.php:67
 msgid "Allow links"
 msgstr ""
 
-#: templates/admin.php:52
+#: templates/admin.php:68
 msgid "Allow users to share items to the public with links"
 msgstr ""
 
-#: templates/admin.php:56
+#: templates/admin.php:73
 msgid "Allow resharing"
 msgstr ""
 
-#: templates/admin.php:57
+#: templates/admin.php:74
 msgid "Allow users to share items shared with them again"
 msgstr ""
 
-#: templates/admin.php:60
+#: templates/admin.php:79
 msgid "Allow users to share with anyone"
 msgstr ""
 
-#: templates/admin.php:62
+#: templates/admin.php:81
 msgid "Allow users to only share with users in their groups"
 msgstr ""
 
-#: templates/admin.php:69
+#: templates/admin.php:88
 msgid "Log"
 msgstr "로그"
 
-#: templates/admin.php:97
+#: templates/admin.php:116
 msgid "More"
 msgstr "더"
 
-#: templates/admin.php:105
+#: templates/admin.php:124
 msgid ""
 "Developed by the <a href=\"http://ownCloud.org/contact\" "
 "target=\"_blank\">ownCloud community</a>, the <a "
diff --git a/l10n/lb/files.po b/l10n/lb/files.po
index 6e4157f7bef40eeb0912f129a3ef103ad061ac4d..d4497fcb9d28f65c7cbe036a49c185d3eeaea90b 100644
--- a/l10n/lb/files.po
+++ b/l10n/lb/files.po
@@ -8,8 +8,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-08 02:01+0200\n"
-"PO-Revision-Date: 2012-09-08 00:02+0000\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
+"PO-Revision-Date: 2012-09-18 00:01+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n"
 "MIME-Version: 1.0\n"
@@ -80,7 +80,7 @@ msgstr "ofbriechen"
 msgid "replaced"
 msgstr "ersat"
 
-#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270
+#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269
 msgid "undo"
 msgstr "réckgängeg man"
 
@@ -88,11 +88,11 @@ msgstr "réckgängeg man"
 msgid "with"
 msgstr "mat"
 
-#: js/filelist.js:268
+#: js/filelist.js:267
 msgid "unshared"
 msgstr ""
 
-#: js/filelist.js:270
+#: js/filelist.js:269
 msgid "deleted"
 msgstr "geläscht"
 
@@ -125,27 +125,35 @@ msgstr "File Upload am gaang. Wann's de des Säit verléiss gëtt den Upload ofg
 msgid "Invalid name, '/' is not allowed."
 msgstr "Ongültege Numm, '/' net erlaabt."
 
-#: js/files.js:746 templates/index.php:56
+#: js/files.js:666
+msgid "files scanned"
+msgstr ""
+
+#: js/files.js:674
+msgid "error while scanning"
+msgstr ""
+
+#: js/files.js:748 templates/index.php:56
 msgid "Size"
 msgstr "Gréisst"
 
-#: js/files.js:747 templates/index.php:58
+#: js/files.js:749 templates/index.php:58
 msgid "Modified"
 msgstr "Geännert"
 
-#: js/files.js:774
+#: js/files.js:776
 msgid "folder"
 msgstr "Dossier"
 
-#: js/files.js:776
+#: js/files.js:778
 msgid "folders"
 msgstr "Dossieren"
 
-#: js/files.js:784
+#: js/files.js:786
 msgid "file"
 msgstr "Datei"
 
-#: js/files.js:786
+#: js/files.js:788
 msgid "files"
 msgstr "Dateien"
 
diff --git a/l10n/lb/files_versions.po b/l10n/lb/files_versions.po
index b2a52fe36800b83f7edb8b7ea377d683d0ec11fc..7f552845f69cc590156ea4285a036d8e9475ba32 100644
--- a/l10n/lb/files_versions.po
+++ b/l10n/lb/files_versions.po
@@ -7,15 +7,15 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-01 13:35+0200\n"
-"PO-Revision-Date: 2012-09-01 11:35+0000\n"
+"POT-Creation-Date: 2012-09-17 02:02+0200\n"
+"PO-Revision-Date: 2012-09-17 00:04+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: lb\n"
-"Plural-Forms: nplurals=2; plural=(n != 1)\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #: js/settings-personal.js:31 templates/settings-personal.php:10
 msgid "Expire all versions"
@@ -30,5 +30,9 @@ msgid "This will delete all existing backup versions of your files"
 msgstr ""
 
 #: templates/settings.php:3
-msgid "Enable Files Versioning"
+msgid "Files Versioning"
+msgstr ""
+
+#: templates/settings.php:4
+msgid "Enable"
 msgstr ""
diff --git a/l10n/lb/settings.po b/l10n/lb/settings.po
index ae12b3db40df091f8a53475c06c9014b310715ee..80921ebde34621a72cffc11c56716f4b4273a518 100644
--- a/l10n/lb/settings.po
+++ b/l10n/lb/settings.po
@@ -8,8 +8,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-05 02:02+0200\n"
-"PO-Revision-Date: 2012-09-05 00:02+0000\n"
+"POT-Creation-Date: 2012-09-17 02:03+0200\n"
+"PO-Revision-Date: 2012-09-17 00:03+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n"
 "MIME-Version: 1.0\n"
@@ -35,6 +35,10 @@ msgstr ""
 msgid "Unable to add group"
 msgstr ""
 
+#: ajax/enableapp.php:13
+msgid "Could not enable app. "
+msgstr ""
+
 #: ajax/lostpassword.php:14
 msgid "Email saved"
 msgstr "E-mail gespäichert"
@@ -110,63 +114,67 @@ msgstr ""
 msgid "Cron"
 msgstr "Cron"
 
-#: templates/admin.php:33
-msgid "execute one task with each page loaded"
+#: templates/admin.php:37
+msgid "Execute one task with each page loaded"
 msgstr ""
 
-#: templates/admin.php:35
-msgid "cron.php is registered at a webcron service"
-msgstr "cron.php ass als en webcron Service registréiert"
+#: templates/admin.php:43
+msgid ""
+"cron.php is registered at a webcron service. Call the cron.php page in the "
+"owncloud root once a minute over http."
+msgstr ""
 
-#: templates/admin.php:37
-msgid "use systems cron service"
-msgstr "benotz den systems cron Service"
+#: templates/admin.php:49
+msgid ""
+"Use systems cron service. Call the cron.php file in the owncloud folder via "
+"a system cronjob once a minute."
+msgstr ""
 
-#: templates/admin.php:41
-msgid "Share API"
-msgstr "Share API"
+#: templates/admin.php:56
+msgid "Sharing"
+msgstr ""
 
-#: templates/admin.php:46
+#: templates/admin.php:61
 msgid "Enable Share API"
 msgstr "Share API aschalten"
 
-#: templates/admin.php:47
+#: templates/admin.php:62
 msgid "Allow apps to use the Share API"
 msgstr "Erlab Apps d'Share API ze benotzen"
 
-#: templates/admin.php:51
+#: templates/admin.php:67
 msgid "Allow links"
 msgstr "Links erlaben"
 
-#: templates/admin.php:52
+#: templates/admin.php:68
 msgid "Allow users to share items to the public with links"
 msgstr ""
 
-#: templates/admin.php:56
+#: templates/admin.php:73
 msgid "Allow resharing"
 msgstr "Resharing erlaben"
 
-#: templates/admin.php:57
+#: templates/admin.php:74
 msgid "Allow users to share items shared with them again"
 msgstr ""
 
-#: templates/admin.php:60
+#: templates/admin.php:79
 msgid "Allow users to share with anyone"
 msgstr "Useren erlaben mat egal wiem ze sharen"
 
-#: templates/admin.php:62
+#: templates/admin.php:81
 msgid "Allow users to only share with users in their groups"
 msgstr "Useren nëmmen erlaben mat Useren aus hirer Grupp ze sharen"
 
-#: templates/admin.php:69
+#: templates/admin.php:88
 msgid "Log"
 msgstr "Log"
 
-#: templates/admin.php:97
+#: templates/admin.php:116
 msgid "More"
 msgstr "Méi"
 
-#: templates/admin.php:105
+#: templates/admin.php:124
 msgid ""
 "Developed by the <a href=\"http://ownCloud.org/contact\" "
 "target=\"_blank\">ownCloud community</a>, the <a "
diff --git a/l10n/lt_LT/files.po b/l10n/lt_LT/files.po
index d4a5701df70cf80308a88d266970a3b9a5a44e54..8979c3ef0c8ac83113c6a97436ea28b410fa964d 100644
--- a/l10n/lt_LT/files.po
+++ b/l10n/lt_LT/files.po
@@ -9,8 +9,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-08 02:01+0200\n"
-"PO-Revision-Date: 2012-09-08 00:02+0000\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
+"PO-Revision-Date: 2012-09-18 00:01+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n"
 "MIME-Version: 1.0\n"
@@ -81,7 +81,7 @@ msgstr "atšaukti"
 msgid "replaced"
 msgstr ""
 
-#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270
+#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269
 msgid "undo"
 msgstr ""
 
@@ -89,11 +89,11 @@ msgstr ""
 msgid "with"
 msgstr ""
 
-#: js/filelist.js:268
+#: js/filelist.js:267
 msgid "unshared"
 msgstr ""
 
-#: js/filelist.js:270
+#: js/filelist.js:269
 msgid "deleted"
 msgstr ""
 
@@ -126,27 +126,35 @@ msgstr ""
 msgid "Invalid name, '/' is not allowed."
 msgstr "Pavadinime negali būti naudojamas ženklas \"/\"."
 
-#: js/files.js:746 templates/index.php:56
+#: js/files.js:666
+msgid "files scanned"
+msgstr ""
+
+#: js/files.js:674
+msgid "error while scanning"
+msgstr ""
+
+#: js/files.js:748 templates/index.php:56
 msgid "Size"
 msgstr "Dydis"
 
-#: js/files.js:747 templates/index.php:58
+#: js/files.js:749 templates/index.php:58
 msgid "Modified"
 msgstr "Pakeista"
 
-#: js/files.js:774
+#: js/files.js:776
 msgid "folder"
 msgstr "katalogas"
 
-#: js/files.js:776
+#: js/files.js:778
 msgid "folders"
 msgstr "katalogai"
 
-#: js/files.js:784
+#: js/files.js:786
 msgid "file"
 msgstr "failas"
 
-#: js/files.js:786
+#: js/files.js:788
 msgid "files"
 msgstr "failai"
 
diff --git a/l10n/lt_LT/files_versions.po b/l10n/lt_LT/files_versions.po
index 02e8567562e84e3c61a9390263f3ea5c0cee7c80..2b7d314d0008c0a354c62914988416aa570668f8 100644
--- a/l10n/lt_LT/files_versions.po
+++ b/l10n/lt_LT/files_versions.po
@@ -8,15 +8,15 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-01 13:35+0200\n"
-"PO-Revision-Date: 2012-09-01 11:35+0000\n"
+"POT-Creation-Date: 2012-09-17 02:02+0200\n"
+"PO-Revision-Date: 2012-09-17 00:04+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: lt_LT\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2)\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
 
 #: js/settings-personal.js:31 templates/settings-personal.php:10
 msgid "Expire all versions"
@@ -31,5 +31,9 @@ msgid "This will delete all existing backup versions of your files"
 msgstr ""
 
 #: templates/settings.php:3
-msgid "Enable Files Versioning"
-msgstr "Įjungti failų versijų vedimą"
+msgid "Files Versioning"
+msgstr ""
+
+#: templates/settings.php:4
+msgid "Enable"
+msgstr ""
diff --git a/l10n/lt_LT/settings.po b/l10n/lt_LT/settings.po
index 5db913f5a2bf8fde7c52d3d0bdf3fc6f311fae98..e7274b4e6588566696894e3122c465ec78cc52d5 100644
--- a/l10n/lt_LT/settings.po
+++ b/l10n/lt_LT/settings.po
@@ -8,8 +8,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-05 02:02+0200\n"
-"PO-Revision-Date: 2012-09-05 00:02+0000\n"
+"POT-Creation-Date: 2012-09-17 02:03+0200\n"
+"PO-Revision-Date: 2012-09-17 00:03+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n"
 "MIME-Version: 1.0\n"
@@ -35,6 +35,10 @@ msgstr ""
 msgid "Unable to add group"
 msgstr ""
 
+#: ajax/enableapp.php:13
+msgid "Could not enable app. "
+msgstr ""
+
 #: ajax/lostpassword.php:14
 msgid "Email saved"
 msgstr "El. paštas išsaugotas"
@@ -110,63 +114,67 @@ msgstr ""
 msgid "Cron"
 msgstr "Cron"
 
-#: templates/admin.php:33
-msgid "execute one task with each page loaded"
+#: templates/admin.php:37
+msgid "Execute one task with each page loaded"
 msgstr ""
 
-#: templates/admin.php:35
-msgid "cron.php is registered at a webcron service"
+#: templates/admin.php:43
+msgid ""
+"cron.php is registered at a webcron service. Call the cron.php page in the "
+"owncloud root once a minute over http."
 msgstr ""
 
-#: templates/admin.php:37
-msgid "use systems cron service"
-msgstr "naudoti sistemos cron servisą"
+#: templates/admin.php:49
+msgid ""
+"Use systems cron service. Call the cron.php file in the owncloud folder via "
+"a system cronjob once a minute."
+msgstr ""
 
-#: templates/admin.php:41
-msgid "Share API"
+#: templates/admin.php:56
+msgid "Sharing"
 msgstr ""
 
-#: templates/admin.php:46
+#: templates/admin.php:61
 msgid "Enable Share API"
 msgstr ""
 
-#: templates/admin.php:47
+#: templates/admin.php:62
 msgid "Allow apps to use the Share API"
 msgstr ""
 
-#: templates/admin.php:51
+#: templates/admin.php:67
 msgid "Allow links"
 msgstr ""
 
-#: templates/admin.php:52
+#: templates/admin.php:68
 msgid "Allow users to share items to the public with links"
 msgstr ""
 
-#: templates/admin.php:56
+#: templates/admin.php:73
 msgid "Allow resharing"
 msgstr ""
 
-#: templates/admin.php:57
+#: templates/admin.php:74
 msgid "Allow users to share items shared with them again"
 msgstr ""
 
-#: templates/admin.php:60
+#: templates/admin.php:79
 msgid "Allow users to share with anyone"
 msgstr ""
 
-#: templates/admin.php:62
+#: templates/admin.php:81
 msgid "Allow users to only share with users in their groups"
 msgstr ""
 
-#: templates/admin.php:69
+#: templates/admin.php:88
 msgid "Log"
 msgstr "Žurnalas"
 
-#: templates/admin.php:97
+#: templates/admin.php:116
 msgid "More"
 msgstr "Daugiau"
 
-#: templates/admin.php:105
+#: templates/admin.php:124
 msgid ""
 "Developed by the <a href=\"http://ownCloud.org/contact\" "
 "target=\"_blank\">ownCloud community</a>, the <a "
diff --git a/l10n/lv/files.po b/l10n/lv/files.po
index 4adbfa4bf09852e911b2e5d72ab449acf4655135..71e8a9a6f0abcd49423e54393f576e83d6697ccb 100644
--- a/l10n/lv/files.po
+++ b/l10n/lv/files.po
@@ -8,8 +8,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-08 02:01+0200\n"
-"PO-Revision-Date: 2012-09-08 00:02+0000\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
+"PO-Revision-Date: 2012-09-18 00:02+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n"
 "MIME-Version: 1.0\n"
@@ -80,7 +80,7 @@ msgstr "atcelt"
 msgid "replaced"
 msgstr "aizvietots"
 
-#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270
+#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269
 msgid "undo"
 msgstr "vienu soli atpakaļ"
 
@@ -88,11 +88,11 @@ msgstr "vienu soli atpakaļ"
 msgid "with"
 msgstr "ar"
 
-#: js/filelist.js:268
+#: js/filelist.js:267
 msgid "unshared"
 msgstr ""
 
-#: js/filelist.js:270
+#: js/filelist.js:269
 msgid "deleted"
 msgstr "izdzests"
 
@@ -125,27 +125,35 @@ msgstr ""
 msgid "Invalid name, '/' is not allowed."
 msgstr "Šis simbols '/', nav atļauts."
 
-#: js/files.js:746 templates/index.php:56
+#: js/files.js:666
+msgid "files scanned"
+msgstr ""
+
+#: js/files.js:674
+msgid "error while scanning"
+msgstr ""
+
+#: js/files.js:748 templates/index.php:56
 msgid "Size"
 msgstr "Izmērs"
 
-#: js/files.js:747 templates/index.php:58
+#: js/files.js:749 templates/index.php:58
 msgid "Modified"
 msgstr "Izmainīts"
 
-#: js/files.js:774
+#: js/files.js:776
 msgid "folder"
 msgstr "mape"
 
-#: js/files.js:776
+#: js/files.js:778
 msgid "folders"
 msgstr "mapes"
 
-#: js/files.js:784
+#: js/files.js:786
 msgid "file"
 msgstr "fails"
 
-#: js/files.js:786
+#: js/files.js:788
 msgid "files"
 msgstr "faili"
 
diff --git a/l10n/lv/files_versions.po b/l10n/lv/files_versions.po
index 11755dfbc98e374920feac44b59056cd84068c99..8e28055622a6d579a4ab2e16f191f236650d3f85 100644
--- a/l10n/lv/files_versions.po
+++ b/l10n/lv/files_versions.po
@@ -7,15 +7,15 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-01 13:35+0200\n"
-"PO-Revision-Date: 2012-09-01 11:35+0000\n"
+"POT-Creation-Date: 2012-09-17 02:02+0200\n"
+"PO-Revision-Date: 2012-09-17 00:04+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: lv\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2)\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
 
 #: js/settings-personal.js:31 templates/settings-personal.php:10
 msgid "Expire all versions"
@@ -30,5 +30,9 @@ msgid "This will delete all existing backup versions of your files"
 msgstr ""
 
 #: templates/settings.php:3
-msgid "Enable Files Versioning"
+msgid "Files Versioning"
+msgstr ""
+
+#: templates/settings.php:4
+msgid "Enable"
 msgstr ""
diff --git a/l10n/lv/settings.po b/l10n/lv/settings.po
index 6c04e77d75a0a9736265e9d7945423cca77cac2d..5f35f0bfa5ca90161b9ecfc8f58005278d7e9fe3 100644
--- a/l10n/lv/settings.po
+++ b/l10n/lv/settings.po
@@ -8,8 +8,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-05 02:02+0200\n"
-"PO-Revision-Date: 2012-09-05 00:02+0000\n"
+"POT-Creation-Date: 2012-09-17 02:03+0200\n"
+"PO-Revision-Date: 2012-09-17 00:03+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n"
 "MIME-Version: 1.0\n"
@@ -35,6 +35,10 @@ msgstr ""
 msgid "Unable to add group"
 msgstr ""
 
+#: ajax/enableapp.php:13
+msgid "Could not enable app. "
+msgstr ""
+
 #: ajax/lostpassword.php:14
 msgid "Email saved"
 msgstr "Epasts tika saglabāts"
@@ -110,63 +114,67 @@ msgstr ""
 msgid "Cron"
 msgstr "Cron"
 
-#: templates/admin.php:33
-msgid "execute one task with each page loaded"
+#: templates/admin.php:37
+msgid "Execute one task with each page loaded"
 msgstr ""
 
-#: templates/admin.php:35
-msgid "cron.php is registered at a webcron service"
+#: templates/admin.php:43
+msgid ""
+"cron.php is registered at a webcron service. Call the cron.php page in the "
+"owncloud root once a minute over http."
 msgstr ""
 
-#: templates/admin.php:37
-msgid "use systems cron service"
+#: templates/admin.php:49
+msgid ""
+"Use systems cron service. Call the cron.php file in the owncloud folder via "
+"a system cronjob once a minute."
 msgstr ""
 
-#: templates/admin.php:41
-msgid "Share API"
+#: templates/admin.php:56
+msgid "Sharing"
 msgstr ""
 
-#: templates/admin.php:46
+#: templates/admin.php:61
 msgid "Enable Share API"
 msgstr ""
 
-#: templates/admin.php:47
+#: templates/admin.php:62
 msgid "Allow apps to use the Share API"
 msgstr ""
 
-#: templates/admin.php:51
+#: templates/admin.php:67
 msgid "Allow links"
 msgstr ""
 
-#: templates/admin.php:52
+#: templates/admin.php:68
 msgid "Allow users to share items to the public with links"
 msgstr ""
 
-#: templates/admin.php:56
+#: templates/admin.php:73
 msgid "Allow resharing"
 msgstr ""
 
-#: templates/admin.php:57
+#: templates/admin.php:74
 msgid "Allow users to share items shared with them again"
 msgstr ""
 
-#: templates/admin.php:60
+#: templates/admin.php:79
 msgid "Allow users to share with anyone"
 msgstr ""
 
-#: templates/admin.php:62
+#: templates/admin.php:81
 msgid "Allow users to only share with users in their groups"
 msgstr ""
 
-#: templates/admin.php:69
+#: templates/admin.php:88
 msgid "Log"
 msgstr "Log"
 
-#: templates/admin.php:97
+#: templates/admin.php:116
 msgid "More"
 msgstr "Vairāk"
 
-#: templates/admin.php:105
+#: templates/admin.php:124
 msgid ""
 "Developed by the <a href=\"http://ownCloud.org/contact\" "
 "target=\"_blank\">ownCloud community</a>, the <a "
diff --git a/l10n/mk/files.po b/l10n/mk/files.po
index 7793167ca3efeb32e24fa6401c46c2a46d7f70c1..6e73a80e8508e01a454f4ef447a78f9b31b2e53f 100644
--- a/l10n/mk/files.po
+++ b/l10n/mk/files.po
@@ -10,8 +10,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-08 02:01+0200\n"
-"PO-Revision-Date: 2012-09-08 00:02+0000\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
+"PO-Revision-Date: 2012-09-18 00:02+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n"
 "MIME-Version: 1.0\n"
@@ -82,7 +82,7 @@ msgstr ""
 msgid "replaced"
 msgstr ""
 
-#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270
+#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269
 msgid "undo"
 msgstr ""
 
@@ -90,11 +90,11 @@ msgstr ""
 msgid "with"
 msgstr ""
 
-#: js/filelist.js:268
+#: js/filelist.js:267
 msgid "unshared"
 msgstr ""
 
-#: js/filelist.js:270
+#: js/filelist.js:269
 msgid "deleted"
 msgstr ""
 
@@ -127,27 +127,35 @@ msgstr ""
 msgid "Invalid name, '/' is not allowed."
 msgstr "неисправно име, '/' не е дозволено."
 
-#: js/files.js:746 templates/index.php:56
+#: js/files.js:666
+msgid "files scanned"
+msgstr ""
+
+#: js/files.js:674
+msgid "error while scanning"
+msgstr ""
+
+#: js/files.js:748 templates/index.php:56
 msgid "Size"
 msgstr "Големина"
 
-#: js/files.js:747 templates/index.php:58
+#: js/files.js:749 templates/index.php:58
 msgid "Modified"
 msgstr "Променето"
 
-#: js/files.js:774
+#: js/files.js:776
 msgid "folder"
 msgstr "фолдер"
 
-#: js/files.js:776
+#: js/files.js:778
 msgid "folders"
 msgstr "фолдери"
 
-#: js/files.js:784
+#: js/files.js:786
 msgid "file"
 msgstr "датотека"
 
-#: js/files.js:786
+#: js/files.js:788
 msgid "files"
 msgstr "датотеки"
 
diff --git a/l10n/mk/files_versions.po b/l10n/mk/files_versions.po
index a19a0758d7eaf52437ff1185c49e0862eba6a56a..b4aa86ae3f3e0db2d174177e33cc0eb800d115bd 100644
--- a/l10n/mk/files_versions.po
+++ b/l10n/mk/files_versions.po
@@ -7,15 +7,15 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-01 13:35+0200\n"
-"PO-Revision-Date: 2012-09-01 11:35+0000\n"
+"POT-Creation-Date: 2012-09-17 02:02+0200\n"
+"PO-Revision-Date: 2012-09-17 00:04+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: mk\n"
-"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1\n"
+"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n"
 
 #: js/settings-personal.js:31 templates/settings-personal.php:10
 msgid "Expire all versions"
@@ -30,5 +30,9 @@ msgid "This will delete all existing backup versions of your files"
 msgstr ""
 
 #: templates/settings.php:3
-msgid "Enable Files Versioning"
+msgid "Files Versioning"
+msgstr ""
+
+#: templates/settings.php:4
+msgid "Enable"
 msgstr ""
diff --git a/l10n/mk/settings.po b/l10n/mk/settings.po
index 6bd27051c39fb4c398d8844822692dfdc8c4cbd5..847b78c9152022c303f7fcc07c44886c0b773b37 100644
--- a/l10n/mk/settings.po
+++ b/l10n/mk/settings.po
@@ -9,8 +9,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-05 02:02+0200\n"
-"PO-Revision-Date: 2012-09-05 00:02+0000\n"
+"POT-Creation-Date: 2012-09-17 02:03+0200\n"
+"PO-Revision-Date: 2012-09-17 00:03+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n"
 "MIME-Version: 1.0\n"
@@ -36,6 +36,10 @@ msgstr ""
 msgid "Unable to add group"
 msgstr ""
 
+#: ajax/enableapp.php:13
+msgid "Could not enable app. "
+msgstr ""
+
 #: ajax/lostpassword.php:14
 msgid "Email saved"
 msgstr "Електронската пошта е снимена"
@@ -111,63 +115,67 @@ msgstr ""
 msgid "Cron"
 msgstr ""
 
-#: templates/admin.php:33
-msgid "execute one task with each page loaded"
+#: templates/admin.php:37
+msgid "Execute one task with each page loaded"
 msgstr ""
 
-#: templates/admin.php:35
-msgid "cron.php is registered at a webcron service"
+#: templates/admin.php:43
+msgid ""
+"cron.php is registered at a webcron service. Call the cron.php page in the "
+"owncloud root once a minute over http."
 msgstr ""
 
-#: templates/admin.php:37
-msgid "use systems cron service"
+#: templates/admin.php:49
+msgid ""
+"Use systems cron service. Call the cron.php file in the owncloud folder via "
+"a system cronjob once a minute."
 msgstr ""
 
-#: templates/admin.php:41
-msgid "Share API"
+#: templates/admin.php:56
+msgid "Sharing"
 msgstr ""
 
-#: templates/admin.php:46
+#: templates/admin.php:61
 msgid "Enable Share API"
 msgstr ""
 
-#: templates/admin.php:47
+#: templates/admin.php:62
 msgid "Allow apps to use the Share API"
 msgstr ""
 
-#: templates/admin.php:51
+#: templates/admin.php:67
 msgid "Allow links"
 msgstr ""
 
-#: templates/admin.php:52
+#: templates/admin.php:68
 msgid "Allow users to share items to the public with links"
 msgstr ""
 
-#: templates/admin.php:56
+#: templates/admin.php:73
 msgid "Allow resharing"
 msgstr ""
 
-#: templates/admin.php:57
+#: templates/admin.php:74
 msgid "Allow users to share items shared with them again"
 msgstr ""
 
-#: templates/admin.php:60
+#: templates/admin.php:79
 msgid "Allow users to share with anyone"
 msgstr ""
 
-#: templates/admin.php:62
+#: templates/admin.php:81
 msgid "Allow users to only share with users in their groups"
 msgstr ""
 
-#: templates/admin.php:69
+#: templates/admin.php:88
 msgid "Log"
 msgstr "Записник"
 
-#: templates/admin.php:97
+#: templates/admin.php:116
 msgid "More"
 msgstr "Повеќе"
 
-#: templates/admin.php:105
+#: templates/admin.php:124
 msgid ""
 "Developed by the <a href=\"http://ownCloud.org/contact\" "
 "target=\"_blank\">ownCloud community</a>, the <a "
diff --git a/l10n/ms_MY/files.po b/l10n/ms_MY/files.po
index e429d35b82f7452a152f5274adc8bdcbd247f62b..a90cf2c201414e0c55d1e94d79864cabed5909fc 100644
--- a/l10n/ms_MY/files.po
+++ b/l10n/ms_MY/files.po
@@ -11,8 +11,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-08 02:01+0200\n"
-"PO-Revision-Date: 2012-09-08 00:02+0000\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
+"PO-Revision-Date: 2012-09-18 00:01+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n"
 "MIME-Version: 1.0\n"
@@ -83,7 +83,7 @@ msgstr "Batal"
 msgid "replaced"
 msgstr "diganti"
 
-#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270
+#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269
 msgid "undo"
 msgstr ""
 
@@ -91,11 +91,11 @@ msgstr ""
 msgid "with"
 msgstr "dengan"
 
-#: js/filelist.js:268
+#: js/filelist.js:267
 msgid "unshared"
 msgstr ""
 
-#: js/filelist.js:270
+#: js/filelist.js:269
 msgid "deleted"
 msgstr "dihapus"
 
@@ -128,27 +128,35 @@ msgstr ""
 msgid "Invalid name, '/' is not allowed."
 msgstr "penggunaa nama tidak sah, '/' tidak dibenarkan."
 
-#: js/files.js:746 templates/index.php:56
+#: js/files.js:666
+msgid "files scanned"
+msgstr ""
+
+#: js/files.js:674
+msgid "error while scanning"
+msgstr ""
+
+#: js/files.js:748 templates/index.php:56
 msgid "Size"
 msgstr "Saiz"
 
-#: js/files.js:747 templates/index.php:58
+#: js/files.js:749 templates/index.php:58
 msgid "Modified"
 msgstr "Dimodifikasi"
 
-#: js/files.js:774
+#: js/files.js:776
 msgid "folder"
 msgstr "direktori"
 
-#: js/files.js:776
+#: js/files.js:778
 msgid "folders"
 msgstr "direktori"
 
-#: js/files.js:784
+#: js/files.js:786
 msgid "file"
 msgstr "fail"
 
-#: js/files.js:786
+#: js/files.js:788
 msgid "files"
 msgstr "fail"
 
diff --git a/l10n/ms_MY/files_versions.po b/l10n/ms_MY/files_versions.po
index d8056fb58ece070170aa727fd9267bc57f2c96b4..1eb034086798d9a541028062eb935581c6fe404b 100644
--- a/l10n/ms_MY/files_versions.po
+++ b/l10n/ms_MY/files_versions.po
@@ -7,15 +7,15 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-01 13:35+0200\n"
-"PO-Revision-Date: 2012-09-01 11:35+0000\n"
+"POT-Creation-Date: 2012-09-17 02:02+0200\n"
+"PO-Revision-Date: 2012-09-17 00:04+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: ms_MY\n"
-"Plural-Forms: nplurals=1; plural=0\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
 
 #: js/settings-personal.js:31 templates/settings-personal.php:10
 msgid "Expire all versions"
@@ -30,5 +30,9 @@ msgid "This will delete all existing backup versions of your files"
 msgstr ""
 
 #: templates/settings.php:3
-msgid "Enable Files Versioning"
+msgid "Files Versioning"
+msgstr ""
+
+#: templates/settings.php:4
+msgid "Enable"
 msgstr ""
diff --git a/l10n/ms_MY/settings.po b/l10n/ms_MY/settings.po
index 585daefb75bda6d55ac95dc8c15729a8b9f5a95e..c9700ca3a0d4086898b4a4e3fcf2a714826d90af 100644
--- a/l10n/ms_MY/settings.po
+++ b/l10n/ms_MY/settings.po
@@ -11,8 +11,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-05 02:02+0200\n"
-"PO-Revision-Date: 2012-09-05 00:02+0000\n"
+"POT-Creation-Date: 2012-09-17 02:03+0200\n"
+"PO-Revision-Date: 2012-09-17 00:03+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n"
 "MIME-Version: 1.0\n"
@@ -38,6 +38,10 @@ msgstr ""
 msgid "Unable to add group"
 msgstr ""
 
+#: ajax/enableapp.php:13
+msgid "Could not enable app. "
+msgstr ""
+
 #: ajax/lostpassword.php:14
 msgid "Email saved"
 msgstr "Emel disimpan"
@@ -113,63 +117,67 @@ msgstr ""
 msgid "Cron"
 msgstr ""
 
-#: templates/admin.php:33
-msgid "execute one task with each page loaded"
+#: templates/admin.php:37
+msgid "Execute one task with each page loaded"
 msgstr ""
 
-#: templates/admin.php:35
-msgid "cron.php is registered at a webcron service"
+#: templates/admin.php:43
+msgid ""
+"cron.php is registered at a webcron service. Call the cron.php page in the "
+"owncloud root once a minute over http."
 msgstr ""
 
-#: templates/admin.php:37
-msgid "use systems cron service"
+#: templates/admin.php:49
+msgid ""
+"Use systems cron service. Call the cron.php file in the owncloud folder via "
+"a system cronjob once a minute."
 msgstr ""
 
-#: templates/admin.php:41
-msgid "Share API"
+#: templates/admin.php:56
+msgid "Sharing"
 msgstr ""
 
-#: templates/admin.php:46
+#: templates/admin.php:61
 msgid "Enable Share API"
 msgstr ""
 
-#: templates/admin.php:47
+#: templates/admin.php:62
 msgid "Allow apps to use the Share API"
 msgstr ""
 
-#: templates/admin.php:51
+#: templates/admin.php:67
 msgid "Allow links"
 msgstr ""
 
-#: templates/admin.php:52
+#: templates/admin.php:68
 msgid "Allow users to share items to the public with links"
 msgstr ""
 
-#: templates/admin.php:56
+#: templates/admin.php:73
 msgid "Allow resharing"
 msgstr ""
 
-#: templates/admin.php:57
+#: templates/admin.php:74
 msgid "Allow users to share items shared with them again"
 msgstr ""
 
-#: templates/admin.php:60
+#: templates/admin.php:79
 msgid "Allow users to share with anyone"
 msgstr ""
 
-#: templates/admin.php:62
+#: templates/admin.php:81
 msgid "Allow users to only share with users in their groups"
 msgstr ""
 
-#: templates/admin.php:69
+#: templates/admin.php:88
 msgid "Log"
 msgstr "Log"
 
-#: templates/admin.php:97
+#: templates/admin.php:116
 msgid "More"
 msgstr "Lanjutan"
 
-#: templates/admin.php:105
+#: templates/admin.php:124
 msgid ""
 "Developed by the <a href=\"http://ownCloud.org/contact\" "
 "target=\"_blank\">ownCloud community</a>, the <a "
diff --git a/l10n/nb_NO/files.po b/l10n/nb_NO/files.po
index 8366b5c7be0a0c652c7624a82d6b49dc7ebda1b5..43fafa1dd25b0778c55929d2cb2b5344866a2a6c 100644
--- a/l10n/nb_NO/files.po
+++ b/l10n/nb_NO/files.po
@@ -13,8 +13,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-08 02:01+0200\n"
-"PO-Revision-Date: 2012-09-08 00:02+0000\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
+"PO-Revision-Date: 2012-09-18 00:01+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n"
 "MIME-Version: 1.0\n"
@@ -85,7 +85,7 @@ msgstr "avbryt"
 msgid "replaced"
 msgstr "erstattet"
 
-#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270
+#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269
 msgid "undo"
 msgstr "angre"
 
@@ -93,11 +93,11 @@ msgstr "angre"
 msgid "with"
 msgstr "med"
 
-#: js/filelist.js:268
+#: js/filelist.js:267
 msgid "unshared"
 msgstr ""
 
-#: js/filelist.js:270
+#: js/filelist.js:269
 msgid "deleted"
 msgstr "slettet"
 
@@ -130,27 +130,35 @@ msgstr ""
 msgid "Invalid name, '/' is not allowed."
 msgstr "Ugyldig navn, '/' er ikke tillatt. "
 
-#: js/files.js:746 templates/index.php:56
+#: js/files.js:666
+msgid "files scanned"
+msgstr ""
+
+#: js/files.js:674
+msgid "error while scanning"
+msgstr ""
+
+#: js/files.js:748 templates/index.php:56
 msgid "Size"
 msgstr "Størrelse"
 
-#: js/files.js:747 templates/index.php:58
+#: js/files.js:749 templates/index.php:58
 msgid "Modified"
 msgstr "Endret"
 
-#: js/files.js:774
+#: js/files.js:776
 msgid "folder"
 msgstr "mappe"
 
-#: js/files.js:776
+#: js/files.js:778
 msgid "folders"
 msgstr "mapper"
 
-#: js/files.js:784
+#: js/files.js:786
 msgid "file"
 msgstr "fil"
 
-#: js/files.js:786
+#: js/files.js:788
 msgid "files"
 msgstr "filer"
 
diff --git a/l10n/nb_NO/files_versions.po b/l10n/nb_NO/files_versions.po
index 536b4d262ea7fb0db21ce691f1c37df8d3eddc30..d14b39491053e1df4d0b35e8c270d18c16e648bd 100644
--- a/l10n/nb_NO/files_versions.po
+++ b/l10n/nb_NO/files_versions.po
@@ -8,15 +8,15 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-01 13:35+0200\n"
-"PO-Revision-Date: 2012-09-01 11:35+0000\n"
+"POT-Creation-Date: 2012-09-17 02:02+0200\n"
+"PO-Revision-Date: 2012-09-17 00:04+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: nb_NO\n"
-"Plural-Forms: nplurals=2; plural=(n != 1)\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #: js/settings-personal.js:31 templates/settings-personal.php:10
 msgid "Expire all versions"
@@ -31,5 +31,9 @@ msgid "This will delete all existing backup versions of your files"
 msgstr ""
 
 #: templates/settings.php:3
-msgid "Enable Files Versioning"
-msgstr "Slå på versjonering"
+msgid "Files Versioning"
+msgstr ""
+
+#: templates/settings.php:4
+msgid "Enable"
+msgstr ""
diff --git a/l10n/nb_NO/settings.po b/l10n/nb_NO/settings.po
index 4b095682b56ebe13e51163d6639c1fe0f5e4c344..2a926e6f977e174b3f4795e27ccb33cb9c72923d 100644
--- a/l10n/nb_NO/settings.po
+++ b/l10n/nb_NO/settings.po
@@ -13,8 +13,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-05 02:02+0200\n"
-"PO-Revision-Date: 2012-09-05 00:02+0000\n"
+"POT-Creation-Date: 2012-09-17 02:03+0200\n"
+"PO-Revision-Date: 2012-09-17 00:03+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n"
 "MIME-Version: 1.0\n"
@@ -40,6 +40,10 @@ msgstr ""
 msgid "Unable to add group"
 msgstr ""
 
+#: ajax/enableapp.php:13
+msgid "Could not enable app. "
+msgstr ""
+
 #: ajax/lostpassword.php:14
 msgid "Email saved"
 msgstr "Epost lagret"
@@ -115,63 +119,67 @@ msgstr ""
 msgid "Cron"
 msgstr "Cron"
 
-#: templates/admin.php:33
-msgid "execute one task with each page loaded"
-msgstr "utfør en oppgave med hver side som blir lastet"
+#: templates/admin.php:37
+msgid "Execute one task with each page loaded"
+msgstr ""
 
-#: templates/admin.php:35
-msgid "cron.php is registered at a webcron service"
-msgstr "cron.php er registrert som en webcron tjeneste"
+#: templates/admin.php:43
+msgid ""
+"cron.php is registered at a webcron service. Call the cron.php page in the "
+"owncloud root once a minute over http."
+msgstr ""
 
-#: templates/admin.php:37
-msgid "use systems cron service"
-msgstr "benytt systemets cron tjeneste"
+#: templates/admin.php:49
+msgid ""
+"Use systems cron service. Call the cron.php file in the owncloud folder via "
+"a system cronjob once a minute."
+msgstr ""
 
-#: templates/admin.php:41
-msgid "Share API"
+#: templates/admin.php:56
+msgid "Sharing"
 msgstr ""
 
-#: templates/admin.php:46
+#: templates/admin.php:61
 msgid "Enable Share API"
 msgstr ""
 
-#: templates/admin.php:47
+#: templates/admin.php:62
 msgid "Allow apps to use the Share API"
 msgstr ""
 
-#: templates/admin.php:51
+#: templates/admin.php:67
 msgid "Allow links"
 msgstr ""
 
-#: templates/admin.php:52
+#: templates/admin.php:68
 msgid "Allow users to share items to the public with links"
 msgstr ""
 
-#: templates/admin.php:56
+#: templates/admin.php:73
 msgid "Allow resharing"
 msgstr ""
 
-#: templates/admin.php:57
+#: templates/admin.php:74
 msgid "Allow users to share items shared with them again"
 msgstr ""
 
-#: templates/admin.php:60
+#: templates/admin.php:79
 msgid "Allow users to share with anyone"
 msgstr ""
 
-#: templates/admin.php:62
+#: templates/admin.php:81
 msgid "Allow users to only share with users in their groups"
 msgstr ""
 
-#: templates/admin.php:69
+#: templates/admin.php:88
 msgid "Log"
 msgstr "Logg"
 
-#: templates/admin.php:97
+#: templates/admin.php:116
 msgid "More"
 msgstr "Mer"
 
-#: templates/admin.php:105
+#: templates/admin.php:124
 msgid ""
 "Developed by the <a href=\"http://ownCloud.org/contact\" "
 "target=\"_blank\">ownCloud community</a>, the <a "
diff --git a/l10n/nl/files.po b/l10n/nl/files.po
index 0a77bef2342780a11cb68a74b2364656d946d8ea..133873f11c491d2874011f1632af320c548619bf 100644
--- a/l10n/nl/files.po
+++ b/l10n/nl/files.po
@@ -16,9 +16,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-10 02:02+0200\n"
-"PO-Revision-Date: 2012-09-09 07:08+0000\n"
-"Last-Translator: Richard Bos <radoeka@gmail.com>\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
+"PO-Revision-Date: 2012-09-18 00:01+0000\n"
+"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -88,7 +88,7 @@ msgstr "annuleren"
 msgid "replaced"
 msgstr "vervangen"
 
-#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270
+#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269
 msgid "undo"
 msgstr "ongedaan maken"
 
@@ -96,11 +96,11 @@ msgstr "ongedaan maken"
 msgid "with"
 msgstr "door"
 
-#: js/filelist.js:268
+#: js/filelist.js:267
 msgid "unshared"
 msgstr "niet gedeeld"
 
-#: js/filelist.js:270
+#: js/filelist.js:269
 msgid "deleted"
 msgstr "verwijderd"
 
@@ -133,27 +133,35 @@ msgstr "Bestands upload is bezig. Wanneer de pagina nu verlaten wordt, stopt de
 msgid "Invalid name, '/' is not allowed."
 msgstr "Ongeldige naam, '/' is niet toegestaan."
 
-#: js/files.js:746 templates/index.php:56
+#: js/files.js:666
+msgid "files scanned"
+msgstr ""
+
+#: js/files.js:674
+msgid "error while scanning"
+msgstr ""
+
+#: js/files.js:748 templates/index.php:56
 msgid "Size"
 msgstr "Bestandsgrootte"
 
-#: js/files.js:747 templates/index.php:58
+#: js/files.js:749 templates/index.php:58
 msgid "Modified"
 msgstr "Laatst aangepast"
 
-#: js/files.js:774
+#: js/files.js:776
 msgid "folder"
 msgstr "map"
 
-#: js/files.js:776
+#: js/files.js:778
 msgid "folders"
 msgstr "mappen"
 
-#: js/files.js:784
+#: js/files.js:786
 msgid "file"
 msgstr "bestand"
 
-#: js/files.js:786
+#: js/files.js:788
 msgid "files"
 msgstr "bestanden"
 
diff --git a/l10n/nl/files_versions.po b/l10n/nl/files_versions.po
index 9e4a68ec09bada0078f88314b86d12993d603418..f50f1a2ae361e857e2d1a1cee97b8b966683c902 100644
--- a/l10n/nl/files_versions.po
+++ b/l10n/nl/files_versions.po
@@ -8,15 +8,15 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-02 02:01+0200\n"
-"PO-Revision-Date: 2012-09-01 20:09+0000\n"
-"Last-Translator: Richard Bos <radoeka@gmail.com>\n"
+"POT-Creation-Date: 2012-09-17 02:02+0200\n"
+"PO-Revision-Date: 2012-09-17 00:04+0000\n"
+"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: nl\n"
-"Plural-Forms: nplurals=2; plural=(n != 1)\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #: js/settings-personal.js:31 templates/settings-personal.php:10
 msgid "Expire all versions"
@@ -31,5 +31,9 @@ msgid "This will delete all existing backup versions of your files"
 msgstr "Dit zal alle bestaande backup versies van uw bestanden verwijderen"
 
 #: templates/settings.php:3
-msgid "Enable Files Versioning"
-msgstr "Activeer file versioning"
+msgid "Files Versioning"
+msgstr ""
+
+#: templates/settings.php:4
+msgid "Enable"
+msgstr ""
diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po
index 8644b83dc02109542430a85571b52545110702a4..75b4f754a860505124c45fa5819fb26b668929db 100644
--- a/l10n/nl/settings.po
+++ b/l10n/nl/settings.po
@@ -15,9 +15,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-08 02:02+0200\n"
-"PO-Revision-Date: 2012-09-07 13:23+0000\n"
-"Last-Translator: Richard Bos <radoeka@gmail.com>\n"
+"POT-Creation-Date: 2012-09-17 02:03+0200\n"
+"PO-Revision-Date: 2012-09-17 00:03+0000\n"
+"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -42,6 +42,10 @@ msgstr "Groep bestaat al"
 msgid "Unable to add group"
 msgstr "Niet in staat om groep toe te voegen"
 
+#: ajax/enableapp.php:13
+msgid "Could not enable app. "
+msgstr "Kan de app. niet activeren"
+
 #: ajax/lostpassword.php:14
 msgid "Email saved"
 msgstr "E-mail bewaard"
@@ -117,63 +121,67 @@ msgstr "Uw data folder en uw bestanden zijn hoogst waarschijnlijk vanaf het inte
 msgid "Cron"
 msgstr "Cron"
 
-#: templates/admin.php:33
-msgid "execute one task with each page loaded"
-msgstr "Voer 1 taak uit bij elke geladen pagina"
+#: templates/admin.php:37
+msgid "Execute one task with each page loaded"
+msgstr ""
 
-#: templates/admin.php:35
-msgid "cron.php is registered at a webcron service"
-msgstr "cron.php is geregistreerd bij een webcron service"
+#: templates/admin.php:43
+msgid ""
+"cron.php is registered at a webcron service. Call the cron.php page in the "
+"owncloud root once a minute over http."
+msgstr "cron.php is bij een webcron dienst geregistreerd.  Roep de cron.php pagina in de owncloud root via http één maal per minuut op."
 
-#: templates/admin.php:37
-msgid "use systems cron service"
-msgstr "gebruik de systeem cron service"
+#: templates/admin.php:49
+msgid ""
+"Use systems cron service. Call the cron.php file in the owncloud folder via "
+"a system cronjob once a minute."
+msgstr ""
 
-#: templates/admin.php:41
-msgid "Share API"
-msgstr "Deel API"
+#: templates/admin.php:56
+msgid "Sharing"
+msgstr ""
 
-#: templates/admin.php:46
+#: templates/admin.php:61
 msgid "Enable Share API"
 msgstr "Zet de Deel API aan"
 
-#: templates/admin.php:47
+#: templates/admin.php:62
 msgid "Allow apps to use the Share API"
 msgstr "Sta apps toe om de Deel API te gebruiken"
 
-#: templates/admin.php:51
+#: templates/admin.php:67
 msgid "Allow links"
 msgstr "Sta links toe"
 
-#: templates/admin.php:52
+#: templates/admin.php:68
 msgid "Allow users to share items to the public with links"
 msgstr "Sta gebruikers toe om items via links publiekelijk te maken"
 
-#: templates/admin.php:56
+#: templates/admin.php:73
 msgid "Allow resharing"
 msgstr "Sta verder delen toe"
 
-#: templates/admin.php:57
+#: templates/admin.php:74
 msgid "Allow users to share items shared with them again"
 msgstr "Sta gebruikers toe om items nogmaals te delen"
 
-#: templates/admin.php:60
+#: templates/admin.php:79
 msgid "Allow users to share with anyone"
 msgstr "Sta gebruikers toe om met iedereen te delen"
 
-#: templates/admin.php:62
+#: templates/admin.php:81
 msgid "Allow users to only share with users in their groups"
 msgstr "Sta gebruikers toe om alleen met gebruikers in hun groepen te delen"
 
-#: templates/admin.php:69
+#: templates/admin.php:88
 msgid "Log"
 msgstr "Log"
 
-#: templates/admin.php:97
+#: templates/admin.php:116
 msgid "More"
 msgstr "Meer"
 
-#: templates/admin.php:105
+#: templates/admin.php:124
 msgid ""
 "Developed by the <a href=\"http://ownCloud.org/contact\" "
 "target=\"_blank\">ownCloud community</a>, the <a "
diff --git a/l10n/nn_NO/files.po b/l10n/nn_NO/files.po
index f473b58ff41a45951bd1d45530159d784cc4fda6..1de3b2cbbe01eb92a433bc67a7dc0803fd2d19dc 100644
--- a/l10n/nn_NO/files.po
+++ b/l10n/nn_NO/files.po
@@ -9,8 +9,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-08 02:01+0200\n"
-"PO-Revision-Date: 2012-09-08 00:02+0000\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
+"PO-Revision-Date: 2012-09-18 00:01+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n"
 "MIME-Version: 1.0\n"
@@ -81,7 +81,7 @@ msgstr ""
 msgid "replaced"
 msgstr ""
 
-#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270
+#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269
 msgid "undo"
 msgstr ""
 
@@ -89,11 +89,11 @@ msgstr ""
 msgid "with"
 msgstr ""
 
-#: js/filelist.js:268
+#: js/filelist.js:267
 msgid "unshared"
 msgstr ""
 
-#: js/filelist.js:270
+#: js/filelist.js:269
 msgid "deleted"
 msgstr ""
 
@@ -126,27 +126,35 @@ msgstr ""
 msgid "Invalid name, '/' is not allowed."
 msgstr ""
 
-#: js/files.js:746 templates/index.php:56
+#: js/files.js:666
+msgid "files scanned"
+msgstr ""
+
+#: js/files.js:674
+msgid "error while scanning"
+msgstr ""
+
+#: js/files.js:748 templates/index.php:56
 msgid "Size"
 msgstr "Storleik"
 
-#: js/files.js:747 templates/index.php:58
+#: js/files.js:749 templates/index.php:58
 msgid "Modified"
 msgstr "Endra"
 
-#: js/files.js:774
+#: js/files.js:776
 msgid "folder"
 msgstr ""
 
-#: js/files.js:776
+#: js/files.js:778
 msgid "folders"
 msgstr ""
 
-#: js/files.js:784
+#: js/files.js:786
 msgid "file"
 msgstr ""
 
-#: js/files.js:786
+#: js/files.js:788
 msgid "files"
 msgstr ""
 
diff --git a/l10n/nn_NO/files_versions.po b/l10n/nn_NO/files_versions.po
index d440d7524f0b7ff6710f6c5183bdc89350c688e5..1ff9bd768fbdd7ddb85bedcedbafce215cd6f73a 100644
--- a/l10n/nn_NO/files_versions.po
+++ b/l10n/nn_NO/files_versions.po
@@ -7,15 +7,15 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-01 13:35+0200\n"
-"PO-Revision-Date: 2012-09-01 11:35+0000\n"
+"POT-Creation-Date: 2012-09-17 02:02+0200\n"
+"PO-Revision-Date: 2012-09-17 00:04+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: nn_NO\n"
-"Plural-Forms: nplurals=2; plural=(n != 1)\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #: js/settings-personal.js:31 templates/settings-personal.php:10
 msgid "Expire all versions"
@@ -30,5 +30,9 @@ msgid "This will delete all existing backup versions of your files"
 msgstr ""
 
 #: templates/settings.php:3
-msgid "Enable Files Versioning"
+msgid "Files Versioning"
+msgstr ""
+
+#: templates/settings.php:4
+msgid "Enable"
 msgstr ""
diff --git a/l10n/nn_NO/settings.po b/l10n/nn_NO/settings.po
index 8276d41ed6d5a10ca1918e958c239dee3330bf54..3ab1c66633037e356b7b676b6b68be023c058019 100644
--- a/l10n/nn_NO/settings.po
+++ b/l10n/nn_NO/settings.po
@@ -9,8 +9,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-05 02:02+0200\n"
-"PO-Revision-Date: 2012-09-05 00:02+0000\n"
+"POT-Creation-Date: 2012-09-17 02:03+0200\n"
+"PO-Revision-Date: 2012-09-17 00:03+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n"
 "MIME-Version: 1.0\n"
@@ -36,6 +36,10 @@ msgstr ""
 msgid "Unable to add group"
 msgstr ""
 
+#: ajax/enableapp.php:13
+msgid "Could not enable app. "
+msgstr ""
+
 #: ajax/lostpassword.php:14
 msgid "Email saved"
 msgstr "E-postadresse lagra"
@@ -111,63 +115,67 @@ msgstr ""
 msgid "Cron"
 msgstr ""
 
-#: templates/admin.php:33
-msgid "execute one task with each page loaded"
+#: templates/admin.php:37
+msgid "Execute one task with each page loaded"
 msgstr ""
 
-#: templates/admin.php:35
-msgid "cron.php is registered at a webcron service"
+#: templates/admin.php:43
+msgid ""
+"cron.php is registered at a webcron service. Call the cron.php page in the "
+"owncloud root once a minute over http."
 msgstr ""
 
-#: templates/admin.php:37
-msgid "use systems cron service"
+#: templates/admin.php:49
+msgid ""
+"Use systems cron service. Call the cron.php file in the owncloud folder via "
+"a system cronjob once a minute."
 msgstr ""
 
-#: templates/admin.php:41
-msgid "Share API"
+#: templates/admin.php:56
+msgid "Sharing"
 msgstr ""
 
-#: templates/admin.php:46
+#: templates/admin.php:61
 msgid "Enable Share API"
 msgstr ""
 
-#: templates/admin.php:47
+#: templates/admin.php:62
 msgid "Allow apps to use the Share API"
 msgstr ""
 
-#: templates/admin.php:51
+#: templates/admin.php:67
 msgid "Allow links"
 msgstr ""
 
-#: templates/admin.php:52
+#: templates/admin.php:68
 msgid "Allow users to share items to the public with links"
 msgstr ""
 
-#: templates/admin.php:56
+#: templates/admin.php:73
 msgid "Allow resharing"
 msgstr ""
 
-#: templates/admin.php:57
+#: templates/admin.php:74
 msgid "Allow users to share items shared with them again"
 msgstr ""
 
-#: templates/admin.php:60
+#: templates/admin.php:79
 msgid "Allow users to share with anyone"
 msgstr ""
 
-#: templates/admin.php:62
+#: templates/admin.php:81
 msgid "Allow users to only share with users in their groups"
 msgstr ""
 
-#: templates/admin.php:69
+#: templates/admin.php:88
 msgid "Log"
 msgstr ""
 
-#: templates/admin.php:97
+#: templates/admin.php:116
 msgid "More"
 msgstr ""
 
-#: templates/admin.php:105
+#: templates/admin.php:124
 msgid ""
 "Developed by the <a href=\"http://ownCloud.org/contact\" "
 "target=\"_blank\">ownCloud community</a>, the <a "
diff --git a/l10n/oc/files.po b/l10n/oc/files.po
index a6f4c0b62c8baf316a34303f562541919f3f25ec..761048854ce541d5fa0dbefc4d3eed7aee94ba5c 100644
--- a/l10n/oc/files.po
+++ b/l10n/oc/files.po
@@ -7,8 +7,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-08 02:01+0200\n"
-"PO-Revision-Date: 2012-09-08 00:02+0000\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
+"PO-Revision-Date: 2012-09-18 00:02+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n"
 "MIME-Version: 1.0\n"
@@ -79,7 +79,7 @@ msgstr ""
 msgid "replaced"
 msgstr ""
 
-#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270
+#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269
 msgid "undo"
 msgstr ""
 
@@ -87,11 +87,11 @@ msgstr ""
 msgid "with"
 msgstr ""
 
-#: js/filelist.js:268
+#: js/filelist.js:267
 msgid "unshared"
 msgstr ""
 
-#: js/filelist.js:270
+#: js/filelist.js:269
 msgid "deleted"
 msgstr ""
 
@@ -124,27 +124,35 @@ msgstr ""
 msgid "Invalid name, '/' is not allowed."
 msgstr ""
 
-#: js/files.js:746 templates/index.php:56
+#: js/files.js:666
+msgid "files scanned"
+msgstr ""
+
+#: js/files.js:674
+msgid "error while scanning"
+msgstr ""
+
+#: js/files.js:748 templates/index.php:56
 msgid "Size"
 msgstr ""
 
-#: js/files.js:747 templates/index.php:58
+#: js/files.js:749 templates/index.php:58
 msgid "Modified"
 msgstr ""
 
-#: js/files.js:774
+#: js/files.js:776
 msgid "folder"
 msgstr ""
 
-#: js/files.js:776
+#: js/files.js:778
 msgid "folders"
 msgstr ""
 
-#: js/files.js:784
+#: js/files.js:786
 msgid "file"
 msgstr ""
 
-#: js/files.js:786
+#: js/files.js:788
 msgid "files"
 msgstr ""
 
diff --git a/l10n/oc/files_versions.po b/l10n/oc/files_versions.po
index d38fef98d595a4ab709ee97d82a846abd7695514..405166dc1aa81190ac87f7485c4e7cb79e48e689 100644
--- a/l10n/oc/files_versions.po
+++ b/l10n/oc/files_versions.po
@@ -7,9 +7,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-08 02:02+0200\n"
-"PO-Revision-Date: 2012-08-12 22:37+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"POT-Creation-Date: 2012-09-17 02:02+0200\n"
+"PO-Revision-Date: 2012-09-17 00:04+0000\n"
+"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -30,5 +30,9 @@ msgid "This will delete all existing backup versions of your files"
 msgstr ""
 
 #: templates/settings.php:3
-msgid "Enable Files Versioning"
+msgid "Files Versioning"
+msgstr ""
+
+#: templates/settings.php:4
+msgid "Enable"
 msgstr ""
diff --git a/l10n/oc/settings.po b/l10n/oc/settings.po
index fe8e3adeb4e89fb53ab54d46b783b22789b4f66b..f46812b10296dc06d5a76414813194032c17ccb4 100644
--- a/l10n/oc/settings.po
+++ b/l10n/oc/settings.po
@@ -7,9 +7,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-08 02:02+0200\n"
-"PO-Revision-Date: 2011-07-25 16:05+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"POT-Creation-Date: 2012-09-17 02:03+0200\n"
+"PO-Revision-Date: 2012-09-17 00:03+0000\n"
+"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -34,6 +34,10 @@ msgstr ""
 msgid "Unable to add group"
 msgstr ""
 
+#: ajax/enableapp.php:13
+msgid "Could not enable app. "
+msgstr ""
+
 #: ajax/lostpassword.php:14
 msgid "Email saved"
 msgstr ""
@@ -109,63 +113,67 @@ msgstr ""
 msgid "Cron"
 msgstr ""
 
-#: templates/admin.php:33
-msgid "execute one task with each page loaded"
+#: templates/admin.php:37
+msgid "Execute one task with each page loaded"
 msgstr ""
 
-#: templates/admin.php:35
-msgid "cron.php is registered at a webcron service"
+#: templates/admin.php:43
+msgid ""
+"cron.php is registered at a webcron service. Call the cron.php page in the "
+"owncloud root once a minute over http."
 msgstr ""
 
-#: templates/admin.php:37
-msgid "use systems cron service"
+#: templates/admin.php:49
+msgid ""
+"Use systems cron service. Call the cron.php file in the owncloud folder via "
+"a system cronjob once a minute."
 msgstr ""
 
-#: templates/admin.php:41
-msgid "Share API"
+#: templates/admin.php:56
+msgid "Sharing"
 msgstr ""
 
-#: templates/admin.php:46
+#: templates/admin.php:61
 msgid "Enable Share API"
 msgstr ""
 
-#: templates/admin.php:47
+#: templates/admin.php:62
 msgid "Allow apps to use the Share API"
 msgstr ""
 
-#: templates/admin.php:51
+#: templates/admin.php:67
 msgid "Allow links"
 msgstr ""
 
-#: templates/admin.php:52
+#: templates/admin.php:68
 msgid "Allow users to share items to the public with links"
 msgstr ""
 
-#: templates/admin.php:56
+#: templates/admin.php:73
 msgid "Allow resharing"
 msgstr ""
 
-#: templates/admin.php:57
+#: templates/admin.php:74
 msgid "Allow users to share items shared with them again"
 msgstr ""
 
-#: templates/admin.php:60
+#: templates/admin.php:79
 msgid "Allow users to share with anyone"
 msgstr ""
 
-#: templates/admin.php:62
+#: templates/admin.php:81
 msgid "Allow users to only share with users in their groups"
 msgstr ""
 
-#: templates/admin.php:69
+#: templates/admin.php:88
 msgid "Log"
 msgstr ""
 
-#: templates/admin.php:97
+#: templates/admin.php:116
 msgid "More"
 msgstr ""
 
-#: templates/admin.php:105
+#: templates/admin.php:124
 msgid ""
 "Developed by the <a href=\"http://ownCloud.org/contact\" "
 "target=\"_blank\">ownCloud community</a>, the <a "
diff --git a/l10n/pl/files.po b/l10n/pl/files.po
index 2f0082e002fd3b19ed3ba06815c5a9f7e2ae5634..823ad032e5bcc269ce374587c33314176f3cf7c0 100644
--- a/l10n/pl/files.po
+++ b/l10n/pl/files.po
@@ -12,8 +12,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-08 02:01+0200\n"
-"PO-Revision-Date: 2012-09-08 00:02+0000\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
+"PO-Revision-Date: 2012-09-18 00:01+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n"
 "MIME-Version: 1.0\n"
@@ -58,7 +58,7 @@ msgstr "Pliki"
 
 #: js/fileactions.js:108 templates/index.php:62
 msgid "Unshare"
-msgstr ""
+msgstr "Nie udostępniaj"
 
 #: js/fileactions.js:110 templates/index.php:64
 msgid "Delete"
@@ -84,7 +84,7 @@ msgstr "anuluj"
 msgid "replaced"
 msgstr "zastąpione"
 
-#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270
+#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269
 msgid "undo"
 msgstr "wróć"
 
@@ -92,11 +92,11 @@ msgstr "wróć"
 msgid "with"
 msgstr "z"
 
-#: js/filelist.js:268
+#: js/filelist.js:267
 msgid "unshared"
-msgstr ""
+msgstr "Nie udostępnione"
 
-#: js/filelist.js:270
+#: js/filelist.js:269
 msgid "deleted"
 msgstr "skasuj"
 
@@ -129,27 +129,35 @@ msgstr "Wysyłanie pliku jest w toku. Teraz opuszczając stronę wysyłanie zost
 msgid "Invalid name, '/' is not allowed."
 msgstr "Nieprawidłowa nazwa '/' jest niedozwolone."
 
-#: js/files.js:746 templates/index.php:56
+#: js/files.js:666
+msgid "files scanned"
+msgstr ""
+
+#: js/files.js:674
+msgid "error while scanning"
+msgstr ""
+
+#: js/files.js:748 templates/index.php:56
 msgid "Size"
 msgstr "Rozmiar"
 
-#: js/files.js:747 templates/index.php:58
+#: js/files.js:749 templates/index.php:58
 msgid "Modified"
 msgstr "Czas modyfikacji"
 
-#: js/files.js:774
+#: js/files.js:776
 msgid "folder"
 msgstr "folder"
 
-#: js/files.js:776
+#: js/files.js:778
 msgid "folders"
 msgstr "foldery"
 
-#: js/files.js:784
+#: js/files.js:786
 msgid "file"
 msgstr "plik"
 
-#: js/files.js:786
+#: js/files.js:788
 msgid "files"
 msgstr "pliki"
 
diff --git a/l10n/pl/files_versions.po b/l10n/pl/files_versions.po
index ea579c0b6a47cd40ed8f68cbcf120de7cdd0a150..003982e43f1d92d5d556989bd6bfddda0db6c9a6 100644
--- a/l10n/pl/files_versions.po
+++ b/l10n/pl/files_versions.po
@@ -8,9 +8,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-04 02:01+0200\n"
-"PO-Revision-Date: 2012-09-03 06:57+0000\n"
-"Last-Translator: Cyryl Sochacki <>\n"
+"POT-Creation-Date: 2012-09-17 02:02+0200\n"
+"PO-Revision-Date: 2012-09-17 00:04+0000\n"
+"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -31,5 +31,9 @@ msgid "This will delete all existing backup versions of your files"
 msgstr "Spowoduje to usunięcie wszystkich istniejących wersji kopii zapasowych plików"
 
 #: templates/settings.php:3
-msgid "Enable Files Versioning"
-msgstr "Włącz wersjonowanie plików"
+msgid "Files Versioning"
+msgstr ""
+
+#: templates/settings.php:4
+msgid "Enable"
+msgstr ""
diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po
index adfbe39053c342fc89594dd37cc4c6e47ba68f35..d1c25e8f75cf03783157773fb17074448b850579 100644
--- a/l10n/pl/settings.po
+++ b/l10n/pl/settings.po
@@ -15,9 +15,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-06 02:02+0200\n"
-"PO-Revision-Date: 2012-09-05 12:06+0000\n"
-"Last-Translator: emc <mplichta@gmail.com>\n"
+"POT-Creation-Date: 2012-09-17 02:03+0200\n"
+"PO-Revision-Date: 2012-09-17 00:03+0000\n"
+"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -42,6 +42,10 @@ msgstr "Grupa już istnieje"
 msgid "Unable to add group"
 msgstr "Nie można dodać grupy"
 
+#: ajax/enableapp.php:13
+msgid "Could not enable app. "
+msgstr ""
+
 #: ajax/lostpassword.php:14
 msgid "Email saved"
 msgstr "Email zapisany"
@@ -117,63 +121,67 @@ msgstr "Twój katalog danych i pliki są prawdopodobnie dostępne z Internetu. P
 msgid "Cron"
 msgstr "Cron"
 
-#: templates/admin.php:33
-msgid "execute one task with each page loaded"
-msgstr "wykonanie jednego zadania z każdej  załadowanej strony"
+#: templates/admin.php:37
+msgid "Execute one task with each page loaded"
+msgstr ""
 
-#: templates/admin.php:35
-msgid "cron.php is registered at a webcron service"
-msgstr "cron.php jest zarejestrowany w usłudze webcron"
+#: templates/admin.php:43
+msgid ""
+"cron.php is registered at a webcron service. Call the cron.php page in the "
+"owncloud root once a minute over http."
+msgstr ""
 
-#: templates/admin.php:37
-msgid "use systems cron service"
-msgstr "korzystaj z usługi systemowej cron"
+#: templates/admin.php:49
+msgid ""
+"Use systems cron service. Call the cron.php file in the owncloud folder via "
+"a system cronjob once a minute."
+msgstr ""
 
-#: templates/admin.php:41
-msgid "Share API"
-msgstr "Udostępnij API"
+#: templates/admin.php:56
+msgid "Sharing"
+msgstr ""
 
-#: templates/admin.php:46
+#: templates/admin.php:61
 msgid "Enable Share API"
 msgstr "Włącz udostępniane API"
 
-#: templates/admin.php:47
+#: templates/admin.php:62
 msgid "Allow apps to use the Share API"
 msgstr "Zezwalaj aplikacjom na używanie API"
 
-#: templates/admin.php:51
+#: templates/admin.php:67
 msgid "Allow links"
 msgstr "Zezwalaj na łącza"
 
-#: templates/admin.php:52
+#: templates/admin.php:68
 msgid "Allow users to share items to the public with links"
 msgstr "Zezwalaj użytkownikom na puliczne współdzielenie elementów za pomocą linków"
 
-#: templates/admin.php:56
+#: templates/admin.php:73
 msgid "Allow resharing"
 msgstr "Zezwól na ponowne udostępnianie"
 
-#: templates/admin.php:57
+#: templates/admin.php:74
 msgid "Allow users to share items shared with them again"
 msgstr "Zezwalaj użytkownikom na ponowne współdzielenie elementów już z nimi współdzilonych"
 
-#: templates/admin.php:60
+#: templates/admin.php:79
 msgid "Allow users to share with anyone"
 msgstr "Zezwalaj użytkownikom na współdzielenie z kimkolwiek"
 
-#: templates/admin.php:62
+#: templates/admin.php:81
 msgid "Allow users to only share with users in their groups"
 msgstr "Zezwalaj użytkownikom współdzielić z użytkownikami ze swoich grup"
 
-#: templates/admin.php:69
+#: templates/admin.php:88
 msgid "Log"
 msgstr "Log"
 
-#: templates/admin.php:97
+#: templates/admin.php:116
 msgid "More"
 msgstr "Więcej"
 
-#: templates/admin.php:105
+#: templates/admin.php:124
 msgid ""
 "Developed by the <a href=\"http://ownCloud.org/contact\" "
 "target=\"_blank\">ownCloud community</a>, the <a "
diff --git a/l10n/pl_PL/files.po b/l10n/pl_PL/files.po
index 6b1c826da590967e9c9a6ac44a247d905df11cd0..b8b8ccd3d0bb4733e186f2604c38bbfae0e1138f 100644
--- a/l10n/pl_PL/files.po
+++ b/l10n/pl_PL/files.po
@@ -7,8 +7,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-08 02:01+0200\n"
-"PO-Revision-Date: 2012-09-08 00:02+0000\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
+"PO-Revision-Date: 2012-09-18 00:02+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n"
 "MIME-Version: 1.0\n"
@@ -79,7 +79,7 @@ msgstr ""
 msgid "replaced"
 msgstr ""
 
-#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270
+#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269
 msgid "undo"
 msgstr ""
 
@@ -87,11 +87,11 @@ msgstr ""
 msgid "with"
 msgstr ""
 
-#: js/filelist.js:268
+#: js/filelist.js:267
 msgid "unshared"
 msgstr ""
 
-#: js/filelist.js:270
+#: js/filelist.js:269
 msgid "deleted"
 msgstr ""
 
@@ -124,27 +124,35 @@ msgstr ""
 msgid "Invalid name, '/' is not allowed."
 msgstr ""
 
-#: js/files.js:746 templates/index.php:56
+#: js/files.js:666
+msgid "files scanned"
+msgstr ""
+
+#: js/files.js:674
+msgid "error while scanning"
+msgstr ""
+
+#: js/files.js:748 templates/index.php:56
 msgid "Size"
 msgstr ""
 
-#: js/files.js:747 templates/index.php:58
+#: js/files.js:749 templates/index.php:58
 msgid "Modified"
 msgstr ""
 
-#: js/files.js:774
+#: js/files.js:776
 msgid "folder"
 msgstr ""
 
-#: js/files.js:776
+#: js/files.js:778
 msgid "folders"
 msgstr ""
 
-#: js/files.js:784
+#: js/files.js:786
 msgid "file"
 msgstr ""
 
-#: js/files.js:786
+#: js/files.js:788
 msgid "files"
 msgstr ""
 
diff --git a/l10n/pl_PL/files_versions.po b/l10n/pl_PL/files_versions.po
index 5f9feef04fd4177ee4bf0afcc8e0967f0590d2e1..db3eb7edd21da307e659f261a7a60bbf1975ec9d 100644
--- a/l10n/pl_PL/files_versions.po
+++ b/l10n/pl_PL/files_versions.po
@@ -7,15 +7,15 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-01 13:35+0200\n"
-"PO-Revision-Date: 2012-09-01 11:35+0000\n"
+"POT-Creation-Date: 2012-09-17 02:02+0200\n"
+"PO-Revision-Date: 2012-09-17 00:04+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pl_PL\n"
-"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n"
+"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
 
 #: js/settings-personal.js:31 templates/settings-personal.php:10
 msgid "Expire all versions"
@@ -30,5 +30,9 @@ msgid "This will delete all existing backup versions of your files"
 msgstr ""
 
 #: templates/settings.php:3
-msgid "Enable Files Versioning"
+msgid "Files Versioning"
+msgstr ""
+
+#: templates/settings.php:4
+msgid "Enable"
 msgstr ""
diff --git a/l10n/pl_PL/settings.po b/l10n/pl_PL/settings.po
index 0d571388740c50d8711bb4dd58f428f7b883b257..69bcf9ca781e80c7c86f3f205857f9904fdb29dd 100644
--- a/l10n/pl_PL/settings.po
+++ b/l10n/pl_PL/settings.po
@@ -7,8 +7,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-05 02:02+0200\n"
-"PO-Revision-Date: 2012-09-05 00:02+0000\n"
+"POT-Creation-Date: 2012-09-17 02:03+0200\n"
+"PO-Revision-Date: 2012-09-17 00:03+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n"
 "MIME-Version: 1.0\n"
@@ -34,6 +34,10 @@ msgstr ""
 msgid "Unable to add group"
 msgstr ""
 
+#: ajax/enableapp.php:13
+msgid "Could not enable app. "
+msgstr ""
+
 #: ajax/lostpassword.php:14
 msgid "Email saved"
 msgstr ""
@@ -109,63 +113,67 @@ msgstr ""
 msgid "Cron"
 msgstr ""
 
-#: templates/admin.php:33
-msgid "execute one task with each page loaded"
+#: templates/admin.php:37
+msgid "Execute one task with each page loaded"
 msgstr ""
 
-#: templates/admin.php:35
-msgid "cron.php is registered at a webcron service"
+#: templates/admin.php:43
+msgid ""
+"cron.php is registered at a webcron service. Call the cron.php page in the "
+"owncloud root once a minute over http."
 msgstr ""
 
-#: templates/admin.php:37
-msgid "use systems cron service"
+#: templates/admin.php:49
+msgid ""
+"Use systems cron service. Call the cron.php file in the owncloud folder via "
+"a system cronjob once a minute."
 msgstr ""
 
-#: templates/admin.php:41
-msgid "Share API"
+#: templates/admin.php:56
+msgid "Sharing"
 msgstr ""
 
-#: templates/admin.php:46
+#: templates/admin.php:61
 msgid "Enable Share API"
 msgstr ""
 
-#: templates/admin.php:47
+#: templates/admin.php:62
 msgid "Allow apps to use the Share API"
 msgstr ""
 
-#: templates/admin.php:51
+#: templates/admin.php:67
 msgid "Allow links"
 msgstr ""
 
-#: templates/admin.php:52
+#: templates/admin.php:68
 msgid "Allow users to share items to the public with links"
 msgstr ""
 
-#: templates/admin.php:56
+#: templates/admin.php:73
 msgid "Allow resharing"
 msgstr ""
 
-#: templates/admin.php:57
+#: templates/admin.php:74
 msgid "Allow users to share items shared with them again"
 msgstr ""
 
-#: templates/admin.php:60
+#: templates/admin.php:79
 msgid "Allow users to share with anyone"
 msgstr ""
 
-#: templates/admin.php:62
+#: templates/admin.php:81
 msgid "Allow users to only share with users in their groups"
 msgstr ""
 
-#: templates/admin.php:69
+#: templates/admin.php:88
 msgid "Log"
 msgstr ""
 
-#: templates/admin.php:97
+#: templates/admin.php:116
 msgid "More"
 msgstr ""
 
-#: templates/admin.php:105
+#: templates/admin.php:124
 msgid ""
 "Developed by the <a href=\"http://ownCloud.org/contact\" "
 "target=\"_blank\">ownCloud community</a>, the <a "
diff --git a/l10n/pt_BR/files.po b/l10n/pt_BR/files.po
index dba70ec6de2e9456efed566ea983a0543aa7d05e..4d5887bf525fd2faba901343836dc3462b258ffb 100644
--- a/l10n/pt_BR/files.po
+++ b/l10n/pt_BR/files.po
@@ -12,8 +12,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-08 02:01+0200\n"
-"PO-Revision-Date: 2012-09-08 00:02+0000\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
+"PO-Revision-Date: 2012-09-18 00:01+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n"
 "MIME-Version: 1.0\n"
@@ -84,7 +84,7 @@ msgstr "cancelar"
 msgid "replaced"
 msgstr "substituido "
 
-#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270
+#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269
 msgid "undo"
 msgstr "desfazer"
 
@@ -92,11 +92,11 @@ msgstr "desfazer"
 msgid "with"
 msgstr "com"
 
-#: js/filelist.js:268
+#: js/filelist.js:267
 msgid "unshared"
 msgstr ""
 
-#: js/filelist.js:270
+#: js/filelist.js:269
 msgid "deleted"
 msgstr "deletado"
 
@@ -129,27 +129,35 @@ msgstr ""
 msgid "Invalid name, '/' is not allowed."
 msgstr "Nome inválido, '/' não é permitido."
 
-#: js/files.js:746 templates/index.php:56
+#: js/files.js:666
+msgid "files scanned"
+msgstr ""
+
+#: js/files.js:674
+msgid "error while scanning"
+msgstr ""
+
+#: js/files.js:748 templates/index.php:56
 msgid "Size"
 msgstr "Tamanho"
 
-#: js/files.js:747 templates/index.php:58
+#: js/files.js:749 templates/index.php:58
 msgid "Modified"
 msgstr "Modificado"
 
-#: js/files.js:774
+#: js/files.js:776
 msgid "folder"
 msgstr "pasta"
 
-#: js/files.js:776
+#: js/files.js:778
 msgid "folders"
 msgstr "pastas"
 
-#: js/files.js:784
+#: js/files.js:786
 msgid "file"
 msgstr "arquivo"
 
-#: js/files.js:786
+#: js/files.js:788
 msgid "files"
 msgstr "arquivos"
 
diff --git a/l10n/pt_BR/files_versions.po b/l10n/pt_BR/files_versions.po
index 14e3834e40f0b8d3573e9f17257a32cacf17c2ab..9fb1e30b67ad9fb14862c18549666c44be405cba 100644
--- a/l10n/pt_BR/files_versions.po
+++ b/l10n/pt_BR/files_versions.po
@@ -8,15 +8,15 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-01 13:35+0200\n"
-"PO-Revision-Date: 2012-09-01 11:35+0000\n"
+"POT-Creation-Date: 2012-09-17 02:02+0200\n"
+"PO-Revision-Date: 2012-09-17 00:04+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt_BR\n"
-"Plural-Forms: nplurals=2; plural=(n > 1)\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
 
 #: js/settings-personal.js:31 templates/settings-personal.php:10
 msgid "Expire all versions"
@@ -31,5 +31,9 @@ msgid "This will delete all existing backup versions of your files"
 msgstr ""
 
 #: templates/settings.php:3
-msgid "Enable Files Versioning"
-msgstr "Habilitar versionamento de arquivos"
+msgid "Files Versioning"
+msgstr ""
+
+#: templates/settings.php:4
+msgid "Enable"
+msgstr ""
diff --git a/l10n/pt_BR/settings.po b/l10n/pt_BR/settings.po
index 5c7f19c76957c595efe21f2c095fe5b4ad634382..605cee5db97e83550fda22ed61c7ee0c4ccc9d8a 100644
--- a/l10n/pt_BR/settings.po
+++ b/l10n/pt_BR/settings.po
@@ -13,8 +13,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-05 02:02+0200\n"
-"PO-Revision-Date: 2012-09-05 00:02+0000\n"
+"POT-Creation-Date: 2012-09-17 02:03+0200\n"
+"PO-Revision-Date: 2012-09-17 00:03+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n"
 "MIME-Version: 1.0\n"
@@ -40,6 +40,10 @@ msgstr ""
 msgid "Unable to add group"
 msgstr ""
 
+#: ajax/enableapp.php:13
+msgid "Could not enable app. "
+msgstr ""
+
 #: ajax/lostpassword.php:14
 msgid "Email saved"
 msgstr "Email gravado"
@@ -115,63 +119,67 @@ msgstr ""
 msgid "Cron"
 msgstr ""
 
-#: templates/admin.php:33
-msgid "execute one task with each page loaded"
-msgstr "executar uma tarefa com cada página em aberto"
+#: templates/admin.php:37
+msgid "Execute one task with each page loaded"
+msgstr ""
 
-#: templates/admin.php:35
-msgid "cron.php is registered at a webcron service"
-msgstr "cron.php esta registrado no serviço de webcron"
+#: templates/admin.php:43
+msgid ""
+"cron.php is registered at a webcron service. Call the cron.php page in the "
+"owncloud root once a minute over http."
+msgstr ""
 
-#: templates/admin.php:37
-msgid "use systems cron service"
+#: templates/admin.php:49
+msgid ""
+"Use systems cron service. Call the cron.php file in the owncloud folder via "
+"a system cronjob once a minute."
 msgstr ""
 
-#: templates/admin.php:41
-msgid "Share API"
+#: templates/admin.php:56
+msgid "Sharing"
 msgstr ""
 
-#: templates/admin.php:46
+#: templates/admin.php:61
 msgid "Enable Share API"
 msgstr ""
 
-#: templates/admin.php:47
+#: templates/admin.php:62
 msgid "Allow apps to use the Share API"
 msgstr ""
 
-#: templates/admin.php:51
+#: templates/admin.php:67
 msgid "Allow links"
 msgstr ""
 
-#: templates/admin.php:52
+#: templates/admin.php:68
 msgid "Allow users to share items to the public with links"
 msgstr ""
 
-#: templates/admin.php:56
+#: templates/admin.php:73
 msgid "Allow resharing"
 msgstr ""
 
-#: templates/admin.php:57
+#: templates/admin.php:74
 msgid "Allow users to share items shared with them again"
 msgstr ""
 
-#: templates/admin.php:60
+#: templates/admin.php:79
 msgid "Allow users to share with anyone"
 msgstr ""
 
-#: templates/admin.php:62
+#: templates/admin.php:81
 msgid "Allow users to only share with users in their groups"
 msgstr ""
 
-#: templates/admin.php:69
+#: templates/admin.php:88
 msgid "Log"
 msgstr "Log"
 
-#: templates/admin.php:97
+#: templates/admin.php:116
 msgid "More"
 msgstr "Mais"
 
-#: templates/admin.php:105
+#: templates/admin.php:124
 msgid ""
 "Developed by the <a href=\"http://ownCloud.org/contact\" "
 "target=\"_blank\">ownCloud community</a>, the <a "
diff --git a/l10n/pt_PT/files.po b/l10n/pt_PT/files.po
index 874fc55cb8ecfe50e35d3acdf0fed61eb98cc0a2..adfb85dde45f3dad7ca9daea614179386c769a9b 100644
--- a/l10n/pt_PT/files.po
+++ b/l10n/pt_PT/files.po
@@ -10,8 +10,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-08 02:01+0200\n"
-"PO-Revision-Date: 2012-09-08 00:02+0000\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
+"PO-Revision-Date: 2012-09-18 00:01+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n"
 "MIME-Version: 1.0\n"
@@ -82,7 +82,7 @@ msgstr "cancelar"
 msgid "replaced"
 msgstr "substituido"
 
-#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270
+#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269
 msgid "undo"
 msgstr "desfazer"
 
@@ -90,11 +90,11 @@ msgstr "desfazer"
 msgid "with"
 msgstr "com"
 
-#: js/filelist.js:268
+#: js/filelist.js:267
 msgid "unshared"
 msgstr ""
 
-#: js/filelist.js:270
+#: js/filelist.js:269
 msgid "deleted"
 msgstr "apagado"
 
@@ -127,27 +127,35 @@ msgstr ""
 msgid "Invalid name, '/' is not allowed."
 msgstr "nome inválido, '/' não permitido."
 
-#: js/files.js:746 templates/index.php:56
+#: js/files.js:666
+msgid "files scanned"
+msgstr ""
+
+#: js/files.js:674
+msgid "error while scanning"
+msgstr ""
+
+#: js/files.js:748 templates/index.php:56
 msgid "Size"
 msgstr "Tamanho"
 
-#: js/files.js:747 templates/index.php:58
+#: js/files.js:749 templates/index.php:58
 msgid "Modified"
 msgstr "Modificado"
 
-#: js/files.js:774
+#: js/files.js:776
 msgid "folder"
 msgstr "pasta"
 
-#: js/files.js:776
+#: js/files.js:778
 msgid "folders"
 msgstr "pastas"
 
-#: js/files.js:784
+#: js/files.js:786
 msgid "file"
 msgstr "ficheiro"
 
-#: js/files.js:786
+#: js/files.js:788
 msgid "files"
 msgstr "ficheiros"
 
diff --git a/l10n/pt_PT/files_versions.po b/l10n/pt_PT/files_versions.po
index 56a1489aa859db011d1f2c862b245dad02da3c5e..f4b82dc62c9158ee8f3c34103375a445a960135c 100644
--- a/l10n/pt_PT/files_versions.po
+++ b/l10n/pt_PT/files_versions.po
@@ -7,15 +7,15 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-01 13:35+0200\n"
-"PO-Revision-Date: 2012-09-01 11:35+0000\n"
+"POT-Creation-Date: 2012-09-17 02:02+0200\n"
+"PO-Revision-Date: 2012-09-17 00:04+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt_PT\n"
-"Plural-Forms: nplurals=2; plural=(n != 1)\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #: js/settings-personal.js:31 templates/settings-personal.php:10
 msgid "Expire all versions"
@@ -30,5 +30,9 @@ msgid "This will delete all existing backup versions of your files"
 msgstr ""
 
 #: templates/settings.php:3
-msgid "Enable Files Versioning"
+msgid "Files Versioning"
+msgstr ""
+
+#: templates/settings.php:4
+msgid "Enable"
 msgstr ""
diff --git a/l10n/pt_PT/settings.po b/l10n/pt_PT/settings.po
index 05fcf5b8bd0efd5163605ef3e19ac5cf6d3e19b0..1ed27b86f7504f7db52121b8a0361024e03e8dda 100644
--- a/l10n/pt_PT/settings.po
+++ b/l10n/pt_PT/settings.po
@@ -10,8 +10,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-05 02:02+0200\n"
-"PO-Revision-Date: 2012-09-05 00:02+0000\n"
+"POT-Creation-Date: 2012-09-17 02:03+0200\n"
+"PO-Revision-Date: 2012-09-17 00:03+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n"
 "MIME-Version: 1.0\n"
@@ -37,6 +37,10 @@ msgstr ""
 msgid "Unable to add group"
 msgstr ""
 
+#: ajax/enableapp.php:13
+msgid "Could not enable app. "
+msgstr ""
+
 #: ajax/lostpassword.php:14
 msgid "Email saved"
 msgstr "Email guardado"
@@ -112,63 +116,67 @@ msgstr ""
 msgid "Cron"
 msgstr "Cron"
 
-#: templates/admin.php:33
-msgid "execute one task with each page loaded"
-msgstr "Executar uma tarefa com cada página carregada"
+#: templates/admin.php:37
+msgid "Execute one task with each page loaded"
+msgstr ""
 
-#: templates/admin.php:35
-msgid "cron.php is registered at a webcron service"
-msgstr "cron.php está registado num serviço webcron"
+#: templates/admin.php:43
+msgid ""
+"cron.php is registered at a webcron service. Call the cron.php page in the "
+"owncloud root once a minute over http."
+msgstr ""
 
-#: templates/admin.php:37
-msgid "use systems cron service"
-msgstr "usar o serviço cron do sistema"
+#: templates/admin.php:49
+msgid ""
+"Use systems cron service. Call the cron.php file in the owncloud folder via "
+"a system cronjob once a minute."
+msgstr ""
 
-#: templates/admin.php:41
-msgid "Share API"
+#: templates/admin.php:56
+msgid "Sharing"
 msgstr ""
 
-#: templates/admin.php:46
+#: templates/admin.php:61
 msgid "Enable Share API"
 msgstr ""
 
-#: templates/admin.php:47
+#: templates/admin.php:62
 msgid "Allow apps to use the Share API"
 msgstr ""
 
-#: templates/admin.php:51
+#: templates/admin.php:67
 msgid "Allow links"
 msgstr ""
 
-#: templates/admin.php:52
+#: templates/admin.php:68
 msgid "Allow users to share items to the public with links"
 msgstr ""
 
-#: templates/admin.php:56
+#: templates/admin.php:73
 msgid "Allow resharing"
 msgstr ""
 
-#: templates/admin.php:57
+#: templates/admin.php:74
 msgid "Allow users to share items shared with them again"
 msgstr ""
 
-#: templates/admin.php:60
+#: templates/admin.php:79
 msgid "Allow users to share with anyone"
 msgstr ""
 
-#: templates/admin.php:62
+#: templates/admin.php:81
 msgid "Allow users to only share with users in their groups"
 msgstr ""
 
-#: templates/admin.php:69
+#: templates/admin.php:88
 msgid "Log"
 msgstr "Log"
 
-#: templates/admin.php:97
+#: templates/admin.php:116
 msgid "More"
 msgstr "Mais"
 
-#: templates/admin.php:105
+#: templates/admin.php:124
 msgid ""
 "Developed by the <a href=\"http://ownCloud.org/contact\" "
 "target=\"_blank\">ownCloud community</a>, the <a "
diff --git a/l10n/ro/core.po b/l10n/ro/core.po
index 42e779595e1f5dcfef1522d09495d39303469b29..a1c262c007e4698bd0b86d25857bb4b567e48684 100644
--- a/l10n/ro/core.po
+++ b/l10n/ro/core.po
@@ -6,13 +6,14 @@
 # Claudiu  <claudiu@tanaselia.ro>, 2011, 2012.
 # Dimon Pockemon <>, 2012.
 # Eugen Mihalache <eugemjj@gmail.com>, 2012.
+#   <g.ciprian@osn.ro>, 2012.
 msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-06 02:02+0200\n"
-"PO-Revision-Date: 2012-09-06 00:03+0000\n"
-"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
+"PO-Revision-Date: 2012-09-17 08:30+0000\n"
+"Last-Translator: g.ciprian <g.ciprian@osn.ro>\n"
 "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -32,81 +33,81 @@ msgstr "Nici o categorie de adăugat?"
 msgid "This category already exists: "
 msgstr "Această categorie deja există:"
 
-#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61
+#: js/js.js:214 templates/layout.user.php:54 templates/layout.user.php:55
 msgid "Settings"
 msgstr "Configurări"
 
-#: js/js.js:593
+#: js/js.js:642
 msgid "January"
-msgstr ""
+msgstr "Ianuarie"
 
-#: js/js.js:593
+#: js/js.js:642
 msgid "February"
-msgstr ""
+msgstr "Februarie"
 
-#: js/js.js:593
+#: js/js.js:642
 msgid "March"
-msgstr ""
+msgstr "Martie"
 
-#: js/js.js:593
+#: js/js.js:642
 msgid "April"
-msgstr ""
+msgstr "Aprilie"
 
-#: js/js.js:593
+#: js/js.js:642
 msgid "May"
-msgstr ""
+msgstr "Mai"
 
-#: js/js.js:593
+#: js/js.js:642
 msgid "June"
-msgstr ""
+msgstr "Iunie"
 
-#: js/js.js:594
+#: js/js.js:643
 msgid "July"
-msgstr ""
+msgstr "Iulie"
 
-#: js/js.js:594
+#: js/js.js:643
 msgid "August"
-msgstr ""
+msgstr "August"
 
-#: js/js.js:594
+#: js/js.js:643
 msgid "September"
-msgstr ""
+msgstr "Septembrie"
 
-#: js/js.js:594
+#: js/js.js:643
 msgid "October"
-msgstr ""
+msgstr "Octombrie"
 
-#: js/js.js:594
+#: js/js.js:643
 msgid "November"
-msgstr ""
+msgstr "Noiembrie"
 
-#: js/js.js:594
+#: js/js.js:643
 msgid "December"
-msgstr ""
+msgstr "Decembrie"
 
 #: js/oc-dialogs.js:143 js/oc-dialogs.js:163
 msgid "Cancel"
-msgstr ""
+msgstr "Anulare"
 
 #: js/oc-dialogs.js:159
 msgid "No"
-msgstr ""
+msgstr "Nu"
 
 #: js/oc-dialogs.js:160
 msgid "Yes"
-msgstr ""
+msgstr "Da"
 
 #: js/oc-dialogs.js:177
 msgid "Ok"
-msgstr ""
+msgstr "Ok"
 
 #: js/oc-vcategories.js:68
 msgid "No categories selected for deletion."
-msgstr ""
+msgstr "Nici o categorie selectată pentru ștergere."
 
 #: js/oc-vcategories.js:68
 msgid "Error"
-msgstr ""
+msgstr "Eroare"
 
 #: lostpassword/index.php:26
 msgid "ownCloud password reset"
@@ -238,11 +239,11 @@ msgstr "Bază date"
 msgid "Finish setup"
 msgstr "Finalizează instalarea"
 
-#: templates/layout.guest.php:42
+#: templates/layout.guest.php:36
 msgid "web services under your control"
 msgstr "servicii web controlate de tine"
 
-#: templates/layout.user.php:45
+#: templates/layout.user.php:39
 msgid "Log out"
 msgstr "Ieșire"
 
diff --git a/l10n/ro/files.po b/l10n/ro/files.po
index a1551d7f5cd50d5f6a2da1f42c2c59929cfebd6f..bbdcca021cfb8bb2350832a73b7fa3cf84a26fc4 100644
--- a/l10n/ro/files.po
+++ b/l10n/ro/files.po
@@ -10,8 +10,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-08 02:01+0200\n"
-"PO-Revision-Date: 2012-09-08 00:02+0000\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
+"PO-Revision-Date: 2012-09-18 00:01+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n"
 "MIME-Version: 1.0\n"
@@ -82,7 +82,7 @@ msgstr ""
 msgid "replaced"
 msgstr ""
 
-#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270
+#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269
 msgid "undo"
 msgstr ""
 
@@ -90,11 +90,11 @@ msgstr ""
 msgid "with"
 msgstr ""
 
-#: js/filelist.js:268
+#: js/filelist.js:267
 msgid "unshared"
 msgstr ""
 
-#: js/filelist.js:270
+#: js/filelist.js:269
 msgid "deleted"
 msgstr ""
 
@@ -127,27 +127,35 @@ msgstr ""
 msgid "Invalid name, '/' is not allowed."
 msgstr ""
 
-#: js/files.js:746 templates/index.php:56
+#: js/files.js:666
+msgid "files scanned"
+msgstr ""
+
+#: js/files.js:674
+msgid "error while scanning"
+msgstr ""
+
+#: js/files.js:748 templates/index.php:56
 msgid "Size"
 msgstr "Dimensiune"
 
-#: js/files.js:747 templates/index.php:58
+#: js/files.js:749 templates/index.php:58
 msgid "Modified"
 msgstr "Modificat"
 
-#: js/files.js:774
+#: js/files.js:776
 msgid "folder"
 msgstr ""
 
-#: js/files.js:776
+#: js/files.js:778
 msgid "folders"
 msgstr ""
 
-#: js/files.js:784
+#: js/files.js:786
 msgid "file"
 msgstr ""
 
-#: js/files.js:786
+#: js/files.js:788
 msgid "files"
 msgstr ""
 
diff --git a/l10n/ro/files_versions.po b/l10n/ro/files_versions.po
index 936d92da9a12d5f2af91cc1042e917a50da79782..c972244652f8d4f7cc09998d7014ad99410f0d30 100644
--- a/l10n/ro/files_versions.po
+++ b/l10n/ro/files_versions.po
@@ -7,15 +7,15 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-01 13:35+0200\n"
-"PO-Revision-Date: 2012-09-01 11:35+0000\n"
+"POT-Creation-Date: 2012-09-17 02:02+0200\n"
+"PO-Revision-Date: 2012-09-17 00:04+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: ro\n"
-"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1))\n"
+"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n"
 
 #: js/settings-personal.js:31 templates/settings-personal.php:10
 msgid "Expire all versions"
@@ -30,5 +30,9 @@ msgid "This will delete all existing backup versions of your files"
 msgstr ""
 
 #: templates/settings.php:3
-msgid "Enable Files Versioning"
+msgid "Files Versioning"
+msgstr ""
+
+#: templates/settings.php:4
+msgid "Enable"
 msgstr ""
diff --git a/l10n/ro/settings.po b/l10n/ro/settings.po
index a1bc80deb8ac378d4300af0e043e9e1b7fe9b6a6..5e814151bf9b4451bc28aba8188e2e5a95fe2e41 100644
--- a/l10n/ro/settings.po
+++ b/l10n/ro/settings.po
@@ -6,15 +6,16 @@
 # Claudiu  <claudiu@tanaselia.ro>, 2011, 2012.
 # Dimon Pockemon <>, 2012.
 # Eugen Mihalache <eugemjj@gmail.com>, 2012.
+#   <g.ciprian@osn.ro>, 2012.
 #   <icewind1991@gmail.com>, 2012.
 #   <iuranemo@gmail.com>, 2012.
 msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-05 02:02+0200\n"
-"PO-Revision-Date: 2012-09-05 00:02+0000\n"
-"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
+"PO-Revision-Date: 2012-09-17 08:42+0000\n"
+"Last-Translator: g.ciprian <g.ciprian@osn.ro>\n"
 "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -33,11 +34,15 @@ msgstr "Eroare de autentificare"
 
 #: ajax/creategroup.php:19
 msgid "Group already exists"
-msgstr ""
+msgstr "Grupul există deja"
 
 #: ajax/creategroup.php:28
 msgid "Unable to add group"
-msgstr ""
+msgstr "Nu s-a putut adăuga grupul"
+
+#: ajax/enableapp.php:14
+msgid "Could not enable app. "
+msgstr "Nu s-a putut activa aplicația."
 
 #: ajax/lostpassword.php:14
 msgid "Email saved"
@@ -57,11 +62,11 @@ msgstr "Cerere eronată"
 
 #: ajax/removegroup.php:16
 msgid "Unable to delete group"
-msgstr ""
+msgstr "Nu s-a putut șterge grupul"
 
 #: ajax/removeuser.php:22
 msgid "Unable to delete user"
-msgstr ""
+msgstr "Nu s-a putut șterge utilizatorul"
 
 #: ajax/setlanguage.php:18
 msgid "Language changed"
@@ -70,12 +75,12 @@ msgstr "Limba a fost schimbată"
 #: ajax/togglegroups.php:25
 #, php-format
 msgid "Unable to add user to group %s"
-msgstr ""
+msgstr "Nu s-a putut adăuga utilizatorul la grupul %s"
 
 #: ajax/togglegroups.php:31
 #, php-format
 msgid "Unable to remove user from group %s"
-msgstr ""
+msgstr "Nu s-a putut elimina utilizatorul din grupul %s"
 
 #: js/apps.js:18
 msgid "Error"
@@ -108,69 +113,73 @@ msgid ""
 "strongly suggest that you configure your webserver in a way that the data "
 "directory is no longer accessible or you move the data directory outside the"
 " webserver document root."
-msgstr ""
+msgstr "Directorul tău de date și fișierele tale probabil sunt accesibile prin internet. Fișierul .htaccess oferit de ownCloud nu funcționează. Îți recomandăm să configurezi server-ul tău web într-un mod în care directorul de date să nu mai fie accesibil sau mută directorul de date în afara directorului root al server-ului web."
 
 #: templates/admin.php:31
 msgid "Cron"
 msgstr "Cron"
 
-#: templates/admin.php:33
-msgid "execute one task with each page loaded"
-msgstr "executâ o sarcină cu fiecare pagină încărcată"
-
-#: templates/admin.php:35
-msgid "cron.php is registered at a webcron service"
-msgstr "cron.php e înregistrat la un serviciu de webcron"
-
 #: templates/admin.php:37
-msgid "use systems cron service"
-msgstr "utilizează serviciul de cron al sistemului"
+msgid "Execute one task with each page loaded"
+msgstr ""
 
-#: templates/admin.php:41
-msgid "Share API"
+#: templates/admin.php:43
+msgid ""
+"cron.php is registered at a webcron service. Call the cron.php page in the "
+"owncloud root once a minute over http."
 msgstr ""
 
-#: templates/admin.php:46
-msgid "Enable Share API"
+#: templates/admin.php:49
+msgid ""
+"Use systems cron service. Call the cron.php file in the owncloud folder via "
+"a system cronjob once a minute."
 msgstr ""
 
-#: templates/admin.php:47
+#: templates/admin.php:56
+msgid "Sharing"
+msgstr "Partajare"
+
+#: templates/admin.php:61
+msgid "Enable Share API"
+msgstr "Activare API partajare"
+
+#: templates/admin.php:62
 msgid "Allow apps to use the Share API"
-msgstr ""
+msgstr "Permite aplicațiilor să folosească API-ul de partajare"
 
-#: templates/admin.php:51
+#: templates/admin.php:67
 msgid "Allow links"
-msgstr ""
+msgstr "Pemite legături"
 
-#: templates/admin.php:52
+#: templates/admin.php:68
 msgid "Allow users to share items to the public with links"
 msgstr ""
 
-#: templates/admin.php:56
+#: templates/admin.php:73
 msgid "Allow resharing"
-msgstr ""
+msgstr "Permite repartajarea"
 
-#: templates/admin.php:57
+#: templates/admin.php:74
 msgid "Allow users to share items shared with them again"
 msgstr ""
 
-#: templates/admin.php:60
+#: templates/admin.php:79
 msgid "Allow users to share with anyone"
-msgstr ""
+msgstr "Permite utilizatorilor să partajeze cu oricine"
 
-#: templates/admin.php:62
+#: templates/admin.php:81
 msgid "Allow users to only share with users in their groups"
-msgstr ""
+msgstr "Permite utilizatorilor să partajeze doar cu utilizatori din același grup"
 
-#: templates/admin.php:69
+#: templates/admin.php:88
 msgid "Log"
 msgstr "Jurnal de activitate"
 
-#: templates/admin.php:97
+#: templates/admin.php:116
 msgid "More"
 msgstr "Mai mult"
 
-#: templates/admin.php:105
+#: templates/admin.php:124
 msgid ""
 "Developed by the <a href=\"http://ownCloud.org/contact\" "
 "target=\"_blank\">ownCloud community</a>, the <a "
@@ -178,7 +187,7 @@ msgid ""
 "licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" "
 "target=\"_blank\"><abbr title=\"Affero General Public "
 "License\">AGPL</abbr></a>."
-msgstr ""
+msgstr "Dezvoltat de the <a href=\"http://ownCloud.org/contact\" target=\"_blank\">comunitatea ownCloud</a>, <a href=\"https://github.com/owncloud\" target=\"_blank\">codul sursă</a> este licențiat sub <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>."
 
 #: templates/apps.php:10
 msgid "Add your App"
@@ -194,7 +203,7 @@ msgstr "Vizualizează pagina applicației pe apps.owncloud.com"
 
 #: templates/apps.php:30
 msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>"
-msgstr ""
+msgstr "<span class=\"licence\"></span>-licențiat <span class=\"author\"></span>"
 
 #: templates/help.php:9
 msgid "Documentation"
diff --git a/l10n/ru/files.po b/l10n/ru/files.po
index 234fbe404e5ebc254b5e77956b9ecd47fbe93657..120ca926c5600f6381c5f17f1a7c6ef7e11fcc66 100644
--- a/l10n/ru/files.po
+++ b/l10n/ru/files.po
@@ -14,9 +14,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-09 02:01+0200\n"
-"PO-Revision-Date: 2012-09-08 14:18+0000\n"
-"Last-Translator: VicDeo <victor.dubiniuk@gmail.com>\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
+"PO-Revision-Date: 2012-09-18 00:01+0000\n"
+"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -86,7 +86,7 @@ msgstr "отмена"
 msgid "replaced"
 msgstr "заменён"
 
-#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270
+#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269
 msgid "undo"
 msgstr "отмена"
 
@@ -94,11 +94,11 @@ msgstr "отмена"
 msgid "with"
 msgstr "с"
 
-#: js/filelist.js:268
+#: js/filelist.js:267
 msgid "unshared"
 msgstr "публикация отменена"
 
-#: js/filelist.js:270
+#: js/filelist.js:269
 msgid "deleted"
 msgstr "удален"
 
@@ -131,27 +131,35 @@ msgstr "Файл в процессе загрузки. Покинув стран
 msgid "Invalid name, '/' is not allowed."
 msgstr "Неверное имя, '/' не допускается."
 
-#: js/files.js:746 templates/index.php:56
+#: js/files.js:666
+msgid "files scanned"
+msgstr ""
+
+#: js/files.js:674
+msgid "error while scanning"
+msgstr ""
+
+#: js/files.js:748 templates/index.php:56
 msgid "Size"
 msgstr "Размер"
 
-#: js/files.js:747 templates/index.php:58
+#: js/files.js:749 templates/index.php:58
 msgid "Modified"
 msgstr "Изменён"
 
-#: js/files.js:774
+#: js/files.js:776
 msgid "folder"
 msgstr "папка"
 
-#: js/files.js:776
+#: js/files.js:778
 msgid "folders"
 msgstr "папки"
 
-#: js/files.js:784
+#: js/files.js:786
 msgid "file"
 msgstr "файл"
 
-#: js/files.js:786
+#: js/files.js:788
 msgid "files"
 msgstr "файлы"
 
diff --git a/l10n/ru/files_versions.po b/l10n/ru/files_versions.po
index 4eec64b43e41fd7d0d74862a571ad74c27699922..dfa8a12274cdcea8a881e87adcb1fd1737f1eabe 100644
--- a/l10n/ru/files_versions.po
+++ b/l10n/ru/files_versions.po
@@ -9,9 +9,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-08 02:02+0200\n"
-"PO-Revision-Date: 2012-09-07 11:40+0000\n"
-"Last-Translator: VicDeo <victor.dubiniuk@gmail.com>\n"
+"POT-Creation-Date: 2012-09-17 02:02+0200\n"
+"PO-Revision-Date: 2012-09-17 00:04+0000\n"
+"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -32,5 +32,9 @@ msgid "This will delete all existing backup versions of your files"
 msgstr "Очистить список версий ваших файлов"
 
 #: templates/settings.php:3
-msgid "Enable Files Versioning"
-msgstr "Включить ведение версий файлов"
+msgid "Files Versioning"
+msgstr ""
+
+#: templates/settings.php:4
+msgid "Enable"
+msgstr ""
diff --git a/l10n/ru/settings.po b/l10n/ru/settings.po
index 53b8f54895a00e22c40c85c5cff569f2d4dbc766..58403d5b2fcfe38d5e29e1d71e43167ae633177e 100644
--- a/l10n/ru/settings.po
+++ b/l10n/ru/settings.po
@@ -16,9 +16,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-12 02:01+0200\n"
-"PO-Revision-Date: 2012-09-11 01:35+0000\n"
-"Last-Translator: VicDeo <victor.dubiniuk@gmail.com>\n"
+"POT-Creation-Date: 2012-09-17 02:03+0200\n"
+"PO-Revision-Date: 2012-09-17 00:03+0000\n"
+"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -43,6 +43,10 @@ msgstr "Группа уже существует"
 msgid "Unable to add group"
 msgstr "Невозможно добавить группу"
 
+#: ajax/enableapp.php:13
+msgid "Could not enable app. "
+msgstr ""
+
 #: ajax/lostpassword.php:14
 msgid "Email saved"
 msgstr "Email сохранен"
@@ -118,63 +122,67 @@ msgstr "Похоже, что каталог data и ваши файлы в не
 msgid "Cron"
 msgstr "Задание"
 
-#: templates/admin.php:33
-msgid "execute one task with each page loaded"
-msgstr "Запускать задание при загрузке каждой страницы"
+#: templates/admin.php:37
+msgid "Execute one task with each page loaded"
+msgstr ""
 
-#: templates/admin.php:35
-msgid "cron.php is registered at a webcron service"
-msgstr "cron.php зарегистрирован в службе webcron"
+#: templates/admin.php:43
+msgid ""
+"cron.php is registered at a webcron service. Call the cron.php page in the "
+"owncloud root once a minute over http."
+msgstr ""
 
-#: templates/admin.php:37
-msgid "use systems cron service"
-msgstr "использовать системные задания"
+#: templates/admin.php:49
+msgid ""
+"Use systems cron service. Call the cron.php file in the owncloud folder via "
+"a system cronjob once a minute."
+msgstr ""
 
-#: templates/admin.php:41
-msgid "Share API"
-msgstr "API публикации"
+#: templates/admin.php:56
+msgid "Sharing"
+msgstr ""
 
-#: templates/admin.php:46
+#: templates/admin.php:61
 msgid "Enable Share API"
 msgstr "Включить API публикации"
 
-#: templates/admin.php:47
+#: templates/admin.php:62
 msgid "Allow apps to use the Share API"
 msgstr "Разрешить API публикации для приложений"
 
-#: templates/admin.php:51
+#: templates/admin.php:67
 msgid "Allow links"
 msgstr "Разрешить ссылки"
 
-#: templates/admin.php:52
+#: templates/admin.php:68
 msgid "Allow users to share items to the public with links"
 msgstr "Разрешить пользователям публикацию при помощи ссылок"
 
-#: templates/admin.php:56
+#: templates/admin.php:73
 msgid "Allow resharing"
 msgstr "Включить повторную публикацию"
 
-#: templates/admin.php:57
+#: templates/admin.php:74
 msgid "Allow users to share items shared with them again"
 msgstr "Разрешить пользователям публиковать доступные им элементы других пользователей"
 
-#: templates/admin.php:60
+#: templates/admin.php:79
 msgid "Allow users to share with anyone"
 msgstr "Разрешить публиковать для любых пользователей"
 
-#: templates/admin.php:62
+#: templates/admin.php:81
 msgid "Allow users to only share with users in their groups"
 msgstr "Ограничить публикацию группами пользователя"
 
-#: templates/admin.php:69
+#: templates/admin.php:88
 msgid "Log"
 msgstr "Журнал"
 
-#: templates/admin.php:97
+#: templates/admin.php:116
 msgid "More"
 msgstr "Ещё"
 
-#: templates/admin.php:105
+#: templates/admin.php:124
 msgid ""
 "Developed by the <a href=\"http://ownCloud.org/contact\" "
 "target=\"_blank\">ownCloud community</a>, the <a "
diff --git a/l10n/ru_RU/core.po b/l10n/ru_RU/core.po
index 6c4aeee5d54f9080181e436c0e2289d829212b88..be63870a0773b1ffb23c50fbd58020fd79fcac0e 100644
--- a/l10n/ru_RU/core.po
+++ b/l10n/ru_RU/core.po
@@ -3,13 +3,14 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
+#   <cdewqazxsqwe@gmail.com>, 2012.
 msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-06 02:02+0200\n"
-"PO-Revision-Date: 2012-09-06 00:03+0000\n"
-"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
+"POT-Creation-Date: 2012-09-14 02:01+0200\n"
+"PO-Revision-Date: 2012-09-13 12:09+0000\n"
+"Last-Translator: AnnaSch <cdewqazxsqwe@gmail.com>\n"
 "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -19,250 +20,250 @@ msgstr ""
 
 #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23
 msgid "Application name not provided."
-msgstr ""
+msgstr "Имя приложения не предоставлено."
 
 #: ajax/vcategories/add.php:29
 msgid "No category to add?"
-msgstr ""
+msgstr "Нет категории для добавления?"
 
 #: ajax/vcategories/add.php:36
 msgid "This category already exists: "
-msgstr ""
+msgstr "Эта категория уже существует:"
 
-#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61
+#: js/js.js:214 templates/layout.user.php:54 templates/layout.user.php:55
 msgid "Settings"
-msgstr ""
+msgstr "Настройки"
 
-#: js/js.js:593
+#: js/js.js:642
 msgid "January"
-msgstr ""
+msgstr "Январь"
 
-#: js/js.js:593
+#: js/js.js:642
 msgid "February"
-msgstr ""
+msgstr "Февраль"
 
-#: js/js.js:593
+#: js/js.js:642
 msgid "March"
-msgstr ""
+msgstr "Март"
 
-#: js/js.js:593
+#: js/js.js:642
 msgid "April"
-msgstr ""
+msgstr "Апрель"
 
-#: js/js.js:593
+#: js/js.js:642
 msgid "May"
-msgstr ""
+msgstr "Май"
 
-#: js/js.js:593
+#: js/js.js:642
 msgid "June"
-msgstr ""
+msgstr "Июнь"
 
-#: js/js.js:594
+#: js/js.js:643
 msgid "July"
-msgstr ""
+msgstr "Июль"
 
-#: js/js.js:594
+#: js/js.js:643
 msgid "August"
-msgstr ""
+msgstr "Август"
 
-#: js/js.js:594
+#: js/js.js:643
 msgid "September"
-msgstr ""
+msgstr "Сентябрь"
 
-#: js/js.js:594
+#: js/js.js:643
 msgid "October"
-msgstr ""
+msgstr "Октябрь"
 
-#: js/js.js:594
+#: js/js.js:643
 msgid "November"
-msgstr ""
+msgstr "Ноябрь"
 
-#: js/js.js:594
+#: js/js.js:643
 msgid "December"
-msgstr ""
+msgstr "Декабрь"
 
 #: js/oc-dialogs.js:143 js/oc-dialogs.js:163
 msgid "Cancel"
-msgstr ""
+msgstr "Отмена"
 
 #: js/oc-dialogs.js:159
 msgid "No"
-msgstr ""
+msgstr "Нет"
 
 #: js/oc-dialogs.js:160
 msgid "Yes"
-msgstr ""
+msgstr "Да"
 
 #: js/oc-dialogs.js:177
 msgid "Ok"
-msgstr ""
+msgstr "Да"
 
 #: js/oc-vcategories.js:68
 msgid "No categories selected for deletion."
-msgstr ""
+msgstr "Нет категорий, выбранных для удаления."
 
 #: js/oc-vcategories.js:68
 msgid "Error"
-msgstr ""
+msgstr "Ошибка"
 
 #: lostpassword/index.php:26
 msgid "ownCloud password reset"
-msgstr ""
+msgstr "Переназначение пароля"
 
 #: lostpassword/templates/email.php:2
 msgid "Use the following link to reset your password: {link}"
-msgstr ""
+msgstr "Воспользуйтесь следующей ссылкой для переназначения пароля: {link}"
 
 #: lostpassword/templates/lostpassword.php:3
 msgid "You will receive a link to reset your password via Email."
-msgstr ""
+msgstr "Вы получите ссылку для восстановления пароля по электронной почте."
 
 #: lostpassword/templates/lostpassword.php:5
 msgid "Requested"
-msgstr ""
+msgstr "Запрашиваемое"
 
 #: lostpassword/templates/lostpassword.php:8
 msgid "Login failed!"
-msgstr ""
+msgstr "Войти не удалось!"
 
 #: lostpassword/templates/lostpassword.php:11 templates/installation.php:26
 #: templates/login.php:9
 msgid "Username"
-msgstr ""
+msgstr "Имя пользователя"
 
 #: lostpassword/templates/lostpassword.php:15
 msgid "Request reset"
-msgstr ""
+msgstr "Сброс запроса"
 
 #: lostpassword/templates/resetpassword.php:4
 msgid "Your password was reset"
-msgstr ""
+msgstr "Ваш пароль был переустановлен"
 
 #: lostpassword/templates/resetpassword.php:5
 msgid "To login page"
-msgstr ""
+msgstr "На страницу входа"
 
 #: lostpassword/templates/resetpassword.php:8
 msgid "New password"
-msgstr ""
+msgstr "Новый пароль"
 
 #: lostpassword/templates/resetpassword.php:11
 msgid "Reset password"
-msgstr ""
+msgstr "Переназначение пароля"
 
 #: strings.php:5
 msgid "Personal"
-msgstr ""
+msgstr "Персональный"
 
 #: strings.php:6
 msgid "Users"
-msgstr ""
+msgstr "Пользователи"
 
 #: strings.php:7
 msgid "Apps"
-msgstr ""
+msgstr "Приложения"
 
 #: strings.php:8
 msgid "Admin"
-msgstr ""
+msgstr "Администратор"
 
 #: strings.php:9
 msgid "Help"
-msgstr ""
+msgstr "Помощь"
 
 #: templates/403.php:12
 msgid "Access forbidden"
-msgstr ""
+msgstr "Доступ запрещен"
 
 #: templates/404.php:12
 msgid "Cloud not found"
-msgstr ""
+msgstr "Облако не найдено"
 
 #: templates/edit_categories_dialog.php:4
 msgid "Edit categories"
-msgstr ""
+msgstr "Редактирование категорий"
 
 #: templates/edit_categories_dialog.php:14
 msgid "Add"
-msgstr ""
+msgstr "Добавить"
 
 #: templates/installation.php:24
 msgid "Create an <strong>admin account</strong>"
-msgstr ""
+msgstr "Создать <strong>admin account</strong>"
 
 #: templates/installation.php:30 templates/login.php:13
 msgid "Password"
-msgstr ""
+msgstr "Пароль"
 
 #: templates/installation.php:36
 msgid "Advanced"
-msgstr ""
+msgstr "Расширенный"
 
 #: templates/installation.php:38
 msgid "Data folder"
-msgstr ""
+msgstr "Папка данных"
 
 #: templates/installation.php:45
 msgid "Configure the database"
-msgstr ""
+msgstr "Настроить базу данных"
 
 #: templates/installation.php:50 templates/installation.php:61
 #: templates/installation.php:71 templates/installation.php:81
 msgid "will be used"
-msgstr ""
+msgstr "будет использоваться"
 
 #: templates/installation.php:93
 msgid "Database user"
-msgstr ""
+msgstr "Пользователь базы данных"
 
 #: templates/installation.php:97
 msgid "Database password"
-msgstr ""
+msgstr "Пароль базы данных"
 
 #: templates/installation.php:101
 msgid "Database name"
-msgstr ""
+msgstr "Имя базы данных"
 
 #: templates/installation.php:109
 msgid "Database tablespace"
-msgstr ""
+msgstr "Табличная область базы данных"
 
 #: templates/installation.php:115
 msgid "Database host"
-msgstr ""
+msgstr "Сервер базы данных"
 
 #: templates/installation.php:120
 msgid "Finish setup"
-msgstr ""
+msgstr "Завершение настройки"
 
-#: templates/layout.guest.php:42
+#: templates/layout.guest.php:36
 msgid "web services under your control"
-msgstr ""
+msgstr "веб-сервисы под Вашим контролем"
 
-#: templates/layout.user.php:45
+#: templates/layout.user.php:39
 msgid "Log out"
-msgstr ""
+msgstr "Выйти"
 
 #: templates/login.php:6
 msgid "Lost your password?"
-msgstr ""
+msgstr "Забыли пароль?"
 
 #: templates/login.php:17
 msgid "remember"
-msgstr ""
+msgstr "запомнить"
 
 #: templates/login.php:18
 msgid "Log in"
-msgstr ""
+msgstr "Войти"
 
 #: templates/logout.php:1
 msgid "You are logged out."
-msgstr ""
+msgstr "Вы вышли из системы."
 
 #: templates/part.pagenavi.php:3
 msgid "prev"
-msgstr ""
+msgstr "предыдущий"
 
 #: templates/part.pagenavi.php:20
 msgid "next"
-msgstr ""
+msgstr "следующий"
diff --git a/l10n/ru_RU/files.po b/l10n/ru_RU/files.po
index 441a2de6ae39191d73e67da9fafc452f68cf6548..dc79d635c5450b9cc56c54f10b287b56c5d6778a 100644
--- a/l10n/ru_RU/files.po
+++ b/l10n/ru_RU/files.po
@@ -3,12 +3,13 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
+#   <cdewqazxsqwe@gmail.com>, 2012.
 msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-08 02:01+0200\n"
-"PO-Revision-Date: 2012-09-08 00:02+0000\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
+"PO-Revision-Date: 2012-09-18 00:02+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n"
 "MIME-Version: 1.0\n"
@@ -19,221 +20,229 @@ msgstr ""
 
 #: ajax/upload.php:20
 msgid "There is no error, the file uploaded with success"
-msgstr ""
+msgstr "Ошибка отсутствует, файл загружен успешно."
 
 #: ajax/upload.php:21
 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini"
-msgstr ""
+msgstr "Размер загруженного файла превышает заданный в директиве upload_max_filesize в php.ini"
 
 #: ajax/upload.php:22
 msgid ""
 "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
 "the HTML form"
-msgstr ""
+msgstr "Размер загруженного"
 
 #: ajax/upload.php:23
 msgid "The uploaded file was only partially uploaded"
-msgstr ""
+msgstr "Загружаемый файл был загружен частично"
 
 #: ajax/upload.php:24
 msgid "No file was uploaded"
-msgstr ""
+msgstr "Файл не был загружен"
 
 #: ajax/upload.php:25
 msgid "Missing a temporary folder"
-msgstr ""
+msgstr "Отсутствует временная папка"
 
 #: ajax/upload.php:26
 msgid "Failed to write to disk"
-msgstr ""
+msgstr "Не удалось записать на диск"
 
 #: appinfo/app.php:6
 msgid "Files"
-msgstr ""
+msgstr "Файлы"
 
 #: js/fileactions.js:108 templates/index.php:62
 msgid "Unshare"
-msgstr ""
+msgstr "Скрыть"
 
 #: js/fileactions.js:110 templates/index.php:64
 msgid "Delete"
-msgstr ""
+msgstr "Удалить"
 
 #: js/filelist.js:186 js/filelist.js:188
 msgid "already exists"
-msgstr ""
+msgstr "уже существует"
 
 #: js/filelist.js:186 js/filelist.js:188
 msgid "replace"
-msgstr ""
+msgstr "отмена"
 
 #: js/filelist.js:186
 msgid "suggest name"
-msgstr ""
+msgstr "подобрать название"
 
 #: js/filelist.js:186 js/filelist.js:188
 msgid "cancel"
-msgstr ""
+msgstr "отменить"
 
 #: js/filelist.js:235 js/filelist.js:237
 msgid "replaced"
-msgstr ""
+msgstr "заменено"
 
-#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270
+#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269
 msgid "undo"
-msgstr ""
+msgstr "отменить действие"
 
 #: js/filelist.js:237
 msgid "with"
-msgstr ""
+msgstr "с"
 
-#: js/filelist.js:268
+#: js/filelist.js:267
 msgid "unshared"
-msgstr ""
+msgstr "скрытый"
 
-#: js/filelist.js:270
+#: js/filelist.js:269
 msgid "deleted"
-msgstr ""
+msgstr "удалено"
 
 #: js/files.js:179
 msgid "generating ZIP-file, it may take some time."
-msgstr ""
+msgstr "Создание ZIP-файла, это может занять некоторое время."
 
 #: js/files.js:208
 msgid "Unable to upload your file as it is a directory or has 0 bytes"
-msgstr ""
+msgstr "Невозможно загрузить файл,\n так как он имеет нулевой размер или является директорией"
 
 #: js/files.js:208
 msgid "Upload Error"
-msgstr ""
+msgstr "Ошибка загрузки"
 
 #: js/files.js:236 js/files.js:341 js/files.js:370
 msgid "Pending"
-msgstr ""
+msgstr "Ожидающий решения"
 
 #: js/files.js:355
 msgid "Upload cancelled."
-msgstr ""
+msgstr "Загрузка отменена"
 
 #: js/files.js:423
 msgid ""
 "File upload is in progress. Leaving the page now will cancel the upload."
-msgstr ""
+msgstr "Процесс загрузки файла. Если покинуть страницу сейчас, загрузка будет отменена."
 
 #: js/files.js:493
 msgid "Invalid name, '/' is not allowed."
+msgstr "Неправильное имя, '/' не допускается."
+
+#: js/files.js:666
+msgid "files scanned"
 msgstr ""
 
-#: js/files.js:746 templates/index.php:56
-msgid "Size"
+#: js/files.js:674
+msgid "error while scanning"
 msgstr ""
 
-#: js/files.js:747 templates/index.php:58
+#: js/files.js:748 templates/index.php:56
+msgid "Size"
+msgstr "Размер"
+
+#: js/files.js:749 templates/index.php:58
 msgid "Modified"
-msgstr ""
+msgstr "Изменен"
 
-#: js/files.js:774
+#: js/files.js:776
 msgid "folder"
-msgstr ""
+msgstr "папка"
 
-#: js/files.js:776
+#: js/files.js:778
 msgid "folders"
-msgstr ""
+msgstr "папки"
 
-#: js/files.js:784
+#: js/files.js:786
 msgid "file"
-msgstr ""
+msgstr "файл"
 
-#: js/files.js:786
+#: js/files.js:788
 msgid "files"
-msgstr ""
+msgstr "файлы"
 
 #: templates/admin.php:5
 msgid "File handling"
-msgstr ""
+msgstr "Работа с файлами"
 
 #: templates/admin.php:7
 msgid "Maximum upload size"
-msgstr ""
+msgstr "Максимальный размер загружаемого файла"
 
 #: templates/admin.php:7
 msgid "max. possible: "
-msgstr ""
+msgstr "Максимально возможный"
 
 #: templates/admin.php:9
 msgid "Needed for multi-file and folder downloads."
-msgstr ""
+msgstr "Необходимо для множественной загрузки."
 
 #: templates/admin.php:9
 msgid "Enable ZIP-download"
-msgstr ""
+msgstr "Включение ZIP-загрузки"
 
 #: templates/admin.php:11
 msgid "0 is unlimited"
-msgstr ""
+msgstr "0 без ограничений"
 
 #: templates/admin.php:12
 msgid "Maximum input size for ZIP files"
-msgstr ""
+msgstr "Максимальный размер входящих ZIP-файлов "
 
 #: templates/admin.php:14
 msgid "Save"
-msgstr ""
+msgstr "Сохранить"
 
 #: templates/index.php:7
 msgid "New"
-msgstr ""
+msgstr "Новый"
 
 #: templates/index.php:9
 msgid "Text file"
-msgstr ""
+msgstr "Текстовый файл"
 
 #: templates/index.php:10
 msgid "Folder"
-msgstr ""
+msgstr "Папка"
 
 #: templates/index.php:11
 msgid "From url"
-msgstr ""
+msgstr "Из url"
 
 #: templates/index.php:21
 msgid "Upload"
-msgstr ""
+msgstr "Загрузить "
 
 #: templates/index.php:27
 msgid "Cancel upload"
-msgstr ""
+msgstr "Отмена загрузки"
 
 #: templates/index.php:40
 msgid "Nothing in here. Upload something!"
-msgstr ""
+msgstr "Здесь ничего нет. Загрузите что-нибудь!"
 
 #: templates/index.php:48
 msgid "Name"
-msgstr ""
+msgstr "Имя"
 
 #: templates/index.php:50
 msgid "Share"
-msgstr ""
+msgstr "Сделать общим"
 
 #: templates/index.php:52
 msgid "Download"
-msgstr ""
+msgstr "Загрузить"
 
 #: templates/index.php:75
 msgid "Upload too large"
-msgstr ""
+msgstr "Загрузка слишком велика"
 
 #: templates/index.php:77
 msgid ""
 "The files you are trying to upload exceed the maximum size for file uploads "
 "on this server."
-msgstr ""
+msgstr "Размер файлов, которые Вы пытаетесь загрузить, превышает максимально допустимый размер для загрузки на данный сервер."
 
 #: templates/index.php:82
 msgid "Files are being scanned, please wait."
-msgstr ""
+msgstr "Файлы сканируются, пожалуйста, подождите."
 
 #: templates/index.php:85
 msgid "Current scanning"
-msgstr ""
+msgstr "Текущее сканирование"
diff --git a/l10n/ru_RU/files_versions.po b/l10n/ru_RU/files_versions.po
index f7ff8068c724bb656a7c9d37ee23228a1c6e6f00..d48bed5764df73cb1c257ba6a0ea4e905149f45f 100644
--- a/l10n/ru_RU/files_versions.po
+++ b/l10n/ru_RU/files_versions.po
@@ -7,15 +7,15 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-01 13:35+0200\n"
-"PO-Revision-Date: 2012-09-01 11:35+0000\n"
+"POT-Creation-Date: 2012-09-17 02:02+0200\n"
+"PO-Revision-Date: 2012-09-17 00:04+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: ru_RU\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
 
 #: js/settings-personal.js:31 templates/settings-personal.php:10
 msgid "Expire all versions"
@@ -30,5 +30,9 @@ msgid "This will delete all existing backup versions of your files"
 msgstr ""
 
 #: templates/settings.php:3
-msgid "Enable Files Versioning"
+msgid "Files Versioning"
+msgstr ""
+
+#: templates/settings.php:4
+msgid "Enable"
 msgstr ""
diff --git a/l10n/ru_RU/settings.po b/l10n/ru_RU/settings.po
index 210a41b0491a4dcc516b761053e75c22d51172d0..b8db330381838233db3c2ab58e9022d0b0d32ece 100644
--- a/l10n/ru_RU/settings.po
+++ b/l10n/ru_RU/settings.po
@@ -3,13 +3,14 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
+#   <cdewqazxsqwe@gmail.com>, 2012.
 msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-05 02:02+0200\n"
-"PO-Revision-Date: 2012-09-05 00:02+0000\n"
-"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
+"PO-Revision-Date: 2012-09-17 11:10+0000\n"
+"Last-Translator: AnnaSch <cdewqazxsqwe@gmail.com>\n"
 "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -19,82 +20,86 @@ msgstr ""
 
 #: ajax/apps/ocs.php:23
 msgid "Unable to load list from App Store"
-msgstr ""
+msgstr "Невозможно загрузить список из App Store"
 
 #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18
 #: ajax/togglegroups.php:15
 msgid "Authentication error"
-msgstr ""
+msgstr "Ошибка авторизации"
 
 #: ajax/creategroup.php:19
 msgid "Group already exists"
-msgstr ""
+msgstr "Группа уже существует"
 
 #: ajax/creategroup.php:28
 msgid "Unable to add group"
-msgstr ""
+msgstr "Невозможно добавить группу"
+
+#: ajax/enableapp.php:14
+msgid "Could not enable app. "
+msgstr "Не удалось запустить приложение"
 
 #: ajax/lostpassword.php:14
 msgid "Email saved"
-msgstr ""
+msgstr "Email сохранен"
 
 #: ajax/lostpassword.php:16
 msgid "Invalid email"
-msgstr ""
+msgstr "Неверный email"
 
 #: ajax/openid.php:16
 msgid "OpenID Changed"
-msgstr ""
+msgstr "OpenID изменен"
 
 #: ajax/openid.php:18 ajax/setlanguage.php:20 ajax/setlanguage.php:23
 msgid "Invalid request"
-msgstr ""
+msgstr "Неверный запрос"
 
 #: ajax/removegroup.php:16
 msgid "Unable to delete group"
-msgstr ""
+msgstr "Невозможно удалить группу"
 
 #: ajax/removeuser.php:22
 msgid "Unable to delete user"
-msgstr ""
+msgstr "Невозможно удалить пользователя"
 
 #: ajax/setlanguage.php:18
 msgid "Language changed"
-msgstr ""
+msgstr "Язык изменен"
 
 #: ajax/togglegroups.php:25
 #, php-format
 msgid "Unable to add user to group %s"
-msgstr ""
+msgstr "Невозможно добавить пользователя в группу %s"
 
 #: ajax/togglegroups.php:31
 #, php-format
 msgid "Unable to remove user from group %s"
-msgstr ""
+msgstr "Невозможно удалить пользователя из группы %s"
 
 #: js/apps.js:18
 msgid "Error"
-msgstr ""
+msgstr "Ошибка"
 
 #: js/apps.js:39 js/apps.js:73
 msgid "Disable"
-msgstr ""
+msgstr "Отключить"
 
 #: js/apps.js:39 js/apps.js:62
 msgid "Enable"
-msgstr ""
+msgstr "Включить"
 
 #: js/personal.js:69
 msgid "Saving..."
-msgstr ""
+msgstr "Сохранение"
 
 #: personal.php:46 personal.php:47
 msgid "__language_name__"
-msgstr ""
+msgstr "__язык_имя__"
 
 #: templates/admin.php:14
 msgid "Security Warning"
-msgstr ""
+msgstr "Предупреждение системы безопасности"
 
 #: templates/admin.php:17
 msgid ""
@@ -103,69 +108,73 @@ msgid ""
 "strongly suggest that you configure your webserver in a way that the data "
 "directory is no longer accessible or you move the data directory outside the"
 " webserver document root."
-msgstr ""
+msgstr "Ваш каталог данных и файлы возможно доступны из Интернета. Файл .htaccess, предоставляемый ownCloud, не работает. Мы настоятельно рекомендуем Вам настроить сервер таким образом, чтобы каталог данных был бы больше не доступен, или переместить каталог данных за пределы корневой папки веб-сервера."
 
 #: templates/admin.php:31
 msgid "Cron"
-msgstr ""
+msgstr "Cron"
 
-#: templates/admin.php:33
-msgid "execute one task with each page loaded"
-msgstr ""
+#: templates/admin.php:37
+msgid "Execute one task with each page loaded"
+msgstr "Выполняйте одну задачу на каждой загружаемой странице"
 
-#: templates/admin.php:35
-msgid "cron.php is registered at a webcron service"
-msgstr ""
+#: templates/admin.php:43
+msgid ""
+"cron.php is registered at a webcron service. Call the cron.php page in the "
+"owncloud root once a minute over http."
+msgstr "cron.php зарегистрирован в службе webcron. Обращайтесь к странице cron.php в корне owncloud раз в минуту по http."
 
-#: templates/admin.php:37
-msgid "use systems cron service"
-msgstr ""
+#: templates/admin.php:49
+msgid ""
+"Use systems cron service. Call the cron.php file in the owncloud folder via "
+"a system cronjob once a minute."
+msgstr "Используйте системный сервис cron. Исполняйте файл cron.php в папке owncloud с помощью системы cronjob раз в минуту."
 
-#: templates/admin.php:41
-msgid "Share API"
-msgstr ""
+#: templates/admin.php:56
+msgid "Sharing"
+msgstr "Совместное использование"
 
-#: templates/admin.php:46
+#: templates/admin.php:61
 msgid "Enable Share API"
-msgstr ""
+msgstr "Включить разделяемые API"
 
-#: templates/admin.php:47
+#: templates/admin.php:62
 msgid "Allow apps to use the Share API"
-msgstr ""
+msgstr "Разрешить приложениям использовать Share API"
 
-#: templates/admin.php:51
+#: templates/admin.php:67
 msgid "Allow links"
-msgstr ""
+msgstr "Предоставить ссылки"
 
-#: templates/admin.php:52
+#: templates/admin.php:68
 msgid "Allow users to share items to the public with links"
 msgstr ""
 
-#: templates/admin.php:56
+#: templates/admin.php:73
 msgid "Allow resharing"
-msgstr ""
+msgstr "Разрешить повторное совместное использование"
 
-#: templates/admin.php:57
+#: templates/admin.php:74
 msgid "Allow users to share items shared with them again"
 msgstr ""
 
-#: templates/admin.php:60
+#: templates/admin.php:79
 msgid "Allow users to share with anyone"
-msgstr ""
+msgstr "Разрешить пользователям разделение с кем-либо"
 
-#: templates/admin.php:62
+#: templates/admin.php:81
 msgid "Allow users to only share with users in their groups"
-msgstr ""
+msgstr "Разрешить пользователям разделение только с пользователями в их группах"
 
-#: templates/admin.php:69
+#: templates/admin.php:88
 msgid "Log"
-msgstr ""
+msgstr "Вход"
 
-#: templates/admin.php:97
+#: templates/admin.php:116
 msgid "More"
-msgstr ""
+msgstr "Подробнее"
 
-#: templates/admin.php:105
+#: templates/admin.php:124
 msgid ""
 "Developed by the <a href=\"http://ownCloud.org/contact\" "
 "target=\"_blank\">ownCloud community</a>, the <a "
@@ -173,144 +182,144 @@ msgid ""
 "licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" "
 "target=\"_blank\"><abbr title=\"Affero General Public "
 "License\">AGPL</abbr></a>."
-msgstr ""
+msgstr "Разработанный <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>."
 
 #: templates/apps.php:10
 msgid "Add your App"
-msgstr ""
+msgstr "Добавить Ваше приложение"
 
 #: templates/apps.php:26
 msgid "Select an App"
-msgstr ""
+msgstr "Выбрать приложение"
 
 #: templates/apps.php:29
 msgid "See application page at apps.owncloud.com"
-msgstr ""
+msgstr "Обратитесь к странице приложений на apps.owncloud.com"
 
 #: templates/apps.php:30
 msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>"
-msgstr ""
+msgstr "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>"
 
 #: templates/help.php:9
 msgid "Documentation"
-msgstr ""
+msgstr "Документация"
 
 #: templates/help.php:10
 msgid "Managing Big Files"
-msgstr ""
+msgstr "Управление большими файлами"
 
 #: templates/help.php:11
 msgid "Ask a question"
-msgstr ""
+msgstr "Задать вопрос"
 
 #: templates/help.php:23
 msgid "Problems connecting to help database."
-msgstr ""
+msgstr "Проблемы, связанные с разделом Помощь базы данных"
 
 #: templates/help.php:24
 msgid "Go there manually."
-msgstr ""
+msgstr "Сделать вручную."
 
 #: templates/help.php:32
 msgid "Answer"
-msgstr ""
+msgstr "Ответ"
 
 #: templates/personal.php:8
 msgid "You use"
-msgstr ""
+msgstr "Вы используете"
 
 #: templates/personal.php:8
 msgid "of the available"
-msgstr ""
+msgstr "из доступных"
 
 #: templates/personal.php:12
 msgid "Desktop and Mobile Syncing Clients"
-msgstr ""
+msgstr "Клиенты синхронизации настольной и мобильной систем"
 
 #: templates/personal.php:13
 msgid "Download"
-msgstr ""
+msgstr "Загрузка"
 
 #: templates/personal.php:19
 msgid "Your password got changed"
-msgstr ""
+msgstr "Ваш пароль был изменен"
 
 #: templates/personal.php:20
 msgid "Unable to change your password"
-msgstr ""
+msgstr "Невозможно изменить Ваш пароль"
 
 #: templates/personal.php:21
 msgid "Current password"
-msgstr ""
+msgstr "Текущий пароль"
 
 #: templates/personal.php:22
 msgid "New password"
-msgstr ""
+msgstr "Новый пароль"
 
 #: templates/personal.php:23
 msgid "show"
-msgstr ""
+msgstr "показать"
 
 #: templates/personal.php:24
 msgid "Change password"
-msgstr ""
+msgstr "Изменить пароль"
 
 #: templates/personal.php:30
 msgid "Email"
-msgstr ""
+msgstr "Электронная почта"
 
 #: templates/personal.php:31
 msgid "Your email address"
-msgstr ""
+msgstr "Адрес Вашей электронной почты"
 
 #: templates/personal.php:32
 msgid "Fill in an email address to enable password recovery"
-msgstr ""
+msgstr "Введите адрес электронной почты для возможности восстановления пароля"
 
 #: templates/personal.php:38 templates/personal.php:39
 msgid "Language"
-msgstr ""
+msgstr "Язык"
 
 #: templates/personal.php:44
 msgid "Help translate"
-msgstr ""
+msgstr "Помогите перевести"
 
 #: templates/personal.php:51
 msgid "use this address to connect to your ownCloud in your file manager"
-msgstr ""
+msgstr "Используйте этот адрес для соединения с Вашим ownCloud в файловом менеджере"
 
 #: templates/users.php:21 templates/users.php:76
 msgid "Name"
-msgstr ""
+msgstr "Имя"
 
 #: templates/users.php:23 templates/users.php:77
 msgid "Password"
-msgstr ""
+msgstr "Пароль"
 
 #: templates/users.php:26 templates/users.php:78 templates/users.php:98
 msgid "Groups"
-msgstr ""
+msgstr "Группы"
 
 #: templates/users.php:32
 msgid "Create"
-msgstr ""
+msgstr "Создать"
 
 #: templates/users.php:35
 msgid "Default Quota"
-msgstr ""
+msgstr "Квота по умолчанию"
 
 #: templates/users.php:55 templates/users.php:138
 msgid "Other"
-msgstr ""
+msgstr "Другой"
 
 #: templates/users.php:80 templates/users.php:112
 msgid "Group Admin"
-msgstr ""
+msgstr "Группа Admin"
 
 #: templates/users.php:82
 msgid "Quota"
-msgstr ""
+msgstr "квота"
 
 #: templates/users.php:146
 msgid "Delete"
-msgstr ""
+msgstr "Удалить"
diff --git a/l10n/sk_SK/files.po b/l10n/sk_SK/files.po
index a9285f4547f51f7839fddd19cb824ce570950a20..9730f5a8e99efe8ccb1e0b4c11ea574a6cac066d 100644
--- a/l10n/sk_SK/files.po
+++ b/l10n/sk_SK/files.po
@@ -9,8 +9,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-08 02:01+0200\n"
-"PO-Revision-Date: 2012-09-08 00:02+0000\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
+"PO-Revision-Date: 2012-09-18 00:01+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n"
 "MIME-Version: 1.0\n"
@@ -81,7 +81,7 @@ msgstr ""
 msgid "replaced"
 msgstr ""
 
-#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270
+#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269
 msgid "undo"
 msgstr ""
 
@@ -89,11 +89,11 @@ msgstr ""
 msgid "with"
 msgstr ""
 
-#: js/filelist.js:268
+#: js/filelist.js:267
 msgid "unshared"
 msgstr ""
 
-#: js/filelist.js:270
+#: js/filelist.js:269
 msgid "deleted"
 msgstr ""
 
@@ -126,27 +126,35 @@ msgstr ""
 msgid "Invalid name, '/' is not allowed."
 msgstr "Chybný názov, \"/\" nie je povolené"
 
-#: js/files.js:746 templates/index.php:56
+#: js/files.js:666
+msgid "files scanned"
+msgstr ""
+
+#: js/files.js:674
+msgid "error while scanning"
+msgstr ""
+
+#: js/files.js:748 templates/index.php:56
 msgid "Size"
 msgstr "Veľkosť"
 
-#: js/files.js:747 templates/index.php:58
+#: js/files.js:749 templates/index.php:58
 msgid "Modified"
 msgstr "Upravené"
 
-#: js/files.js:774
+#: js/files.js:776
 msgid "folder"
 msgstr "priečinok"
 
-#: js/files.js:776
+#: js/files.js:778
 msgid "folders"
 msgstr "priečinky"
 
-#: js/files.js:784
+#: js/files.js:786
 msgid "file"
 msgstr "súbor"
 
-#: js/files.js:786
+#: js/files.js:788
 msgid "files"
 msgstr "súbory"
 
diff --git a/l10n/sk_SK/files_versions.po b/l10n/sk_SK/files_versions.po
index 0f50826d2b2298fbbf25745cd77aa18f17d97575..4116e7293511e0da9afcc736e2aa7453da88db15 100644
--- a/l10n/sk_SK/files_versions.po
+++ b/l10n/sk_SK/files_versions.po
@@ -7,15 +7,15 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-01 13:35+0200\n"
-"PO-Revision-Date: 2012-09-01 11:35+0000\n"
+"POT-Creation-Date: 2012-09-17 02:02+0200\n"
+"PO-Revision-Date: 2012-09-17 00:04+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: sk_SK\n"
-"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n"
+"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
 
 #: js/settings-personal.js:31 templates/settings-personal.php:10
 msgid "Expire all versions"
@@ -30,5 +30,9 @@ msgid "This will delete all existing backup versions of your files"
 msgstr ""
 
 #: templates/settings.php:3
-msgid "Enable Files Versioning"
+msgid "Files Versioning"
+msgstr ""
+
+#: templates/settings.php:4
+msgid "Enable"
 msgstr ""
diff --git a/l10n/sk_SK/settings.po b/l10n/sk_SK/settings.po
index 952da74548397ef81d06a7b2c3f28df1ec557c72..3b261aff56fab5179514463f4673f1197a746710 100644
--- a/l10n/sk_SK/settings.po
+++ b/l10n/sk_SK/settings.po
@@ -10,8 +10,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-05 02:02+0200\n"
-"PO-Revision-Date: 2012-09-05 00:02+0000\n"
+"POT-Creation-Date: 2012-09-17 02:03+0200\n"
+"PO-Revision-Date: 2012-09-17 00:03+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n"
 "MIME-Version: 1.0\n"
@@ -37,6 +37,10 @@ msgstr ""
 msgid "Unable to add group"
 msgstr ""
 
+#: ajax/enableapp.php:13
+msgid "Could not enable app. "
+msgstr ""
+
 #: ajax/lostpassword.php:14
 msgid "Email saved"
 msgstr "Email uložený"
@@ -112,63 +116,67 @@ msgstr ""
 msgid "Cron"
 msgstr ""
 
-#: templates/admin.php:33
-msgid "execute one task with each page loaded"
+#: templates/admin.php:37
+msgid "Execute one task with each page loaded"
 msgstr ""
 
-#: templates/admin.php:35
-msgid "cron.php is registered at a webcron service"
+#: templates/admin.php:43
+msgid ""
+"cron.php is registered at a webcron service. Call the cron.php page in the "
+"owncloud root once a minute over http."
 msgstr ""
 
-#: templates/admin.php:37
-msgid "use systems cron service"
+#: templates/admin.php:49
+msgid ""
+"Use systems cron service. Call the cron.php file in the owncloud folder via "
+"a system cronjob once a minute."
 msgstr ""
 
-#: templates/admin.php:41
-msgid "Share API"
+#: templates/admin.php:56
+msgid "Sharing"
 msgstr ""
 
-#: templates/admin.php:46
+#: templates/admin.php:61
 msgid "Enable Share API"
 msgstr ""
 
-#: templates/admin.php:47
+#: templates/admin.php:62
 msgid "Allow apps to use the Share API"
 msgstr ""
 
-#: templates/admin.php:51
+#: templates/admin.php:67
 msgid "Allow links"
 msgstr ""
 
-#: templates/admin.php:52
+#: templates/admin.php:68
 msgid "Allow users to share items to the public with links"
 msgstr ""
 
-#: templates/admin.php:56
+#: templates/admin.php:73
 msgid "Allow resharing"
 msgstr ""
 
-#: templates/admin.php:57
+#: templates/admin.php:74
 msgid "Allow users to share items shared with them again"
 msgstr ""
 
-#: templates/admin.php:60
+#: templates/admin.php:79
 msgid "Allow users to share with anyone"
 msgstr ""
 
-#: templates/admin.php:62
+#: templates/admin.php:81
 msgid "Allow users to only share with users in their groups"
 msgstr ""
 
-#: templates/admin.php:69
+#: templates/admin.php:88
 msgid "Log"
 msgstr "Záznam"
 
-#: templates/admin.php:97
+#: templates/admin.php:116
 msgid "More"
 msgstr "Viac"
 
-#: templates/admin.php:105
+#: templates/admin.php:124
 msgid ""
 "Developed by the <a href=\"http://ownCloud.org/contact\" "
 "target=\"_blank\">ownCloud community</a>, the <a "
diff --git a/l10n/sl/files.po b/l10n/sl/files.po
index 4f9fad5d5fe5ab6b5086cd2a2d07ac36f64825b3..f69409021613925fc8fae6d0467843852eff91e5 100644
--- a/l10n/sl/files.po
+++ b/l10n/sl/files.po
@@ -10,9 +10,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-09 02:01+0200\n"
-"PO-Revision-Date: 2012-09-08 07:24+0000\n"
-"Last-Translator: Peter Peroša <peter.perosa@gmail.com>\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
+"PO-Revision-Date: 2012-09-18 00:01+0000\n"
+"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -82,7 +82,7 @@ msgstr "ekliči"
 msgid "replaced"
 msgstr "nadomeščen"
 
-#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270
+#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269
 msgid "undo"
 msgstr "razveljavi"
 
@@ -90,11 +90,11 @@ msgstr "razveljavi"
 msgid "with"
 msgstr "z"
 
-#: js/filelist.js:268
+#: js/filelist.js:267
 msgid "unshared"
 msgstr "odstranjeno iz souporabe"
 
-#: js/filelist.js:270
+#: js/filelist.js:269
 msgid "deleted"
 msgstr "izbrisano"
 
@@ -127,27 +127,35 @@ msgstr "Nalaganje datoteke je v teku. Če zapustite to stran zdaj, boste nalagan
 msgid "Invalid name, '/' is not allowed."
 msgstr "Neveljavno ime. Znak '/' ni dovoljen."
 
-#: js/files.js:746 templates/index.php:56
+#: js/files.js:666
+msgid "files scanned"
+msgstr ""
+
+#: js/files.js:674
+msgid "error while scanning"
+msgstr ""
+
+#: js/files.js:748 templates/index.php:56
 msgid "Size"
 msgstr "Velikost"
 
-#: js/files.js:747 templates/index.php:58
+#: js/files.js:749 templates/index.php:58
 msgid "Modified"
 msgstr "Spremenjeno"
 
-#: js/files.js:774
+#: js/files.js:776
 msgid "folder"
 msgstr "mapa"
 
-#: js/files.js:776
+#: js/files.js:778
 msgid "folders"
 msgstr "mape"
 
-#: js/files.js:784
+#: js/files.js:786
 msgid "file"
 msgstr "datoteka"
 
-#: js/files.js:786
+#: js/files.js:788
 msgid "files"
 msgstr "datoteke"
 
diff --git a/l10n/sl/files_versions.po b/l10n/sl/files_versions.po
index d37dc15d09e1c3a35e2210c3e7a210b8617255b5..716e97cbbd62e388ff34bc25f5d81bb7f3b8fe3d 100644
--- a/l10n/sl/files_versions.po
+++ b/l10n/sl/files_versions.po
@@ -8,15 +8,15 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-03 02:04+0200\n"
-"PO-Revision-Date: 2012-09-02 02:04+0000\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
+"PO-Revision-Date: 2012-09-17 11:09+0000\n"
 "Last-Translator: Peter Peroša <peter.perosa@gmail.com>\n"
 "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: sl\n"
-"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3)\n"
+"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n"
 
 #: js/settings-personal.js:31 templates/settings-personal.php:10
 msgid "Expire all versions"
@@ -31,5 +31,9 @@ msgid "This will delete all existing backup versions of your files"
 msgstr "To bo izbrisalo vse obstoječe različice varnostnih kopij vaših datotek"
 
 #: templates/settings.php:3
-msgid "Enable Files Versioning"
-msgstr "Omogoči sledenje različicam datotek"
+msgid "Files Versioning"
+msgstr "Sledenje različicam"
+
+#: templates/settings.php:4
+msgid "Enable"
+msgstr "Omogoči"
diff --git a/l10n/sl/lib.po b/l10n/sl/lib.po
index c94a108ee3d02c51a556156d9cfa515645f3c795..cc9b69f3a920a8634d086ecced1b66bd2c9d0b15 100644
--- a/l10n/sl/lib.po
+++ b/l10n/sl/lib.po
@@ -8,37 +8,37 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-01 13:35+0200\n"
-"PO-Revision-Date: 2012-09-01 09:04+0000\n"
+"POT-Creation-Date: 2012-09-15 02:02+0200\n"
+"PO-Revision-Date: 2012-09-14 08:53+0000\n"
 "Last-Translator: Peter Peroša <peter.perosa@gmail.com>\n"
 "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: sl\n"
-"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3)\n"
+"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n"
 
-#: app.php:288
+#: app.php:285
 msgid "Help"
 msgstr "Pomoč"
 
-#: app.php:295
+#: app.php:292
 msgid "Personal"
 msgstr "Osebno"
 
-#: app.php:300
+#: app.php:297
 msgid "Settings"
 msgstr "Nastavitve"
 
-#: app.php:305
+#: app.php:302
 msgid "Users"
 msgstr "Uporabniki"
 
-#: app.php:312
+#: app.php:309
 msgid "Apps"
 msgstr "Aplikacije"
 
-#: app.php:314
+#: app.php:311
 msgid "Admin"
 msgstr "Skrbnik"
 
@@ -70,47 +70,47 @@ msgstr "Napaka overitve"
 msgid "Token expired. Please reload page."
 msgstr "Žeton je potekel. Prosimo, če spletno stran znova naložite."
 
-#: template.php:86
+#: template.php:87
 msgid "seconds ago"
-msgstr "sekund nazaj"
+msgstr "pred nekaj sekundami"
 
-#: template.php:87
+#: template.php:88
 msgid "1 minute ago"
 msgstr "pred minuto"
 
-#: template.php:88
+#: template.php:89
 #, php-format
 msgid "%d minutes ago"
 msgstr "pred %d minutami"
 
-#: template.php:91
+#: template.php:92
 msgid "today"
 msgstr "danes"
 
-#: template.php:92
+#: template.php:93
 msgid "yesterday"
 msgstr "včeraj"
 
-#: template.php:93
+#: template.php:94
 #, php-format
 msgid "%d days ago"
 msgstr "pred %d dnevi"
 
-#: template.php:94
+#: template.php:95
 msgid "last month"
 msgstr "prejšnji mesec"
 
-#: template.php:95
+#: template.php:96
 msgid "months ago"
-msgstr "mesecev nazaj"
+msgstr "pred nekaj meseci"
 
-#: template.php:96
+#: template.php:97
 msgid "last year"
 msgstr "lani"
 
-#: template.php:97
+#: template.php:98
 msgid "years ago"
-msgstr "let nazaj"
+msgstr "pred nekaj leti"
 
 #: updater.php:66
 #, php-format
diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po
index bd1e022b7d633e028bfbb2f9be5c4af72521ae71..729ff8c04ddb5ed640ee552838819257688b80ef 100644
--- a/l10n/sl/settings.po
+++ b/l10n/sl/settings.po
@@ -10,8 +10,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-06 02:02+0200\n"
-"PO-Revision-Date: 2012-09-05 06:02+0000\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
+"PO-Revision-Date: 2012-09-17 11:14+0000\n"
 "Last-Translator: Peter Peroša <peter.perosa@gmail.com>\n"
 "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n"
 "MIME-Version: 1.0\n"
@@ -37,6 +37,10 @@ msgstr "Skupina že obstaja"
 msgid "Unable to add group"
 msgstr "Ni mogoče dodati skupine"
 
+#: ajax/enableapp.php:14
+msgid "Could not enable app. "
+msgstr "Aplikacije ni bilo mogoče omogočiti."
+
 #: ajax/lostpassword.php:14
 msgid "Email saved"
 msgstr "E-poštni naslov je bil shranjen"
@@ -112,63 +116,67 @@ msgstr "Vaša mapa data in vaše datoteke so verjetno vsem dostopne preko intern
 msgid "Cron"
 msgstr "Periodično opravilo"
 
-#: templates/admin.php:33
-msgid "execute one task with each page loaded"
-msgstr "izvedi eno nalogo z vsako naloženo stranjo"
+#: templates/admin.php:37
+msgid "Execute one task with each page loaded"
+msgstr "Izvede eno opravilo z vsako naloženo stranjo."
 
-#: templates/admin.php:35
-msgid "cron.php is registered at a webcron service"
-msgstr "cron.php je vpisan na storitev webcron"
+#: templates/admin.php:43
+msgid ""
+"cron.php is registered at a webcron service. Call the cron.php page in the "
+"owncloud root once a minute over http."
+msgstr "Datoteka cron.php je prijavljena pri enem od spletnih servisov za periodična opravila. Preko protokola http pokličite datoteko cron.php, ki se nahaja v ownCloud korenski mapi, enkrat na minuto."
 
-#: templates/admin.php:37
-msgid "use systems cron service"
-msgstr "uporabi sistemski servis za periodična opravila"
+#: templates/admin.php:49
+msgid ""
+"Use systems cron service. Call the cron.php file in the owncloud folder via "
+"a system cronjob once a minute."
+msgstr "Uporabi sistemski servis za periodična opravila. Preko sistemskega servisa pokličite datoteko cron.php, ki se nahaja v ownCloud korenski mapi, enkrat na minuto."
 
-#: templates/admin.php:41
-msgid "Share API"
-msgstr "API souporabe"
+#: templates/admin.php:56
+msgid "Sharing"
+msgstr "Souporaba"
 
-#: templates/admin.php:46
+#: templates/admin.php:61
 msgid "Enable Share API"
 msgstr "Omogoči API souporabe"
 
-#: templates/admin.php:47
+#: templates/admin.php:62
 msgid "Allow apps to use the Share API"
-msgstr "Dovoli aplikacijam uporabo API-ja souporabe"
+msgstr "Aplikacijam dovoli uporabo API-ja souporabe"
 
-#: templates/admin.php:51
+#: templates/admin.php:67
 msgid "Allow links"
 msgstr "Dovoli povezave"
 
-#: templates/admin.php:52
+#: templates/admin.php:68
 msgid "Allow users to share items to the public with links"
 msgstr "Uporabnikom dovoli souporabo z javnimi povezavami"
 
-#: templates/admin.php:56
+#: templates/admin.php:73
 msgid "Allow resharing"
 msgstr "Dovoli nadaljnjo souporabo"
 
-#: templates/admin.php:57
+#: templates/admin.php:74
 msgid "Allow users to share items shared with them again"
 msgstr "Uporabnikom dovoli nadaljnjo souporabo"
 
-#: templates/admin.php:60
+#: templates/admin.php:79
 msgid "Allow users to share with anyone"
 msgstr "Uporabnikom dovoli souporabo s komerkoli"
 
-#: templates/admin.php:62
+#: templates/admin.php:81
 msgid "Allow users to only share with users in their groups"
 msgstr "Uporabnikom dovoli souporabo le znotraj njihove skupine"
 
-#: templates/admin.php:69
+#: templates/admin.php:88
 msgid "Log"
 msgstr "Dnevnik"
 
-#: templates/admin.php:97
+#: templates/admin.php:116
 msgid "More"
 msgstr "Več"
 
-#: templates/admin.php:105
+#: templates/admin.php:124
 msgid ""
 "Developed by the <a href=\"http://ownCloud.org/contact\" "
 "target=\"_blank\">ownCloud community</a>, the <a "
@@ -176,7 +184,7 @@ msgid ""
 "licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" "
 "target=\"_blank\"><abbr title=\"Affero General Public "
 "License\">AGPL</abbr></a>."
-msgstr "Razvit s strani <a href=\"http://ownCloud.org/contact\" target=\"_blank\">skupnosti ownCloud</a>. <a href=\"https://github.com/owncloud\" target=\"_blank\">Izvorna koda</a> je izdana pod licenco <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>."
+msgstr "Razvija ga <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud skupnost</a>. <a href=\"https://github.com/owncloud\" target=\"_blank\">Izvorna koda</a> je izdana pod licenco <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>."
 
 #: templates/apps.php:10
 msgid "Add your App"
diff --git a/l10n/so/files.po b/l10n/so/files.po
index f168f0b775ae6f2abf0a3494bd36026372d9040a..331c5b9de899647859400cae57b98a9fb1c83692 100644
--- a/l10n/so/files.po
+++ b/l10n/so/files.po
@@ -7,8 +7,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-08 02:01+0200\n"
-"PO-Revision-Date: 2012-09-08 00:02+0000\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
+"PO-Revision-Date: 2012-09-18 00:02+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Somali (http://www.transifex.com/projects/p/owncloud/language/so/)\n"
 "MIME-Version: 1.0\n"
@@ -79,7 +79,7 @@ msgstr ""
 msgid "replaced"
 msgstr ""
 
-#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270
+#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269
 msgid "undo"
 msgstr ""
 
@@ -87,11 +87,11 @@ msgstr ""
 msgid "with"
 msgstr ""
 
-#: js/filelist.js:268
+#: js/filelist.js:267
 msgid "unshared"
 msgstr ""
 
-#: js/filelist.js:270
+#: js/filelist.js:269
 msgid "deleted"
 msgstr ""
 
@@ -124,27 +124,35 @@ msgstr ""
 msgid "Invalid name, '/' is not allowed."
 msgstr ""
 
-#: js/files.js:746 templates/index.php:56
+#: js/files.js:666
+msgid "files scanned"
+msgstr ""
+
+#: js/files.js:674
+msgid "error while scanning"
+msgstr ""
+
+#: js/files.js:748 templates/index.php:56
 msgid "Size"
 msgstr ""
 
-#: js/files.js:747 templates/index.php:58
+#: js/files.js:749 templates/index.php:58
 msgid "Modified"
 msgstr ""
 
-#: js/files.js:774
+#: js/files.js:776
 msgid "folder"
 msgstr ""
 
-#: js/files.js:776
+#: js/files.js:778
 msgid "folders"
 msgstr ""
 
-#: js/files.js:784
+#: js/files.js:786
 msgid "file"
 msgstr ""
 
-#: js/files.js:786
+#: js/files.js:788
 msgid "files"
 msgstr ""
 
diff --git a/l10n/so/files_versions.po b/l10n/so/files_versions.po
index ce768ee5ce56d765799d3b1d5034533748a87160..194dbdb067fc75a171b874b3e4ea5c4a3b096b5e 100644
--- a/l10n/so/files_versions.po
+++ b/l10n/so/files_versions.po
@@ -7,15 +7,15 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-01 13:35+0200\n"
-"PO-Revision-Date: 2012-09-01 11:35+0000\n"
+"POT-Creation-Date: 2012-09-17 02:02+0200\n"
+"PO-Revision-Date: 2012-09-17 00:04+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Somali (http://www.transifex.com/projects/p/owncloud/language/so/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: so\n"
-"Plural-Forms: nplurals=2; plural=(n != 1)\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #: js/settings-personal.js:31 templates/settings-personal.php:10
 msgid "Expire all versions"
@@ -30,5 +30,9 @@ msgid "This will delete all existing backup versions of your files"
 msgstr ""
 
 #: templates/settings.php:3
-msgid "Enable Files Versioning"
+msgid "Files Versioning"
+msgstr ""
+
+#: templates/settings.php:4
+msgid "Enable"
 msgstr ""
diff --git a/l10n/so/settings.po b/l10n/so/settings.po
index 8ed5f9eb2215abfa66bfa3daecf557c65f09c78c..68d750e1565abbba7d033480b5aa4735cc4b7164 100644
--- a/l10n/so/settings.po
+++ b/l10n/so/settings.po
@@ -7,8 +7,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-05 02:02+0200\n"
-"PO-Revision-Date: 2012-09-05 00:02+0000\n"
+"POT-Creation-Date: 2012-09-17 02:03+0200\n"
+"PO-Revision-Date: 2012-09-17 00:03+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Somali (http://www.transifex.com/projects/p/owncloud/language/so/)\n"
 "MIME-Version: 1.0\n"
@@ -34,6 +34,10 @@ msgstr ""
 msgid "Unable to add group"
 msgstr ""
 
+#: ajax/enableapp.php:13
+msgid "Could not enable app. "
+msgstr ""
+
 #: ajax/lostpassword.php:14
 msgid "Email saved"
 msgstr ""
@@ -109,63 +113,67 @@ msgstr ""
 msgid "Cron"
 msgstr ""
 
-#: templates/admin.php:33
-msgid "execute one task with each page loaded"
+#: templates/admin.php:37
+msgid "Execute one task with each page loaded"
 msgstr ""
 
-#: templates/admin.php:35
-msgid "cron.php is registered at a webcron service"
+#: templates/admin.php:43
+msgid ""
+"cron.php is registered at a webcron service. Call the cron.php page in the "
+"owncloud root once a minute over http."
 msgstr ""
 
-#: templates/admin.php:37
-msgid "use systems cron service"
+#: templates/admin.php:49
+msgid ""
+"Use systems cron service. Call the cron.php file in the owncloud folder via "
+"a system cronjob once a minute."
 msgstr ""
 
-#: templates/admin.php:41
-msgid "Share API"
+#: templates/admin.php:56
+msgid "Sharing"
 msgstr ""
 
-#: templates/admin.php:46
+#: templates/admin.php:61
 msgid "Enable Share API"
 msgstr ""
 
-#: templates/admin.php:47
+#: templates/admin.php:62
 msgid "Allow apps to use the Share API"
 msgstr ""
 
-#: templates/admin.php:51
+#: templates/admin.php:67
 msgid "Allow links"
 msgstr ""
 
-#: templates/admin.php:52
+#: templates/admin.php:68
 msgid "Allow users to share items to the public with links"
 msgstr ""
 
-#: templates/admin.php:56
+#: templates/admin.php:73
 msgid "Allow resharing"
 msgstr ""
 
-#: templates/admin.php:57
+#: templates/admin.php:74
 msgid "Allow users to share items shared with them again"
 msgstr ""
 
-#: templates/admin.php:60
+#: templates/admin.php:79
 msgid "Allow users to share with anyone"
 msgstr ""
 
-#: templates/admin.php:62
+#: templates/admin.php:81
 msgid "Allow users to only share with users in their groups"
 msgstr ""
 
-#: templates/admin.php:69
+#: templates/admin.php:88
 msgid "Log"
 msgstr ""
 
-#: templates/admin.php:97
+#: templates/admin.php:116
 msgid "More"
 msgstr ""
 
-#: templates/admin.php:105
+#: templates/admin.php:124
 msgid ""
 "Developed by the <a href=\"http://ownCloud.org/contact\" "
 "target=\"_blank\">ownCloud community</a>, the <a "
diff --git a/l10n/sr/files.po b/l10n/sr/files.po
index 8874f6a4db5570780f7afe16aef0f2d84eb491c2..f047ac6ad40bbb264d17f03141e41ab177cbb19b 100644
--- a/l10n/sr/files.po
+++ b/l10n/sr/files.po
@@ -8,8 +8,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-08 02:01+0200\n"
-"PO-Revision-Date: 2012-09-08 00:02+0000\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
+"PO-Revision-Date: 2012-09-18 00:01+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n"
 "MIME-Version: 1.0\n"
@@ -80,7 +80,7 @@ msgstr ""
 msgid "replaced"
 msgstr ""
 
-#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270
+#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269
 msgid "undo"
 msgstr ""
 
@@ -88,11 +88,11 @@ msgstr ""
 msgid "with"
 msgstr ""
 
-#: js/filelist.js:268
+#: js/filelist.js:267
 msgid "unshared"
 msgstr ""
 
-#: js/filelist.js:270
+#: js/filelist.js:269
 msgid "deleted"
 msgstr ""
 
@@ -125,27 +125,35 @@ msgstr ""
 msgid "Invalid name, '/' is not allowed."
 msgstr ""
 
-#: js/files.js:746 templates/index.php:56
+#: js/files.js:666
+msgid "files scanned"
+msgstr ""
+
+#: js/files.js:674
+msgid "error while scanning"
+msgstr ""
+
+#: js/files.js:748 templates/index.php:56
 msgid "Size"
 msgstr "Величина"
 
-#: js/files.js:747 templates/index.php:58
+#: js/files.js:749 templates/index.php:58
 msgid "Modified"
 msgstr "Задња измена"
 
-#: js/files.js:774
+#: js/files.js:776
 msgid "folder"
 msgstr ""
 
-#: js/files.js:776
+#: js/files.js:778
 msgid "folders"
 msgstr ""
 
-#: js/files.js:784
+#: js/files.js:786
 msgid "file"
 msgstr ""
 
-#: js/files.js:786
+#: js/files.js:788
 msgid "files"
 msgstr ""
 
diff --git a/l10n/sr/files_versions.po b/l10n/sr/files_versions.po
index b252793ef856ca777d410a83b85488834c93c19d..4018647302880b0d53f7fd7687188de4c941b335 100644
--- a/l10n/sr/files_versions.po
+++ b/l10n/sr/files_versions.po
@@ -7,15 +7,15 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-01 13:35+0200\n"
-"PO-Revision-Date: 2012-09-01 11:35+0000\n"
+"POT-Creation-Date: 2012-09-17 02:02+0200\n"
+"PO-Revision-Date: 2012-09-17 00:04+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: sr\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
 
 #: js/settings-personal.js:31 templates/settings-personal.php:10
 msgid "Expire all versions"
@@ -30,5 +30,9 @@ msgid "This will delete all existing backup versions of your files"
 msgstr ""
 
 #: templates/settings.php:3
-msgid "Enable Files Versioning"
+msgid "Files Versioning"
+msgstr ""
+
+#: templates/settings.php:4
+msgid "Enable"
 msgstr ""
diff --git a/l10n/sr/settings.po b/l10n/sr/settings.po
index bccf5024d34e4e447bb2553afd6c81e0bb12f218..da8a79a19ffbdffcc2a701cf347ca4b0388f54ce 100644
--- a/l10n/sr/settings.po
+++ b/l10n/sr/settings.po
@@ -8,8 +8,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-05 02:02+0200\n"
-"PO-Revision-Date: 2012-09-05 00:02+0000\n"
+"POT-Creation-Date: 2012-09-17 02:03+0200\n"
+"PO-Revision-Date: 2012-09-17 00:03+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n"
 "MIME-Version: 1.0\n"
@@ -35,6 +35,10 @@ msgstr ""
 msgid "Unable to add group"
 msgstr ""
 
+#: ajax/enableapp.php:13
+msgid "Could not enable app. "
+msgstr ""
+
 #: ajax/lostpassword.php:14
 msgid "Email saved"
 msgstr ""
@@ -110,63 +114,67 @@ msgstr ""
 msgid "Cron"
 msgstr ""
 
-#: templates/admin.php:33
-msgid "execute one task with each page loaded"
+#: templates/admin.php:37
+msgid "Execute one task with each page loaded"
 msgstr ""
 
-#: templates/admin.php:35
-msgid "cron.php is registered at a webcron service"
+#: templates/admin.php:43
+msgid ""
+"cron.php is registered at a webcron service. Call the cron.php page in the "
+"owncloud root once a minute over http."
 msgstr ""
 
-#: templates/admin.php:37
-msgid "use systems cron service"
+#: templates/admin.php:49
+msgid ""
+"Use systems cron service. Call the cron.php file in the owncloud folder via "
+"a system cronjob once a minute."
 msgstr ""
 
-#: templates/admin.php:41
-msgid "Share API"
+#: templates/admin.php:56
+msgid "Sharing"
 msgstr ""
 
-#: templates/admin.php:46
+#: templates/admin.php:61
 msgid "Enable Share API"
 msgstr ""
 
-#: templates/admin.php:47
+#: templates/admin.php:62
 msgid "Allow apps to use the Share API"
 msgstr ""
 
-#: templates/admin.php:51
+#: templates/admin.php:67
 msgid "Allow links"
 msgstr ""
 
-#: templates/admin.php:52
+#: templates/admin.php:68
 msgid "Allow users to share items to the public with links"
 msgstr ""
 
-#: templates/admin.php:56
+#: templates/admin.php:73
 msgid "Allow resharing"
 msgstr ""
 
-#: templates/admin.php:57
+#: templates/admin.php:74
 msgid "Allow users to share items shared with them again"
 msgstr ""
 
-#: templates/admin.php:60
+#: templates/admin.php:79
 msgid "Allow users to share with anyone"
 msgstr ""
 
-#: templates/admin.php:62
+#: templates/admin.php:81
 msgid "Allow users to only share with users in their groups"
 msgstr ""
 
-#: templates/admin.php:69
+#: templates/admin.php:88
 msgid "Log"
 msgstr ""
 
-#: templates/admin.php:97
+#: templates/admin.php:116
 msgid "More"
 msgstr ""
 
-#: templates/admin.php:105
+#: templates/admin.php:124
 msgid ""
 "Developed by the <a href=\"http://ownCloud.org/contact\" "
 "target=\"_blank\">ownCloud community</a>, the <a "
diff --git a/l10n/sr@latin/files.po b/l10n/sr@latin/files.po
index 11f37da7d15debbca36d68dd637656f16fbc4339..d99ba6a8803e393493219932e57807ac2e0020ac 100644
--- a/l10n/sr@latin/files.po
+++ b/l10n/sr@latin/files.po
@@ -8,8 +8,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-08 02:01+0200\n"
-"PO-Revision-Date: 2012-09-08 00:02+0000\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
+"PO-Revision-Date: 2012-09-18 00:01+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n"
 "MIME-Version: 1.0\n"
@@ -80,7 +80,7 @@ msgstr ""
 msgid "replaced"
 msgstr ""
 
-#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270
+#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269
 msgid "undo"
 msgstr ""
 
@@ -88,11 +88,11 @@ msgstr ""
 msgid "with"
 msgstr ""
 
-#: js/filelist.js:268
+#: js/filelist.js:267
 msgid "unshared"
 msgstr ""
 
-#: js/filelist.js:270
+#: js/filelist.js:269
 msgid "deleted"
 msgstr ""
 
@@ -125,27 +125,35 @@ msgstr ""
 msgid "Invalid name, '/' is not allowed."
 msgstr ""
 
-#: js/files.js:746 templates/index.php:56
+#: js/files.js:666
+msgid "files scanned"
+msgstr ""
+
+#: js/files.js:674
+msgid "error while scanning"
+msgstr ""
+
+#: js/files.js:748 templates/index.php:56
 msgid "Size"
 msgstr "Veličina"
 
-#: js/files.js:747 templates/index.php:58
+#: js/files.js:749 templates/index.php:58
 msgid "Modified"
 msgstr "Zadnja izmena"
 
-#: js/files.js:774
+#: js/files.js:776
 msgid "folder"
 msgstr ""
 
-#: js/files.js:776
+#: js/files.js:778
 msgid "folders"
 msgstr ""
 
-#: js/files.js:784
+#: js/files.js:786
 msgid "file"
 msgstr ""
 
-#: js/files.js:786
+#: js/files.js:788
 msgid "files"
 msgstr ""
 
diff --git a/l10n/sr@latin/files_versions.po b/l10n/sr@latin/files_versions.po
index 23dcd4309885786ac4371153ae562dcf9a12b124..821c0e66076cd8e1093e7a886bb0826e3b4b786e 100644
--- a/l10n/sr@latin/files_versions.po
+++ b/l10n/sr@latin/files_versions.po
@@ -7,15 +7,15 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-01 13:35+0200\n"
-"PO-Revision-Date: 2012-09-01 11:35+0000\n"
+"POT-Creation-Date: 2012-09-17 02:02+0200\n"
+"PO-Revision-Date: 2012-09-17 00:04+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: sr@latin\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
 
 #: js/settings-personal.js:31 templates/settings-personal.php:10
 msgid "Expire all versions"
@@ -30,5 +30,9 @@ msgid "This will delete all existing backup versions of your files"
 msgstr ""
 
 #: templates/settings.php:3
-msgid "Enable Files Versioning"
+msgid "Files Versioning"
+msgstr ""
+
+#: templates/settings.php:4
+msgid "Enable"
 msgstr ""
diff --git a/l10n/sr@latin/settings.po b/l10n/sr@latin/settings.po
index 4e8ca925401dcde5a7b95076ca584751df7e77cc..eba1c39cf0081cbb47064dec0ea1cbf3b49b68da 100644
--- a/l10n/sr@latin/settings.po
+++ b/l10n/sr@latin/settings.po
@@ -8,8 +8,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-05 02:02+0200\n"
-"PO-Revision-Date: 2012-09-05 00:02+0000\n"
+"POT-Creation-Date: 2012-09-17 02:03+0200\n"
+"PO-Revision-Date: 2012-09-17 00:03+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n"
 "MIME-Version: 1.0\n"
@@ -35,6 +35,10 @@ msgstr ""
 msgid "Unable to add group"
 msgstr ""
 
+#: ajax/enableapp.php:13
+msgid "Could not enable app. "
+msgstr ""
+
 #: ajax/lostpassword.php:14
 msgid "Email saved"
 msgstr ""
@@ -110,63 +114,67 @@ msgstr ""
 msgid "Cron"
 msgstr ""
 
-#: templates/admin.php:33
-msgid "execute one task with each page loaded"
+#: templates/admin.php:37
+msgid "Execute one task with each page loaded"
 msgstr ""
 
-#: templates/admin.php:35
-msgid "cron.php is registered at a webcron service"
+#: templates/admin.php:43
+msgid ""
+"cron.php is registered at a webcron service. Call the cron.php page in the "
+"owncloud root once a minute over http."
 msgstr ""
 
-#: templates/admin.php:37
-msgid "use systems cron service"
+#: templates/admin.php:49
+msgid ""
+"Use systems cron service. Call the cron.php file in the owncloud folder via "
+"a system cronjob once a minute."
 msgstr ""
 
-#: templates/admin.php:41
-msgid "Share API"
+#: templates/admin.php:56
+msgid "Sharing"
 msgstr ""
 
-#: templates/admin.php:46
+#: templates/admin.php:61
 msgid "Enable Share API"
 msgstr ""
 
-#: templates/admin.php:47
+#: templates/admin.php:62
 msgid "Allow apps to use the Share API"
 msgstr ""
 
-#: templates/admin.php:51
+#: templates/admin.php:67
 msgid "Allow links"
 msgstr ""
 
-#: templates/admin.php:52
+#: templates/admin.php:68
 msgid "Allow users to share items to the public with links"
 msgstr ""
 
-#: templates/admin.php:56
+#: templates/admin.php:73
 msgid "Allow resharing"
 msgstr ""
 
-#: templates/admin.php:57
+#: templates/admin.php:74
 msgid "Allow users to share items shared with them again"
 msgstr ""
 
-#: templates/admin.php:60
+#: templates/admin.php:79
 msgid "Allow users to share with anyone"
 msgstr ""
 
-#: templates/admin.php:62
+#: templates/admin.php:81
 msgid "Allow users to only share with users in their groups"
 msgstr ""
 
-#: templates/admin.php:69
+#: templates/admin.php:88
 msgid "Log"
 msgstr ""
 
-#: templates/admin.php:97
+#: templates/admin.php:116
 msgid "More"
 msgstr ""
 
-#: templates/admin.php:105
+#: templates/admin.php:124
 msgid ""
 "Developed by the <a href=\"http://ownCloud.org/contact\" "
 "target=\"_blank\">ownCloud community</a>, the <a "
diff --git a/l10n/sv/files.po b/l10n/sv/files.po
index 53d2e5a81a90670ba7702758a4e59fca08697f29..510ec25e9166c6511d80f79bc6ec5cbfd07c617d 100644
--- a/l10n/sv/files.po
+++ b/l10n/sv/files.po
@@ -13,9 +13,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-09 02:01+0200\n"
-"PO-Revision-Date: 2012-09-08 12:05+0000\n"
-"Last-Translator: Magnus Höglund <magnus@linux.com>\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
+"PO-Revision-Date: 2012-09-18 00:01+0000\n"
+"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -85,7 +85,7 @@ msgstr "avbryt"
 msgid "replaced"
 msgstr "ersatt"
 
-#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270
+#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269
 msgid "undo"
 msgstr "ångra"
 
@@ -93,11 +93,11 @@ msgstr "ångra"
 msgid "with"
 msgstr "med"
 
-#: js/filelist.js:268
+#: js/filelist.js:267
 msgid "unshared"
 msgstr "Ej delad"
 
-#: js/filelist.js:270
+#: js/filelist.js:269
 msgid "deleted"
 msgstr "raderad"
 
@@ -130,27 +130,35 @@ msgstr "Filuppladdning pågår. Lämnar du sidan så avbryts uppladdningen."
 msgid "Invalid name, '/' is not allowed."
 msgstr "Ogiltigt namn, '/' är inte tillåten."
 
-#: js/files.js:746 templates/index.php:56
+#: js/files.js:666
+msgid "files scanned"
+msgstr ""
+
+#: js/files.js:674
+msgid "error while scanning"
+msgstr ""
+
+#: js/files.js:748 templates/index.php:56
 msgid "Size"
 msgstr "Storlek"
 
-#: js/files.js:747 templates/index.php:58
+#: js/files.js:749 templates/index.php:58
 msgid "Modified"
 msgstr "Ändrad"
 
-#: js/files.js:774
+#: js/files.js:776
 msgid "folder"
 msgstr "mapp"
 
-#: js/files.js:776
+#: js/files.js:778
 msgid "folders"
 msgstr "mappar"
 
-#: js/files.js:784
+#: js/files.js:786
 msgid "file"
 msgstr "fil"
 
-#: js/files.js:786
+#: js/files.js:788
 msgid "files"
 msgstr "filer"
 
diff --git a/l10n/sv/files_versions.po b/l10n/sv/files_versions.po
index 29af9f4e970242a13ea9894cc0cb57060efb8d31..f78979b79a7c452889cc8f4bb4e3618d926d330a 100644
--- a/l10n/sv/files_versions.po
+++ b/l10n/sv/files_versions.po
@@ -8,15 +8,15 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-03 02:04+0200\n"
-"PO-Revision-Date: 2012-09-02 09:50+0000\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
+"PO-Revision-Date: 2012-09-17 07:33+0000\n"
 "Last-Translator: Magnus Höglund <magnus@linux.com>\n"
 "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: sv\n"
-"Plural-Forms: nplurals=2; plural=(n != 1)\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #: js/settings-personal.js:31 templates/settings-personal.php:10
 msgid "Expire all versions"
@@ -31,5 +31,9 @@ msgid "This will delete all existing backup versions of your files"
 msgstr "Detta kommer att radera alla befintliga säkerhetskopior av dina filer"
 
 #: templates/settings.php:3
-msgid "Enable Files Versioning"
-msgstr "Aktivera versionshantering"
+msgid "Files Versioning"
+msgstr "Versionshantering av filer"
+
+#: templates/settings.php:4
+msgid "Enable"
+msgstr "Aktivera"
diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po
index f93b1f0f3c70b5800a0c1cfd8da82221769334fe..acbae422b28a49004a912d2655ecd5e36757b4fa 100644
--- a/l10n/sv/settings.po
+++ b/l10n/sv/settings.po
@@ -14,8 +14,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-06 02:02+0200\n"
-"PO-Revision-Date: 2012-09-05 06:05+0000\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
+"PO-Revision-Date: 2012-09-17 07:31+0000\n"
 "Last-Translator: Magnus Höglund <magnus@linux.com>\n"
 "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n"
 "MIME-Version: 1.0\n"
@@ -41,6 +41,10 @@ msgstr "Gruppen finns redan"
 msgid "Unable to add group"
 msgstr "Kan inte lägga till grupp"
 
+#: ajax/enableapp.php:14
+msgid "Could not enable app. "
+msgstr "Kunde inte aktivera appen."
+
 #: ajax/lostpassword.php:14
 msgid "Email saved"
 msgstr "E-post sparad"
@@ -116,63 +120,67 @@ msgstr "Din datamapp och dina filer kan möjligen vara nåbara från internet. F
 msgid "Cron"
 msgstr "Cron"
 
-#: templates/admin.php:33
-msgid "execute one task with each page loaded"
-msgstr "utför en uppgift vid varje sidladdning"
+#: templates/admin.php:37
+msgid "Execute one task with each page loaded"
+msgstr "Exekvera en uppgift vid varje sidladdning"
 
-#: templates/admin.php:35
-msgid "cron.php is registered at a webcron service"
-msgstr "cron.php är registrerad på en webcron-tjänst"
+#: templates/admin.php:43
+msgid ""
+"cron.php is registered at a webcron service. Call the cron.php page in the "
+"owncloud root once a minute over http."
+msgstr "cron.php är registrerad som en webcron-tjänst. Anropa cron.php sidan i ownCloud en gång i minuten över HTTP."
 
-#: templates/admin.php:37
-msgid "use systems cron service"
-msgstr "använd systemets cron-tjänst"
+#: templates/admin.php:49
+msgid ""
+"Use systems cron service. Call the cron.php file in the owncloud folder via "
+"a system cronjob once a minute."
+msgstr "Använd system-tjänsten cron. Anropa filen cron.php i ownCloud-mappen via ett cronjobb varje minut."
 
-#: templates/admin.php:41
-msgid "Share API"
-msgstr "Delat API"
+#: templates/admin.php:56
+msgid "Sharing"
+msgstr "Dela"
 
-#: templates/admin.php:46
+#: templates/admin.php:61
 msgid "Enable Share API"
 msgstr "Aktivera delat API"
 
-#: templates/admin.php:47
+#: templates/admin.php:62
 msgid "Allow apps to use the Share API"
 msgstr "Tillåt applikationer att använda delat API"
 
-#: templates/admin.php:51
+#: templates/admin.php:67
 msgid "Allow links"
 msgstr "Tillåt länkar"
 
-#: templates/admin.php:52
+#: templates/admin.php:68
 msgid "Allow users to share items to the public with links"
 msgstr "Tillåt delning till allmänheten via publika länkar"
 
-#: templates/admin.php:56
+#: templates/admin.php:73
 msgid "Allow resharing"
 msgstr "Tillåt dela vidare"
 
-#: templates/admin.php:57
+#: templates/admin.php:74
 msgid "Allow users to share items shared with them again"
 msgstr "Tillåt användare att dela vidare filer som delats med dom"
 
-#: templates/admin.php:60
+#: templates/admin.php:79
 msgid "Allow users to share with anyone"
 msgstr "Tillåt delning med alla"
 
-#: templates/admin.php:62
+#: templates/admin.php:81
 msgid "Allow users to only share with users in their groups"
 msgstr "Tillåt bara delning med användare i egna grupper"
 
-#: templates/admin.php:69
+#: templates/admin.php:88
 msgid "Log"
 msgstr "Logg"
 
-#: templates/admin.php:97
+#: templates/admin.php:116
 msgid "More"
 msgstr "Mera"
 
-#: templates/admin.php:105
+#: templates/admin.php:124
 msgid ""
 "Developed by the <a href=\"http://ownCloud.org/contact\" "
 "target=\"_blank\">ownCloud community</a>, the <a "
diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot
index 13cf5608b96e05a8b7468bd3c12657caf5c721ff..a2ca834734aacdf180a0de7489b840cb51feae7d 100644
--- a/l10n/templates/core.pot
+++ b/l10n/templates/core.pot
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-09-12 02:01+0200\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot
index ea363823aa58766bf7ffa85b4b116e7e3d71da62..670af957c7e368598563e5414620f899b88bfb3b 100644
--- a/l10n/templates/files.pot
+++ b/l10n/templates/files.pot
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-09-12 02:01+0200\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -79,7 +79,7 @@ msgstr ""
 msgid "replaced"
 msgstr ""
 
-#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270
+#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269
 msgid "undo"
 msgstr ""
 
@@ -87,11 +87,11 @@ msgstr ""
 msgid "with"
 msgstr ""
 
-#: js/filelist.js:268
+#: js/filelist.js:267
 msgid "unshared"
 msgstr ""
 
-#: js/filelist.js:270
+#: js/filelist.js:269
 msgid "deleted"
 msgstr ""
 
@@ -124,27 +124,35 @@ msgstr ""
 msgid "Invalid name, '/' is not allowed."
 msgstr ""
 
-#: js/files.js:746 templates/index.php:56
+#: js/files.js:666
+msgid "files scanned"
+msgstr ""
+
+#: js/files.js:674
+msgid "error while scanning"
+msgstr ""
+
+#: js/files.js:748 templates/index.php:56
 msgid "Size"
 msgstr ""
 
-#: js/files.js:747 templates/index.php:58
+#: js/files.js:749 templates/index.php:58
 msgid "Modified"
 msgstr ""
 
-#: js/files.js:774
+#: js/files.js:776
 msgid "folder"
 msgstr ""
 
-#: js/files.js:776
+#: js/files.js:778
 msgid "folders"
 msgstr ""
 
-#: js/files.js:784
+#: js/files.js:786
 msgid "file"
 msgstr ""
 
-#: js/files.js:786
+#: js/files.js:788
 msgid "files"
 msgstr ""
 
diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot
index 02737458e0e4f70fb99a24133588af1c8fa0cb48..b2b36ec7a0728ac7a7f295d459ec1f9080f6a3c2 100644
--- a/l10n/templates/files_encryption.pot
+++ b/l10n/templates/files_encryption.pot
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-09-12 02:01+0200\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot
index 75f49385fdbbd45c2470010a2b7a330a69d4ba6c..17df827012e4aaaeef9df8f669f1dfaad66fd0cc 100644
--- a/l10n/templates/files_external.pot
+++ b/l10n/templates/files_external.pot
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-09-12 02:01+0200\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot
index 2eec3ef024761376090c67820992ed64d851a7b6..ce17ba853f3f12a60ce0ef28d0565bbcef6e723f 100644
--- a/l10n/templates/files_sharing.pot
+++ b/l10n/templates/files_sharing.pot
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-09-12 02:01+0200\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot
index 7bc25825f9122cada2f72769c2123078dcb81321..6c86a3725f697f4a86b421fb66eeeebdd9261f59 100644
--- a/l10n/templates/files_versions.pot
+++ b/l10n/templates/files_versions.pot
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-09-12 02:01+0200\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -30,5 +30,9 @@ msgid "This will delete all existing backup versions of your files"
 msgstr ""
 
 #: templates/settings.php:3
-msgid "Enable Files Versioning"
+msgid "Files Versioning"
+msgstr ""
+
+#: templates/settings.php:4
+msgid "Enable"
 msgstr ""
diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot
index c1f018d3ecbf5c8dd3049cb60efa0b65a286cab1..3f9e5f57f248a3aa38c47977da7acc1f82210fa8 100644
--- a/l10n/templates/lib.pot
+++ b/l10n/templates/lib.pot
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-09-12 02:01+0200\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot
index 33da8992be4144ef91b6ee0f649bb32892dc3d59..c0c8b14a7edd912d11dda6e992b6e06af41bdaa6 100644
--- a/l10n/templates/settings.pot
+++ b/l10n/templates/settings.pot
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-09-12 02:01+0200\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -34,6 +34,10 @@ msgstr ""
 msgid "Unable to add group"
 msgstr ""
 
+#: ajax/enableapp.php:14
+msgid "Could not enable app. "
+msgstr ""
+
 #: ajax/lostpassword.php:14
 msgid "Email saved"
 msgstr ""
@@ -109,63 +113,67 @@ msgstr ""
 msgid "Cron"
 msgstr ""
 
-#: templates/admin.php:33
-msgid "execute one task with each page loaded"
+#: templates/admin.php:37
+msgid "Execute one task with each page loaded"
 msgstr ""
 
-#: templates/admin.php:35
-msgid "cron.php is registered at a webcron service"
+#: templates/admin.php:43
+msgid ""
+"cron.php is registered at a webcron service. Call the cron.php page in the "
+"owncloud root once a minute over http."
 msgstr ""
 
-#: templates/admin.php:37
-msgid "use systems cron service"
+#: templates/admin.php:49
+msgid ""
+"Use systems cron service. Call the cron.php file in the owncloud folder via "
+"a system cronjob once a minute."
 msgstr ""
 
-#: templates/admin.php:41
-msgid "Share API"
+#: templates/admin.php:56
+msgid "Sharing"
 msgstr ""
 
-#: templates/admin.php:46
+#: templates/admin.php:61
 msgid "Enable Share API"
 msgstr ""
 
-#: templates/admin.php:47
+#: templates/admin.php:62
 msgid "Allow apps to use the Share API"
 msgstr ""
 
-#: templates/admin.php:51
+#: templates/admin.php:67
 msgid "Allow links"
 msgstr ""
 
-#: templates/admin.php:52
+#: templates/admin.php:68
 msgid "Allow users to share items to the public with links"
 msgstr ""
 
-#: templates/admin.php:56
+#: templates/admin.php:73
 msgid "Allow resharing"
 msgstr ""
 
-#: templates/admin.php:57
+#: templates/admin.php:74
 msgid "Allow users to share items shared with them again"
 msgstr ""
 
-#: templates/admin.php:60
+#: templates/admin.php:79
 msgid "Allow users to share with anyone"
 msgstr ""
 
-#: templates/admin.php:62
+#: templates/admin.php:81
 msgid "Allow users to only share with users in their groups"
 msgstr ""
 
-#: templates/admin.php:69
+#: templates/admin.php:88
 msgid "Log"
 msgstr ""
 
-#: templates/admin.php:97
+#: templates/admin.php:116
 msgid "More"
 msgstr ""
 
-#: templates/admin.php:105
+#: templates/admin.php:124
 msgid ""
 "Developed by the <a href=\"http://ownCloud.org/contact\" target=\"_blank"
 "\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" "
diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot
index 86f79b98fce1c0df07e2c346cad1ace46e3bd11d..97fbced0ff6df89d9bc2f98caadf134e27d987c3 100644
--- a/l10n/templates/user_ldap.pot
+++ b/l10n/templates/user_ldap.pot
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-09-12 02:01+0200\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
diff --git a/l10n/th_TH/files.po b/l10n/th_TH/files.po
index 1ade0abea9b5b17c5df6e30c10f5142fccae5cb2..81201d846b1d16c2a73a9dd83e0d716b5089bc82 100644
--- a/l10n/th_TH/files.po
+++ b/l10n/th_TH/files.po
@@ -9,9 +9,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-09 02:01+0200\n"
-"PO-Revision-Date: 2012-09-08 03:31+0000\n"
-"Last-Translator: AriesAnywhere Anywhere <ariesanywhere@gmail.com>\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
+"PO-Revision-Date: 2012-09-18 00:01+0000\n"
+"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -81,7 +81,7 @@ msgstr "ยกเลิก"
 msgid "replaced"
 msgstr "แทนที่แล้ว"
 
-#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270
+#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269
 msgid "undo"
 msgstr "เลิกทำ"
 
@@ -89,11 +89,11 @@ msgstr "เลิกทำ"
 msgid "with"
 msgstr "กับ"
 
-#: js/filelist.js:268
+#: js/filelist.js:267
 msgid "unshared"
 msgstr "ยกเลิกการแชร์ข้อมูลแล้ว"
 
-#: js/filelist.js:270
+#: js/filelist.js:269
 msgid "deleted"
 msgstr "ลบแล้ว"
 
@@ -126,27 +126,35 @@ msgstr "การอัพโหลดไฟล์กำลังอยู่ใ
 msgid "Invalid name, '/' is not allowed."
 msgstr "ชื่อที่ใช้ไม่ถูกต้อง '/' ไม่อนุญาตให้ใช้งาน"
 
-#: js/files.js:746 templates/index.php:56
+#: js/files.js:666
+msgid "files scanned"
+msgstr ""
+
+#: js/files.js:674
+msgid "error while scanning"
+msgstr ""
+
+#: js/files.js:748 templates/index.php:56
 msgid "Size"
 msgstr "ขนาด"
 
-#: js/files.js:747 templates/index.php:58
+#: js/files.js:749 templates/index.php:58
 msgid "Modified"
 msgstr "ปรับปรุงล่าสุด"
 
-#: js/files.js:774
+#: js/files.js:776
 msgid "folder"
 msgstr "โฟลเดอร์"
 
-#: js/files.js:776
+#: js/files.js:778
 msgid "folders"
 msgstr "โฟลเดอร์"
 
-#: js/files.js:784
+#: js/files.js:786
 msgid "file"
 msgstr "ไฟล์"
 
-#: js/files.js:786
+#: js/files.js:788
 msgid "files"
 msgstr "ไฟล์"
 
diff --git a/l10n/th_TH/files_versions.po b/l10n/th_TH/files_versions.po
index 28f3effc2a25e49ac7be618a237e91cdb5b420a6..aa1ceaf157833ae68a97ea973d671b0f3697acf8 100644
--- a/l10n/th_TH/files_versions.po
+++ b/l10n/th_TH/files_versions.po
@@ -8,15 +8,15 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-03 02:04+0200\n"
-"PO-Revision-Date: 2012-09-02 22:45+0000\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
+"PO-Revision-Date: 2012-09-17 05:39+0000\n"
 "Last-Translator: AriesAnywhere Anywhere <ariesanywhere@gmail.com>\n"
 "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: th_TH\n"
-"Plural-Forms: nplurals=1; plural=0\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
 
 #: js/settings-personal.js:31 templates/settings-personal.php:10
 msgid "Expire all versions"
@@ -31,5 +31,9 @@ msgid "This will delete all existing backup versions of your files"
 msgstr "นี่จะเป็นลบทิ้งไฟล์รุ่นที่ทำการสำรองข้อมูลทั้งหมดที่มีอยู่ของคุณทิ้งไป"
 
 #: templates/settings.php:3
-msgid "Enable Files Versioning"
-msgstr "เปิดใช้งานคุณสมบัติการแยกสถานะรุ่นหรือเวอร์ชั่นของไฟล์"
+msgid "Files Versioning"
+msgstr "การกำหนดเวอร์ชั่นของไฟล์"
+
+#: templates/settings.php:4
+msgid "Enable"
+msgstr "เปิดใช้งาน"
diff --git a/l10n/th_TH/settings.po b/l10n/th_TH/settings.po
index 1919a13b9efa0a44a6607ae33f4e38f794e2e4b0..bc06688343854bf530feb1b00ee53033f862c89d 100644
--- a/l10n/th_TH/settings.po
+++ b/l10n/th_TH/settings.po
@@ -10,8 +10,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-06 02:02+0200\n"
-"PO-Revision-Date: 2012-09-05 00:31+0000\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
+"PO-Revision-Date: 2012-09-17 05:37+0000\n"
 "Last-Translator: AriesAnywhere Anywhere <ariesanywhere@gmail.com>\n"
 "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n"
 "MIME-Version: 1.0\n"
@@ -37,6 +37,10 @@ msgstr "มีกลุ่มดังกล่าวอยู่ในระบ
 msgid "Unable to add group"
 msgstr "ไม่สามารถเพิ่มกลุ่มได้"
 
+#: ajax/enableapp.php:14
+msgid "Could not enable app. "
+msgstr "ไม่สามารถเปิดใช้งานแอปได้"
+
 #: ajax/lostpassword.php:14
 msgid "Email saved"
 msgstr "อีเมลถูกบันทึกแล้ว"
@@ -112,63 +116,67 @@ msgstr "ไดเร็กทอรี่ข้อมูลและไฟล์
 msgid "Cron"
 msgstr "Cron"
 
-#: templates/admin.php:33
-msgid "execute one task with each page loaded"
-msgstr "ประมวลผลหนึ่งงานเมื่อโหลดหน้าเว็บแต่ละครั้ง"
+#: templates/admin.php:37
+msgid "Execute one task with each page loaded"
+msgstr "ประมวลคำสั่งหนึ่งงานในแต่ละครั้งที่มีการโหลดหน้าเว็บ"
 
-#: templates/admin.php:35
-msgid "cron.php is registered at a webcron service"
-msgstr "cron.php ได้ถูกลงทะเบียนที่บริการ webcron"
+#: templates/admin.php:43
+msgid ""
+"cron.php is registered at a webcron service. Call the cron.php page in the "
+"owncloud root once a minute over http."
+msgstr "cron.php ได้รับการลงทะเบียนแล้วกับเว็บผู้ให้บริการ webcron เรียกหน้าเว็บ cron.php ที่ตำแหน่ง root ของ owncloud หลังจากนี้สักครู่ผ่านทาง http"
 
-#: templates/admin.php:37
-msgid "use systems cron service"
-msgstr "ใช้บริการ cron จากระบบ"
+#: templates/admin.php:49
+msgid ""
+"Use systems cron service. Call the cron.php file in the owncloud folder via "
+"a system cronjob once a minute."
+msgstr "ใช้บริการ cron จากระบบ เรียกไฟล์ cron.php ในโฟลเดอร์ owncloud ผ่านทาง cronjob ของระบบหลังจากนี้สักครู่"
 
-#: templates/admin.php:41
-msgid "Share API"
-msgstr "API สำหรับคุณสมบัติแชร์ข้อมูล"
+#: templates/admin.php:56
+msgid "Sharing"
+msgstr "การแชร์ข้อมูล"
 
-#: templates/admin.php:46
+#: templates/admin.php:61
 msgid "Enable Share API"
 msgstr "เปิดใช้งาน API สำหรับคุณสมบัติแชร์ข้อมูล"
 
-#: templates/admin.php:47
+#: templates/admin.php:62
 msgid "Allow apps to use the Share API"
 msgstr "อนุญาตให้แอปฯสามารถใช้ API สำหรับแชร์ข้อมูลได้"
 
-#: templates/admin.php:51
+#: templates/admin.php:67
 msgid "Allow links"
 msgstr "อนุญาตให้ใช้งานลิงก์ได้"
 
-#: templates/admin.php:52
+#: templates/admin.php:68
 msgid "Allow users to share items to the public with links"
 msgstr "อนุญาตให้ผู้ใช้งานสามารถแชร์ข้อมูลรายการต่างๆไปให้สาธารณะชนเป็นลิงก์ได้"
 
-#: templates/admin.php:56
+#: templates/admin.php:73
 msgid "Allow resharing"
 msgstr "อนุญาตให้แชร์ข้อมูลซ้ำใหม่ได้"
 
-#: templates/admin.php:57
+#: templates/admin.php:74
 msgid "Allow users to share items shared with them again"
 msgstr "อนุญาตให้ผู้ใช้งานแชร์ข้อมูลรายการต่างๆที่ถูกแชร์มาให้ตัวผู้ใช้งานได้เท่านั้น"
 
-#: templates/admin.php:60
+#: templates/admin.php:79
 msgid "Allow users to share with anyone"
 msgstr "อนุญาตให้ผู้ใช้งานแชร์ข้อมูลถึงใครก็ได้"
 
-#: templates/admin.php:62
+#: templates/admin.php:81
 msgid "Allow users to only share with users in their groups"
 msgstr "อนุญาตให้ผู้ใช้งานแชร์ข้อมูลได้เฉพาะกับผู้ใช้งานที่อยู่ในกลุ่มเดียวกันเท่านั้น"
 
-#: templates/admin.php:69
+#: templates/admin.php:88
 msgid "Log"
 msgstr "บันทึกการเปลี่ยนแปลง"
 
-#: templates/admin.php:97
+#: templates/admin.php:116
 msgid "More"
 msgstr "เพิ่มเติม"
 
-#: templates/admin.php:105
+#: templates/admin.php:124
 msgid ""
 "Developed by the <a href=\"http://ownCloud.org/contact\" "
 "target=\"_blank\">ownCloud community</a>, the <a "
diff --git a/l10n/tr/files.po b/l10n/tr/files.po
index c0a9c6b876b865387b59605fe19a4dbfcf690dc9..5eba75eccb0431245a0e8c8ce562e7bceaf8ebd0 100644
--- a/l10n/tr/files.po
+++ b/l10n/tr/files.po
@@ -11,8 +11,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-08 02:01+0200\n"
-"PO-Revision-Date: 2012-09-08 00:02+0000\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
+"PO-Revision-Date: 2012-09-18 00:01+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n"
 "MIME-Version: 1.0\n"
@@ -83,7 +83,7 @@ msgstr "iptal"
 msgid "replaced"
 msgstr "değiştirildi"
 
-#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270
+#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269
 msgid "undo"
 msgstr "geri al"
 
@@ -91,11 +91,11 @@ msgstr "geri al"
 msgid "with"
 msgstr "ile"
 
-#: js/filelist.js:268
+#: js/filelist.js:267
 msgid "unshared"
 msgstr ""
 
-#: js/filelist.js:270
+#: js/filelist.js:269
 msgid "deleted"
 msgstr "silindi"
 
@@ -128,27 +128,35 @@ msgstr "Dosya yükleme işlemi sürüyor. Şimdi sayfadan ayrılırsanız işlem
 msgid "Invalid name, '/' is not allowed."
 msgstr "Geçersiz isim, '/' işaretine izin verilmiyor."
 
-#: js/files.js:746 templates/index.php:56
+#: js/files.js:666
+msgid "files scanned"
+msgstr ""
+
+#: js/files.js:674
+msgid "error while scanning"
+msgstr ""
+
+#: js/files.js:748 templates/index.php:56
 msgid "Size"
 msgstr "Boyut"
 
-#: js/files.js:747 templates/index.php:58
+#: js/files.js:749 templates/index.php:58
 msgid "Modified"
 msgstr "Değiştirilme"
 
-#: js/files.js:774
+#: js/files.js:776
 msgid "folder"
 msgstr "dizin"
 
-#: js/files.js:776
+#: js/files.js:778
 msgid "folders"
 msgstr "dizinler"
 
-#: js/files.js:784
+#: js/files.js:786
 msgid "file"
 msgstr "dosya"
 
-#: js/files.js:786
+#: js/files.js:788
 msgid "files"
 msgstr "dosyalar"
 
diff --git a/l10n/tr/files_versions.po b/l10n/tr/files_versions.po
index be45079a55cf751c5ba5aaf688b1f480e55176cc..b358355e28a4482e46fd592818b65e899dd332ab 100644
--- a/l10n/tr/files_versions.po
+++ b/l10n/tr/files_versions.po
@@ -7,15 +7,15 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-01 13:35+0200\n"
-"PO-Revision-Date: 2012-09-01 11:35+0000\n"
+"POT-Creation-Date: 2012-09-17 02:02+0200\n"
+"PO-Revision-Date: 2012-09-17 00:04+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: tr\n"
-"Plural-Forms: nplurals=1; plural=0\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
 
 #: js/settings-personal.js:31 templates/settings-personal.php:10
 msgid "Expire all versions"
@@ -30,5 +30,9 @@ msgid "This will delete all existing backup versions of your files"
 msgstr ""
 
 #: templates/settings.php:3
-msgid "Enable Files Versioning"
+msgid "Files Versioning"
+msgstr ""
+
+#: templates/settings.php:4
+msgid "Enable"
 msgstr ""
diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po
index 927817d543695730ea023da7e8cf59486b0a760a..3cf53f10ff547932ef0c080c1ddf8d236458f223 100644
--- a/l10n/tr/settings.po
+++ b/l10n/tr/settings.po
@@ -10,8 +10,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-05 02:02+0200\n"
-"PO-Revision-Date: 2012-09-05 00:02+0000\n"
+"POT-Creation-Date: 2012-09-17 02:03+0200\n"
+"PO-Revision-Date: 2012-09-17 00:03+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n"
 "MIME-Version: 1.0\n"
@@ -37,6 +37,10 @@ msgstr ""
 msgid "Unable to add group"
 msgstr ""
 
+#: ajax/enableapp.php:13
+msgid "Could not enable app. "
+msgstr ""
+
 #: ajax/lostpassword.php:14
 msgid "Email saved"
 msgstr "Eposta kaydedildi"
@@ -112,63 +116,67 @@ msgstr ""
 msgid "Cron"
 msgstr ""
 
-#: templates/admin.php:33
-msgid "execute one task with each page loaded"
+#: templates/admin.php:37
+msgid "Execute one task with each page loaded"
 msgstr ""
 
-#: templates/admin.php:35
-msgid "cron.php is registered at a webcron service"
+#: templates/admin.php:43
+msgid ""
+"cron.php is registered at a webcron service. Call the cron.php page in the "
+"owncloud root once a minute over http."
 msgstr ""
 
-#: templates/admin.php:37
-msgid "use systems cron service"
+#: templates/admin.php:49
+msgid ""
+"Use systems cron service. Call the cron.php file in the owncloud folder via "
+"a system cronjob once a minute."
 msgstr ""
 
-#: templates/admin.php:41
-msgid "Share API"
+#: templates/admin.php:56
+msgid "Sharing"
 msgstr ""
 
-#: templates/admin.php:46
+#: templates/admin.php:61
 msgid "Enable Share API"
 msgstr ""
 
-#: templates/admin.php:47
+#: templates/admin.php:62
 msgid "Allow apps to use the Share API"
 msgstr ""
 
-#: templates/admin.php:51
+#: templates/admin.php:67
 msgid "Allow links"
 msgstr ""
 
-#: templates/admin.php:52
+#: templates/admin.php:68
 msgid "Allow users to share items to the public with links"
 msgstr ""
 
-#: templates/admin.php:56
+#: templates/admin.php:73
 msgid "Allow resharing"
 msgstr ""
 
-#: templates/admin.php:57
+#: templates/admin.php:74
 msgid "Allow users to share items shared with them again"
 msgstr ""
 
-#: templates/admin.php:60
+#: templates/admin.php:79
 msgid "Allow users to share with anyone"
 msgstr ""
 
-#: templates/admin.php:62
+#: templates/admin.php:81
 msgid "Allow users to only share with users in their groups"
 msgstr ""
 
-#: templates/admin.php:69
+#: templates/admin.php:88
 msgid "Log"
 msgstr "Günlük"
 
-#: templates/admin.php:97
+#: templates/admin.php:116
 msgid "More"
 msgstr "Devamı"
 
-#: templates/admin.php:105
+#: templates/admin.php:124
 msgid ""
 "Developed by the <a href=\"http://ownCloud.org/contact\" "
 "target=\"_blank\">ownCloud community</a>, the <a "
diff --git a/l10n/uk/files.po b/l10n/uk/files.po
index f81ff9967425f7266ad830a3d20d843c3bc55ffb..a83100498ca5a7586201d441a08b445cd44d131a 100644
--- a/l10n/uk/files.po
+++ b/l10n/uk/files.po
@@ -9,8 +9,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-08 02:01+0200\n"
-"PO-Revision-Date: 2012-09-08 00:02+0000\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
+"PO-Revision-Date: 2012-09-18 00:01+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n"
 "MIME-Version: 1.0\n"
@@ -81,7 +81,7 @@ msgstr ""
 msgid "replaced"
 msgstr ""
 
-#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270
+#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269
 msgid "undo"
 msgstr "відмінити"
 
@@ -89,11 +89,11 @@ msgstr "відмінити"
 msgid "with"
 msgstr ""
 
-#: js/filelist.js:268
+#: js/filelist.js:267
 msgid "unshared"
 msgstr ""
 
-#: js/filelist.js:270
+#: js/filelist.js:269
 msgid "deleted"
 msgstr "видалені"
 
@@ -126,27 +126,35 @@ msgstr ""
 msgid "Invalid name, '/' is not allowed."
 msgstr "Некоректне ім'я, '/' не дозволено."
 
-#: js/files.js:746 templates/index.php:56
+#: js/files.js:666
+msgid "files scanned"
+msgstr ""
+
+#: js/files.js:674
+msgid "error while scanning"
+msgstr ""
+
+#: js/files.js:748 templates/index.php:56
 msgid "Size"
 msgstr "Розмір"
 
-#: js/files.js:747 templates/index.php:58
+#: js/files.js:749 templates/index.php:58
 msgid "Modified"
 msgstr "Змінено"
 
-#: js/files.js:774
+#: js/files.js:776
 msgid "folder"
 msgstr "тека"
 
-#: js/files.js:776
+#: js/files.js:778
 msgid "folders"
 msgstr "теки"
 
-#: js/files.js:784
+#: js/files.js:786
 msgid "file"
 msgstr "файл"
 
-#: js/files.js:786
+#: js/files.js:788
 msgid "files"
 msgstr "файли"
 
diff --git a/l10n/uk/files_versions.po b/l10n/uk/files_versions.po
index f2a35bd6749f32510c514d35e69e7d0301288905..15fa3309cdf00b25d0ffc55baa3a77d1646821c0 100644
--- a/l10n/uk/files_versions.po
+++ b/l10n/uk/files_versions.po
@@ -7,15 +7,15 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-01 13:35+0200\n"
-"PO-Revision-Date: 2012-09-01 11:35+0000\n"
+"POT-Creation-Date: 2012-09-17 02:02+0200\n"
+"PO-Revision-Date: 2012-09-17 00:04+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: uk\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
 
 #: js/settings-personal.js:31 templates/settings-personal.php:10
 msgid "Expire all versions"
@@ -30,5 +30,9 @@ msgid "This will delete all existing backup versions of your files"
 msgstr ""
 
 #: templates/settings.php:3
-msgid "Enable Files Versioning"
+msgid "Files Versioning"
+msgstr ""
+
+#: templates/settings.php:4
+msgid "Enable"
 msgstr ""
diff --git a/l10n/uk/settings.po b/l10n/uk/settings.po
index 7a1ef6e3a0a2d8fa07e310673e154a152bc1c3f8..768ec5f798a593164fd8f573cbd08ebff0c55103 100644
--- a/l10n/uk/settings.po
+++ b/l10n/uk/settings.po
@@ -8,8 +8,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-05 02:02+0200\n"
-"PO-Revision-Date: 2012-09-05 00:02+0000\n"
+"POT-Creation-Date: 2012-09-17 02:03+0200\n"
+"PO-Revision-Date: 2012-09-17 00:03+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n"
 "MIME-Version: 1.0\n"
@@ -35,6 +35,10 @@ msgstr ""
 msgid "Unable to add group"
 msgstr ""
 
+#: ajax/enableapp.php:13
+msgid "Could not enable app. "
+msgstr ""
+
 #: ajax/lostpassword.php:14
 msgid "Email saved"
 msgstr ""
@@ -110,63 +114,67 @@ msgstr ""
 msgid "Cron"
 msgstr ""
 
-#: templates/admin.php:33
-msgid "execute one task with each page loaded"
+#: templates/admin.php:37
+msgid "Execute one task with each page loaded"
 msgstr ""
 
-#: templates/admin.php:35
-msgid "cron.php is registered at a webcron service"
+#: templates/admin.php:43
+msgid ""
+"cron.php is registered at a webcron service. Call the cron.php page in the "
+"owncloud root once a minute over http."
 msgstr ""
 
-#: templates/admin.php:37
-msgid "use systems cron service"
+#: templates/admin.php:49
+msgid ""
+"Use systems cron service. Call the cron.php file in the owncloud folder via "
+"a system cronjob once a minute."
 msgstr ""
 
-#: templates/admin.php:41
-msgid "Share API"
+#: templates/admin.php:56
+msgid "Sharing"
 msgstr ""
 
-#: templates/admin.php:46
+#: templates/admin.php:61
 msgid "Enable Share API"
 msgstr ""
 
-#: templates/admin.php:47
+#: templates/admin.php:62
 msgid "Allow apps to use the Share API"
 msgstr ""
 
-#: templates/admin.php:51
+#: templates/admin.php:67
 msgid "Allow links"
 msgstr ""
 
-#: templates/admin.php:52
+#: templates/admin.php:68
 msgid "Allow users to share items to the public with links"
 msgstr ""
 
-#: templates/admin.php:56
+#: templates/admin.php:73
 msgid "Allow resharing"
 msgstr ""
 
-#: templates/admin.php:57
+#: templates/admin.php:74
 msgid "Allow users to share items shared with them again"
 msgstr ""
 
-#: templates/admin.php:60
+#: templates/admin.php:79
 msgid "Allow users to share with anyone"
 msgstr ""
 
-#: templates/admin.php:62
+#: templates/admin.php:81
 msgid "Allow users to only share with users in their groups"
 msgstr ""
 
-#: templates/admin.php:69
+#: templates/admin.php:88
 msgid "Log"
 msgstr ""
 
-#: templates/admin.php:97
+#: templates/admin.php:116
 msgid "More"
 msgstr ""
 
-#: templates/admin.php:105
+#: templates/admin.php:124
 msgid ""
 "Developed by the <a href=\"http://ownCloud.org/contact\" "
 "target=\"_blank\">ownCloud community</a>, the <a "
diff --git a/l10n/vi/files.po b/l10n/vi/files.po
index 451fc69587d6ba369569f5f64166564ec539e285..8c98054155160874429a5be47905f7411f829b86 100644
--- a/l10n/vi/files.po
+++ b/l10n/vi/files.po
@@ -9,9 +9,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-11 02:02+0200\n"
-"PO-Revision-Date: 2012-09-10 09:22+0000\n"
-"Last-Translator: mattheu_9x <mattheu_9x@yahoo.com>\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
+"PO-Revision-Date: 2012-09-18 00:02+0000\n"
+"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -81,7 +81,7 @@ msgstr "hủy"
 msgid "replaced"
 msgstr "đã được thay thế"
 
-#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270
+#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269
 msgid "undo"
 msgstr "lùi lại"
 
@@ -89,11 +89,11 @@ msgstr "lùi lại"
 msgid "with"
 msgstr "với"
 
-#: js/filelist.js:268
+#: js/filelist.js:267
 msgid "unshared"
 msgstr ""
 
-#: js/filelist.js:270
+#: js/filelist.js:269
 msgid "deleted"
 msgstr "đã xóa"
 
@@ -126,27 +126,35 @@ msgstr "Tập tin tải lên đang được xử lý. Nếu bạn rời khỏi t
 msgid "Invalid name, '/' is not allowed."
 msgstr "Tên không hợp lệ ,không được phép dùng '/'"
 
-#: js/files.js:746 templates/index.php:56
+#: js/files.js:666
+msgid "files scanned"
+msgstr ""
+
+#: js/files.js:674
+msgid "error while scanning"
+msgstr ""
+
+#: js/files.js:748 templates/index.php:56
 msgid "Size"
 msgstr "Kích cỡ"
 
-#: js/files.js:747 templates/index.php:58
+#: js/files.js:749 templates/index.php:58
 msgid "Modified"
 msgstr "Thay đổi"
 
-#: js/files.js:774
+#: js/files.js:776
 msgid "folder"
 msgstr "folder"
 
-#: js/files.js:776
+#: js/files.js:778
 msgid "folders"
 msgstr "folders"
 
-#: js/files.js:784
+#: js/files.js:786
 msgid "file"
 msgstr "file"
 
-#: js/files.js:786
+#: js/files.js:788
 msgid "files"
 msgstr "files"
 
diff --git a/l10n/vi/files_versions.po b/l10n/vi/files_versions.po
index 9a03e55a3b9665642e09b601a4f4a391406c9bc0..0ce200328c84eaf8b7c44814986cf0a88ff75802 100644
--- a/l10n/vi/files_versions.po
+++ b/l10n/vi/files_versions.po
@@ -8,9 +8,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-08 02:02+0200\n"
-"PO-Revision-Date: 2012-09-07 14:50+0000\n"
-"Last-Translator: Sơn Nguyễn <sonnghit@gmail.com>\n"
+"POT-Creation-Date: 2012-09-17 02:02+0200\n"
+"PO-Revision-Date: 2012-09-17 00:04+0000\n"
+"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -31,5 +31,9 @@ msgid "This will delete all existing backup versions of your files"
 msgstr "Điều này sẽ xóa tất cả các phiên bản sao lưu hiện có "
 
 #: templates/settings.php:3
-msgid "Enable Files Versioning"
-msgstr "BẬT tập tin phiên bản"
+msgid "Files Versioning"
+msgstr ""
+
+#: templates/settings.php:4
+msgid "Enable"
+msgstr ""
diff --git a/l10n/vi/settings.po b/l10n/vi/settings.po
index 12a6254703b5e54124e1c6264114bad7013621c3..587aca88e434f716ae90d6a8a75551e9624688e7 100644
--- a/l10n/vi/settings.po
+++ b/l10n/vi/settings.po
@@ -11,9 +11,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-08 02:02+0200\n"
-"PO-Revision-Date: 2012-09-07 16:01+0000\n"
-"Last-Translator: mattheu_9x <mattheu_9x@yahoo.com>\n"
+"POT-Creation-Date: 2012-09-17 02:03+0200\n"
+"PO-Revision-Date: 2012-09-17 00:03+0000\n"
+"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -38,6 +38,10 @@ msgstr "Nhóm đã tồn tại"
 msgid "Unable to add group"
 msgstr "Không thể thêm nhóm"
 
+#: ajax/enableapp.php:13
+msgid "Could not enable app. "
+msgstr ""
+
 #: ajax/lostpassword.php:14
 msgid "Email saved"
 msgstr "Lưu email"
@@ -113,63 +117,67 @@ msgstr "Thư mục dữ liệu và những tập tin của bạn có thể dễ
 msgid "Cron"
 msgstr "Cron"
 
-#: templates/admin.php:33
-msgid "execute one task with each page loaded"
-msgstr "Thực thi một nhiệm vụ với mỗi trang được nạp"
+#: templates/admin.php:37
+msgid "Execute one task with each page loaded"
+msgstr ""
 
-#: templates/admin.php:35
-msgid "cron.php is registered at a webcron service"
-msgstr "cron.php đã được đăng ký ở một dịch vụ webcron"
+#: templates/admin.php:43
+msgid ""
+"cron.php is registered at a webcron service. Call the cron.php page in the "
+"owncloud root once a minute over http."
+msgstr ""
 
-#: templates/admin.php:37
-msgid "use systems cron service"
-msgstr "sử dụng hệ thống dịch vụ cron"
+#: templates/admin.php:49
+msgid ""
+"Use systems cron service. Call the cron.php file in the owncloud folder via "
+"a system cronjob once a minute."
+msgstr ""
 
-#: templates/admin.php:41
-msgid "Share API"
-msgstr "Chia sẻ API"
+#: templates/admin.php:56
+msgid "Sharing"
+msgstr ""
 
-#: templates/admin.php:46
+#: templates/admin.php:61
 msgid "Enable Share API"
 msgstr "Bật chia sẻ API"
 
-#: templates/admin.php:47
+#: templates/admin.php:62
 msgid "Allow apps to use the Share API"
 msgstr "Cho phép các ứng dụng sử dụng chia sẻ API"
 
-#: templates/admin.php:51
+#: templates/admin.php:67
 msgid "Allow links"
 msgstr "Cho phép liên kết"
 
-#: templates/admin.php:52
+#: templates/admin.php:68
 msgid "Allow users to share items to the public with links"
 msgstr "Cho phép người dùng chia sẻ công khai các mục bằng các liên kết"
 
-#: templates/admin.php:56
+#: templates/admin.php:73
 msgid "Allow resharing"
 msgstr "Cho phép chia sẻ lại"
 
-#: templates/admin.php:57
+#: templates/admin.php:74
 msgid "Allow users to share items shared with them again"
 msgstr "Cho phép người dùng chia sẻ lại những mục đã được chia sẻ"
 
-#: templates/admin.php:60
+#: templates/admin.php:79
 msgid "Allow users to share with anyone"
 msgstr "Cho phép người dùng chia sẻ với bất cứ ai"
 
-#: templates/admin.php:62
+#: templates/admin.php:81
 msgid "Allow users to only share with users in their groups"
 msgstr "Chỉ cho phép người dùng chia sẻ với những người dùng trong nhóm của họ"
 
-#: templates/admin.php:69
+#: templates/admin.php:88
 msgid "Log"
 msgstr "Log"
 
-#: templates/admin.php:97
+#: templates/admin.php:116
 msgid "More"
 msgstr "nhiều hơn"
 
-#: templates/admin.php:105
+#: templates/admin.php:124
 msgid ""
 "Developed by the <a href=\"http://ownCloud.org/contact\" "
 "target=\"_blank\">ownCloud community</a>, the <a "
diff --git a/l10n/zh_CN.GB2312/core.po b/l10n/zh_CN.GB2312/core.po
index 1993d8aed9aa40befa8357ca17cf153106edd39f..b5a49cd5b24b8de531877a25dd4d9964c139209a 100644
--- a/l10n/zh_CN.GB2312/core.po
+++ b/l10n/zh_CN.GB2312/core.po
@@ -4,13 +4,14 @@
 # 
 # Translators:
 #   <bluehattree@126.com>, 2012.
+# marguerite su <i@marguerite.su>, 2012.
 msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-06 02:02+0200\n"
-"PO-Revision-Date: 2012-09-06 00:03+0000\n"
-"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
+"PO-Revision-Date: 2012-09-17 15:26+0000\n"
+"Last-Translator: marguerite su <i@marguerite.su>\n"
 "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -30,55 +31,55 @@ msgstr "没有分类添加了?"
 msgid "This category already exists: "
 msgstr "这个分类已经存在了:"
 
-#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61
+#: js/js.js:214 templates/layout.user.php:54 templates/layout.user.php:55
 msgid "Settings"
 msgstr "设置"
 
-#: js/js.js:593
+#: js/js.js:642
 msgid "January"
 msgstr "一月"
 
-#: js/js.js:593
+#: js/js.js:642
 msgid "February"
 msgstr "二月"
 
-#: js/js.js:593
+#: js/js.js:642
 msgid "March"
 msgstr "三月"
 
-#: js/js.js:593
+#: js/js.js:642
 msgid "April"
 msgstr "四月"
 
-#: js/js.js:593
+#: js/js.js:642
 msgid "May"
 msgstr "五月"
 
-#: js/js.js:593
+#: js/js.js:642
 msgid "June"
 msgstr "六月"
 
-#: js/js.js:594
+#: js/js.js:643
 msgid "July"
 msgstr "七月"
 
-#: js/js.js:594
+#: js/js.js:643
 msgid "August"
 msgstr "八月"
 
-#: js/js.js:594
+#: js/js.js:643
 msgid "September"
 msgstr "九月"
 
-#: js/js.js:594
+#: js/js.js:643
 msgid "October"
 msgstr "十月"
 
-#: js/js.js:594
+#: js/js.js:643
 msgid "November"
 msgstr "十一月"
 
-#: js/js.js:594
+#: js/js.js:643
 msgid "December"
 msgstr "十二月"
 
@@ -226,7 +227,7 @@ msgstr "数据库用户名"
 
 #: templates/installation.php:109
 msgid "Database tablespace"
-msgstr ""
+msgstr "数据库表格空间"
 
 #: templates/installation.php:115
 msgid "Database host"
@@ -236,11 +237,11 @@ msgstr "数据库主机"
 msgid "Finish setup"
 msgstr "完成安装"
 
-#: templates/layout.guest.php:42
+#: templates/layout.guest.php:36
 msgid "web services under your control"
 msgstr "你控制下的网络服务"
 
-#: templates/layout.user.php:45
+#: templates/layout.user.php:39
 msgid "Log out"
 msgstr "注销"
 
diff --git a/l10n/zh_CN.GB2312/files.po b/l10n/zh_CN.GB2312/files.po
index 27fb4d0b39af2946e4de4362e9fcbb75dba94c22..bbf13e6f0f2594bd92de9bb6a6558b6d02301567 100644
--- a/l10n/zh_CN.GB2312/files.po
+++ b/l10n/zh_CN.GB2312/files.po
@@ -4,12 +4,13 @@
 # 
 # Translators:
 #   <bluehattree@126.com>, 2012.
+# marguerite su <i@marguerite.su>, 2012.
 msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-08 02:01+0200\n"
-"PO-Revision-Date: 2012-09-08 00:02+0000\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
+"PO-Revision-Date: 2012-09-18 00:02+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n"
 "MIME-Version: 1.0\n"
@@ -54,7 +55,7 @@ msgstr "文件"
 
 #: js/fileactions.js:108 templates/index.php:62
 msgid "Unshare"
-msgstr ""
+msgstr "取消共享"
 
 #: js/fileactions.js:110 templates/index.php:64
 msgid "Delete"
@@ -70,7 +71,7 @@ msgstr "替换"
 
 #: js/filelist.js:186
 msgid "suggest name"
-msgstr ""
+msgstr "推荐名称"
 
 #: js/filelist.js:186 js/filelist.js:188
 msgid "cancel"
@@ -80,7 +81,7 @@ msgstr "取消"
 msgid "replaced"
 msgstr "替换过了"
 
-#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270
+#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269
 msgid "undo"
 msgstr "撤销"
 
@@ -88,11 +89,11 @@ msgstr "撤销"
 msgid "with"
 msgstr "随着"
 
-#: js/filelist.js:268
+#: js/filelist.js:267
 msgid "unshared"
-msgstr ""
+msgstr "已取消共享"
 
-#: js/filelist.js:270
+#: js/filelist.js:269
 msgid "deleted"
 msgstr "删除"
 
@@ -119,33 +120,41 @@ msgstr "上传取消了"
 #: js/files.js:423
 msgid ""
 "File upload is in progress. Leaving the page now will cancel the upload."
-msgstr ""
+msgstr "文件正在上传。关闭页面会取消上传。"
 
 #: js/files.js:493
 msgid "Invalid name, '/' is not allowed."
 msgstr "非法文件名,\"/\"是不被许可的"
 
-#: js/files.js:746 templates/index.php:56
+#: js/files.js:666
+msgid "files scanned"
+msgstr ""
+
+#: js/files.js:674
+msgid "error while scanning"
+msgstr ""
+
+#: js/files.js:748 templates/index.php:56
 msgid "Size"
 msgstr "大小"
 
-#: js/files.js:747 templates/index.php:58
+#: js/files.js:749 templates/index.php:58
 msgid "Modified"
 msgstr "修改日期"
 
-#: js/files.js:774
+#: js/files.js:776
 msgid "folder"
 msgstr "文件夹"
 
-#: js/files.js:776
+#: js/files.js:778
 msgid "folders"
 msgstr "文件夹"
 
-#: js/files.js:784
+#: js/files.js:786
 msgid "file"
 msgstr "文件"
 
-#: js/files.js:786
+#: js/files.js:788
 msgid "files"
 msgstr "文件"
 
@@ -179,7 +188,7 @@ msgstr "最大的ZIP文件输入大小"
 
 #: templates/admin.php:14
 msgid "Save"
-msgstr ""
+msgstr "保存"
 
 #: templates/index.php:7
 msgid "New"
diff --git a/l10n/zh_CN.GB2312/files_encryption.po b/l10n/zh_CN.GB2312/files_encryption.po
index 2073826c24d4520dd76ba39df3b66525598ad241..eb4ddd9c548666fca4724d45a2b9cbb86fcfb90d 100644
--- a/l10n/zh_CN.GB2312/files_encryption.po
+++ b/l10n/zh_CN.GB2312/files_encryption.po
@@ -3,32 +3,33 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
+# marguerite su <i@marguerite.su>, 2012.
 msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-08-13 23:12+0200\n"
-"PO-Revision-Date: 2012-08-12 22:33+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
+"PO-Revision-Date: 2012-09-17 10:51+0000\n"
+"Last-Translator: marguerite su <i@marguerite.su>\n"
 "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: zh_CN.GB2312\n"
-"Plural-Forms: nplurals=1; plural=0\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
 
 #: templates/settings.php:3
 msgid "Encryption"
-msgstr ""
+msgstr "加密"
 
 #: templates/settings.php:4
 msgid "Exclude the following file types from encryption"
-msgstr ""
+msgstr "从加密中排除如下文件类型"
 
 #: templates/settings.php:5
 msgid "None"
-msgstr ""
+msgstr "无"
 
 #: templates/settings.php:10
 msgid "Enable Encryption"
-msgstr ""
+msgstr "启用加密"
diff --git a/l10n/zh_CN.GB2312/files_external.po b/l10n/zh_CN.GB2312/files_external.po
index 27dfa58801b2b739fc78e5d57df0aa7b576d2ce2..4573b7bbddf631d67d8e084382f306fd3550cc93 100644
--- a/l10n/zh_CN.GB2312/files_external.po
+++ b/l10n/zh_CN.GB2312/files_external.po
@@ -3,80 +3,81 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
+# marguerite su <i@marguerite.su>, 2012.
 msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-08-13 23:12+0200\n"
-"PO-Revision-Date: 2012-08-12 22:34+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
+"PO-Revision-Date: 2012-09-17 12:25+0000\n"
+"Last-Translator: marguerite su <i@marguerite.su>\n"
 "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: zh_CN.GB2312\n"
-"Plural-Forms: nplurals=1; plural=0\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
 
 #: templates/settings.php:3
 msgid "External Storage"
-msgstr ""
+msgstr "外部存储"
 
 #: templates/settings.php:7 templates/settings.php:19
 msgid "Mount point"
-msgstr ""
+msgstr "挂载点"
 
 #: templates/settings.php:8
 msgid "Backend"
-msgstr ""
+msgstr "后端"
 
 #: templates/settings.php:9
 msgid "Configuration"
-msgstr ""
+msgstr "配置"
 
 #: templates/settings.php:10
 msgid "Options"
-msgstr ""
+msgstr "选项"
 
 #: templates/settings.php:11
 msgid "Applicable"
-msgstr ""
+msgstr "可应用"
 
 #: templates/settings.php:23
 msgid "Add mount point"
-msgstr ""
+msgstr "添加挂载点"
 
 #: templates/settings.php:54 templates/settings.php:62
 msgid "None set"
-msgstr ""
+msgstr "未设置"
 
 #: templates/settings.php:63
 msgid "All Users"
-msgstr ""
+msgstr "所有用户"
 
 #: templates/settings.php:64
 msgid "Groups"
-msgstr ""
+msgstr "群组"
 
 #: templates/settings.php:69
 msgid "Users"
-msgstr ""
+msgstr "用户"
 
 #: templates/settings.php:77 templates/settings.php:96
 msgid "Delete"
-msgstr ""
+msgstr "删除"
 
 #: templates/settings.php:88
 msgid "SSL root certificates"
-msgstr ""
+msgstr "SSL 根证书"
 
 #: templates/settings.php:102
 msgid "Import Root Certificate"
-msgstr ""
+msgstr "导入根证书"
 
 #: templates/settings.php:108
 msgid "Enable User External Storage"
-msgstr ""
+msgstr "启用用户外部存储"
 
 #: templates/settings.php:109
 msgid "Allow users to mount their own external storage"
-msgstr ""
+msgstr "允许用户挂载他们的外部存储"
diff --git a/l10n/zh_CN.GB2312/files_sharing.po b/l10n/zh_CN.GB2312/files_sharing.po
index 4fdcb4f36f6ab1881e76cee41da380f9bb2b7a73..e7446b305956d967a4b40315296d7b94eedbc24d 100644
--- a/l10n/zh_CN.GB2312/files_sharing.po
+++ b/l10n/zh_CN.GB2312/files_sharing.po
@@ -3,36 +3,37 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
+# marguerite su <i@marguerite.su>, 2012.
 msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-08-31 02:02+0200\n"
-"PO-Revision-Date: 2012-08-31 00:04+0000\n"
-"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
+"PO-Revision-Date: 2012-09-17 10:46+0000\n"
+"Last-Translator: marguerite su <i@marguerite.su>\n"
 "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: zh_CN.GB2312\n"
-"Plural-Forms: nplurals=1; plural=0\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
 
 #: templates/authenticate.php:4
 msgid "Password"
-msgstr ""
+msgstr "密码"
 
 #: templates/authenticate.php:6
 msgid "Submit"
-msgstr ""
+msgstr "提交"
 
 #: templates/public.php:9 templates/public.php:19
 msgid "Download"
-msgstr ""
+msgstr "下载"
 
 #: templates/public.php:18
 msgid "No preview available for"
-msgstr ""
+msgstr "没有预览可用于"
 
-#: templates/public.php:23
+#: templates/public.php:25
 msgid "web services under your control"
-msgstr ""
+msgstr "您控制的网络服务"
diff --git a/l10n/zh_CN.GB2312/files_versions.po b/l10n/zh_CN.GB2312/files_versions.po
index 89fa8dd1ef27f81521cb1334d27ed3add1c1bb69..e2016da8c6df8575da8eee6136e2f17b2c9f2c7b 100644
--- a/l10n/zh_CN.GB2312/files_versions.po
+++ b/l10n/zh_CN.GB2312/files_versions.po
@@ -3,32 +3,37 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
+# marguerite su <i@marguerite.su>, 2012.
 msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-01 13:35+0200\n"
-"PO-Revision-Date: 2012-09-01 11:35+0000\n"
-"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
+"PO-Revision-Date: 2012-09-17 10:51+0000\n"
+"Last-Translator: marguerite su <i@marguerite.su>\n"
 "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: zh_CN.GB2312\n"
-"Plural-Forms: nplurals=1; plural=0\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
 
 #: js/settings-personal.js:31 templates/settings-personal.php:10
 msgid "Expire all versions"
-msgstr ""
+msgstr "作废所有版本"
 
 #: templates/settings-personal.php:4
 msgid "Versions"
-msgstr ""
+msgstr "版本"
 
 #: templates/settings-personal.php:7
 msgid "This will delete all existing backup versions of your files"
-msgstr ""
+msgstr "这将删除所有您现有文件的备份版本"
 
 #: templates/settings.php:3
-msgid "Enable Files Versioning"
-msgstr ""
+msgid "Files Versioning"
+msgstr "文件版本"
+
+#: templates/settings.php:4
+msgid "Enable"
+msgstr "启用"
diff --git a/l10n/zh_CN.GB2312/lib.po b/l10n/zh_CN.GB2312/lib.po
index 541a462fb8a9fbe1403af1feabfa25be8e1b2f66..4eac71c656e79dabb79d4dcbab03432080daf87c 100644
--- a/l10n/zh_CN.GB2312/lib.po
+++ b/l10n/zh_CN.GB2312/lib.po
@@ -3,123 +3,124 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
+# marguerite su <i@marguerite.su>, 2012.
 msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-01 02:01+0200\n"
-"PO-Revision-Date: 2012-09-01 00:02+0000\n"
-"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
+"PO-Revision-Date: 2012-09-17 12:19+0000\n"
+"Last-Translator: marguerite su <i@marguerite.su>\n"
 "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: zh_CN.GB2312\n"
-"Plural-Forms: nplurals=1; plural=0\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
 
-#: app.php:288
+#: app.php:285
 msgid "Help"
-msgstr ""
+msgstr "帮助"
 
-#: app.php:295
+#: app.php:292
 msgid "Personal"
-msgstr ""
+msgstr "私人"
 
-#: app.php:300
+#: app.php:297
 msgid "Settings"
-msgstr ""
+msgstr "设置"
 
-#: app.php:305
+#: app.php:302
 msgid "Users"
-msgstr ""
+msgstr "用户"
 
-#: app.php:312
+#: app.php:309
 msgid "Apps"
-msgstr ""
+msgstr "程序"
 
-#: app.php:314
+#: app.php:311
 msgid "Admin"
-msgstr ""
+msgstr "管理员"
 
 #: files.php:280
 msgid "ZIP download is turned off."
-msgstr ""
+msgstr "ZIP 下载已关闭"
 
 #: files.php:281
 msgid "Files need to be downloaded one by one."
-msgstr ""
+msgstr "需要逐个下载文件。"
 
 #: files.php:281 files.php:306
 msgid "Back to Files"
-msgstr ""
+msgstr "返回到文件"
 
 #: files.php:305
 msgid "Selected files too large to generate zip file."
-msgstr ""
+msgstr "选择的文件太大而不能生成 zip 文件。"
 
 #: json.php:28
 msgid "Application is not enabled"
-msgstr ""
+msgstr "应用未启用"
 
 #: json.php:39 json.php:63 json.php:75
 msgid "Authentication error"
-msgstr ""
+msgstr "验证错误"
 
 #: json.php:51
 msgid "Token expired. Please reload page."
-msgstr ""
+msgstr "会话过期。请刷新页面。"
 
-#: template.php:86
+#: template.php:87
 msgid "seconds ago"
-msgstr ""
+msgstr "秒前"
 
-#: template.php:87
+#: template.php:88
 msgid "1 minute ago"
-msgstr ""
+msgstr "1 分钟前"
 
-#: template.php:88
+#: template.php:89
 #, php-format
 msgid "%d minutes ago"
-msgstr ""
+msgstr "%d 分钟前"
 
-#: template.php:91
+#: template.php:92
 msgid "today"
-msgstr ""
+msgstr "今天"
 
-#: template.php:92
+#: template.php:93
 msgid "yesterday"
-msgstr ""
+msgstr "昨天"
 
-#: template.php:93
+#: template.php:94
 #, php-format
 msgid "%d days ago"
-msgstr ""
+msgstr "%d 天前"
 
-#: template.php:94
+#: template.php:95
 msgid "last month"
-msgstr ""
+msgstr "上个月"
 
-#: template.php:95
+#: template.php:96
 msgid "months ago"
-msgstr ""
+msgstr "月前"
 
-#: template.php:96
+#: template.php:97
 msgid "last year"
-msgstr ""
+msgstr "去年"
 
-#: template.php:97
+#: template.php:98
 msgid "years ago"
-msgstr ""
+msgstr "年前"
 
 #: updater.php:66
 #, php-format
 msgid "%s is available. Get <a href=\"%s\">more information</a>"
-msgstr ""
+msgstr "%s 不可用。获知 <a href=\"%s\">详情</a>"
 
 #: updater.php:68
 msgid "up to date"
-msgstr ""
+msgstr "最新"
 
 #: updater.php:71
 msgid "updates check is disabled"
-msgstr ""
+msgstr "更新检测已禁用"
diff --git a/l10n/zh_CN.GB2312/settings.po b/l10n/zh_CN.GB2312/settings.po
index 5e3311e021635f86afce51871f566936e7fa1089..d6d1b69b01e184396de431d5eae22cc095cf5fe3 100644
--- a/l10n/zh_CN.GB2312/settings.po
+++ b/l10n/zh_CN.GB2312/settings.po
@@ -4,13 +4,14 @@
 # 
 # Translators:
 #   <bluehattree@126.com>, 2012.
+# marguerite su <i@marguerite.su>, 2012.
 msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-05 02:02+0200\n"
-"PO-Revision-Date: 2012-09-05 00:02+0000\n"
-"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
+"PO-Revision-Date: 2012-09-17 15:24+0000\n"
+"Last-Translator: marguerite su <i@marguerite.su>\n"
 "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -29,11 +30,15 @@ msgstr "认证错误"
 
 #: ajax/creategroup.php:19
 msgid "Group already exists"
-msgstr ""
+msgstr "群组已存在"
 
 #: ajax/creategroup.php:28
 msgid "Unable to add group"
-msgstr ""
+msgstr "未能添加群组"
+
+#: ajax/enableapp.php:14
+msgid "Could not enable app. "
+msgstr "未能启用应用"
 
 #: ajax/lostpassword.php:14
 msgid "Email saved"
@@ -53,11 +58,11 @@ msgstr "非法请求"
 
 #: ajax/removegroup.php:16
 msgid "Unable to delete group"
-msgstr ""
+msgstr "未能删除群组"
 
 #: ajax/removeuser.php:22
 msgid "Unable to delete user"
-msgstr ""
+msgstr "未能删除用户"
 
 #: ajax/setlanguage.php:18
 msgid "Language changed"
@@ -66,12 +71,12 @@ msgstr "语言改变了"
 #: ajax/togglegroups.php:25
 #, php-format
 msgid "Unable to add user to group %s"
-msgstr ""
+msgstr "未能添加用户到群组 %s"
 
 #: ajax/togglegroups.php:31
 #, php-format
 msgid "Unable to remove user from group %s"
-msgstr ""
+msgstr "未能将用户从群组 %s 移除"
 
 #: js/apps.js:18
 msgid "Error"
@@ -104,69 +109,73 @@ msgid ""
 "strongly suggest that you configure your webserver in a way that the data "
 "directory is no longer accessible or you move the data directory outside the"
 " webserver document root."
-msgstr ""
+msgstr "您的数据文件夹和您的文件可能可以从互联网访问。ownCloud 提供的 .htaccess 文件未工作。我们强烈建议您配置您的网络服务器,让数据文件夹不能访问,或将数据文件夹移出网络服务器文档根目录。"
 
 #: templates/admin.php:31
 msgid "Cron"
 msgstr "定时"
 
-#: templates/admin.php:33
-msgid "execute one task with each page loaded"
-msgstr ""
+#: templates/admin.php:37
+msgid "Execute one task with each page loaded"
+msgstr "在每个页面载入时执行一项任务"
 
-#: templates/admin.php:35
-msgid "cron.php is registered at a webcron service"
-msgstr ""
+#: templates/admin.php:43
+msgid ""
+"cron.php is registered at a webcron service. Call the cron.php page in the "
+"owncloud root once a minute over http."
+msgstr "cron.php 已作为 webcron 服务注册。owncloud 根用户将通过 http 协议每分钟调用一次 cron.php。"
 
-#: templates/admin.php:37
-msgid "use systems cron service"
-msgstr ""
+#: templates/admin.php:49
+msgid ""
+"Use systems cron service. Call the cron.php file in the owncloud folder via "
+"a system cronjob once a minute."
+msgstr "使用系统 cron 服务。通过系统 cronjob 每分钟调用一次 owncloud 文件夹下的 cron.php"
 
-#: templates/admin.php:41
-msgid "Share API"
-msgstr ""
+#: templates/admin.php:56
+msgid "Sharing"
+msgstr "分享"
 
-#: templates/admin.php:46
+#: templates/admin.php:61
 msgid "Enable Share API"
-msgstr ""
+msgstr "启用分享 API"
 
-#: templates/admin.php:47
+#: templates/admin.php:62
 msgid "Allow apps to use the Share API"
-msgstr ""
+msgstr "允许应用使用分享 API"
 
-#: templates/admin.php:51
+#: templates/admin.php:67
 msgid "Allow links"
-msgstr ""
+msgstr "允许链接"
 
-#: templates/admin.php:52
+#: templates/admin.php:68
 msgid "Allow users to share items to the public with links"
-msgstr ""
+msgstr "允许用户使用链接与公众分享条目"
 
-#: templates/admin.php:56
+#: templates/admin.php:73
 msgid "Allow resharing"
-msgstr ""
+msgstr "允许重复分享"
 
-#: templates/admin.php:57
+#: templates/admin.php:74
 msgid "Allow users to share items shared with them again"
-msgstr ""
+msgstr "允许用户再次分享已经分享过的条目"
 
-#: templates/admin.php:60
+#: templates/admin.php:79
 msgid "Allow users to share with anyone"
-msgstr ""
+msgstr "允许用户与任何人分享"
 
-#: templates/admin.php:62
+#: templates/admin.php:81
 msgid "Allow users to only share with users in their groups"
-msgstr ""
+msgstr "只允许用户与群组内用户分享"
 
-#: templates/admin.php:69
+#: templates/admin.php:88
 msgid "Log"
 msgstr "日志"
 
-#: templates/admin.php:97
+#: templates/admin.php:116
 msgid "More"
 msgstr "更多"
 
-#: templates/admin.php:105
+#: templates/admin.php:124
 msgid ""
 "Developed by the <a href=\"http://ownCloud.org/contact\" "
 "target=\"_blank\">ownCloud community</a>, the <a "
@@ -174,7 +183,7 @@ msgid ""
 "licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" "
 "target=\"_blank\"><abbr title=\"Affero General Public "
 "License\">AGPL</abbr></a>."
-msgstr ""
+msgstr "由 <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud 社区</a>开发,<a href=\"https://github.com/owncloud\" target=\"_blank\">s源代码</a> 以 <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a> 许可协议发布。"
 
 #: templates/apps.php:10
 msgid "Add your App"
@@ -190,7 +199,7 @@ msgstr "在owncloud.com上查看应用程序"
 
 #: templates/apps.php:30
 msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>"
-msgstr ""
+msgstr "<span class=\"licence\"></span>授权协议 <span class=\"author\"></span>"
 
 #: templates/help.php:9
 msgid "Documentation"
@@ -306,7 +315,7 @@ msgstr "其他的"
 
 #: templates/users.php:80 templates/users.php:112
 msgid "Group Admin"
-msgstr ""
+msgstr "群组管理员"
 
 #: templates/users.php:82
 msgid "Quota"
diff --git a/l10n/zh_CN.GB2312/user_ldap.po b/l10n/zh_CN.GB2312/user_ldap.po
index 67a667a8eea123bc18a0c442d0c694f0b6ba2012..119c7188675eff73342a846e669cfce48a67962e 100644
--- a/l10n/zh_CN.GB2312/user_ldap.po
+++ b/l10n/zh_CN.GB2312/user_ldap.po
@@ -3,168 +3,169 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
+# marguerite su <i@marguerite.su>, 2012.
 msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-08-29 02:01+0200\n"
-"PO-Revision-Date: 2012-08-29 00:03+0000\n"
-"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
+"PO-Revision-Date: 2012-09-17 12:39+0000\n"
+"Last-Translator: marguerite su <i@marguerite.su>\n"
 "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: zh_CN.GB2312\n"
-"Plural-Forms: nplurals=1; plural=0\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
 
 #: templates/settings.php:8
 msgid "Host"
-msgstr ""
+msgstr "主机"
 
 #: templates/settings.php:8
 msgid ""
 "You can omit the protocol, except you require SSL. Then start with ldaps://"
-msgstr ""
+msgstr "您可以忽略协议,除非您需要 SSL。然后用 ldaps:// 开头"
 
 #: templates/settings.php:9
 msgid "Base DN"
-msgstr ""
+msgstr "基本判别名"
 
 #: templates/settings.php:9
 msgid "You can specify Base DN for users and groups in the Advanced tab"
-msgstr ""
+msgstr "您可以在高级选项卡中为用户和群组指定基本判别名"
 
 #: templates/settings.php:10
 msgid "User DN"
-msgstr ""
+msgstr "用户判别名"
 
 #: templates/settings.php:10
 msgid ""
 "The DN of the client user with which the bind shall be done, e.g. "
 "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password "
 "empty."
-msgstr ""
+msgstr "客户机用户的判别名,将用于绑定,例如 uid=agent, dc=example, dc=com。匿名访问请留空判别名和密码。"
 
 #: templates/settings.php:11
 msgid "Password"
-msgstr ""
+msgstr "密码"
 
 #: templates/settings.php:11
 msgid "For anonymous access, leave DN and Password empty."
-msgstr ""
+msgstr "匿名访问请留空判别名和密码。"
 
 #: templates/settings.php:12
 msgid "User Login Filter"
-msgstr ""
+msgstr "用户登录过滤器"
 
 #: templates/settings.php:12
 #, php-format
 msgid ""
 "Defines the filter to apply, when login is attempted. %%uid replaces the "
 "username in the login action."
-msgstr ""
+msgstr "定义尝试登录时要应用的过滤器。用 %%uid 替换登录操作中使用的用户名。"
 
 #: templates/settings.php:12
 #, php-format
 msgid "use %%uid placeholder, e.g. \"uid=%%uid\""
-msgstr ""
+msgstr "使用 %%uid 占位符,例如 \"uid=%%uid\""
 
 #: templates/settings.php:13
 msgid "User List Filter"
-msgstr ""
+msgstr "用户列表过滤器"
 
 #: templates/settings.php:13
 msgid "Defines the filter to apply, when retrieving users."
-msgstr ""
+msgstr "定义撷取用户时要应用的过滤器。"
 
 #: templates/settings.php:13
 msgid "without any placeholder, e.g. \"objectClass=person\"."
-msgstr ""
+msgstr "不能使用占位符,例如 \"objectClass=person\"。"
 
 #: templates/settings.php:14
 msgid "Group Filter"
-msgstr ""
+msgstr "群组过滤器"
 
 #: templates/settings.php:14
 msgid "Defines the filter to apply, when retrieving groups."
-msgstr ""
+msgstr "定义撷取群组时要应用的过滤器"
 
 #: templates/settings.php:14
 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"."
-msgstr ""
+msgstr "不能使用占位符,例如 \"objectClass=posixGroup\"。"
 
 #: templates/settings.php:17
 msgid "Port"
-msgstr ""
+msgstr "端口"
 
 #: templates/settings.php:18
 msgid "Base User Tree"
-msgstr ""
+msgstr "基本用户树"
 
 #: templates/settings.php:19
 msgid "Base Group Tree"
-msgstr ""
+msgstr "基本群组树"
 
 #: templates/settings.php:20
 msgid "Group-Member association"
-msgstr ""
+msgstr "群组-成员组合"
 
 #: templates/settings.php:21
 msgid "Use TLS"
-msgstr ""
+msgstr "使用 TLS"
 
 #: templates/settings.php:21
 msgid "Do not use it for SSL connections, it will fail."
-msgstr ""
+msgstr "不要使用它进行 SSL 连接,会失败的。"
 
 #: templates/settings.php:22
 msgid "Case insensitve LDAP server (Windows)"
-msgstr ""
+msgstr "大小写不敏感的 LDAP 服务器 (Windows)"
 
 #: templates/settings.php:23
 msgid "Turn off SSL certificate validation."
-msgstr ""
+msgstr "关闭 SSL 证书校验。"
 
 #: templates/settings.php:23
 msgid ""
 "If connection only works with this option, import the LDAP server's SSL "
 "certificate in your ownCloud server."
-msgstr ""
+msgstr "如果只有使用此选项才能连接,请导入 LDAP 服务器的 SSL 证书到您的 ownCloud 服务器。"
 
 #: templates/settings.php:23
 msgid "Not recommended, use for testing only."
-msgstr ""
+msgstr "不推荐,仅供测试"
 
 #: templates/settings.php:24
 msgid "User Display Name Field"
-msgstr ""
+msgstr "用户显示名称字段"
 
 #: templates/settings.php:24
 msgid "The LDAP attribute to use to generate the user`s ownCloud name."
-msgstr ""
+msgstr "用于生成用户的 ownCloud 名称的 LDAP 属性。"
 
 #: templates/settings.php:25
 msgid "Group Display Name Field"
-msgstr ""
+msgstr "群组显示名称字段"
 
 #: templates/settings.php:25
 msgid "The LDAP attribute to use to generate the groups`s ownCloud name."
-msgstr ""
+msgstr "用于生成群组的 ownCloud 名称的 LDAP 属性。"
 
 #: templates/settings.php:27
 msgid "in bytes"
-msgstr ""
+msgstr "以字节计"
 
 #: templates/settings.php:29
 msgid "in seconds. A change empties the cache."
-msgstr ""
+msgstr "以秒计。修改会清空缓存。"
 
 #: templates/settings.php:30
 msgid ""
 "Leave empty for user name (default). Otherwise, specify an LDAP/AD "
 "attribute."
-msgstr ""
+msgstr "用户名请留空 (默认)。否则,请指定一个 LDAP/AD 属性。"
 
 #: templates/settings.php:32
 msgid "Help"
-msgstr ""
+msgstr "帮助"
diff --git a/l10n/zh_CN/files.po b/l10n/zh_CN/files.po
index a7489a4246b379b66bec1dcc10f1b194e9c798ac..52e765ef101f4146a861bceaacc6174fd7bc3a25 100644
--- a/l10n/zh_CN/files.po
+++ b/l10n/zh_CN/files.po
@@ -10,8 +10,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-08 02:01+0200\n"
-"PO-Revision-Date: 2012-09-08 00:02+0000\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
+"PO-Revision-Date: 2012-09-18 00:01+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n"
 "MIME-Version: 1.0\n"
@@ -56,7 +56,7 @@ msgstr "文件"
 
 #: js/fileactions.js:108 templates/index.php:62
 msgid "Unshare"
-msgstr ""
+msgstr "取消分享"
 
 #: js/fileactions.js:110 templates/index.php:64
 msgid "Delete"
@@ -82,7 +82,7 @@ msgstr "取消"
 msgid "replaced"
 msgstr "已经替换"
 
-#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270
+#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269
 msgid "undo"
 msgstr "撤销"
 
@@ -90,11 +90,11 @@ msgstr "撤销"
 msgid "with"
 msgstr "随着"
 
-#: js/filelist.js:268
+#: js/filelist.js:267
 msgid "unshared"
-msgstr ""
+msgstr "已取消分享"
 
-#: js/filelist.js:270
+#: js/filelist.js:269
 msgid "deleted"
 msgstr "已经删除"
 
@@ -127,27 +127,35 @@ msgstr "文件正在上传中。现在离开此页会导致上传动作被取消
 msgid "Invalid name, '/' is not allowed."
 msgstr "非法的名称,不允许使用‘/’。"
 
-#: js/files.js:746 templates/index.php:56
+#: js/files.js:666
+msgid "files scanned"
+msgstr ""
+
+#: js/files.js:674
+msgid "error while scanning"
+msgstr ""
+
+#: js/files.js:748 templates/index.php:56
 msgid "Size"
 msgstr "大小"
 
-#: js/files.js:747 templates/index.php:58
+#: js/files.js:749 templates/index.php:58
 msgid "Modified"
 msgstr "修改日期"
 
-#: js/files.js:774
+#: js/files.js:776
 msgid "folder"
 msgstr "文件夹"
 
-#: js/files.js:776
+#: js/files.js:778
 msgid "folders"
 msgstr "文件夹"
 
-#: js/files.js:784
+#: js/files.js:786
 msgid "file"
 msgstr "文件"
 
-#: js/files.js:786
+#: js/files.js:788
 msgid "files"
 msgstr "文件"
 
diff --git a/l10n/zh_CN/files_versions.po b/l10n/zh_CN/files_versions.po
index 8fc46b74985c817f76eaa8210ea6e6a16f947c85..157efc0c27b35810e9053c495d7ef97501f4c900 100644
--- a/l10n/zh_CN/files_versions.po
+++ b/l10n/zh_CN/files_versions.po
@@ -8,8 +8,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-07 02:04+0200\n"
-"PO-Revision-Date: 2012-09-06 13:03+0000\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
+"PO-Revision-Date: 2012-09-17 16:01+0000\n"
 "Last-Translator: hanfeng <appweb.cn@gmail.com>\n"
 "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n"
 "MIME-Version: 1.0\n"
@@ -31,5 +31,9 @@ msgid "This will delete all existing backup versions of your files"
 msgstr "将会删除您的文件的所有备份版本"
 
 #: templates/settings.php:3
-msgid "Enable Files Versioning"
-msgstr "开启文件版本"
+msgid "Files Versioning"
+msgstr "文件版本"
+
+#: templates/settings.php:4
+msgid "Enable"
+msgstr "开启"
diff --git a/l10n/zh_CN/settings.po b/l10n/zh_CN/settings.po
index c72ea361e020343908ff8727bef0221867c1c0f0..84ab4991d17891a3b8b7ffc8f50a447d4976370c 100644
--- a/l10n/zh_CN/settings.po
+++ b/l10n/zh_CN/settings.po
@@ -11,8 +11,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-07 02:04+0200\n"
-"PO-Revision-Date: 2012-09-06 08:01+0000\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
+"PO-Revision-Date: 2012-09-17 15:59+0000\n"
 "Last-Translator: hanfeng <appweb.cn@gmail.com>\n"
 "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n"
 "MIME-Version: 1.0\n"
@@ -38,6 +38,10 @@ msgstr "已存在组"
 msgid "Unable to add group"
 msgstr "不能添加组"
 
+#: ajax/enableapp.php:14
+msgid "Could not enable app. "
+msgstr "无法开启App"
+
 #: ajax/lostpassword.php:14
 msgid "Email saved"
 msgstr "电子邮件已保存"
@@ -113,63 +117,67 @@ msgstr "您的数据文件夹和文件可由互联网访问。OwnCloud提供的.
 msgid "Cron"
 msgstr "计划任务"
 
-#: templates/admin.php:33
-msgid "execute one task with each page loaded"
-msgstr "为每个装入的页面执行任务"
+#: templates/admin.php:37
+msgid "Execute one task with each page loaded"
+msgstr "每次页面加载完成后执行任务"
 
-#: templates/admin.php:35
-msgid "cron.php is registered at a webcron service"
-msgstr "crop.php 已"
+#: templates/admin.php:43
+msgid ""
+"cron.php is registered at a webcron service. Call the cron.php page in the "
+"owncloud root once a minute over http."
+msgstr "cron.php已被注册到网络定时任务服务。通过http每分钟调用owncloud根目录的cron.php网页。"
 
-#: templates/admin.php:37
-msgid "use systems cron service"
-msgstr "实现系统 cron 服务"
+#: templates/admin.php:49
+msgid ""
+"Use systems cron service. Call the cron.php file in the owncloud folder via "
+"a system cronjob once a minute."
+msgstr "使用系统定时任务服务。每分钟通过系统定时任务调用owncloud文件夹中的cron.php文件"
 
-#: templates/admin.php:41
-msgid "Share API"
-msgstr "共享API"
+#: templates/admin.php:56
+msgid "Sharing"
+msgstr "分享"
 
-#: templates/admin.php:46
+#: templates/admin.php:61
 msgid "Enable Share API"
 msgstr "开启共享API"
 
-#: templates/admin.php:47
+#: templates/admin.php:62
 msgid "Allow apps to use the Share API"
 msgstr "允许 应用 使用共享API"
 
-#: templates/admin.php:51
+#: templates/admin.php:67
 msgid "Allow links"
 msgstr "允许连接"
 
-#: templates/admin.php:52
+#: templates/admin.php:68
 msgid "Allow users to share items to the public with links"
 msgstr "允许用户使用连接向公众共享"
 
-#: templates/admin.php:56
+#: templates/admin.php:73
 msgid "Allow resharing"
 msgstr "允许再次共享"
 
-#: templates/admin.php:57
+#: templates/admin.php:74
 msgid "Allow users to share items shared with them again"
 msgstr "允许用户将共享给他们的项目再次共享"
 
-#: templates/admin.php:60
+#: templates/admin.php:79
 msgid "Allow users to share with anyone"
 msgstr "允许用户向任何人共享"
 
-#: templates/admin.php:62
+#: templates/admin.php:81
 msgid "Allow users to only share with users in their groups"
 msgstr "允许用户只向同组用户共享"
 
-#: templates/admin.php:69
+#: templates/admin.php:88
 msgid "Log"
 msgstr "日志"
 
-#: templates/admin.php:97
+#: templates/admin.php:116
 msgid "More"
 msgstr "更多"
 
-#: templates/admin.php:105
+#: templates/admin.php:124
 msgid ""
 "Developed by the <a href=\"http://ownCloud.org/contact\" "
 "target=\"_blank\">ownCloud community</a>, the <a "
diff --git a/l10n/zh_TW/files.po b/l10n/zh_TW/files.po
index b4564768b785f1a0f4ffa25dae4b6449a3721788..de69e6ab161f5a6fb23e9fae4e85b07c3854dff3 100644
--- a/l10n/zh_TW/files.po
+++ b/l10n/zh_TW/files.po
@@ -10,8 +10,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-08 02:01+0200\n"
-"PO-Revision-Date: 2012-09-08 00:02+0000\n"
+"POT-Creation-Date: 2012-09-18 02:01+0200\n"
+"PO-Revision-Date: 2012-09-18 00:01+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n"
 "MIME-Version: 1.0\n"
@@ -82,7 +82,7 @@ msgstr "取消"
 msgid "replaced"
 msgstr ""
 
-#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270
+#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269
 msgid "undo"
 msgstr ""
 
@@ -90,11 +90,11 @@ msgstr ""
 msgid "with"
 msgstr ""
 
-#: js/filelist.js:268
+#: js/filelist.js:267
 msgid "unshared"
 msgstr ""
 
-#: js/filelist.js:270
+#: js/filelist.js:269
 msgid "deleted"
 msgstr ""
 
@@ -127,27 +127,35 @@ msgstr "檔案上傳中. 離開此頁面將會取消上傳."
 msgid "Invalid name, '/' is not allowed."
 msgstr "無效的名稱, '/'是不被允許的"
 
-#: js/files.js:746 templates/index.php:56
+#: js/files.js:666
+msgid "files scanned"
+msgstr ""
+
+#: js/files.js:674
+msgid "error while scanning"
+msgstr ""
+
+#: js/files.js:748 templates/index.php:56
 msgid "Size"
 msgstr "大小"
 
-#: js/files.js:747 templates/index.php:58
+#: js/files.js:749 templates/index.php:58
 msgid "Modified"
 msgstr "修改"
 
-#: js/files.js:774
+#: js/files.js:776
 msgid "folder"
 msgstr ""
 
-#: js/files.js:776
+#: js/files.js:778
 msgid "folders"
 msgstr ""
 
-#: js/files.js:784
+#: js/files.js:786
 msgid "file"
 msgstr ""
 
-#: js/files.js:786
+#: js/files.js:788
 msgid "files"
 msgstr ""
 
diff --git a/l10n/zh_TW/files_versions.po b/l10n/zh_TW/files_versions.po
index 731c9d14f5fe324965dbb8f91e7d8403d8b65f64..eedc03d79ecf39fa09474907c55f5c07e49044af 100644
--- a/l10n/zh_TW/files_versions.po
+++ b/l10n/zh_TW/files_versions.po
@@ -7,15 +7,15 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-01 13:35+0200\n"
-"PO-Revision-Date: 2012-09-01 11:35+0000\n"
+"POT-Creation-Date: 2012-09-17 02:02+0200\n"
+"PO-Revision-Date: 2012-09-17 00:04+0000\n"
 "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: zh_TW\n"
-"Plural-Forms: nplurals=1; plural=0\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
 
 #: js/settings-personal.js:31 templates/settings-personal.php:10
 msgid "Expire all versions"
@@ -30,5 +30,9 @@ msgid "This will delete all existing backup versions of your files"
 msgstr ""
 
 #: templates/settings.php:3
-msgid "Enable Files Versioning"
+msgid "Files Versioning"
+msgstr ""
+
+#: templates/settings.php:4
+msgid "Enable"
 msgstr ""
diff --git a/l10n/zh_TW/settings.po b/l10n/zh_TW/settings.po
index 64bf08a813d26162132bf8ce7eb4560b341edc73..15d4d5352944c5bee4c1dce844af37c0b3753c0f 100644
--- a/l10n/zh_TW/settings.po
+++ b/l10n/zh_TW/settings.po
@@ -11,9 +11,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ownCloud\n"
 "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-12 02:01+0200\n"
-"PO-Revision-Date: 2012-09-11 15:49+0000\n"
-"Last-Translator: Jeff5555 <wu0809@msn.com>\n"
+"POT-Creation-Date: 2012-09-17 02:03+0200\n"
+"PO-Revision-Date: 2012-09-17 00:03+0000\n"
+"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
 "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -38,6 +38,10 @@ msgstr "群組已存在"
 msgid "Unable to add group"
 msgstr "群組增加失敗"
 
+#: ajax/enableapp.php:13
+msgid "Could not enable app. "
+msgstr ""
+
 #: ajax/lostpassword.php:14
 msgid "Email saved"
 msgstr "Email已儲存"
@@ -113,63 +117,67 @@ msgstr ""
 msgid "Cron"
 msgstr "定期執行"
 
-#: templates/admin.php:33
-msgid "execute one task with each page loaded"
-msgstr "當頁面載入時,執行"
+#: templates/admin.php:37
+msgid "Execute one task with each page loaded"
+msgstr ""
 
-#: templates/admin.php:35
-msgid "cron.php is registered at a webcron service"
+#: templates/admin.php:43
+msgid ""
+"cron.php is registered at a webcron service. Call the cron.php page in the "
+"owncloud root once a minute over http."
 msgstr ""
 
-#: templates/admin.php:37
-msgid "use systems cron service"
-msgstr "使用系統定期執行服務"
+#: templates/admin.php:49
+msgid ""
+"Use systems cron service. Call the cron.php file in the owncloud folder via "
+"a system cronjob once a minute."
+msgstr ""
 
-#: templates/admin.php:41
-msgid "Share API"
+#: templates/admin.php:56
+msgid "Sharing"
 msgstr ""
 
-#: templates/admin.php:46
+#: templates/admin.php:61
 msgid "Enable Share API"
 msgstr ""
 
-#: templates/admin.php:47
+#: templates/admin.php:62
 msgid "Allow apps to use the Share API"
 msgstr ""
 
-#: templates/admin.php:51
+#: templates/admin.php:67
 msgid "Allow links"
 msgstr "允許連結"
 
-#: templates/admin.php:52
+#: templates/admin.php:68
 msgid "Allow users to share items to the public with links"
 msgstr "允許使用者以結連公開分享檔案"
 
-#: templates/admin.php:56
+#: templates/admin.php:73
 msgid "Allow resharing"
 msgstr "允許轉貼分享"
 
-#: templates/admin.php:57
+#: templates/admin.php:74
 msgid "Allow users to share items shared with them again"
 msgstr "允許使用者轉貼共享檔案"
 
-#: templates/admin.php:60
+#: templates/admin.php:79
 msgid "Allow users to share with anyone"
 msgstr "允許使用者公開分享"
 
-#: templates/admin.php:62
+#: templates/admin.php:81
 msgid "Allow users to only share with users in their groups"
 msgstr "僅允許使用者在群組內分享"
 
-#: templates/admin.php:69
+#: templates/admin.php:88
 msgid "Log"
 msgstr "紀錄"
 
-#: templates/admin.php:97
+#: templates/admin.php:116
 msgid "More"
 msgstr "更多"
 
-#: templates/admin.php:105
+#: templates/admin.php:124
 msgid ""
 "Developed by the <a href=\"http://ownCloud.org/contact\" "
 "target=\"_blank\">ownCloud community</a>, the <a "
diff --git a/lib/connector/sabre/directory.php b/lib/connector/sabre/directory.php
index 39606577f6de82bee0836027ce72651af9c18dc7..b5049d800c43d6e10fe5e41b3ef042c80fbb3e35 100644
--- a/lib/connector/sabre/directory.php
+++ b/lib/connector/sabre/directory.php
@@ -50,6 +50,9 @@ class OC_Connector_Sabre_Directory extends OC_Connector_Sabre_Node implements Sa
 	public function createFile($name, $data = null) {
 		if (isset($_SERVER['HTTP_OC_CHUNKED'])) {
 			$info = OC_FileChunking::decodeName($name);
+			if (empty($info)) {
+				throw new Sabre_DAV_Exception_NotImplemented();
+			}
 			$chunk_handler = new OC_FileChunking($info);
 			$chunk_handler->store($info['index'], $data);
 			if ($chunk_handler->isComplete()) {
diff --git a/lib/connector/sabre/node.php b/lib/connector/sabre/node.php
index 2916575e2d581d1924d816b31cdd454dc9215f8e..ecbbef81292b3a1b6da2238aff276e9594c30c81 100644
--- a/lib/connector/sabre/node.php
+++ b/lib/connector/sabre/node.php
@@ -235,7 +235,7 @@ abstract class OC_Connector_Sabre_Node implements Sabre_DAV_INode, Sabre_DAV_IPr
 	static public function removeETagPropertyForPath($path) {
 		// remove tags from this and parent paths
 		$paths = array();
-		while ($path != '/' && $path != '') {
+		while ($path != '/' && $path != '.' && $path != '') {
 			$paths[] = $path;
 			$path = dirname($path);
 		}
diff --git a/lib/db.php b/lib/db.php
index 4317f7984843bdd782dca3807f1b6390456fb03c..9c10512350fcc7bd90cc6dfc1756d09be2154bb3 100644
--- a/lib/db.php
+++ b/lib/db.php
@@ -187,7 +187,7 @@ class OC_DB {
 
 			// Prepare options array
 			$options = array(
-			  'portability' => MDB2_PORTABILITY_ALL & (!MDB2_PORTABILITY_FIX_CASE),
+			  'portability' => MDB2_PORTABILITY_ALL - MDB2_PORTABILITY_FIX_CASE,
 			  'log_line_break' => '<br>',
 			  'idxname_format' => '%s',
 			  'debug' => true,
@@ -232,6 +232,7 @@ class OC_DB {
 						$dsn['database'] = $name;
 					} else { // use dbname for hostspec
 						$dsn['hostspec'] = $name;
+						$dsn['database'] = $user;
 					}
 					break;
 			}
@@ -457,7 +458,8 @@ class OC_DB {
 		$previousSchema = self::$schema->getDefinitionFromDatabase();
 		if (PEAR::isError($previousSchema)) {
 			$error = $previousSchema->getMessage();
-			OC_Log::write('core', 'Failed to get existing database structure for upgrading ('.$error.')', OC_Log::FATAL);
+			$detail = $previousSchema->getDebugInfo();
+			OC_Log::write('core', 'Failed to get existing database structure for upgrading ('.$error.', '.$detail.')', OC_Log::FATAL);
 			return false;
 		}
 
diff --git a/lib/filecache/cached.php b/lib/filecache/cached.php
index 4e8ff23793ecd160ad71c82376a2cbbfbb96a047..9b1eb4f7803b3467b6798f5badfcd8cde02cfea2 100644
--- a/lib/filecache/cached.php
+++ b/lib/filecache/cached.php
@@ -18,8 +18,19 @@ class OC_FileCache_Cached{
 			$root=OC_Filesystem::getRoot();
 		}
 		$path=$root.$path;
-		$query=OC_DB::prepare('SELECT `path`,`ctime`,`mtime`,`mimetype`,`size`,`encrypted`,`versioned`,`writable` FROM `*PREFIX*fscache` WHERE `path_hash`=?');
-		$result=$query->execute(array(md5($path)))->fetchRow();
+		$stmt=OC_DB::prepare('SELECT `path`,`ctime`,`mtime`,`mimetype`,`size`,`encrypted`,`versioned`,`writable` FROM `*PREFIX*fscache` WHERE `path_hash`=?');
+		if ( ! OC_DB::isError($stmt) ) {
+			$result=$stmt->execute(array(md5($path)));
+			if ( ! OC_DB::isError($result) ) {
+				$result = $result->fetchRow();
+			} else {
+				OC:Log::write('OC_FileCache_Cached', 'could not execute get: '. OC_DB::getErrorMessage($result), OC_Log::ERROR);
+				$result = false;
+			}
+		} else {
+			OC_Log::write('OC_FileCache_Cached', 'could not prepare get: '. OC_DB::getErrorMessage($stmt), OC_Log::ERROR);
+			$result = false;
+		}
 		if(is_array($result)) {
 			if(isset(self::$savedData[$path])) {
 				$result=array_merge($result, self::$savedData[$path]);
diff --git a/lib/fileproxy/quota.php b/lib/fileproxy/quota.php
index adbff3d301a441e3fce4808b1f2c7315dc98d7e3..5a0dbdb6fe2312f8e9edc6226bd1166900aef1d4 100644
--- a/lib/fileproxy/quota.php
+++ b/lib/fileproxy/quota.php
@@ -26,6 +26,7 @@
  */
 
 class OC_FileProxy_Quota extends OC_FileProxy{
+	static $rootView;
 	private $userQuota=-1;
 
 	/**
@@ -86,7 +87,10 @@ class OC_FileProxy_Quota extends OC_FileProxy{
 	}
 
 	public function preCopy($path1,$path2) {
-		return (OC_Filesystem::filesize($path1)<$this->getFreeSpace() or $this->getFreeSpace()==0);
+		if(!self::$rootView){
+			self::$rootView = new OC_FilesystemView('');
+		}
+		return (self::$rootView->filesize($path1)<$this->getFreeSpace() or $this->getFreeSpace()==0);
 	}
 
 	public function preFromTmpFile($tmpfile,$path) {
@@ -96,4 +100,4 @@ class OC_FileProxy_Quota extends OC_FileProxy{
 	public function preFromUploadedFile($tmpfile,$path) {
 		return (filesize($tmpfile)<$this->getFreeSpace() or $this->getFreeSpace()==0);
 	}
-}
\ No newline at end of file
+}
diff --git a/lib/filesystem.php b/lib/filesystem.php
index 92eb4fa4778c9e3d81c66df7863ed4742afb9a18..ce4d3a0cf489e9007ee99ef9c572c03920e8b812 100644
--- a/lib/filesystem.php
+++ b/lib/filesystem.php
@@ -527,6 +527,7 @@ class OC_Filesystem{
 		} else {
 			$path=$params['oldpath'];
 		}
+		$path = self::normalizePath($path);
 		OC_Connector_Sabre_Node::removeETagPropertyForPath($path);
 	}
 
diff --git a/lib/filesystemview.php b/lib/filesystemview.php
index 3a17af510cf5c2ea212599cd283cdd4f18604c3f..fcf419e864dde6ab312945432385763fd32ba4dc 100644
--- a/lib/filesystemview.php
+++ b/lib/filesystemview.php
@@ -263,24 +263,26 @@ class OC_FilesystemView {
 				$path = $this->getRelativePath($absolutePath);
 				$exists = $this->file_exists($path);
 				$run = true;
-				if(!$exists) {
+				if( $this->fakeRoot==OC_Filesystem::getRoot() ){
+					if(!$exists) {
+						OC_Hook::emit(
+							OC_Filesystem::CLASSNAME,
+							OC_Filesystem::signal_create,
+							array(
+								OC_Filesystem::signal_param_path => $path,
+								OC_Filesystem::signal_param_run => &$run
+							)
+						);
+					}
 					OC_Hook::emit(
 						OC_Filesystem::CLASSNAME,
-						OC_Filesystem::signal_create,
+						OC_Filesystem::signal_write,
 						array(
 							OC_Filesystem::signal_param_path => $path,
 							OC_Filesystem::signal_param_run => &$run
 						)
 					);
 				}
-				OC_Hook::emit(
-					OC_Filesystem::CLASSNAME,
-					OC_Filesystem::signal_write,
-					array(
-						OC_Filesystem::signal_param_path => $path,
-						OC_Filesystem::signal_param_run => &$run
-					)
-				);
 				if(!$run) {
 					return false;
 				}
@@ -289,18 +291,20 @@ class OC_FilesystemView {
 					$count=OC_Helper::streamCopy($data, $target);
 					fclose($target);
 					fclose($data);
-					if(!$exists) {
+					if( $this->fakeRoot==OC_Filesystem::getRoot() ){
+						if(!$exists) {
+							OC_Hook::emit(
+								OC_Filesystem::CLASSNAME,
+								OC_Filesystem::signal_post_create,
+								array( OC_Filesystem::signal_param_path => $path)
+							);
+						}
 						OC_Hook::emit(
 							OC_Filesystem::CLASSNAME,
-							OC_Filesystem::signal_post_create,
+							OC_Filesystem::signal_post_write,
 							array( OC_Filesystem::signal_param_path => $path)
 						);
-					}/*
-					OC_Hook::emit(
-						OC_Filesystem::CLASSNAME,
-						OC_Filesystem::signal_post_write,
-						array( OC_Filesystem::signal_param_path => $path)
-					);*/
+					}
 					OC_FileProxy::runPostProxies('file_put_contents', $absolutePath, $count);
 					return $count > 0;
 				}else{
@@ -330,14 +334,16 @@ class OC_FilesystemView {
 				return false;
 			}
 			$run=true;
-			OC_Hook::emit(
-				OC_Filesystem::CLASSNAME, OC_Filesystem::signal_rename,
-					array(
-						OC_Filesystem::signal_param_oldpath => $path1,
-						OC_Filesystem::signal_param_newpath => $path2,
-						OC_Filesystem::signal_param_run => &$run
-					)
-			);
+			if( $this->fakeRoot==OC_Filesystem::getRoot() ){
+				OC_Hook::emit(
+					OC_Filesystem::CLASSNAME, OC_Filesystem::signal_rename,
+						array(
+							OC_Filesystem::signal_param_oldpath => $path1,
+							OC_Filesystem::signal_param_newpath => $path2,
+							OC_Filesystem::signal_param_run => &$run
+						)
+				);
+			}
 			if($run) {
 				$mp1 = $this->getMountPoint($path1.$postFix1);
 				$mp2 = $this->getMountPoint($path2.$postFix2);
@@ -353,14 +359,16 @@ class OC_FilesystemView {
 					$storage1->unlink($this->getInternalPath($path1.$postFix1));
 					$result = $count>0;
 				}
-				OC_Hook::emit(
-					OC_Filesystem::CLASSNAME,
-					OC_Filesystem::signal_post_rename,
-					array(
-						OC_Filesystem::signal_param_oldpath => $path1,
-						OC_Filesystem::signal_param_newpath => $path2
-					)
-				);
+				if( $this->fakeRoot==OC_Filesystem::getRoot() ){
+					OC_Hook::emit(
+						OC_Filesystem::CLASSNAME,
+						OC_Filesystem::signal_post_rename,
+						array(
+							OC_Filesystem::signal_param_oldpath => $path1,
+							OC_Filesystem::signal_param_newpath => $path2
+						)
+					);
+				}
 				return $result;
 			}
 		}
@@ -378,35 +386,37 @@ class OC_FilesystemView {
 				return false;
 			}
 			$run=true;
-			OC_Hook::emit(
-				OC_Filesystem::CLASSNAME,
-				OC_Filesystem::signal_copy,
-				array(
-					OC_Filesystem::signal_param_oldpath => $path1,
-					OC_Filesystem::signal_param_newpath=>$path2,
-					OC_Filesystem::signal_param_run => &$run
-				)
-			);
-			$exists=$this->file_exists($path2);
-			if($run and !$exists) {
+			if( $this->fakeRoot==OC_Filesystem::getRoot() ){
 				OC_Hook::emit(
 					OC_Filesystem::CLASSNAME,
-					OC_Filesystem::signal_create,
+					OC_Filesystem::signal_copy,
 					array(
-						OC_Filesystem::signal_param_path => $path2,
-						OC_Filesystem::signal_param_run => &$run
-					)
-				);
-			}
-			if($run) {
-				OC_Hook::emit(
-					OC_Filesystem::CLASSNAME,
-					OC_Filesystem::signal_write,
-					array(
-						OC_Filesystem::signal_param_path => $path2,
+						OC_Filesystem::signal_param_oldpath => $path1,
+						OC_Filesystem::signal_param_newpath=>$path2,
 						OC_Filesystem::signal_param_run => &$run
 					)
 				);
+				$exists=$this->file_exists($path2);
+				if($run and !$exists) {
+					OC_Hook::emit(
+						OC_Filesystem::CLASSNAME,
+						OC_Filesystem::signal_create,
+						array(
+							OC_Filesystem::signal_param_path => $path2,
+							OC_Filesystem::signal_param_run => &$run
+						)
+					);
+				}
+				if($run) {
+					OC_Hook::emit(
+						OC_Filesystem::CLASSNAME,
+						OC_Filesystem::signal_write,
+						array(
+							OC_Filesystem::signal_param_path => $path2,
+							OC_Filesystem::signal_param_run => &$run
+						)
+					);
+				}
 			}
 			if($run) {
 				$mp1=$this->getMountPoint($path1.$postFix1);
@@ -420,26 +430,28 @@ class OC_FilesystemView {
 					$target = $this->fopen($path2.$postFix2, 'w');
 					$result = OC_Helper::streamCopy($source, $target);
 				}
-				OC_Hook::emit(
-					OC_Filesystem::CLASSNAME,
-					OC_Filesystem::signal_post_copy,
-					array(
-						OC_Filesystem::signal_param_oldpath => $path1,
-						OC_Filesystem::signal_param_newpath=>$path2
-					)
-				);
-				if(!$exists) {
+				if( $this->fakeRoot==OC_Filesystem::getRoot() ){
 					OC_Hook::emit(
 						OC_Filesystem::CLASSNAME,
-						OC_Filesystem::signal_post_create,
-						array(OC_Filesystem::signal_param_path => $path2)
+						OC_Filesystem::signal_post_copy,
+						array(
+							OC_Filesystem::signal_param_oldpath => $path1,
+							OC_Filesystem::signal_param_newpath=>$path2
+						)
+					);
+					if(!$exists) {
+						OC_Hook::emit(
+							OC_Filesystem::CLASSNAME,
+							OC_Filesystem::signal_post_create,
+							array(OC_Filesystem::signal_param_path => $path2)
+						);
+					}
+					OC_Hook::emit(
+						OC_Filesystem::CLASSNAME,
+						OC_Filesystem::signal_post_write,
+						array( OC_Filesystem::signal_param_path => $path2)
 					);
 				}
-				OC_Hook::emit(
-					OC_Filesystem::CLASSNAME,
-					OC_Filesystem::signal_post_write,
-					array( OC_Filesystem::signal_param_path => $path2)
-				);
 				return $result;
 			}
 		}
diff --git a/lib/helper.php b/lib/helper.php
index 70b2f78862b8de654a7fe9ac4bc23f557832d751..dda5fcc5f0c6e1211fd3b181a2ff176c1f93725b 100644
--- a/lib/helper.php
+++ b/lib/helper.php
@@ -62,8 +62,11 @@ class OC_Helper {
 			}
 		}
 
-		foreach($args as $k => $v) {
-			$urlLinkTo .= '&'.$k.'='.$v;
+		if (!empty($args)) {
+			$urlLinkTo .= '?';
+			foreach($args as $k => $v) {
+				$urlLinkTo .= '&'.$k.'='.$v;
+			}
 		}
 
 		return $urlLinkTo;
diff --git a/lib/l10n/da.php b/lib/l10n/da.php
index 7a9ee26b477d1e88cdebc14566e9f6f6a32b4c71..5c68174fa07e6c1449b50417bea7eab1fa81ee9d 100644
--- a/lib/l10n/da.php
+++ b/lib/l10n/da.php
@@ -21,5 +21,7 @@
 "last month" => "Sidste måned",
 "months ago" => "måneder siden",
 "last year" => "Sidste år",
-"years ago" => "år siden"
+"years ago" => "år siden",
+"%s is available. Get <a href=\"%s\">more information</a>" => "%s er tilgængelig. Få <a href=\"%s\">mere information</a>",
+"up to date" => "opdateret"
 );
diff --git a/lib/l10n/de.php b/lib/l10n/de.php
index 4a567003de2ac8902695bca782e1505d7a4621f3..aea631aba2847f87339ffc1ac42ca5e6c263b528 100644
--- a/lib/l10n/de.php
+++ b/lib/l10n/de.php
@@ -14,10 +14,10 @@
 "Token expired. Please reload page." => "Token abgelaufen. Bitte laden Sie die Seite neu.",
 "seconds ago" => "Vor wenigen Sekunden",
 "1 minute ago" => "Vor einer Minute",
-"%d minutes ago" => "Vor %d Minuten",
+"%d minutes ago" => "Vor %d Minute(n)",
 "today" => "Heute",
 "yesterday" => "Gestern",
-"%d days ago" => "Vor %d Tagen",
+"%d days ago" => "Vor %d Tag(en)",
 "last month" => "Letzten Monat",
 "months ago" => "Vor Monaten",
 "last year" => "Letztes Jahr",
diff --git a/lib/l10n/sl.php b/lib/l10n/sl.php
index 273773f2f7b79626674939523c057ab05bb9a072..eac839e78f32fc49e197c1f2394f02f970d8351b 100644
--- a/lib/l10n/sl.php
+++ b/lib/l10n/sl.php
@@ -12,16 +12,16 @@
 "Application is not enabled" => "Aplikacija ni omogočena",
 "Authentication error" => "Napaka overitve",
 "Token expired. Please reload page." => "Žeton je potekel. Prosimo, če spletno stran znova naložite.",
-"seconds ago" => "sekund nazaj",
+"seconds ago" => "pred nekaj sekundami",
 "1 minute ago" => "pred minuto",
 "%d minutes ago" => "pred %d minutami",
 "today" => "danes",
 "yesterday" => "včeraj",
 "%d days ago" => "pred %d dnevi",
 "last month" => "prejšnji mesec",
-"months ago" => "mesecev nazaj",
+"months ago" => "pred nekaj meseci",
 "last year" => "lani",
-"years ago" => "let nazaj",
+"years ago" => "pred nekaj leti",
 "%s is available. Get <a href=\"%s\">more information</a>" => "%s je na voljo. <a href=\"%s\">Več informacij.</a>",
 "up to date" => "ažuren",
 "updates check is disabled" => "preverjanje za posodobitve je onemogočeno"
diff --git a/lib/l10n/zh_CN.GB2312.php b/lib/l10n/zh_CN.GB2312.php
new file mode 100644
index 0000000000000000000000000000000000000000..4b0a5e9f4d2a59597a728f1ab3a4ae31e3f1303b
--- /dev/null
+++ b/lib/l10n/zh_CN.GB2312.php
@@ -0,0 +1,28 @@
+<?php $TRANSLATIONS = array(
+"Help" => "帮助",
+"Personal" => "私人",
+"Settings" => "设置",
+"Users" => "用户",
+"Apps" => "程序",
+"Admin" => "管理员",
+"ZIP download is turned off." => "ZIP 下载已关闭",
+"Files need to be downloaded one by one." => "需要逐个下载文件。",
+"Back to Files" => "返回到文件",
+"Selected files too large to generate zip file." => "选择的文件太大而不能生成 zip 文件。",
+"Application is not enabled" => "应用未启用",
+"Authentication error" => "验证错误",
+"Token expired. Please reload page." => "会话过期。请刷新页面。",
+"seconds ago" => "秒前",
+"1 minute ago" => "1 分钟前",
+"%d minutes ago" => "%d 分钟前",
+"today" => "今天",
+"yesterday" => "昨天",
+"%d days ago" => "%d 天前",
+"last month" => "上个月",
+"months ago" => "月前",
+"last year" => "去年",
+"years ago" => "年前",
+"%s is available. Get <a href=\"%s\">more information</a>" => "%s 不可用。获知 <a href=\"%s\">详情</a>",
+"up to date" => "最新",
+"updates check is disabled" => "更新检测已禁用"
+);
diff --git a/lib/util.php b/lib/util.php
index c2edc660e8e364e1b691a21029ef803464461811..5e39fd1f91405667b1857c4ea0067fa2efef4df4 100755
--- a/lib/util.php
+++ b/lib/util.php
@@ -89,7 +89,7 @@ class OC_Util {
 	 * @return string
 	 */
 	public static function getVersionString() {
-		return '4.5 beta 3';
+		return '4.5 beta 3a';
 	}
 
 	/**
@@ -211,13 +211,13 @@ class OC_Util {
 		$permissionsHint="Permissions can usually be fixed by giving the webserver write access to the ownCloud directory";
 
 		// Check if config folder is writable.
-		if(!is_writable(OC::$SERVERROOT."/config/")) {
+		if(!is_writable(OC::$SERVERROOT."/config/") or !is_readable(OC::$SERVERROOT."/config/")) {
 			$errors[]=array('error'=>"Can't write into config directory 'config'",'hint'=>"You can usually fix this by giving the webserver user write access to the config directory in owncloud");
 		}
 
 		// Check if there is a writable install folder.
 		if(OC_Config::getValue('appstoreenabled', true)) {
-			if( OC_App::getInstallPath() === null  || !is_writable(OC_App::getInstallPath())) {
+			if( OC_App::getInstallPath() === null  || !is_writable(OC_App::getInstallPath()) || !is_readable(OC_App::getInstallPath()) ) {
 				$errors[]=array('error'=>"Can't write into apps directory",'hint'=>"You can usually fix this by giving the webserver user write access to the apps directory
 				in owncloud or disabling the appstore in the config file.");
 			}
@@ -257,7 +257,7 @@ class OC_Util {
 			if(!$success) {
 				$errors[]=array('error'=>"Can't create data directory (".$CONFIG_DATADIRECTORY.")",'hint'=>"You can usually fix this by giving the webserver write access to the ownCloud directory '".OC::$SERVERROOT."' (in a terminal, use the command 'chown -R www-data:www-data /path/to/your/owncloud/install/data' ");
 			}
-		} else if(!is_writable($CONFIG_DATADIRECTORY)) {
+		} else if(!is_writable($CONFIG_DATADIRECTORY) or !is_readable($CONFIG_DATADIRECTORY)) {
 			$errors[]=array('error'=>'Data directory ('.$CONFIG_DATADIRECTORY.') not writable by ownCloud<br/>','hint'=>$permissionsHint);
 		}
 
diff --git a/lib/vcategories.php b/lib/vcategories.php
index f5123adeeb641ff3e87c73bf7c9e45b777af6b4e..6b1d6a316f1660bcd0e218e793892041892abffe 100644
--- a/lib/vcategories.php
+++ b/lib/vcategories.php
@@ -55,7 +55,10 @@ class OC_VCategories {
 		$this->app = $app;
 		$this->user = is_null($user) ? OC_User::getUser() : $user;
 		$categories = trim(OC_Preferences::getValue($this->user, $app, self::PREF_CATEGORIES_LABEL, ''));
-		$this->categories = $categories != '' ? @unserialize($categories) : $defcategories;
+		if ($categories) {
+			$categories = @unserialize($categories);
+		}
+		$this->categories = is_array($categories) ? $categories : $defcategories;
 	}
 
 	/**
diff --git a/search/js/result.js b/search/js/result.js
index 27a2383e2c34f64cb43c6b6b8c3c0e75a242141f..aaecde08c6b95bfbdea41ef620a8f8b8b5227bc4 100644
--- a/search/js/result.js
+++ b/search/js/result.js
@@ -45,7 +45,7 @@ OC.search.showResults=function(results){
 					var row=$('#searchresults tr.template').clone();
 					row.removeClass('template');
 					row.addClass('result');
-					if (index == 0){
+					if (i == 0){
 						row.children('td.type').text(name);
 					}
 					row.find('td.result a').attr('href',type[i].link);
diff --git a/settings/ajax/apps/ocs.php b/settings/ajax/apps/ocs.php
index a15b21e17446895ae7ea86c8e7191e0cc3ed7385..fb78cc89248471008532c2be7fcc7a8aca3a65d8 100644
--- a/settings/ajax/apps/ocs.php
+++ b/settings/ajax/apps/ocs.php
@@ -62,4 +62,4 @@ if(is_array($catagoryNames)) {
 	}
 }
 
-OCP\JSON::success(array('type' => 'external', 'data' => $apps));
\ No newline at end of file
+OCP\JSON::success(array('type' => 'external', 'data' => $apps));
diff --git a/settings/ajax/enableapp.php b/settings/ajax/enableapp.php
index 1075a9a433c0e7f83546373e316804eb461e8719..c3b3491db931f9d706a3f89eacac03b8a2f23200 100644
--- a/settings/ajax/enableapp.php
+++ b/settings/ajax/enableapp.php
@@ -10,5 +10,6 @@ $appid = OC_App::enable($_POST['appid']);
 if($appid !== false) {
 	OC_JSON::success(array('data' => array('appid' => $appid)));
 } else {
+	$l = OC_L10N::get('settings');	
 	OC_JSON::error(array("data" => array( "message" => $l->t("Could not enable app. ") )));
 }
diff --git a/settings/css/settings.css b/settings/css/settings.css
index f41edc96fb83c9765458ac36d8c1db9bab1c338c..2015e93b43cf3e7f11b6199efdbbcb817d6c16d6 100644
--- a/settings/css/settings.css
+++ b/settings/css/settings.css
@@ -65,4 +65,4 @@ span.version { margin-left:3em; margin-right:3em; color:#555; }
 /* ADMIN */
 span.securitywarning {color:#C33; font-weight:bold; }
 input[type=radio] { width:1em; }
-table.shareAPI td { padding-right: 2em; }
\ No newline at end of file
+table.shareAPI td { padding-bottom: 0.8em; }
diff --git a/settings/l10n/ca.php b/settings/l10n/ca.php
index 062e9a9734297bd69fbc1ef41090a79728603d2c..c549ef2262eb2241af9004d5c793ae1616055455 100644
--- a/settings/l10n/ca.php
+++ b/settings/l10n/ca.php
@@ -3,6 +3,7 @@
 "Authentication error" => "Error d'autenticació",
 "Group already exists" => "El grup ja existeix",
 "Unable to add group" => "No es pot afegir el grup",
+"Could not enable app. " => "No s'ha pogut activar l'apliació",
 "Email saved" => "S'ha desat el correu electrònic",
 "Invalid email" => "El correu electrònic no és vàlid",
 "OpenID Changed" => "OpenID ha canviat",
@@ -20,10 +21,7 @@
 "Security Warning" => "Avís de seguretat",
 "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "La carpeta de dades i els vostres fitxersprobablement són accessibles des d'Internet. La fitxer .htaccess que ownCloud proporciona no funciona. Us recomanem que configureu el servidor web de tal manera que la carpeta de dades no sigui accessible o que moveu la carpeta de dades fora de l'arrel de documents del servidor web.",
 "Cron" => "Cron",
-"execute one task with each page loaded" => "executa una tasca en carregar cada pàgina",
-"cron.php is registered at a webcron service" => "cron.php està registrat en un servei web cron",
-"use systems cron service" => "usa el servei cron del sistema",
-"Share API" => "API de compartir",
+"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php està registrat en un servei webcron. Feu una crida a la pàgina cron.php a l'arrel de ownCloud cada minut a través de http.",
 "Enable Share API" => "Activa l'API de compartir",
 "Allow apps to use the Share API" => "Permet que les aplicacions usin l'API de compartir",
 "Allow links" => "Permet enllaços",
diff --git a/settings/l10n/cs_CZ.php b/settings/l10n/cs_CZ.php
index a68f10269f564675afcf025c9ded1b546eadda83..09859cd3c541fd3eb5230ea6b979765a74141106 100644
--- a/settings/l10n/cs_CZ.php
+++ b/settings/l10n/cs_CZ.php
@@ -3,6 +3,7 @@
 "Authentication error" => "Chyba ověření",
 "Group already exists" => "Skupina již existuje",
 "Unable to add group" => "Nelze přidat skupinu",
+"Could not enable app. " => "Nelze povolit aplikaci.",
 "Email saved" => "E-mail uložen",
 "Invalid email" => "Neplatný e-mail",
 "OpenID Changed" => "OpenID změněno",
@@ -20,10 +21,10 @@
 "Security Warning" => "Bezpečnostní varování",
 "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Váš adresář dat a soubory jsou pravděpodobně přístupné z internetu. Soubor .htacces, který ownCloud poskytuje nefunguje. Doporučujeme Vám abyste nastavili Váš webový server tak, aby nebylo možno přistupovat do adresáře s daty, nebo přesunuli adresář dat mimo kořenovou složku dokumentů webového serveru.",
 "Cron" => "Cron",
-"execute one task with each page loaded" => "spustit jednu úlohu s každou načtenou stránkou",
-"cron.php is registered at a webcron service" => "cron.php je registrován jako služba webcron",
-"use systems cron service" => "použít systémovou službu cron",
-"Share API" => "API sdílení",
+"Execute one task with each page loaded" => "Spustit jednu úlohu s každou načtenou stránkou",
+"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php je registrován u služby webcron. Zavolá stránku cron.php v kořenovém adresáři owncloud každou minutu skrze http.",
+"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Použít systémovou službu cron. Zavolat soubor cron.php ze složky owncloud pomocí systémové úlohy cron každou minutu.",
+"Sharing" => "Sdílení",
 "Enable Share API" => "Povolit API sdílení",
 "Allow apps to use the Share API" => "Povolit aplikacím používat API sdílení",
 "Allow links" => "Povolit odkazy",
diff --git a/settings/l10n/da.php b/settings/l10n/da.php
index 0c09a25dfdb6f5e4ad28a1ab173d7f5afd1ae1f3..53e51111a2133f7a2fb91acc3442d3904149267a 100644
--- a/settings/l10n/da.php
+++ b/settings/l10n/da.php
@@ -13,10 +13,6 @@
 "__language_name__" => "Dansk",
 "Security Warning" => "Sikkerhedsadvarsel",
 "Cron" => "Cron",
-"execute one task with each page loaded" => "udfør en opgave for hver indlæst side",
-"cron.php is registered at a webcron service" => "cron.php er tilmeldt en webcron tjeneste",
-"use systems cron service" => "brug systemets cron service",
-"Share API" => "Del API",
 "Enable Share API" => "Aktiver dele API",
 "Allow apps to use the Share API" => "Tillad apps a bruge dele APIen",
 "Allow links" => "Tillad links",
diff --git a/settings/l10n/de.php b/settings/l10n/de.php
index 4f3a12934e8465bf35d00f8bb7098344ca366bd0..a450b60b7b21e7b413ead0a6d043e1c69df92915 100644
--- a/settings/l10n/de.php
+++ b/settings/l10n/de.php
@@ -3,6 +3,7 @@
 "Authentication error" => "Anmeldungsfehler",
 "Group already exists" => "Gruppe existiert bereits",
 "Unable to add group" => "Gruppe konnte nicht angelegt werden",
+"Could not enable app. " => "App konnte nicht aktiviert werden.",
 "Email saved" => "E-Mail gespeichert",
 "Invalid email" => "Ungültige E-Mail",
 "OpenID Changed" => "OpenID geändert",
@@ -20,10 +21,10 @@
 "Security Warning" => "Sicherheitshinweis",
 "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Ihr Datenverzeichnis ist möglicher Weise aus dem Internet erreichbar. Die .htaccess-Datei von OwnCloud funktioniert nicht. Wir raten Ihnen dringend, dass Sie Ihren Webserver dahingehend konfigurieren, dass Ihr Datenverzeichnis nicht länger aus dem Internet erreichbar ist, oder Sie verschieben das Datenverzeichnis außerhalb des Wurzelverzeichnisses des Webservers.",
 "Cron" => "Cron",
-"execute one task with each page loaded" => "Führe eine Aufgabe pro geladener Seite aus.",
-"cron.php is registered at a webcron service" => "cron.php ist beim Webcron-Service registriert",
-"use systems cron service" => "Nutze System-Cron-Service",
-"Share API" => "Teilungs-API",
+"Execute one task with each page loaded" => "Führe eine Aufgabe pro geladener Seite aus.",
+"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php ist bei einem Webcron-Dienst registriert. Rufen Sie die Seite cron.php im owncloud Root minütlich per HTTP auf.",
+"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Benutzen Sie den System-Crondienst. Rufen Sie die cron.php im owncloud-Ordner über einen System-Cronjob minütlich auf.",
+"Sharing" => "Freigabe",
 "Enable Share API" => "Teilungs-API aktivieren",
 "Allow apps to use the Share API" => "Erlaubt Nutzern, die Teilungs-API zu nutzen",
 "Allow links" => "Links erlauben",
@@ -47,7 +48,7 @@
 "Answer" => "Antwort",
 "You use" => "Sie nutzen",
 "of the available" => "der verfügbaren",
-"Desktop and Mobile Syncing Clients" => "Desktop- und mobile Synchronierungs-Clients",
+"Desktop and Mobile Syncing Clients" => "Desktop- und mobile Clients für die Synchronisation",
 "Download" => "Download",
 "Your password got changed" => "Ihr Passwort wurde geändert.",
 "Unable to change your password" => "Passwort konnte nicht geändert werden",
diff --git a/settings/l10n/el.php b/settings/l10n/el.php
index 833ef8e10d555170c33776fb8b889886347d0eed..8dba78c85809f4d2fa377899ba011f20f872e932 100644
--- a/settings/l10n/el.php
+++ b/settings/l10n/el.php
@@ -1,26 +1,45 @@
 <?php $TRANSLATIONS = array(
 "Unable to load list from App Store" => "Σφάλμα στην φόρτωση της λίστας από το App Store",
 "Authentication error" => "Σφάλμα πιστοποίησης",
+"Group already exists" => "Η ομάδα υπάρχει ήδη",
+"Unable to add group" => "Αδυναμία προσθήκης ομάδας",
+"Could not enable app. " => "Αδυναμία ενεργοποίησης εφαρμογής ",
 "Email saved" => "Το Email αποθηκεύτηκε ",
 "Invalid email" => "Μη έγκυρο email",
 "OpenID Changed" => "Το OpenID άλλαξε",
 "Invalid request" => "Μη έγκυρο αίτημα",
+"Unable to delete group" => "Αδυναμία διαγραφής ομάδας",
+"Unable to delete user" => "Αδυναμία διαγραφής χρήστη",
 "Language changed" => "Η γλώσσα άλλαξε",
+"Unable to add user to group %s" => "Αδυναμία προσθήκη χρήστη στην ομάδα %s",
+"Unable to remove user from group %s" => "Αδυναμία αφαίρεσης χρήστη από την ομάδα %s",
 "Error" => "Σφάλμα",
 "Disable" => "Απενεργοποίηση",
 "Enable" => "Ενεργοποίηση",
 "Saving..." => "Αποθήκευση...",
 "__language_name__" => "__όνομα_γλώσσας__",
 "Security Warning" => "Προειδοποίηση Ασφαλείας",
+"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Ο κατάλογος δεδομένων και τα αρχεία σας είναι πιθανότατα προσβάσιμα από το διαδίκτυο. Το αρχείο .htaccess που παρέχει το owncloud, δεν λειτουργεί. Σας συνιστούμε να ρυθμίσετε τον εξυπηρετητή σας έτσι ώστε ο κατάλογος δεδομένων να μην είναι πλεον προσβάσιμος ή μετακινήστε τον κατάλογο δεδομένων εκτός του καταλόγου document του εξυπηρετητή σας.",
 "Cron" => "Cron",
-"execute one task with each page loaded" => "Εκτέλεση μίας εργασίας με κάθε σελίδα που φορτώνεται",
-"cron.php is registered at a webcron service" => "Το cron.php έχει καταχωρηθεί σε μια webcron υπηρεσία",
-"use systems cron service" => "Χρήση της υπηρεσίας cron του συστήματος",
+"Execute one task with each page loaded" => "Εκτέλεση μιας εργασίας με κάθε σελίδα που φορτώνεται",
+"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "Το cron.php είναι καταχωρημένο στην υπηρεσία webcron. Να καλείται μια φορά το λεπτό η σελίδα cron.php από τον root του owncloud μέσω http",
+"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Χρήση υπηρεσίας συστήματος cron. Να καλείται μια φορά το λεπτό, το αρχείο cron.php από τον φάκελο του owncloud μέσω του cronjob του συστήματος.",
+"Sharing" => "Διαμοιρασμός",
+"Enable Share API" => "Ενεργοποίηση API Διαμοιρασμού",
+"Allow apps to use the Share API" => "Να επιτρέπεται στις εφαρμογές να χρησιμοποιούν το API Διαμοιρασμού",
+"Allow links" => "Να επιτρέπονται σύνδεσμοι",
+"Allow users to share items to the public with links" => "Να επιτρέπεται στους χρήστες να διαμοιράζονται δημόσια με συνδέσμους",
+"Allow resharing" => "Να επιτρέπεται ο επαναδιαμοιρασμός",
+"Allow users to share items shared with them again" => "Να επιτρέπεται στους χρήστες να διαμοιράζουν ότι τους έχει διαμοιραστεί",
+"Allow users to share with anyone" => "Να επιτρέπεται ο διαμοιρασμός με οποιονδήποτε",
+"Allow users to only share with users in their groups" => "Να επιτρέπεται ο διαμοιρασμός μόνο με χρήστες της ίδιας ομάδας",
 "Log" => "Αρχείο καταγραφής",
 "More" => "Περισσότερο",
+"Developed by the <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." => "Αναπτύχθηκε από την <a href=\"http://ownCloud.org/contact\" target=\"_blank\">κοινότητα ownCloud</a>, ο <a href=\"https://github.com/owncloud\" target=\"_blank\">πηγαίος κώδικας</a> είναι υπό άδεια χρήσης <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>.",
 "Add your App" => "Πρόσθεσε τη δικιά σου εφαρμογή ",
 "Select an App" => "Επιλέξτε μια εφαρμογή",
 "See application page at apps.owncloud.com" => "Η σελίδα εφαρμογών στο apps.owncloud.com",
+"<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-άδεια από <span class=\"author\"></span>",
 "Documentation" => "Τεκμηρίωση",
 "Managing Big Files" => "Διαχείριση μεγάλων αρχείων",
 "Ask a question" => "Ρωτήστε μια ερώτηση",
@@ -49,7 +68,7 @@
 "Create" => "Δημιουργία",
 "Default Quota" => "Προεπιλεγμένο όριο",
 "Other" => "Άλλα",
-"Group Admin" => "Διαχειρηστής ομάδας",
+"Group Admin" => "Ομάδα Διαχειριστών",
 "Quota" => "Σύνολο χώρου",
 "Delete" => "Διαγραφή"
 );
diff --git a/settings/l10n/eo.php b/settings/l10n/eo.php
index cb84b2da037ba32877828172e1df0f4ff5354927..c3bfa63f154b848e299fb1957df375e62061ae63 100644
--- a/settings/l10n/eo.php
+++ b/settings/l10n/eo.php
@@ -13,9 +13,6 @@
 "__language_name__" => "Esperanto",
 "Security Warning" => "Sekureca averto",
 "Cron" => "Cron",
-"execute one task with each page loaded" => "lanĉi unu taskon po ĉiu paĝo ŝargita",
-"cron.php is registered at a webcron service" => "cron.php estas registrita kiel webcron-servilo",
-"use systems cron service" => "uzi la cron-servon de la sistemo",
 "Log" => "Protokolo",
 "More" => "Pli",
 "Add your App" => "Aldonu vian aplikaĵon",
diff --git a/settings/l10n/es.php b/settings/l10n/es.php
index 2f2a06ce058e3b42383907741be27b824f3f9f98..c71a6057b9bf44e6772b305a1fdacad10e1c6a71 100644
--- a/settings/l10n/es.php
+++ b/settings/l10n/es.php
@@ -3,6 +3,7 @@
 "Authentication error" => "Error de autenticación",
 "Group already exists" => "El grupo ya existe",
 "Unable to add group" => "No se pudo añadir el grupo",
+"Could not enable app. " => "No puedo habilitar la app.",
 "Email saved" => "Correo guardado",
 "Invalid email" => "Correo no válido",
 "OpenID Changed" => "OpenID cambiado",
@@ -20,10 +21,9 @@
 "Security Warning" => "Advertencia de seguridad",
 "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "El directorio de datos -data- y sus archivos probablemente son accesibles desde internet. El archivo .htaccess que provee ownCloud no está funcionando. Recomendamos fuertemente que configure su servidor web de forma que el directorio de datos ya no sea accesible o mueva el directorio de datos fuera de la raíz de documentos del servidor web.",
 "Cron" => "Cron",
-"execute one task with each page loaded" => "ejecutar una tarea con cada página cargada",
-"cron.php is registered at a webcron service" => "cron.php se registra en un servicio webcron",
-"use systems cron service" => "usar servicio cron del sistema",
-"Share API" => "API de compartición",
+"Execute one task with each page loaded" => "Ejecutar una tarea con cada página cargada",
+"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php está registrado como un servicio del webcron. Llama a la página de cron.php en la raíz de owncloud cada minuto sobre http.",
+"Sharing" => "Compartir",
 "Enable Share API" => "Activar API de compartición",
 "Allow apps to use the Share API" => "Permitir a las aplicaciones usar la API de compartición",
 "Allow links" => "Permitir enlaces",
diff --git a/settings/l10n/et_EE.php b/settings/l10n/et_EE.php
index ef36dbf951092f7eac5a4f088cb0b3f15880cb08..9a8dd9fe134c8c2dfeba6fc9037c6f4bd8e1cba5 100644
--- a/settings/l10n/et_EE.php
+++ b/settings/l10n/et_EE.php
@@ -19,10 +19,6 @@
 "__language_name__" => "Eesti",
 "Security Warning" => "Turvahoiatus",
 "Cron" => "Ajastatud töö",
-"execute one task with each page loaded" => "käivita iga laetud lehe juures üks ülesanne",
-"cron.php is registered at a webcron service" => "cron.php on webcron teenuses registreeritud",
-"use systems cron service" => "kasuta süsteemide cron teenuseid",
-"Share API" => "Jagamise API",
 "Enable Share API" => "Luba jagamise API",
 "Allow apps to use the Share API" => "Luba rakendustel kasutada jagamise API-t",
 "Allow links" => "Luba linke",
diff --git a/settings/l10n/eu.php b/settings/l10n/eu.php
index a30382f03099188fca6e5023019943324c656e30..529b13df39e6701eb45cff2f8e571a3c8e91d52e 100644
--- a/settings/l10n/eu.php
+++ b/settings/l10n/eu.php
@@ -3,6 +3,7 @@
 "Authentication error" => "Autentifikazio errorea",
 "Group already exists" => "Taldea dagoeneko existitzenda",
 "Unable to add group" => "Ezin izan da taldea gehitu",
+"Could not enable app. " => "Ezin izan da aplikazioa gaitu.",
 "Email saved" => "Eposta gorde da",
 "Invalid email" => "Baliogabeko eposta",
 "OpenID Changed" => "OpenID aldatuta",
@@ -20,10 +21,7 @@
 "Security Warning" => "Segurtasun abisua",
 "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Zure data karpeta eta zure fitxategiak internetetik zuzenean eskuragarri egon daitezke. ownCloudek emandako .htaccess fitxategia ez du bere lana egiten. Aholkatzen dizugu zure web zerbitzaria ongi konfiguratzea data karpeta eskuragarri ez izateko edo data karpeta web zerbitzariaren dokumentu errotik mugitzea.",
 "Cron" => "Cron",
-"execute one task with each page loaded" => "exekutatu zeregina orri karga bakoitzean",
-"cron.php is registered at a webcron service" => "cron.php webcron zerbitzu batean erregistratuta dago",
-"use systems cron service" => "erabili sistemaren cron zerbitzua",
-"Share API" => "Partekatze APIa",
+"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php webcron zerbitzu batean erregistratua dago. Deitu cron.php orria ownclouden erroan minuturo http bidez.",
 "Enable Share API" => "Gaitu Partekatze APIa",
 "Allow apps to use the Share API" => "Baimendu aplikazioak Partekatze APIa erabiltzeko",
 "Allow links" => "Baimendu loturak",
diff --git a/settings/l10n/fi_FI.php b/settings/l10n/fi_FI.php
index 54647c296168f7d766138e8fe0b715561da73467..b5571ac9a58bcb77cbc06e1e7b4ac0a559211bf4 100644
--- a/settings/l10n/fi_FI.php
+++ b/settings/l10n/fi_FI.php
@@ -3,6 +3,7 @@
 "Authentication error" => "Todennusvirhe",
 "Group already exists" => "Ryhmä on jo olemassa",
 "Unable to add group" => "Ryhmän lisäys epäonnistui",
+"Could not enable app. " => "Sovelluksen käyttöönotto epäonnistui.",
 "Email saved" => "Sähköposti tallennettu",
 "Invalid email" => "Virheellinen sähköposti",
 "OpenID Changed" => "OpenID on vaihdettu",
@@ -20,10 +21,6 @@
 "Security Warning" => "Turvallisuusvaroitus",
 "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Data-kansio ja tiedostot ovat ehkä saavutettavissa Internetistä. .htaccess-tiedosto, jolla kontrolloidaan pääsyä, ei toimi. Suosittelemme, että muutat web-palvelimesi asetukset niin ettei data-kansio ole enää pääsyä tai siirrät data-kansion pois web-palvelimen tiedostojen juuresta.",
 "Cron" => "Cron",
-"execute one task with each page loaded" => "suorita yksi tehtävä jokaisella ladatulla sivulla",
-"cron.php is registered at a webcron service" => "cron.php on rekisteröity webcron-palvelulla",
-"use systems cron service" => "käytä järjestelmän cron-palvelua",
-"Share API" => "Jaon ohelmointirajapinta (Share API)",
 "Enable Share API" => "Ota käyttöön jaon ohjelmoitirajapinta (Share API)",
 "Allow apps to use the Share API" => "Salli sovellusten käyttää jaon ohjelmointirajapintaa (Share API)",
 "Allow links" => "Salli linkit",
diff --git a/settings/l10n/fr.php b/settings/l10n/fr.php
index 906e80eabb6c7101e85909283d90d88ab162915f..2ef64e253125c93b7c603e267720b43281f75293 100644
--- a/settings/l10n/fr.php
+++ b/settings/l10n/fr.php
@@ -20,10 +20,6 @@
 "Security Warning" => "Alertes de sécurité",
 "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Votre répertoire de données et vos fichiers sont probablement accessibles depuis internet. Le fichier .htaccess fourni avec ownCloud ne fonctionne pas. Nous vous recommandons vivement de configurer votre serveur web de façon à ce que ce répertoire ne soit plus accessible, ou bien de déplacer le répertoire de données à l'extérieur de la racine du serveur web.",
 "Cron" => "Cron",
-"execute one task with each page loaded" => "exécuter une tâche pour chaque page chargée",
-"cron.php is registered at a webcron service" => "cron.php est enregistré comme un service webcron",
-"use systems cron service" => "utiliser le service cron du système ",
-"Share API" => "API de partage",
 "Enable Share API" => "Activer l'API de partage",
 "Allow apps to use the Share API" => "Autoriser les applications à utiliser l'API de partage",
 "Allow links" => "Autoriser les liens",
diff --git a/settings/l10n/gl.php b/settings/l10n/gl.php
index 52aa13c461cb20fdaa968a56e360e3dd83d60de6..0cb1fbd6460215cafa89ad432388a45f2e41c574 100644
--- a/settings/l10n/gl.php
+++ b/settings/l10n/gl.php
@@ -13,9 +13,6 @@
 "__language_name__" => "Galego",
 "Security Warning" => "Aviso de seguridade",
 "Cron" => "Cron",
-"execute one task with each page loaded" => "executar unha tarefa con cada páxina cargada",
-"cron.php is registered at a webcron service" => "cron.php está rexistrada como un servizo webcron",
-"use systems cron service" => "utilice o servizo cron do sistema",
 "Log" => "Conectar",
 "More" => "Máis",
 "Add your App" => "Engade o teu aplicativo",
diff --git a/settings/l10n/hr.php b/settings/l10n/hr.php
index 8c5251520cce736f79c34f0cf6d8d04a5efb4b55..de540cb50fe4eb4da79231fca9b84529e9d3cb68 100644
--- a/settings/l10n/hr.php
+++ b/settings/l10n/hr.php
@@ -12,8 +12,6 @@
 "Saving..." => "Spremanje...",
 "__language_name__" => "__ime_jezika__",
 "Cron" => "Cron",
-"cron.php is registered at a webcron service" => "cron.php je registriran kod webcron servisa",
-"use systems cron service" => "koristi sistemski cron servis",
 "Log" => "dnevnik",
 "More" => "više",
 "Add your App" => "Dodajte vašu aplikaciju",
diff --git a/settings/l10n/it.php b/settings/l10n/it.php
index 695ed31eeef7ca87b0cd6abbdca0648135834e3e..ae6999675be35f5504b3fa5621d54d414f14303a 100644
--- a/settings/l10n/it.php
+++ b/settings/l10n/it.php
@@ -3,6 +3,7 @@
 "Authentication error" => "Errore di autenticazione",
 "Group already exists" => "Il gruppo esiste già",
 "Unable to add group" => "Impossibile aggiungere il gruppo",
+"Could not enable app. " => "Impossibile abilitare l'applicazione.",
 "Email saved" => "Email salvata",
 "Invalid email" => "Email non valida",
 "OpenID Changed" => "OpenID modificato",
@@ -20,10 +21,10 @@
 "Security Warning" => "Avviso di sicurezza",
 "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "La cartella dei dati e i tuoi file sono probabilmente accessibili da Internet.\nIl file .htaccess fornito da ownCloud non funziona. Ti consigliamo vivamente di configurare il server web in modo che la cartella dei dati non sia più accessibile e spostare la cartella fuori dalla radice del server web.",
 "Cron" => "Cron",
-"execute one task with each page loaded" => "esegui un'attività con ogni pagina caricata",
-"cron.php is registered at a webcron service" => "cron.php è registrato a un servizio webcron",
-"use systems cron service" => "usa il servizio cron di sistema",
-"Share API" => "API di condivisione",
+"Execute one task with each page loaded" => "Esegui un'operazione per ogni pagina caricata",
+"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php è registrato su un servizio webcron. Chiama la pagina cron.php nella radice di owncloud ogni minuto su http.",
+"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Usa il servizio cron di sistema. Chiama il file cron.php nella cartella di owncloud tramite una pianificazione del cron di sistema ogni minuto.",
+"Sharing" => "Condivisione",
 "Enable Share API" => "Abilita API di condivisione",
 "Allow apps to use the Share API" => "Consenti alle applicazioni di utilizzare le API di condivisione",
 "Allow links" => "Consenti collegamenti",
diff --git a/settings/l10n/ja_JP.php b/settings/l10n/ja_JP.php
index fe1eed19806de50cf089edc8bf50499d6fdd5330..d675cc6836cab9d34372bd0f7bc769ffcb635cd2 100644
--- a/settings/l10n/ja_JP.php
+++ b/settings/l10n/ja_JP.php
@@ -3,6 +3,7 @@
 "Authentication error" => "認証エラー",
 "Group already exists" => "グループは既に存在しています",
 "Unable to add group" => "グループを追加できません",
+"Could not enable app. " => "アプリを有効にできませんでした。",
 "Email saved" => "メールアドレスを保存しました",
 "Invalid email" => "無効なメールアドレス",
 "OpenID Changed" => "OpenIDが変更されました",
@@ -20,10 +21,7 @@
 "Security Warning" => "セキュリティ警告",
 "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "データディレクトリとファイルが恐らくインターネットからアクセスできるようになっています。ownCloudが提供する .htaccessファイルが機能していません。データディレクトリを全くアクセスできないようにするか、データディレクトリをウェブサーバのドキュメントルートの外に置くようにウェブサーバを設定することを強くお勧めします。",
 "Cron" => "cron(自動定期実行)",
-"execute one task with each page loaded" => "ページを開く毎にタスクを1つ実行",
-"cron.php is registered at a webcron service" => "cron.phpをwebcronサービスに登録しました",
-"use systems cron service" => "システムのcronサービスを使用",
-"Share API" => "Share API",
+"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php は webcron サービスとして登録されています。HTTP経由で1分間に1回の頻度で owncloud のルートページ内の cron.php ページを呼び出します。",
 "Enable Share API" => "Share APIを有効",
 "Allow apps to use the Share API" => "Share APIの使用をアプリケーションに許可",
 "Allow links" => "リンクを許可",
diff --git a/settings/l10n/ko.php b/settings/l10n/ko.php
index ada09c845cf81e64b432d1b14a30a1cf9f3132ca..3ea2674a18ca610805283d292080cc9c8d310778 100644
--- a/settings/l10n/ko.php
+++ b/settings/l10n/ko.php
@@ -13,9 +13,6 @@
 "__language_name__" => "한국어",
 "Security Warning" => "보안 경고",
 "Cron" => "크론",
-"execute one task with each page loaded" => "각 페이지가 로드 된 하나의 작업을 실행",
-"cron.php is registered at a webcron service" => "cron.php는 webcron 서비스에 등록이 되어 있습니다.",
-"use systems cron service" => "cron 시스템 서비스를 사용",
 "Log" => "로그",
 "More" => "더",
 "Add your App" => "앱 추가",
diff --git a/settings/l10n/lb.php b/settings/l10n/lb.php
index 55db067f8cfc8309e2afed76c4d1d073177b4ecc..d840a1d710db6cf69a32eacac7dd658893a340f5 100644
--- a/settings/l10n/lb.php
+++ b/settings/l10n/lb.php
@@ -13,9 +13,6 @@
 "__language_name__" => "__language_name__",
 "Security Warning" => "Sécherheets Warnung",
 "Cron" => "Cron",
-"cron.php is registered at a webcron service" => "cron.php ass als en webcron Service registréiert",
-"use systems cron service" => "benotz den systems cron Service",
-"Share API" => "Share API",
 "Enable Share API" => "Share API aschalten",
 "Allow apps to use the Share API" => "Erlab Apps d'Share API ze benotzen",
 "Allow links" => "Links erlaben",
diff --git a/settings/l10n/lt_LT.php b/settings/l10n/lt_LT.php
index 701ec86727096dd2d0adcb9e72dcf8ca7e082a5b..169892d6b2109af615cc158936d9f707482bbd0c 100644
--- a/settings/l10n/lt_LT.php
+++ b/settings/l10n/lt_LT.php
@@ -12,7 +12,6 @@
 "__language_name__" => "Kalba",
 "Security Warning" => "Saugumo įspėjimas",
 "Cron" => "Cron",
-"use systems cron service" => "naudoti sistemos cron servisą",
 "Log" => "Žurnalas",
 "More" => "Daugiau",
 "Add your App" => "Pridėti programėlę",
diff --git a/settings/l10n/nb_NO.php b/settings/l10n/nb_NO.php
index 57c188135222ea2f1a9413af276b7e7a3f8e036c..8a1f42b7bfb241e811050250d373a10e08dc5876 100644
--- a/settings/l10n/nb_NO.php
+++ b/settings/l10n/nb_NO.php
@@ -13,9 +13,6 @@
 "__language_name__" => "__language_name__",
 "Security Warning" => "Sikkerhetsadvarsel",
 "Cron" => "Cron",
-"execute one task with each page loaded" => "utfør en oppgave med hver side som blir lastet",
-"cron.php is registered at a webcron service" => "cron.php er registrert som en webcron tjeneste",
-"use systems cron service" => "benytt systemets cron tjeneste",
 "Log" => "Logg",
 "More" => "Mer",
 "Add your App" => "Legg til din App",
diff --git a/settings/l10n/nl.php b/settings/l10n/nl.php
index 8ac7b58a4ced542bed750b52001ad19357e6751c..098f29a06e75611aebd8ff252c5ce7fd0e183add 100644
--- a/settings/l10n/nl.php
+++ b/settings/l10n/nl.php
@@ -3,6 +3,7 @@
 "Authentication error" => "Authenticatie fout",
 "Group already exists" => "Groep bestaat al",
 "Unable to add group" => "Niet in staat om groep toe te voegen",
+"Could not enable app. " => "Kan de app. niet activeren",
 "Email saved" => "E-mail bewaard",
 "Invalid email" => "Ongeldige e-mail",
 "OpenID Changed" => "OpenID is aangepast",
@@ -20,10 +21,7 @@
 "Security Warning" => "Veiligheidswaarschuwing",
 "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Uw data folder en uw bestanden zijn hoogst waarschijnlijk vanaf het internet bereikbaar.  Het .htaccess bestand dat ownCloud meelevert werkt niet.  Het is ten zeerste aangeraden om uw webserver zodanig te configureren, dat de data folder niet bereikbaar is vanaf het internet of verplaatst uw data folder naar een locatie buiten de webserver document root.",
 "Cron" => "Cron",
-"execute one task with each page loaded" => "Voer 1 taak uit bij elke geladen pagina",
-"cron.php is registered at a webcron service" => "cron.php is geregistreerd bij een webcron service",
-"use systems cron service" => "gebruik de systeem cron service",
-"Share API" => "Deel API",
+"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php is bij een webcron dienst geregistreerd.  Roep de cron.php pagina in de owncloud root via http één maal per minuut op.",
 "Enable Share API" => "Zet de Deel API aan",
 "Allow apps to use the Share API" => "Sta apps toe om de Deel API te gebruiken",
 "Allow links" => "Sta links toe",
diff --git a/settings/l10n/pl.php b/settings/l10n/pl.php
index 851099ef6b77f400f57b98ad06790ee17d5493bd..7a3dfdfdde0de831a1ef691af79fbbc0221e1f46 100644
--- a/settings/l10n/pl.php
+++ b/settings/l10n/pl.php
@@ -20,10 +20,6 @@
 "Security Warning" => "Ostrzeżenia bezpieczeństwa",
 "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Twój katalog danych i pliki są prawdopodobnie dostępne z Internetu. Plik .htaccess, który dostarcza ownCloud nie działa. Sugerujemy, aby skonfigurować serwer WWW w taki sposób, aby katalog danych nie był dostępny lub przenieść katalog danych poza główny katalog serwera WWW.",
 "Cron" => "Cron",
-"execute one task with each page loaded" => "wykonanie jednego zadania z każdej  załadowanej strony",
-"cron.php is registered at a webcron service" => "cron.php jest zarejestrowany w usłudze webcron",
-"use systems cron service" => "korzystaj z usługi systemowej cron",
-"Share API" => "Udostępnij API",
 "Enable Share API" => "Włącz udostępniane API",
 "Allow apps to use the Share API" => "Zezwalaj aplikacjom na używanie API",
 "Allow links" => "Zezwalaj na łącza",
diff --git a/settings/l10n/pt_BR.php b/settings/l10n/pt_BR.php
index 6933e58554555d8f972b5b13e51098b5c52d6e2a..b5579d4f9e81b70a31ecc4ea3e578c173127c650 100644
--- a/settings/l10n/pt_BR.php
+++ b/settings/l10n/pt_BR.php
@@ -11,8 +11,6 @@
 "Saving..." => "Gravando...",
 "__language_name__" => "Português",
 "Security Warning" => "Aviso de Segurança",
-"execute one task with each page loaded" => "executar uma tarefa com cada página em aberto",
-"cron.php is registered at a webcron service" => "cron.php esta registrado no serviço de webcron",
 "Log" => "Log",
 "More" => "Mais",
 "Add your App" => "Adicione seu Aplicativo",
diff --git a/settings/l10n/pt_PT.php b/settings/l10n/pt_PT.php
index bf939df4aeb689778f2079f1fb63eef063012802..bf5a742e1b0bb59b2338bb61bd88f3365e47703e 100644
--- a/settings/l10n/pt_PT.php
+++ b/settings/l10n/pt_PT.php
@@ -13,9 +13,6 @@
 "__language_name__" => "__language_name__",
 "Security Warning" => "Aviso de Segurança",
 "Cron" => "Cron",
-"execute one task with each page loaded" => "Executar uma tarefa com cada página carregada",
-"cron.php is registered at a webcron service" => "cron.php está registado num serviço webcron",
-"use systems cron service" => "usar o serviço cron do sistema",
 "Log" => "Log",
 "More" => "Mais",
 "Add your App" => "Adicione a sua aplicação",
diff --git a/settings/l10n/ro.php b/settings/l10n/ro.php
index c82cdaab2a406501f33b38e8c866e51a7a602527..d4b8c1651c854b5e5cb0a94a34d8fd5436983147 100644
--- a/settings/l10n/ro.php
+++ b/settings/l10n/ro.php
@@ -1,26 +1,40 @@
 <?php $TRANSLATIONS = array(
 "Unable to load list from App Store" => "Imposibil de încărcat lista din App Store",
 "Authentication error" => "Eroare de autentificare",
+"Group already exists" => "Grupul există deja",
+"Unable to add group" => "Nu s-a putut adăuga grupul",
+"Could not enable app. " => "Nu s-a putut activa aplicația.",
 "Email saved" => "E-mail salvat",
 "Invalid email" => "E-mail nevalid",
 "OpenID Changed" => "OpenID schimbat",
 "Invalid request" => "Cerere eronată",
+"Unable to delete group" => "Nu s-a putut șterge grupul",
+"Unable to delete user" => "Nu s-a putut șterge utilizatorul",
 "Language changed" => "Limba a fost schimbată",
+"Unable to add user to group %s" => "Nu s-a putut adăuga utilizatorul la grupul %s",
+"Unable to remove user from group %s" => "Nu s-a putut elimina utilizatorul din grupul %s",
 "Error" => "Erroare",
 "Disable" => "Dezactivați",
 "Enable" => "Activați",
 "Saving..." => "Salvez...",
 "__language_name__" => "_language_name_",
 "Security Warning" => "Avertisment de securitate",
+"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Directorul tău de date și fișierele tale probabil sunt accesibile prin internet. Fișierul .htaccess oferit de ownCloud nu funcționează. Îți recomandăm să configurezi server-ul tău web într-un mod în care directorul de date să nu mai fie accesibil sau mută directorul de date în afara directorului root al server-ului web.",
 "Cron" => "Cron",
-"execute one task with each page loaded" => "executâ o sarcină cu fiecare pagină încărcată",
-"cron.php is registered at a webcron service" => "cron.php e înregistrat la un serviciu de webcron",
-"use systems cron service" => "utilizează serviciul de cron al sistemului",
+"Sharing" => "Partajare",
+"Enable Share API" => "Activare API partajare",
+"Allow apps to use the Share API" => "Permite aplicațiilor să folosească API-ul de partajare",
+"Allow links" => "Pemite legături",
+"Allow resharing" => "Permite repartajarea",
+"Allow users to share with anyone" => "Permite utilizatorilor să partajeze cu oricine",
+"Allow users to only share with users in their groups" => "Permite utilizatorilor să partajeze doar cu utilizatori din același grup",
 "Log" => "Jurnal de activitate",
 "More" => "Mai mult",
+"Developed by the <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." => "Dezvoltat de the <a href=\"http://ownCloud.org/contact\" target=\"_blank\">comunitatea ownCloud</a>, <a href=\"https://github.com/owncloud\" target=\"_blank\">codul sursă</a> este licențiat sub <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>.",
 "Add your App" => "Adaugă aplicația ta",
 "Select an App" => "Selectează o aplicație",
 "See application page at apps.owncloud.com" => "Vizualizează pagina applicației pe apps.owncloud.com",
+"<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-licențiat <span class=\"author\"></span>",
 "Documentation" => "Documetație",
 "Managing Big Files" => "Gestionînd fișiere mari",
 "Ask a question" => "Întreabă",
diff --git a/settings/l10n/ru.php b/settings/l10n/ru.php
index 4e0a7e7d780e50ad84468ee858253a402d3fbe22..7ae8d53174aab21ee6f542812867469af99c4b6c 100644
--- a/settings/l10n/ru.php
+++ b/settings/l10n/ru.php
@@ -20,10 +20,6 @@
 "Security Warning" => "Предупреждение безопасности",
 "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Похоже, что каталог data и ваши файлы в нем доступны из интернета. Предоставляемый ownCloud файл htaccess не работает. Настоятельно рекомендуем настроить сервер таким образом, чтобы закрыть доступ к каталогу data или вынести каталог data за пределы корневого каталога веб-сервера.",
 "Cron" => "Задание",
-"execute one task with each page loaded" => "Запускать задание при загрузке каждой страницы",
-"cron.php is registered at a webcron service" => "cron.php зарегистрирован в службе webcron",
-"use systems cron service" => "использовать системные задания",
-"Share API" => "API публикации",
 "Enable Share API" => "Включить API публикации",
 "Allow apps to use the Share API" => "Разрешить API публикации для приложений",
 "Allow links" => "Разрешить ссылки",
diff --git a/settings/l10n/ru_RU.php b/settings/l10n/ru_RU.php
new file mode 100644
index 0000000000000000000000000000000000000000..edf315db7ccd460f039fc8df3baf0d533aa4ea4e
--- /dev/null
+++ b/settings/l10n/ru_RU.php
@@ -0,0 +1,72 @@
+<?php $TRANSLATIONS = array(
+"Unable to load list from App Store" => "Невозможно загрузить список из App Store",
+"Authentication error" => "Ошибка авторизации",
+"Group already exists" => "Группа уже существует",
+"Unable to add group" => "Невозможно добавить группу",
+"Could not enable app. " => "Не удалось запустить приложение",
+"Email saved" => "Email сохранен",
+"Invalid email" => "Неверный email",
+"OpenID Changed" => "OpenID изменен",
+"Invalid request" => "Неверный запрос",
+"Unable to delete group" => "Невозможно удалить группу",
+"Unable to delete user" => "Невозможно удалить пользователя",
+"Language changed" => "Язык изменен",
+"Unable to add user to group %s" => "Невозможно добавить пользователя в группу %s",
+"Unable to remove user from group %s" => "Невозможно удалить пользователя из группы %s",
+"Error" => "Ошибка",
+"Disable" => "Отключить",
+"Enable" => "Включить",
+"Saving..." => "Сохранение",
+"__language_name__" => "__язык_имя__",
+"Security Warning" => "Предупреждение системы безопасности",
+"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Ваш каталог данных и файлы возможно доступны из Интернета. Файл .htaccess, предоставляемый ownCloud, не работает. Мы настоятельно рекомендуем Вам настроить сервер таким образом, чтобы каталог данных был бы больше не доступен, или переместить каталог данных за пределы корневой папки веб-сервера.",
+"Cron" => "Cron",
+"Execute one task with each page loaded" => "Выполняйте одну задачу на каждой загружаемой странице",
+"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php зарегистрирован в службе webcron. Обращайтесь к странице cron.php в корне owncloud раз в минуту по http.",
+"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Используйте системный сервис cron. Исполняйте файл cron.php в папке owncloud с помощью системы cronjob раз в минуту.",
+"Sharing" => "Совместное использование",
+"Enable Share API" => "Включить разделяемые API",
+"Allow apps to use the Share API" => "Разрешить приложениям использовать Share API",
+"Allow links" => "Предоставить ссылки",
+"Allow resharing" => "Разрешить повторное совместное использование",
+"Allow users to share with anyone" => "Разрешить пользователям разделение с кем-либо",
+"Allow users to only share with users in their groups" => "Разрешить пользователям разделение только с пользователями в их группах",
+"Log" => "Вход",
+"More" => "Подробнее",
+"Developed by the <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." => "Разработанный <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>.",
+"Add your App" => "Добавить Ваше приложение",
+"Select an App" => "Выбрать приложение",
+"See application page at apps.owncloud.com" => "Обратитесь к странице приложений на apps.owncloud.com",
+"<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>",
+"Documentation" => "Документация",
+"Managing Big Files" => "Управление большими файлами",
+"Ask a question" => "Задать вопрос",
+"Problems connecting to help database." => "Проблемы, связанные с разделом Помощь базы данных",
+"Go there manually." => "Сделать вручную.",
+"Answer" => "Ответ",
+"You use" => "Вы используете",
+"of the available" => "из доступных",
+"Desktop and Mobile Syncing Clients" => "Клиенты синхронизации настольной и мобильной систем",
+"Download" => "Загрузка",
+"Your password got changed" => "Ваш пароль был изменен",
+"Unable to change your password" => "Невозможно изменить Ваш пароль",
+"Current password" => "Текущий пароль",
+"New password" => "Новый пароль",
+"show" => "показать",
+"Change password" => "Изменить пароль",
+"Email" => "Электронная почта",
+"Your email address" => "Адрес Вашей электронной почты",
+"Fill in an email address to enable password recovery" => "Введите адрес электронной почты для возможности восстановления пароля",
+"Language" => "Язык",
+"Help translate" => "Помогите перевести",
+"use this address to connect to your ownCloud in your file manager" => "Используйте этот адрес для соединения с Вашим ownCloud в файловом менеджере",
+"Name" => "Имя",
+"Password" => "Пароль",
+"Groups" => "Группы",
+"Create" => "Создать",
+"Default Quota" => "Квота по умолчанию",
+"Other" => "Другой",
+"Group Admin" => "Группа Admin",
+"Quota" => "квота",
+"Delete" => "Удалить"
+);
diff --git a/settings/l10n/sl.php b/settings/l10n/sl.php
index 7b5c6bee3cb4efbbb51246375a6379b2acacd54a..6e3cd22ce0803c11e5558b9ba6966073c0a91229 100644
--- a/settings/l10n/sl.php
+++ b/settings/l10n/sl.php
@@ -3,6 +3,7 @@
 "Authentication error" => "Napaka overitve",
 "Group already exists" => "Skupina že obstaja",
 "Unable to add group" => "Ni mogoče dodati skupine",
+"Could not enable app. " => "Aplikacije ni bilo mogoče omogočiti.",
 "Email saved" => "E-poštni naslov je bil shranjen",
 "Invalid email" => "Neveljaven e-poštni naslov",
 "OpenID Changed" => "OpenID je bil spremenjen",
@@ -20,12 +21,12 @@
 "Security Warning" => "Varnostno opozorilo",
 "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Vaša mapa data in vaše datoteke so verjetno vsem dostopne preko interneta. Datoteka .htaccess vključena v ownCloud ni omogočena. Močno vam priporočamo, da nastavite vaš spletni strežnik tako, da mapa data ne bo več na voljo vsem, ali pa jo preselite izven korenske mape spletnega strežnika.",
 "Cron" => "Periodično opravilo",
-"execute one task with each page loaded" => "izvedi eno nalogo z vsako naloženo stranjo",
-"cron.php is registered at a webcron service" => "cron.php je vpisan na storitev webcron",
-"use systems cron service" => "uporabi sistemski servis za periodična opravila",
-"Share API" => "API souporabe",
+"Execute one task with each page loaded" => "Izvede eno opravilo z vsako naloženo stranjo.",
+"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "Datoteka cron.php je prijavljena pri enem od spletnih servisov za periodična opravila. Preko protokola http pokličite datoteko cron.php, ki se nahaja v ownCloud korenski mapi, enkrat na minuto.",
+"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Uporabi sistemski servis za periodična opravila. Preko sistemskega servisa pokličite datoteko cron.php, ki se nahaja v ownCloud korenski mapi, enkrat na minuto.",
+"Sharing" => "Souporaba",
 "Enable Share API" => "Omogoči API souporabe",
-"Allow apps to use the Share API" => "Dovoli aplikacijam uporabo API-ja souporabe",
+"Allow apps to use the Share API" => "Aplikacijam dovoli uporabo API-ja souporabe",
 "Allow links" => "Dovoli povezave",
 "Allow users to share items to the public with links" => "Uporabnikom dovoli souporabo z javnimi povezavami",
 "Allow resharing" => "Dovoli nadaljnjo souporabo",
@@ -34,7 +35,7 @@
 "Allow users to only share with users in their groups" => "Uporabnikom dovoli souporabo le znotraj njihove skupine",
 "Log" => "Dnevnik",
 "More" => "Več",
-"Developed by the <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." => "Razvit s strani <a href=\"http://ownCloud.org/contact\" target=\"_blank\">skupnosti ownCloud</a>. <a href=\"https://github.com/owncloud\" target=\"_blank\">Izvorna koda</a> je izdana pod licenco <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>.",
+"Developed by the <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." => "Razvija ga <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud skupnost</a>. <a href=\"https://github.com/owncloud\" target=\"_blank\">Izvorna koda</a> je izdana pod licenco <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>.",
 "Add your App" => "Dodajte vašo aplikacijo",
 "Select an App" => "Izberite aplikacijo",
 "See application page at apps.owncloud.com" => "Obiščite spletno stran aplikacije na apps.owncloud.com",
diff --git a/settings/l10n/sv.php b/settings/l10n/sv.php
index 1a18e9670de4299b662c47b98ea7ace714acf91d..c944cd0993731921e6533d43949e6a0554d4927b 100644
--- a/settings/l10n/sv.php
+++ b/settings/l10n/sv.php
@@ -3,6 +3,7 @@
 "Authentication error" => "Autentiseringsfel",
 "Group already exists" => "Gruppen finns redan",
 "Unable to add group" => "Kan inte lägga till grupp",
+"Could not enable app. " => "Kunde inte aktivera appen.",
 "Email saved" => "E-post sparad",
 "Invalid email" => "Ogiltig e-post",
 "OpenID Changed" => "OpenID ändrat",
@@ -20,10 +21,10 @@
 "Security Warning" => "Säkerhetsvarning",
 "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Din datamapp och dina filer kan möjligen vara nåbara från internet. Filen .htaccess som ownCloud tillhandahåller fungerar inte. Vi rekommenderar starkt att du ställer in din webbserver på ett sätt så att datamappen inte är nåbar. Alternativt att ni flyttar datamappen utanför webbservern.",
 "Cron" => "Cron",
-"execute one task with each page loaded" => "utför en uppgift vid varje sidladdning",
-"cron.php is registered at a webcron service" => "cron.php är registrerad på en webcron-tjänst",
-"use systems cron service" => "använd systemets cron-tjänst",
-"Share API" => "Delat API",
+"Execute one task with each page loaded" => "Exekvera en uppgift vid varje sidladdning",
+"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php är registrerad som en webcron-tjänst. Anropa cron.php sidan i ownCloud en gång i minuten över HTTP.",
+"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Använd system-tjänsten cron. Anropa filen cron.php i ownCloud-mappen via ett cronjobb varje minut.",
+"Sharing" => "Dela",
 "Enable Share API" => "Aktivera delat API",
 "Allow apps to use the Share API" => "Tillåt applikationer att använda delat API",
 "Allow links" => "Tillåt länkar",
diff --git a/settings/l10n/th_TH.php b/settings/l10n/th_TH.php
index d775af76713a79c30db77960f5f3f0b15f1ee4b0..128e548cc9ffab99f91facdbb33a0141d850ec92 100644
--- a/settings/l10n/th_TH.php
+++ b/settings/l10n/th_TH.php
@@ -3,6 +3,7 @@
 "Authentication error" => "เกิดข้อผิดพลาดเกี่ยวกับสิทธิ์การเข้าใช้งาน",
 "Group already exists" => "มีกลุ่มดังกล่าวอยู่ในระบบอยู่แล้ว",
 "Unable to add group" => "ไม่สามารถเพิ่มกลุ่มได้",
+"Could not enable app. " => "ไม่สามารถเปิดใช้งานแอปได้",
 "Email saved" => "อีเมลถูกบันทึกแล้ว",
 "Invalid email" => "อีเมลไม่ถูกต้อง",
 "OpenID Changed" => "เปลี่ยนชื่อบัญชี OpenID แล้ว",
@@ -20,10 +21,10 @@
 "Security Warning" => "คำเตือนเกี่ยวกับความปลอดภัย",
 "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "ไดเร็กทอรี่ข้อมูลและไฟล์ของคุณสามารถเข้าถึงได้จากอินเทอร์เน็ต ไฟล์ .htaccess ที่ ownCloud มีให้ไม่สามารถทำงานได้อย่างเหมาะสม เราขอแนะนำให้คุณกำหนดค่าเว็บเซิร์ฟเวอร์ใหม่ในรูปแบบที่ไดเร็กทอรี่เก็บข้อมูลไม่สามารถเข้าถึงได้อีกต่อไป หรือคุณได้ย้ายไดเร็กทอรี่ที่ใช้เก็บข้อมูลไปอยู่ภายนอกตำแหน่ง root ของเว็บเซิร์ฟเวอร์แล้ว",
 "Cron" => "Cron",
-"execute one task with each page loaded" => "ประมวลผลหนึ่งงานเมื่อโหลดหน้าเว็บแต่ละครั้ง",
-"cron.php is registered at a webcron service" => "cron.php ได้ถูกลงทะเบียนที่บริการ webcron",
-"use systems cron service" => "ใช้บริการ cron จากระบบ",
-"Share API" => "API สำหรับคุณสมบัติแชร์ข้อมูล",
+"Execute one task with each page loaded" => "ประมวลคำสั่งหนึ่งงานในแต่ละครั้งที่มีการโหลดหน้าเว็บ",
+"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php ได้รับการลงทะเบียนแล้วกับเว็บผู้ให้บริการ webcron เรียกหน้าเว็บ cron.php ที่ตำแหน่ง root ของ owncloud หลังจากนี้สักครู่ผ่านทาง http",
+"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "ใช้บริการ cron จากระบบ เรียกไฟล์ cron.php ในโฟลเดอร์ owncloud ผ่านทาง cronjob ของระบบหลังจากนี้สักครู่",
+"Sharing" => "การแชร์ข้อมูล",
 "Enable Share API" => "เปิดใช้งาน API สำหรับคุณสมบัติแชร์ข้อมูล",
 "Allow apps to use the Share API" => "อนุญาตให้แอปฯสามารถใช้ API สำหรับแชร์ข้อมูลได้",
 "Allow links" => "อนุญาตให้ใช้งานลิงก์ได้",
diff --git a/settings/l10n/vi.php b/settings/l10n/vi.php
index c410bb4c3dab57a167ef03df715ecd599d9808b2..ade8a02131edfc2a2b13f207ca00ad295f8d8246 100644
--- a/settings/l10n/vi.php
+++ b/settings/l10n/vi.php
@@ -20,10 +20,6 @@
 "Security Warning" => "Cảnh bảo bảo mật",
 "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Thư mục dữ liệu và những tập tin của bạn có thể dễ dàng bị truy cập từ internet. Tập tin .htaccess của ownCloud cung cấp không hoạt động. Chúng tôi đề nghị bạn nên cấu hình lại máy chủ webserver của bạn để thư mục dữ liệu không  còn bị truy cập hoặc bạn di chuyển thư mục dữ liệu ra bên ngoài thư mục gốc của máy chủ.",
 "Cron" => "Cron",
-"execute one task with each page loaded" => "Thực thi một nhiệm vụ với mỗi trang được nạp",
-"cron.php is registered at a webcron service" => "cron.php đã được đăng ký ở một dịch vụ webcron",
-"use systems cron service" => "sử dụng hệ thống dịch vụ cron",
-"Share API" => "Chia sẻ API",
 "Enable Share API" => "Bật chia sẻ API",
 "Allow apps to use the Share API" => "Cho phép các ứng dụng sử dụng chia sẻ API",
 "Allow links" => "Cho phép liên kết",
diff --git a/settings/l10n/zh_CN.GB2312.php b/settings/l10n/zh_CN.GB2312.php
index 83111beb10eccb46c1adc01cad2b959e4ad448de..760336c932376a004185bcd5884ae7ff4f5d50dc 100644
--- a/settings/l10n/zh_CN.GB2312.php
+++ b/settings/l10n/zh_CN.GB2312.php
@@ -1,23 +1,45 @@
 <?php $TRANSLATIONS = array(
 "Unable to load list from App Store" => "不能从App Store 中加载列表",
 "Authentication error" => "认证错误",
+"Group already exists" => "群组已存在",
+"Unable to add group" => "未能添加群组",
+"Could not enable app. " => "未能启用应用",
 "Email saved" => "Email 保存了",
 "Invalid email" => "非法Email",
 "OpenID Changed" => "OpenID 改变了",
 "Invalid request" => "非法请求",
+"Unable to delete group" => "未能删除群组",
+"Unable to delete user" => "未能删除用户",
 "Language changed" => "语言改变了",
+"Unable to add user to group %s" => "未能添加用户到群组 %s",
+"Unable to remove user from group %s" => "未能将用户从群组 %s 移除",
 "Error" => "错误",
 "Disable" => "禁用",
 "Enable" => "启用",
 "Saving..." => "保存中...",
 "__language_name__" => "Chinese",
 "Security Warning" => "安全警告",
+"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "您的数据文件夹和您的文件可能可以从互联网访问。ownCloud 提供的 .htaccess 文件未工作。我们强烈建议您配置您的网络服务器,让数据文件夹不能访问,或将数据文件夹移出网络服务器文档根目录。",
 "Cron" => "定时",
+"Execute one task with each page loaded" => "在每个页面载入时执行一项任务",
+"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php 已作为 webcron 服务注册。owncloud 根用户将通过 http 协议每分钟调用一次 cron.php。",
+"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "使用系统 cron 服务。通过系统 cronjob 每分钟调用一次 owncloud 文件夹下的 cron.php",
+"Sharing" => "分享",
+"Enable Share API" => "启用分享 API",
+"Allow apps to use the Share API" => "允许应用使用分享 API",
+"Allow links" => "允许链接",
+"Allow users to share items to the public with links" => "允许用户使用链接与公众分享条目",
+"Allow resharing" => "允许重复分享",
+"Allow users to share items shared with them again" => "允许用户再次分享已经分享过的条目",
+"Allow users to share with anyone" => "允许用户与任何人分享",
+"Allow users to only share with users in their groups" => "只允许用户与群组内用户分享",
 "Log" => "日志",
 "More" => "更多",
+"Developed by the <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." => "由 <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud 社区</a>开发,<a href=\"https://github.com/owncloud\" target=\"_blank\">s源代码</a> 以 <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a> 许可协议发布。",
 "Add your App" => "添加你的应用程序",
 "Select an App" => "选择一个程序",
 "See application page at apps.owncloud.com" => "在owncloud.com上查看应用程序",
+"<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>授权协议 <span class=\"author\"></span>",
 "Documentation" => "文档",
 "Managing Big Files" => "管理大文件",
 "Ask a question" => "提一个问题",
@@ -46,6 +68,7 @@
 "Create" => "新建",
 "Default Quota" => "默认限额",
 "Other" => "其他的",
+"Group Admin" => "群组管理员",
 "Quota" => "限额",
 "Delete" => "删除"
 );
diff --git a/settings/l10n/zh_CN.php b/settings/l10n/zh_CN.php
index 7927cec61c7559ef2de0d28dc0b7c67717f563c1..13f2f38925d7b5358083e3e54cea682cf6e98a5f 100644
--- a/settings/l10n/zh_CN.php
+++ b/settings/l10n/zh_CN.php
@@ -3,6 +3,7 @@
 "Authentication error" => "认证错误",
 "Group already exists" => "已存在组",
 "Unable to add group" => "不能添加组",
+"Could not enable app. " => "无法开启App",
 "Email saved" => "电子邮件已保存",
 "Invalid email" => "无效的电子邮件",
 "OpenID Changed" => "OpenID 已修改",
@@ -20,10 +21,10 @@
 "Security Warning" => "安全警告",
 "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "您的数据文件夹和文件可由互联网访问。OwnCloud提供的.htaccess文件未生效。我们强烈建议您配置服务器,以使数据文件夹不可被访问,或者将数据文件夹移到web服务器以外。",
 "Cron" => "计划任务",
-"execute one task with each page loaded" => "为每个装入的页面执行任务",
-"cron.php is registered at a webcron service" => "crop.php 已",
-"use systems cron service" => "实现系统 cron 服务",
-"Share API" => "共享API",
+"Execute one task with each page loaded" => "每次页面加载完成后执行任务",
+"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php已被注册到网络定时任务服务。通过http每分钟调用owncloud根目录的cron.php网页。",
+"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "使用系统定时任务服务。每分钟通过系统定时任务调用owncloud文件夹中的cron.php文件",
+"Sharing" => "分享",
 "Enable Share API" => "开启共享API",
 "Allow apps to use the Share API" => "允许 应用 使用共享API",
 "Allow links" => "允许连接",
diff --git a/settings/l10n/zh_TW.php b/settings/l10n/zh_TW.php
index 4f72c8398ba515bfd912e4c19efc70eeae332320..1a1621523024f7858bd49c96e1677dccc0de961d 100644
--- a/settings/l10n/zh_TW.php
+++ b/settings/l10n/zh_TW.php
@@ -19,8 +19,6 @@
 "__language_name__" => "__語言_名稱__",
 "Security Warning" => "安全性警告",
 "Cron" => "定期執行",
-"execute one task with each page loaded" => "當頁面載入時,執行",
-"use systems cron service" => "使用系統定期執行服務",
 "Allow links" => "允許連結",
 "Allow users to share items to the public with links" => "允許使用者以結連公開分享檔案",
 "Allow resharing" => "允許轉貼分享",
diff --git a/settings/templates/admin.php b/settings/templates/admin.php
index 4edbe64e9676de3bec7193bb298ab4ac91f55bea..35f34489fec170f90cc0358b01dcca5171aef2eb 100644
--- a/settings/templates/admin.php
+++ b/settings/templates/admin.php
@@ -29,16 +29,31 @@ if(!$_['htaccessworking']) {
 
 <fieldset class="personalblock" id="backgroundjobs">
 	<legend><strong><?php echo $l->t('Cron');?></strong></legend>
-	<input type="radio" name="mode" value="ajax" id="backgroundjobs_ajax" <?php if( $_['backgroundjobs_mode'] == "ajax" ) { echo 'checked="checked"'; } ?>>
-	<label for="backgroundjobs_ajax" title="<?php echo $l->t("execute one task with each page loaded"); ?>">AJAX</label><br />
-	<input type="radio" name="mode" value="webcron" id="backgroundjobs_webcron" <?php if( $_['backgroundjobs_mode'] == "webcron" ) { echo 'checked="checked"'; } ?>>
-	<label for="backgroundjobs_webcron" title="<?php echo $l->t("cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http."); ?>">Webcron</label><br />
-	<input type="radio" name="mode" value="cron" id="backgroundjobs_cron" <?php if( $_['backgroundjobs_mode'] == "cron" ) { echo 'checked="checked"'; } ?>>
-	<label for="backgroundjobs_cron" title="<?php echo $l->t("use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute."); ?>">Cron</label><br />
+	<table class="nostyle">
+		<tr>
+			<td>
+				<input type="radio" name="mode" value="ajax" id="backgroundjobs_ajax" <?php if( $_['backgroundjobs_mode'] == "ajax" ) { echo 'checked="checked"'; } ?>>
+				<label for="backgroundjobs_ajax">AJAX</label><br />
+				<em><?php echo $l->t("Execute one task with each page loaded"); ?></em>
+			</td>
+		</tr><tr>
+			<td>
+				<input type="radio" name="mode" value="webcron" id="backgroundjobs_webcron" <?php if( $_['backgroundjobs_mode'] == "webcron" ) { echo 'checked="checked"'; } ?>>
+				<label for="backgroundjobs_webcron">Webcron</label><br />
+				<em><?php echo $l->t("cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http."); ?></em>
+			</td>
+		</tr><tr>
+			<td>
+				<input type="radio" name="mode" value="cron" id="backgroundjobs_cron" <?php if( $_['backgroundjobs_mode'] == "cron" ) { echo 'checked="checked"'; } ?>>
+				<label for="backgroundjobs_cron">Cron</label><br />
+				<em><?php echo $l->t("Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute."); ?></em>
+			</td>
+		</tr>
+	</table>
 </fieldset>
 
 <fieldset class="personalblock" id="shareAPI">
-	<legend><strong><?php echo $l->t('Share API');?></strong></legend>
+	<legend><strong><?php echo $l->t('Sharing');?></strong></legend>
 	<table class="shareAPI nostyle">
 		<tr>
 			<td id="enable">
@@ -46,15 +61,19 @@ if(!$_['htaccessworking']) {
 				<label for="shareAPIEnabled"><?php echo $l->t('Enable Share API');?></label><br />
 				<em><?php echo $l->t('Allow apps to use the Share API'); ?></em>
 			</td>
+		</tr><tr>
 			<td <?php if ($_['shareAPIEnabled'] == 'no') echo 'style="display:none"';?>>
 				<input type="checkbox" name="shareapi_allow_links" id="allowLinks" value="1" <?php if ($_['allowLinks'] == 'yes') echo 'checked="checked"'; ?> />
 				<label for="allowLinks"><?php echo $l->t('Allow links');?></label><br />
 				<em><?php echo $l->t('Allow users to share items to the public with links'); ?></em>
 			</td>
+		</tr><tr>
 			<td <?php if ($_['shareAPIEnabled'] == 'no') echo 'style="display:none"';?>>
 				<input type="checkbox" name="shareapi_allow_resharing" id="allowResharing" value="1" <?php if ($_['allowResharing'] == 'yes') echo 'checked="checked"'; ?> />
 				<label for="allowResharing"><?php echo $l->t('Allow resharing');?></label><br />
 				<em><?php echo $l->t('Allow users to share items shared with them again'); ?></em>
+			</td>
+		</tr><tr>
 			<td <?php if ($_['shareAPIEnabled'] == 'no') echo 'style="display:none"';?>>
 				<input type="radio" name="shareapi_share_policy" id="sharePolicyGlobal" value="global" <?php if ($_['sharePolicy'] == 'global') echo 'checked="checked"'; ?> />
 				<label for="sharePolicyGlobal"><?php echo $l->t('Allow users to share with anyone'); ?></label><br />