diff --git a/apps/files/admin.php b/apps/files/admin.php
index 80fd4f4e4a..f747f8645f 100644
--- a/apps/files/admin.php
+++ b/apps/files/admin.php
@@ -30,11 +30,8 @@ OCP\User::checkAdminUser();
$htaccessWorking=(getenv('htaccessWorking')=='true');
$upload_max_filesize = OCP\Util::computerFileSize(ini_get('upload_max_filesize'));
-$upload_max_filesize_possible = OCP\Util::computerFileSize(get_cfg_var('upload_max_filesize'));
$post_max_size = OCP\Util::computerFileSize(ini_get('post_max_size'));
-$post_max_size_possible = OCP\Util::computerFileSize(get_cfg_var('post_max_size'));
$maxUploadFilesize = OCP\Util::humanFileSize(min($upload_max_filesize, $post_max_size));
-$maxUploadFilesizePossible = OCP\Util::humanFileSize(min($upload_max_filesize_possible, $post_max_size_possible));
if($_POST && OC_Util::isCallRegistered()) {
if(isset($_POST['maxUploadSize'])) {
if(($setMaxSize = OC_Files::setUploadLimit(OCP\Util::computerFileSize($_POST['maxUploadSize']))) !== false) {
@@ -60,7 +57,9 @@ $htaccessWritable=is_writable(OC::$SERVERROOT.'/.htaccess');
$tmpl = new OCP\Template( 'files', 'admin' );
$tmpl->assign( 'uploadChangable', $htaccessWorking and $htaccessWritable );
$tmpl->assign( 'uploadMaxFilesize', $maxUploadFilesize);
-$tmpl->assign( 'maxPossibleUploadSize', $maxUploadFilesizePossible);
+// max possible makes only sense on a 32 bit system
+$tmpl->assign( 'displayMaxPossibleUploadSize', PHP_INT_SIZE===4);
+$tmpl->assign( 'maxPossibleUploadSize', OCP\Util::humanFileSize(PHP_INT_MAX));
$tmpl->assign( 'allowZipDownload', $allowZipDownload);
$tmpl->assign( 'maxZipInputSize', $maxZipInputSize);
return $tmpl->fetchPage();
diff --git a/apps/files/ajax/rename.php b/apps/files/ajax/rename.php
index 470ee635a2..b62f61e2b6 100644
--- a/apps/files/ajax/rename.php
+++ b/apps/files/ajax/rename.php
@@ -11,7 +11,7 @@ $dir = stripslashes($_GET["dir"]);
$file = stripslashes($_GET["file"]);
$newname = stripslashes($_GET["newname"]);
-if (($dir != '' || $file != 'Shared')) {
+if (($dir != '' || $file != 'Shared') and $newname !== '.') {
$targetFile = \OC\Files\Filesystem::normalizePath($dir . '/' . $newname);
$sourceFile = \OC\Files\Filesystem::normalizePath($dir . '/' . $file);
if(\OC\Files\Filesystem::rename($sourceFile, $targetFile)) {
diff --git a/apps/files/ajax/upload.php b/apps/files/ajax/upload.php
index f40679f575..eea66d6b26 100644
--- a/apps/files/ajax/upload.php
+++ b/apps/files/ajax/upload.php
@@ -8,14 +8,15 @@ OCP\JSON::setContentTypeHeader('text/plain');
OCP\JSON::checkLoggedIn();
OCP\JSON::callCheck();
+$l=OC_L10N::get('files');
if (!isset($_FILES['files'])) {
- OCP\JSON::error(array('data' => array( 'message' => 'No file was uploaded. Unknown error' )));
+ OCP\JSON::error(array('data' => array( 'message' => $l->t( 'No file was uploaded. Unknown error' ))));
exit();
}
+
foreach ($_FILES['files']['error'] as $error) {
if ($error != 0) {
- $l=OC_L10N::get('files');
$errors = array(
UPLOAD_ERR_OK=>$l->t('There is no error, the file uploaded with success'),
UPLOAD_ERR_INI_SIZE=>$l->t('The uploaded file exceeds the upload_max_filesize directive in php.ini: ')
@@ -51,8 +52,8 @@ if(strpos($dir, '..') === false) {
for($i=0;$i<$fileCount;$i++) {
$target = OCP\Files::buildNotExistingFileName(stripslashes($dir), $files['name'][$i]);
// $path needs to be normalized - this failed within drag'n'drop upload to a sub-folder
- $target = OC_Filesystem::normalizePath($target);
- if(is_uploaded_file($files['tmp_name'][$i]) and OC_Filesystem::fromTmpFile($files['tmp_name'][$i], $target)) {
+ $target = \OC\Files\Filesystem::normalizePath($target);
+ if(is_uploaded_file($files['tmp_name'][$i]) and \OC\Files\Filesystem::fromTmpFile($files['tmp_name'][$i], $target)) {
$meta = \OC\Files\Filesystem::getFileInfo($target);
$result[]=array( 'status' => 'success',
'mime'=>$meta['mimetype'],
@@ -64,7 +65,7 @@ if(strpos($dir, '..') === false) {
OCP\JSON::encodedPrint($result);
exit();
} else {
- $error='invalid dir';
+ $error=$l->t( 'Invalid directory.' );
}
-OCP\JSON::error(array('data' => array('error' => $error, 'file' => $fileName)));
+OCP\JSON::error(array('data' => array('message' => $error )));
diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js
index 96dd0323d2..22d701d8ff 100644
--- a/apps/files/js/filelist.js
+++ b/apps/files/js/filelist.js
@@ -149,7 +149,7 @@ var FileList={
event.stopPropagation();
event.preventDefault();
var newname=input.val();
- if (Files.containsInvalidCharacters(newname)) {
+ if (!Files.isFileNameValid(newname)) {
return false;
}
if (newname != name) {
diff --git a/apps/files/js/files.js b/apps/files/js/files.js
index 7fb451b9a0..37bbce0053 100644
--- a/apps/files/js/files.js
+++ b/apps/files/js/files.js
@@ -26,17 +26,29 @@ Files={
});
procesSelection();
},
- containsInvalidCharacters:function (name) {
+ isFileNameValid:function (name) {
+ if (name === '.') {
+ $('#notification').text(t('files', "'.' is an invalid file name."));
+ $('#notification').fadeIn();
+ return false;
+ }
+ if (name.length == 0) {
+ $('#notification').text(t('files', "File name cannot be empty."));
+ $('#notification').fadeIn();
+ return false;
+ }
+
+ // check for invalid characters
var invalid_characters = ['\\', '/', '<', '>', ':', '"', '|', '?', '*'];
for (var i = 0; i < invalid_characters.length; i++) {
if (name.indexOf(invalid_characters[i]) != -1) {
$('#notification').text(t('files', "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed."));
$('#notification').fadeIn();
- return true;
+ return false;
}
}
$('#notification').fadeOut();
- return false;
+ return true;
}
};
$(document).ready(function() {
@@ -509,7 +521,7 @@ $(document).ready(function() {
$(this).append(input);
input.focus();
input.change(function(){
- if (type != 'web' && Files.containsInvalidCharacters($(this).val())) {
+ if (type != 'web' && !Files.isFileNameValid($(this).val())) {
return;
} else if( type == 'folder' && $('#dir').val() == '/' && $(this).val() == 'Shared') {
$('#notification').text(t('files','Invalid folder name. Usage of "Shared" is reserved by Owncloud'));
diff --git a/apps/files/l10n/bn_BD.php b/apps/files/l10n/bn_BD.php
new file mode 100644
index 0000000000..45cf1c2313
--- /dev/null
+++ b/apps/files/l10n/bn_BD.php
@@ -0,0 +1,46 @@
+ "কোন সমস্যা নেই, ফাইল আপলোড সুসম্পন্ন হয়েছে",
+"The uploaded file was only partially uploaded" => "আপলোড করা ফাইলটি আংশিক আপলোড হয়েছে",
+"No file was uploaded" => "কোন ফাইল আপলোড করা হয় নি",
+"Missing a temporary folder" => "অস্থায়ী ফোল্ডারটি খোয়া গিয়েছে ",
+"Failed to write to disk" => "ডিস্কে লিখতে পারা গেল না",
+"Files" => "ফাইল",
+"Unshare" => "ভাগাভাগি বাতিল",
+"Delete" => "মুছে ফেল",
+"Rename" => "পূনঃনামকরণ",
+"{new_name} already exists" => "{new_name} টি বিদ্যমান",
+"replace" => "প্রতিস্থাপন",
+"suggest name" => "নাম সুপারিশ কর",
+"cancel" => "বাতিল",
+"replaced {new_name}" => "{new_name} প্রতিস্থাপন করা হয়েছে",
+"undo" => "ক্রিয়া প্রত্যাহার",
+"replaced {new_name} with {old_name}" => "{new_name} কে {old_name} নামে প্রতিস্থাপন করা হয়েছে",
+"unshared {files}" => "{files} ভাগাভাগি বাতিল কর",
+"deleted {files}" => "{files} মুছে ফেলা হয়েছে",
+"Upload Error" => "আপলোড করতে সমস্যা",
+"Pending" => "মুলতুবি",
+"1 file uploading" => "১ টি ফাইল আপলোড করা হচ্ছে",
+"Upload cancelled." => "আপলোড বাতিল করা হয়েছে ।",
+"error while scanning" => "স্ক্যান করার সময় সমস্যা দেখা দিয়েছে",
+"Name" => "নাম",
+"Size" => "আকার",
+"Modified" => "পরিবর্তিত",
+"File handling" => "ফাইল হ্যান্ডলিং",
+"Maximum upload size" => "আপলোডের সর্বোচ্চ আকার",
+"max. possible: " => "সম্ভাব্য সর্বোচ্চঃ",
+"Needed for multi-file and folder downloads." => "একাধিক ফাইল এবং ফোল্ডার ডাউনলোড করার ক্ষেত্রে আবশ্যক।",
+"Enable ZIP-download" => "জিপ ডাউনলোড সক্রিয় কর",
+"0 is unlimited" => "০ এর অর্থ হলো অসীম",
+"Maximum input size for ZIP files" => "জিপ ফাইলের জন্য সর্বোচ্চ ইনপুট",
+"Save" => "সংরক্ষণ কর",
+"New" => "নতুন",
+"Text file" => "টেক্সট ফাইল",
+"Folder" => "ফোল্ডার",
+"Upload" => "আপলোড",
+"Cancel upload" => "আপলোড বাতিল কর",
+"Nothing in here. Upload something!" => "এখানে কোন কিছুই নেই। কিছু আপলোড করুন !",
+"Download" => "ডাউনলোড",
+"Upload too large" => "আপলোডের আকার অনেক বড়",
+"Files are being scanned, please wait." => "ফাইল স্ক্যান করা হচ্ছে, দয়া করে অপেক্ষা করুন।",
+"Current scanning" => "বর্তমান স্ক্যানিং"
+);
diff --git a/apps/files/l10n/ca.php b/apps/files/l10n/ca.php
index 0866d97bd7..981b8ec7ec 100644
--- a/apps/files/l10n/ca.php
+++ b/apps/files/l10n/ca.php
@@ -1,4 +1,5 @@
"No s'ha carregat cap fitxer. Error desconegut",
"There is no error, the file uploaded with success" => "El fitxer s'ha pujat correctament",
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "L’arxiu que voleu carregar supera el màxim definit en la directiva upload_max_filesize del php.ini:",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "El fitxer de pujada excedeix la directiva MAX_FILE_SIZE especificada al formulari HTML",
@@ -6,6 +7,8 @@
"No file was uploaded" => "El fitxer no s'ha pujat",
"Missing a temporary folder" => "S'ha perdut un fitxer temporal",
"Failed to write to disk" => "Ha fallat en escriure al disc",
+"Not enough space available" => "No hi ha prou espai disponible",
+"Invalid directory." => "Directori no vàlid.",
"Files" => "Fitxers",
"Unshare" => "Deixa de compartir",
"Delete" => "Suprimeix",
diff --git a/apps/files/l10n/cs_CZ.php b/apps/files/l10n/cs_CZ.php
index 12eb79a1a1..ab21b8a275 100644
--- a/apps/files/l10n/cs_CZ.php
+++ b/apps/files/l10n/cs_CZ.php
@@ -1,4 +1,5 @@
"Soubor nebyl odeslán. Neznámá chyba",
"There is no error, the file uploaded with success" => "Soubor byl odeslán úspěšně",
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Odesílaný soubor přesahuje velikost upload_max_filesize povolenou v php.ini:",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Odeslaný soubor přesáhl svou velikostí parametr MAX_FILE_SIZE specifikovaný v formuláři HTML",
@@ -6,6 +7,8 @@
"No file was uploaded" => "Žádný soubor nebyl odeslán",
"Missing a temporary folder" => "Chybí adresář pro dočasné soubory",
"Failed to write to disk" => "Zápis na disk selhal",
+"Not enough space available" => "Nedostatek dostupného místa",
+"Invalid directory." => "Neplatný adresář",
"Files" => "Soubory",
"Unshare" => "Zrušit sdílení",
"Delete" => "Smazat",
diff --git a/apps/files/l10n/da.php b/apps/files/l10n/da.php
index 05404d27af..e2fd0c8c18 100644
--- a/apps/files/l10n/da.php
+++ b/apps/files/l10n/da.php
@@ -1,4 +1,5 @@
"Ingen fil blev uploadet. Ukendt fejl.",
"There is no error, the file uploaded with success" => "Der er ingen fejl, filen blev uploadet med success",
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Den uploadede fil overstiger upload_max_filesize direktivet i php.ini",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Den uploadede fil overskrider MAX_FILE_SIZE -direktivet som er specificeret i HTML-formularen",
diff --git a/apps/files/l10n/de.php b/apps/files/l10n/de.php
index 8073ee28da..5f4778eb86 100644
--- a/apps/files/l10n/de.php
+++ b/apps/files/l10n/de.php
@@ -1,4 +1,5 @@
"Keine Datei hochgeladen. Unbekannter Fehler",
"There is no error, the file uploaded with success" => "Datei fehlerfrei hochgeladen.",
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Die hochgeladene Datei überschreitet die upload_max_filesize Vorgabe in php.ini",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Die Größe der hochzuladenden Datei überschreitet die MAX_FILE_SIZE-Richtlinie, die im HTML-Formular angegeben wurde",
@@ -6,6 +7,8 @@
"No file was uploaded" => "Es wurde keine Datei hochgeladen.",
"Missing a temporary folder" => "Temporärer Ordner fehlt.",
"Failed to write to disk" => "Fehler beim Schreiben auf die Festplatte",
+"Not enough space available" => "Nicht genug Speicherplatz verfügbar",
+"Invalid directory." => "Ungültiges Verzeichnis.",
"Files" => "Dateien",
"Unshare" => "Nicht mehr freigeben",
"Delete" => "Löschen",
diff --git a/apps/files/l10n/de_DE.php b/apps/files/l10n/de_DE.php
index 6a9730e94b..3ba3222907 100644
--- a/apps/files/l10n/de_DE.php
+++ b/apps/files/l10n/de_DE.php
@@ -1,4 +1,5 @@
"Keine Datei hochgeladen. Unbekannter Fehler",
"There is no error, the file uploaded with success" => "Es sind keine Fehler aufgetreten. Die Datei wurde erfolgreich hochgeladen.",
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Die hochgeladene Datei überschreitet die upload_max_filesize Vorgabe in php.ini",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Die Größe der hochzuladenden Datei überschreitet die MAX_FILE_SIZE-Richtlinie, die im HTML-Formular angegeben wurde",
@@ -6,6 +7,8 @@
"No file was uploaded" => "Es wurde keine Datei hochgeladen.",
"Missing a temporary folder" => "Der temporäre Ordner fehlt.",
"Failed to write to disk" => "Fehler beim Schreiben auf die Festplatte",
+"Not enough space available" => "Nicht genug Speicher verfügbar",
+"Invalid directory." => "Ungültiges Verzeichnis.",
"Files" => "Dateien",
"Unshare" => "Nicht mehr freigeben",
"Delete" => "Löschen",
diff --git a/apps/files/l10n/el.php b/apps/files/l10n/el.php
index ddbea42124..60be0bc7aa 100644
--- a/apps/files/l10n/el.php
+++ b/apps/files/l10n/el.php
@@ -1,4 +1,5 @@
"Δεν ανέβηκε κάποιο αρχείο. Άγνωστο σφάλμα",
"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" => "Το αρχείο υπερβαίνει την οδηγία μέγιστου επιτρεπτού μεγέθους \"MAX_FILE_SIZE\" που έχει οριστεί στην HTML φόρμα",
@@ -28,7 +29,7 @@
"1 file uploading" => "1 αρχείο ανεβαίνει",
"{count} files uploading" => "{count} αρχεία ανεβαίνουν",
"Upload cancelled." => "Η αποστολή ακυρώθηκε.",
-"File upload is in progress. Leaving the page now will cancel the upload." => "Η αποστολή του αρχείου βρίσκεται σε εξέλιξη. Έξοδος από την σελίδα τώρα θα ακυρώσει την αποστολή.",
+"File upload is in progress. Leaving the page now will cancel the upload." => "Η αποστολή του αρχείου βρίσκεται σε εξέλιξη. Το κλείσιμο της σελίδας θα ακυρώσει την αποστολή.",
"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Μη έγκυρο όνομα φακέλου. Η χρήση του \"Shared\" είναι δεσμευμένη από το Owncloud",
"{count} files scanned" => "{count} αρχεία ανιχνεύτηκαν",
"error while scanning" => "σφάλμα κατά την ανίχνευση",
@@ -56,7 +57,7 @@
"Nothing in here. Upload something!" => "Δεν υπάρχει τίποτα εδώ. Ανέβασε κάτι!",
"Download" => "Λήψη",
"Upload too large" => "Πολύ μεγάλο αρχείο προς αποστολή",
-"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Τα αρχεία που προσπαθείτε να ανεβάσετε υπερβαίνουν το μέγιστο μέγεθος αποστολής αρχείων σε αυτόν το διακομιστή.",
+"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/eo.php b/apps/files/l10n/eo.php
index bdde6d0fec..c371334933 100644
--- a/apps/files/l10n/eo.php
+++ b/apps/files/l10n/eo.php
@@ -1,4 +1,5 @@
"Neniu dosiero alŝutiĝis. Nekonata eraro.",
"There is no error, the file uploaded with success" => "Ne estas eraro, la dosiero alŝutiĝis sukcese",
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "La dosiero alŝutita superas la regulon upload_max_filesize el php.ini: ",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "La dosiero alŝutita superas la regulon MAX_FILE_SIZE, kiu estas difinita en la HTML-formularo",
diff --git a/apps/files/l10n/es.php b/apps/files/l10n/es.php
index 40b9ea9f23..2b9bdeeece 100644
--- a/apps/files/l10n/es.php
+++ b/apps/files/l10n/es.php
@@ -1,4 +1,5 @@
"Fallo no se subió el fichero",
"There is no error, the file uploaded with success" => "No se ha producido ningún error, el archivo se ha subido con éxito",
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "El archivo que intentas subir sobrepasa el tamaño definido por la variable upload_max_filesize en php.ini",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "El archivo que intentas subir sobrepasa el tamaño definido por la variable MAX_FILE_SIZE especificada en el formulario HTML",
@@ -6,6 +7,8 @@
"No file was uploaded" => "No se ha subido ningún archivo",
"Missing a temporary folder" => "Falta un directorio temporal",
"Failed to write to disk" => "La escritura en disco ha fallado",
+"Not enough space available" => "No hay suficiente espacio disponible",
+"Invalid directory." => "Directorio invalido.",
"Files" => "Archivos",
"Unshare" => "Dejar de compartir",
"Delete" => "Eliminar",
diff --git a/apps/files/l10n/es_AR.php b/apps/files/l10n/es_AR.php
index e514d8de59..9375954c02 100644
--- a/apps/files/l10n/es_AR.php
+++ b/apps/files/l10n/es_AR.php
@@ -1,4 +1,5 @@
"El archivo no fue subido. Error desconocido",
"There is no error, the file uploaded with success" => "No se han producido errores, el archivo se ha subido con éxito",
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "El archivo que intentás subir excede el tamaño definido por upload_max_filesize en el php.ini:",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "El archivo que intentás subir sobrepasa el tamaño definido por la variable MAX_FILE_SIZE especificada en el formulario HTML",
@@ -6,6 +7,8 @@
"No file was uploaded" => "El archivo no fue subido",
"Missing a temporary folder" => "Falta un directorio temporal",
"Failed to write to disk" => "Error al escribir en el disco",
+"Not enough space available" => "No hay suficiente espacio disponible",
+"Invalid directory." => "Directorio invalido.",
"Files" => "Archivos",
"Unshare" => "Dejar de compartir",
"Delete" => "Borrar",
diff --git a/apps/files/l10n/et_EE.php b/apps/files/l10n/et_EE.php
index 0fddbfdca4..0dfc7b5bcd 100644
--- a/apps/files/l10n/et_EE.php
+++ b/apps/files/l10n/et_EE.php
@@ -1,4 +1,5 @@
"Ühtegi faili ei laetud üles. Tundmatu viga",
"There is no error, the file uploaded with success" => "Ühtegi viga pole, fail on üles laetud",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Üles laetud faili suurus ületab HTML vormis määratud upload_max_filesize suuruse",
"The uploaded file was only partially uploaded" => "Fail laeti üles ainult osaliselt",
diff --git a/apps/files/l10n/eu.php b/apps/files/l10n/eu.php
index 0b223b93d8..e141fa6572 100644
--- a/apps/files/l10n/eu.php
+++ b/apps/files/l10n/eu.php
@@ -1,4 +1,5 @@
"Ez da fitxategirik igo. Errore ezezaguna",
"There is no error, the file uploaded with success" => "Ez da arazorik izan, fitxategia ongi igo da",
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Igotako fitxategiak php.ini fitxategian ezarritako upload_max_filesize muga gainditu du:",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Igotako fitxategiaren tamaina HTML inprimakiko MAX_FILESIZE direktiban adierazitakoa baino handiagoa da",
diff --git a/apps/files/l10n/fa.php b/apps/files/l10n/fa.php
index 8284593e88..062df6a56b 100644
--- a/apps/files/l10n/fa.php
+++ b/apps/files/l10n/fa.php
@@ -1,4 +1,5 @@
"هیچ فایلی آپلود نشد.خطای ناشناس",
"There is no error, the file uploaded with success" => "هیچ خطایی وجود ندارد فایل با موفقیت بار گذاری شد",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "حداکثر حجم مجاز برای بارگذاری از طریق HTML \nMAX_FILE_SIZE",
"The uploaded file was only partially uploaded" => "مقدار کمی از فایل بارگذاری شده",
diff --git a/apps/files/l10n/fi_FI.php b/apps/files/l10n/fi_FI.php
index 772dabbb39..00f8ded516 100644
--- a/apps/files/l10n/fi_FI.php
+++ b/apps/files/l10n/fi_FI.php
@@ -1,10 +1,13 @@
"Tiedostoa ei lähetetty. Tuntematon virhe",
"There is no error, the file uploaded with success" => "Ei virheitä, tiedosto lähetettiin onnistuneesti",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Lähetetty tiedosto ylittää HTML-lomakkeessa määritetyn MAX_FILE_SIZE-arvon ylärajan",
"The uploaded file was only partially uploaded" => "Tiedoston lähetys onnistui vain osittain",
"No file was uploaded" => "Yhtäkään tiedostoa ei lähetetty",
"Missing a temporary folder" => "Väliaikaiskansiota ei ole olemassa",
"Failed to write to disk" => "Levylle kirjoitus epäonnistui",
+"Not enough space available" => "Tilaa ei ole riittävästi",
+"Invalid directory." => "Virheellinen kansio.",
"Files" => "Tiedostot",
"Unshare" => "Peru jakaminen",
"Delete" => "Poista",
diff --git a/apps/files/l10n/fr.php b/apps/files/l10n/fr.php
index 86d476873d..8ffb0d351f 100644
--- a/apps/files/l10n/fr.php
+++ b/apps/files/l10n/fr.php
@@ -1,4 +1,5 @@
"Aucun fichier n'a été chargé. Erreur inconnue",
"There is no error, the file uploaded with success" => "Aucune erreur, le fichier a été téléversé avec succès",
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Le fichier envoyé dépasse la valeur upload_max_filesize située dans le fichier php.ini:",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Le fichier téléversé excède la valeur de MAX_FILE_SIZE spécifiée dans le formulaire HTML",
@@ -14,7 +15,7 @@
"replace" => "remplacer",
"suggest name" => "Suggérer un nom",
"cancel" => "annuler",
-"replaced {new_name}" => "{new_name} a été replacé",
+"replaced {new_name}" => "{new_name} a été remplacé",
"undo" => "annuler",
"replaced {new_name} with {old_name}" => "{new_name} a été remplacé par {old_name}",
"unshared {files}" => "Fichiers non partagés : {files}",
diff --git a/apps/files/l10n/gl.php b/apps/files/l10n/gl.php
index 5c50e3764c..eb9503d6ca 100644
--- a/apps/files/l10n/gl.php
+++ b/apps/files/l10n/gl.php
@@ -1,4 +1,5 @@
"Non se subiu ningún ficheiro. Erro descoñecido.",
"There is no error, the file uploaded with success" => "Non hai erros. O ficheiro enviouse correctamente",
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "O ficheiro subido excede a directiva indicada polo tamaño_máximo_de_subida de php.ini",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "O ficheiro enviado supera a directiva MAX_FILE_SIZE que foi indicada no formulario HTML",
@@ -6,6 +7,8 @@
"No file was uploaded" => "Non se enviou ningún ficheiro",
"Missing a temporary folder" => "Falta un cartafol temporal",
"Failed to write to disk" => "Erro ao escribir no disco",
+"Not enough space available" => "O espazo dispoñíbel é insuficiente",
+"Invalid directory." => "O directorio é incorrecto.",
"Files" => "Ficheiros",
"Unshare" => "Deixar de compartir",
"Delete" => "Eliminar",
diff --git a/apps/files/l10n/he.php b/apps/files/l10n/he.php
index 4c73493211..971933f231 100644
--- a/apps/files/l10n/he.php
+++ b/apps/files/l10n/he.php
@@ -1,4 +1,5 @@
"לא הועלה קובץ. טעות בלתי מזוהה.",
"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" => "הקובץ שהועלה חרג מההנחיה MAX_FILE_SIZE שצוינה בטופס ה־HTML",
diff --git a/apps/files/l10n/hu_HU.php b/apps/files/l10n/hu_HU.php
index 083d5a391e..cb06fe087e 100644
--- a/apps/files/l10n/hu_HU.php
+++ b/apps/files/l10n/hu_HU.php
@@ -1,42 +1,63 @@
"Nincs hiba, a fájl sikeresen feltöltve.",
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "A feltöltött fájl meghaladja a MAX_FILE_SIZE direktívát ami meghatározott a HTML form-ban.",
-"The uploaded file was only partially uploaded" => "Az eredeti fájl csak részlegesen van feltöltve.",
-"No file was uploaded" => "Nem lett fájl feltöltve.",
-"Missing a temporary folder" => "Hiányzik az ideiglenes könyvtár",
-"Failed to write to disk" => "Nem írható lemezre",
+"No file was uploaded. Unknown error" => "Nem történt feltöltés. Ismeretlen hiba",
+"There is no error, the file uploaded with success" => "A fájlt sikerült feltölteni",
+"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "A feltöltött fájl mérete meghaladja a php.ini állományban megadott upload_max_filesize paraméter értékét.",
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "A feltöltött fájl mérete meghaladja a MAX_FILE_SIZE paramétert, ami a HTML formban került megadásra.",
+"The uploaded file was only partially uploaded" => "Az eredeti fájlt csak részben sikerült feltölteni.",
+"No file was uploaded" => "Nem töltődött fel semmi",
+"Missing a temporary folder" => "Hiányzik egy ideiglenes mappa",
+"Failed to write to disk" => "Nem sikerült a lemezre történő írás",
"Files" => "Fájlok",
-"Unshare" => "Nem oszt meg",
+"Unshare" => "Megosztás visszavonása",
"Delete" => "Törlés",
-"replace" => "cserél",
+"Rename" => "Átnevezés",
+"{new_name} already exists" => "{new_name} már létezik",
+"replace" => "írjuk fölül",
+"suggest name" => "legyen más neve",
"cancel" => "mégse",
-"undo" => "visszavon",
+"replaced {new_name}" => "a(z) {new_name} állományt kicseréltük",
+"undo" => "visszavonás",
+"replaced {new_name} with {old_name}" => "{new_name} fájlt kicseréltük ezzel: {old_name}",
+"unshared {files}" => "{files} fájl megosztása visszavonva",
+"deleted {files}" => "{files} fájl törölve",
+"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Érvénytelen elnevezés. Ezek a karakterek nem használhatók: '\\', '/', '<', '>', ':', '\"', '|', '?' és '*'",
"generating ZIP-file, it may take some time." => "ZIP-fájl generálása, ez eltarthat egy ideig.",
"Unable to upload your file as it is a directory or has 0 bytes" => "Nem tölthető fel, mert mappa volt, vagy 0 byte méretű",
"Upload Error" => "Feltöltési hiba",
-"Close" => "Bezár",
+"Close" => "Bezárás",
"Pending" => "Folyamatban",
-"Upload cancelled." => "Feltöltés megszakítva",
+"1 file uploading" => "1 fájl töltődik föl",
+"{count} files uploading" => "{count} fájl töltődik föl",
+"Upload cancelled." => "A feltöltést megszakítottuk.",
+"File upload is in progress. Leaving the page now will cancel the upload." => "Fájlfeltöltés van folyamatban. Az oldal elhagyása megszakítja a feltöltést.",
+"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Érvénytelen mappanév. A \"Shared\" elnevezést az Owncloud rendszer használja.",
+"{count} files scanned" => "{count} fájlt találtunk",
+"error while scanning" => "Hiba a fájllista-ellenőrzés során",
"Name" => "Név",
"Size" => "Méret",
"Modified" => "Módosítva",
+"1 folder" => "1 mappa",
+"{count} folders" => "{count} mappa",
+"1 file" => "1 fájl",
+"{count} files" => "{count} fájl",
"File handling" => "Fájlkezelés",
"Maximum upload size" => "Maximális feltölthető fájlméret",
-"max. possible: " => "max. lehetséges",
-"Needed for multi-file and folder downloads." => "Kötegelt file- vagy mappaletöltéshez szükséges",
-"Enable ZIP-download" => "ZIP-letöltés engedélyezése",
+"max. possible: " => "max. lehetséges: ",
+"Needed for multi-file and folder downloads." => "Kötegelt fájl- vagy mappaletöltéshez szükséges",
+"Enable ZIP-download" => "A ZIP-letöltés engedélyezése",
"0 is unlimited" => "0 = korlátlan",
-"Maximum input size for ZIP files" => "ZIP file-ok maximum mérete",
+"Maximum input size for ZIP files" => "ZIP-fájlok maximális kiindulási mérete",
"Save" => "Mentés",
"New" => "Új",
"Text file" => "Szövegfájl",
"Folder" => "Mappa",
+"From link" => "Feltöltés linkről",
"Upload" => "Feltöltés",
-"Cancel upload" => "Feltöltés megszakítása",
-"Nothing in here. Upload something!" => "Töltsön fel egy fájlt.",
+"Cancel upload" => "A feltöltés megszakítása",
+"Nothing in here. Upload something!" => "Itt nincs semmi. Töltsön fel valamit!",
"Download" => "Letöltés",
-"Upload too large" => "Feltöltés túl nagy",
-"The files you are trying to upload exceed the maximum size for file uploads on this server." => "A fájlokat amit próbálsz feltölteni meghaladta a legnagyobb fájlméretet ezen a szerveren.",
-"Files are being scanned, please wait." => "File-ok vizsgálata, kis türelmet",
-"Current scanning" => "Aktuális vizsgálat"
+"Upload too large" => "A feltöltés túl nagy",
+"The files you are trying to upload exceed the maximum size for file uploads on this server." => "A feltöltendő állományok mérete meghaladja a kiszolgálón megengedett maximális méretet.",
+"Files are being scanned, please wait." => "A fájllista ellenőrzése zajlik, kis türelmet!",
+"Current scanning" => "Ellenőrzés alatt"
);
diff --git a/apps/files/l10n/is.php b/apps/files/l10n/is.php
new file mode 100644
index 0000000000..bca878873a
--- /dev/null
+++ b/apps/files/l10n/is.php
@@ -0,0 +1,62 @@
+ "Engin villa, innsending heppnaðist",
+"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Innsend skrá er stærri en upload_max stillingin í php.ini:",
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Innsenda skráin er stærri en MAX_FILE_SIZE sem skilgreint er í HTML sniðinu.",
+"The uploaded file was only partially uploaded" => "Einungis hluti af innsendri skrá skilaði sér",
+"No file was uploaded" => "Engin skrá skilaði sér",
+"Missing a temporary folder" => "Vantar bráðabirgðamöppu",
+"Failed to write to disk" => "Tókst ekki að skrifa á disk",
+"Files" => "Skrár",
+"Unshare" => "Hætta deilingu",
+"Delete" => "Eyða",
+"Rename" => "Endurskýra",
+"{new_name} already exists" => "{new_name} er þegar til",
+"replace" => "yfirskrifa",
+"suggest name" => "stinga upp á nafni",
+"cancel" => "hætta við",
+"replaced {new_name}" => "endurskýrði {new_name}",
+"undo" => "afturkalla",
+"replaced {new_name} with {old_name}" => "yfirskrifaði {new_name} með {old_name}",
+"unshared {files}" => "Hætti við deilingu á {files}",
+"deleted {files}" => "eyddi {files}",
+"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Ógilt nafn, táknin '\\', '/', '<', '>', ':', '\"', '|', '?' og '*' eru ekki leyfð.",
+"generating ZIP-file, it may take some time." => "bý til ZIP skrá, það gæti tekið smá stund.",
+"Unable to upload your file as it is a directory or has 0 bytes" => "Innsending á skrá mistókst, hugsanlega sendir þú möppu eða skráin er 0 bæti.",
+"Upload Error" => "Villa við innsendingu",
+"Close" => "Loka",
+"Pending" => "Bíður",
+"1 file uploading" => "1 skrá innsend",
+"{count} files uploading" => "{count} skrár innsendar",
+"Upload cancelled." => "Hætt við innsendingu.",
+"File upload is in progress. Leaving the page now will cancel the upload." => "Innsending í gangi. Ef þú ferð af þessari síðu mun innsending misheppnast.",
+"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Ógilt nafn á möppu. Nafnið \"Shared\" er frátekið fyrir ownCloud.",
+"{count} files scanned" => "{count} skrár skimaðar",
+"error while scanning" => "villa við skimun",
+"Name" => "Nafn",
+"Size" => "Stærð",
+"Modified" => "Breytt",
+"1 folder" => "1 mappa",
+"{count} folders" => "{count} möppur",
+"1 file" => "1 skrá",
+"{count} files" => "{count} skrár",
+"File handling" => "Meðhöndlun skrár",
+"Maximum upload size" => "Hámarks stærð innsendingar",
+"max. possible: " => "hámark mögulegt: ",
+"Needed for multi-file and folder downloads." => "Nauðsynlegt til að sækja margar skrár og möppur í einu.",
+"Enable ZIP-download" => "Virkja ZIP niðurhal.",
+"0 is unlimited" => "0 er ótakmarkað",
+"Maximum input size for ZIP files" => "Hámarks inntaksstærð fyrir ZIP skrár",
+"Save" => "Vista",
+"New" => "Nýtt",
+"Text file" => "Texta skrá",
+"Folder" => "Mappa",
+"From link" => "Af tengli",
+"Upload" => "Senda inn",
+"Cancel upload" => "Hætta við innsendingu",
+"Nothing in here. Upload something!" => "Ekkert hér. Sendu eitthvað inn!",
+"Download" => "Niðurhal",
+"Upload too large" => "Innsend skrá of stór",
+"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Skrárnar sem þú ert að senda inn eru stærri en hámarks innsendingarstærð á þessum netþjóni.",
+"Files are being scanned, please wait." => "Verið er að skima skrár, vinsamlegast hinkraðu.",
+"Current scanning" => "Er að skima"
+);
diff --git a/apps/files/l10n/it.php b/apps/files/l10n/it.php
index 90b3417122..6c7ca59774 100644
--- a/apps/files/l10n/it.php
+++ b/apps/files/l10n/it.php
@@ -1,4 +1,5 @@
"Nessun file è stato inviato. Errore sconosciuto",
"There is no error, the file uploaded with success" => "Non ci sono errori, file caricato con successo",
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Il file caricato supera la direttiva upload_max_filesize in php.ini:",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Il file caricato supera il valore MAX_FILE_SIZE definito nel form HTML",
@@ -6,6 +7,8 @@
"No file was uploaded" => "Nessun file è stato caricato",
"Missing a temporary folder" => "Cartella temporanea mancante",
"Failed to write to disk" => "Scrittura su disco non riuscita",
+"Not enough space available" => "Spazio disponibile insufficiente",
+"Invalid directory." => "Cartella non valida.",
"Files" => "File",
"Unshare" => "Rimuovi condivisione",
"Delete" => "Elimina",
diff --git a/apps/files/l10n/ja_JP.php b/apps/files/l10n/ja_JP.php
index 7b8c3ca477..ca5ba56447 100644
--- a/apps/files/l10n/ja_JP.php
+++ b/apps/files/l10n/ja_JP.php
@@ -1,4 +1,5 @@
"ファイルは何もアップロードされていません。不明なエラー",
"There is no error, the file uploaded with success" => "エラーはありません。ファイルのアップロードは成功しました",
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "アップロードされたファイルはphp.ini の upload_max_filesize に設定されたサイズを超えています:",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "アップロードされたファイルはHTMLのフォームに設定されたMAX_FILE_SIZEに設定されたサイズを超えています",
@@ -6,6 +7,8 @@
"No file was uploaded" => "ファイルはアップロードされませんでした",
"Missing a temporary folder" => "テンポラリフォルダが見つかりません",
"Failed to write to disk" => "ディスクへの書き込みに失敗しました",
+"Not enough space available" => "利用可能なスペースが十分にありません",
+"Invalid directory." => "無効なディレクトリです。",
"Files" => "ファイル",
"Unshare" => "共有しない",
"Delete" => "削除",
diff --git a/apps/files/l10n/ko.php b/apps/files/l10n/ko.php
index 4b5d57dff9..d0a6d57538 100644
--- a/apps/files/l10n/ko.php
+++ b/apps/files/l10n/ko.php
@@ -1,4 +1,5 @@
"파일이 업로드되지 않았습니다. 알 수 없는 오류입니다",
"There is no error, the file uploaded with success" => "업로드에 성공하였습니다.",
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "업로드한 파일이 php.ini의 upload_max_filesize보다 큽니다:",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "업로드한 파일이 HTML 문서에 지정한 MAX_FILE_SIZE보다 더 큼",
diff --git a/apps/files/l10n/mk.php b/apps/files/l10n/mk.php
index 1d22746156..9eb11360fe 100644
--- a/apps/files/l10n/mk.php
+++ b/apps/files/l10n/mk.php
@@ -1,4 +1,5 @@
"Ниту еден фајл не се вчита. Непозната грешка",
"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" => "Подигнатата датотеката ја надминува MAX_FILE_SIZE директивата која беше поставена во HTML формата",
diff --git a/apps/files/l10n/ms_MY.php b/apps/files/l10n/ms_MY.php
index d7756698d0..7fa8784084 100644
--- a/apps/files/l10n/ms_MY.php
+++ b/apps/files/l10n/ms_MY.php
@@ -1,4 +1,5 @@
"Tiada fail dimuatnaik. Ralat tidak diketahui.",
"There is no error, the file uploaded with success" => "Tiada ralat, fail berjaya dimuat naik.",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Fail yang dimuat naik melebihi MAX_FILE_SIZE yang dinyatakan dalam form HTML ",
"The uploaded file was only partially uploaded" => "Sebahagian daripada fail telah dimuat naik. ",
diff --git a/apps/files/l10n/nb_NO.php b/apps/files/l10n/nb_NO.php
index e5615a1c29..f97228ecd1 100644
--- a/apps/files/l10n/nb_NO.php
+++ b/apps/files/l10n/nb_NO.php
@@ -1,4 +1,5 @@
"Ingen filer ble lastet opp. Ukjent feil.",
"There is no error, the file uploaded with success" => "Det er ingen feil. Filen ble lastet opp.",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Filstørrelsen overskrider maksgrensen på MAX_FILE_SIZE som ble oppgitt i HTML-skjemaet",
"The uploaded file was only partially uploaded" => "Filopplastningen ble bare delvis gjennomført",
@@ -17,6 +18,7 @@
"undo" => "angre",
"replaced {new_name} with {old_name}" => "erstatt {new_name} med {old_name}",
"deleted {files}" => "slettet {files}",
+"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Ugyldig navn, '\\', '/', '<', '>', ':', '\"', '|', '?' og '*' er ikke tillatt.",
"generating ZIP-file, it may take some time." => "opprettet ZIP-fil, dette kan ta litt tid",
"Unable to upload your file as it is a directory or has 0 bytes" => "Kan ikke laste opp filen din siden det er en mappe eller den har 0 bytes",
"Upload Error" => "Opplasting feilet",
@@ -26,6 +28,7 @@
"{count} files uploading" => "{count} filer laster opp",
"Upload cancelled." => "Opplasting avbrutt.",
"File upload is in progress. Leaving the page now will cancel the upload." => "Filopplasting pågår. Forlater du siden nå avbrytes opplastingen.",
+"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Ugyldig mappenavn. Bruk av \"Shared\" er reservert av ownCloud.",
"{count} files scanned" => "{count} filer lest inn",
"error while scanning" => "feil under skanning",
"Name" => "Navn",
@@ -46,6 +49,7 @@
"New" => "Ny",
"Text file" => "Tekstfil",
"Folder" => "Mappe",
+"From link" => "Fra link",
"Upload" => "Last opp",
"Cancel upload" => "Avbryt opplasting",
"Nothing in here. Upload something!" => "Ingenting her. Last opp noe!",
diff --git a/apps/files/l10n/nl.php b/apps/files/l10n/nl.php
index 093a5430d5..998caabf9f 100644
--- a/apps/files/l10n/nl.php
+++ b/apps/files/l10n/nl.php
@@ -1,4 +1,5 @@
"Er was geen bestand geladen. Onbekende fout",
"There is no error, the file uploaded with success" => "Geen fout opgetreden, bestand successvol geupload.",
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Het geüploade bestand overscheidt de upload_max_filesize optie in php.ini:",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Het geüploade bestand is groter dan de MAX_FILE_SIZE richtlijn die is opgegeven in de HTML-formulier",
diff --git a/apps/files/l10n/pl.php b/apps/files/l10n/pl.php
index 8051eae8c4..e485fdc6c3 100644
--- a/apps/files/l10n/pl.php
+++ b/apps/files/l10n/pl.php
@@ -1,4 +1,5 @@
"Plik nie został załadowany. Nieznany błąd",
"There is no error, the file uploaded with success" => "Przesłano plik",
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Wgrany plik przekracza wartość upload_max_filesize zdefiniowaną w php.ini: ",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Rozmiar przesłanego pliku przekracza maksymalną wartość dyrektywy upload_max_filesize, zawartą formularzu HTML",
diff --git a/apps/files/l10n/pt_BR.php b/apps/files/l10n/pt_BR.php
index 97e5c94fb3..5f266bd7cd 100644
--- a/apps/files/l10n/pt_BR.php
+++ b/apps/files/l10n/pt_BR.php
@@ -1,4 +1,5 @@
"Nenhum arquivo foi transferido. Erro desconhecido",
"There is no error, the file uploaded with success" => "Não houve nenhum erro, o arquivo foi transferido com sucesso",
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "O arquivo enviado excede a diretiva upload_max_filesize no php.ini: ",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "O arquivo carregado excede o MAX_FILE_SIZE que foi especificado no formulário HTML",
diff --git a/apps/files/l10n/pt_PT.php b/apps/files/l10n/pt_PT.php
index 8c90fd4771..36c9d6e62a 100644
--- a/apps/files/l10n/pt_PT.php
+++ b/apps/files/l10n/pt_PT.php
@@ -1,4 +1,5 @@
"Nenhum ficheiro foi carregado. Erro desconhecido",
"There is no error, the file uploaded with success" => "Sem erro, ficheiro enviado com sucesso",
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "O ficheiro enviado excede o limite permitido na directiva do php.ini upload_max_filesize",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "O ficheiro enviado excede o diretivo MAX_FILE_SIZE especificado no formulário HTML",
@@ -6,6 +7,8 @@
"No file was uploaded" => "Não foi enviado nenhum ficheiro",
"Missing a temporary folder" => "Falta uma pasta temporária",
"Failed to write to disk" => "Falhou a escrita no disco",
+"Not enough space available" => "Espaço em disco insuficiente!",
+"Invalid directory." => "Directório Inválido",
"Files" => "Ficheiros",
"Unshare" => "Deixar de partilhar",
"Delete" => "Apagar",
diff --git a/apps/files/l10n/ro.php b/apps/files/l10n/ro.php
index 34e8dc8a50..b09c8f39c8 100644
--- a/apps/files/l10n/ro.php
+++ b/apps/files/l10n/ro.php
@@ -1,5 +1,7 @@
"Nici un fișier nu a fost încărcat. Eroare necunoscută",
"There is no error, the file uploaded with success" => "Nicio eroare, fișierul a fost încărcat cu succes",
+"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Fisierul incarcat depaseste upload_max_filesize permisi in php.ini: ",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Fișierul are o dimensiune mai mare decât variabile MAX_FILE_SIZE specificată în formularul HTML",
"The uploaded file was only partially uploaded" => "Fișierul a fost încărcat doar parțial",
"No file was uploaded" => "Niciun fișier încărcat",
@@ -9,22 +11,35 @@
"Unshare" => "Anulează partajarea",
"Delete" => "Șterge",
"Rename" => "Redenumire",
+"{new_name} already exists" => "{new_name} deja exista",
"replace" => "înlocuire",
"suggest name" => "sugerează nume",
"cancel" => "anulare",
+"replaced {new_name}" => "inlocuit {new_name}",
"undo" => "Anulează ultima acțiune",
+"replaced {new_name} with {old_name}" => "{new_name} inlocuit cu {old_name}",
+"unshared {files}" => "nedistribuit {files}",
+"deleted {files}" => "Sterse {files}",
+"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nume invalid, '\\', '/', '<', '>', ':', '\"', '|', '?' si '*' nu sunt permise.",
"generating ZIP-file, it may take some time." => "se generază fișierul ZIP, va dura ceva timp.",
"Unable to upload your file as it is a directory or has 0 bytes" => "Nu s-a putut încărca fișierul tău deoarece pare să fie un director sau are 0 bytes.",
"Upload Error" => "Eroare la încărcare",
"Close" => "Închide",
"Pending" => "În așteptare",
"1 file uploading" => "un fișier se încarcă",
+"{count} files uploading" => "{count} fisiere incarcate",
"Upload cancelled." => "Încărcare anulată.",
"File upload is in progress. Leaving the page now will cancel the upload." => "Fișierul este în curs de încărcare. Părăsirea paginii va întrerupe încărcarea.",
+"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Nume de folder invalid. Numele este rezervat pentru OwnCloud",
+"{count} files scanned" => "{count} fisiere scanate",
"error while scanning" => "eroare la scanarea",
"Name" => "Nume",
"Size" => "Dimensiune",
"Modified" => "Modificat",
+"1 folder" => "1 folder",
+"{count} folders" => "{count} foldare",
+"1 file" => "1 fisier",
+"{count} files" => "{count} fisiere",
"File handling" => "Manipulare fișiere",
"Maximum upload size" => "Dimensiune maximă admisă la încărcare",
"max. possible: " => "max. posibil:",
@@ -36,6 +51,7 @@
"New" => "Nou",
"Text file" => "Fișier text",
"Folder" => "Dosar",
+"From link" => "de la adresa",
"Upload" => "Încarcă",
"Cancel upload" => "Anulează încărcarea",
"Nothing in here. Upload something!" => "Nimic aici. Încarcă ceva!",
diff --git a/apps/files/l10n/ru.php b/apps/files/l10n/ru.php
index 4b6d0a8b15..403bd5c098 100644
--- a/apps/files/l10n/ru.php
+++ b/apps/files/l10n/ru.php
@@ -1,4 +1,5 @@
"Файл не был загружен. Неизвестная ошибка",
"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" => "Файл превышает размер MAX_FILE_SIZE, указаный в HTML-форме",
diff --git a/apps/files/l10n/ru_RU.php b/apps/files/l10n/ru_RU.php
index bb701aac00..d7d3d37613 100644
--- a/apps/files/l10n/ru_RU.php
+++ b/apps/files/l10n/ru_RU.php
@@ -1,4 +1,5 @@
"Файл не был загружен. Неизвестная ошибка",
"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" => "Размер загруженного",
diff --git a/apps/files/l10n/si_LK.php b/apps/files/l10n/si_LK.php
index e256075896..be33077f81 100644
--- a/apps/files/l10n/si_LK.php
+++ b/apps/files/l10n/si_LK.php
@@ -1,4 +1,5 @@
"ගොනුවක් උඩුගත නොවුනි. නොහැඳිනු දෝෂයක්",
"There is no error, the file uploaded with success" => "නිවැරදි ව ගොනුව උඩුගත කෙරිනි",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "උඩුගත කළ ගොනුවේ විශාලත්වය HTML පෝරමයේ නියම කළ ඇති MAX_FILE_SIZE විශාලත්වයට වඩා වැඩිය",
"The uploaded file was only partially uploaded" => "උඩුගත කළ ගොනුවේ කොටසක් පමණක් උඩුගත විය",
diff --git a/apps/files/l10n/sk_SK.php b/apps/files/l10n/sk_SK.php
index 21d9710f6b..1043e7ae9d 100644
--- a/apps/files/l10n/sk_SK.php
+++ b/apps/files/l10n/sk_SK.php
@@ -1,4 +1,5 @@
"Žiaden súbor nebol odoslaný. Neznáma chyba",
"There is no error, the file uploaded with success" => "Nenastala žiadna chyba, súbor bol úspešne nahraný",
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Nahraný súbor predčil konfiguračnú direktívu upload_max_filesize v súbore php.ini:",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Nahrávaný súbor presiahol MAX_FILE_SIZE direktívu, ktorá bola špecifikovaná v HTML formulári",
diff --git a/apps/files/l10n/sl.php b/apps/files/l10n/sl.php
index c5ee6c422d..f07751073c 100644
--- a/apps/files/l10n/sl.php
+++ b/apps/files/l10n/sl.php
@@ -1,4 +1,5 @@
"Nobena datoteka ni naložena. Neznana napaka.",
"There is no error, the file uploaded with success" => "Datoteka je uspešno naložena brez napak.",
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Naložena datoteka presega dovoljeno velikost. Le-ta je določena z vrstico upload_max_filesize v datoteki php.ini:",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Naložena datoteka presega velikost, ki jo določa parameter MAX_FILE_SIZE v HTML obrazcu",
diff --git a/apps/files/l10n/sv.php b/apps/files/l10n/sv.php
index bcc849242a..f04ae0ac22 100644
--- a/apps/files/l10n/sv.php
+++ b/apps/files/l10n/sv.php
@@ -1,4 +1,5 @@
"Ingen fil uppladdad. Okänt fel",
"There is no error, the file uploaded with success" => "Inga fel uppstod. Filen laddades upp utan problem",
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Den uppladdade filen överskrider upload_max_filesize direktivet php.ini:",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Den uppladdade filen överstiger MAX_FILE_SIZE direktivet som anges i HTML-formulär",
@@ -6,6 +7,8 @@
"No file was uploaded" => "Ingen fil blev uppladdad",
"Missing a temporary folder" => "Saknar en tillfällig mapp",
"Failed to write to disk" => "Misslyckades spara till disk",
+"Not enough space available" => "Inte tillräckligt med utrymme tillgängligt",
+"Invalid directory." => "Felaktig mapp.",
"Files" => "Filer",
"Unshare" => "Sluta dela",
"Delete" => "Radera",
diff --git a/apps/files/l10n/ta_LK.php b/apps/files/l10n/ta_LK.php
index 9399089bc7..b68ad8f02c 100644
--- a/apps/files/l10n/ta_LK.php
+++ b/apps/files/l10n/ta_LK.php
@@ -1,4 +1,5 @@
"ஒரு கோப்பும் பதிவேற்றப்படவில்லை. அறியப்படாத வழு",
"There is no error, the file uploaded with success" => "இங்கு வழு இல்லை, கோப்பு வெற்றிகரமாக பதிவேற்றப்பட்டது",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "பதிவேற்றப்பட்ட கோப்பானது HTML படிவத்தில் குறிப்பிடப்பட்டுள்ள MAX_FILE_SIZE directive ஐ விட கூடியது",
"The uploaded file was only partially uploaded" => "பதிவேற்றப்பட்ட கோப்பானது பகுதியாக மட்டுமே பதிவேற்றப்பட்டுள்ளது",
diff --git a/apps/files/l10n/th_TH.php b/apps/files/l10n/th_TH.php
index bad817ab00..f6b3b1c56f 100644
--- a/apps/files/l10n/th_TH.php
+++ b/apps/files/l10n/th_TH.php
@@ -1,4 +1,5 @@
"ยังไม่มีไฟล์ใดที่ถูกอัพโหลด เกิดข้อผิดพลาดที่ไม่ทราบสาเหตุ",
"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" => "ไฟล์ที่อัพโหลดมีขนาดเกินคำสั่ง MAX_FILE_SIZE ที่ระบุเอาไว้ในรูปแบบคำสั่งในภาษา HTML",
diff --git a/apps/files/l10n/tr.php b/apps/files/l10n/tr.php
index 061ed1f3ae..80182d8ec8 100644
--- a/apps/files/l10n/tr.php
+++ b/apps/files/l10n/tr.php
@@ -1,5 +1,7 @@
"Dosya yüklenmedi. Bilinmeyen hata",
"There is no error, the file uploaded with success" => "Bir hata yok, dosya başarıyla yüklendi",
+"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "php.ini dosyasında upload_max_filesize ile belirtilen dosya yükleme sınırı aşıldı.",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Yüklenen dosya HTML formundaki MAX_FILE_SIZE sınırını aşıyor",
"The uploaded file was only partially uploaded" => "Yüklenen dosyanın sadece bir kısmı yüklendi",
"No file was uploaded" => "Hiç dosya yüklenmedi",
@@ -15,20 +17,29 @@
"cancel" => "iptal",
"replaced {new_name}" => "değiştirilen {new_name}",
"undo" => "geri al",
+"replaced {new_name} with {old_name}" => "{new_name} ismi {old_name} ile değiştirildi",
"unshared {files}" => "paylaşılmamış {files}",
"deleted {files}" => "silinen {files}",
+"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Geçersiz isim, '\\', '/', '<', '>', ':', '\"', '|', '?' ve '*' karakterlerine izin verilmemektedir.",
"generating ZIP-file, it may take some time." => "ZIP dosyası oluşturuluyor, biraz sürebilir.",
"Unable to upload your file as it is a directory or has 0 bytes" => "Dosyanızın boyutu 0 byte olduğundan veya bir dizin olduğundan yüklenemedi",
"Upload Error" => "Yükleme hatası",
"Close" => "Kapat",
"Pending" => "Bekliyor",
"1 file uploading" => "1 dosya yüklendi",
+"{count} files uploading" => "{count} dosya yükleniyor",
"Upload cancelled." => "Yükleme iptal edildi.",
"File upload is in progress. Leaving the page now will cancel the upload." => "Dosya yükleme işlemi sürüyor. Şimdi sayfadan ayrılırsanız işleminiz iptal olur.",
+"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Geçersiz dizin ismi. \"Shared\" dizini OwnCloud tarafından kullanılmaktadır.",
+"{count} files scanned" => "{count} dosya tarandı",
"error while scanning" => "tararamada hata oluşdu",
"Name" => "Ad",
"Size" => "Boyut",
"Modified" => "Değiştirilme",
+"1 folder" => "1 dizin",
+"{count} folders" => "{count} dizin",
+"1 file" => "1 dosya",
+"{count} files" => "{count} dosya",
"File handling" => "Dosya taşıma",
"Maximum upload size" => "Maksimum yükleme boyutu",
"max. possible: " => "mümkün olan en fazla: ",
@@ -40,6 +51,7 @@
"New" => "Yeni",
"Text file" => "Metin dosyası",
"Folder" => "Klasör",
+"From link" => "Bağlantıdan",
"Upload" => "Yükle",
"Cancel upload" => "Yüklemeyi iptal et",
"Nothing in here. Upload something!" => "Burada hiçbir şey yok. Birşeyler yükleyin!",
diff --git a/apps/files/l10n/uk.php b/apps/files/l10n/uk.php
index 00491bcc2d..4daa2d628c 100644
--- a/apps/files/l10n/uk.php
+++ b/apps/files/l10n/uk.php
@@ -1,4 +1,5 @@
"Не завантажено жодного файлу. Невідома помилка",
"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" => "Розмір відвантаженого файлу перевищує директиву MAX_FILE_SIZE вказану в HTML формі",
diff --git a/apps/files/l10n/vi.php b/apps/files/l10n/vi.php
index 4f58e62317..b14186d961 100644
--- a/apps/files/l10n/vi.php
+++ b/apps/files/l10n/vi.php
@@ -1,4 +1,5 @@
"Không có tập tin nào được tải lên. Lỗi không xác định",
"There is no error, the file uploaded with success" => "Không có lỗi, các tập tin đã được tải lên thành công",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Kích thước những tập tin tải lên vượt quá MAX_FILE_SIZE đã được quy định",
"The uploaded file was only partially uploaded" => "Tập tin tải lên mới chỉ tải lên được một phần",
diff --git a/apps/files/l10n/zh_CN.GB2312.php b/apps/files/l10n/zh_CN.GB2312.php
index ccf0efff05..cad4b95c6a 100644
--- a/apps/files/l10n/zh_CN.GB2312.php
+++ b/apps/files/l10n/zh_CN.GB2312.php
@@ -1,4 +1,5 @@
"没有上传文件。未知错误",
"There is no error, the file uploaded with success" => "没有任何错误,文件上传成功了",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "上传的文件超过了HTML表单指定的MAX_FILE_SIZE",
"The uploaded file was only partially uploaded" => "文件只有部分被上传",
diff --git a/apps/files/l10n/zh_CN.php b/apps/files/l10n/zh_CN.php
index 8db652f003..1188c25292 100644
--- a/apps/files/l10n/zh_CN.php
+++ b/apps/files/l10n/zh_CN.php
@@ -1,4 +1,5 @@
"没有文件被上传。未知错误",
"There is no error, the file uploaded with success" => "没有发生错误,文件上传成功。",
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "上传文件大小已超过php.ini中upload_max_filesize所规定的值",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "上传的文件超过了在HTML 表单中指定的MAX_FILE_SIZE",
diff --git a/apps/files/l10n/zh_TW.php b/apps/files/l10n/zh_TW.php
index 5333209eff..7b55b54714 100644
--- a/apps/files/l10n/zh_TW.php
+++ b/apps/files/l10n/zh_TW.php
@@ -1,4 +1,5 @@
"沒有檔案被上傳. 未知的錯誤.",
"There is no error, the file uploaded with success" => "無錯誤,檔案上傳成功",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "上傳黨案的超過 HTML 表單中指定 MAX_FILE_SIZE 限制",
"The uploaded file was only partially uploaded" => "只有部分檔案被上傳",
diff --git a/apps/files/templates/admin.php b/apps/files/templates/admin.php
index 0de12edcba..ad69b5519d 100644
--- a/apps/files/templates/admin.php
+++ b/apps/files/templates/admin.php
@@ -6,7 +6,10 @@
t( 'Maximum upload size' ); ?>
'/>
- (t('max. possible: '); echo $_['maxPossibleUploadSize'] ?>)
+
+ (t('max. possible: '); echo $_['maxPossibleUploadSize'] ?>)
+
+
+ $crumb = $_["breadcrumb"][$i];
+ $dir = str_replace('+', '%20', urlencode($crumb["dir"]));
+ $dir = str_replace('%2F', '/', $dir); ?>
svg"
data-dir=''
style='background-image:url("")'>
diff --git a/apps/files_encryption/l10n/he.php b/apps/files_encryption/l10n/he.php
new file mode 100644
index 0000000000..0332d59520
--- /dev/null
+++ b/apps/files_encryption/l10n/he.php
@@ -0,0 +1,6 @@
+ "הצפנה",
+"Enable Encryption" => "הפעל הצפנה",
+"None" => "כלום",
+"Exclude the following file types from encryption" => "הוצא את סוגי הקבצים הבאים מהצפנה"
+);
diff --git a/apps/files_encryption/l10n/hu_HU.php b/apps/files_encryption/l10n/hu_HU.php
index 4352d8b771..8ea0f73173 100644
--- a/apps/files_encryption/l10n/hu_HU.php
+++ b/apps/files_encryption/l10n/hu_HU.php
@@ -1,6 +1,6 @@
"Titkosítás",
-"Exclude the following file types from encryption" => "A következő fájl típusok kizárása a titkosításból",
+"Enable Encryption" => "A titkosítás engedélyezése",
"None" => "Egyik sem",
-"Enable Encryption" => "Titkosítás engedélyezése"
+"Exclude the following file types from encryption" => "A következő fájltípusok kizárása a titkosításból"
);
diff --git a/apps/files_encryption/l10n/is.php b/apps/files_encryption/l10n/is.php
new file mode 100644
index 0000000000..3210ecb4f8
--- /dev/null
+++ b/apps/files_encryption/l10n/is.php
@@ -0,0 +1,6 @@
+ "Dulkóðun",
+"Enable Encryption" => "Virkja dulkóðun",
+"None" => "Ekkert",
+"Exclude the following file types from encryption" => "Undanskilja eftirfarandi skráartegundir frá dulkóðun"
+);
diff --git a/apps/files_encryption/l10n/tr.php b/apps/files_encryption/l10n/tr.php
new file mode 100644
index 0000000000..474ee42b84
--- /dev/null
+++ b/apps/files_encryption/l10n/tr.php
@@ -0,0 +1,6 @@
+ "Şifreleme",
+"Enable Encryption" => "Şifrelemeyi Etkinleştir",
+"None" => "Hiçbiri",
+"Exclude the following file types from encryption" => "Aşağıdaki dosya tiplerini şifrelemeye dahil etme"
+);
diff --git a/apps/files_external/l10n/bn_BD.php b/apps/files_external/l10n/bn_BD.php
new file mode 100644
index 0000000000..ad983b52e4
--- /dev/null
+++ b/apps/files_external/l10n/bn_BD.php
@@ -0,0 +1,6 @@
+ "প্রশাসক",
+"Groups" => "গোষ্ঠী",
+"Users" => "ব্যবহারকারিবৃন্দ",
+"Delete" => "মুছে ফেল"
+);
diff --git a/apps/files_external/l10n/eu.php b/apps/files_external/l10n/eu.php
index dccd377b11..597204c894 100644
--- a/apps/files_external/l10n/eu.php
+++ b/apps/files_external/l10n/eu.php
@@ -5,6 +5,8 @@
"Fill out all required fields" => "Bete eskatutako eremu guztiak",
"Please provide a valid Dropbox app key and secret." => "Mesedez eman baliozkoa den Dropbox app giltza eta sekretua",
"Error configuring Google Drive storage" => "Errore bat egon da Google Drive biltegiratzea konfiguratzean",
+"
Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "
Abisua: \"smbclient\" ez dago instalatuta. CIFS/SMB partekatutako karpetak montatzea ez da posible. Mesedez eskatu zure sistema kudeatzaileari instalatzea.",
+"
Warning: The FTP support in PHP is not enabled or installed. Mounting of FTP shares is not possible. Please ask your system administrator to install it." => "
Abisua: PHPren FTP modulua ez dago instalatuta edo gaitua. FTP partekatutako karpetak montatzea ez da posible. Mesedez eskatu zure sistema kudeatzaileari instalatzea.",
"External Storage" => "Kanpoko Biltegiratzea",
"Mount point" => "Montatze puntua",
"Backend" => "Motorra",
diff --git a/apps/files_external/l10n/fr.php b/apps/files_external/l10n/fr.php
index 90007aafaa..0825a961b1 100644
--- a/apps/files_external/l10n/fr.php
+++ b/apps/files_external/l10n/fr.php
@@ -5,6 +5,8 @@
"Fill out all required fields" => "Veuillez remplir tous les champs requis",
"Please provide a valid Dropbox app key and secret." => "Veuillez fournir une clé d'application (app key) ainsi qu'un mot de passe valides.",
"Error configuring Google Drive storage" => "Erreur lors de la configuration du support de stockage Google Drive",
+"
Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "
Attention : \"smbclient\" n'est pas installé. Le montage des partages CIFS/SMB n'est pas disponible. Contactez votre administrateur système pour l'installer.",
+"
Warning: The FTP support in PHP is not enabled or installed. Mounting of FTP shares is not possible. Please ask your system administrator to install it." => "
Attention : Le support FTP de PHP n'est pas activé ou installé. Le montage des partages FTP n'est pas disponible. Contactez votre administrateur système pour l'installer.",
"External Storage" => "Stockage externe",
"Mount point" => "Point de montage",
"Backend" => "Infrastructure",
diff --git a/apps/files_external/l10n/gl.php b/apps/files_external/l10n/gl.php
index 5024dac4d8..f8100e1462 100644
--- a/apps/files_external/l10n/gl.php
+++ b/apps/files_external/l10n/gl.php
@@ -3,8 +3,10 @@
"Error configuring Dropbox storage" => "Produciuse un erro ao configurar o almacenamento en Dropbox",
"Grant access" => "Permitir o acceso",
"Fill out all required fields" => "Cubrir todos os campos obrigatorios",
-"Please provide a valid Dropbox app key and secret." => "Dá o segredo e a chave correcta do aplicativo de Dropbox.",
+"Please provide a valid Dropbox app key and secret." => "Forneza unha chave correcta e segreda do Dropbox.",
"Error configuring Google Drive storage" => "Produciuse un erro ao configurar o almacenamento en Google Drive",
+"
Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "
Aviso: «smbclient» non está instalado. Non é posibel a montaxe de comparticións CIFS/SMB. Consulte co administrador do sistema para instalalo.",
+"
Warning: The FTP support in PHP is not enabled or installed. Mounting of FTP shares is not possible. Please ask your system administrator to install it." => "
Aviso: A compatibilidade de FTP en PHP non está activada ou instalada. Non é posibel a montaxe de comparticións FTP. Consulte co administrador do sistema para instalalo.",
"External Storage" => "Almacenamento externo",
"Mount point" => "Punto de montaxe",
"Backend" => "Infraestrutura",
diff --git a/apps/files_external/l10n/hu_HU.php b/apps/files_external/l10n/hu_HU.php
index e915c34b95..b8973c9641 100644
--- a/apps/files_external/l10n/hu_HU.php
+++ b/apps/files_external/l10n/hu_HU.php
@@ -1,5 +1,26 @@
"Érvényes hozzáférés",
+"Error configuring Dropbox storage" => "A Dropbox tárolót nem sikerült beállítani",
+"Grant access" => "Megadom a hozzáférést",
+"Fill out all required fields" => "Töltse ki az összes szükséges mezőt",
+"Please provide a valid Dropbox app key and secret." => "Adjon meg egy érvényes Dropbox app key-t és secretet!",
+"Error configuring Google Drive storage" => "A Google Drive tárolót nem sikerült beállítani",
+"
Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "
Figyelem: az \"smbclient\" nincs telepítve a kiszolgálón. Emiatt nem lehet CIFS/SMB megosztásokat fölcsatolni. Kérje meg a rendszergazdát, hogy telepítse a szükséges programot.",
+"
Warning: The FTP support in PHP is not enabled or installed. Mounting of FTP shares is not possible. Please ask your system administrator to install it." => "
Figyelem: a PHP FTP támogatása vagy nincs telepítve, vagy nincs engedélyezve a kiszolgálón. Emiatt nem lehetséges FTP-tárolókat fölcsatolni. Kérje meg a rendszergazdát, hogy telepítse a szükséges programot.",
+"External Storage" => "Külső tárolási szolgáltatások becsatolása",
+"Mount point" => "Hova csatoljuk",
+"Backend" => "Külső tárolórendszer",
+"Configuration" => "Beállítások",
+"Options" => "Opciók",
+"Applicable" => "Érvényességi kör",
+"Add mount point" => "Új csatolás létrehozása",
+"None set" => "Nincs beállítva",
+"All Users" => "Az összes felhasználó",
"Groups" => "Csoportok",
"Users" => "Felhasználók",
-"Delete" => "Törlés"
+"Delete" => "Törlés",
+"Enable User External Storage" => "Külső tárolók engedélyezése a felhasználók részére",
+"Allow users to mount their own external storage" => "Lehetővé teszi, hogy a felhasználók külső tárolási szolgáltatásokat csatoljanak be a saját területükre",
+"SSL root certificates" => "SSL tanúsítványok",
+"Import Root Certificate" => "SSL tanúsítványok importálása"
);
diff --git a/apps/files_external/l10n/is.php b/apps/files_external/l10n/is.php
new file mode 100644
index 0000000000..5110bf5ad2
--- /dev/null
+++ b/apps/files_external/l10n/is.php
@@ -0,0 +1,26 @@
+ "Aðgengi veitt",
+"Error configuring Dropbox storage" => "Villa við að setja upp Dropbox gagnasvæði",
+"Grant access" => "Veita aðgengi",
+"Fill out all required fields" => "Fylltu út alla skilyrta reiti",
+"Please provide a valid Dropbox app key and secret." => "Gefðu upp virkan Dropbox lykil og leynikóða",
+"Error configuring Google Drive storage" => "Villa kom upp við að setja upp Google Drive gagnasvæði",
+"
Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "
Aðvörun: \"smbclient\" er ekki uppsettur. Uppsetning á CIFS/SMB gagnasvæðum er ekki möguleg. Hafðu samband við kerfisstjóra til að fá hann uppsettan.",
+"
Warning: The FTP support in PHP is not enabled or installed. Mounting of FTP shares is not possible. Please ask your system administrator to install it." => "
Aðvörun: FTP stuðningur í PHP er ekki virkur. Uppsetning á FTP gagnasvæðum er ekki möguleg. Hafðu samband við kerfisstjóra til að fá hann uppsettan.",
+"External Storage" => "Ytri gagnageymsla",
+"Mount point" => "Mount svæði",
+"Backend" => "Stjórnun",
+"Configuration" => "Uppsetning",
+"Options" => "Stillingar",
+"Applicable" => "Gilt",
+"Add mount point" => "Bæta við mount svæði",
+"None set" => "Ekkert sett",
+"All Users" => "Allir notendur",
+"Groups" => "Hópar",
+"Users" => "Notendur",
+"Delete" => "Eyða",
+"Enable User External Storage" => "Virkja ytra gagnasvæði notenda",
+"Allow users to mount their own external storage" => "Leyfa notendum að bæta við sínum eigin ytri gagnasvæðum",
+"SSL root certificates" => "SSL rótar skilríki",
+"Import Root Certificate" => "Flytja inn rótar skilríki"
+);
diff --git a/apps/files_external/l10n/mk.php b/apps/files_external/l10n/mk.php
index 597623323b..e3c1e4652b 100644
--- a/apps/files_external/l10n/mk.php
+++ b/apps/files_external/l10n/mk.php
@@ -1,6 +1,26 @@
"Пристапот е дозволен",
+"Error configuring Dropbox storage" => "Грешка при конфигурација на Dropbox",
+"Grant access" => "Дозволи пристап",
+"Fill out all required fields" => "Пополни ги сите задолжителни полиња",
+"Please provide a valid Dropbox app key and secret." => "Ве молам доставите валиден Dropbox клуч и тајна лозинка.",
+"Error configuring Google Drive storage" => "Грешка при конфигурација на Google Drive",
+"
Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "
Внимание: \"smbclient\" не е инсталиран. Не е можно монтирање на CIFS/SMB дискови. Замолете го Вашиот систем администратор да го инсталира.",
+"
Warning: The FTP support in PHP is not enabled or installed. Mounting of FTP shares is not possible. Please ask your system administrator to install it." => "
Внимание: Не е овозможена или инсталирани FTP подршка во PHP. Не е можно монтирање на FTP дискови. Замолете го Вашиот систем администратор да го инсталира.",
+"External Storage" => "Надворешно складиште",
+"Mount point" => "Точка на монтирање",
"Backend" => "Админ",
+"Configuration" => "Конфигурација",
+"Options" => "Опции",
+"Applicable" => "Применливо",
+"Add mount point" => "Додади точка на монтирање",
+"None set" => "Ништо поставено",
+"All Users" => "Сите корисници",
"Groups" => "Групи",
"Users" => "Корисници",
-"Delete" => "Избриши"
+"Delete" => "Избриши",
+"Enable User External Storage" => "Овозможи надворешни за корисници",
+"Allow users to mount their own external storage" => "Дозволи им на корисниците да монтираат свои надворешни дискови",
+"SSL root certificates" => "SSL root сертификати",
+"Import Root Certificate" => "Увези"
);
diff --git a/apps/files_external/l10n/sv.php b/apps/files_external/l10n/sv.php
index 0a5e1c66d9..0d42a1f468 100644
--- a/apps/files_external/l10n/sv.php
+++ b/apps/files_external/l10n/sv.php
@@ -5,6 +5,8 @@
"Fill out all required fields" => "Fyll i alla obligatoriska fält",
"Please provide a valid Dropbox app key and secret." => "Ange en giltig Dropbox nyckel och hemlighet.",
"Error configuring Google Drive storage" => "Fel vid konfigurering av Google Drive",
+"
Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "
Varning: \"smb-klienten\" är inte installerad. Montering av CIFS/SMB delningar är inte möjligt. Kontakta din systemadministratör för att få den installerad.",
+"
Warning: The FTP support in PHP is not enabled or installed. Mounting of FTP shares is not possible. Please ask your system administrator to install it." => "
Varning: Stöd för FTP i PHP är inte aktiverat eller installerat. Montering av FTP-delningar är inte möjligt. Kontakta din systemadministratör för att få det installerat.",
"External Storage" => "Extern lagring",
"Mount point" => "Monteringspunkt",
"Backend" => "Källa",
diff --git a/apps/files_external/l10n/tr.php b/apps/files_external/l10n/tr.php
index c5e9f8f892..e9a045aab5 100644
--- a/apps/files_external/l10n/tr.php
+++ b/apps/files_external/l10n/tr.php
@@ -1,5 +1,16 @@
"Harici Depolama",
+"Mount point" => "Bağlama Noktası",
+"Backend" => "Yönetici",
+"Configuration" => "Yapılandırma",
+"Options" => "Seçenekler",
+"Applicable" => "Uygulanabilir",
+"Add mount point" => "Bağlama noktası ekle",
+"None set" => "Hiçbiri",
+"All Users" => "Tüm Kullanıcılar",
"Groups" => "Gruplar",
"Users" => "Kullanıcılar",
-"Delete" => "Sil"
+"Delete" => "Sil",
+"SSL root certificates" => "SSL kök sertifikaları",
+"Import Root Certificate" => "Kök Sertifikalarını İçe Aktar"
);
diff --git a/apps/files_external/lib/config.php b/apps/files_external/lib/config.php
index 323e4060a4..3bb512493d 100755
--- a/apps/files_external/lib/config.php
+++ b/apps/files_external/lib/config.php
@@ -120,6 +120,10 @@ class OC_Mount_Config {
if (isset($mountPoints[self::MOUNT_TYPE_GROUP])) {
foreach ($mountPoints[self::MOUNT_TYPE_GROUP] as $group => $mounts) {
foreach ($mounts as $mountPoint => $mount) {
+ // Update old classes to new namespace
+ if (strpos($mount['class'], 'OC_Filestorage_') !== false) {
+ $mount['class'] = '\OC\Files\Storage\\'.substr($mount['class'], 15);
+ }
// Remove '/$user/files/' from mount point
$mountPoint = substr($mountPoint, 13);
// Merge the mount point into the current mount points
@@ -139,6 +143,10 @@ class OC_Mount_Config {
if (isset($mountPoints[self::MOUNT_TYPE_USER])) {
foreach ($mountPoints[self::MOUNT_TYPE_USER] as $user => $mounts) {
foreach ($mounts as $mountPoint => $mount) {
+ // Update old classes to new namespace
+ if (strpos($mount['class'], 'OC_Filestorage_') !== false) {
+ $mount['class'] = '\OC\Files\Storage\\'.substr($mount['class'], 15);
+ }
// Remove '/$user/files/' from mount point
$mountPoint = substr($mountPoint, 13);
// Merge the mount point into the current mount points
@@ -169,6 +177,10 @@ class OC_Mount_Config {
$personal = array();
if (isset($mountPoints[self::MOUNT_TYPE_USER][$uid])) {
foreach ($mountPoints[self::MOUNT_TYPE_USER][$uid] as $mountPoint => $mount) {
+ // Update old classes to new namespace
+ if (strpos($mount['class'], 'OC_Filestorage_') !== false) {
+ $mount['class'] = '\OC\Files\Storage\\'.substr($mount['class'], 15);
+ }
// Remove '/uid/files/' from mount point
$personal[substr($mountPoint, strlen($uid) + 8)] = array('class' => $mount['class'],
'backend' => $backends[$mount['class']]['backend'],
diff --git a/apps/files_sharing/appinfo/app.php b/apps/files_sharing/appinfo/app.php
index 189fd20cae..d3e05cc62d 100644
--- a/apps/files_sharing/appinfo/app.php
+++ b/apps/files_sharing/appinfo/app.php
@@ -5,7 +5,7 @@ OC::$CLASSPATH['OC_Share_Backend_Folder'] = 'apps/files_sharing/lib/share/folder
OC::$CLASSPATH['OC\Files\Storage\Shared'] = "apps/files_sharing/lib/sharedstorage.php";
OC::$CLASSPATH['OC\Files\Cache\Shared_Cache'] = 'apps/files_sharing/lib/cache.php';
OC::$CLASSPATH['OC\Files\Cache\Shared_Permissions'] = 'apps/files_sharing/lib/permissions.php';
-OC::$CLASSPATH['OC\Files\Cache\Shared_Scanner'] = 'apps/files_sharing/lib/scanner.php';
+OC::$CLASSPATH['OC\Files\Cache\Shared_Watcher'] = 'apps/files_sharing/lib/watcher.php';
OCP\Util::connectHook('OC_Filesystem', 'setup', '\OC\Files\Storage\Shared', 'setup');
OCP\Share::registerBackend('file', 'OC_Share_Backend_File');
OCP\Share::registerBackend('folder', 'OC_Share_Backend_Folder', 'file');
diff --git a/apps/files_sharing/l10n/bn_BD.php b/apps/files_sharing/l10n/bn_BD.php
new file mode 100644
index 0000000000..785dfcd2f1
--- /dev/null
+++ b/apps/files_sharing/l10n/bn_BD.php
@@ -0,0 +1,6 @@
+ "কূটশব্দ",
+"Submit" => "পাঠাও",
+"Download" => "ডাউনলোড",
+"web services under your control" => "ওয়েব সেবাসমূহ এখন আপনার হাতের মুঠোয়"
+);
diff --git a/apps/files_sharing/l10n/hu_HU.php b/apps/files_sharing/l10n/hu_HU.php
index 881b5afd81..f8ca541260 100644
--- a/apps/files_sharing/l10n/hu_HU.php
+++ b/apps/files_sharing/l10n/hu_HU.php
@@ -1,6 +1,9 @@
"Méret",
-"Modified" => "Módosítva",
-"Delete all" => "Összes törlése",
-"Delete" => "Törlés"
+"Password" => "Jelszó",
+"Submit" => "Elküld",
+"%s shared the folder %s with you" => "%s megosztotta Önnel ezt a mappát: %s",
+"%s shared the file %s with you" => "%s megosztotta Önnel ezt az állományt: %s",
+"Download" => "Letöltés",
+"No preview available for" => "Nem áll rendelkezésre előnézet ehhez: ",
+"web services under your control" => "webszolgáltatások saját kézben"
);
diff --git a/apps/files_sharing/l10n/is.php b/apps/files_sharing/l10n/is.php
new file mode 100644
index 0000000000..bf1975c54a
--- /dev/null
+++ b/apps/files_sharing/l10n/is.php
@@ -0,0 +1,9 @@
+ "Lykilorð",
+"Submit" => "Senda",
+"%s shared the folder %s with you" => "%s deildi möppunni %s með þér",
+"%s shared the file %s with you" => "%s deildi skránni %s með þér",
+"Download" => "Niðurhal",
+"No preview available for" => "Yfirlit ekki í boði fyrir",
+"web services under your control" => "vefþjónusta undir þinni stjórn"
+);
diff --git a/apps/files_sharing/lib/cache.php b/apps/files_sharing/lib/cache.php
index a22e7af7f5..0534d6dd89 100644
--- a/apps/files_sharing/lib/cache.php
+++ b/apps/files_sharing/lib/cache.php
@@ -36,8 +36,8 @@ class Shared_Cache extends Cache {
/**
* @brief Get the source cache of a shared file or folder
- * @param string Shared target file path
- * @return \OC\Files\Storage\Cache
+ * @param string $target Shared target file path
+ * @return \OC\Files\Cache\Cache
*/
private function getSourceCache($target) {
$source = \OC_Share_Backend_File::getSource($target);
@@ -48,6 +48,7 @@ class Shared_Cache extends Cache {
if ($storage) {
$this->files[$target] = $internalPath;
$cache = $storage->getCache();
+ $this->storageId = $storage->getId();
$this->numericId = $cache->getNumericStorageId();
return $cache;
}
@@ -110,7 +111,7 @@ class Shared_Cache extends Cache {
*/
public function put($file, array $data) {
if ($cache = $this->getSourceCache($file)) {
- return $cache->put($this->files[$file]);
+ return $cache->put($this->files[$file], $data);
}
return false;
}
@@ -169,6 +170,9 @@ class Shared_Cache extends Cache {
* @return int, Cache::NOT_FOUND, Cache::PARTIAL, Cache::SHALLOW or Cache::COMPLETE
*/
public function getStatus($file) {
+ if ($file == '') {
+ return self::COMPLETE;
+ }
if ($cache = $this->getSourceCache($file)) {
return $cache->getStatus($this->files[$file]);
}
@@ -227,7 +231,7 @@ class Shared_Cache extends Cache {
* @return int[]
*/
public function getAll() {
- return OCP\Share::getItemsSharedWith('file', \OC_Share_Backend_File::FORMAT_GET_ALL);
+ return \OCP\Share::getItemsSharedWith('file', \OC_Share_Backend_File::FORMAT_GET_ALL);
}
-}
\ No newline at end of file
+}
diff --git a/apps/files_sharing/lib/scanner.php b/apps/files_sharing/lib/scanner.php
deleted file mode 100644
index d13d2f9cbc..0000000000
--- a/apps/files_sharing/lib/scanner.php
+++ /dev/null
@@ -1,69 +0,0 @@
-.
-*/
-
-namespace OC\Files\Cache;
-
-class Shared_Scanner extends Scanner {
-
- public function __construct(\OC\Files\Storage\Storage $storage) {
-
- }
-
- /**
- * get all the metadata of a file or folder
- * *
- *
- * @param string $path
- * @return array with metadata of the file
- */
- public function getData($path) {
- // Not a valid action for Shared Scanner
- }
-
- /**
- * scan a single file and store it in the cache
- *
- * @param string $file
- * @return array with metadata of the scanned file
- */
- public function scanFile($file) {
- // Not a valid action for Shared Scanner
- }
-
- /**
- * scan all the files in a folder and store them in the cache
- *
- * @param string $path
- * @param SCAN_RECURSIVE/SCAN_SHALLOW $recursive
- * @return int the size of the scanned folder or -1 if the size is unknown at this stage
- */
- public function scan($path, $recursive = self::SCAN_RECURSIVE) {
- // Not a valid action for Shared Scanner
- }
-
- /**
- * walk over any folders that are not fully scanned yet and scan them
- */
- public function backgroundScan() {
- // Not a valid action for Shared Scanner
- }
-
-}
\ No newline at end of file
diff --git a/apps/files_sharing/lib/sharedstorage.php b/apps/files_sharing/lib/sharedstorage.php
index cb9b36482f..24096e0c10 100644
--- a/apps/files_sharing/lib/sharedstorage.php
+++ b/apps/files_sharing/lib/sharedstorage.php
@@ -364,6 +364,9 @@ class Shared extends \OC\Files\Storage\Common {
}
public function free_space($path) {
+ if ($path == '') {
+ return -1;
+ }
$source = $this->getSourcePath($path);
if ($source) {
list($storage, $internalPath) = \OC\Files\Filesystem::resolvePath($source);
@@ -387,23 +390,45 @@ class Shared extends \OC\Files\Storage\Common {
}
public static function setup($options) {
- $user_dir = $options['user_dir'];
- \OC\Files\Filesystem::mount('\OC\Files\Storage\Shared', array('sharedFolder' => '/Shared'), $user_dir.'/Shared/');
+ if (\OCP\Share::getItemsSharedWith('file')) {
+ $user_dir = $options['user_dir'];
+ \OC\Files\Filesystem::mount('\OC\Files\Storage\Shared', array('sharedFolder' => '/Shared'), $user_dir.'/Shared/');
+ }
}
- public function getCache() {
+ public function hasUpdated($path, $time) {
+ if ($path == '') {
+ return false;
+ }
+ return $this->filemtime($path) > $time;
+ }
+
+ public function getCache($path = '') {
return new \OC\Files\Cache\Shared_Cache($this);
}
- public function getScanner(){
- return new \OC\Files\Cache\Shared_Scanner($this);
+ public function getScanner($path = '') {
+ if ($path != '' && ($source = $this->getSourcePath($path))) {
+ list($storage, $internalPath) = \OC\Files\Filesystem::resolvePath($source);
+ if ($storage) {
+ return $storage->getScanner($internalPath);
+ }
+ }
+ return new \OC\Files\Cache\Scanner($this);
}
- public function getPermissionsCache() {
+ public function getPermissionsCache($path = '') {
return new \OC\Files\Cache\Shared_Permissions($this);
}
+ public function getWatcher($path = '') {
+ return new \OC\Files\Cache\Shared_Watcher($this);
+ }
+
public function getOwner($path) {
+ if ($path == '') {
+ return false;
+ }
$source = $this->getFile($path);
if ($source) {
return $source['uid_owner'];
diff --git a/apps/files_sharing/lib/watcher.php b/apps/files_sharing/lib/watcher.php
new file mode 100644
index 0000000000..e67d1ee908
--- /dev/null
+++ b/apps/files_sharing/lib/watcher.php
@@ -0,0 +1,51 @@
+.
+*/
+
+namespace OC\Files\Cache;
+
+/**
+ * check the storage backends for updates and change the cache accordingly
+ */
+class Shared_Watcher extends Watcher {
+
+ /**
+ * check $path for updates
+ *
+ * @param string $path
+ */
+ public function checkUpdate($path) {
+ if ($path != '') {
+ parent::checkUpdate($path);
+ }
+ }
+
+ /**
+ * remove deleted files in $path from the cache
+ *
+ * @param string $path
+ */
+ public function cleanFolder($path) {
+ if ($path != '') {
+ parent::cleanFolder($path);
+ }
+ }
+
+}
\ No newline at end of file
diff --git a/apps/files_sharing/public.php b/apps/files_sharing/public.php
index eb4af58cdc..e8d18a213b 100644
--- a/apps/files_sharing/public.php
+++ b/apps/files_sharing/public.php
@@ -175,7 +175,7 @@ if ($linkItem) {
if (isset($_GET['path'])) {
$path .= $_GET['path'];
}
- if (!$path || !\OC\Files\Filesystem::isValidPath($path) || !OC_Filesystem::file_exists($path)) {
+ if (!$path || !\OC\Files\Filesystem::isValidPath($path) || !\OC\Files\Filesystem::file_exists($path)) {
OCP\Util::writeLog('share', 'Invalid path ' . $path . ' for share id ' . $linkItem['id'], \OCP\Util::ERROR);
header('HTTP/1.0 404 Not Found');
$tmpl = new OCP\Template('', '404', 'guest');
@@ -208,7 +208,7 @@ if ($linkItem) {
$tmpl->assign('uidOwner', $shareOwner);
$tmpl->assign('dir', $dir);
$tmpl->assign('filename', $file);
- $tmpl->assign('mimetype', OC_Filesystem::getMimeType($path));
+ $tmpl->assign('mimetype', \OC\Files\Filesystem::getMimeType($path));
if (isset($_GET['path'])) {
$getPath = $_GET['path'];
} else {
@@ -217,7 +217,7 @@ if ($linkItem) {
//
$urlLinkIdentifiers = (isset($token) ? '&t=' . $token : '') . (isset($_GET['dir']) ? '&dir=' . $_GET['dir'] : '') . (isset($_GET['file']) ? '&file=' . $_GET['file'] : '');
// Show file list
- if (OC_Filesystem::is_dir($path)) {
+ if (\OC\Files\Filesystem::is_dir($path)) {
OCP\Util::addStyle('files', 'files');
OCP\Util::addScript('files', 'files');
OCP\Util::addScript('files', 'filelist');
@@ -292,7 +292,7 @@ if ($linkItem) {
$tmpl = new OCP\Template('files_sharing', 'public', 'base');
$tmpl->assign('owner', $uidOwner);
// Show file list
- if (OC_Filesystem::is_dir($path)) {
+ if (\OC\Files\Filesystem::is_dir($path)) {
OCP\Util::addStyle('files', 'files');
OCP\Util::addScript('files', 'files');
OCP\Util::addScript('files', 'filelist');
@@ -349,7 +349,7 @@ if ($linkItem) {
$tmpl->assign('uidOwner', $uidOwner);
$tmpl->assign('dir', basename($dir));
$tmpl->assign('filename', basename($path));
- $tmpl->assign('mimetype', OC_Filesystem::getMimeType($path));
+ $tmpl->assign('mimetype', \OC\Files\Filesystem::getMimeType($path));
$tmpl->assign('allowZipDownload', intval(OCP\Config::getSystemValue('allowZipDownload', true)));
if (isset($_GET['path'])) {
$getPath = $_GET['path'];
@@ -362,7 +362,7 @@ if ($linkItem) {
$tmpl->assign('uidOwner', $uidOwner);
$tmpl->assign('dir', dirname($path));
$tmpl->assign('filename', basename($path));
- $tmpl->assign('mimetype', OC_Filesystem::getMimeType($path));
+ $tmpl->assign('mimetype', \OC\Files\Filesystem::getMimeType($path));
if ($type == 'file') {
$tmpl->assign('downloadURL', OCP\Util::linkToPublic('files') . '&file=' . urlencode($_GET['file']) . '&download', false);
} else {
diff --git a/apps/files_versions/l10n/bn_BD.php b/apps/files_versions/l10n/bn_BD.php
new file mode 100644
index 0000000000..d44ea13131
--- /dev/null
+++ b/apps/files_versions/l10n/bn_BD.php
@@ -0,0 +1,3 @@
+ "সক্রিয়"
+);
diff --git a/apps/files_versions/l10n/hu_HU.php b/apps/files_versions/l10n/hu_HU.php
new file mode 100644
index 0000000000..1575eda3f3
--- /dev/null
+++ b/apps/files_versions/l10n/hu_HU.php
@@ -0,0 +1,8 @@
+ "Az összes korábbi változat törlése",
+"History" => "Korábbi változatok",
+"Versions" => "Az állományok korábbi változatai",
+"This will delete all existing backup versions of your files" => "Itt törölni tudja állományainak összes korábbi verzióját",
+"Files Versioning" => "Az állományok verzionálása",
+"Enable" => "engedélyezve"
+);
diff --git a/apps/files_versions/l10n/is.php b/apps/files_versions/l10n/is.php
new file mode 100644
index 0000000000..f63939d3af
--- /dev/null
+++ b/apps/files_versions/l10n/is.php
@@ -0,0 +1,8 @@
+ "Úrelda allar útgáfur",
+"History" => "Saga",
+"Versions" => "Útgáfur",
+"This will delete all existing backup versions of your files" => "Þetta mun eyða öllum afritum af skránum þínum",
+"Files Versioning" => "Útgáfur af skrám",
+"Enable" => "Virkja"
+);
diff --git a/apps/files_versions/l10n/tr.php b/apps/files_versions/l10n/tr.php
new file mode 100644
index 0000000000..73f207d502
--- /dev/null
+++ b/apps/files_versions/l10n/tr.php
@@ -0,0 +1,8 @@
+ "Tüm sürümleri sona erdir",
+"History" => "Geçmiş",
+"Versions" => "Sürümler",
+"This will delete all existing backup versions of your files" => "Bu dosyalarınızın tüm yedek sürümlerini silecektir",
+"Files Versioning" => "Dosya Sürümleri",
+"Enable" => "Etkinleştir"
+);
diff --git a/apps/user_ldap/l10n/bn_BD.php b/apps/user_ldap/l10n/bn_BD.php
new file mode 100644
index 0000000000..eca40c171f
--- /dev/null
+++ b/apps/user_ldap/l10n/bn_BD.php
@@ -0,0 +1,4 @@
+ "কূটশব্দ",
+"Help" => "সহায়িকা"
+);
diff --git a/apps/user_ldap/l10n/da.php b/apps/user_ldap/l10n/da.php
index cce3de085d..b11b56f9b6 100644
--- a/apps/user_ldap/l10n/da.php
+++ b/apps/user_ldap/l10n/da.php
@@ -2,10 +2,24 @@
"Host" => "Host",
"You can omit the protocol, except you require SSL. Then start with ldaps://" => "Du kan udelade protokollen, medmindre du skal bruge SSL. Start i så fald med ldaps://",
"Base DN" => "Base DN",
+"You can specify Base DN for users and groups in the Advanced tab" => "You can specify Base DN for users and groups in the Advanced tab",
"User DN" => "Bruger DN",
"Password" => "Kodeord",
+"For anonymous access, leave DN and Password empty." => "For anonym adgang, skal du lade DN og Adgangskode tomme.",
+"User Login Filter" => "Bruger Login Filter",
+"User List Filter" => "Brugerliste Filter",
+"Defines the filter to apply, when retrieving users." => "Definere filteret der bruges ved indlæsning af brugere.",
+"Group Filter" => "Gruppe Filter",
+"Defines the filter to apply, when retrieving groups." => "Definere filteret der bruges når der indlæses grupper.",
"Port" => "Port",
+"Base User Tree" => "Base Bruger Træ",
+"Base Group Tree" => "Base Group Tree",
+"Group-Member association" => "Group-Member association",
"Use TLS" => "Brug TLS",
+"Do not use it for SSL connections, it will fail." => "Brug ikke til SSL forbindelser, da den vil fejle.",
+"Turn off SSL certificate validation." => "Deaktiver SSL certifikat validering",
"Not recommended, use for testing only." => "Anbefales ikke, brug kun for at teste.",
+"User Display Name Field" => "User Display Name Field",
+"in bytes" => "i bytes",
"Help" => "Hjælp"
);
diff --git a/apps/user_ldap/l10n/el.php b/apps/user_ldap/l10n/el.php
index e973eaac0a..8c421cf162 100644
--- a/apps/user_ldap/l10n/el.php
+++ b/apps/user_ldap/l10n/el.php
@@ -1,18 +1,39 @@
Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "
Προσοχή: Οι εφαρμογές user_ldap και user_webdavauth είναι ασύμβατες. Μπορεί να αντιμετωπίσετε απρόβλεπτη συμπεριφορά. Παρακαλώ ζητήστε από τον διαχειριστή συστήματος να απενεργοποιήσει μία από αυτές.",
+"
Warning: The PHP LDAP module needs is not installed, the backend will not work. Please ask your system administrator to install it." => "
Προσοχή: Το PHP LDAP module που απαιτείται δεν είναι εγκατεστημένο και ο μηχανισμός δεν θα λειτουργήσει. Παρακαλώ ζητήστε από τον διαχειριστή του συστήματος να το εγκαταστήσει.",
+"Host" => "Διακομιστής",
+"You can omit the protocol, except you require SSL. Then start with ldaps://" => "Μπορείτε να παραλείψετε το πρωτόκολλο, εκτός αν απαιτείται SSL. Σε αυτή την περίπτωση ξεκινήστε με ldaps://",
"Base DN" => "Base DN",
+"You can specify Base DN for users and groups in the Advanced tab" => "Μπορείτε να καθορίσετε το Base DN για χρήστες και ομάδες από την καρτέλα Προηγμένες ρυθμίσεις",
"User DN" => "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." => "Το DN του χρήστη πελάτη με το οποίο θα πρέπει να γίνει η σύνδεση, π.χ. uid=agent,dc=example,dc=com. Για χρήση χωρίς πιστοποίηση, αφήστε το DN και τον Κωδικό κενά.",
"Password" => "Συνθηματικό",
+"For anonymous access, leave DN and Password empty." => "Για ανώνυμη πρόσβαση, αφήστε κενά τα πεδία DN και Pasword.",
"User Login Filter" => "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" => "User List Filter",
+"Defines the filter to apply, when retrieving users." => "Καθορίζει το φίλτρο που θα ισχύει κατά την ανάκτηση επαφών.",
+"without any placeholder, e.g. \"objectClass=person\"." => "χωρίς κάποια μεταβλητή, π.χ. \"objectClass=άτομο\".",
"Group Filter" => "Group Filter",
+"Defines the filter to apply, when retrieving groups." => "Καθορίζει το φίλτρο που θα ισχύει κατά την ανάκτηση ομάδων.",
+"without any placeholder, e.g. \"objectClass=posixGroup\"." => "χωρίς κάποια μεταβλητή, π.χ. \"objectClass=ΟμάδαPosix\".",
"Port" => "Θύρα",
"Base User Tree" => "Base User Tree",
"Base Group Tree" => "Base Group Tree",
"Group-Member association" => "Group-Member association",
"Use TLS" => "Χρήση TLS",
+"Do not use it for SSL connections, it will fail." => "Μην χρησιμοποιείτε για συνδέσεις SSL, θα αποτύχει.",
+"Case insensitve LDAP server (Windows)" => "LDAP server (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 server σας.",
"Not recommended, use for testing only." => "Δεν προτείνεται, χρήση μόνο για δοκιμές.",
"User Display Name Field" => "Πεδίο Ονόματος Χρήστη",
+"The LDAP attribute to use to generate the user`s ownCloud name." => "Η ιδιότητα LDAP που θα χρησιμοποιείται για τη δημιουργία του ονόματος χρήστη του ownCloud.",
"Group Display Name Field" => "Group Display Name Field",
+"The LDAP attribute to use to generate the groups`s ownCloud name." => "Η ιδιότητα LDAP που θα χρησιμοποιείται για τη δημιουργία του ονόματος ομάδας του ownCloud.",
"in bytes" => "σε bytes",
+"in seconds. A change empties the cache." => "σε δευτερόλεπτα. Μια αλλαγή αδειάζει την μνήμη cache.",
+"Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Αφήστε το κενό για το όνομα χρήστη (προεπιλογή). Διαφορετικά, συμπληρώστε μία ιδιότητα LDAP/AD.",
"Help" => "Βοήθεια"
);
diff --git a/apps/user_ldap/l10n/es_AR.php b/apps/user_ldap/l10n/es_AR.php
index 6bd452e9d9..0b1340d439 100644
--- a/apps/user_ldap/l10n/es_AR.php
+++ b/apps/user_ldap/l10n/es_AR.php
@@ -1,4 +1,6 @@
Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "
Advertencia: Los Apps user_ldap y user_webdavauth son incompatibles. Puede que experimente un comportamiento inesperado. Pregunte al administrador del sistema para desactivar uno de ellos.",
+"
Warning: The PHP LDAP module needs is not installed, the backend will not work. Please ask your system administrator to install it." => "
Advertencia: El módulo PHP LDAP necesario no está instalado, el sistema no funcionará. Pregunte al administrador del sistema para instalarlo.",
"Host" => "Servidor",
"You can omit the protocol, except you require SSL. Then start with ldaps://" => "Podés omitir el protocolo, excepto si SSL es requerido. En ese caso, empezá con ldaps://",
"Base DN" => "DN base",
diff --git a/apps/user_ldap/l10n/eu.php b/apps/user_ldap/l10n/eu.php
index 35dacef3f2..06ca9cb294 100644
--- a/apps/user_ldap/l10n/eu.php
+++ b/apps/user_ldap/l10n/eu.php
@@ -1,4 +1,6 @@
Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "
Abisua: user_ldap eta user_webdavauth aplikazioak bateraezinak dira. Portaera berezia izan dezakezu. Mesedez eskatu zure sistema kudeatzaileari bietako bat desgaitzeko.",
+"
Warning: The PHP LDAP module needs is not installed, the backend will not work. Please ask your system administrator to install it." => "
Abisua: PHPk behar duen LDAP modulua ez dago instalaturik, motorrak ez du funtzionatuko. Mesedez eskatu zure sistema kudeatzaileari instala dezan.",
"Host" => "Hostalaria",
"You can omit the protocol, except you require SSL. Then start with ldaps://" => "Protokoloa ez da beharrezkoa, SSL behar baldin ez baduzu. Honela bada hasi ldaps://",
"Base DN" => "Oinarrizko DN",
diff --git a/apps/user_ldap/l10n/gl.php b/apps/user_ldap/l10n/gl.php
index 41431293cb..ae05efcd27 100644
--- a/apps/user_ldap/l10n/gl.php
+++ b/apps/user_ldap/l10n/gl.php
@@ -1,10 +1,12 @@
Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "
Aviso: Os aplicativos user_ldap e user_webdavauth son incompatíbeis. Pode acontecer un comportamento estraño. Consulte co administrador do sistema para desactivar un deles.",
+"
Warning: The PHP LDAP module needs is not installed, the backend will not work. Please ask your system administrator to install it." => "
Aviso: O módulo PHP LDAP é necesario e non está instalado, a infraestrutura non funcionará. Consulte co administrador do sistema para instalalo.",
"Host" => "Servidor",
"You can omit the protocol, except you require SSL. Then start with ldaps://" => "Pode omitir o protocolo agás que precise de SSL. Nese caso comece con ldaps://",
"Base DN" => "DN base",
"You can specify Base DN for users and groups in the Advanced tab" => "Pode especificar a DN base para usuarios e grupos na lapela de «Avanzado»",
"User DN" => "DN do usuario",
-"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." => "O DN do cliente do usuario co que hai que estabelecer unha conexión, p.ex uid=axente, dc=exemplo, dc=com. Para o acceso en anónimo de o DN e o contrasinal baleiros.",
+"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." => "O DN do cliente do usuario co que hai que estabelecer unha conexión, p.ex uid=axente, dc=exemplo, dc=com. Para o acceso anónimo deixe o DN e o contrasinal baleiros.",
"Password" => "Contrasinal",
"For anonymous access, leave DN and Password empty." => "Para o acceso anónimo deixe o DN e o contrasinal baleiros.",
"User Login Filter" => "Filtro de acceso de usuarios",
@@ -21,7 +23,7 @@
"Base Group Tree" => "Base da árbore de grupo",
"Group-Member association" => "Asociación de grupos e membros",
"Use TLS" => "Usar TLS",
-"Do not use it for SSL connections, it will fail." => "Non empregualo para conexións SSL: fallará.",
+"Do not use it for SSL connections, it will fail." => "Non empregalo para conexións SSL: fallará.",
"Case insensitve LDAP server (Windows)" => "Servidor LDAP que non distingue entre maiúsculas e minúsculas (Windows)",
"Turn off SSL certificate validation." => "Desactiva a validación do certificado SSL.",
"If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Se a conexión só funciona con esta opción importa o certificado SSL do servidor LDAP no seu servidor ownCloud.",
diff --git a/apps/user_ldap/l10n/hu_HU.php b/apps/user_ldap/l10n/hu_HU.php
new file mode 100644
index 0000000000..14eb5837ce
--- /dev/null
+++ b/apps/user_ldap/l10n/hu_HU.php
@@ -0,0 +1,37 @@
+Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "
Figyelem: a user_ldap és user_webdavauth alkalmazások nem kompatibilisek. Együttes használatuk váratlan eredményekhez vezethet. Kérje meg a rendszergazdát, hogy a kettő közül kapcsolja ki az egyiket.",
+"
Warning: The PHP LDAP module needs is not installed, the backend will not work. Please ask your system administrator to install it." => "
Figyelem: a szükséges PHP LDAP modul nincs telepítve. Enélkül az LDAP azonosítás nem fog működni. Kérje meg a rendszergazdát, hogy telepítse a szükséges modult!",
+"Host" => "Kiszolgáló",
+"You can omit the protocol, except you require SSL. Then start with ldaps://" => "A protokoll előtag elhagyható, kivéve, ha SSL-t kíván használni. Ebben az esetben kezdje így: ldaps://",
+"Base DN" => "DN-gyökér",
+"You can specify Base DN for users and groups in the Advanced tab" => "A Haladó fülre kattintva külön DN-gyökér állítható be a felhasználók és a csoportok számára",
+"User DN" => "A kapcsolódó felhasználó DN-je",
+"Password" => "Jelszó",
+"For anonymous access, leave DN and Password empty." => "Bejelentkezés nélküli eléréshez ne töltse ki a DN és Jelszó mezőket!",
+"User Login Filter" => "Szűrő a bejelentkezéshez",
+"Defines the filter to apply, when login is attempted. %%uid replaces the username in the login action." => "Ez a szűrő érvényes a bejelentkezés megkísérlésekor. Ekkor az %%uid változó helyére a bejelentkezési név kerül.",
+"use %%uid placeholder, e.g. \"uid=%%uid\"" => "használja az %%uid változót, pl. \"uid=%%uid\"",
+"User List Filter" => "A felhasználók szűrője",
+"Defines the filter to apply, when retrieving users." => "Ez a szűrő érvényes a felhasználók listázásakor.",
+"without any placeholder, e.g. \"objectClass=person\"." => "itt ne használjon változót, pl. \"objectClass=person\".",
+"Group Filter" => "A csoportok szűrője",
+"Defines the filter to apply, when retrieving groups." => "Ez a szűrő érvényes a csoportok listázásakor.",
+"without any placeholder, e.g. \"objectClass=posixGroup\"." => "itt ne használjunk változót, pl. \"objectClass=posixGroup\".",
+"Base User Tree" => "A felhasználói fa gyökere",
+"Base Group Tree" => "A csoportfa gyökere",
+"Group-Member association" => "A csoporttagság attribútuma",
+"Use TLS" => "Használjunk TLS-t",
+"Do not use it for SSL connections, it will fail." => "Ne használjuk SSL-kapcsolat esetén, mert nem fog működni!",
+"Case insensitve LDAP server (Windows)" => "Az LDAP-kiszolgáló nem tesz különbséget a kis- és nagybetűk között (Windows)",
+"Turn off SSL certificate validation." => "Ne ellenőrizzük az SSL-tanúsítvány érvényességét",
+"If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Ha a kapcsolat csak ezzel a beállítással működik, akkor importálja az LDAP-kiszolgáló SSL tanúsítványát az ownCloud kiszolgálóra!",
+"Not recommended, use for testing only." => "Nem javasolt, csak tesztelésre érdemes használni.",
+"User Display Name Field" => "A felhasználónév mezője",
+"The LDAP attribute to use to generate the user`s ownCloud name." => "Ebből az LDAP attribútumból képződik a felhasználó elnevezése, ami megjelenik az ownCloudban.",
+"Group Display Name Field" => "A csoport nevének mezője",
+"The LDAP attribute to use to generate the groups`s ownCloud name." => "Ebből az LDAP attribútumból képződik a csoport elnevezése, ami megjelenik az ownCloudban.",
+"in bytes" => "bájtban",
+"in seconds. A change empties the cache." => "másodpercben. A változtatás törli a cache tartalmát.",
+"Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Hagyja üresen, ha a felhasználónevet kívánja használni. Ellenkező esetben adjon meg egy LDAP/AD attribútumot!",
+"Help" => "Súgó"
+);
diff --git a/apps/user_ldap/l10n/is.php b/apps/user_ldap/l10n/is.php
new file mode 100644
index 0000000000..29bc769279
--- /dev/null
+++ b/apps/user_ldap/l10n/is.php
@@ -0,0 +1,5 @@
+ "Netþjónn",
+"Password" => "Lykilorð",
+"Help" => "Hjálp"
+);
diff --git a/apps/user_ldap/l10n/mk.php b/apps/user_ldap/l10n/mk.php
index f0a348b742..70a62e7176 100644
--- a/apps/user_ldap/l10n/mk.php
+++ b/apps/user_ldap/l10n/mk.php
@@ -1,3 +1,5 @@
"Домаќин",
+"You can omit the protocol, except you require SSL. Then start with ldaps://" => "Може да го скокнете протколот освен ако не ви треба SSL. Тогаш ставете ldaps://",
"Password" => "Лозинка"
);
diff --git a/apps/user_ldap/l10n/ro.php b/apps/user_ldap/l10n/ro.php
index beeed85745..b4d7d4902f 100644
--- a/apps/user_ldap/l10n/ro.php
+++ b/apps/user_ldap/l10n/ro.php
@@ -1,4 +1,6 @@
Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "
Atentie: Apps user_ldap si user_webdavauth sunt incompatibile. Este posibil sa experimentati un comportament neasteptat. Vă rugăm să întrebați administratorul de sistem pentru a dezactiva una dintre ele.",
+"
Warning: The PHP LDAP module needs is not installed, the backend will not work. Please ask your system administrator to install it." => "
Atentie: "Gazdă",
"You can omit the protocol, except you require SSL. Then start with ldaps://" => "Puteți omite protocolul, decât dacă folosiți SSL. Atunci se începe cu ldaps://",
"Base DN" => "DN de bază",
diff --git a/apps/user_ldap/l10n/tr.php b/apps/user_ldap/l10n/tr.php
new file mode 100644
index 0000000000..6da65d9832
--- /dev/null
+++ b/apps/user_ldap/l10n/tr.php
@@ -0,0 +1,24 @@
+ "Konak",
+"Base DN" => "Base DN",
+"User DN" => "User DN",
+"Password" => "Parola",
+"For anonymous access, leave DN and Password empty." => "Anonim erişim için DN ve Parola alanlarını boş bırakın.",
+"User Login Filter" => "Kullanıcı Oturum Açma Süzgeci",
+"use %%uid placeholder, e.g. \"uid=%%uid\"" => "%%uid yer tutucusunu kullanın, örneğin \"uid=%%uid\"",
+"User List Filter" => "Kullanıcı Liste Süzgeci",
+"without any placeholder, e.g. \"objectClass=person\"." => "bir yer tutucusu olmadan, örneğin \"objectClass=person\"",
+"Group Filter" => "Grup Süzgeci",
+"Port" => "Port",
+"Base User Tree" => "Temel Kullanıcı Ağacı",
+"Base Group Tree" => "Temel Grup Ağacı",
+"Group-Member association" => "Grup-Üye işbirliği",
+"Use TLS" => "TLS kullan",
+"Do not use it for SSL connections, it will fail." => "SSL bağlantıları ile kullanmayın, başarısız olacaktır.",
+"Turn off SSL certificate validation." => "SSL sertifika doğrulamasını kapat.",
+"Not recommended, use for testing only." => "Önerilmez, sadece test için kullanın.",
+"in bytes" => "byte cinsinden",
+"in seconds. A change empties the cache." => "saniye cinsinden. Bir değişiklik önbelleği temizleyecektir.",
+"Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Kullanıcı adı bölümünü boş bırakın (varsayılan). ",
+"Help" => "Yardım"
+);
diff --git a/apps/user_webdavauth/l10n/el.php b/apps/user_webdavauth/l10n/el.php
index 245a510134..bf4c11af64 100644
--- a/apps/user_webdavauth/l10n/el.php
+++ b/apps/user_webdavauth/l10n/el.php
@@ -1,3 +1,4 @@
"URL: http://"
+"URL: http://" => "URL: http://",
+"ownCloud will send the user credentials to this URL is interpret http 401 and http 403 as credentials wrong and all other codes as credentials correct." => "Το ownCloud θα στείλει τα συνθηματικά χρήστη σε αυτό το URL, μεταφράζοντας τα http 401 και http 403 ως λανθασμένα συνθηματικά και όλους τους άλλους κωδικούς ως σωστά συνθηματικά."
);
diff --git a/apps/user_webdavauth/l10n/eo.php b/apps/user_webdavauth/l10n/eo.php
index b4a2652d33..245a510134 100644
--- a/apps/user_webdavauth/l10n/eo.php
+++ b/apps/user_webdavauth/l10n/eo.php
@@ -1,3 +1,3 @@
"WebDAV-a URL: http://"
+"URL: http://" => "URL: http://"
);
diff --git a/apps/user_webdavauth/l10n/es.php b/apps/user_webdavauth/l10n/es.php
index 9bd32954b0..3975b04cbc 100644
--- a/apps/user_webdavauth/l10n/es.php
+++ b/apps/user_webdavauth/l10n/es.php
@@ -1,3 +1,4 @@
"WebDAV URL: http://"
+"URL: http://" => "URL: http://",
+"ownCloud will send the user credentials to this URL is interpret http 401 and http 403 as credentials wrong and all other codes as credentials correct." => "ownCloud enviará al usuario las interpretaciones 401 y 403 a esta URL como incorrectas y todas las otras credenciales como correctas"
);
diff --git a/apps/user_webdavauth/l10n/es_AR.php b/apps/user_webdavauth/l10n/es_AR.php
index 81f2ea1e57..0606d3a8eb 100644
--- a/apps/user_webdavauth/l10n/es_AR.php
+++ b/apps/user_webdavauth/l10n/es_AR.php
@@ -1,3 +1,4 @@
"URL de WebDAV: http://"
+"URL: http://" => "URL: http://",
+"ownCloud will send the user credentials to this URL is interpret http 401 and http 403 as credentials wrong and all other codes as credentials correct." => "ownCloud enviará las credenciales a esta dirección, si son interpretadas como http 401 o http 403 las credenciales son erroneas; todos los otros códigos indican que las credenciales son correctas."
);
diff --git a/apps/user_webdavauth/l10n/eu.php b/apps/user_webdavauth/l10n/eu.php
index 9bd32954b0..bbda9f10ba 100644
--- a/apps/user_webdavauth/l10n/eu.php
+++ b/apps/user_webdavauth/l10n/eu.php
@@ -1,3 +1,4 @@
"WebDAV URL: http://"
+"URL: http://" => "URL: http://",
+"ownCloud will send the user credentials to this URL is interpret http 401 and http 403 as credentials wrong and all other codes as credentials correct." => "ownCloud erabiltzailearen kredentzialak helbide honetara bidaliko ditu. http 401 eta http 403 kredentzial ez zuzenak bezala hartuko dira eta beste kode guztiak kredentzial zuzentzat hartuko dira."
);
diff --git a/apps/user_webdavauth/l10n/fr.php b/apps/user_webdavauth/l10n/fr.php
index 759d45b230..339931c7ce 100644
--- a/apps/user_webdavauth/l10n/fr.php
+++ b/apps/user_webdavauth/l10n/fr.php
@@ -1,3 +1,3 @@
"URL WebDAV : http://"
+"URL: http://" => "URL : http://"
);
diff --git a/apps/user_webdavauth/l10n/gl.php b/apps/user_webdavauth/l10n/gl.php
index a5b7e56771..fa81db333d 100644
--- a/apps/user_webdavauth/l10n/gl.php
+++ b/apps/user_webdavauth/l10n/gl.php
@@ -1,3 +1,4 @@
"URL WebDAV: http://"
+"URL: http://" => "URL: http://",
+"ownCloud will send the user credentials to this URL is interpret http 401 and http 403 as credentials wrong and all other codes as credentials correct." => "ownCloud enviará as credenciais do usuario a este URL, http 401 e http 403 interpretanse como credenciais incorrectas e todos os outros códigos como credenciais correctas."
);
diff --git a/apps/user_webdavauth/l10n/hu_HU.php b/apps/user_webdavauth/l10n/hu_HU.php
new file mode 100644
index 0000000000..75a23ed7be
--- /dev/null
+++ b/apps/user_webdavauth/l10n/hu_HU.php
@@ -0,0 +1,4 @@
+ "URL: http://",
+"ownCloud will send the user credentials to this URL is interpret http 401 and http 403 as credentials wrong and all other codes as credentials correct." => "Az ownCloud rendszer erre a címre fogja elküldeni a felhasználók bejelentkezési adatait. Ha 401-es vagy 403-as http kódot kap vissza, azt sikertelen azonosításként fogja értelmezni, minden más kódot sikeresnek fog tekinteni."
+);
diff --git a/apps/user_webdavauth/l10n/is.php b/apps/user_webdavauth/l10n/is.php
new file mode 100644
index 0000000000..13d9a1fe8f
--- /dev/null
+++ b/apps/user_webdavauth/l10n/is.php
@@ -0,0 +1,4 @@
+ "Vefslóð: http://",
+"ownCloud will send the user credentials to this URL is interpret http 401 and http 403 as credentials wrong and all other codes as credentials correct." => "ownCloud mun senda auðkenni notenda á þessa vefslóð og túkla svörin http 401 og http 403 sem rangar auðkenniupplýsingar og öll önnur svör sem rétt."
+);
diff --git a/apps/user_webdavauth/l10n/mk.php b/apps/user_webdavauth/l10n/mk.php
new file mode 100644
index 0000000000..245a510134
--- /dev/null
+++ b/apps/user_webdavauth/l10n/mk.php
@@ -0,0 +1,3 @@
+ "URL: http://"
+);
diff --git a/apps/user_webdavauth/l10n/nb_NO.php b/apps/user_webdavauth/l10n/nb_NO.php
new file mode 100644
index 0000000000..245a510134
--- /dev/null
+++ b/apps/user_webdavauth/l10n/nb_NO.php
@@ -0,0 +1,3 @@
+ "URL: http://"
+);
diff --git a/apps/user_webdavauth/l10n/ro.php b/apps/user_webdavauth/l10n/ro.php
new file mode 100644
index 0000000000..17157da044
--- /dev/null
+++ b/apps/user_webdavauth/l10n/ro.php
@@ -0,0 +1,4 @@
+ "URL: http://",
+"ownCloud will send the user credentials to this URL is interpret http 401 and http 403 as credentials wrong and all other codes as credentials correct." => "owncloud va trimite acreditatile de utilizator pentru a interpreta aceasta pagina. Http 401 si Http 403 are acreditarile si orice alt cod gresite ca acreditarile corecte"
+);
diff --git a/apps/user_webdavauth/l10n/ru.php b/apps/user_webdavauth/l10n/ru.php
index 9bd32954b0..245a510134 100644
--- a/apps/user_webdavauth/l10n/ru.php
+++ b/apps/user_webdavauth/l10n/ru.php
@@ -1,3 +1,3 @@
"WebDAV URL: http://"
+"URL: http://" => "URL: http://"
);
diff --git a/apps/user_webdavauth/l10n/sl.php b/apps/user_webdavauth/l10n/sl.php
index 9bd32954b0..8f4effc81a 100644
--- a/apps/user_webdavauth/l10n/sl.php
+++ b/apps/user_webdavauth/l10n/sl.php
@@ -1,3 +1,4 @@
"WebDAV URL: http://"
+"URL: http://" => "URL: http://",
+"ownCloud will send the user credentials to this URL is interpret http 401 and http 403 as credentials wrong and all other codes as credentials correct." => "ownCloud bo poslal uporabniška poverila temu URL naslovu. Pri tem bo interpretiral http 401 in http 403 odgovor kot spodletelo avtentikacijo ter vse ostale http odgovore kot uspešne."
);
diff --git a/apps/user_webdavauth/l10n/sv.php b/apps/user_webdavauth/l10n/sv.php
index 245a510134..b7a7e4ea2d 100644
--- a/apps/user_webdavauth/l10n/sv.php
+++ b/apps/user_webdavauth/l10n/sv.php
@@ -1,3 +1,4 @@
"URL: http://"
+"URL: http://" => "URL: http://",
+"ownCloud will send the user credentials to this URL is interpret http 401 and http 403 as credentials wrong and all other codes as credentials correct." => "ownCloud kommer att skicka inloggningsuppgifterna till denna URL och tolkar http 401 och http 403 som fel och alla andra koder som korrekt."
);
diff --git a/apps/user_webdavauth/l10n/tr.php b/apps/user_webdavauth/l10n/tr.php
index 9bd32954b0..245a510134 100644
--- a/apps/user_webdavauth/l10n/tr.php
+++ b/apps/user_webdavauth/l10n/tr.php
@@ -1,3 +1,3 @@
"WebDAV URL: http://"
+"URL: http://" => "URL: http://"
);
diff --git a/config/config.sample.php b/config/config.sample.php
index 78dfe17ea7..b1655d0283 100644
--- a/config/config.sample.php
+++ b/config/config.sample.php
@@ -78,6 +78,9 @@ $CONFIG = array(
/* Host to use for sending mail, depends on mail_smtpmode if this is used */
"mail_smtphost" => "127.0.0.1",
+/* Port to use for sending mail, depends on mail_smtpmode if this is used */
+"mail_smtpport" => 25,
+
/* authentication needed to send mail, depends on mail_smtpmode if this is used
* (false = disable authentication)
*/
@@ -112,6 +115,9 @@ $CONFIG = array(
*/
// "datadirectory" => "",
+/* Enable maintenance mode to disable ownCloud */
+"maintenance" => false,
+
"apps_paths" => array(
/* Set an array of path for your apps directories
diff --git a/core/ajax/update.php b/core/ajax/update.php
new file mode 100644
index 0000000000..20ab045c89
--- /dev/null
+++ b/core/ajax/update.php
@@ -0,0 +1,67 @@
+success('Turned on maintenance mode');
+ try {
+ $result = OC_DB::updateDbFromStructure(OC::$SERVERROOT.'/db_structure.xml');
+ $watcher->success('Updated database');
+ } catch (Exception $exception) {
+ $watcher->failure($exception->getMessage());
+ }
+ $minimizerCSS = new OC_Minimizer_CSS();
+ $minimizerCSS->clearCache();
+ $minimizerJS = new OC_Minimizer_JS();
+ $minimizerJS->clearCache();
+ OC_Config::setValue('version', implode('.', OC_Util::getVersion()));
+ OC_App::checkAppsRequirements();
+ // load all apps to also upgrade enabled apps
+ OC_App::loadApps();
+ OC_Config::setValue('maintenance', false);
+ $watcher->success('Turned off maintenance mode');
+ $watcher->done();
+}
+
+class UpdateWatcher {
+ /**
+ * @var \OC_EventSource $eventSource;
+ */
+ private $eventSource;
+
+ public function __construct($eventSource) {
+ $this->eventSource = $eventSource;
+ }
+
+ public function success($message) {
+ OC_Util::obEnd();
+ $this->eventSource->send('success', $message);
+ ob_start();
+ }
+
+ public function error($message) {
+ OC_Util::obEnd();
+ $this->eventSource->send('error', $message);
+ ob_start();
+ }
+
+ public function failure($message) {
+ OC_Util::obEnd();
+ $this->eventSource->send('failure', $message);
+ $this->eventSource->close();
+ die();
+ }
+
+ public function done() {
+ OC_Util::obEnd();
+ $this->eventSource->send('done', '');
+ $this->eventSource->close();
+ }
+
+}
\ No newline at end of file
diff --git a/core/css/styles.css b/core/css/styles.css
index d635916b5a..6e1cef72ed 100644
--- a/core/css/styles.css
+++ b/core/css/styles.css
@@ -214,7 +214,8 @@ div.jp-play-bar, div.jp-seek-bar { padding:0; }
.pager { list-style:none; float:right; display:inline; margin:.7em 13em 0 0; }
.pager li { display:inline-block; }
-li.error { width:640px; margin:4em auto; padding:1em 1em 1em 4em; background:#ffe .8em .8em no-repeat; color:#FF3B3B; border:1px solid #ccc; -moz-border-radius:10px; -webkit-border-radius:10px; border-radius:10px; }
+li.update, li.error { width:640px; margin:4em auto; padding:1em 1em 1em 4em; background:#ffe .8em .8em no-repeat; border:1px solid #ccc; -moz-border-radius:10px; -webkit-border-radius:10px; border-radius:10px; cursor:default; }
+.error { color:#FF3B3B; }
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default { overflow:hidden; text-overflow:ellipsis; }
.hint { background-image:url('../img/actions/info.png'); background-repeat:no-repeat; color:#777777; padding-left:25px; background-position:0 0.3em;}
.separator { display:inline; border-left:1px solid #d3d3d3; border-right:1px solid #fff; height:10px; width:0px; margin:4px; }
diff --git a/core/js/js.js b/core/js/js.js
index 7d967321d9..610950995d 100644
--- a/core/js/js.js
+++ b/core/js/js.js
@@ -3,14 +3,15 @@
* Add
* define('DEBUG', true);
* To the end of config/config.php to enable debug mode.
+ * The undefined checks fix the broken ie8 console
*/
-if (oc_debug !== true) {
+if (oc_debug !== true || typeof console === "undefined" || typeof console.log === "undefined") {
if (!window.console) {
window.console = {};
}
var methods = ['log', 'debug', 'warn', 'info', 'error', 'assert'];
for (var i = 0; i < methods.length; i++) {
- console[methods[i]] = function () { };
+ console[methods[i]] = function () { };
}
}
@@ -20,7 +21,6 @@ if (oc_debug !== true) {
* @param text the string to translate
* @return string
*/
-
function t(app,text, vars){
if( !( t.cache[app] )){
$.ajax(OC.filePath('core','ajax','translations.php'),{
diff --git a/core/l10n/bn_BD.php b/core/l10n/bn_BD.php
new file mode 100644
index 0000000000..a335076138
--- /dev/null
+++ b/core/l10n/bn_BD.php
@@ -0,0 +1,121 @@
+ "%s নামের ব্যবহারকারি আপনার সাথে একটা ফাইল ভাগাভাগি করেছেন",
+"User %s shared a folder with you" => "%s নামের ব্যবহারকারি আপনার সাথে একটা ফোল্ডার ভাগাভাগি করেছেন",
+"Category type not provided." => "ক্যাটেগরির ধরণটি প্রদান করা হয় নি।",
+"No category to add?" => "যোগ করার মত কোন ক্যাটেগরি নেই ?",
+"This category already exists: " => "এই ক্যাটেগরিটি বিদ্যমানঃ",
+"Object type not provided." => "অবজেক্টের ধরণটি প্রদান করা হয় নি।",
+"Error adding %s to favorites." => "প্রিয়তে %s যোগ করতে সমস্যা দেখা দিয়েছে।",
+"No categories selected for deletion." => "মুছে ফেলার জন্য কোন ক্যাটেগরি নির্বাচন করা হয় নি।",
+"Error removing %s from favorites." => "প্রিয় থেকে %s সরিয়ে ফেলতে সমস্যা দেখা দিয়েছে।",
+"Settings" => "নিয়ামকসমূহ",
+"seconds ago" => "সেকেন্ড পূর্বে",
+"1 minute ago" => "1 মিনিট পূর্বে",
+"{minutes} minutes ago" => "{minutes} মিনিট পূর্বে",
+"1 hour ago" => "1 ঘন্টা পূর্বে",
+"{hours} hours ago" => "{hours} ঘন্টা পূর্বে",
+"today" => "আজ",
+"yesterday" => "গতকাল",
+"{days} days ago" => "{days} দিন পূর্বে",
+"last month" => "গতমাস",
+"{months} months ago" => "{months} মাস পূর্বে",
+"months ago" => "মাস পূর্বে",
+"last year" => "গত বছর",
+"years ago" => "বছর পূর্বে",
+"Choose" => "নির্বাচন",
+"Cancel" => "বাতিল",
+"No" => "না",
+"Yes" => "হ্যাঁ",
+"Ok" => "তথাস্তু",
+"The object type is not specified." => "অবজেক্টের ধরণটি সুনির্দিষ্ট নয়।",
+"Error" => "সমস্যা",
+"The app name is not specified." => "অ্যাপের নামটি সুনির্দিষ্ট নয়।",
+"The required file {file} is not installed!" => "আবশ্যিক {file} টি সংস্থাপিত নেই !",
+"Error while sharing" => "ভাগাভাগি করার সময় সমস্যা দেখা দিয়েছে",
+"Error while unsharing" => "ভাগাভাগি বাতিল করার সময় সমস্যা দেখা দিয়েছে",
+"Error while changing permissions" => "অনুমতি পরিবর্তন করার সময় সমস্যা দেখা দিয়েছে",
+"Share with" => "যাদের সাথে ভাগাভাগি করবে",
+"Share with link" => "লিংক সহযোগে ভাগাভাগি",
+"Password protect" => "কূটশব্দদ্বারা সুরক্ষিত",
+"Password" => "কূটশব্দ",
+"Email link to person" => "ব্যক্তির সাথে ই-মেইল যুক্ত কর",
+"Send" => "পাঠাও",
+"Set expiration date" => "মেয়াদোত্তীর্ণ হওয়ার তারিখ নির্ধারণ করুন",
+"Expiration date" => "মেয়াদোত্তীর্ণ হওয়ার তারিখ",
+"Share via email:" => "ই-মেইলের মাধ্যমে ভাগাভাগি করঃ",
+"No people found" => "কোন ব্যক্তি খুঁজে পাওয়া গেল না",
+"Resharing is not allowed" => "পূনরায় ভাগাভাগি করার অনুমতি নেই",
+"Unshare" => "ভাগাভাগি বাতিল",
+"can edit" => "সম্পাদনা করতে পারবে",
+"access control" => "অধিগম্যতার নিয়ন্ত্রণ",
+"create" => "তৈরি কর",
+"update" => "পরিবর্ধন কর",
+"delete" => "মুছে ফেল",
+"share" => "ভাগাভাগি কর",
+"Password protected" => "কূটশব্দদ্বারা সুরক্ষিত",
+"Error unsetting expiration date" => "মেয়াদোত্তীর্ণ হওয়ার তারিখ নির্ধারণ বাতিল করতে সমস্যা",
+"Error setting expiration date" => "মেয়াদোত্তীর্ণ হওয়ার তারিখ নির্ধারণ করতে সমস্যা",
+"Sending ..." => "পাঠানো হচ্ছে......",
+"Email sent" => "ই-মেইল পাঠানো হয়েছে",
+"ownCloud password reset" => "ownCloud কূটশব্দ পূনঃনির্ধারণ",
+"Use the following link to reset your password: {link}" => "কূটশব্দ পূনঃনির্ধারণ করতে নিম্নোক্ত লিংকে ক্লিক করুন:{link}",
+"You will receive a link to reset your password via Email." => "কূটশব্দ পূনঃনির্ধারণের জন্য একটি লিংক ই-মেইলের মাধ্যমে পাঠানো হয়েছে।",
+"Reset email send." => "পূনঃনির্ধারণ ই-মেইল পাঠানো হয়েছে।",
+"Request 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" => "যোগ কর",
+"Security Warning" => "নিরাপত্তাজনিত সতর্কতা",
+"Create an
admin account " => "
প্রশাসক একাউন্ট তৈরি কর",
+"Advanced" => "সুচারু",
+"Data folder" => "ডাটা ফোল্ডার",
+"Configure the database" => "ডাটাবেজ কনফিগার কর",
+"will be used" => "ব্যবহৃত হবে",
+"Database user" => "ডাটাবেজ ব্যবহারকারি",
+"Database password" => "ডাটাবেজ কূটশব্দ",
+"Database name" => "ডাটাবেজের নাম",
+"Database tablespace" => "ডাটাবেজ টেবিলস্পেস",
+"Database host" => "ডাটাবেজ হোস্ট",
+"Finish setup" => "সেট-আপ সুসম্পন্ন কর",
+"Sunday" => "রবিবার",
+"Monday" => "সোমবার",
+"Tuesday" => "মঙ্গলবার",
+"Wednesday" => "বুধবার",
+"Thursday" => "বৃহষ্পতিবার",
+"Friday" => "শুক্রবার",
+"Saturday" => "শনিবার",
+"January" => "জানুয়ারি",
+"February" => "ফেব্রুয়ারি",
+"March" => "মার্চ",
+"April" => "এপ্রিল",
+"May" => "মে",
+"June" => "জুন",
+"July" => "জুলাই",
+"August" => "অগাস্ট",
+"September" => "সেপ্টেম্বর",
+"October" => "অক্টোবর",
+"November" => "নভেম্বর",
+"December" => "ডিসেম্বর",
+"web services under your control" => "ওয়েব সেবাসমূহ এখন আপনার হাতের মুঠোয়",
+"Log out" => "প্রস্থান",
+"Lost your password?" => "আপনার কূটশব্দটি হারিয়েছেন ?",
+"remember" => "মনে রাখ",
+"Log in" => "প্রবেশ",
+"You are logged out." => "আপনি প্রস্থান করেছেন",
+"prev" => "পূর্ববর্তী",
+"next" => "পরবর্তী",
+"Security Warning!" => "নিরাপত্তাবিষয়ক সতর্কবাণী",
+"Verify" => "যাচাই কর"
+);
diff --git a/core/l10n/es_AR.php b/core/l10n/es_AR.php
index 2da7951b06..830281dabb 100644
--- a/core/l10n/es_AR.php
+++ b/core/l10n/es_AR.php
@@ -1,4 +1,8 @@
"El usurario %s compartió un archivo con vos.",
+"User %s shared a folder with you" => "El usurario %s compartió una carpeta con vos.",
+"User %s shared the file \"%s\" with you. It is available for download here: %s" => "El usuario %s compartió el archivo \"%s\" con vos. Está disponible para su descarga aquí: %s",
+"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "El usuario %s compartió el archivo \"%s\" con vos. Está disponible para su descarga aquí: %s",
"Category type not provided." => "Tipo de categoría no provisto. ",
"No category to add?" => "¿Ninguna categoría para añadir?",
"This category already exists: " => "Esta categoría ya existe: ",
@@ -39,6 +43,8 @@
"Share with link" => "Compartir con link",
"Password protect" => "Proteger con contraseña ",
"Password" => "Contraseña",
+"Email link to person" => "Enviar el link por e-mail.",
+"Send" => "Enviar",
"Set expiration date" => "Asignar fecha de vencimiento",
"Expiration date" => "Fecha de vencimiento",
"Share via email:" => "compartido a través de e-mail:",
@@ -55,6 +61,8 @@
"Password protected" => "Protegido por contraseña",
"Error unsetting expiration date" => "Error al remover la fecha de caducidad",
"Error setting expiration date" => "Error al asignar fecha de vencimiento",
+"Sending ..." => "Enviando...",
+"Email sent" => "Email enviado",
"ownCloud password reset" => "Restablecer contraseña de ownCloud",
"Use the following link to reset your password: {link}" => "Usá este enlace para restablecer tu contraseña: {link}",
"You will receive a link to reset your password via Email." => "Vas a recibir un enlace por e-mail para restablecer tu contraseña",
diff --git a/core/l10n/fr.php b/core/l10n/fr.php
index 3d174b327a..6b1449dd4b 100644
--- a/core/l10n/fr.php
+++ b/core/l10n/fr.php
@@ -2,6 +2,7 @@
"User %s shared a file with you" => "L'utilisateur %s a partagé un fichier avec vous",
"User %s shared a folder with you" => "L'utilsateur %s a partagé un dossier avec vous",
"User %s shared the file \"%s\" with you. It is available for download here: %s" => "L'utilisateur %s a partagé le fichier \"%s\" avec vous. Vous pouvez le télécharger ici : %s",
+"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "L'utilisateur %s a partagé le dossier \"%s\" avec vous. Il est disponible au téléchargement ici : %s",
"Category type not provided." => "Type de catégorie non spécifié.",
"No category to add?" => "Pas de catégorie à ajouter ?",
"This category already exists: " => "Cette catégorie existe déjà : ",
@@ -58,7 +59,7 @@
"delete" => "supprimer",
"share" => "partager",
"Password protected" => "Protégé par un mot de passe",
-"Error unsetting expiration date" => "Un erreur est survenue pendant la suppression de la date d'expiration",
+"Error unsetting expiration date" => "Une erreur est survenue pendant la suppression de la date d'expiration",
"Error setting expiration date" => "Erreur lors de la spécification de la date d'expiration",
"Sending ..." => "En cours d'envoi ...",
"Email sent" => "Email envoyé",
@@ -82,7 +83,7 @@
"Cloud not found" => "Introuvable",
"Edit categories" => "Modifier les catégories",
"Add" => "Ajouter",
-"Security Warning" => "Avertissement de sécutité",
+"Security Warning" => "Avertissement de sécurité",
"No secure random number generator is available, please enable the PHP OpenSSL extension." => "Aucun générateur de nombre aléatoire sécurisé n'est disponible, veuillez activer l'extension PHP OpenSSL",
"Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Sans générateur de nombre aléatoire sécurisé, un attaquant peut être en mesure de prédire les jetons de réinitialisation du mot de passe, et ainsi prendre le contrôle de votre compte utilisateur.",
"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 dossier data et vos fichiers sont probablement accessibles depuis internet. Le fichier .htaccess fourni par ownCloud ne fonctionne pas. Nous vous recommandons vivement de configurer votre serveur web de manière à ce que le dossier data ne soit plus accessible ou bien de déplacer le dossier data en dehors du dossier racine des documents du serveur web.",
diff --git a/core/l10n/gl.php b/core/l10n/gl.php
index 4cdc39896b..8daa8c6d1c 100644
--- a/core/l10n/gl.php
+++ b/core/l10n/gl.php
@@ -1,23 +1,27 @@
"O usuario %s compartíu un ficheiro con vostede",
+"User %s shared a folder with you" => "O usuario %s compartíu un cartafol con vostede",
+"User %s shared the file \"%s\" with you. It is available for download here: %s" => "O usuario %s compartiu o ficheiro «%s» con vostede. Teno dispoñíbel en: %s",
+"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "O usuario %s compartiu o cartafol «%s» con vostede. Teno dispoñíbel en: %s",
"Category type not provided." => "Non se indicou o tipo de categoría",
"No category to add?" => "Sen categoría que engadir?",
"This category already exists: " => "Esta categoría xa existe: ",
"Object type not provided." => "Non se forneceu o tipo de obxecto.",
-"%s ID not provided." => "Non se deu o ID %s.",
-"Error adding %s to favorites." => "Erro ao engadir %s aos favoritos.",
+"%s ID not provided." => "Non se forneceu o ID %s.",
+"Error adding %s to favorites." => "Produciuse un erro ao engadir %s aos favoritos.",
"No categories selected for deletion." => "Non hai categorías seleccionadas para eliminar.",
-"Error removing %s from favorites." => "Erro ao eliminar %s dos favoritos.",
+"Error removing %s from favorites." => "Produciuse un erro ao eliminar %s dos favoritos.",
"Settings" => "Configuracións",
"seconds ago" => "segundos atrás",
"1 minute ago" => "hai 1 minuto",
-"{minutes} minutes ago" => "{minutes} minutos atrás",
+"{minutes} minutes ago" => "hai {minutes} minutos",
"1 hour ago" => "hai 1 hora",
-"{hours} hours ago" => "{hours} horas atrás",
+"{hours} hours ago" => "hai {hours} horas",
"today" => "hoxe",
"yesterday" => "onte",
-"{days} days ago" => "{days} días atrás",
+"{days} days ago" => "hai {days} días",
"last month" => "último mes",
-"{months} months ago" => "{months} meses atrás",
+"{months} months ago" => "hai {months} meses",
"months ago" => "meses atrás",
"last year" => "último ano",
"years ago" => "anos atrás",
@@ -30,42 +34,46 @@
"Error" => "Erro",
"The app name is not specified." => "Non se especificou o nome do aplicativo.",
"The required file {file} is not installed!" => "Non está instalado o ficheiro {file} que se precisa",
-"Error while sharing" => "Erro compartindo",
-"Error while unsharing" => "Erro ao deixar de compartir",
-"Error while changing permissions" => "Erro ao cambiar os permisos",
-"Shared with you and the group {group} by {owner}" => "Compartido contigo e co grupo {group} de {owner}",
-"Shared with you by {owner}" => "Compartido contigo por {owner}",
+"Error while sharing" => "Produciuse un erro ao compartir",
+"Error while unsharing" => "Produciuse un erro ao deixar de compartir",
+"Error while changing permissions" => "Produciuse un erro ao cambiar os permisos",
+"Shared with you and the group {group} by {owner}" => "Compartido con vostede e co grupo {group} por {owner}",
+"Shared with you by {owner}" => "Compartido con vostede por {owner}",
"Share with" => "Compartir con",
-"Share with link" => "Compartir ca ligazón",
+"Share with link" => "Compartir coa ligazón",
"Password protect" => "Protexido con contrasinais",
"Password" => "Contrasinal",
+"Email link to person" => "Enviar ligazón por correo",
+"Send" => "Enviar",
"Set expiration date" => "Definir a data de caducidade",
"Expiration date" => "Data de caducidade",
-"Share via email:" => "Compartir por correo electrónico:",
+"Share via email:" => "Compartir por correo:",
"No people found" => "Non se atopou xente",
-"Resharing is not allowed" => "Non se acepta volver a compartir",
+"Resharing is not allowed" => "Non se permite volver a compartir",
"Shared in {item} with {user}" => "Compartido en {item} con {user}",
"Unshare" => "Deixar de compartir",
"can edit" => "pode editar",
"access control" => "control de acceso",
"create" => "crear",
"update" => "actualizar",
-"delete" => "borrar",
+"delete" => "eliminar",
"share" => "compartir",
"Password protected" => "Protexido con contrasinal",
-"Error unsetting expiration date" => "Erro ao quitar a data de caducidade",
-"Error setting expiration date" => "Erro ao definir a data de caducidade",
-"ownCloud password reset" => "Restablecer contrasinal de ownCloud",
-"Use the following link to reset your password: {link}" => "Usa a seguinte ligazón para restablecer o contrasinal: {link}",
-"You will receive a link to reset your password via Email." => "Recibirá unha ligazón por correo electrónico para restablecer o contrasinal",
-"Reset email send." => "Restablecer o envío por correo.",
-"Request failed!" => "Fallo na petición",
+"Error unsetting expiration date" => "Produciuse un erro ao retirar a data de caducidade",
+"Error setting expiration date" => "Produciuse un erro ao definir a data de caducidade",
+"Sending ..." => "Enviando...",
+"Email sent" => "Correo enviado",
+"ownCloud password reset" => "Restabelecer o contrasinal de ownCloud",
+"Use the following link to reset your password: {link}" => "Usa a seguinte ligazón para restabelecer o contrasinal: {link}",
+"You will receive a link to reset your password via Email." => "Recibirá unha ligazón por correo para restabelecer o contrasinal",
+"Reset email send." => "Restabelecer o envío por correo.",
+"Request failed!" => "Non foi posíbel facer a petición",
"Username" => "Nome de usuario",
-"Request reset" => "Petición de restablecemento",
-"Your password was reset" => "O contrasinal foi restablecido",
+"Request reset" => "Petición de restabelecemento",
+"Your password was reset" => "O contrasinal foi restabelecido",
"To login page" => "A páxina de conexión",
"New password" => "Novo contrasinal",
-"Reset password" => "Restablecer contrasinal",
+"Reset password" => "Restabelecer o contrasinal",
"Personal" => "Persoal",
"Users" => "Usuarios",
"Apps" => "Aplicativos",
@@ -75,15 +83,15 @@
"Cloud not found" => "Nube non atopada",
"Edit categories" => "Editar categorías",
"Add" => "Engadir",
-"Security Warning" => "Aviso de seguridade",
-"No secure random number generator is available, please enable the PHP OpenSSL extension." => "Non hai un xerador de números aleatorios dispoñíbel. Activa o engadido de OpenSSL para PHP.",
-"Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Sen un xerador de números aleatorios seguro podería acontecer que predicindo as cadeas de texto de reinicio de contrasinais se afagan coa túa conta.",
-"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." => "O teu cartafol de datos e os teus ficheiros son seguramente accesibles a través de internet. O ficheiro .htaccess que ownCloud fornece non está empregándose. Suxírese que configures o teu servidor web de tal maneira que o cartafol de datos non estea accesíbel ou movas o cartafol de datos fóra do root do directorio de datos do servidor web.",
+"Security Warning" => "Aviso de seguranza",
+"No secure random number generator is available, please enable the PHP OpenSSL extension." => "Non hai un xerador de números ao chou dispoñíbel. Active o engadido de OpenSSL para PHP.",
+"Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Sen un xerador seguro de números ao chou podería acontecer que predicindo as cadeas de texto de reinicio de contrasinais se afagan coa súa conta.",
+"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." => "O seu cartafol de datos e os seus ficheiros probabelmente sexan accesíbeis a través da Internet. O ficheiro .htaccess que fornece ownCloud non está a empregarse. Suxerimoslle que configure o seu servidor web de tal xeito que o cartafol de datos non estea accesíbel ou mova o cartafol de datos fora do directorio raíz de datos do servidor web.",
"Create an
admin account " => "Crear unha
contra de administrador ",
"Advanced" => "Avanzado",
"Data folder" => "Cartafol de datos",
"Configure the database" => "Configurar a base de datos",
-"will be used" => "será utilizado",
+"will be used" => "vai ser utilizado",
"Database user" => "Usuario da base de datos",
"Database password" => "Contrasinal da base de datos",
"Database name" => "Nome da base de datos",
@@ -97,23 +105,23 @@
"Thursday" => "Xoves",
"Friday" => "Venres",
"Saturday" => "Sábado",
-"January" => "Xaneiro",
-"February" => "Febreiro",
-"March" => "Marzo",
-"April" => "Abril",
-"May" => "Maio",
-"June" => "Xuño",
-"July" => "Xullo",
-"August" => "Agosto",
-"September" => "Setembro",
-"October" => "Outubro",
-"November" => "Novembro",
-"December" => "Decembro",
+"January" => "xaneiro",
+"February" => "febreiro",
+"March" => "marzo",
+"April" => "abril",
+"May" => "maio",
+"June" => "xuño",
+"July" => "xullo",
+"August" => "agosto",
+"September" => "setembro",
+"October" => "outubro",
+"November" => "novembro",
+"December" => "decembro",
"web services under your control" => "servizos web baixo o seu control",
"Log out" => "Desconectar",
"Automatic logon rejected!" => "Rexeitouse a entrada automática",
-"If you did not change your password recently, your account may be compromised!" => "Se non fixeches cambios de contrasinal recentemente é posíbel que a túa conta estea comprometida!",
-"Please change your password to secure your account again." => "Cambia de novo o teu contrasinal para asegurar a túa conta.",
+"If you did not change your password recently, your account may be compromised!" => "Se non fixo recentemente cambios de contrasinal é posíbel que a súa conta estea comprometida!",
+"Please change your password to secure your account again." => "Cambie de novo o seu contrasinal para asegurar a súa conta.",
"Lost your password?" => "Perdeu o contrasinal?",
"remember" => "lembrar",
"Log in" => "Conectar",
@@ -121,6 +129,6 @@
"prev" => "anterior",
"next" => "seguinte",
"Security Warning!" => "Advertencia de seguranza",
-"Please verify your password.
For security reasons you may be occasionally asked to enter your password again." => "Verifica o teu contrasinal.
Por motivos de seguridade pode que ocasionalmente se che pregunte de novo polo teu contrasinal.",
+"Please verify your password.
For security reasons you may be occasionally asked to enter your password again." => "Verifique o seu contrasinal.
Por motivos de seguranza pode que ocasionalmente se lle pregunte de novo polo seu contrasinal.",
"Verify" => "Verificar"
);
diff --git a/core/l10n/hu_HU.php b/core/l10n/hu_HU.php
index d1bfb303e6..1c86e8b11d 100644
--- a/core/l10n/hu_HU.php
+++ b/core/l10n/hu_HU.php
@@ -1,27 +1,73 @@
"%s felhasználó megosztott Önnel egy fájlt",
+"User %s shared a folder with you" => "%s felhasználó megosztott Önnel egy mappát",
+"User %s shared the file \"%s\" with you. It is available for download here: %s" => "%s felhasználó megosztotta ezt az állományt Önnel: %s. A fájl innen tölthető le: %s",
+"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "%s felhasználó megosztotta ezt a mappát Önnel: %s. A mappa innen tölthető le: %s",
+"Category type not provided." => "Nincs megadva a kategória típusa.",
"No category to add?" => "Nincs hozzáadandó kategória?",
-"This category already exists: " => "Ez a kategória már létezik",
+"This category already exists: " => "Ez a kategória már létezik: ",
+"Object type not provided." => "Az objektum típusa nincs megadva.",
+"%s ID not provided." => "%s ID nincs megadva.",
+"Error adding %s to favorites." => "Nem sikerült a kedvencekhez adni ezt: %s",
"No categories selected for deletion." => "Nincs törlésre jelölt kategória",
+"Error removing %s from favorites." => "Nem sikerült a kedvencekből törölni ezt: %s",
"Settings" => "Beállítások",
-"seconds ago" => "másodperccel ezelőtt",
-"1 minute ago" => "1 perccel ezelőtt",
+"seconds ago" => "pár másodperce",
+"1 minute ago" => "1 perce",
+"{minutes} minutes ago" => "{minutes} perce",
+"1 hour ago" => "1 órája",
+"{hours} hours ago" => "{hours} órája",
"today" => "ma",
"yesterday" => "tegnap",
+"{days} days ago" => "{days} napja",
"last month" => "múlt hónapban",
-"months ago" => "hónappal ezelőtt",
+"{months} months ago" => "{months} hónapja",
+"months ago" => "több hónapja",
"last year" => "tavaly",
-"years ago" => "évvel ezelőtt",
+"years ago" => "több éve",
+"Choose" => "Válasszon",
"Cancel" => "Mégse",
"No" => "Nem",
"Yes" => "Igen",
"Ok" => "Ok",
+"The object type is not specified." => "Az objektum típusa nincs megadva.",
"Error" => "Hiba",
-"Password" => "Jelszó",
-"Unshare" => "Nem oszt meg",
-"create" => "létrehozás",
+"The app name is not specified." => "Az alkalmazás neve nincs megadva.",
+"The required file {file} is not installed!" => "A szükséges fájl: {file} nincs telepítve!",
+"Error while sharing" => "Nem sikerült létrehozni a megosztást",
+"Error while unsharing" => "Nem sikerült visszavonni a megosztást",
+"Error while changing permissions" => "Nem sikerült módosítani a jogosultságokat",
+"Shared with you and the group {group} by {owner}" => "Megosztotta Önnel és a(z) {group} csoporttal: {owner}",
+"Shared with you by {owner}" => "Megosztotta Önnel: {owner}",
+"Share with" => "Kivel osztom meg",
+"Share with link" => "Link megadásával osztom meg",
+"Password protect" => "Jelszóval is védem",
+"Password" => "Jelszó (tetszőleges)",
+"Email link to person" => "Email címre küldjük el",
+"Send" => "Küldjük el",
+"Set expiration date" => "Legyen lejárati idő",
+"Expiration date" => "A lejárati idő",
+"Share via email:" => "Megosztás emaillel:",
+"No people found" => "Nincs találat",
+"Resharing is not allowed" => "Ezt az állományt csak a tulajdonosa oszthatja meg másokkal",
+"Shared in {item} with {user}" => "Megosztva {item}-ben {user}-rel",
+"Unshare" => "A megosztás visszavonása",
+"can edit" => "módosíthat",
+"access control" => "jogosultság",
+"create" => "létrehoz",
+"update" => "szerkeszt",
+"delete" => "töröl",
+"share" => "megoszt",
+"Password protected" => "Jelszóval van védve",
+"Error unsetting expiration date" => "Nem sikerült a lejárati időt törölni",
+"Error setting expiration date" => "Nem sikerült a lejárati időt beállítani",
+"Sending ..." => "Küldés ...",
+"Email sent" => "Az emailt elküldtük",
"ownCloud password reset" => "ownCloud jelszó-visszaállítás",
-"Use the following link to reset your password: {link}" => "Használja az alábbi linket a jelszó-visszaállításhoz: {link}",
-"You will receive a link to reset your password via Email." => "Egy e-mailben kap értesítést a jelszóváltoztatás módjáról.",
+"Use the following link to reset your password: {link}" => "Használja ezt a linket a jelszó ismételt beállításához: {link}",
+"You will receive a link to reset your password via Email." => "Egy emailben fog értesítést kapni a jelszóbeállítás módjáról.",
+"Reset email send." => "Elküldtük az emailt a jelszó ismételt beállításához.",
+"Request failed!" => "Nem sikerült a kérést teljesíteni!",
"Username" => "Felhasználónév",
"Request reset" => "Visszaállítás igénylése",
"Your password was reset" => "Jelszó megváltoztatva",
@@ -31,48 +77,58 @@
"Personal" => "Személyes",
"Users" => "Felhasználók",
"Apps" => "Alkalmazások",
-"Admin" => "Admin",
+"Admin" => "Adminisztráció",
"Help" => "Súgó",
-"Access forbidden" => "Hozzáférés tiltva",
+"Access forbidden" => "A hozzáférés nem engedélyezett",
"Cloud not found" => "A felhő nem található",
"Edit categories" => "Kategóriák szerkesztése",
"Add" => "Hozzáadás",
"Security Warning" => "Biztonsági figyelmeztetés",
-"Create an
admin account " => "
Rendszergazdafiók létrehozása",
+"No secure random number generator is available, please enable the PHP OpenSSL extension." => "Nem érhető el megfelelő véletlenszám-generátor, telepíteni kellene a PHP OpenSSL kiegészítését.",
+"Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Megfelelő véletlenszám-generátor hiányában egy támadó szándékú idegen képes lehet megjósolni a jelszóvisszaállító tokent, és Ön helyett belépni.",
+"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." => "Az adatkönytára és az itt levő fájlok valószínűleg elérhetők az internetről. Az ownCloud által beillesztett .htaccess fájl nem működik. Nagyon fontos, hogy a webszervert úgy konfigurálja, hogy az adatkönyvtár nem legyen közvetlenül kívülről elérhető, vagy az adatkönyvtárt tegye a webszerver dokumentumfáján kívülre.",
+"Create an
admin account " => "
Rendszergazdai belépés létrehozása",
"Advanced" => "Haladó",
"Data folder" => "Adatkönyvtár",
"Configure the database" => "Adatbázis konfigurálása",
-"will be used" => "használva lesz",
+"will be used" => "adatbázist fogunk használni",
"Database user" => "Adatbázis felhasználónév",
"Database password" => "Adatbázis jelszó",
-"Database name" => "Adatbázis név",
+"Database name" => "Az adatbázis neve",
+"Database tablespace" => "Az adatbázis táblázattér (tablespace)",
"Database host" => "Adatbázis szerver",
-"Finish setup" => "Beállítás befejezése",
-"Sunday" => "Vasárnap",
-"Monday" => "Hétfő",
-"Tuesday" => "Kedd",
-"Wednesday" => "Szerda",
-"Thursday" => "Csütörtök",
-"Friday" => "Péntek",
-"Saturday" => "Szombat",
-"January" => "Január",
-"February" => "Február",
-"March" => "Március",
-"April" => "Április",
-"May" => "Május",
-"June" => "Június",
-"July" => "Július",
-"August" => "Augusztus",
-"September" => "Szeptember",
-"October" => "Október",
-"November" => "November",
-"December" => "December",
-"web services under your control" => "webszolgáltatások az irányításod alatt",
+"Finish setup" => "A beállítások befejezése",
+"Sunday" => "vasárnap",
+"Monday" => "hétfő",
+"Tuesday" => "kedd",
+"Wednesday" => "szerda",
+"Thursday" => "csütörtök",
+"Friday" => "péntek",
+"Saturday" => "szombat",
+"January" => "január",
+"February" => "február",
+"March" => "március",
+"April" => "április",
+"May" => "május",
+"June" => "június",
+"July" => "július",
+"August" => "augusztus",
+"September" => "szeptember",
+"October" => "október",
+"November" => "november",
+"December" => "december",
+"web services under your control" => "webszolgáltatások saját kézben",
"Log out" => "Kilépés",
-"Lost your password?" => "Elfelejtett jelszó?",
+"Automatic logon rejected!" => "Az automatikus bejelentkezés sikertelen!",
+"If you did not change your password recently, your account may be compromised!" => "Ha mostanában nem módosította a jelszavát, akkor lehetséges, hogy idegenek jutottak be a rendszerbe az Ön nevében!",
+"Please change your password to secure your account again." => "A biztonsága érdekében változtassa meg a jelszavát!",
+"Lost your password?" => "Elfelejtette a jelszavát?",
"remember" => "emlékezzen",
"Log in" => "Bejelentkezés",
"You are logged out." => "Kilépett.",
-"prev" => "Előző",
-"next" => "Következő"
+"prev" => "előző",
+"next" => "következő",
+"Security Warning!" => "Biztonsági figyelmeztetés!",
+"Please verify your password.
For security reasons you may be occasionally asked to enter your password again." => "Kérjük írja be a jelszavát!
Biztonsági okokból néha a bejelentkezést követően is ellenőrzésképpen meg kell adnia a jelszavát.",
+"Verify" => "Ellenőrzés"
);
diff --git a/core/l10n/is.php b/core/l10n/is.php
index 23117cddf8..53b2fe8883 100644
--- a/core/l10n/is.php
+++ b/core/l10n/is.php
@@ -1,24 +1,110 @@
"Notandinn %s deildi skrá með þér",
+"User %s shared a folder with you" => "Notandinn %s deildi möppu með þér",
+"User %s shared the file \"%s\" with you. It is available for download here: %s" => "Notandinn %s deildi skránni \"%s\" með þér. Hægt er að hlaða henni niður hér: %s",
+"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Notandinn %s deildi möppunni \"%s\" með þér. Hægt er að hlaða henni niður hér: %s",
"Category type not provided." => "Flokkur ekki gefin",
+"No category to add?" => "Enginn flokkur til að
bæta við ?",
+"This category already exists: " => "Þessi flokkur er þegar til:",
+"Object type not provided." => "Tegund ekki í boði.",
+"%s ID not provided." => "%s ID ekki í boði.",
+"Error adding %s to favorites." => "Villa við að bæta %s við eftirlæti.",
+"No categories selected for deletion." => "Enginn flokkur valinn til eyðingar.",
+"Error removing %s from favorites." => "Villa við að fjarlægja %s úr eftirlæti.",
+"Settings" => "Stillingar",
"seconds ago" => "sek síðan",
"1 minute ago" => "1 min síðan",
"{minutes} minutes ago" => "{minutes} min síðan",
+"1 hour ago" => "Fyrir 1 klst.",
+"{hours} hours ago" => "fyrir {hours} klst.",
"today" => "í dag",
"yesterday" => "í gær",
"{days} days ago" => "{days} dagar síðan",
"last month" => "síðasta mánuði",
+"{months} months ago" => "fyrir {months} mánuðum",
"months ago" => "mánuðir síðan",
"last year" => "síðasta ári",
"years ago" => "árum síðan",
+"Choose" => "Veldu",
+"Cancel" => "Hætta við",
+"No" => "Nei",
+"Yes" => "Já",
+"Ok" => "Í lagi",
+"The object type is not specified." => "Tegund ekki tilgreind",
+"Error" => "
Villa ",
+"The app name is not specified." => "Nafn forrits ekki tilgreint",
+"The required file {file} is not installed!" => "Umbeðina skráin {file} ekki tiltæk!",
+"Error while sharing" => "Villa við deilingu",
+"Error while unsharing" => "Villa við að hætta deilingu",
+"Error while changing permissions" => "Villa við að breyta aðgangsheimildum",
+"Shared with you and the group {group} by {owner}" => "Deilt með þér og hópnum {group} af {owner}",
+"Shared with you by {owner}" => "Deilt með þér af {owner}",
+"Share with" => "Deila með",
+"Share with link" => "Deila með veftengli",
+"Password protect" => "Verja með lykilorði",
"Password" => "Lykilorð",
+"Email link to person" => "Senda vefhlekk í tölvupóstu til notenda",
+"Send" => "Senda",
+"Set expiration date" => "Setja gildistíma",
+"Expiration date" => "Gildir til",
+"Share via email:" => "Deila með tölvupósti:",
+"No people found" => "Engir notendur fundust",
+"Resharing is not allowed" => "Endurdeiling er ekki leyfð",
+"Shared in {item} with {user}" => "Deilt með {item} ásamt {user}",
+"Unshare" => "Hætta deilingu",
+"can edit" => "getur breytt",
+"access control" => "aðgangsstýring",
+"create" => "mynda",
+"update" => "uppfæra",
+"delete" => "eyða",
+"share" => "deila",
+"Password protected" => "Verja með lykilorði",
+"Error unsetting expiration date" => "Villa við að aftengja gildistíma",
+"Error setting expiration date" => "Villa við að setja gildistíma",
+"Sending ..." => "Sendi ...",
+"Email sent" => "Tölvupóstur sendur",
+"ownCloud password reset" => "endursetja ownCloud
lykilorð ",
+"Use the following link to reset your password: {link}" => "Notað eftirfarandi veftengil til að endursetja lykilorðið þitt: {link}",
+"You will receive a link to reset your password via Email." => "Þú munt fá veftengil í tölvupósti til að endursetja lykilorðið.",
+"Reset email send." => "Beiðni um endursetningu send.",
+"Request failed!" => "Beiðni mistókst!",
"Username" => "Notendanafn",
+"Request reset" => "Endursetja lykilorð",
+"Your password was reset" => "Lykilorðið þitt hefur verið endursett.",
+"To login page" => "Fara á innskráningarsíðu",
+"New password" => "Nýtt lykilorð",
+"Reset password" => "Endursetja lykilorð",
"Personal" => "Persónustillingar",
+"Users" => "Notendur",
+"Apps" => "Forrit",
"Admin" => "Vefstjórn",
"Help" => "Help",
+"Access forbidden" => "Aðgangur bannaður",
"Cloud not found" => "Skýið finnst eigi",
"Edit categories" => "Breyta flokkum",
"Add" => "Bæta",
+"Security Warning" => "Öryggis aðvörun",
+"No secure random number generator is available, please enable the PHP OpenSSL extension." => "Enginn traustur slembitölugjafi í boði, vinsamlegast virkjaðu PHP OpenSSL viðbótina.",
+"Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Án öruggs slembitölugjafa er mögulegt að sjá fyrir öryggis auðkenni til að endursetja lykilorð og komast inn á aðganginn þinn.",
+"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." => "Gagnamappan þín er að öllum líkindum aðgengileg frá internetinu. Skráin .htaccess sem fylgir með ownCloud er ekki að virka. Við mælum eindregið með því að þú stillir vefþjóninn þannig að gagnamappan verði ekki aðgengileg frá internetinu eða færir hana út fyrir vefrótina.",
"Create an
admin account " => "Útbúa
vefstjóra aðgang ",
+"Advanced" => "Ítarlegt",
+"Data folder" => "Gagnamappa",
+"Configure the database" => "Stilla gagnagrunn",
+"will be used" => "verður notað",
+"Database user" => "Notandi gagnagrunns",
+"Database password" => "Lykilorð gagnagrunns",
+"Database name" => "Nafn gagnagrunns",
+"Database tablespace" => "Töflusvæði gagnagrunns",
+"Database host" => "Netþjónn gagnagrunns",
+"Finish setup" => "Ljúka uppsetningu",
+"Sunday" => "Sunnudagur",
+"Monday" => "Mánudagur",
+"Tuesday" => "Þriðjudagur",
+"Wednesday" => "Miðvikudagur",
+"Thursday" => "Fimmtudagur",
+"Friday" => "Föstudagur",
+"Saturday" => "Laugardagur",
"January" => "Janúar",
"February" => "Febrúar",
"March" => "Mars",
@@ -29,8 +115,20 @@
"August" => "Ágúst",
"September" => "September",
"October" => "Október",
+"November" => "Nóvember",
+"December" => "Desember",
+"web services under your control" => "vefþjónusta undir þinni stjórn",
"Log out" => "Útskrá",
+"Automatic logon rejected!" => "Sjálfvirkri innskráningu hafnað!",
+"If you did not change your password recently, your account may be compromised!" => "Ef þú breyttir ekki lykilorðinu þínu fyrir skömmu, er mögulegt að einhver annar hafi komist inn á aðganginn þinn.",
+"Please change your password to secure your account again." => "Vinsamlegast breyttu lykilorðinu þínu til að tryggja öryggi þitt.",
+"Lost your password?" => "Týndir þú lykilorðinu?",
+"remember" => "muna eftir mér",
+"Log in" => "
Skrá inn ",
"You are logged out." => "Þú ert útskráð(ur).",
"prev" => "fyrra",
-"next" => "næsta"
+"next" => "næsta",
+"Security Warning!" => "Öryggis aðvörun!",
+"Please verify your password.
For security reasons you may be occasionally asked to enter your password again." => "Vinsamlegast staðfestu lykilorðið þitt.
Í öryggisskyni munum við biðja þig um að skipta um lykilorð af og til.",
+"Verify" => "Staðfesta"
);
diff --git a/core/l10n/nb_NO.php b/core/l10n/nb_NO.php
index 7382a1e839..4069e297a7 100644
--- a/core/l10n/nb_NO.php
+++ b/core/l10n/nb_NO.php
@@ -6,10 +6,13 @@
"seconds ago" => "sekunder siden",
"1 minute ago" => "1 minutt siden",
"{minutes} minutes ago" => "{minutes} minutter siden",
+"1 hour ago" => "1 time siden",
+"{hours} hours ago" => "{hours} timer siden",
"today" => "i dag",
"yesterday" => "i går",
"{days} days ago" => "{days} dager siden",
"last month" => "forrige måned",
+"{months} months ago" => "{months} måneder siden",
"months ago" => "måneder siden",
"last year" => "forrige år",
"years ago" => "år siden",
@@ -24,6 +27,7 @@
"Share with link" => "Del med link",
"Password protect" => "Passordbeskyttet",
"Password" => "Passord",
+"Send" => "Send",
"Set expiration date" => "Set utløpsdato",
"Expiration date" => "Utløpsdato",
"Share via email:" => "Del på epost",
@@ -37,6 +41,8 @@
"share" => "del",
"Password protected" => "Passordbeskyttet",
"Error setting expiration date" => "Kan ikke sette utløpsdato",
+"Sending ..." => "Sender...",
+"Email sent" => "E-post sendt",
"ownCloud password reset" => "Tilbakestill ownCloud passord",
"Use the following link to reset your password: {link}" => "Bruk følgende lenke for å tilbakestille passordet ditt: {link}",
"You will receive a link to reset your password via Email." => "Du burde motta detaljer om å tilbakestille passordet ditt via epost.",
diff --git a/core/l10n/ro.php b/core/l10n/ro.php
index 560ef5b9fc..1c58e5fe2b 100644
--- a/core/l10n/ro.php
+++ b/core/l10n/ro.php
@@ -1,12 +1,17 @@
"Tipul de categorie nu este prevazut",
"No category to add?" => "Nici o categorie de adăugat?",
"This category already exists: " => "Această categorie deja există:",
+"Object type not provided." => "Tipul obiectului nu este prevazut",
"No categories selected for deletion." => "Nici o categorie selectată pentru ștergere.",
"Settings" => "Configurări",
"seconds ago" => "secunde în urmă",
"1 minute ago" => "1 minut în urmă",
+"{minutes} minutes ago" => "{minutes} minute in urma",
+"1 hour ago" => "Acum o ora",
"today" => "astăzi",
"yesterday" => "ieri",
+"{days} days ago" => "{days} zile in urma",
"last month" => "ultima lună",
"months ago" => "luni în urmă",
"last year" => "ultimul an",
@@ -20,14 +25,18 @@
"Error while sharing" => "Eroare la partajare",
"Error while unsharing" => "Eroare la anularea partajării",
"Error while changing permissions" => "Eroare la modificarea permisiunilor",
+"Shared with you and the group {group} by {owner}" => "Distribuie cu tine si grupul {group} de {owner}",
+"Shared with you by {owner}" => "Distribuie cu tine de {owner}",
"Share with" => "Partajat cu",
"Share with link" => "Partajare cu legătură",
"Password protect" => "Protejare cu parolă",
"Password" => "Parola",
"Set expiration date" => "Specifică data expirării",
"Expiration date" => "Data expirării",
+"Share via email:" => "Distribuie prin email:",
"No people found" => "Nici o persoană găsită",
"Resharing is not allowed" => "Repartajarea nu este permisă",
+"Shared in {item} with {user}" => "Distribuie in {item} si {user}",
"Unshare" => "Anulare partajare",
"can edit" => "poate edita",
"access control" => "control acces",
@@ -41,6 +50,8 @@
"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",
+"Reset email send." => "Resetarea emailu-lui trimisa.",
+"Request failed!" => "Solicitarea nu a reusit",
"Username" => "Utilizator",
"Request reset" => "Cerere trimisă",
"Your password was reset" => "Parola a fost resetată",
@@ -57,6 +68,8 @@
"Edit categories" => "Editează categoriile",
"Add" => "Adaugă",
"Security Warning" => "Avertisment de securitate",
+"No secure random number generator is available, please enable the PHP OpenSSL extension." => "Generatorul de numere pentru securitate nu este disponibil, va rog activati extensia PHP OpenSSL",
+"Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Fara generatorul pentru numere de securitate , un atacator poate afla parola si reseta contul tau",
"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.",
"Create an
admin account " => "Crează un
cont de administrator ",
"Advanced" => "Avansat",
@@ -90,10 +103,16 @@
"December" => "Decembrie",
"web services under your control" => "servicii web controlate de tine",
"Log out" => "Ieșire",
+"Automatic logon rejected!" => "Logare automata respinsa",
+"If you did not change your password recently, your account may be compromised!" => "Daca nu schimbi parola cand de curand , contul tau poate fi conpromis",
+"Please change your password to secure your account again." => "Te rog schimba parola pentru ca, contul tau sa fie securizat din nou.",
"Lost your password?" => "Ai uitat parola?",
"remember" => "amintește",
"Log in" => "Autentificare",
"You are logged out." => "Ai ieșit",
"prev" => "precedentul",
-"next" => "următorul"
+"next" => "următorul",
+"Security Warning!" => "Advertisment de Securitate",
+"Please verify your password.
For security reasons you may be occasionally asked to enter your password again." => "Te rog verifica parola.
Pentru securitate va poate fi cerut ocazional introducerea parolei din nou",
+"Verify" => "Verifica"
);
diff --git a/core/l10n/sv.php b/core/l10n/sv.php
index b06ccb199c..a7698fb30c 100644
--- a/core/l10n/sv.php
+++ b/core/l10n/sv.php
@@ -1,4 +1,8 @@
"Användare %s delade en fil med dig",
+"User %s shared a folder with you" => "Användare %s delade en mapp med dig",
+"User %s shared the file \"%s\" with you. It is available for download here: %s" => "Användare %s delade filen \"%s\" med dig. Den finns att ladda ner här: %s",
+"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Användare %s delade mappen \"%s\" med dig. Den finns att ladda ner här: %s",
"Category type not provided." => "Kategorityp inte angiven.",
"No category to add?" => "Ingen kategori att lägga till?",
"This category already exists: " => "Denna kategori finns redan:",
@@ -39,6 +43,8 @@
"Share with link" => "Delad med länk",
"Password protect" => "Lösenordsskydda",
"Password" => "Lösenord",
+"Email link to person" => "E-posta länk till person",
+"Send" => "Skicka",
"Set expiration date" => "Sätt utgångsdatum",
"Expiration date" => "Utgångsdatum",
"Share via email:" => "Dela via e-post:",
@@ -55,6 +61,8 @@
"Password protected" => "Lösenordsskyddad",
"Error unsetting expiration date" => "Fel vid borttagning av utgångsdatum",
"Error setting expiration date" => "Fel vid sättning av utgångsdatum",
+"Sending ..." => "Skickar ...",
+"Email sent" => "E-post skickat",
"ownCloud password reset" => "ownCloud lösenordsåterställning",
"Use the following link to reset your password: {link}" => "Använd följande länk för att återställa lösenordet: {link}",
"You will receive a link to reset your password via Email." => "Du får en länk att återställa ditt lösenord via e-post.",
diff --git a/core/l10n/tr.php b/core/l10n/tr.php
index cb0df02399..86036e5ebd 100644
--- a/core/l10n/tr.php
+++ b/core/l10n/tr.php
@@ -1,25 +1,57 @@
"Kategori türü desteklenmemektedir.",
"No category to add?" => "Eklenecek kategori yok?",
"This category already exists: " => "Bu kategori zaten mevcut: ",
+"Object type not provided." => "Nesne türü desteklenmemektedir.",
"No categories selected for deletion." => "Silmek için bir kategori seçilmedi",
"Settings" => "Ayarlar",
+"seconds ago" => "saniye önce",
+"1 minute ago" => "1 dakika önce",
+"{minutes} minutes ago" => "{minutes} dakika önce",
+"1 hour ago" => "1 saat önce",
+"{hours} hours ago" => "{hours} saat önce",
+"today" => "bugün",
+"yesterday" => "dün",
+"{days} days ago" => "{days} gün önce",
+"last month" => "geçen ay",
+"{months} months ago" => "{months} ay önce",
+"months ago" => "ay önce",
+"last year" => "geçen yıl",
+"years ago" => "yıl önce",
"Choose" => "seç",
"Cancel" => "İptal",
"No" => "Hayır",
"Yes" => "Evet",
"Ok" => "Tamam",
+"The object type is not specified." => "Nesne türü belirtilmemiş.",
"Error" => "Hata",
"Error while sharing" => "Paylaşım sırasında hata ",
+"Error while changing permissions" => "İzinleri değiştirirken hata oluştu",
"Share with" => "ile Paylaş",
"Share with link" => "Bağlantı ile paylaş",
"Password protect" => "Şifre korunması",
"Password" => "Parola",
+"Send" => "Gönder",
"Set expiration date" => "Son kullanma tarihini ayarla",
+"Expiration date" => "Son kullanım tarihi",
+"Share via email:" => "Eposta ile paylaş",
+"No people found" => "Kişi bulunamadı",
+"Resharing is not allowed" => "Tekrar paylaşmaya izin verilmiyor",
"Unshare" => "Paylaşılmayan",
+"can edit" => "düzenleyebilir",
+"access control" => "erişim kontrolü",
"create" => "oluştur",
+"update" => "güncelle",
+"delete" => "sil",
+"share" => "paylaş",
+"Password protected" => "Paralo korumalı",
+"Sending ..." => "Gönderiliyor...",
+"Email sent" => "Eposta gönderildi",
"ownCloud password reset" => "ownCloud parola sıfırlama",
"Use the following link to reset your password: {link}" => "Bu bağlantıyı kullanarak parolanızı sıfırlayın: {link}",
"You will receive a link to reset your password via Email." => "Parolanızı sıfırlamak için bir bağlantı Eposta olarak gönderilecek.",
+"Reset email send." => "Sıfırlama epostası gönderildi.",
+"Request failed!" => "İstek reddedildi!",
"Username" => "Kullanıcı adı",
"Request reset" => "Sıfırlama iste",
"Your password was reset" => "Parolanız sıfırlandı",
@@ -68,10 +100,13 @@
"December" => "Aralık",
"web services under your control" => "kontrolünüzdeki web servisleri",
"Log out" => "Çıkış yap",
+"Automatic logon rejected!" => "Otomatik oturum açma reddedildi!",
"Lost your password?" => "Parolanızı mı unuttunuz?",
"remember" => "hatırla",
"Log in" => "Giriş yap",
"You are logged out." => "Çıkış yaptınız.",
"prev" => "önceki",
-"next" => "sonraki"
+"next" => "sonraki",
+"Security Warning!" => "Güvenlik Uyarısı!",
+"Verify" => "Doğrula"
);
diff --git a/core/lostpassword/controller.php b/core/lostpassword/controller.php
index e64b16d3b8..3ef8eaf71a 100644
--- a/core/lostpassword/controller.php
+++ b/core/lostpassword/controller.php
@@ -45,8 +45,6 @@ class OC_Core_LostPassword_Controller {
$l = OC_L10N::get('core');
$from = OCP\Util::getDefaultEmailAddress('lostpassword-noreply');
OC_Mail::send($email, $_POST['user'], $l->t('ownCloud password reset'), $msg, $from, 'ownCloud');
- echo('Mailsent');
-
self::displayLostPasswordPage(false, true);
} else {
self::displayLostPasswordPage(true, false);
diff --git a/core/templates/installation.php b/core/templates/installation.php
index 28fbf29b54..3128c4f2e7 100644
--- a/core/templates/installation.php
+++ b/core/templates/installation.php
@@ -113,7 +113,7 @@
t( 'Database name' ); ?>
-
+
diff --git a/core/templates/update.php b/core/templates/update.php
new file mode 100644
index 0000000000..c9f3144f25
--- /dev/null
+++ b/core/templates/update.php
@@ -0,0 +1,31 @@
+
+
+ t('Updating ownCloud to version %s, this may take a while.', array($_['version'])); ?>
+
+
+
\ No newline at end of file
diff --git a/db_structure.xml b/db_structure.xml
index 527b53040d..0116581be1 100644
--- a/db_structure.xml
+++ b/db_structure.xml
@@ -94,6 +94,42 @@
+
+
+ *dbprefix*mimetypes
+
+
+
+
+ id
+ integer
+ 0
+ true
+ 1
+ 4
+
+
+
+ mimetype
+ text
+
+ true
+ 64
+
+
+
+ mimetype_id_index
+ true
+
+ mimetype
+ ascending
+
+
+
+
+
+
+
*dbprefix*filecache
@@ -151,18 +187,18 @@
mimetype
- text
+ integer
true
- 64
+ 4
mimepart
- text
+ integer
true
- 32
+ 4
@@ -198,7 +234,7 @@
- storage_path_hash
+ fs_storage_path_hash
true
storage
@@ -211,7 +247,7 @@
- parent_name_hash
+ fs_parent_name_hash
parent
ascending
diff --git a/l10n/ar/core.po b/l10n/ar/core.po
index 0785bd05e6..9400ec3432 100644
--- a/l10n/ar/core.po
+++ b/l10n/ar/core.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-12-24 00:10+0100\n"
-"PO-Revision-Date: 2012-12-23 19:06+0000\n"
-"Last-Translator: aboodilankaboot \n"
+"POT-Creation-Date: 2013-01-07 00:04+0100\n"
+"PO-Revision-Date: 2013-01-06 23:04+0000\n"
+"Last-Translator: I Robot \n"
"Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -566,6 +566,11 @@ msgstr "السابق"
msgid "next"
msgstr "التالي"
+#: templates/update.php:3
+#, php-format
+msgid "Updating ownCloud to version %s, this may take a while."
+msgstr ""
+
#: templates/verify.php:5
msgid "Security Warning!"
msgstr "تحذير أمان!"
diff --git a/l10n/ar/files.po b/l10n/ar/files.po
index 2f8cead51f..791afd2e70 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-12-01 00:01+0100\n"
-"PO-Revision-Date: 2012-11-30 23:02+0000\n"
+"POT-Creation-Date: 2013-01-07 00:04+0100\n"
+"PO-Revision-Date: 2013-01-06 23:05+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n"
"MIME-Version: 1.0\n"
@@ -18,46 +18,58 @@ msgstr ""
"Language: ar\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
-#: ajax/upload.php:20
+#: ajax/upload.php:14
+msgid "No file was uploaded. Unknown error"
+msgstr ""
+
+#: ajax/upload.php:21
msgid "There is no error, the file uploaded with success"
msgstr "تم ترفيع الملفات بنجاح."
-#: ajax/upload.php:21
+#: ajax/upload.php:22
msgid ""
"The uploaded file exceeds the upload_max_filesize directive in php.ini: "
msgstr ""
-#: ajax/upload.php:23
+#: ajax/upload.php:24
msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form"
msgstr "حجم الملف الذي تريد ترفيعه أعلى مما MAX_FILE_SIZE يسمح به في واجهة ال HTML."
-#: ajax/upload.php:25
+#: ajax/upload.php:26
msgid "The uploaded file was only partially uploaded"
msgstr "تم ترفيع جزء من الملفات الذي تريد ترفيعها فقط"
-#: ajax/upload.php:26
+#: ajax/upload.php:27
msgid "No file was uploaded"
msgstr "لم يتم ترفيع أي من الملفات"
-#: ajax/upload.php:27
+#: ajax/upload.php:28
msgid "Missing a temporary folder"
msgstr "المجلد المؤقت غير موجود"
-#: ajax/upload.php:28
+#: ajax/upload.php:29
msgid "Failed to write to disk"
msgstr ""
+#: ajax/upload.php:45
+msgid "Not enough space available"
+msgstr ""
+
+#: ajax/upload.php:69
+msgid "Invalid directory."
+msgstr ""
+
#: appinfo/app.php:10
msgid "Files"
msgstr "الملفات"
-#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84
+#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85
msgid "Unshare"
msgstr "إلغاء مشاركة"
-#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90
+#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91
msgid "Delete"
msgstr "محذوف"
@@ -65,122 +77,130 @@ msgstr "محذوف"
msgid "Rename"
msgstr ""
-#: js/filelist.js:201 js/filelist.js:203
+#: js/filelist.js:199 js/filelist.js:201
msgid "{new_name} already exists"
msgstr ""
-#: js/filelist.js:201 js/filelist.js:203
+#: js/filelist.js:199 js/filelist.js:201
msgid "replace"
msgstr ""
-#: js/filelist.js:201
+#: js/filelist.js:199
msgid "suggest name"
msgstr ""
-#: js/filelist.js:201 js/filelist.js:203
+#: js/filelist.js:199 js/filelist.js:201
msgid "cancel"
msgstr ""
-#: js/filelist.js:250
+#: js/filelist.js:248
msgid "replaced {new_name}"
msgstr ""
-#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286
+#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284
msgid "undo"
msgstr ""
-#: js/filelist.js:252
+#: js/filelist.js:250
msgid "replaced {new_name} with {old_name}"
msgstr ""
-#: js/filelist.js:284
+#: js/filelist.js:282
msgid "unshared {files}"
msgstr ""
-#: js/filelist.js:286
+#: js/filelist.js:284
msgid "deleted {files}"
msgstr ""
-#: js/files.js:33
+#: js/files.js:31
+msgid "'.' is an invalid file name."
+msgstr ""
+
+#: js/files.js:36
+msgid "File name cannot be empty."
+msgstr ""
+
+#: js/files.js:45
msgid ""
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not "
"allowed."
msgstr ""
-#: js/files.js:183
+#: js/files.js:186
msgid "generating ZIP-file, it may take some time."
msgstr ""
-#: js/files.js:218
+#: js/files.js:224
msgid "Unable to upload your file as it is a directory or has 0 bytes"
msgstr ""
-#: js/files.js:218
+#: js/files.js:224
msgid "Upload Error"
msgstr ""
-#: js/files.js:235
+#: js/files.js:241
msgid "Close"
msgstr "إغلق"
-#: js/files.js:254 js/files.js:368 js/files.js:398
+#: js/files.js:260 js/files.js:374 js/files.js:404
msgid "Pending"
msgstr ""
-#: js/files.js:274
+#: js/files.js:280
msgid "1 file uploading"
msgstr ""
-#: js/files.js:277 js/files.js:331 js/files.js:346
+#: js/files.js:283 js/files.js:337 js/files.js:352
msgid "{count} files uploading"
msgstr ""
-#: js/files.js:349 js/files.js:382
+#: js/files.js:355 js/files.js:388
msgid "Upload cancelled."
msgstr ""
-#: js/files.js:451
+#: js/files.js:457
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr ""
-#: js/files.js:523
+#: js/files.js:527
msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud"
msgstr ""
-#: js/files.js:704
+#: js/files.js:711
msgid "{count} files scanned"
msgstr ""
-#: js/files.js:712
+#: js/files.js:719
msgid "error while scanning"
msgstr ""
-#: js/files.js:785 templates/index.php:65
+#: js/files.js:792 templates/index.php:66
msgid "Name"
msgstr "الاسم"
-#: js/files.js:786 templates/index.php:76
+#: js/files.js:793 templates/index.php:77
msgid "Size"
msgstr "حجم"
-#: js/files.js:787 templates/index.php:78
+#: js/files.js:794 templates/index.php:79
msgid "Modified"
msgstr "معدل"
-#: js/files.js:814
+#: js/files.js:813
msgid "1 folder"
msgstr ""
-#: js/files.js:816
+#: js/files.js:815
msgid "{count} folders"
msgstr ""
-#: js/files.js:824
+#: js/files.js:823
msgid "1 file"
msgstr ""
-#: js/files.js:826
+#: js/files.js:825
msgid "{count} files"
msgstr ""
@@ -192,27 +212,27 @@ msgstr ""
msgid "Maximum upload size"
msgstr "الحد الأقصى لحجم الملفات التي يمكن رفعها"
-#: templates/admin.php:9
+#: templates/admin.php:10
msgid "max. possible: "
msgstr ""
-#: templates/admin.php:12
+#: templates/admin.php:15
msgid "Needed for multi-file and folder downloads."
msgstr ""
-#: templates/admin.php:14
+#: templates/admin.php:17
msgid "Enable ZIP-download"
msgstr ""
-#: templates/admin.php:17
+#: templates/admin.php:20
msgid "0 is unlimited"
msgstr ""
-#: templates/admin.php:19
+#: templates/admin.php:22
msgid "Maximum input size for ZIP files"
msgstr ""
-#: templates/admin.php:23
+#: templates/admin.php:26
msgid "Save"
msgstr "حفظ"
@@ -240,28 +260,28 @@ msgstr "إرفع"
msgid "Cancel upload"
msgstr ""
-#: templates/index.php:57
+#: templates/index.php:58
msgid "Nothing in here. Upload something!"
msgstr "لا يوجد شيء هنا. إرفع بعض الملفات!"
-#: templates/index.php:71
+#: templates/index.php:72
msgid "Download"
msgstr "تحميل"
-#: templates/index.php:103
+#: templates/index.php:104
msgid "Upload too large"
msgstr "حجم الترفيع أعلى من المسموح"
-#: templates/index.php:105
+#: templates/index.php:106
msgid ""
"The files you are trying to upload exceed the maximum size for file uploads "
"on this server."
msgstr "حجم الملفات التي تريد ترفيعها أعلى من المسموح على الخادم."
-#: templates/index.php:110
+#: templates/index.php:111
msgid "Files are being scanned, please wait."
msgstr ""
-#: templates/index.php:113
+#: templates/index.php:114
msgid "Current scanning"
msgstr ""
diff --git a/l10n/ar/settings.po b/l10n/ar/settings.po
index e3ac2066d0..a800f4eef2 100644
--- a/l10n/ar/settings.po
+++ b/l10n/ar/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-12-24 00:11+0100\n"
-"PO-Revision-Date: 2012-12-23 18:36+0000\n"
-"Last-Translator: aboodilankaboot \n"
+"POT-Creation-Date: 2012-12-30 00:04+0100\n"
+"PO-Revision-Date: 2012-12-29 23:05+0000\n"
+"Last-Translator: I Robot \n"
"Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -163,7 +163,7 @@ msgstr "تحميل عميل آندرويد"
msgid "Download iOS Client"
msgstr "تحميل عميل آي أو أس"
-#: templates/personal.php:21 templates/users.php:23 templates/users.php:77
+#: templates/personal.php:21 templates/users.php:23 templates/users.php:82
msgid "Password"
msgstr "كلمات السر"
@@ -233,11 +233,11 @@ msgid ""
"License\">AGPL."
msgstr "طوّر من قبل ownCloud مجتمع , الـ النص المصدري مرخص بموجب رخصة أفيرو العمومية ."
-#: templates/users.php:21 templates/users.php:76
+#: templates/users.php:21 templates/users.php:81
msgid "Name"
msgstr "الاسم"
-#: templates/users.php:26 templates/users.php:78 templates/users.php:98
+#: templates/users.php:26 templates/users.php:83 templates/users.php:103
msgid "Groups"
msgstr "مجموعات"
@@ -246,21 +246,29 @@ msgid "Create"
msgstr "انشئ"
#: templates/users.php:35
-msgid "Default Quota"
-msgstr "الحصة النسبية الإفتراضية"
+msgid "Default Storage"
+msgstr ""
-#: templates/users.php:55 templates/users.php:138
+#: templates/users.php:42 templates/users.php:138
+msgid "Unlimited"
+msgstr ""
+
+#: templates/users.php:60 templates/users.php:153
msgid "Other"
msgstr "شيء آخر"
-#: templates/users.php:80 templates/users.php:112
+#: templates/users.php:85 templates/users.php:117
msgid "Group Admin"
msgstr "مدير المجموعة"
-#: templates/users.php:82
-msgid "Quota"
-msgstr "حصه"
+#: templates/users.php:87
+msgid "Storage"
+msgstr ""
-#: templates/users.php:146
+#: templates/users.php:133
+msgid "Default"
+msgstr ""
+
+#: templates/users.php:161
msgid "Delete"
msgstr "حذف"
diff --git a/l10n/bg_BG/core.po b/l10n/bg_BG/core.po
index f40f16cbec..946b098473 100644
--- a/l10n/bg_BG/core.po
+++ b/l10n/bg_BG/core.po
@@ -11,8 +11,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-12-13 00:17+0100\n"
-"PO-Revision-Date: 2012-12-12 23:17+0000\n"
+"POT-Creation-Date: 2013-01-07 00:04+0100\n"
+"PO-Revision-Date: 2013-01-06 23:04+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n"
"MIME-Version: 1.0\n"
@@ -165,8 +165,8 @@ msgid "The object type is not specified."
msgstr ""
#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136
-#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541
-#: js/share.js:553
+#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554
+#: js/share.js:566
msgid "Error"
msgstr "Грешка"
@@ -178,7 +178,7 @@ msgstr ""
msgid "The required file {file} is not installed!"
msgstr ""
-#: js/share.js:124 js/share.js:581
+#: js/share.js:124 js/share.js:594
msgid "Error while sharing"
msgstr ""
@@ -206,11 +206,11 @@ msgstr ""
msgid "Share with link"
msgstr ""
-#: js/share.js:164
+#: js/share.js:166
msgid "Password protect"
msgstr ""
-#: js/share.js:168 templates/installation.php:42 templates/login.php:24
+#: js/share.js:168 templates/installation.php:44 templates/login.php:35
#: templates/verify.php:13
msgid "Password"
msgstr "Парола"
@@ -275,23 +275,23 @@ msgstr ""
msgid "share"
msgstr ""
-#: js/share.js:353 js/share.js:528 js/share.js:530
+#: js/share.js:356 js/share.js:541
msgid "Password protected"
msgstr ""
-#: js/share.js:541
+#: js/share.js:554
msgid "Error unsetting expiration date"
msgstr ""
-#: js/share.js:553
+#: js/share.js:566
msgid "Error setting expiration date"
msgstr ""
-#: js/share.js:568
+#: js/share.js:581
msgid "Sending ..."
msgstr ""
-#: js/share.js:579
+#: js/share.js:592
msgid "Email sent"
msgstr ""
@@ -315,8 +315,8 @@ msgstr ""
msgid "Request failed!"
msgstr ""
-#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38
-#: templates/login.php:20
+#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39
+#: templates/login.php:28
msgid "Username"
msgstr "Потребител"
@@ -405,44 +405,44 @@ msgstr ""
msgid "Create an admin account "
msgstr "Създаване на админ профил "
-#: templates/installation.php:48
+#: templates/installation.php:50
msgid "Advanced"
msgstr "Разширено"
-#: templates/installation.php:50
+#: templates/installation.php:52
msgid "Data folder"
msgstr "Директория за данни"
-#: templates/installation.php:57
+#: templates/installation.php:59
msgid "Configure the database"
msgstr "Конфигуриране на базата"
-#: templates/installation.php:62 templates/installation.php:73
-#: templates/installation.php:83 templates/installation.php:93
+#: templates/installation.php:64 templates/installation.php:75
+#: templates/installation.php:85 templates/installation.php:95
msgid "will be used"
msgstr "ще се ползва"
-#: templates/installation.php:105
+#: templates/installation.php:107
msgid "Database user"
msgstr "Потребител за базата"
-#: templates/installation.php:109
+#: templates/installation.php:111
msgid "Database password"
msgstr "Парола за базата"
-#: templates/installation.php:113
+#: templates/installation.php:115
msgid "Database name"
msgstr "Име на базата"
-#: templates/installation.php:121
+#: templates/installation.php:123
msgid "Database tablespace"
msgstr ""
-#: templates/installation.php:127
+#: templates/installation.php:129
msgid "Database host"
msgstr "Хост за базата"
-#: templates/installation.php:132
+#: templates/installation.php:134
msgid "Finish setup"
msgstr "Завършване на настройките"
@@ -530,29 +530,29 @@ msgstr ""
msgid "Log out"
msgstr "Изход"
-#: templates/login.php:8
+#: templates/login.php:10
msgid "Automatic logon rejected!"
msgstr ""
-#: templates/login.php:9
+#: templates/login.php:11
msgid ""
"If you did not change your password recently, your account may be "
"compromised!"
msgstr ""
-#: templates/login.php:10
+#: templates/login.php:13
msgid "Please change your password to secure your account again."
msgstr ""
-#: templates/login.php:15
+#: templates/login.php:19
msgid "Lost your password?"
msgstr "Забравена парола?"
-#: templates/login.php:27
+#: templates/login.php:39
msgid "remember"
msgstr "запомни"
-#: templates/login.php:28
+#: templates/login.php:41
msgid "Log in"
msgstr "Вход"
@@ -568,6 +568,11 @@ msgstr "пред."
msgid "next"
msgstr "следващо"
+#: templates/update.php:3
+#, php-format
+msgid "Updating ownCloud to version %s, this may take a while."
+msgstr ""
+
#: templates/verify.php:5
msgid "Security Warning!"
msgstr ""
diff --git a/l10n/bg_BG/files.po b/l10n/bg_BG/files.po
index aec7865e43..0a3297bd92 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-12-01 00:01+0100\n"
-"PO-Revision-Date: 2012-11-30 23:02+0000\n"
+"POT-Creation-Date: 2013-01-07 00:04+0100\n"
+"PO-Revision-Date: 2013-01-06 23:05+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n"
"MIME-Version: 1.0\n"
@@ -19,46 +19,58 @@ msgstr ""
"Language: bg_BG\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: ajax/upload.php:20
+#: ajax/upload.php:14
+msgid "No file was uploaded. Unknown error"
+msgstr ""
+
+#: ajax/upload.php:21
msgid "There is no error, the file uploaded with success"
msgstr "Файлът е качен успешно"
-#: ajax/upload.php:21
+#: ajax/upload.php:22
msgid ""
"The uploaded file exceeds the upload_max_filesize directive in php.ini: "
msgstr ""
-#: ajax/upload.php:23
+#: ajax/upload.php:24
msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form"
msgstr "Файлът който се опитвате да качите надвишава стойностите в MAX_FILE_SIZE в HTML формата."
-#: ajax/upload.php:25
+#: ajax/upload.php:26
msgid "The uploaded file was only partially uploaded"
msgstr "Файлът е качен частично"
-#: ajax/upload.php:26
+#: ajax/upload.php:27
msgid "No file was uploaded"
msgstr "Фахлът не бе качен"
-#: ajax/upload.php:27
+#: ajax/upload.php:28
msgid "Missing a temporary folder"
msgstr "Липсва временната папка"
-#: ajax/upload.php:28
+#: ajax/upload.php:29
msgid "Failed to write to disk"
msgstr "Грешка при запис на диска"
+#: ajax/upload.php:45
+msgid "Not enough space available"
+msgstr ""
+
+#: ajax/upload.php:69
+msgid "Invalid directory."
+msgstr ""
+
#: appinfo/app.php:10
msgid "Files"
msgstr "Файлове"
-#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84
+#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85
msgid "Unshare"
msgstr ""
-#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90
+#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91
msgid "Delete"
msgstr "Изтриване"
@@ -66,122 +78,130 @@ msgstr "Изтриване"
msgid "Rename"
msgstr ""
-#: js/filelist.js:201 js/filelist.js:203
+#: js/filelist.js:199 js/filelist.js:201
msgid "{new_name} already exists"
msgstr ""
-#: js/filelist.js:201 js/filelist.js:203
+#: js/filelist.js:199 js/filelist.js:201
msgid "replace"
msgstr ""
-#: js/filelist.js:201
+#: js/filelist.js:199
msgid "suggest name"
msgstr ""
-#: js/filelist.js:201 js/filelist.js:203
+#: js/filelist.js:199 js/filelist.js:201
msgid "cancel"
msgstr ""
-#: js/filelist.js:250
+#: js/filelist.js:248
msgid "replaced {new_name}"
msgstr ""
-#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286
+#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284
msgid "undo"
msgstr ""
-#: js/filelist.js:252
+#: js/filelist.js:250
msgid "replaced {new_name} with {old_name}"
msgstr ""
-#: js/filelist.js:284
+#: js/filelist.js:282
msgid "unshared {files}"
msgstr ""
-#: js/filelist.js:286
+#: js/filelist.js:284
msgid "deleted {files}"
msgstr ""
-#: js/files.js:33
+#: js/files.js:31
+msgid "'.' is an invalid file name."
+msgstr ""
+
+#: js/files.js:36
+msgid "File name cannot be empty."
+msgstr ""
+
+#: js/files.js:45
msgid ""
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not "
"allowed."
msgstr ""
-#: js/files.js:183
+#: js/files.js:186
msgid "generating ZIP-file, it may take some time."
msgstr ""
-#: js/files.js:218
+#: js/files.js:224
msgid "Unable to upload your file as it is a directory or has 0 bytes"
msgstr ""
-#: js/files.js:218
+#: js/files.js:224
msgid "Upload Error"
msgstr "Грешка при качване"
-#: js/files.js:235
+#: js/files.js:241
msgid "Close"
msgstr ""
-#: js/files.js:254 js/files.js:368 js/files.js:398
+#: js/files.js:260 js/files.js:374 js/files.js:404
msgid "Pending"
msgstr ""
-#: js/files.js:274
+#: js/files.js:280
msgid "1 file uploading"
msgstr ""
-#: js/files.js:277 js/files.js:331 js/files.js:346
+#: js/files.js:283 js/files.js:337 js/files.js:352
msgid "{count} files uploading"
msgstr ""
-#: js/files.js:349 js/files.js:382
+#: js/files.js:355 js/files.js:388
msgid "Upload cancelled."
msgstr "Качването е отменено."
-#: js/files.js:451
+#: js/files.js:457
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr ""
-#: js/files.js:523
+#: js/files.js:527
msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud"
msgstr ""
-#: js/files.js:704
+#: js/files.js:711
msgid "{count} files scanned"
msgstr ""
-#: js/files.js:712
+#: js/files.js:719
msgid "error while scanning"
msgstr ""
-#: js/files.js:785 templates/index.php:65
+#: js/files.js:792 templates/index.php:66
msgid "Name"
msgstr "Име"
-#: js/files.js:786 templates/index.php:76
+#: js/files.js:793 templates/index.php:77
msgid "Size"
msgstr "Размер"
-#: js/files.js:787 templates/index.php:78
+#: js/files.js:794 templates/index.php:79
msgid "Modified"
msgstr "Променено"
-#: js/files.js:814
+#: js/files.js:813
msgid "1 folder"
msgstr ""
-#: js/files.js:816
+#: js/files.js:815
msgid "{count} folders"
msgstr ""
-#: js/files.js:824
+#: js/files.js:823
msgid "1 file"
msgstr ""
-#: js/files.js:826
+#: js/files.js:825
msgid "{count} files"
msgstr ""
@@ -193,27 +213,27 @@ msgstr ""
msgid "Maximum upload size"
msgstr "Макс. размер за качване"
-#: templates/admin.php:9
+#: templates/admin.php:10
msgid "max. possible: "
msgstr ""
-#: templates/admin.php:12
+#: templates/admin.php:15
msgid "Needed for multi-file and folder downloads."
msgstr ""
-#: templates/admin.php:14
+#: templates/admin.php:17
msgid "Enable ZIP-download"
msgstr ""
-#: templates/admin.php:17
+#: templates/admin.php:20
msgid "0 is unlimited"
msgstr "0 означава без ограничение"
-#: templates/admin.php:19
+#: templates/admin.php:22
msgid "Maximum input size for ZIP files"
msgstr ""
-#: templates/admin.php:23
+#: templates/admin.php:26
msgid "Save"
msgstr "Запис"
@@ -241,28 +261,28 @@ msgstr "Качване"
msgid "Cancel upload"
msgstr "Отказване на качването"
-#: templates/index.php:57
+#: templates/index.php:58
msgid "Nothing in here. Upload something!"
msgstr "Няма нищо, качете нещо!"
-#: templates/index.php:71
+#: templates/index.php:72
msgid "Download"
msgstr "Изтегляне"
-#: templates/index.php:103
+#: templates/index.php:104
msgid "Upload too large"
msgstr "Файлът е прекалено голям"
-#: templates/index.php:105
+#: templates/index.php:106
msgid ""
"The files you are trying to upload exceed the maximum size for file uploads "
"on this server."
msgstr "Файловете които се опитвате да качите са по-големи от позволеното за сървъра."
-#: templates/index.php:110
+#: templates/index.php:111
msgid "Files are being scanned, please wait."
msgstr "Файловете се претърсват, изчакайте."
-#: templates/index.php:113
+#: templates/index.php:114
msgid "Current scanning"
msgstr ""
diff --git a/l10n/bg_BG/settings.po b/l10n/bg_BG/settings.po
index 8350e56bea..37e75b3725 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-12-21 00:10+0100\n"
-"PO-Revision-Date: 2012-12-19 23:20+0000\n"
+"POT-Creation-Date: 2012-12-30 00:04+0100\n"
+"PO-Revision-Date: 2012-12-29 23:05+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n"
"MIME-Version: 1.0\n"
@@ -163,7 +163,7 @@ msgstr ""
msgid "Download iOS Client"
msgstr ""
-#: templates/personal.php:21 templates/users.php:23 templates/users.php:77
+#: templates/personal.php:21 templates/users.php:23 templates/users.php:82
msgid "Password"
msgstr "Парола"
@@ -233,11 +233,11 @@ msgid ""
"License\">AGPL."
msgstr ""
-#: templates/users.php:21 templates/users.php:76
+#: templates/users.php:21 templates/users.php:81
msgid "Name"
msgstr "Име"
-#: templates/users.php:26 templates/users.php:78 templates/users.php:98
+#: templates/users.php:26 templates/users.php:83 templates/users.php:103
msgid "Groups"
msgstr "Групи"
@@ -246,21 +246,29 @@ msgid "Create"
msgstr "Ново"
#: templates/users.php:35
-msgid "Default Quota"
-msgstr "Квота по подразбиране"
+msgid "Default Storage"
+msgstr ""
-#: templates/users.php:55 templates/users.php:138
+#: templates/users.php:42 templates/users.php:138
+msgid "Unlimited"
+msgstr ""
+
+#: templates/users.php:60 templates/users.php:153
msgid "Other"
msgstr "Друго"
-#: templates/users.php:80 templates/users.php:112
+#: templates/users.php:85 templates/users.php:117
msgid "Group Admin"
msgstr ""
-#: templates/users.php:82
-msgid "Quota"
-msgstr "Квота"
+#: templates/users.php:87
+msgid "Storage"
+msgstr ""
-#: templates/users.php:146
+#: templates/users.php:133
+msgid "Default"
+msgstr ""
+
+#: templates/users.php:161
msgid "Delete"
msgstr "Изтриване"
diff --git a/l10n/bn_BD/core.po b/l10n/bn_BD/core.po
new file mode 100644
index 0000000000..69efe6f583
--- /dev/null
+++ b/l10n/bn_BD/core.po
@@ -0,0 +1,585 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+#
+# Translators:
+# Shubhra Paul , 2013.
+msgid ""
+msgstr ""
+"Project-Id-Version: ownCloud\n"
+"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
+"POT-Creation-Date: 2013-01-07 00:04+0100\n"
+"PO-Revision-Date: 2013-01-06 23:05+0000\n"
+"Last-Translator: I Robot \n"
+"Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: bn_BD\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: ajax/share.php:84
+#, php-format
+msgid "User %s shared a file with you"
+msgstr "%s নামের ব্যবহারকারি আপনার সাথে একটা ফাইল ভাগাভাগি করেছেন"
+
+#: ajax/share.php:86
+#, php-format
+msgid "User %s shared a folder with you"
+msgstr "%s নামের ব্যবহারকারি আপনার সাথে একটা ফোল্ডার ভাগাভাগি করেছেন"
+
+#: ajax/share.php:88
+#, php-format
+msgid ""
+"User %s shared the file \"%s\" with you. It is available for download here: "
+"%s"
+msgstr ""
+
+#: ajax/share.php:90
+#, php-format
+msgid ""
+"User %s shared the folder \"%s\" with you. It is available for download "
+"here: %s"
+msgstr ""
+
+#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25
+msgid "Category type not provided."
+msgstr "ক্যাটেগরির ধরণটি প্রদান করা হয় নি।"
+
+#: ajax/vcategories/add.php:30
+msgid "No category to add?"
+msgstr "যোগ করার মত কোন ক্যাটেগরি নেই ?"
+
+#: ajax/vcategories/add.php:37
+msgid "This category already exists: "
+msgstr "এই ক্যাটেগরিটি বিদ্যমানঃ"
+
+#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27
+#: ajax/vcategories/favorites.php:24
+#: ajax/vcategories/removeFromFavorites.php:26
+msgid "Object type not provided."
+msgstr "অবজেক্টের ধরণটি প্রদান করা হয় নি।"
+
+#: ajax/vcategories/addToFavorites.php:30
+#: ajax/vcategories/removeFromFavorites.php:30
+#, php-format
+msgid "%s ID not provided."
+msgstr ""
+
+#: ajax/vcategories/addToFavorites.php:35
+#, php-format
+msgid "Error adding %s to favorites."
+msgstr "প্রিয়তে %s যোগ করতে সমস্যা দেখা দিয়েছে।"
+
+#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136
+msgid "No categories selected for deletion."
+msgstr "মুছে ফেলার জন্য কোন ক্যাটেগরি নির্বাচন করা হয় নি।"
+
+#: ajax/vcategories/removeFromFavorites.php:35
+#, php-format
+msgid "Error removing %s from favorites."
+msgstr "প্রিয় থেকে %s সরিয়ে ফেলতে সমস্যা দেখা দিয়েছে।"
+
+#: js/js.js:259 templates/layout.user.php:60 templates/layout.user.php:61
+msgid "Settings"
+msgstr "নিয়ামকসমূহ"
+
+#: js/js.js:704
+msgid "seconds ago"
+msgstr "সেকেন্ড পূর্বে"
+
+#: js/js.js:705
+msgid "1 minute ago"
+msgstr "1 মিনিট পূর্বে"
+
+#: js/js.js:706
+msgid "{minutes} minutes ago"
+msgstr "{minutes} মিনিট পূর্বে"
+
+#: js/js.js:707
+msgid "1 hour ago"
+msgstr "1 ঘন্টা পূর্বে"
+
+#: js/js.js:708
+msgid "{hours} hours ago"
+msgstr "{hours} ঘন্টা পূর্বে"
+
+#: js/js.js:709
+msgid "today"
+msgstr "আজ"
+
+#: js/js.js:710
+msgid "yesterday"
+msgstr "গতকাল"
+
+#: js/js.js:711
+msgid "{days} days ago"
+msgstr "{days} দিন পূর্বে"
+
+#: js/js.js:712
+msgid "last month"
+msgstr "গতমাস"
+
+#: js/js.js:713
+msgid "{months} months ago"
+msgstr "{months} মাস পূর্বে"
+
+#: js/js.js:714
+msgid "months ago"
+msgstr "মাস পূর্বে"
+
+#: js/js.js:715
+msgid "last year"
+msgstr "গত বছর"
+
+#: js/js.js:716
+msgid "years ago"
+msgstr "বছর পূর্বে"
+
+#: js/oc-dialogs.js:126
+msgid "Choose"
+msgstr "নির্বাচন"
+
+#: js/oc-dialogs.js:146 js/oc-dialogs.js:166
+msgid "Cancel"
+msgstr "বাতিল"
+
+#: js/oc-dialogs.js:162
+msgid "No"
+msgstr "না"
+
+#: js/oc-dialogs.js:163
+msgid "Yes"
+msgstr "হ্যাঁ"
+
+#: js/oc-dialogs.js:180
+msgid "Ok"
+msgstr "তথাস্তু"
+
+#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102
+#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162
+msgid "The object type is not specified."
+msgstr "অবজেক্টের ধরণটি সুনির্দিষ্ট নয়।"
+
+#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136
+#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554
+#: js/share.js:566
+msgid "Error"
+msgstr "সমস্যা"
+
+#: js/oc-vcategories.js:179
+msgid "The app name is not specified."
+msgstr "অ্যাপের নামটি সুনির্দিষ্ট নয়।"
+
+#: js/oc-vcategories.js:194
+msgid "The required file {file} is not installed!"
+msgstr "আবশ্যিক {file} টি সংস্থাপিত নেই !"
+
+#: js/share.js:124 js/share.js:594
+msgid "Error while sharing"
+msgstr "ভাগাভাগি করার সময় সমস্যা দেখা দিয়েছে"
+
+#: js/share.js:135
+msgid "Error while unsharing"
+msgstr "ভাগাভাগি বাতিল করার সময় সমস্যা দেখা দিয়েছে"
+
+#: js/share.js:142
+msgid "Error while changing permissions"
+msgstr "অনুমতি পরিবর্তন করার সময় সমস্যা দেখা দিয়েছে"
+
+#: js/share.js:151
+msgid "Shared with you and the group {group} by {owner}"
+msgstr ""
+
+#: js/share.js:153
+msgid "Shared with you by {owner}"
+msgstr ""
+
+#: js/share.js:158
+msgid "Share with"
+msgstr "যাদের সাথে ভাগাভাগি করবে"
+
+#: js/share.js:163
+msgid "Share with link"
+msgstr "লিংক সহযোগে ভাগাভাগি"
+
+#: js/share.js:166
+msgid "Password protect"
+msgstr "কূটশব্দদ্বারা সুরক্ষিত"
+
+#: js/share.js:168 templates/installation.php:44 templates/login.php:35
+#: templates/verify.php:13
+msgid "Password"
+msgstr "কূটশব্দ"
+
+#: js/share.js:172
+msgid "Email link to person"
+msgstr "ব্যক্তির সাথে ই-মেইল যুক্ত কর"
+
+#: js/share.js:173
+msgid "Send"
+msgstr "পাঠাও"
+
+#: js/share.js:177
+msgid "Set expiration date"
+msgstr "মেয়াদোত্তীর্ণ হওয়ার তারিখ নির্ধারণ করুন"
+
+#: js/share.js:178
+msgid "Expiration date"
+msgstr "মেয়াদোত্তীর্ণ হওয়ার তারিখ"
+
+#: js/share.js:210
+msgid "Share via email:"
+msgstr "ই-মেইলের মাধ্যমে ভাগাভাগি করঃ"
+
+#: js/share.js:212
+msgid "No people found"
+msgstr "কোন ব্যক্তি খুঁজে পাওয়া গেল না"
+
+#: js/share.js:239
+msgid "Resharing is not allowed"
+msgstr "পূনরায় ভাগাভাগি করার অনুমতি নেই"
+
+#: js/share.js:275
+msgid "Shared in {item} with {user}"
+msgstr ""
+
+#: js/share.js:296
+msgid "Unshare"
+msgstr "ভাগাভাগি বাতিল"
+
+#: js/share.js:308
+msgid "can edit"
+msgstr "সম্পাদনা করতে পারবে"
+
+#: js/share.js:310
+msgid "access control"
+msgstr "অধিগম্যতার নিয়ন্ত্রণ"
+
+#: js/share.js:313
+msgid "create"
+msgstr "তৈরি কর"
+
+#: js/share.js:316
+msgid "update"
+msgstr "পরিবর্ধন কর"
+
+#: js/share.js:319
+msgid "delete"
+msgstr "মুছে ফেল"
+
+#: js/share.js:322
+msgid "share"
+msgstr "ভাগাভাগি কর"
+
+#: js/share.js:356 js/share.js:541
+msgid "Password protected"
+msgstr "কূটশব্দদ্বারা সুরক্ষিত"
+
+#: js/share.js:554
+msgid "Error unsetting expiration date"
+msgstr "মেয়াদোত্তীর্ণ হওয়ার তারিখ নির্ধারণ বাতিল করতে সমস্যা"
+
+#: js/share.js:566
+msgid "Error setting expiration date"
+msgstr "মেয়াদোত্তীর্ণ হওয়ার তারিখ নির্ধারণ করতে সমস্যা"
+
+#: js/share.js:581
+msgid "Sending ..."
+msgstr "পাঠানো হচ্ছে......"
+
+#: js/share.js:592
+msgid "Email sent"
+msgstr "ই-মেইল পাঠানো হয়েছে"
+
+#: lostpassword/controller.php:47
+msgid "ownCloud password reset"
+msgstr "ownCloud কূটশব্দ পূনঃনির্ধারণ"
+
+#: lostpassword/templates/email.php:2
+msgid "Use the following link to reset your password: {link}"
+msgstr "কূটশব্দ পূনঃনির্ধারণ করতে নিম্নোক্ত লিংকে ক্লিক করুন:{link}"
+
+#: lostpassword/templates/lostpassword.php:3
+msgid "You will receive a link to reset your password via Email."
+msgstr "কূটশব্দ পূনঃনির্ধারণের জন্য একটি লিংক ই-মেইলের মাধ্যমে পাঠানো হয়েছে।"
+
+#: lostpassword/templates/lostpassword.php:5
+msgid "Reset email send."
+msgstr "পূনঃনির্ধারণ ই-মেইল পাঠানো হয়েছে।"
+
+#: lostpassword/templates/lostpassword.php:8
+msgid "Request failed!"
+msgstr "অনুরোধ ব্যর্থ !"
+
+#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39
+#: templates/login.php:28
+msgid "Username"
+msgstr "ব্যবহারকারি"
+
+#: lostpassword/templates/lostpassword.php:14
+msgid "Request reset"
+msgstr "পূনঃনির্ধারণের জন্য অনুরোধ"
+
+#: lostpassword/templates/resetpassword.php:4
+msgid "Your password was reset"
+msgstr "আপনার কূটশব্দটি পূনঃনির্ধারণ করা হয়েছে"
+
+#: lostpassword/templates/resetpassword.php:5
+msgid "To login page"
+msgstr "প্রবেশ পাতায়"
+
+#: lostpassword/templates/resetpassword.php:8
+msgid "New password"
+msgstr "নতুন কূটশব্দ"
+
+#: lostpassword/templates/resetpassword.php:11
+msgid "Reset password"
+msgstr "কূটশব্দ পূনঃনির্ধারণ"
+
+#: strings.php:5
+msgid "Personal"
+msgstr "ব্যক্তিগত"
+
+#: strings.php:6
+msgid "Users"
+msgstr "ব্যবহারকারিবৃন্দ"
+
+#: strings.php:7
+msgid "Apps"
+msgstr "অ্যাপস"
+
+#: strings.php:8
+msgid "Admin"
+msgstr "প্রশাসক"
+
+#: strings.php:9
+msgid "Help"
+msgstr "সহায়িকা"
+
+#: templates/403.php:12
+msgid "Access forbidden"
+msgstr "অধিগমনের অনুমতি নেই"
+
+#: templates/404.php:12
+msgid "Cloud not found"
+msgstr "ক্লাউড খুঁজে পাওয়া গেল না"
+
+#: templates/edit_categories_dialog.php:4
+msgid "Edit categories"
+msgstr "ক্যাটেগরি সম্পাদনা"
+
+#: templates/edit_categories_dialog.php:16
+msgid "Add"
+msgstr "যোগ কর"
+
+#: templates/installation.php:23 templates/installation.php:31
+msgid "Security Warning"
+msgstr "নিরাপত্তাজনিত সতর্কতা"
+
+#: templates/installation.php:24
+msgid ""
+"No secure random number generator is available, please enable the PHP "
+"OpenSSL extension."
+msgstr ""
+
+#: templates/installation.php:26
+msgid ""
+"Without a secure random number generator an attacker may be able to predict "
+"password reset tokens and take over your account."
+msgstr ""
+
+#: templates/installation.php:32
+msgid ""
+"Your data directory and your files are probably accessible from the "
+"internet. The .htaccess file that ownCloud provides is not working. We "
+"strongly suggest that you configure your webserver in a way that the data "
+"directory is no longer accessible or you move the data directory outside the"
+" webserver document root."
+msgstr ""
+
+#: templates/installation.php:36
+msgid "Create an admin account "
+msgstr "প্রশাসক একাউন্ট তৈরি কর"
+
+#: templates/installation.php:50
+msgid "Advanced"
+msgstr "সুচারু"
+
+#: templates/installation.php:52
+msgid "Data folder"
+msgstr "ডাটা ফোল্ডার"
+
+#: templates/installation.php:59
+msgid "Configure the database"
+msgstr "ডাটাবেজ কনফিগার কর"
+
+#: templates/installation.php:64 templates/installation.php:75
+#: templates/installation.php:85 templates/installation.php:95
+msgid "will be used"
+msgstr "ব্যবহৃত হবে"
+
+#: templates/installation.php:107
+msgid "Database user"
+msgstr "ডাটাবেজ ব্যবহারকারি"
+
+#: templates/installation.php:111
+msgid "Database password"
+msgstr "ডাটাবেজ কূটশব্দ"
+
+#: templates/installation.php:115
+msgid "Database name"
+msgstr "ডাটাবেজের নাম"
+
+#: templates/installation.php:123
+msgid "Database tablespace"
+msgstr "ডাটাবেজ টেবিলস্পেস"
+
+#: templates/installation.php:129
+msgid "Database host"
+msgstr "ডাটাবেজ হোস্ট"
+
+#: templates/installation.php:134
+msgid "Finish setup"
+msgstr "সেট-আপ সুসম্পন্ন কর"
+
+#: templates/layout.guest.php:16 templates/layout.user.php:17
+msgid "Sunday"
+msgstr "রবিবার"
+
+#: templates/layout.guest.php:16 templates/layout.user.php:17
+msgid "Monday"
+msgstr "সোমবার"
+
+#: templates/layout.guest.php:16 templates/layout.user.php:17
+msgid "Tuesday"
+msgstr "মঙ্গলবার"
+
+#: templates/layout.guest.php:16 templates/layout.user.php:17
+msgid "Wednesday"
+msgstr "বুধবার"
+
+#: templates/layout.guest.php:16 templates/layout.user.php:17
+msgid "Thursday"
+msgstr "বৃহষ্পতিবার"
+
+#: templates/layout.guest.php:16 templates/layout.user.php:17
+msgid "Friday"
+msgstr "শুক্রবার"
+
+#: templates/layout.guest.php:16 templates/layout.user.php:17
+msgid "Saturday"
+msgstr "শনিবার"
+
+#: templates/layout.guest.php:17 templates/layout.user.php:18
+msgid "January"
+msgstr "জানুয়ারি"
+
+#: templates/layout.guest.php:17 templates/layout.user.php:18
+msgid "February"
+msgstr "ফেব্রুয়ারি"
+
+#: templates/layout.guest.php:17 templates/layout.user.php:18
+msgid "March"
+msgstr "মার্চ"
+
+#: templates/layout.guest.php:17 templates/layout.user.php:18
+msgid "April"
+msgstr "এপ্রিল"
+
+#: templates/layout.guest.php:17 templates/layout.user.php:18
+msgid "May"
+msgstr "মে"
+
+#: templates/layout.guest.php:17 templates/layout.user.php:18
+msgid "June"
+msgstr "জুন"
+
+#: templates/layout.guest.php:17 templates/layout.user.php:18
+msgid "July"
+msgstr "জুলাই"
+
+#: templates/layout.guest.php:17 templates/layout.user.php:18
+msgid "August"
+msgstr "অগাস্ট"
+
+#: templates/layout.guest.php:17 templates/layout.user.php:18
+msgid "September"
+msgstr "সেপ্টেম্বর"
+
+#: templates/layout.guest.php:17 templates/layout.user.php:18
+msgid "October"
+msgstr "অক্টোবর"
+
+#: templates/layout.guest.php:17 templates/layout.user.php:18
+msgid "November"
+msgstr "নভেম্বর"
+
+#: templates/layout.guest.php:17 templates/layout.user.php:18
+msgid "December"
+msgstr "ডিসেম্বর"
+
+#: templates/layout.guest.php:42
+msgid "web services under your control"
+msgstr "ওয়েব সেবাসমূহ এখন আপনার হাতের মুঠোয়"
+
+#: templates/layout.user.php:45
+msgid "Log out"
+msgstr "প্রস্থান"
+
+#: templates/login.php:10
+msgid "Automatic logon rejected!"
+msgstr ""
+
+#: templates/login.php:11
+msgid ""
+"If you did not change your password recently, your account may be "
+"compromised!"
+msgstr ""
+
+#: templates/login.php:13
+msgid "Please change your password to secure your account again."
+msgstr ""
+
+#: templates/login.php:19
+msgid "Lost your password?"
+msgstr "আপনার কূটশব্দটি হারিয়েছেন ?"
+
+#: templates/login.php:39
+msgid "remember"
+msgstr "মনে রাখ"
+
+#: templates/login.php:41
+msgid "Log in"
+msgstr "প্রবেশ"
+
+#: templates/logout.php:1
+msgid "You are logged out."
+msgstr "আপনি প্রস্থান করেছেন"
+
+#: templates/part.pagenavi.php:3
+msgid "prev"
+msgstr "পূর্ববর্তী"
+
+#: templates/part.pagenavi.php:20
+msgid "next"
+msgstr "পরবর্তী"
+
+#: templates/update.php:3
+#, php-format
+msgid "Updating ownCloud to version %s, this may take a while."
+msgstr ""
+
+#: templates/verify.php:5
+msgid "Security Warning!"
+msgstr "নিরাপত্তাবিষয়ক সতর্কবাণী"
+
+#: templates/verify.php:6
+msgid ""
+"Please verify your password. For security reasons you may be "
+"occasionally asked to enter your password again."
+msgstr ""
+
+#: templates/verify.php:16
+msgid "Verify"
+msgstr "যাচাই কর"
diff --git a/l10n/bn_BD/files.po b/l10n/bn_BD/files.po
new file mode 100644
index 0000000000..97f28d3ba8
--- /dev/null
+++ b/l10n/bn_BD/files.po
@@ -0,0 +1,287 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+#
+# Translators:
+# Shubhra Paul , 2013.
+msgid ""
+msgstr ""
+"Project-Id-Version: ownCloud\n"
+"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
+"POT-Creation-Date: 2013-01-07 00:04+0100\n"
+"PO-Revision-Date: 2013-01-06 23:05+0000\n"
+"Last-Translator: I Robot \n"
+"Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: bn_BD\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: ajax/upload.php:14
+msgid "No file was uploaded. Unknown error"
+msgstr ""
+
+#: ajax/upload.php:21
+msgid "There is no error, the file uploaded with success"
+msgstr "কোন সমস্যা নেই, ফাইল আপলোড সুসম্পন্ন হয়েছে"
+
+#: ajax/upload.php:22
+msgid ""
+"The uploaded file exceeds the upload_max_filesize directive in php.ini: "
+msgstr ""
+
+#: ajax/upload.php:24
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form"
+msgstr ""
+
+#: ajax/upload.php:26
+msgid "The uploaded file was only partially uploaded"
+msgstr "আপলোড করা ফাইলটি আংশিক আপলোড হয়েছে"
+
+#: ajax/upload.php:27
+msgid "No file was uploaded"
+msgstr "কোন ফাইল আপলোড করা হয় নি"
+
+#: ajax/upload.php:28
+msgid "Missing a temporary folder"
+msgstr "অস্থায়ী ফোল্ডারটি খোয়া গিয়েছে "
+
+#: ajax/upload.php:29
+msgid "Failed to write to disk"
+msgstr "ডিস্কে লিখতে পারা গেল না"
+
+#: ajax/upload.php:45
+msgid "Not enough space available"
+msgstr ""
+
+#: ajax/upload.php:69
+msgid "Invalid directory."
+msgstr ""
+
+#: appinfo/app.php:10
+msgid "Files"
+msgstr "ফাইল"
+
+#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85
+msgid "Unshare"
+msgstr "ভাগাভাগি বাতিল"
+
+#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91
+msgid "Delete"
+msgstr "মুছে ফেল"
+
+#: js/fileactions.js:181
+msgid "Rename"
+msgstr "পূনঃনামকরণ"
+
+#: js/filelist.js:199 js/filelist.js:201
+msgid "{new_name} already exists"
+msgstr "{new_name} টি বিদ্যমান"
+
+#: js/filelist.js:199 js/filelist.js:201
+msgid "replace"
+msgstr "প্রতিস্থাপন"
+
+#: js/filelist.js:199
+msgid "suggest name"
+msgstr "নাম সুপারিশ কর"
+
+#: js/filelist.js:199 js/filelist.js:201
+msgid "cancel"
+msgstr "বাতিল"
+
+#: js/filelist.js:248
+msgid "replaced {new_name}"
+msgstr "{new_name} প্রতিস্থাপন করা হয়েছে"
+
+#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284
+msgid "undo"
+msgstr "ক্রিয়া প্রত্যাহার"
+
+#: js/filelist.js:250
+msgid "replaced {new_name} with {old_name}"
+msgstr "{new_name} কে {old_name} নামে প্রতিস্থাপন করা হয়েছে"
+
+#: js/filelist.js:282
+msgid "unshared {files}"
+msgstr "{files} ভাগাভাগি বাতিল কর"
+
+#: js/filelist.js:284
+msgid "deleted {files}"
+msgstr "{files} মুছে ফেলা হয়েছে"
+
+#: js/files.js:31
+msgid "'.' is an invalid file name."
+msgstr ""
+
+#: js/files.js:36
+msgid "File name cannot be empty."
+msgstr ""
+
+#: js/files.js:45
+msgid ""
+"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not "
+"allowed."
+msgstr ""
+
+#: js/files.js:186
+msgid "generating ZIP-file, it may take some time."
+msgstr ""
+
+#: js/files.js:224
+msgid "Unable to upload your file as it is a directory or has 0 bytes"
+msgstr ""
+
+#: js/files.js:224
+msgid "Upload Error"
+msgstr "আপলোড করতে সমস্যা"
+
+#: js/files.js:241
+msgid "Close"
+msgstr ""
+
+#: js/files.js:260 js/files.js:374 js/files.js:404
+msgid "Pending"
+msgstr "মুলতুবি"
+
+#: js/files.js:280
+msgid "1 file uploading"
+msgstr "১ টি ফাইল আপলোড করা হচ্ছে"
+
+#: js/files.js:283 js/files.js:337 js/files.js:352
+msgid "{count} files uploading"
+msgstr ""
+
+#: js/files.js:355 js/files.js:388
+msgid "Upload cancelled."
+msgstr "আপলোড বাতিল করা হয়েছে ।"
+
+#: js/files.js:457
+msgid ""
+"File upload is in progress. Leaving the page now will cancel the upload."
+msgstr ""
+
+#: js/files.js:527
+msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud"
+msgstr ""
+
+#: js/files.js:711
+msgid "{count} files scanned"
+msgstr ""
+
+#: js/files.js:719
+msgid "error while scanning"
+msgstr "স্ক্যান করার সময় সমস্যা দেখা দিয়েছে"
+
+#: js/files.js:792 templates/index.php:66
+msgid "Name"
+msgstr "নাম"
+
+#: js/files.js:793 templates/index.php:77
+msgid "Size"
+msgstr "আকার"
+
+#: js/files.js:794 templates/index.php:79
+msgid "Modified"
+msgstr "পরিবর্তিত"
+
+#: js/files.js:813
+msgid "1 folder"
+msgstr ""
+
+#: js/files.js:815
+msgid "{count} folders"
+msgstr ""
+
+#: js/files.js:823
+msgid "1 file"
+msgstr ""
+
+#: js/files.js:825
+msgid "{count} files"
+msgstr ""
+
+#: templates/admin.php:5
+msgid "File handling"
+msgstr "ফাইল হ্যান্ডলিং"
+
+#: templates/admin.php:7
+msgid "Maximum upload size"
+msgstr "আপলোডের সর্বোচ্চ আকার"
+
+#: templates/admin.php:10
+msgid "max. possible: "
+msgstr "সম্ভাব্য সর্বোচ্চঃ"
+
+#: templates/admin.php:15
+msgid "Needed for multi-file and folder downloads."
+msgstr "একাধিক ফাইল এবং ফোল্ডার ডাউনলোড করার ক্ষেত্রে আবশ্যক।"
+
+#: templates/admin.php:17
+msgid "Enable ZIP-download"
+msgstr "জিপ ডাউনলোড সক্রিয় কর"
+
+#: templates/admin.php:20
+msgid "0 is unlimited"
+msgstr "০ এর অর্থ হলো অসীম"
+
+#: templates/admin.php:22
+msgid "Maximum input size for ZIP files"
+msgstr "জিপ ফাইলের জন্য সর্বোচ্চ ইনপুট"
+
+#: templates/admin.php:26
+msgid "Save"
+msgstr "সংরক্ষণ কর"
+
+#: templates/index.php:7
+msgid "New"
+msgstr "নতুন"
+
+#: templates/index.php:10
+msgid "Text file"
+msgstr "টেক্সট ফাইল"
+
+#: templates/index.php:12
+msgid "Folder"
+msgstr "ফোল্ডার"
+
+#: templates/index.php:14
+msgid "From link"
+msgstr ""
+
+#: templates/index.php:35
+msgid "Upload"
+msgstr "আপলোড"
+
+#: templates/index.php:43
+msgid "Cancel upload"
+msgstr "আপলোড বাতিল কর"
+
+#: templates/index.php:58
+msgid "Nothing in here. Upload something!"
+msgstr "এখানে কোন কিছুই নেই। কিছু আপলোড করুন !"
+
+#: templates/index.php:72
+msgid "Download"
+msgstr "ডাউনলোড"
+
+#: templates/index.php:104
+msgid "Upload too large"
+msgstr "আপলোডের আকার অনেক বড়"
+
+#: templates/index.php:106
+msgid ""
+"The files you are trying to upload exceed the maximum size for file uploads "
+"on this server."
+msgstr ""
+
+#: templates/index.php:111
+msgid "Files are being scanned, please wait."
+msgstr "ফাইল স্ক্যান করা হচ্ছে, দয়া করে অপেক্ষা করুন।"
+
+#: templates/index.php:114
+msgid "Current scanning"
+msgstr "বর্তমান স্ক্যানিং"
diff --git a/l10n/bn_BD/files_encryption.po b/l10n/bn_BD/files_encryption.po
new file mode 100644
index 0000000000..da32933e27
--- /dev/null
+++ b/l10n/bn_BD/files_encryption.po
@@ -0,0 +1,34 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+#
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: ownCloud\n"
+"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
+"POT-Creation-Date: 2013-01-02 00:04+0100\n"
+"PO-Revision-Date: 2012-08-12 22:33+0000\n"
+"Last-Translator: FULL NAME \n"
+"Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: bn_BD\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: templates/settings.php:3
+msgid "Encryption"
+msgstr ""
+
+#: templates/settings.php:6
+msgid "Enable Encryption"
+msgstr ""
+
+#: templates/settings.php:7
+msgid "None"
+msgstr ""
+
+#: templates/settings.php:12
+msgid "Exclude the following file types from encryption"
+msgstr ""
diff --git a/l10n/bn_BD/files_external.po b/l10n/bn_BD/files_external.po
new file mode 100644
index 0000000000..601f3807ce
--- /dev/null
+++ b/l10n/bn_BD/files_external.po
@@ -0,0 +1,120 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+#
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: ownCloud\n"
+"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
+"POT-Creation-Date: 2013-01-03 00:04+0100\n"
+"PO-Revision-Date: 2012-08-12 22:34+0000\n"
+"Last-Translator: FULL NAME \n"
+"Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: bn_BD\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: js/dropbox.js:7 js/dropbox.js:25 js/google.js:7 js/google.js:23
+msgid "Access granted"
+msgstr ""
+
+#: js/dropbox.js:28 js/dropbox.js:74 js/dropbox.js:79 js/dropbox.js:86
+msgid "Error configuring Dropbox storage"
+msgstr ""
+
+#: js/dropbox.js:34 js/dropbox.js:45 js/google.js:31 js/google.js:40
+msgid "Grant access"
+msgstr ""
+
+#: js/dropbox.js:73 js/google.js:72
+msgid "Fill out all required fields"
+msgstr ""
+
+#: js/dropbox.js:85
+msgid "Please provide a valid Dropbox app key and secret."
+msgstr ""
+
+#: js/google.js:26 js/google.js:73 js/google.js:78
+msgid "Error configuring Google Drive storage"
+msgstr ""
+
+#: lib/config.php:434
+msgid ""
+"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares "
+"is not possible. Please ask your system administrator to install it."
+msgstr ""
+
+#: lib/config.php:435
+msgid ""
+"Warning: The FTP support in PHP is not enabled or installed. Mounting"
+" of FTP shares is not possible. Please ask your system administrator to "
+"install it."
+msgstr ""
+
+#: templates/settings.php:3
+msgid "External Storage"
+msgstr ""
+
+#: templates/settings.php:8 templates/settings.php:22
+msgid "Mount point"
+msgstr ""
+
+#: templates/settings.php:9
+msgid "Backend"
+msgstr "প্রশাসক"
+
+#: templates/settings.php:10
+msgid "Configuration"
+msgstr ""
+
+#: templates/settings.php:11
+msgid "Options"
+msgstr ""
+
+#: templates/settings.php:12
+msgid "Applicable"
+msgstr ""
+
+#: templates/settings.php:27
+msgid "Add mount point"
+msgstr ""
+
+#: templates/settings.php:85
+msgid "None set"
+msgstr ""
+
+#: templates/settings.php:86
+msgid "All Users"
+msgstr ""
+
+#: templates/settings.php:87
+msgid "Groups"
+msgstr "গোষ্ঠী"
+
+#: templates/settings.php:95
+msgid "Users"
+msgstr "ব্যবহারকারিবৃন্দ"
+
+#: templates/settings.php:108 templates/settings.php:109
+#: templates/settings.php:144 templates/settings.php:145
+msgid "Delete"
+msgstr "মুছে ফেল"
+
+#: templates/settings.php:124
+msgid "Enable User External Storage"
+msgstr ""
+
+#: templates/settings.php:125
+msgid "Allow users to mount their own external storage"
+msgstr ""
+
+#: templates/settings.php:136
+msgid "SSL root certificates"
+msgstr ""
+
+#: templates/settings.php:153
+msgid "Import Root Certificate"
+msgstr ""
diff --git a/l10n/bn_BD/files_sharing.po b/l10n/bn_BD/files_sharing.po
new file mode 100644
index 0000000000..69c55d6248
--- /dev/null
+++ b/l10n/bn_BD/files_sharing.po
@@ -0,0 +1,48 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+#
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: ownCloud\n"
+"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
+"POT-Creation-Date: 2013-01-03 00:04+0100\n"
+"PO-Revision-Date: 2012-08-12 22:35+0000\n"
+"Last-Translator: FULL NAME \n"
+"Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: bn_BD\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: templates/authenticate.php:4
+msgid "Password"
+msgstr "কূটশব্দ"
+
+#: templates/authenticate.php:6
+msgid "Submit"
+msgstr "পাঠাও"
+
+#: templates/public.php:17
+#, php-format
+msgid "%s shared the folder %s with you"
+msgstr ""
+
+#: templates/public.php:19
+#, php-format
+msgid "%s shared the file %s with you"
+msgstr ""
+
+#: templates/public.php:22 templates/public.php:38
+msgid "Download"
+msgstr "ডাউনলোড"
+
+#: templates/public.php:37
+msgid "No preview available for"
+msgstr ""
+
+#: templates/public.php:43
+msgid "web services under your control"
+msgstr "ওয়েব সেবাসমূহ এখন আপনার হাতের মুঠোয়"
diff --git a/l10n/bn_BD/files_versions.po b/l10n/bn_BD/files_versions.po
new file mode 100644
index 0000000000..9f543cad59
--- /dev/null
+++ b/l10n/bn_BD/files_versions.po
@@ -0,0 +1,42 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+#
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: ownCloud\n"
+"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
+"POT-Creation-Date: 2013-01-03 00:04+0100\n"
+"PO-Revision-Date: 2012-08-12 22:37+0000\n"
+"Last-Translator: FULL NAME \n"
+"Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: bn_BD\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: js/settings-personal.js:31 templates/settings-personal.php:7
+msgid "Expire all versions"
+msgstr ""
+
+#: js/versions.js:16
+msgid "History"
+msgstr ""
+
+#: templates/settings-personal.php:4
+msgid "Versions"
+msgstr ""
+
+#: templates/settings-personal.php:10
+msgid "This will delete all existing backup versions of your files"
+msgstr ""
+
+#: templates/settings.php:3
+msgid "Files Versioning"
+msgstr ""
+
+#: templates/settings.php:4
+msgid "Enable"
+msgstr "সক্রিয়"
diff --git a/l10n/bn_BD/lib.po b/l10n/bn_BD/lib.po
new file mode 100644
index 0000000000..184ae9bb05
--- /dev/null
+++ b/l10n/bn_BD/lib.po
@@ -0,0 +1,152 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+#
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: ownCloud\n"
+"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
+"POT-Creation-Date: 2013-01-03 00:04+0100\n"
+"PO-Revision-Date: 2012-07-27 22:23+0000\n"
+"Last-Translator: FULL NAME \n"
+"Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: bn_BD\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: app.php:287
+msgid "Help"
+msgstr "সহায়িকা"
+
+#: app.php:294
+msgid "Personal"
+msgstr "ব্যক্তিগত"
+
+#: app.php:299
+msgid "Settings"
+msgstr "নিয়ামকসমূহ"
+
+#: app.php:304
+msgid "Users"
+msgstr "ব্যবহারকারিবৃন্দ"
+
+#: app.php:311
+msgid "Apps"
+msgstr "অ্যাপস"
+
+#: app.php:313
+msgid "Admin"
+msgstr "প্রশাসক"
+
+#: files.php:365
+msgid "ZIP download is turned off."
+msgstr ""
+
+#: files.php:366
+msgid "Files need to be downloaded one by one."
+msgstr ""
+
+#: files.php:366 files.php:391
+msgid "Back to Files"
+msgstr ""
+
+#: files.php:390
+msgid "Selected files too large to generate zip file."
+msgstr ""
+
+#: json.php:28
+msgid "Application is not enabled"
+msgstr ""
+
+#: json.php:39 json.php:64 json.php:77 json.php:89
+msgid "Authentication error"
+msgstr "নিশ্চিতকরণে সমস্যা দেখা দিয়েছে"
+
+#: json.php:51
+msgid "Token expired. Please reload page."
+msgstr ""
+
+#: search/provider/file.php:17 search/provider/file.php:35
+msgid "Files"
+msgstr "ফাইল"
+
+#: search/provider/file.php:26 search/provider/file.php:33
+msgid "Text"
+msgstr ""
+
+#: search/provider/file.php:29
+msgid "Images"
+msgstr ""
+
+#: template.php:103
+msgid "seconds ago"
+msgstr "সেকেন্ড পূর্বে"
+
+#: template.php:104
+msgid "1 minute ago"
+msgstr "1 মিনিট পূর্বে"
+
+#: template.php:105
+#, php-format
+msgid "%d minutes ago"
+msgstr ""
+
+#: template.php:106
+msgid "1 hour ago"
+msgstr "1 ঘন্টা পূর্বে"
+
+#: template.php:107
+#, php-format
+msgid "%d hours ago"
+msgstr ""
+
+#: template.php:108
+msgid "today"
+msgstr "আজ"
+
+#: template.php:109
+msgid "yesterday"
+msgstr "গতকাল"
+
+#: template.php:110
+#, php-format
+msgid "%d days ago"
+msgstr ""
+
+#: template.php:111
+msgid "last month"
+msgstr "গতমাস"
+
+#: template.php:112
+#, php-format
+msgid "%d months ago"
+msgstr ""
+
+#: template.php:113
+msgid "last year"
+msgstr "গত বছর"
+
+#: template.php:114
+msgid "years ago"
+msgstr "বছর পূর্বে"
+
+#: updater.php:75
+#, php-format
+msgid "%s is available. Get more information "
+msgstr ""
+
+#: updater.php:77
+msgid "up to date"
+msgstr ""
+
+#: updater.php:80
+msgid "updates check is disabled"
+msgstr ""
+
+#: vcategories.php:188 vcategories.php:249
+#, php-format
+msgid "Could not find category \"%s\""
+msgstr ""
diff --git a/l10n/bn_BD/settings.po b/l10n/bn_BD/settings.po
new file mode 100644
index 0000000000..de192ed72c
--- /dev/null
+++ b/l10n/bn_BD/settings.po
@@ -0,0 +1,272 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+#
+# Translators:
+# Shubhra Paul , 2013.
+msgid ""
+msgstr ""
+"Project-Id-Version: ownCloud\n"
+"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
+"POT-Creation-Date: 2013-01-03 00:04+0100\n"
+"PO-Revision-Date: 2013-01-02 09:43+0000\n"
+"Last-Translator: Shubhra Paul \n"
+"Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: bn_BD\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: ajax/apps/ocs.php:20
+msgid "Unable to load list from App Store"
+msgstr "অ্যাপস্টোর থেকে তালিকা লোড করা সম্ভব হলো না"
+
+#: ajax/creategroup.php:10
+msgid "Group already exists"
+msgstr "গোষ্ঠীটি বিদ্যমান"
+
+#: ajax/creategroup.php:19
+msgid "Unable to add group"
+msgstr "গোষ্ঠী যোগ করতে পারা গেল না"
+
+#: ajax/enableapp.php:12
+msgid "Could not enable app. "
+msgstr "অ্যাপ সক্রিয় করা সম্ভব হলো না"
+
+#: ajax/lostpassword.php:12
+msgid "Email saved"
+msgstr "ই-মেইল সংরক্ষণ করা হয়েছে"
+
+#: ajax/lostpassword.php:14
+msgid "Invalid email"
+msgstr "ই-মেইলটি সঠিক নয়"
+
+#: ajax/openid.php:13
+msgid "OpenID Changed"
+msgstr "OpenID পরিবর্তন করা হয়েছে"
+
+#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20
+msgid "Invalid request"
+msgstr "অননুমোদিত অনুরোধ"
+
+#: ajax/removegroup.php:13
+msgid "Unable to delete group"
+msgstr "গোষ্ঠী মুছে ফেলা সম্ভব হলো না"
+
+#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18
+msgid "Authentication error"
+msgstr "নিশ্চিতকরণে সমস্যা দেখা দিয়েছে"
+
+#: ajax/removeuser.php:24
+msgid "Unable to delete user"
+msgstr "ব্যবহারকারি মুছে ফেলা সম্ভব হলো না"
+
+#: ajax/setlanguage.php:15
+msgid "Language changed"
+msgstr "ভাষা পরিবর্তন করা হয়েছে"
+
+#: ajax/togglegroups.php:12
+msgid "Admins can't remove themself from the admin group"
+msgstr ""
+
+#: ajax/togglegroups.php:28
+#, php-format
+msgid "Unable to add user to group %s"
+msgstr ""
+
+#: ajax/togglegroups.php:34
+#, php-format
+msgid "Unable to remove user from group %s"
+msgstr ""
+
+#: js/apps.js:28 js/apps.js:67
+msgid "Disable"
+msgstr "নিষ্ক্রিয়"
+
+#: js/apps.js:28 js/apps.js:55
+msgid "Enable"
+msgstr "সক্রিয়"
+
+#: js/personal.js:69
+msgid "Saving..."
+msgstr "সংরক্ষণ করা হচ্ছে...."
+
+#: personal.php:42 personal.php:43
+msgid "__language_name__"
+msgstr "_ভাষার_নাম_"
+
+#: templates/apps.php:10
+msgid "Add your App"
+msgstr "আপনার অ্যাপটি যোগ করুন"
+
+#: templates/apps.php:11
+msgid "More Apps"
+msgstr "আরও অ্যাপ"
+
+#: templates/apps.php:27
+msgid "Select an App"
+msgstr "অ্যাপ নির্বাচন করুন"
+
+#: templates/apps.php:31
+msgid "See application page at apps.owncloud.com"
+msgstr "অ্যাপ্লিকেসন পাতাটি দেখুন এখানে apps.owncloud.com"
+
+#: templates/apps.php:32
+msgid " -licensed by "
+msgstr " -লাইসেন্স করিয়েছেন "
+
+#: templates/help.php:3
+msgid "User Documentation"
+msgstr ""
+
+#: templates/help.php:4
+msgid "Administrator Documentation"
+msgstr ""
+
+#: templates/help.php:6
+msgid "Online Documentation"
+msgstr ""
+
+#: templates/help.php:7
+msgid "Forum"
+msgstr "ফোরাম"
+
+#: templates/help.php:9
+msgid "Bugtracker"
+msgstr "বাগট্র্যাকার"
+
+#: templates/help.php:11
+msgid "Commercial Support"
+msgstr "বাণিজ্যিক সাপোর্ট"
+
+#: templates/personal.php:8
+#, php-format
+msgid "You have used %s of the available %s "
+msgstr ""
+
+#: templates/personal.php:12
+msgid "Clients"
+msgstr "ক্লায়েন্ট"
+
+#: templates/personal.php:13
+msgid "Download Desktop Clients"
+msgstr "ডেস্কটপ ক্লায়েন্ট ডাউনলোড করুন"
+
+#: templates/personal.php:14
+msgid "Download Android Client"
+msgstr ""
+
+#: templates/personal.php:15
+msgid "Download iOS Client"
+msgstr ""
+
+#: templates/personal.php:21 templates/users.php:23 templates/users.php:82
+msgid "Password"
+msgstr "কূটশব্দ"
+
+#: templates/personal.php:22
+msgid "Your password was changed"
+msgstr "আপনার কূটশব্দটি পরিবর্তন করা হয়েছে"
+
+#: templates/personal.php:23
+msgid "Unable to change your password"
+msgstr "কূটশব্দ পরিবর্তন করা সম্ভব হলো না"
+
+#: templates/personal.php:24
+msgid "Current password"
+msgstr "বর্তমান কূটশব্দ"
+
+#: templates/personal.php:25
+msgid "New password"
+msgstr "নতুন কূটশব্দ"
+
+#: templates/personal.php:26
+msgid "show"
+msgstr "প্রদর্শন"
+
+#: templates/personal.php:27
+msgid "Change password"
+msgstr "কূটশব্দ পরিবর্তন কর"
+
+#: templates/personal.php:33
+msgid "Email"
+msgstr "ই-মেইল"
+
+#: templates/personal.php:34
+msgid "Your email address"
+msgstr "আপনার ই-মেইল ঠিকানা"
+
+#: templates/personal.php:35
+msgid "Fill in an email address to enable password recovery"
+msgstr ""
+
+#: templates/personal.php:41 templates/personal.php:42
+msgid "Language"
+msgstr "ভাষা"
+
+#: templates/personal.php:47
+msgid "Help translate"
+msgstr "অনুবাদ করতে সাহায্য করুন"
+
+#: templates/personal.php:52
+msgid "WebDAV"
+msgstr ""
+
+#: templates/personal.php:54
+msgid "Use this address to connect to your ownCloud in your file manager"
+msgstr ""
+
+#: templates/personal.php:63
+msgid "Version"
+msgstr ""
+
+#: templates/personal.php:65
+msgid ""
+"Developed by the ownCloud community , the source code is "
+"licensed under the AGPL ."
+msgstr "তৈরি করেছেন ownCloud community , যার উৎস কোড AGPL এর অধীনে লাইেসন্সকৃত ."
+
+#: templates/users.php:21 templates/users.php:81
+msgid "Name"
+msgstr "নাম"
+
+#: templates/users.php:26 templates/users.php:83 templates/users.php:103
+msgid "Groups"
+msgstr "গোষ্ঠী"
+
+#: templates/users.php:32
+msgid "Create"
+msgstr "তৈরি কর"
+
+#: templates/users.php:35
+msgid "Default Storage"
+msgstr ""
+
+#: templates/users.php:42 templates/users.php:138
+msgid "Unlimited"
+msgstr ""
+
+#: templates/users.php:60 templates/users.php:153
+msgid "Other"
+msgstr "অন্যান্য"
+
+#: templates/users.php:85 templates/users.php:117
+msgid "Group Admin"
+msgstr "গোষ্ঠী প্রশাসন"
+
+#: templates/users.php:87
+msgid "Storage"
+msgstr ""
+
+#: templates/users.php:133
+msgid "Default"
+msgstr ""
+
+#: templates/users.php:161
+msgid "Delete"
+msgstr "মুছে ফেল"
diff --git a/l10n/bn_BD/user_ldap.po b/l10n/bn_BD/user_ldap.po
new file mode 100644
index 0000000000..509354b9d6
--- /dev/null
+++ b/l10n/bn_BD/user_ldap.po
@@ -0,0 +1,183 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+#
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: ownCloud\n"
+"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
+"POT-Creation-Date: 2013-01-03 00:04+0100\n"
+"PO-Revision-Date: 2012-08-12 22:45+0000\n"
+"Last-Translator: FULL NAME \n"
+"Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: bn_BD\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: templates/settings.php:8
+msgid ""
+"Warning: Apps user_ldap and user_webdavauth are incompatible. You may"
+" experience unexpected behaviour. Please ask your system administrator to "
+"disable one of them."
+msgstr ""
+
+#: templates/settings.php:11
+msgid ""
+"Warning: The PHP LDAP module needs is not installed, the backend will"
+" not work. Please ask your system administrator to install it."
+msgstr ""
+
+#: templates/settings.php:15
+msgid "Host"
+msgstr ""
+
+#: templates/settings.php:15
+msgid ""
+"You can omit the protocol, except you require SSL. Then start with ldaps://"
+msgstr ""
+
+#: templates/settings.php:16
+msgid "Base DN"
+msgstr ""
+
+#: templates/settings.php:16
+msgid "You can specify Base DN for users and groups in the Advanced tab"
+msgstr ""
+
+#: templates/settings.php:17
+msgid "User DN"
+msgstr ""
+
+#: templates/settings.php:17
+msgid ""
+"The DN of the client user with which the bind shall be done, e.g. "
+"uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password "
+"empty."
+msgstr ""
+
+#: templates/settings.php:18
+msgid "Password"
+msgstr "কূটশব্দ"
+
+#: templates/settings.php:18
+msgid "For anonymous access, leave DN and Password empty."
+msgstr ""
+
+#: templates/settings.php:19
+msgid "User Login Filter"
+msgstr ""
+
+#: templates/settings.php:19
+#, php-format
+msgid ""
+"Defines the filter to apply, when login is attempted. %%uid replaces the "
+"username in the login action."
+msgstr ""
+
+#: templates/settings.php:19
+#, php-format
+msgid "use %%uid placeholder, e.g. \"uid=%%uid\""
+msgstr ""
+
+#: templates/settings.php:20
+msgid "User List Filter"
+msgstr ""
+
+#: templates/settings.php:20
+msgid "Defines the filter to apply, when retrieving users."
+msgstr ""
+
+#: templates/settings.php:20
+msgid "without any placeholder, e.g. \"objectClass=person\"."
+msgstr ""
+
+#: templates/settings.php:21
+msgid "Group Filter"
+msgstr ""
+
+#: templates/settings.php:21
+msgid "Defines the filter to apply, when retrieving groups."
+msgstr ""
+
+#: templates/settings.php:21
+msgid "without any placeholder, e.g. \"objectClass=posixGroup\"."
+msgstr ""
+
+#: templates/settings.php:24
+msgid "Port"
+msgstr ""
+
+#: templates/settings.php:25
+msgid "Base User Tree"
+msgstr ""
+
+#: templates/settings.php:26
+msgid "Base Group Tree"
+msgstr ""
+
+#: templates/settings.php:27
+msgid "Group-Member association"
+msgstr ""
+
+#: templates/settings.php:28
+msgid "Use TLS"
+msgstr ""
+
+#: templates/settings.php:28
+msgid "Do not use it for SSL connections, it will fail."
+msgstr ""
+
+#: templates/settings.php:29
+msgid "Case insensitve LDAP server (Windows)"
+msgstr ""
+
+#: templates/settings.php:30
+msgid "Turn off SSL certificate validation."
+msgstr ""
+
+#: templates/settings.php:30
+msgid ""
+"If connection only works with this option, import the LDAP server's SSL "
+"certificate in your ownCloud server."
+msgstr ""
+
+#: templates/settings.php:30
+msgid "Not recommended, use for testing only."
+msgstr ""
+
+#: templates/settings.php:31
+msgid "User Display Name Field"
+msgstr ""
+
+#: templates/settings.php:31
+msgid "The LDAP attribute to use to generate the user`s ownCloud name."
+msgstr ""
+
+#: templates/settings.php:32
+msgid "Group Display Name Field"
+msgstr ""
+
+#: templates/settings.php:32
+msgid "The LDAP attribute to use to generate the groups`s ownCloud name."
+msgstr ""
+
+#: templates/settings.php:34
+msgid "in bytes"
+msgstr ""
+
+#: templates/settings.php:36
+msgid "in seconds. A change empties the cache."
+msgstr ""
+
+#: templates/settings.php:37
+msgid ""
+"Leave empty for user name (default). Otherwise, specify an LDAP/AD "
+"attribute."
+msgstr ""
+
+#: templates/settings.php:39
+msgid "Help"
+msgstr "সহায়িকা"
diff --git a/l10n/bn_BD/user_webdavauth.po b/l10n/bn_BD/user_webdavauth.po
new file mode 100644
index 0000000000..3aa6ccffca
--- /dev/null
+++ b/l10n/bn_BD/user_webdavauth.po
@@ -0,0 +1,29 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+#
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: ownCloud\n"
+"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
+"POT-Creation-Date: 2013-01-02 00:04+0100\n"
+"PO-Revision-Date: 2012-11-09 09:06+0000\n"
+"Last-Translator: FULL NAME \n"
+"Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: bn_BD\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: templates/settings.php:4
+msgid "URL: http://"
+msgstr ""
+
+#: templates/settings.php:6
+msgid ""
+"ownCloud will send the user credentials to this URL is interpret http 401 "
+"and http 403 as credentials wrong and all other codes as credentials "
+"correct."
+msgstr ""
diff --git a/l10n/ca/core.po b/l10n/ca/core.po
index 9fd20a8ef1..be8931fdc5 100644
--- a/l10n/ca/core.po
+++ b/l10n/ca/core.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-12-24 00:10+0100\n"
-"PO-Revision-Date: 2012-12-23 14:22+0000\n"
-"Last-Translator: rogerc \n"
+"POT-Creation-Date: 2013-01-07 00:04+0100\n"
+"PO-Revision-Date: 2013-01-06 23:04+0000\n"
+"Last-Translator: I Robot \n"
"Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -566,6 +566,11 @@ msgstr "anterior"
msgid "next"
msgstr "següent"
+#: templates/update.php:3
+#, php-format
+msgid "Updating ownCloud to version %s, this may take a while."
+msgstr ""
+
#: templates/verify.php:5
msgid "Security Warning!"
msgstr "Avís de seguretat!"
diff --git a/l10n/ca/files.po b/l10n/ca/files.po
index 478d4fded6..6f071623c1 100644
--- a/l10n/ca/files.po
+++ b/l10n/ca/files.po
@@ -8,13 +8,14 @@
# , 2012.
# Josep Tomàs , 2012.
# , 2011-2012.
+# , 2013.
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-12-02 00:02+0100\n"
-"PO-Revision-Date: 2012-12-01 16:57+0000\n"
-"Last-Translator: Josep Tomàs \n"
+"POT-Creation-Date: 2013-01-07 00:04+0100\n"
+"PO-Revision-Date: 2013-01-06 23:05+0000\n"
+"Last-Translator: I Robot \n"
"Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -22,46 +23,58 @@ msgstr ""
"Language: ca\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: ajax/upload.php:20
+#: ajax/upload.php:14
+msgid "No file was uploaded. Unknown error"
+msgstr "No s'ha carregat cap fitxer. Error desconegut"
+
+#: ajax/upload.php:21
msgid "There is no error, the file uploaded with success"
msgstr "El fitxer s'ha pujat correctament"
-#: ajax/upload.php:21
+#: ajax/upload.php:22
msgid ""
"The uploaded file exceeds the upload_max_filesize directive in php.ini: "
msgstr "L’arxiu que voleu carregar supera el màxim definit en la directiva upload_max_filesize del php.ini:"
-#: ajax/upload.php:23
+#: ajax/upload.php:24
msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form"
msgstr "El fitxer de pujada excedeix la directiva MAX_FILE_SIZE especificada al formulari HTML"
-#: ajax/upload.php:25
+#: ajax/upload.php:26
msgid "The uploaded file was only partially uploaded"
msgstr "El fitxer només s'ha pujat parcialment"
-#: ajax/upload.php:26
+#: ajax/upload.php:27
msgid "No file was uploaded"
msgstr "El fitxer no s'ha pujat"
-#: ajax/upload.php:27
+#: ajax/upload.php:28
msgid "Missing a temporary folder"
msgstr "S'ha perdut un fitxer temporal"
-#: ajax/upload.php:28
+#: ajax/upload.php:29
msgid "Failed to write to disk"
msgstr "Ha fallat en escriure al disc"
+#: ajax/upload.php:45
+msgid "Not enough space available"
+msgstr "No hi ha prou espai disponible"
+
+#: ajax/upload.php:69
+msgid "Invalid directory."
+msgstr "Directori no vàlid."
+
#: appinfo/app.php:10
msgid "Files"
msgstr "Fitxers"
-#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84
+#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85
msgid "Unshare"
msgstr "Deixa de compartir"
-#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90
+#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91
msgid "Delete"
msgstr "Suprimeix"
@@ -69,122 +82,130 @@ msgstr "Suprimeix"
msgid "Rename"
msgstr "Reanomena"
-#: js/filelist.js:201 js/filelist.js:203
+#: js/filelist.js:199 js/filelist.js:201
msgid "{new_name} already exists"
msgstr "{new_name} ja existeix"
-#: js/filelist.js:201 js/filelist.js:203
+#: js/filelist.js:199 js/filelist.js:201
msgid "replace"
msgstr "substitueix"
-#: js/filelist.js:201
+#: js/filelist.js:199
msgid "suggest name"
msgstr "sugereix un nom"
-#: js/filelist.js:201 js/filelist.js:203
+#: js/filelist.js:199 js/filelist.js:201
msgid "cancel"
msgstr "cancel·la"
-#: js/filelist.js:250
+#: js/filelist.js:248
msgid "replaced {new_name}"
msgstr "s'ha substituït {new_name}"
-#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286
+#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284
msgid "undo"
msgstr "desfés"
-#: js/filelist.js:252
+#: js/filelist.js:250
msgid "replaced {new_name} with {old_name}"
msgstr "s'ha substituït {old_name} per {new_name}"
-#: js/filelist.js:284
+#: js/filelist.js:282
msgid "unshared {files}"
msgstr "no compartits {files}"
-#: js/filelist.js:286
+#: js/filelist.js:284
msgid "deleted {files}"
msgstr "eliminats {files}"
-#: js/files.js:33
+#: js/files.js:31
+msgid "'.' is an invalid file name."
+msgstr ""
+
+#: js/files.js:36
+msgid "File name cannot be empty."
+msgstr ""
+
+#: js/files.js:45
msgid ""
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not "
"allowed."
msgstr "El nóm no és vàlid, '\\', '/', '<', '>', ':', '\"', '|', '?' i '*' no estan permesos."
-#: js/files.js:183
+#: js/files.js:186
msgid "generating ZIP-file, it may take some time."
msgstr "s'estan generant fitxers ZIP, pot trigar una estona."
-#: js/files.js:218
+#: js/files.js:224
msgid "Unable to upload your file as it is a directory or has 0 bytes"
msgstr "No es pot pujar el fitxer perquè és una carpeta o té 0 bytes"
-#: js/files.js:218
+#: js/files.js:224
msgid "Upload Error"
msgstr "Error en la pujada"
-#: js/files.js:235
+#: js/files.js:241
msgid "Close"
msgstr "Tanca"
-#: js/files.js:254 js/files.js:368 js/files.js:398
+#: js/files.js:260 js/files.js:374 js/files.js:404
msgid "Pending"
msgstr "Pendents"
-#: js/files.js:274
+#: js/files.js:280
msgid "1 file uploading"
msgstr "1 fitxer pujant"
-#: js/files.js:277 js/files.js:331 js/files.js:346
+#: js/files.js:283 js/files.js:337 js/files.js:352
msgid "{count} files uploading"
msgstr "{count} fitxers en pujada"
-#: js/files.js:349 js/files.js:382
+#: js/files.js:355 js/files.js:388
msgid "Upload cancelled."
msgstr "La pujada s'ha cancel·lat."
-#: js/files.js:451
+#: js/files.js:457
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr "Hi ha una pujada en curs. Si abandoneu la pàgina la pujada es cancel·larà."
-#: js/files.js:523
+#: js/files.js:527
msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud"
msgstr "El nom de la carpeta no és vàlid. L'ús de \"Compartit\" està reservat per a OwnCloud"
-#: js/files.js:704
+#: js/files.js:711
msgid "{count} files scanned"
msgstr "{count} fitxers escannejats"
-#: js/files.js:712
+#: js/files.js:719
msgid "error while scanning"
msgstr "error durant l'escaneig"
-#: js/files.js:785 templates/index.php:65
+#: js/files.js:792 templates/index.php:66
msgid "Name"
msgstr "Nom"
-#: js/files.js:786 templates/index.php:76
+#: js/files.js:793 templates/index.php:77
msgid "Size"
msgstr "Mida"
-#: js/files.js:787 templates/index.php:78
+#: js/files.js:794 templates/index.php:79
msgid "Modified"
msgstr "Modificat"
-#: js/files.js:814
+#: js/files.js:813
msgid "1 folder"
msgstr "1 carpeta"
-#: js/files.js:816
+#: js/files.js:815
msgid "{count} folders"
msgstr "{count} carpetes"
-#: js/files.js:824
+#: js/files.js:823
msgid "1 file"
msgstr "1 fitxer"
-#: js/files.js:826
+#: js/files.js:825
msgid "{count} files"
msgstr "{count} fitxers"
@@ -196,27 +217,27 @@ msgstr "Gestió de fitxers"
msgid "Maximum upload size"
msgstr "Mida màxima de pujada"
-#: templates/admin.php:9
+#: templates/admin.php:10
msgid "max. possible: "
msgstr "màxim possible:"
-#: templates/admin.php:12
+#: templates/admin.php:15
msgid "Needed for multi-file and folder downloads."
msgstr "Necessari per fitxers múltiples i baixada de carpetes"
-#: templates/admin.php:14
+#: templates/admin.php:17
msgid "Enable ZIP-download"
msgstr "Activa la baixada ZIP"
-#: templates/admin.php:17
+#: templates/admin.php:20
msgid "0 is unlimited"
msgstr "0 és sense límit"
-#: templates/admin.php:19
+#: templates/admin.php:22
msgid "Maximum input size for ZIP files"
msgstr "Mida màxima d'entrada per fitxers ZIP"
-#: templates/admin.php:23
+#: templates/admin.php:26
msgid "Save"
msgstr "Desa"
@@ -244,28 +265,28 @@ msgstr "Puja"
msgid "Cancel upload"
msgstr "Cancel·la la pujada"
-#: templates/index.php:57
+#: templates/index.php:58
msgid "Nothing in here. Upload something!"
msgstr "Res per aquí. Pugeu alguna cosa!"
-#: templates/index.php:71
+#: templates/index.php:72
msgid "Download"
msgstr "Baixa"
-#: templates/index.php:103
+#: templates/index.php:104
msgid "Upload too large"
msgstr "La pujada és massa gran"
-#: templates/index.php:105
+#: templates/index.php:106
msgid ""
"The files you are trying to upload exceed the maximum size for file uploads "
"on this server."
msgstr "Els fitxers que esteu intentant pujar excedeixen la mida màxima de pujada del servidor"
-#: templates/index.php:110
+#: templates/index.php:111
msgid "Files are being scanned, please wait."
msgstr "S'estan escanejant els fitxers, espereu"
-#: templates/index.php:113
+#: templates/index.php:114
msgid "Current scanning"
msgstr "Actualment escanejant"
diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po
index da4cfbd627..85b991ab12 100644
--- a/l10n/ca/settings.po
+++ b/l10n/ca/settings.po
@@ -12,8 +12,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-12-22 00:24+0100\n"
-"PO-Revision-Date: 2012-12-21 09:18+0000\n"
+"POT-Creation-Date: 2013-01-01 00:04+0100\n"
+"PO-Revision-Date: 2012-12-31 07:40+0000\n"
"Last-Translator: rogerc \n"
"Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n"
"MIME-Version: 1.0\n"
@@ -165,7 +165,7 @@ msgstr " Baixa el client per Android"
msgid "Download iOS Client"
msgstr "Baixa el client per iOS"
-#: templates/personal.php:21 templates/users.php:23 templates/users.php:77
+#: templates/personal.php:21 templates/users.php:23 templates/users.php:82
msgid "Password"
msgstr "Contrasenya"
@@ -235,11 +235,11 @@ msgid ""
"License\">AGPL."
msgstr "Desenvolupat per la comunitat ownCloud , el codi font té llicència AGPL ."
-#: templates/users.php:21 templates/users.php:76
+#: templates/users.php:21 templates/users.php:81
msgid "Name"
msgstr "Nom"
-#: templates/users.php:26 templates/users.php:78 templates/users.php:98
+#: templates/users.php:26 templates/users.php:83 templates/users.php:103
msgid "Groups"
msgstr "Grups"
@@ -248,21 +248,29 @@ msgid "Create"
msgstr "Crea"
#: templates/users.php:35
-msgid "Default Quota"
-msgstr "Quota per defecte"
+msgid "Default Storage"
+msgstr "Emmagatzemament per defecte"
-#: templates/users.php:55 templates/users.php:138
+#: templates/users.php:42 templates/users.php:138
+msgid "Unlimited"
+msgstr "Il·limitat"
+
+#: templates/users.php:60 templates/users.php:153
msgid "Other"
-msgstr "Altre"
+msgstr "Un altre"
-#: templates/users.php:80 templates/users.php:112
+#: templates/users.php:85 templates/users.php:117
msgid "Group Admin"
msgstr "Grup Admin"
-#: templates/users.php:82
-msgid "Quota"
-msgstr "Quota"
+#: templates/users.php:87
+msgid "Storage"
+msgstr "Emmagatzemament"
-#: templates/users.php:146
+#: templates/users.php:133
+msgid "Default"
+msgstr "Per defecte"
+
+#: templates/users.php:161
msgid "Delete"
msgstr "Suprimeix"
diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po
index e00aa1d03f..8b202d9517 100644
--- a/l10n/cs_CZ/core.po
+++ b/l10n/cs_CZ/core.po
@@ -11,9 +11,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-12-14 00:16+0100\n"
-"PO-Revision-Date: 2012-12-13 09:04+0000\n"
-"Last-Translator: Tomáš Chvátal \n"
+"POT-Creation-Date: 2013-01-07 00:04+0100\n"
+"PO-Revision-Date: 2013-01-06 23:04+0000\n"
+"Last-Translator: I Robot \n"
"Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -165,8 +165,8 @@ msgid "The object type is not specified."
msgstr "Není určen typ objektu."
#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136
-#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541
-#: js/share.js:553
+#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554
+#: js/share.js:566
msgid "Error"
msgstr "Chyba"
@@ -178,7 +178,7 @@ msgstr "Není určen název aplikace."
msgid "The required file {file} is not installed!"
msgstr "Požadovaný soubor {file} není nainstalován."
-#: js/share.js:124 js/share.js:581
+#: js/share.js:124 js/share.js:594
msgid "Error while sharing"
msgstr "Chyba při sdílení"
@@ -206,11 +206,11 @@ msgstr "Sdílet s"
msgid "Share with link"
msgstr "Sdílet s odkazem"
-#: js/share.js:164
+#: js/share.js:166
msgid "Password protect"
msgstr "Chránit heslem"
-#: js/share.js:168 templates/installation.php:42 templates/login.php:24
+#: js/share.js:168 templates/installation.php:44 templates/login.php:35
#: templates/verify.php:13
msgid "Password"
msgstr "Heslo"
@@ -275,23 +275,23 @@ msgstr "smazat"
msgid "share"
msgstr "sdílet"
-#: js/share.js:353 js/share.js:528 js/share.js:530
+#: js/share.js:356 js/share.js:541
msgid "Password protected"
msgstr "Chráněno heslem"
-#: js/share.js:541
+#: js/share.js:554
msgid "Error unsetting expiration date"
msgstr "Chyba při odstraňování data vypršení platnosti"
-#: js/share.js:553
+#: js/share.js:566
msgid "Error setting expiration date"
msgstr "Chyba při nastavení data vypršení platnosti"
-#: js/share.js:568
+#: js/share.js:581
msgid "Sending ..."
msgstr "Odesílám..."
-#: js/share.js:579
+#: js/share.js:592
msgid "Email sent"
msgstr "E-mail odeslán"
@@ -315,8 +315,8 @@ msgstr "Obnovovací e-mail odeslán."
msgid "Request failed!"
msgstr "Požadavek selhal."
-#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38
-#: templates/login.php:20
+#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39
+#: templates/login.php:28
msgid "Username"
msgstr "Uživatelské jméno"
@@ -405,44 +405,44 @@ msgstr "Váš adresář dat a všechny Vaše soubory jsou pravděpodobně přís
msgid "Create an admin account "
msgstr "Vytvořit účet správce "
-#: templates/installation.php:48
+#: templates/installation.php:50
msgid "Advanced"
msgstr "Pokročilé"
-#: templates/installation.php:50
+#: templates/installation.php:52
msgid "Data folder"
msgstr "Složka s daty"
-#: templates/installation.php:57
+#: templates/installation.php:59
msgid "Configure the database"
msgstr "Nastavit databázi"
-#: templates/installation.php:62 templates/installation.php:73
-#: templates/installation.php:83 templates/installation.php:93
+#: templates/installation.php:64 templates/installation.php:75
+#: templates/installation.php:85 templates/installation.php:95
msgid "will be used"
msgstr "bude použito"
-#: templates/installation.php:105
+#: templates/installation.php:107
msgid "Database user"
msgstr "Uživatel databáze"
-#: templates/installation.php:109
+#: templates/installation.php:111
msgid "Database password"
msgstr "Heslo databáze"
-#: templates/installation.php:113
+#: templates/installation.php:115
msgid "Database name"
msgstr "Název databáze"
-#: templates/installation.php:121
+#: templates/installation.php:123
msgid "Database tablespace"
msgstr "Tabulkový prostor databáze"
-#: templates/installation.php:127
+#: templates/installation.php:129
msgid "Database host"
msgstr "Hostitel databáze"
-#: templates/installation.php:132
+#: templates/installation.php:134
msgid "Finish setup"
msgstr "Dokončit nastavení"
@@ -530,29 +530,29 @@ msgstr "webové služby pod Vaší kontrolou"
msgid "Log out"
msgstr "Odhlásit se"
-#: templates/login.php:8
+#: templates/login.php:10
msgid "Automatic logon rejected!"
msgstr "Automatické přihlášení odmítnuto."
-#: templates/login.php:9
+#: templates/login.php:11
msgid ""
"If you did not change your password recently, your account may be "
"compromised!"
msgstr "V nedávné době jste nezměnili své heslo, Váš účet může být kompromitován."
-#: templates/login.php:10
+#: templates/login.php:13
msgid "Please change your password to secure your account again."
msgstr "Změňte, prosím, své heslo pro opětovné zabezpečení Vašeho účtu."
-#: templates/login.php:15
+#: templates/login.php:19
msgid "Lost your password?"
msgstr "Ztratili jste své heslo?"
-#: templates/login.php:27
+#: templates/login.php:39
msgid "remember"
msgstr "zapamatovat si"
-#: templates/login.php:28
+#: templates/login.php:41
msgid "Log in"
msgstr "Přihlásit"
@@ -568,6 +568,11 @@ msgstr "předchozí"
msgid "next"
msgstr "následující"
+#: templates/update.php:3
+#, php-format
+msgid "Updating ownCloud to version %s, this may take a while."
+msgstr ""
+
#: templates/verify.php:5
msgid "Security Warning!"
msgstr "Bezpečnostní upozornění."
diff --git a/l10n/cs_CZ/files.po b/l10n/cs_CZ/files.po
index ae2e468235..5080b51b46 100644
--- a/l10n/cs_CZ/files.po
+++ b/l10n/cs_CZ/files.po
@@ -5,14 +5,14 @@
# Translators:
# Martin , 2011-2012.
# Michal Hrušecký , 2012.
-# Tomáš Chvátal , 2012.
+# Tomáš Chvátal , 2012-2013.
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-12-02 00:02+0100\n"
-"PO-Revision-Date: 2012-12-01 05:15+0000\n"
-"Last-Translator: Tomáš Chvátal \n"
+"POT-Creation-Date: 2013-01-07 00:04+0100\n"
+"PO-Revision-Date: 2013-01-06 23:05+0000\n"
+"Last-Translator: I Robot \n"
"Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -20,46 +20,58 @@ msgstr ""
"Language: cs_CZ\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
-#: ajax/upload.php:20
+#: ajax/upload.php:14
+msgid "No file was uploaded. Unknown error"
+msgstr "Soubor nebyl odeslán. Neznámá chyba"
+
+#: ajax/upload.php:21
msgid "There is no error, the file uploaded with success"
msgstr "Soubor byl odeslán úspěšně"
-#: ajax/upload.php:21
+#: ajax/upload.php:22
msgid ""
"The uploaded file exceeds the upload_max_filesize directive in php.ini: "
msgstr "Odesílaný soubor přesahuje velikost upload_max_filesize povolenou v php.ini:"
-#: ajax/upload.php:23
+#: ajax/upload.php:24
msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form"
msgstr "Odeslaný soubor přesáhl svou velikostí parametr MAX_FILE_SIZE specifikovaný v formuláři HTML"
-#: ajax/upload.php:25
+#: ajax/upload.php:26
msgid "The uploaded file was only partially uploaded"
msgstr "Soubor byl odeslán pouze částečně"
-#: ajax/upload.php:26
+#: ajax/upload.php:27
msgid "No file was uploaded"
msgstr "Žádný soubor nebyl odeslán"
-#: ajax/upload.php:27
+#: ajax/upload.php:28
msgid "Missing a temporary folder"
msgstr "Chybí adresář pro dočasné soubory"
-#: ajax/upload.php:28
+#: ajax/upload.php:29
msgid "Failed to write to disk"
msgstr "Zápis na disk selhal"
+#: ajax/upload.php:45
+msgid "Not enough space available"
+msgstr "Nedostatek dostupného místa"
+
+#: ajax/upload.php:69
+msgid "Invalid directory."
+msgstr "Neplatný adresář"
+
#: appinfo/app.php:10
msgid "Files"
msgstr "Soubory"
-#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84
+#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85
msgid "Unshare"
msgstr "Zrušit sdílení"
-#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90
+#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91
msgid "Delete"
msgstr "Smazat"
@@ -67,122 +79,130 @@ msgstr "Smazat"
msgid "Rename"
msgstr "Přejmenovat"
-#: js/filelist.js:201 js/filelist.js:203
+#: js/filelist.js:199 js/filelist.js:201
msgid "{new_name} already exists"
msgstr "{new_name} již existuje"
-#: js/filelist.js:201 js/filelist.js:203
+#: js/filelist.js:199 js/filelist.js:201
msgid "replace"
msgstr "nahradit"
-#: js/filelist.js:201
+#: js/filelist.js:199
msgid "suggest name"
msgstr "navrhnout název"
-#: js/filelist.js:201 js/filelist.js:203
+#: js/filelist.js:199 js/filelist.js:201
msgid "cancel"
msgstr "zrušit"
-#: js/filelist.js:250
+#: js/filelist.js:248
msgid "replaced {new_name}"
msgstr "nahrazeno {new_name}"
-#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286
+#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284
msgid "undo"
msgstr "zpět"
-#: js/filelist.js:252
+#: js/filelist.js:250
msgid "replaced {new_name} with {old_name}"
msgstr "nahrazeno {new_name} s {old_name}"
-#: js/filelist.js:284
+#: js/filelist.js:282
msgid "unshared {files}"
msgstr "sdílení zrušeno pro {files}"
-#: js/filelist.js:286
+#: js/filelist.js:284
msgid "deleted {files}"
msgstr "smazáno {files}"
-#: js/files.js:33
+#: js/files.js:31
+msgid "'.' is an invalid file name."
+msgstr ""
+
+#: js/files.js:36
+msgid "File name cannot be empty."
+msgstr ""
+
+#: js/files.js:45
msgid ""
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not "
"allowed."
msgstr "Neplatný název, znaky '\\', '/', '<', '>', ':', '\"', '|', '?' a '*' nejsou povoleny."
-#: js/files.js:183
+#: js/files.js:186
msgid "generating ZIP-file, it may take some time."
msgstr "generuji ZIP soubor, může to nějakou dobu trvat."
-#: js/files.js:218
+#: js/files.js:224
msgid "Unable to upload your file as it is a directory or has 0 bytes"
msgstr "Nelze odeslat Váš soubor, protože je to adresář nebo má velikost 0 bajtů"
-#: js/files.js:218
+#: js/files.js:224
msgid "Upload Error"
msgstr "Chyba odesílání"
-#: js/files.js:235
+#: js/files.js:241
msgid "Close"
msgstr "Zavřít"
-#: js/files.js:254 js/files.js:368 js/files.js:398
+#: js/files.js:260 js/files.js:374 js/files.js:404
msgid "Pending"
msgstr "Čekající"
-#: js/files.js:274
+#: js/files.js:280
msgid "1 file uploading"
msgstr "odesílá se 1 soubor"
-#: js/files.js:277 js/files.js:331 js/files.js:346
+#: js/files.js:283 js/files.js:337 js/files.js:352
msgid "{count} files uploading"
msgstr "odesílám {count} souborů"
-#: js/files.js:349 js/files.js:382
+#: js/files.js:355 js/files.js:388
msgid "Upload cancelled."
msgstr "Odesílání zrušeno."
-#: js/files.js:451
+#: js/files.js:457
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr "Probíhá odesílání souboru. Opuštění stránky vyústí ve zrušení nahrávání."
-#: js/files.js:523
+#: js/files.js:527
msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud"
msgstr "Neplatný název složky. Použití názvu \"Shared\" je rezervováno pro interní úžití službou Owncloud."
-#: js/files.js:704
+#: js/files.js:711
msgid "{count} files scanned"
msgstr "prozkoumáno {count} souborů"
-#: js/files.js:712
+#: js/files.js:719
msgid "error while scanning"
msgstr "chyba při prohledávání"
-#: js/files.js:785 templates/index.php:65
+#: js/files.js:792 templates/index.php:66
msgid "Name"
msgstr "Název"
-#: js/files.js:786 templates/index.php:76
+#: js/files.js:793 templates/index.php:77
msgid "Size"
msgstr "Velikost"
-#: js/files.js:787 templates/index.php:78
+#: js/files.js:794 templates/index.php:79
msgid "Modified"
msgstr "Změněno"
-#: js/files.js:814
+#: js/files.js:813
msgid "1 folder"
msgstr "1 složka"
-#: js/files.js:816
+#: js/files.js:815
msgid "{count} folders"
msgstr "{count} složky"
-#: js/files.js:824
+#: js/files.js:823
msgid "1 file"
msgstr "1 soubor"
-#: js/files.js:826
+#: js/files.js:825
msgid "{count} files"
msgstr "{count} soubory"
@@ -194,27 +214,27 @@ msgstr "Zacházení se soubory"
msgid "Maximum upload size"
msgstr "Maximální velikost pro odesílání"
-#: templates/admin.php:9
+#: templates/admin.php:10
msgid "max. possible: "
msgstr "největší možná: "
-#: templates/admin.php:12
+#: templates/admin.php:15
msgid "Needed for multi-file and folder downloads."
msgstr "Potřebné pro více-souborové stahování a stahování složek."
-#: templates/admin.php:14
+#: templates/admin.php:17
msgid "Enable ZIP-download"
msgstr "Povolit ZIP-stahování"
-#: templates/admin.php:17
+#: templates/admin.php:20
msgid "0 is unlimited"
msgstr "0 znamená bez omezení"
-#: templates/admin.php:19
+#: templates/admin.php:22
msgid "Maximum input size for ZIP files"
msgstr "Maximální velikost vstupu pro ZIP soubory"
-#: templates/admin.php:23
+#: templates/admin.php:26
msgid "Save"
msgstr "Uložit"
@@ -242,28 +262,28 @@ msgstr "Odeslat"
msgid "Cancel upload"
msgstr "Zrušit odesílání"
-#: templates/index.php:57
+#: templates/index.php:58
msgid "Nothing in here. Upload something!"
msgstr "Žádný obsah. Nahrajte něco."
-#: templates/index.php:71
+#: templates/index.php:72
msgid "Download"
msgstr "Stáhnout"
-#: templates/index.php:103
+#: templates/index.php:104
msgid "Upload too large"
msgstr "Odeslaný soubor je příliš velký"
-#: templates/index.php:105
+#: templates/index.php:106
msgid ""
"The files you are trying to upload exceed the maximum size for file uploads "
"on this server."
msgstr "Soubory, které se snažíte odeslat, překračují limit velikosti odesílání na tomto serveru."
-#: templates/index.php:110
+#: templates/index.php:111
msgid "Files are being scanned, please wait."
msgstr "Soubory se prohledávají, prosím čekejte."
-#: templates/index.php:113
+#: templates/index.php:114
msgid "Current scanning"
msgstr "Aktuální prohledávání"
diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po
index 153ae93c6e..2fd34e0421 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-12-21 00:10+0100\n"
-"PO-Revision-Date: 2012-12-20 19:53+0000\n"
+"POT-Creation-Date: 2012-12-31 00:04+0100\n"
+"PO-Revision-Date: 2012-12-30 20:08+0000\n"
"Last-Translator: Tomáš Chvátal \n"
"Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n"
"MIME-Version: 1.0\n"
@@ -166,7 +166,7 @@ msgstr "Stáhnout klienta pro android"
msgid "Download iOS Client"
msgstr "Stáhnout klienta pro iOS"
-#: templates/personal.php:21 templates/users.php:23 templates/users.php:77
+#: templates/personal.php:21 templates/users.php:23 templates/users.php:82
msgid "Password"
msgstr "Heslo"
@@ -236,11 +236,11 @@ msgid ""
"License\">AGPL."
msgstr "Vyvinuto komunitou ownCloud , zdrojový kód je licencován pod AGPL ."
-#: templates/users.php:21 templates/users.php:76
+#: templates/users.php:21 templates/users.php:81
msgid "Name"
msgstr "Jméno"
-#: templates/users.php:26 templates/users.php:78 templates/users.php:98
+#: templates/users.php:26 templates/users.php:83 templates/users.php:103
msgid "Groups"
msgstr "Skupiny"
@@ -249,21 +249,29 @@ msgid "Create"
msgstr "Vytvořit"
#: templates/users.php:35
-msgid "Default Quota"
-msgstr "Výchozí kvóta"
+msgid "Default Storage"
+msgstr "Výchozí úložiště"
-#: templates/users.php:55 templates/users.php:138
+#: templates/users.php:42 templates/users.php:138
+msgid "Unlimited"
+msgstr "Neomezeně"
+
+#: templates/users.php:60 templates/users.php:153
msgid "Other"
msgstr "Jiná"
-#: templates/users.php:80 templates/users.php:112
+#: templates/users.php:85 templates/users.php:117
msgid "Group Admin"
msgstr "Správa skupiny"
-#: templates/users.php:82
-msgid "Quota"
-msgstr "Kvóta"
+#: templates/users.php:87
+msgid "Storage"
+msgstr "Úložiště"
-#: templates/users.php:146
+#: templates/users.php:133
+msgid "Default"
+msgstr "Výchozí"
+
+#: templates/users.php:161
msgid "Delete"
msgstr "Smazat"
diff --git a/l10n/da/core.po b/l10n/da/core.po
index 6fa4625012..f62c370f05 100644
--- a/l10n/da/core.po
+++ b/l10n/da/core.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-12-24 00:10+0100\n"
-"PO-Revision-Date: 2012-12-23 21:57+0000\n"
-"Last-Translator: cronner \n"
+"POT-Creation-Date: 2013-01-07 00:04+0100\n"
+"PO-Revision-Date: 2013-01-06 23:04+0000\n"
+"Last-Translator: I Robot \n"
"Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -572,6 +572,11 @@ msgstr "forrige"
msgid "next"
msgstr "næste"
+#: templates/update.php:3
+#, php-format
+msgid "Updating ownCloud to version %s, this may take a while."
+msgstr ""
+
#: templates/verify.php:5
msgid "Security Warning!"
msgstr "Sikkerhedsadvarsel!"
diff --git a/l10n/da/files.po b/l10n/da/files.po
index 185ea7031e..4e1159fc94 100644
--- a/l10n/da/files.po
+++ b/l10n/da/files.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-12-24 00:10+0100\n"
-"PO-Revision-Date: 2012-12-23 21:45+0000\n"
-"Last-Translator: cronner \n"
+"POT-Creation-Date: 2013-01-07 00:04+0100\n"
+"PO-Revision-Date: 2013-01-06 23:05+0000\n"
+"Last-Translator: I Robot \n"
"Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -25,37 +25,49 @@ msgstr ""
"Language: da\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: ajax/upload.php:20
+#: ajax/upload.php:14
+msgid "No file was uploaded. Unknown error"
+msgstr "Ingen fil blev uploadet. Ukendt fejl."
+
+#: ajax/upload.php:21
msgid "There is no error, the file uploaded with success"
msgstr "Der er ingen fejl, filen blev uploadet med success"
-#: ajax/upload.php:21
+#: ajax/upload.php:22
msgid ""
"The uploaded file exceeds the upload_max_filesize directive in php.ini: "
msgstr "Den uploadede fil overstiger upload_max_filesize direktivet i php.ini"
-#: ajax/upload.php:23
+#: ajax/upload.php:24
msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form"
msgstr "Den uploadede fil overskrider MAX_FILE_SIZE -direktivet som er specificeret i HTML-formularen"
-#: ajax/upload.php:25
+#: ajax/upload.php:26
msgid "The uploaded file was only partially uploaded"
msgstr "Den uploadede file blev kun delvist uploadet"
-#: ajax/upload.php:26
+#: ajax/upload.php:27
msgid "No file was uploaded"
msgstr "Ingen fil blev uploadet"
-#: ajax/upload.php:27
+#: ajax/upload.php:28
msgid "Missing a temporary folder"
msgstr "Mangler en midlertidig mappe"
-#: ajax/upload.php:28
+#: ajax/upload.php:29
msgid "Failed to write to disk"
msgstr "Fejl ved skrivning til disk."
+#: ajax/upload.php:45
+msgid "Not enough space available"
+msgstr ""
+
+#: ajax/upload.php:69
+msgid "Invalid directory."
+msgstr ""
+
#: appinfo/app.php:10
msgid "Files"
msgstr "Filer"
@@ -108,86 +120,94 @@ msgstr "ikke delte {files}"
msgid "deleted {files}"
msgstr "slettede {files}"
-#: js/files.js:33
+#: js/files.js:31
+msgid "'.' is an invalid file name."
+msgstr ""
+
+#: js/files.js:36
+msgid "File name cannot be empty."
+msgstr ""
+
+#: js/files.js:45
msgid ""
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not "
"allowed."
msgstr "Ugyldigt navn, '\\', '/', '<', '>', ':' | '?', '\"', '', og '*' er ikke tilladt."
-#: js/files.js:174
+#: js/files.js:186
msgid "generating ZIP-file, it may take some time."
msgstr "genererer ZIP-fil, det kan tage lidt tid."
-#: js/files.js:212
+#: js/files.js:224
msgid "Unable to upload your file as it is a directory or has 0 bytes"
msgstr "Kunne ikke uploade din fil, da det enten er en mappe eller er tom"
-#: js/files.js:212
+#: js/files.js:224
msgid "Upload Error"
msgstr "Fejl ved upload"
-#: js/files.js:229
+#: js/files.js:241
msgid "Close"
msgstr "Luk"
-#: js/files.js:248 js/files.js:362 js/files.js:392
+#: js/files.js:260 js/files.js:374 js/files.js:404
msgid "Pending"
msgstr "Afventer"
-#: js/files.js:268
+#: js/files.js:280
msgid "1 file uploading"
msgstr "1 fil uploades"
-#: js/files.js:271 js/files.js:325 js/files.js:340
+#: js/files.js:283 js/files.js:337 js/files.js:352
msgid "{count} files uploading"
msgstr "{count} filer uploades"
-#: js/files.js:343 js/files.js:376
+#: js/files.js:355 js/files.js:388
msgid "Upload cancelled."
msgstr "Upload afbrudt."
-#: js/files.js:445
+#: js/files.js:457
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr "Fil upload kører. Hvis du forlader siden nu, vil uploadet blive annuleret."
-#: js/files.js:515
+#: js/files.js:527
msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud"
msgstr "Ugyldigt mappenavn. Brug af \"Shared\" er forbeholdt Owncloud"
-#: js/files.js:699
+#: js/files.js:711
msgid "{count} files scanned"
msgstr "{count} filer skannet"
-#: js/files.js:707
+#: js/files.js:719
msgid "error while scanning"
msgstr "fejl under scanning"
-#: js/files.js:780 templates/index.php:66
+#: js/files.js:792 templates/index.php:66
msgid "Name"
msgstr "Navn"
-#: js/files.js:781 templates/index.php:77
+#: js/files.js:793 templates/index.php:77
msgid "Size"
msgstr "Størrelse"
-#: js/files.js:782 templates/index.php:79
+#: js/files.js:794 templates/index.php:79
msgid "Modified"
msgstr "Ændret"
-#: js/files.js:801
+#: js/files.js:813
msgid "1 folder"
msgstr "1 mappe"
-#: js/files.js:803
+#: js/files.js:815
msgid "{count} folders"
msgstr "{count} mapper"
-#: js/files.js:811
+#: js/files.js:823
msgid "1 file"
msgstr "1 fil"
-#: js/files.js:813
+#: js/files.js:825
msgid "{count} files"
msgstr "{count} filer"
@@ -199,27 +219,27 @@ msgstr "Filhåndtering"
msgid "Maximum upload size"
msgstr "Maksimal upload-størrelse"
-#: templates/admin.php:9
+#: templates/admin.php:10
msgid "max. possible: "
msgstr "max. mulige: "
-#: templates/admin.php:12
+#: templates/admin.php:15
msgid "Needed for multi-file and folder downloads."
msgstr "Nødvendigt for at kunne downloade mapper og flere filer ad gangen."
-#: templates/admin.php:14
+#: templates/admin.php:17
msgid "Enable ZIP-download"
msgstr "Muliggør ZIP-download"
-#: templates/admin.php:17
+#: templates/admin.php:20
msgid "0 is unlimited"
msgstr "0 er ubegrænset"
-#: templates/admin.php:19
+#: templates/admin.php:22
msgid "Maximum input size for ZIP files"
msgstr "Maksimal størrelse på ZIP filer"
-#: templates/admin.php:23
+#: templates/admin.php:26
msgid "Save"
msgstr "Gem"
diff --git a/l10n/da/settings.po b/l10n/da/settings.po
index 10983e3830..3c2c03dfda 100644
--- a/l10n/da/settings.po
+++ b/l10n/da/settings.po
@@ -3,22 +3,23 @@
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
+# , 2012.
# , 2012.
# , 2011.
# Morten Juhl-Johansen Zölde-Fejér , 2011-2012.
# Ole Holm Frandsen , 2012.
# Pascal d'Hermilly , 2011.
# , 2012.
-# , 2012.
+# , 2012-2013.
# Thomas Tanghus <>, 2012.
# Thomas Tanghus , 2012.
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-12-21 00:10+0100\n"
-"PO-Revision-Date: 2012-12-19 23:20+0000\n"
-"Last-Translator: I Robot \n"
+"POT-Creation-Date: 2013-01-03 00:04+0100\n"
+"PO-Revision-Date: 2013-01-02 21:06+0000\n"
+"Last-Translator: ressel \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"
@@ -76,7 +77,7 @@ msgstr "Sprog ændret"
#: ajax/togglegroups.php:12
msgid "Admins can't remove themself from the admin group"
-msgstr ""
+msgstr "Administratorer kan ikke fjerne dem selv fra admin gruppen"
#: ajax/togglegroups.php:28
#, php-format
@@ -126,32 +127,32 @@ msgstr " -licenseret af %s of the available %s "
-msgstr ""
+msgstr "Du har brugt %s af den tilgængelige %s "
#: templates/personal.php:12
msgid "Clients"
@@ -159,17 +160,17 @@ msgstr "Klienter"
#: templates/personal.php:13
msgid "Download Desktop Clients"
-msgstr ""
+msgstr "Hent Desktop Klienter"
#: templates/personal.php:14
msgid "Download Android Client"
-msgstr ""
+msgstr "Hent Android Klient"
#: templates/personal.php:15
msgid "Download iOS Client"
-msgstr ""
+msgstr "Hent iOS Klient"
-#: templates/personal.php:21 templates/users.php:23 templates/users.php:77
+#: templates/personal.php:21 templates/users.php:23 templates/users.php:82
msgid "Password"
msgstr "Kodeord"
@@ -219,15 +220,15 @@ msgstr "Hjælp med oversættelsen"
#: templates/personal.php:52
msgid "WebDAV"
-msgstr ""
+msgstr "WebDAV"
#: templates/personal.php:54
msgid "Use this address to connect to your ownCloud in your file manager"
-msgstr ""
+msgstr "Brug denne adresse til at oprette forbindelse til din ownCloud i din filstyring"
#: templates/personal.php:63
msgid "Version"
-msgstr ""
+msgstr "Version"
#: templates/personal.php:65
msgid ""
@@ -239,11 +240,11 @@ msgid ""
"License\">AGPL."
msgstr "Udviklet af ownClouds community , og kildekoden er underlagt licensen AGPL ."
-#: templates/users.php:21 templates/users.php:76
+#: templates/users.php:21 templates/users.php:81
msgid "Name"
msgstr "Navn"
-#: templates/users.php:26 templates/users.php:78 templates/users.php:98
+#: templates/users.php:26 templates/users.php:83 templates/users.php:103
msgid "Groups"
msgstr "Grupper"
@@ -252,21 +253,29 @@ msgid "Create"
msgstr "Ny"
#: templates/users.php:35
-msgid "Default Quota"
-msgstr "Standard kvote"
+msgid "Default Storage"
+msgstr "Standard opbevaring"
-#: templates/users.php:55 templates/users.php:138
+#: templates/users.php:42 templates/users.php:138
+msgid "Unlimited"
+msgstr "Ubegrænset"
+
+#: templates/users.php:60 templates/users.php:153
msgid "Other"
msgstr "Andet"
-#: templates/users.php:80 templates/users.php:112
+#: templates/users.php:85 templates/users.php:117
msgid "Group Admin"
msgstr "Gruppe Administrator"
-#: templates/users.php:82
-msgid "Quota"
-msgstr "Kvote"
+#: templates/users.php:87
+msgid "Storage"
+msgstr "Opbevaring"
-#: templates/users.php:146
+#: templates/users.php:133
+msgid "Default"
+msgstr "Standard"
+
+#: templates/users.php:161
msgid "Delete"
msgstr "Slet"
diff --git a/l10n/da/user_ldap.po b/l10n/da/user_ldap.po
index 00ec233a6e..0aab1f4051 100644
--- a/l10n/da/user_ldap.po
+++ b/l10n/da/user_ldap.po
@@ -3,6 +3,8 @@
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
+# , 2012.
+# , 2012.
# Frederik Lassen , 2012.
# Morten Juhl-Johansen Zölde-Fejér , 2012.
# , 2012.
@@ -10,9 +12,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-12-15 00:11+0100\n"
-"PO-Revision-Date: 2012-12-14 23:11+0000\n"
-"Last-Translator: I Robot \n"
+"POT-Creation-Date: 2012-12-26 00:10+0100\n"
+"PO-Revision-Date: 2012-12-25 19:52+0000\n"
+"Last-Translator: Daraiko \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"
@@ -48,7 +50,7 @@ msgstr "Base DN"
#: templates/settings.php:16
msgid "You can specify Base DN for users and groups in the Advanced tab"
-msgstr ""
+msgstr "You can specify Base DN for users and groups in the Advanced tab"
#: templates/settings.php:17
msgid "User DN"
@@ -67,11 +69,11 @@ msgstr "Kodeord"
#: templates/settings.php:18
msgid "For anonymous access, leave DN and Password empty."
-msgstr ""
+msgstr "For anonym adgang, skal du lade DN og Adgangskode tomme."
#: templates/settings.php:19
msgid "User Login Filter"
-msgstr ""
+msgstr "Bruger Login Filter"
#: templates/settings.php:19
#, php-format
@@ -87,11 +89,11 @@ msgstr ""
#: templates/settings.php:20
msgid "User List Filter"
-msgstr ""
+msgstr "Brugerliste Filter"
#: templates/settings.php:20
msgid "Defines the filter to apply, when retrieving users."
-msgstr ""
+msgstr "Definere filteret der bruges ved indlæsning af brugere."
#: templates/settings.php:20
msgid "without any placeholder, e.g. \"objectClass=person\"."
@@ -99,11 +101,11 @@ msgstr ""
#: templates/settings.php:21
msgid "Group Filter"
-msgstr ""
+msgstr "Gruppe Filter"
#: templates/settings.php:21
msgid "Defines the filter to apply, when retrieving groups."
-msgstr ""
+msgstr "Definere filteret der bruges når der indlæses grupper."
#: templates/settings.php:21
msgid "without any placeholder, e.g. \"objectClass=posixGroup\"."
@@ -115,15 +117,15 @@ msgstr "Port"
#: templates/settings.php:25
msgid "Base User Tree"
-msgstr ""
+msgstr "Base Bruger Træ"
#: templates/settings.php:26
msgid "Base Group Tree"
-msgstr ""
+msgstr "Base Group Tree"
#: templates/settings.php:27
msgid "Group-Member association"
-msgstr ""
+msgstr "Group-Member association"
#: templates/settings.php:28
msgid "Use TLS"
@@ -131,7 +133,7 @@ msgstr "Brug TLS"
#: templates/settings.php:28
msgid "Do not use it for SSL connections, it will fail."
-msgstr ""
+msgstr "Brug ikke til SSL forbindelser, da den vil fejle."
#: templates/settings.php:29
msgid "Case insensitve LDAP server (Windows)"
@@ -139,7 +141,7 @@ msgstr ""
#: templates/settings.php:30
msgid "Turn off SSL certificate validation."
-msgstr ""
+msgstr "Deaktiver SSL certifikat validering"
#: templates/settings.php:30
msgid ""
@@ -153,7 +155,7 @@ msgstr "Anbefales ikke, brug kun for at teste."
#: templates/settings.php:31
msgid "User Display Name Field"
-msgstr ""
+msgstr "User Display Name Field"
#: templates/settings.php:31
msgid "The LDAP attribute to use to generate the user`s ownCloud name."
@@ -169,7 +171,7 @@ msgstr ""
#: templates/settings.php:34
msgid "in bytes"
-msgstr ""
+msgstr "i bytes"
#: templates/settings.php:36
msgid "in seconds. A change empties the cache."
diff --git a/l10n/de/core.po b/l10n/de/core.po
index 861465cce9..d4b5f08b8f 100644
--- a/l10n/de/core.po
+++ b/l10n/de/core.po
@@ -23,9 +23,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-12-23 00:09+0100\n"
-"PO-Revision-Date: 2012-12-22 13:50+0000\n"
-"Last-Translator: Mirodin \n"
+"POT-Creation-Date: 2013-01-07 00:04+0100\n"
+"PO-Revision-Date: 2013-01-06 23:04+0000\n"
+"Last-Translator: I Robot \n"
"Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -580,6 +580,11 @@ msgstr "Zurück"
msgid "next"
msgstr "Weiter"
+#: templates/update.php:3
+#, php-format
+msgid "Updating ownCloud to version %s, this may take a while."
+msgstr ""
+
#: templates/verify.php:5
msgid "Security Warning!"
msgstr "Sicherheitswarnung!"
diff --git a/l10n/de/files.po b/l10n/de/files.po
index 7dc41332e0..c2ef3a1360 100644
--- a/l10n/de/files.po
+++ b/l10n/de/files.po
@@ -20,13 +20,14 @@
# , 2012.
# Thomas Müller <>, 2012.
# , 2012.
+# , 2013.
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-12-12 00:12+0100\n"
-"PO-Revision-Date: 2012-12-11 09:27+0000\n"
-"Last-Translator: Mirodin \n"
+"POT-Creation-Date: 2013-01-07 00:04+0100\n"
+"PO-Revision-Date: 2013-01-06 23:05+0000\n"
+"Last-Translator: I Robot \n"
"Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -34,37 +35,49 @@ msgstr ""
"Language: de\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: ajax/upload.php:20
+#: ajax/upload.php:14
+msgid "No file was uploaded. Unknown error"
+msgstr "Keine Datei hochgeladen. Unbekannter Fehler"
+
+#: ajax/upload.php:21
msgid "There is no error, the file uploaded with success"
msgstr "Datei fehlerfrei hochgeladen."
-#: ajax/upload.php:21
+#: ajax/upload.php:22
msgid ""
"The uploaded file exceeds the upload_max_filesize directive in php.ini: "
msgstr "Die hochgeladene Datei überschreitet die upload_max_filesize Vorgabe in php.ini"
-#: ajax/upload.php:23
+#: ajax/upload.php:24
msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form"
msgstr "Die Größe der hochzuladenden Datei überschreitet die MAX_FILE_SIZE-Richtlinie, die im HTML-Formular angegeben wurde"
-#: ajax/upload.php:25
+#: ajax/upload.php:26
msgid "The uploaded file was only partially uploaded"
msgstr "Die Datei wurde nur teilweise hochgeladen."
-#: ajax/upload.php:26
+#: ajax/upload.php:27
msgid "No file was uploaded"
msgstr "Es wurde keine Datei hochgeladen."
-#: ajax/upload.php:27
+#: ajax/upload.php:28
msgid "Missing a temporary folder"
msgstr "Temporärer Ordner fehlt."
-#: ajax/upload.php:28
+#: ajax/upload.php:29
msgid "Failed to write to disk"
msgstr "Fehler beim Schreiben auf die Festplatte"
+#: ajax/upload.php:45
+msgid "Not enough space available"
+msgstr "Nicht genug Speicherplatz verfügbar"
+
+#: ajax/upload.php:69
+msgid "Invalid directory."
+msgstr "Ungültiges Verzeichnis."
+
#: appinfo/app.php:10
msgid "Files"
msgstr "Dateien"
@@ -117,86 +130,94 @@ msgstr "Freigabe von {files} aufgehoben"
msgid "deleted {files}"
msgstr "{files} gelöscht"
-#: js/files.js:33
+#: js/files.js:31
+msgid "'.' is an invalid file name."
+msgstr ""
+
+#: js/files.js:36
+msgid "File name cannot be empty."
+msgstr ""
+
+#: js/files.js:45
msgid ""
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not "
"allowed."
msgstr "Ungültiger Name, '\\', '/', '<', '>', ':', '\"', '|', '?' und '*' sind nicht zulässig."
-#: js/files.js:174
+#: js/files.js:186
msgid "generating ZIP-file, it may take some time."
msgstr "Erstelle ZIP-Datei. Dies kann eine Weile dauern."
-#: js/files.js:209
+#: js/files.js:224
msgid "Unable to upload your file as it is a directory or has 0 bytes"
msgstr "Deine Datei kann nicht hochgeladen werden, da sie entweder ein Verzeichnis oder 0 Bytes groß ist."
-#: js/files.js:209
+#: js/files.js:224
msgid "Upload Error"
msgstr "Fehler beim Upload"
-#: js/files.js:226
+#: js/files.js:241
msgid "Close"
msgstr "Schließen"
-#: js/files.js:245 js/files.js:359 js/files.js:389
+#: js/files.js:260 js/files.js:374 js/files.js:404
msgid "Pending"
msgstr "Ausstehend"
-#: js/files.js:265
+#: js/files.js:280
msgid "1 file uploading"
msgstr "Eine Datei wird hoch geladen"
-#: js/files.js:268 js/files.js:322 js/files.js:337
+#: js/files.js:283 js/files.js:337 js/files.js:352
msgid "{count} files uploading"
msgstr "{count} Dateien werden hochgeladen"
-#: js/files.js:340 js/files.js:373
+#: js/files.js:355 js/files.js:388
msgid "Upload cancelled."
msgstr "Upload abgebrochen."
-#: js/files.js:442
+#: js/files.js:457
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr "Dateiupload läuft. Wenn Du die Seite jetzt verlässt, wird der Upload abgebrochen."
-#: js/files.js:512
+#: js/files.js:527
msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud"
msgstr "Ungültiger Ordnername. Die Verwendung von \"Shared\" ist ownCloud vorbehalten."
-#: js/files.js:693
+#: js/files.js:711
msgid "{count} files scanned"
msgstr "{count} Dateien wurden gescannt"
-#: js/files.js:701
+#: js/files.js:719
msgid "error while scanning"
msgstr "Fehler beim Scannen"
-#: js/files.js:774 templates/index.php:66
+#: js/files.js:792 templates/index.php:66
msgid "Name"
msgstr "Name"
-#: js/files.js:775 templates/index.php:77
+#: js/files.js:793 templates/index.php:77
msgid "Size"
msgstr "Größe"
-#: js/files.js:776 templates/index.php:79
+#: js/files.js:794 templates/index.php:79
msgid "Modified"
msgstr "Bearbeitet"
-#: js/files.js:803
+#: js/files.js:813
msgid "1 folder"
msgstr "1 Ordner"
-#: js/files.js:805
+#: js/files.js:815
msgid "{count} folders"
msgstr "{count} Ordner"
-#: js/files.js:813
+#: js/files.js:823
msgid "1 file"
msgstr "1 Datei"
-#: js/files.js:815
+#: js/files.js:825
msgid "{count} files"
msgstr "{count} Dateien"
@@ -208,27 +229,27 @@ msgstr "Dateibehandlung"
msgid "Maximum upload size"
msgstr "Maximale Upload-Größe"
-#: templates/admin.php:9
+#: templates/admin.php:10
msgid "max. possible: "
msgstr "maximal möglich:"
-#: templates/admin.php:12
+#: templates/admin.php:15
msgid "Needed for multi-file and folder downloads."
msgstr "Für Mehrfachdatei- und Ordnerdownloads benötigt:"
-#: templates/admin.php:14
+#: templates/admin.php:17
msgid "Enable ZIP-download"
msgstr "ZIP-Download aktivieren"
-#: templates/admin.php:17
+#: templates/admin.php:20
msgid "0 is unlimited"
msgstr "0 bedeutet unbegrenzt"
-#: templates/admin.php:19
+#: templates/admin.php:22
msgid "Maximum input size for ZIP files"
msgstr "Maximale Größe für ZIP-Dateien"
-#: templates/admin.php:23
+#: templates/admin.php:26
msgid "Save"
msgstr "Speichern"
diff --git a/l10n/de/settings.po b/l10n/de/settings.po
index 019a9c65ce..129f939351 100644
--- a/l10n/de/settings.po
+++ b/l10n/de/settings.po
@@ -24,9 +24,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-12-23 00:09+0100\n"
-"PO-Revision-Date: 2012-12-22 14:02+0000\n"
-"Last-Translator: Mirodin \n"
+"POT-Creation-Date: 2012-12-31 00:04+0100\n"
+"PO-Revision-Date: 2012-12-30 00:15+0000\n"
+"Last-Translator: I Robot \n"
"Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -177,7 +177,7 @@ msgstr "Android-Client herunterladen"
msgid "Download iOS Client"
msgstr "iOS-Client herunterladen"
-#: templates/personal.php:21 templates/users.php:23 templates/users.php:77
+#: templates/personal.php:21 templates/users.php:23 templates/users.php:82
msgid "Password"
msgstr "Passwort"
@@ -247,11 +247,11 @@ msgid ""
"License\">AGPL."
msgstr "Entwickelt von der ownCloud-Community , der Quellcode ist unter der AGPL lizenziert."
-#: templates/users.php:21 templates/users.php:76
+#: templates/users.php:21 templates/users.php:81
msgid "Name"
msgstr "Name"
-#: templates/users.php:26 templates/users.php:78 templates/users.php:98
+#: templates/users.php:26 templates/users.php:83 templates/users.php:103
msgid "Groups"
msgstr "Gruppen"
@@ -260,21 +260,29 @@ msgid "Create"
msgstr "Anlegen"
#: templates/users.php:35
-msgid "Default Quota"
-msgstr "Standard-Quota"
+msgid "Default Storage"
+msgstr "Standard-Speicher"
-#: templates/users.php:55 templates/users.php:138
+#: templates/users.php:42 templates/users.php:138
+msgid "Unlimited"
+msgstr "Unbegrenzt"
+
+#: templates/users.php:60 templates/users.php:153
msgid "Other"
msgstr "Andere"
-#: templates/users.php:80 templates/users.php:112
+#: templates/users.php:85 templates/users.php:117
msgid "Group Admin"
msgstr "Gruppenadministrator"
-#: templates/users.php:82
-msgid "Quota"
-msgstr "Quota"
+#: templates/users.php:87
+msgid "Storage"
+msgstr "Speicher"
-#: templates/users.php:146
+#: templates/users.php:133
+msgid "Default"
+msgstr "Standard"
+
+#: templates/users.php:161
msgid "Delete"
msgstr "Löschen"
diff --git a/l10n/de_DE/core.po b/l10n/de_DE/core.po
index 116cf3006c..9ae1355f88 100644
--- a/l10n/de_DE/core.po
+++ b/l10n/de_DE/core.po
@@ -22,9 +22,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-12-23 00:09+0100\n"
-"PO-Revision-Date: 2012-12-22 13:52+0000\n"
-"Last-Translator: Mirodin \n"
+"POT-Creation-Date: 2013-01-07 00:04+0100\n"
+"PO-Revision-Date: 2013-01-06 23:05+0000\n"
+"Last-Translator: I Robot \n"
"Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -579,6 +579,11 @@ msgstr "Zurück"
msgid "next"
msgstr "Weiter"
+#: templates/update.php:3
+#, php-format
+msgid "Updating ownCloud to version %s, this may take a while."
+msgstr ""
+
#: templates/verify.php:5
msgid "Security Warning!"
msgstr "Sicherheitshinweis!"
diff --git a/l10n/de_DE/files.po b/l10n/de_DE/files.po
index 035e733deb..2712cb099b 100644
--- a/l10n/de_DE/files.po
+++ b/l10n/de_DE/files.po
@@ -4,7 +4,7 @@
#
# Translators:
# , 2012.
-# , 2012.
+# , 2012-2013.
# , 2012.
# I Robot , 2012.
# I Robot , 2012.
@@ -25,9 +25,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-12-12 00:12+0100\n"
-"PO-Revision-Date: 2012-12-11 09:27+0000\n"
-"Last-Translator: Mirodin \n"
+"POT-Creation-Date: 2013-01-07 00:04+0100\n"
+"PO-Revision-Date: 2013-01-06 23:05+0000\n"
+"Last-Translator: I Robot \n"
"Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -35,37 +35,49 @@ msgstr ""
"Language: de_DE\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: ajax/upload.php:20
+#: ajax/upload.php:14
+msgid "No file was uploaded. Unknown error"
+msgstr "Keine Datei hochgeladen. Unbekannter Fehler"
+
+#: ajax/upload.php:21
msgid "There is no error, the file uploaded with success"
msgstr "Es sind keine Fehler aufgetreten. Die Datei wurde erfolgreich hochgeladen."
-#: ajax/upload.php:21
+#: ajax/upload.php:22
msgid ""
"The uploaded file exceeds the upload_max_filesize directive in php.ini: "
msgstr "Die hochgeladene Datei überschreitet die upload_max_filesize Vorgabe in php.ini"
-#: ajax/upload.php:23
+#: ajax/upload.php:24
msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form"
msgstr "Die Größe der hochzuladenden Datei überschreitet die MAX_FILE_SIZE-Richtlinie, die im HTML-Formular angegeben wurde"
-#: ajax/upload.php:25
+#: ajax/upload.php:26
msgid "The uploaded file was only partially uploaded"
msgstr "Die Datei wurde nur teilweise hochgeladen."
-#: ajax/upload.php:26
+#: ajax/upload.php:27
msgid "No file was uploaded"
msgstr "Es wurde keine Datei hochgeladen."
-#: ajax/upload.php:27
+#: ajax/upload.php:28
msgid "Missing a temporary folder"
msgstr "Der temporäre Ordner fehlt."
-#: ajax/upload.php:28
+#: ajax/upload.php:29
msgid "Failed to write to disk"
msgstr "Fehler beim Schreiben auf die Festplatte"
+#: ajax/upload.php:45
+msgid "Not enough space available"
+msgstr "Nicht genug Speicher verfügbar"
+
+#: ajax/upload.php:69
+msgid "Invalid directory."
+msgstr "Ungültiges Verzeichnis."
+
#: appinfo/app.php:10
msgid "Files"
msgstr "Dateien"
@@ -118,86 +130,94 @@ msgstr "Freigabe für {files} beendet"
msgid "deleted {files}"
msgstr "{files} gelöscht"
-#: js/files.js:33
+#: js/files.js:31
+msgid "'.' is an invalid file name."
+msgstr ""
+
+#: js/files.js:36
+msgid "File name cannot be empty."
+msgstr ""
+
+#: js/files.js:45
msgid ""
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not "
"allowed."
msgstr "Ungültiger Name, '\\', '/', '<', '>', ':', '\"', '|', '?' und '*' sind nicht zulässig."
-#: js/files.js:174
+#: js/files.js:186
msgid "generating ZIP-file, it may take some time."
msgstr "Erstelle ZIP-Datei. Dies kann eine Weile dauern."
-#: js/files.js:209
+#: js/files.js:224
msgid "Unable to upload your file as it is a directory or has 0 bytes"
msgstr "Ihre Datei kann nicht hochgeladen werden, da sie entweder ein Verzeichnis oder 0 Bytes groß ist."
-#: js/files.js:209
+#: js/files.js:224
msgid "Upload Error"
msgstr "Fehler beim Upload"
-#: js/files.js:226
+#: js/files.js:241
msgid "Close"
msgstr "Schließen"
-#: js/files.js:245 js/files.js:359 js/files.js:389
+#: js/files.js:260 js/files.js:374 js/files.js:404
msgid "Pending"
msgstr "Ausstehend"
-#: js/files.js:265
+#: js/files.js:280
msgid "1 file uploading"
msgstr "1 Datei wird hochgeladen"
-#: js/files.js:268 js/files.js:322 js/files.js:337
+#: js/files.js:283 js/files.js:337 js/files.js:352
msgid "{count} files uploading"
msgstr "{count} Dateien wurden hochgeladen"
-#: js/files.js:340 js/files.js:373
+#: js/files.js:355 js/files.js:388
msgid "Upload cancelled."
msgstr "Upload abgebrochen."
-#: js/files.js:442
+#: js/files.js:457
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr "Der Dateiupload läuft. Wenn Sie die Seite jetzt verlassen, wird der Upload abgebrochen."
-#: js/files.js:512
+#: js/files.js:527
msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud"
msgstr "Ungültiger Ordnername. Die Verwendung von \"Shared\" ist ownCloud vorbehalten."
-#: js/files.js:693
+#: js/files.js:711
msgid "{count} files scanned"
msgstr "{count} Dateien wurden gescannt"
-#: js/files.js:701
+#: js/files.js:719
msgid "error while scanning"
msgstr "Fehler beim Scannen"
-#: js/files.js:774 templates/index.php:66
+#: js/files.js:792 templates/index.php:66
msgid "Name"
msgstr "Name"
-#: js/files.js:775 templates/index.php:77
+#: js/files.js:793 templates/index.php:77
msgid "Size"
msgstr "Größe"
-#: js/files.js:776 templates/index.php:79
+#: js/files.js:794 templates/index.php:79
msgid "Modified"
msgstr "Bearbeitet"
-#: js/files.js:803
+#: js/files.js:813
msgid "1 folder"
msgstr "1 Ordner"
-#: js/files.js:805
+#: js/files.js:815
msgid "{count} folders"
msgstr "{count} Ordner"
-#: js/files.js:813
+#: js/files.js:823
msgid "1 file"
msgstr "1 Datei"
-#: js/files.js:815
+#: js/files.js:825
msgid "{count} files"
msgstr "{count} Dateien"
@@ -209,27 +229,27 @@ msgstr "Dateibehandlung"
msgid "Maximum upload size"
msgstr "Maximale Upload-Größe"
-#: templates/admin.php:9
+#: templates/admin.php:10
msgid "max. possible: "
msgstr "maximal möglich:"
-#: templates/admin.php:12
+#: templates/admin.php:15
msgid "Needed for multi-file and folder downloads."
msgstr "Für Mehrfachdatei- und Ordnerdownloads benötigt:"
-#: templates/admin.php:14
+#: templates/admin.php:17
msgid "Enable ZIP-download"
msgstr "ZIP-Download aktivieren"
-#: templates/admin.php:17
+#: templates/admin.php:20
msgid "0 is unlimited"
msgstr "0 bedeutet unbegrenzt"
-#: templates/admin.php:19
+#: templates/admin.php:22
msgid "Maximum input size for ZIP files"
msgstr "Maximale Größe für ZIP-Dateien"
-#: templates/admin.php:23
+#: templates/admin.php:26
msgid "Save"
msgstr "Speichern"
diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po
index d95b7bb40d..4886219fbc 100644
--- a/l10n/de_DE/settings.po
+++ b/l10n/de_DE/settings.po
@@ -24,9 +24,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-12-23 00:09+0100\n"
-"PO-Revision-Date: 2012-12-22 14:01+0000\n"
-"Last-Translator: Mirodin \n"
+"POT-Creation-Date: 2013-01-04 13:22+0100\n"
+"PO-Revision-Date: 2013-01-03 16:09+0000\n"
+"Last-Translator: a.tangemann \n"
"Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -177,7 +177,7 @@ msgstr "Android-Client herunterladen"
msgid "Download iOS Client"
msgstr "iOS-Client herunterladen"
-#: templates/personal.php:21 templates/users.php:23 templates/users.php:77
+#: templates/personal.php:21 templates/users.php:23 templates/users.php:82
msgid "Password"
msgstr "Passwort"
@@ -247,11 +247,11 @@ msgid ""
"License\">AGPL."
msgstr "Entwickelt von der ownCloud-Community . Der Quellcode ist unter der AGPL lizenziert."
-#: templates/users.php:21 templates/users.php:76
+#: templates/users.php:21 templates/users.php:81
msgid "Name"
msgstr "Name"
-#: templates/users.php:26 templates/users.php:78 templates/users.php:98
+#: templates/users.php:26 templates/users.php:83 templates/users.php:103
msgid "Groups"
msgstr "Gruppen"
@@ -260,21 +260,29 @@ msgid "Create"
msgstr "Anlegen"
#: templates/users.php:35
-msgid "Default Quota"
-msgstr "Standard-Quota"
+msgid "Default Storage"
+msgstr "Standard-Speicher"
-#: templates/users.php:55 templates/users.php:138
+#: templates/users.php:42 templates/users.php:138
+msgid "Unlimited"
+msgstr "Unbegrenzt"
+
+#: templates/users.php:60 templates/users.php:153
msgid "Other"
msgstr "Andere"
-#: templates/users.php:80 templates/users.php:112
+#: templates/users.php:85 templates/users.php:117
msgid "Group Admin"
msgstr "Gruppenadministrator"
-#: templates/users.php:82
-msgid "Quota"
-msgstr "Quota"
+#: templates/users.php:87
+msgid "Storage"
+msgstr "Speicher"
-#: templates/users.php:146
+#: templates/users.php:133
+msgid "Default"
+msgstr "Standard"
+
+#: templates/users.php:161
msgid "Delete"
msgstr "Löschen"
diff --git a/l10n/de_DE/user_webdavauth.po b/l10n/de_DE/user_webdavauth.po
index 9cb13ec43e..aabd937409 100644
--- a/l10n/de_DE/user_webdavauth.po
+++ b/l10n/de_DE/user_webdavauth.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-12-22 00:24+0100\n"
-"PO-Revision-Date: 2012-12-21 23:03+0000\n"
-"Last-Translator: multimill \n"
+"POT-Creation-Date: 2013-01-04 13:22+0100\n"
+"PO-Revision-Date: 2013-01-03 16:07+0000\n"
+"Last-Translator: a.tangemann \n"
"Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
diff --git a/l10n/el/core.po b/l10n/el/core.po
index 7a42857d69..71c93b2c81 100644
--- a/l10n/el/core.po
+++ b/l10n/el/core.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-12-22 00:24+0100\n"
-"PO-Revision-Date: 2012-12-21 13:25+0000\n"
-"Last-Translator: Efstathios Iosifidis \n"
+"POT-Creation-Date: 2013-01-07 00:04+0100\n"
+"PO-Revision-Date: 2013-01-06 23:04+0000\n"
+"Last-Translator: I Robot \n"
"Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -571,6 +571,11 @@ msgstr "προηγούμενο"
msgid "next"
msgstr "επόμενο"
+#: templates/update.php:3
+#, php-format
+msgid "Updating ownCloud to version %s, this may take a while."
+msgstr ""
+
#: templates/verify.php:5
msgid "Security Warning!"
msgstr "Προειδοποίηση Ασφαλείας!"
diff --git a/l10n/el/files.po b/l10n/el/files.po
index 85209f363a..6ea3d72711 100644
--- a/l10n/el/files.po
+++ b/l10n/el/files.po
@@ -6,6 +6,7 @@
# Dimitris M. , 2012.
# Efstathios Iosifidis , 2012.
# Efstathios Iosifidis , 2012.
+# Konstantinos Tzanidis , 2012.
# Marios Bekatoros <>, 2012.
# Petros Kyladitis , 2011-2012.
# Γιάννης Ανθυμίδης , 2012.
@@ -13,9 +14,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-12-03 00:04+0100\n"
-"PO-Revision-Date: 2012-12-02 11:20+0000\n"
-"Last-Translator: Efstathios Iosifidis \n"
+"POT-Creation-Date: 2013-01-07 00:04+0100\n"
+"PO-Revision-Date: 2013-01-06 23:05+0000\n"
+"Last-Translator: I Robot \n"
"Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -23,46 +24,58 @@ msgstr ""
"Language: el\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: ajax/upload.php:20
+#: ajax/upload.php:14
+msgid "No file was uploaded. Unknown error"
+msgstr "Δεν ανέβηκε κάποιο αρχείο. Άγνωστο σφάλμα"
+
+#: ajax/upload.php:21
msgid "There is no error, the file uploaded with success"
msgstr "Δεν υπάρχει σφάλμα, το αρχείο εστάλει επιτυχώς"
-#: ajax/upload.php:21
+#: ajax/upload.php:22
msgid ""
"The uploaded file exceeds the upload_max_filesize directive in php.ini: "
msgstr "Το απεσταλμένο αρχείο ξεπερνά την οδηγία upload_max_filesize στο php.ini:"
-#: ajax/upload.php:23
+#: ajax/upload.php:24
msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form"
msgstr "Το αρχείο υπερβαίνει την οδηγία μέγιστου επιτρεπτού μεγέθους \"MAX_FILE_SIZE\" που έχει οριστεί στην HTML φόρμα"
-#: ajax/upload.php:25
+#: ajax/upload.php:26
msgid "The uploaded file was only partially uploaded"
msgstr "Το αρχείο εστάλει μόνο εν μέρει"
-#: ajax/upload.php:26
+#: ajax/upload.php:27
msgid "No file was uploaded"
msgstr "Κανένα αρχείο δεν στάλθηκε"
-#: ajax/upload.php:27
+#: ajax/upload.php:28
msgid "Missing a temporary folder"
msgstr "Λείπει ο προσωρινός φάκελος"
-#: ajax/upload.php:28
+#: ajax/upload.php:29
msgid "Failed to write to disk"
msgstr "Αποτυχία εγγραφής στο δίσκο"
+#: ajax/upload.php:45
+msgid "Not enough space available"
+msgstr ""
+
+#: ajax/upload.php:69
+msgid "Invalid directory."
+msgstr ""
+
#: appinfo/app.php:10
msgid "Files"
msgstr "Αρχεία"
-#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84
+#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85
msgid "Unshare"
msgstr "Διακοπή κοινής χρήσης"
-#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90
+#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91
msgid "Delete"
msgstr "Διαγραφή"
@@ -70,122 +83,130 @@ msgstr "Διαγραφή"
msgid "Rename"
msgstr "Μετονομασία"
-#: js/filelist.js:201 js/filelist.js:203
+#: js/filelist.js:199 js/filelist.js:201
msgid "{new_name} already exists"
msgstr "{new_name} υπάρχει ήδη"
-#: js/filelist.js:201 js/filelist.js:203
+#: js/filelist.js:199 js/filelist.js:201
msgid "replace"
msgstr "αντικατέστησε"
-#: js/filelist.js:201
+#: js/filelist.js:199
msgid "suggest name"
msgstr "συνιστώμενο όνομα"
-#: js/filelist.js:201 js/filelist.js:203
+#: js/filelist.js:199 js/filelist.js:201
msgid "cancel"
msgstr "ακύρωση"
-#: js/filelist.js:250
+#: js/filelist.js:248
msgid "replaced {new_name}"
msgstr "{new_name} αντικαταστάθηκε"
-#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286
+#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284
msgid "undo"
msgstr "αναίρεση"
-#: js/filelist.js:252
+#: js/filelist.js:250
msgid "replaced {new_name} with {old_name}"
msgstr "αντικαταστάθηκε το {new_name} με {old_name}"
-#: js/filelist.js:284
+#: js/filelist.js:282
msgid "unshared {files}"
msgstr "μη διαμοιρασμένα {files}"
-#: js/filelist.js:286
+#: js/filelist.js:284
msgid "deleted {files}"
msgstr "διαγραμμένα {files}"
-#: js/files.js:33
+#: js/files.js:31
+msgid "'.' is an invalid file name."
+msgstr ""
+
+#: js/files.js:36
+msgid "File name cannot be empty."
+msgstr ""
+
+#: js/files.js:45
msgid ""
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not "
"allowed."
msgstr "Μη έγκυρο όνομα, '\\', '/', '<', '>', ':', '\"', '|', '?' και '*' δεν επιτρέπονται."
-#: js/files.js:183
+#: js/files.js:186
msgid "generating ZIP-file, it may take some time."
msgstr "παραγωγή αρχείου ZIP, ίσως διαρκέσει αρκετά."
-#: js/files.js:218
+#: js/files.js:224
msgid "Unable to upload your file as it is a directory or has 0 bytes"
msgstr "Αδυναμία στην αποστολή του αρχείου σας αφού είναι φάκελος ή έχει 0 bytes"
-#: js/files.js:218
+#: js/files.js:224
msgid "Upload Error"
msgstr "Σφάλμα Αποστολής"
-#: js/files.js:235
+#: js/files.js:241
msgid "Close"
msgstr "Κλείσιμο"
-#: js/files.js:254 js/files.js:368 js/files.js:398
+#: js/files.js:260 js/files.js:374 js/files.js:404
msgid "Pending"
msgstr "Εκκρεμεί"
-#: js/files.js:274
+#: js/files.js:280
msgid "1 file uploading"
msgstr "1 αρχείο ανεβαίνει"
-#: js/files.js:277 js/files.js:331 js/files.js:346
+#: js/files.js:283 js/files.js:337 js/files.js:352
msgid "{count} files uploading"
msgstr "{count} αρχεία ανεβαίνουν"
-#: js/files.js:349 js/files.js:382
+#: js/files.js:355 js/files.js:388
msgid "Upload cancelled."
msgstr "Η αποστολή ακυρώθηκε."
-#: js/files.js:451
+#: js/files.js:457
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
-msgstr "Η αποστολή του αρχείου βρίσκεται σε εξέλιξη. Έξοδος από την σελίδα τώρα θα ακυρώσει την αποστολή."
+msgstr "Η αποστολή του αρχείου βρίσκεται σε εξέλιξη. Το κλείσιμο της σελίδας θα ακυρώσει την αποστολή."
-#: js/files.js:523
+#: js/files.js:527
msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud"
msgstr "Μη έγκυρο όνομα φακέλου. Η χρήση του \"Shared\" είναι δεσμευμένη από το Owncloud"
-#: js/files.js:704
+#: js/files.js:711
msgid "{count} files scanned"
msgstr "{count} αρχεία ανιχνεύτηκαν"
-#: js/files.js:712
+#: js/files.js:719
msgid "error while scanning"
msgstr "σφάλμα κατά την ανίχνευση"
-#: js/files.js:785 templates/index.php:65
+#: js/files.js:792 templates/index.php:66
msgid "Name"
msgstr "Όνομα"
-#: js/files.js:786 templates/index.php:76
+#: js/files.js:793 templates/index.php:77
msgid "Size"
msgstr "Μέγεθος"
-#: js/files.js:787 templates/index.php:78
+#: js/files.js:794 templates/index.php:79
msgid "Modified"
msgstr "Τροποποιήθηκε"
-#: js/files.js:814
+#: js/files.js:813
msgid "1 folder"
msgstr "1 φάκελος"
-#: js/files.js:816
+#: js/files.js:815
msgid "{count} folders"
msgstr "{count} φάκελοι"
-#: js/files.js:824
+#: js/files.js:823
msgid "1 file"
msgstr "1 αρχείο"
-#: js/files.js:826
+#: js/files.js:825
msgid "{count} files"
msgstr "{count} αρχεία"
@@ -197,27 +218,27 @@ msgstr "Διαχείριση αρχείων"
msgid "Maximum upload size"
msgstr "Μέγιστο μέγεθος αποστολής"
-#: templates/admin.php:9
+#: templates/admin.php:10
msgid "max. possible: "
msgstr "μέγιστο δυνατό:"
-#: templates/admin.php:12
+#: templates/admin.php:15
msgid "Needed for multi-file and folder downloads."
msgstr "Απαραίτητο για κατέβασμα πολλαπλών αρχείων και φακέλων"
-#: templates/admin.php:14
+#: templates/admin.php:17
msgid "Enable ZIP-download"
msgstr "Ενεργοποίηση κατεβάσματος ZIP"
-#: templates/admin.php:17
+#: templates/admin.php:20
msgid "0 is unlimited"
msgstr "0 για απεριόριστο"
-#: templates/admin.php:19
+#: templates/admin.php:22
msgid "Maximum input size for ZIP files"
msgstr "Μέγιστο μέγεθος για αρχεία ZIP"
-#: templates/admin.php:23
+#: templates/admin.php:26
msgid "Save"
msgstr "Αποθήκευση"
@@ -245,28 +266,28 @@ msgstr "Αποστολή"
msgid "Cancel upload"
msgstr "Ακύρωση αποστολής"
-#: templates/index.php:57
+#: templates/index.php:58
msgid "Nothing in here. Upload something!"
msgstr "Δεν υπάρχει τίποτα εδώ. Ανέβασε κάτι!"
-#: templates/index.php:71
+#: templates/index.php:72
msgid "Download"
msgstr "Λήψη"
-#: templates/index.php:103
+#: templates/index.php:104
msgid "Upload too large"
msgstr "Πολύ μεγάλο αρχείο προς αποστολή"
-#: templates/index.php:105
+#: templates/index.php:106
msgid ""
"The files you are trying to upload exceed the maximum size for file uploads "
"on this server."
-msgstr "Τα αρχεία που προσπαθείτε να ανεβάσετε υπερβαίνουν το μέγιστο μέγεθος αποστολής αρχείων σε αυτόν το διακομιστή."
+msgstr "Τα αρχεία που προσπαθείτε να ανεβάσετε υπερβαίνουν το μέγιστο μέγεθος αποστολής αρχείων σε αυτόν τον διακομιστή."
-#: templates/index.php:110
+#: templates/index.php:111
msgid "Files are being scanned, please wait."
msgstr "Τα αρχεία σαρώνονται, παρακαλώ περιμένετε"
-#: templates/index.php:113
+#: templates/index.php:114
msgid "Current scanning"
msgstr "Τρέχουσα αναζήτηση "
diff --git a/l10n/el/settings.po b/l10n/el/settings.po
index 4b27d01976..83f4985217 100644
--- a/l10n/el/settings.po
+++ b/l10n/el/settings.po
@@ -18,9 +18,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-12-22 00:24+0100\n"
-"PO-Revision-Date: 2012-12-21 13:06+0000\n"
-"Last-Translator: Efstathios Iosifidis \n"
+"POT-Creation-Date: 2012-12-30 00:04+0100\n"
+"PO-Revision-Date: 2012-12-29 23:05+0000\n"
+"Last-Translator: I Robot \n"
"Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -171,7 +171,7 @@ msgstr "Λήψη Προγράμματος Android"
msgid "Download iOS Client"
msgstr "Λήψη Προγράμματος iOS"
-#: templates/personal.php:21 templates/users.php:23 templates/users.php:77
+#: templates/personal.php:21 templates/users.php:23 templates/users.php:82
msgid "Password"
msgstr "Συνθηματικό"
@@ -241,11 +241,11 @@ msgid ""
"License\">AGPL."
msgstr "Αναπτύχθηκε από την κοινότητα ownCloud , ο πηγαίος κώδικας είναι υπό άδεια χρήσης AGPL ."
-#: templates/users.php:21 templates/users.php:76
+#: templates/users.php:21 templates/users.php:81
msgid "Name"
msgstr "Όνομα"
-#: templates/users.php:26 templates/users.php:78 templates/users.php:98
+#: templates/users.php:26 templates/users.php:83 templates/users.php:103
msgid "Groups"
msgstr "Ομάδες"
@@ -254,21 +254,29 @@ msgid "Create"
msgstr "Δημιουργία"
#: templates/users.php:35
-msgid "Default Quota"
-msgstr "Προεπιλεγμένο Όριο"
+msgid "Default Storage"
+msgstr ""
-#: templates/users.php:55 templates/users.php:138
+#: templates/users.php:42 templates/users.php:138
+msgid "Unlimited"
+msgstr ""
+
+#: templates/users.php:60 templates/users.php:153
msgid "Other"
msgstr "Άλλα"
-#: templates/users.php:80 templates/users.php:112
+#: templates/users.php:85 templates/users.php:117
msgid "Group Admin"
msgstr "Ομάδα Διαχειριστών"
-#: templates/users.php:82
-msgid "Quota"
-msgstr "Σύνολο Χώρου"
+#: templates/users.php:87
+msgid "Storage"
+msgstr ""
-#: templates/users.php:146
+#: templates/users.php:133
+msgid "Default"
+msgstr ""
+
+#: templates/users.php:161
msgid "Delete"
msgstr "Διαγραφή"
diff --git a/l10n/el/user_ldap.po b/l10n/el/user_ldap.po
index cea052cafa..14b7e75c71 100644
--- a/l10n/el/user_ldap.po
+++ b/l10n/el/user_ldap.po
@@ -3,16 +3,18 @@
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
+# , 2012.
# Dimitris M. , 2012.
# Efstathios Iosifidis , 2012.
+# Konstantinos Tzanidis , 2012.
# Marios Bekatoros <>, 2012.
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-12-15 00:11+0100\n"
-"PO-Revision-Date: 2012-12-14 23:11+0000\n"
-"Last-Translator: I Robot \n"
+"POT-Creation-Date: 2012-12-28 00:20+0100\n"
+"PO-Revision-Date: 2012-12-27 14:12+0000\n"
+"Last-Translator: Konstantinos Tzanidis \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"
@@ -25,22 +27,22 @@ msgid ""
"Warning: Apps user_ldap and user_webdavauth are incompatible. You may"
" experience unexpected behaviour. Please ask your system administrator to "
"disable one of them."
-msgstr ""
+msgstr "Προσοχή: Οι εφαρμογές user_ldap και user_webdavauth είναι ασύμβατες. Μπορεί να αντιμετωπίσετε απρόβλεπτη συμπεριφορά. Παρακαλώ ζητήστε από τον διαχειριστή συστήματος να απενεργοποιήσει μία από αυτές."
#: templates/settings.php:11
msgid ""
"Warning: The PHP LDAP module needs is not installed, the backend will"
" not work. Please ask your system administrator to install it."
-msgstr ""
+msgstr "Προσοχή: Το PHP LDAP module που απαιτείται δεν είναι εγκατεστημένο και ο μηχανισμός δεν θα λειτουργήσει. Παρακαλώ ζητήστε από τον διαχειριστή του συστήματος να το εγκαταστήσει."
#: templates/settings.php:15
msgid "Host"
-msgstr ""
+msgstr "Διακομιστής"
#: templates/settings.php:15
msgid ""
"You can omit the protocol, except you require SSL. Then start with ldaps://"
-msgstr ""
+msgstr "Μπορείτε να παραλείψετε το πρωτόκολλο, εκτός αν απαιτείται SSL. Σε αυτή την περίπτωση ξεκινήστε με ldaps://"
#: templates/settings.php:16
msgid "Base DN"
@@ -48,7 +50,7 @@ msgstr "Base DN"
#: templates/settings.php:16
msgid "You can specify Base DN for users and groups in the Advanced tab"
-msgstr ""
+msgstr "Μπορείτε να καθορίσετε το Base DN για χρήστες και ομάδες από την καρτέλα Προηγμένες ρυθμίσεις"
#: templates/settings.php:17
msgid "User DN"
@@ -59,7 +61,7 @@ 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 "Το DN του χρήστη πελάτη με το οποίο θα πρέπει να γίνει η σύνδεση, π.χ. uid=agent,dc=example,dc=com. Για χρήση χωρίς πιστοποίηση, αφήστε το DN και τον Κωδικό κενά."
#: templates/settings.php:18
msgid "Password"
@@ -67,7 +69,7 @@ msgstr "Συνθηματικό"
#: templates/settings.php:18
msgid "For anonymous access, leave DN and Password empty."
-msgstr ""
+msgstr "Για ανώνυμη πρόσβαση, αφήστε κενά τα πεδία DN και Pasword."
#: templates/settings.php:19
msgid "User Login Filter"
@@ -78,12 +80,12 @@ msgstr "User Login Filter"
msgid ""
"Defines the filter to apply, when login is attempted. %%uid replaces the "
"username in the login action."
-msgstr ""
+msgstr "Καθορίζει το φίλτρο που θα ισχύει κατά την προσπάθεια σύνδεσης χρήστη. %%uid αντικαθιστά το όνομα χρήστη κατά τη σύνδεση. "
#: templates/settings.php:19
#, php-format
msgid "use %%uid placeholder, e.g. \"uid=%%uid\""
-msgstr ""
+msgstr "χρησιμοποιήστε τη μεταβλητή %%uid, π.χ. \"uid=%%uid\""
#: templates/settings.php:20
msgid "User List Filter"
@@ -91,11 +93,11 @@ msgstr "User List Filter"
#: templates/settings.php:20
msgid "Defines the filter to apply, when retrieving users."
-msgstr ""
+msgstr "Καθορίζει το φίλτρο που θα ισχύει κατά την ανάκτηση επαφών."
#: templates/settings.php:20
msgid "without any placeholder, e.g. \"objectClass=person\"."
-msgstr ""
+msgstr "χωρίς κάποια μεταβλητή, π.χ. \"objectClass=άτομο\"."
#: templates/settings.php:21
msgid "Group Filter"
@@ -103,11 +105,11 @@ msgstr "Group Filter"
#: templates/settings.php:21
msgid "Defines the filter to apply, when retrieving groups."
-msgstr ""
+msgstr "Καθορίζει το φίλτρο που θα ισχύει κατά την ανάκτηση ομάδων."
#: templates/settings.php:21
msgid "without any placeholder, e.g. \"objectClass=posixGroup\"."
-msgstr ""
+msgstr "χωρίς κάποια μεταβλητή, π.χ. \"objectClass=ΟμάδαPosix\"."
#: templates/settings.php:24
msgid "Port"
@@ -131,21 +133,21 @@ msgstr "Χρήση TLS"
#: templates/settings.php:28
msgid "Do not use it for SSL connections, it will fail."
-msgstr ""
+msgstr "Μην χρησιμοποιείτε για συνδέσεις SSL, θα αποτύχει."
#: templates/settings.php:29
msgid "Case insensitve LDAP server (Windows)"
-msgstr ""
+msgstr "LDAP server (Windows) με διάκριση πεζών-ΚΕΦΑΛΑΙΩΝ"
#: templates/settings.php:30
msgid "Turn off SSL certificate validation."
-msgstr ""
+msgstr "Απενεργοποίηση επικύρωσης πιστοποιητικού SSL."
#: templates/settings.php:30
msgid ""
"If connection only works with this option, import the LDAP server's SSL "
"certificate in your ownCloud server."
-msgstr ""
+msgstr "Εάν η σύνδεση δουλεύει μόνο με αυτή την επιλογή, εισάγετε το LDAP SSL πιστοποιητικό του διακομιστή στον ownCloud server σας."
#: templates/settings.php:30
msgid "Not recommended, use for testing only."
@@ -157,7 +159,7 @@ msgstr "Πεδίο Ονόματος Χρήστη"
#: templates/settings.php:31
msgid "The LDAP attribute to use to generate the user`s ownCloud name."
-msgstr ""
+msgstr "Η ιδιότητα LDAP που θα χρησιμοποιείται για τη δημιουργία του ονόματος χρήστη του ownCloud."
#: templates/settings.php:32
msgid "Group Display Name Field"
@@ -165,7 +167,7 @@ msgstr "Group Display Name Field"
#: templates/settings.php:32
msgid "The LDAP attribute to use to generate the groups`s ownCloud name."
-msgstr ""
+msgstr "Η ιδιότητα LDAP που θα χρησιμοποιείται για τη δημιουργία του ονόματος ομάδας του ownCloud."
#: templates/settings.php:34
msgid "in bytes"
@@ -173,13 +175,13 @@ msgstr "σε bytes"
#: templates/settings.php:36
msgid "in seconds. A change empties the cache."
-msgstr ""
+msgstr "σε δευτερόλεπτα. Μια αλλαγή αδειάζει την μνήμη cache."
#: templates/settings.php:37
msgid ""
"Leave empty for user name (default). Otherwise, specify an LDAP/AD "
"attribute."
-msgstr ""
+msgstr "Αφήστε το κενό για το όνομα χρήστη (προεπιλογή). Διαφορετικά, συμπληρώστε μία ιδιότητα LDAP/AD."
#: templates/settings.php:39
msgid "Help"
diff --git a/l10n/el/user_webdavauth.po b/l10n/el/user_webdavauth.po
index cbfe15b552..dff8dd88f3 100644
--- a/l10n/el/user_webdavauth.po
+++ b/l10n/el/user_webdavauth.po
@@ -5,13 +5,14 @@
# Translators:
# Dimitris M. , 2012.
# Efstathios Iosifidis , 2012.
+# Konstantinos Tzanidis , 2012.
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-12-22 00:24+0100\n"
-"PO-Revision-Date: 2012-12-21 13:00+0000\n"
-"Last-Translator: Efstathios Iosifidis \n"
+"POT-Creation-Date: 2012-12-28 00:20+0100\n"
+"PO-Revision-Date: 2012-12-27 13:55+0000\n"
+"Last-Translator: Konstantinos Tzanidis \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"
@@ -28,4 +29,4 @@ msgid ""
"ownCloud will send the user credentials to this URL is interpret http 401 "
"and http 403 as credentials wrong and all other codes as credentials "
"correct."
-msgstr ""
+msgstr "Το ownCloud θα στείλει τα συνθηματικά χρήστη σε αυτό το URL, μεταφράζοντας τα http 401 και http 403 ως λανθασμένα συνθηματικά και όλους τους άλλους κωδικούς ως σωστά συνθηματικά."
diff --git a/l10n/eo/core.po b/l10n/eo/core.po
index ae8dd9eeed..a443f9ad91 100644
--- a/l10n/eo/core.po
+++ b/l10n/eo/core.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-12-20 00:11+0100\n"
-"PO-Revision-Date: 2012-12-19 07:11+0000\n"
-"Last-Translator: Mariano \n"
+"POT-Creation-Date: 2013-01-07 00:04+0100\n"
+"PO-Revision-Date: 2013-01-06 23:04+0000\n"
+"Last-Translator: I Robot \n"
"Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -209,7 +209,7 @@ msgstr "Kunhavigi per ligilo"
msgid "Password protect"
msgstr "Protekti per pasvorto"
-#: js/share.js:168 templates/installation.php:44 templates/login.php:26
+#: js/share.js:168 templates/installation.php:44 templates/login.php:35
#: templates/verify.php:13
msgid "Password"
msgstr "Pasvorto"
@@ -315,7 +315,7 @@ msgid "Request failed!"
msgstr "Peto malsukcesis!"
#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39
-#: templates/login.php:21
+#: templates/login.php:28
msgid "Username"
msgstr "Uzantonomo"
@@ -529,29 +529,29 @@ msgstr "TTT-servoj sub via kontrolo"
msgid "Log out"
msgstr "Elsaluti"
-#: templates/login.php:8
+#: templates/login.php:10
msgid "Automatic logon rejected!"
msgstr ""
-#: templates/login.php:9
+#: templates/login.php:11
msgid ""
"If you did not change your password recently, your account may be "
"compromised!"
msgstr "Se vi ne ŝanĝis vian pasvorton lastatempe, via konto eble kompromitas!"
-#: templates/login.php:10
+#: templates/login.php:13
msgid "Please change your password to secure your account again."
msgstr "Bonvolu ŝanĝi vian pasvorton por sekurigi vian konton ree."
-#: templates/login.php:15
+#: templates/login.php:19
msgid "Lost your password?"
msgstr "Ĉu vi perdis vian pasvorton?"
-#: templates/login.php:29
+#: templates/login.php:39
msgid "remember"
msgstr "memori"
-#: templates/login.php:30
+#: templates/login.php:41
msgid "Log in"
msgstr "Ensaluti"
@@ -567,6 +567,11 @@ msgstr "maljena"
msgid "next"
msgstr "jena"
+#: templates/update.php:3
+#, php-format
+msgid "Updating ownCloud to version %s, this may take a while."
+msgstr ""
+
#: templates/verify.php:5
msgid "Security Warning!"
msgstr "Sekureca averto!"
diff --git a/l10n/eo/files.po b/l10n/eo/files.po
index 98d1dba639..9a51714012 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-12-03 00:04+0100\n"
-"PO-Revision-Date: 2012-12-02 22:06+0000\n"
-"Last-Translator: Mariano \n"
+"POT-Creation-Date: 2013-01-07 00:04+0100\n"
+"PO-Revision-Date: 2013-01-06 23:05+0000\n"
+"Last-Translator: I Robot \n"
"Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -19,46 +19,58 @@ msgstr ""
"Language: eo\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: ajax/upload.php:20
+#: ajax/upload.php:14
+msgid "No file was uploaded. Unknown error"
+msgstr "Neniu dosiero alŝutiĝis. Nekonata eraro."
+
+#: ajax/upload.php:21
msgid "There is no error, the file uploaded with success"
msgstr "Ne estas eraro, la dosiero alŝutiĝis sukcese"
-#: ajax/upload.php:21
+#: ajax/upload.php:22
msgid ""
"The uploaded file exceeds the upload_max_filesize directive in php.ini: "
msgstr "La dosiero alŝutita superas la regulon upload_max_filesize el php.ini: "
-#: ajax/upload.php:23
+#: ajax/upload.php:24
msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form"
msgstr "La dosiero alŝutita superas la regulon MAX_FILE_SIZE, kiu estas difinita en la HTML-formularo"
-#: ajax/upload.php:25
+#: ajax/upload.php:26
msgid "The uploaded file was only partially uploaded"
msgstr "La alŝutita dosiero nur parte alŝutiĝis"
-#: ajax/upload.php:26
+#: ajax/upload.php:27
msgid "No file was uploaded"
msgstr "Neniu dosiero estas alŝutita"
-#: ajax/upload.php:27
+#: ajax/upload.php:28
msgid "Missing a temporary folder"
msgstr "Mankas tempa dosierujo"
-#: ajax/upload.php:28
+#: ajax/upload.php:29
msgid "Failed to write to disk"
msgstr "Malsukcesis skribo al disko"
+#: ajax/upload.php:45
+msgid "Not enough space available"
+msgstr ""
+
+#: ajax/upload.php:69
+msgid "Invalid directory."
+msgstr ""
+
#: appinfo/app.php:10
msgid "Files"
msgstr "Dosieroj"
-#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84
+#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85
msgid "Unshare"
msgstr "Malkunhavigi"
-#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90
+#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91
msgid "Delete"
msgstr "Forigi"
@@ -66,122 +78,130 @@ msgstr "Forigi"
msgid "Rename"
msgstr "Alinomigi"
-#: js/filelist.js:201 js/filelist.js:203
+#: js/filelist.js:199 js/filelist.js:201
msgid "{new_name} already exists"
msgstr "{new_name} jam ekzistas"
-#: js/filelist.js:201 js/filelist.js:203
+#: js/filelist.js:199 js/filelist.js:201
msgid "replace"
msgstr "anstataŭigi"
-#: js/filelist.js:201
+#: js/filelist.js:199
msgid "suggest name"
msgstr "sugesti nomon"
-#: js/filelist.js:201 js/filelist.js:203
+#: js/filelist.js:199 js/filelist.js:201
msgid "cancel"
msgstr "nuligi"
-#: js/filelist.js:250
+#: js/filelist.js:248
msgid "replaced {new_name}"
msgstr "anstataŭiĝis {new_name}"
-#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286
+#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284
msgid "undo"
msgstr "malfari"
-#: js/filelist.js:252
+#: js/filelist.js:250
msgid "replaced {new_name} with {old_name}"
msgstr "anstataŭiĝis {new_name} per {old_name}"
-#: js/filelist.js:284
+#: js/filelist.js:282
msgid "unshared {files}"
msgstr "malkunhaviĝis {files}"
-#: js/filelist.js:286
+#: js/filelist.js:284
msgid "deleted {files}"
msgstr "foriĝis {files}"
-#: js/files.js:33
+#: js/files.js:31
+msgid "'.' is an invalid file name."
+msgstr ""
+
+#: js/files.js:36
+msgid "File name cannot be empty."
+msgstr ""
+
+#: js/files.js:45
msgid ""
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not "
"allowed."
msgstr "Nevalida nomo: “\\”, “/”, “<”, “>”, “:”, “\"”, “|”, “?” kaj “*” ne permesatas."
-#: js/files.js:183
+#: js/files.js:186
msgid "generating ZIP-file, it may take some time."
msgstr "generanta ZIP-dosiero, ĝi povas daŭri iom da tempo"
-#: js/files.js:218
+#: js/files.js:224
msgid "Unable to upload your file as it is a directory or has 0 bytes"
msgstr "Ne eblis alŝuti vian dosieron ĉar ĝi estas dosierujo aŭ havas 0 duumokojn"
-#: js/files.js:218
+#: js/files.js:224
msgid "Upload Error"
msgstr "Alŝuta eraro"
-#: js/files.js:235
+#: js/files.js:241
msgid "Close"
msgstr "Fermi"
-#: js/files.js:254 js/files.js:368 js/files.js:398
+#: js/files.js:260 js/files.js:374 js/files.js:404
msgid "Pending"
msgstr "Traktotaj"
-#: js/files.js:274
+#: js/files.js:280
msgid "1 file uploading"
msgstr "1 dosiero estas alŝutata"
-#: js/files.js:277 js/files.js:331 js/files.js:346
+#: js/files.js:283 js/files.js:337 js/files.js:352
msgid "{count} files uploading"
msgstr "{count} dosieroj alŝutatas"
-#: js/files.js:349 js/files.js:382
+#: js/files.js:355 js/files.js:388
msgid "Upload cancelled."
msgstr "La alŝuto nuliĝis."
-#: js/files.js:451
+#: js/files.js:457
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr "Dosieralŝuto plenumiĝas. Lasi la paĝon nun nuligus la alŝuton."
-#: js/files.js:523
+#: js/files.js:527
msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud"
msgstr "Nevalida nomo de dosierujo. Uzo de “Shared” rezervitas de Owncloud"
-#: js/files.js:704
+#: js/files.js:711
msgid "{count} files scanned"
msgstr "{count} dosieroj skaniĝis"
-#: js/files.js:712
+#: js/files.js:719
msgid "error while scanning"
msgstr "eraro dum skano"
-#: js/files.js:785 templates/index.php:65
+#: js/files.js:792 templates/index.php:66
msgid "Name"
msgstr "Nomo"
-#: js/files.js:786 templates/index.php:76
+#: js/files.js:793 templates/index.php:77
msgid "Size"
msgstr "Grando"
-#: js/files.js:787 templates/index.php:78
+#: js/files.js:794 templates/index.php:79
msgid "Modified"
msgstr "Modifita"
-#: js/files.js:814
+#: js/files.js:813
msgid "1 folder"
msgstr "1 dosierujo"
-#: js/files.js:816
+#: js/files.js:815
msgid "{count} folders"
msgstr "{count} dosierujoj"
-#: js/files.js:824
+#: js/files.js:823
msgid "1 file"
msgstr "1 dosiero"
-#: js/files.js:826
+#: js/files.js:825
msgid "{count} files"
msgstr "{count} dosierujoj"
@@ -193,27 +213,27 @@ msgstr "Dosieradministro"
msgid "Maximum upload size"
msgstr "Maksimuma alŝutogrando"
-#: templates/admin.php:9
+#: templates/admin.php:10
msgid "max. possible: "
msgstr "maks. ebla: "
-#: templates/admin.php:12
+#: templates/admin.php:15
msgid "Needed for multi-file and folder downloads."
msgstr "Necesa por elŝuto de pluraj dosieroj kaj dosierujoj."
-#: templates/admin.php:14
+#: templates/admin.php:17
msgid "Enable ZIP-download"
msgstr "Kapabligi ZIP-elŝuton"
-#: templates/admin.php:17
+#: templates/admin.php:20
msgid "0 is unlimited"
msgstr "0 signifas senlime"
-#: templates/admin.php:19
+#: templates/admin.php:22
msgid "Maximum input size for ZIP files"
msgstr "Maksimuma enirgrando por ZIP-dosieroj"
-#: templates/admin.php:23
+#: templates/admin.php:26
msgid "Save"
msgstr "Konservi"
@@ -241,28 +261,28 @@ msgstr "Alŝuti"
msgid "Cancel upload"
msgstr "Nuligi alŝuton"
-#: templates/index.php:57
+#: templates/index.php:58
msgid "Nothing in here. Upload something!"
msgstr "Nenio estas ĉi tie. Alŝutu ion!"
-#: templates/index.php:71
+#: templates/index.php:72
msgid "Download"
msgstr "Elŝuti"
-#: templates/index.php:103
+#: templates/index.php:104
msgid "Upload too large"
msgstr "Elŝuto tro larĝa"
-#: templates/index.php:105
+#: templates/index.php:106
msgid ""
"The files you are trying to upload exceed the maximum size for file uploads "
"on this server."
msgstr "La dosieroj, kiujn vi provas alŝuti, transpasas la maksimuman grandon por dosieralŝutoj en ĉi tiu servilo."
-#: templates/index.php:110
+#: templates/index.php:111
msgid "Files are being scanned, please wait."
msgstr "Dosieroj estas skanataj, bonvolu atendi."
-#: templates/index.php:113
+#: templates/index.php:114
msgid "Current scanning"
msgstr "Nuna skano"
diff --git a/l10n/eo/settings.po b/l10n/eo/settings.po
index 3a49fa3de2..d57fded028 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-12-21 00:10+0100\n"
-"PO-Revision-Date: 2012-12-19 23:20+0000\n"
+"POT-Creation-Date: 2012-12-30 00:04+0100\n"
+"PO-Revision-Date: 2012-12-29 23:05+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n"
"MIME-Version: 1.0\n"
@@ -162,7 +162,7 @@ msgstr ""
msgid "Download iOS Client"
msgstr ""
-#: templates/personal.php:21 templates/users.php:23 templates/users.php:77
+#: templates/personal.php:21 templates/users.php:23 templates/users.php:82
msgid "Password"
msgstr "Pasvorto"
@@ -232,11 +232,11 @@ msgid ""
"License\">AGPL."
msgstr "Ellaborita de la komunumo de ownCloud , la fontokodo publikas laŭ la permesilo AGPL ."
-#: templates/users.php:21 templates/users.php:76
+#: templates/users.php:21 templates/users.php:81
msgid "Name"
msgstr "Nomo"
-#: templates/users.php:26 templates/users.php:78 templates/users.php:98
+#: templates/users.php:26 templates/users.php:83 templates/users.php:103
msgid "Groups"
msgstr "Grupoj"
@@ -245,21 +245,29 @@ msgid "Create"
msgstr "Krei"
#: templates/users.php:35
-msgid "Default Quota"
-msgstr "Defaŭlta kvoto"
+msgid "Default Storage"
+msgstr ""
-#: templates/users.php:55 templates/users.php:138
+#: templates/users.php:42 templates/users.php:138
+msgid "Unlimited"
+msgstr ""
+
+#: templates/users.php:60 templates/users.php:153
msgid "Other"
msgstr "Alia"
-#: templates/users.php:80 templates/users.php:112
+#: templates/users.php:85 templates/users.php:117
msgid "Group Admin"
msgstr "Grupadministranto"
-#: templates/users.php:82
-msgid "Quota"
-msgstr "Kvoto"
+#: templates/users.php:87
+msgid "Storage"
+msgstr ""
-#: templates/users.php:146
+#: templates/users.php:133
+msgid "Default"
+msgstr ""
+
+#: templates/users.php:161
msgid "Delete"
msgstr "Forigi"
diff --git a/l10n/eo/user_webdavauth.po b/l10n/eo/user_webdavauth.po
index d3ca981d96..60a766ad4c 100644
--- a/l10n/eo/user_webdavauth.po
+++ b/l10n/eo/user_webdavauth.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-12-20 00:11+0100\n"
-"PO-Revision-Date: 2012-12-19 23:12+0000\n"
-"Last-Translator: I Robot \n"
+"POT-Creation-Date: 2012-12-28 00:20+0100\n"
+"PO-Revision-Date: 2012-12-27 03:35+0000\n"
+"Last-Translator: Mariano \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"
@@ -20,7 +20,7 @@ msgstr ""
#: templates/settings.php:4
msgid "URL: http://"
-msgstr ""
+msgstr "URL: http://"
#: templates/settings.php:6
msgid ""
diff --git a/l10n/es/core.po b/l10n/es/core.po
index 3aebf45eff..f06edefd26 100644
--- a/l10n/es/core.po
+++ b/l10n/es/core.po
@@ -18,9 +18,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-12-15 00:11+0100\n"
-"PO-Revision-Date: 2012-12-14 11:51+0000\n"
-"Last-Translator: malmirk \n"
+"POT-Creation-Date: 2013-01-07 00:04+0100\n"
+"PO-Revision-Date: 2013-01-06 23:04+0000\n"
+"Last-Translator: I Robot \n"
"Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -172,8 +172,8 @@ msgid "The object type is not specified."
msgstr "El tipo de objeto no se ha especificado."
#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136
-#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541
-#: js/share.js:553
+#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554
+#: js/share.js:566
msgid "Error"
msgstr "Fallo"
@@ -185,7 +185,7 @@ msgstr "El nombre de la app no se ha especificado."
msgid "The required file {file} is not installed!"
msgstr "El fichero {file} requerido, no está instalado."
-#: js/share.js:124 js/share.js:581
+#: js/share.js:124 js/share.js:594
msgid "Error while sharing"
msgstr "Error compartiendo"
@@ -213,11 +213,11 @@ msgstr "Compartir con"
msgid "Share with link"
msgstr "Compartir con enlace"
-#: js/share.js:164
+#: js/share.js:166
msgid "Password protect"
msgstr "Protegido por contraseña"
-#: js/share.js:168 templates/installation.php:44 templates/login.php:26
+#: js/share.js:168 templates/installation.php:44 templates/login.php:35
#: templates/verify.php:13
msgid "Password"
msgstr "Contraseña"
@@ -282,23 +282,23 @@ msgstr "eliminar"
msgid "share"
msgstr "compartir"
-#: js/share.js:353 js/share.js:528 js/share.js:530
+#: js/share.js:356 js/share.js:541
msgid "Password protected"
msgstr "Protegido por contraseña"
-#: js/share.js:541
+#: js/share.js:554
msgid "Error unsetting expiration date"
msgstr "Error al eliminar la fecha de caducidad"
-#: js/share.js:553
+#: js/share.js:566
msgid "Error setting expiration date"
msgstr "Error estableciendo fecha de caducidad"
-#: js/share.js:568
+#: js/share.js:581
msgid "Sending ..."
msgstr "Enviando..."
-#: js/share.js:579
+#: js/share.js:592
msgid "Email sent"
msgstr "Correo electrónico enviado"
@@ -323,7 +323,7 @@ msgid "Request failed!"
msgstr "Pedido fallado!"
#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39
-#: templates/login.php:21
+#: templates/login.php:28
msgid "Username"
msgstr "Nombre de usuario"
@@ -537,29 +537,29 @@ msgstr "servicios web bajo tu control"
msgid "Log out"
msgstr "Salir"
-#: templates/login.php:8
+#: templates/login.php:10
msgid "Automatic logon rejected!"
msgstr "¡Inicio de sesión automático rechazado!"
-#: templates/login.php:9
+#: templates/login.php:11
msgid ""
"If you did not change your password recently, your account may be "
"compromised!"
msgstr "Si usted no ha cambiado su contraseña recientemente, ¡puede que su cuenta esté comprometida!"
-#: templates/login.php:10
+#: templates/login.php:13
msgid "Please change your password to secure your account again."
msgstr "Por favor cambie su contraseña para asegurar su cuenta nuevamente."
-#: templates/login.php:15
+#: templates/login.php:19
msgid "Lost your password?"
msgstr "¿Has perdido tu contraseña?"
-#: templates/login.php:29
+#: templates/login.php:39
msgid "remember"
msgstr "recuérdame"
-#: templates/login.php:30
+#: templates/login.php:41
msgid "Log in"
msgstr "Entrar"
@@ -575,6 +575,11 @@ msgstr "anterior"
msgid "next"
msgstr "siguiente"
+#: templates/update.php:3
+#, php-format
+msgid "Updating ownCloud to version %s, this may take a while."
+msgstr ""
+
#: templates/verify.php:5
msgid "Security Warning!"
msgstr "¡Advertencia de seguridad!"
diff --git a/l10n/es/files.po b/l10n/es/files.po
index 8925d2d93d..22d40a3e62 100644
--- a/l10n/es/files.po
+++ b/l10n/es/files.po
@@ -4,6 +4,7 @@
#
# Translators:
# Agustin Ferrario <>, 2012.
+# Agustin Ferrario , 2013.
# , 2012.
# Javier Llorente , 2012.
# , 2012.
@@ -14,9 +15,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-12-02 00:02+0100\n"
-"PO-Revision-Date: 2012-12-01 20:49+0000\n"
-"Last-Translator: xsergiolpx \n"
+"POT-Creation-Date: 2013-01-07 00:04+0100\n"
+"PO-Revision-Date: 2013-01-06 23:05+0000\n"
+"Last-Translator: I Robot \n"
"Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -24,46 +25,58 @@ msgstr ""
"Language: es\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: ajax/upload.php:20
+#: ajax/upload.php:14
+msgid "No file was uploaded. Unknown error"
+msgstr "Fallo no se subió el fichero"
+
+#: ajax/upload.php:21
msgid "There is no error, the file uploaded with success"
msgstr "No se ha producido ningún error, el archivo se ha subido con éxito"
-#: ajax/upload.php:21
+#: ajax/upload.php:22
msgid ""
"The uploaded file exceeds the upload_max_filesize directive in php.ini: "
msgstr "El archivo que intentas subir sobrepasa el tamaño definido por la variable upload_max_filesize en php.ini"
-#: ajax/upload.php:23
+#: ajax/upload.php:24
msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form"
msgstr "El archivo que intentas subir sobrepasa el tamaño definido por la variable MAX_FILE_SIZE especificada en el formulario HTML"
-#: ajax/upload.php:25
+#: ajax/upload.php:26
msgid "The uploaded file was only partially uploaded"
msgstr "El archivo que intentas subir solo se subió parcialmente"
-#: ajax/upload.php:26
+#: ajax/upload.php:27
msgid "No file was uploaded"
msgstr "No se ha subido ningún archivo"
-#: ajax/upload.php:27
+#: ajax/upload.php:28
msgid "Missing a temporary folder"
msgstr "Falta un directorio temporal"
-#: ajax/upload.php:28
+#: ajax/upload.php:29
msgid "Failed to write to disk"
msgstr "La escritura en disco ha fallado"
+#: ajax/upload.php:45
+msgid "Not enough space available"
+msgstr "No hay suficiente espacio disponible"
+
+#: ajax/upload.php:69
+msgid "Invalid directory."
+msgstr "Directorio invalido."
+
#: appinfo/app.php:10
msgid "Files"
msgstr "Archivos"
-#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84
+#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85
msgid "Unshare"
msgstr "Dejar de compartir"
-#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90
+#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91
msgid "Delete"
msgstr "Eliminar"
@@ -71,122 +84,130 @@ msgstr "Eliminar"
msgid "Rename"
msgstr "Renombrar"
-#: js/filelist.js:201 js/filelist.js:203
+#: js/filelist.js:199 js/filelist.js:201
msgid "{new_name} already exists"
msgstr "{new_name} ya existe"
-#: js/filelist.js:201 js/filelist.js:203
+#: js/filelist.js:199 js/filelist.js:201
msgid "replace"
msgstr "reemplazar"
-#: js/filelist.js:201
+#: js/filelist.js:199
msgid "suggest name"
msgstr "sugerir nombre"
-#: js/filelist.js:201 js/filelist.js:203
+#: js/filelist.js:199 js/filelist.js:201
msgid "cancel"
msgstr "cancelar"
-#: js/filelist.js:250
+#: js/filelist.js:248
msgid "replaced {new_name}"
msgstr "reemplazado {new_name}"
-#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286
+#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284
msgid "undo"
msgstr "deshacer"
-#: js/filelist.js:252
+#: js/filelist.js:250
msgid "replaced {new_name} with {old_name}"
msgstr "reemplazado {new_name} con {old_name}"
-#: js/filelist.js:284
+#: js/filelist.js:282
msgid "unshared {files}"
msgstr "{files} descompartidos"
-#: js/filelist.js:286
+#: js/filelist.js:284
msgid "deleted {files}"
msgstr "{files} eliminados"
-#: js/files.js:33
+#: js/files.js:31
+msgid "'.' is an invalid file name."
+msgstr ""
+
+#: js/files.js:36
+msgid "File name cannot be empty."
+msgstr ""
+
+#: js/files.js:45
msgid ""
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not "
"allowed."
msgstr "Nombre Invalido, \"\\\", \"/\", \"<\", \">\", \":\", \"\", \"|\" \"?\" y \"*\" no están permitidos "
-#: js/files.js:183
+#: js/files.js:186
msgid "generating ZIP-file, it may take some time."
msgstr "generando un fichero ZIP, puede llevar un tiempo."
-#: js/files.js:218
+#: js/files.js:224
msgid "Unable to upload your file as it is a directory or has 0 bytes"
msgstr "No ha sido posible subir tu archivo porque es un directorio o tiene 0 bytes"
-#: js/files.js:218
+#: js/files.js:224
msgid "Upload Error"
msgstr "Error al subir el archivo"
-#: js/files.js:235
+#: js/files.js:241
msgid "Close"
msgstr "cerrrar"
-#: js/files.js:254 js/files.js:368 js/files.js:398
+#: js/files.js:260 js/files.js:374 js/files.js:404
msgid "Pending"
msgstr "Pendiente"
-#: js/files.js:274
+#: js/files.js:280
msgid "1 file uploading"
msgstr "subiendo 1 archivo"
-#: js/files.js:277 js/files.js:331 js/files.js:346
+#: js/files.js:283 js/files.js:337 js/files.js:352
msgid "{count} files uploading"
msgstr "Subiendo {count} archivos"
-#: js/files.js:349 js/files.js:382
+#: js/files.js:355 js/files.js:388
msgid "Upload cancelled."
msgstr "Subida cancelada."
-#: js/files.js:451
+#: js/files.js:457
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr "La subida del archivo está en proceso. Salir de la página ahora cancelará la subida."
-#: js/files.js:523
+#: js/files.js:527
msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud"
msgstr "Nombre de la carpeta invalido. El uso de \"Shared\" esta reservado para Owncloud"
-#: js/files.js:704
+#: js/files.js:711
msgid "{count} files scanned"
msgstr "{count} archivos escaneados"
-#: js/files.js:712
+#: js/files.js:719
msgid "error while scanning"
msgstr "error escaneando"
-#: js/files.js:785 templates/index.php:65
+#: js/files.js:792 templates/index.php:66
msgid "Name"
msgstr "Nombre"
-#: js/files.js:786 templates/index.php:76
+#: js/files.js:793 templates/index.php:77
msgid "Size"
msgstr "Tamaño"
-#: js/files.js:787 templates/index.php:78
+#: js/files.js:794 templates/index.php:79
msgid "Modified"
msgstr "Modificado"
-#: js/files.js:814
+#: js/files.js:813
msgid "1 folder"
msgstr "1 carpeta"
-#: js/files.js:816
+#: js/files.js:815
msgid "{count} folders"
msgstr "{count} carpetas"
-#: js/files.js:824
+#: js/files.js:823
msgid "1 file"
msgstr "1 archivo"
-#: js/files.js:826
+#: js/files.js:825
msgid "{count} files"
msgstr "{count} archivos"
@@ -198,27 +219,27 @@ msgstr "Tratamiento de archivos"
msgid "Maximum upload size"
msgstr "Tamaño máximo de subida"
-#: templates/admin.php:9
+#: templates/admin.php:10
msgid "max. possible: "
msgstr "máx. posible:"
-#: templates/admin.php:12
+#: templates/admin.php:15
msgid "Needed for multi-file and folder downloads."
msgstr "Se necesita para descargas multi-archivo y de carpetas"
-#: templates/admin.php:14
+#: templates/admin.php:17
msgid "Enable ZIP-download"
msgstr "Habilitar descarga en ZIP"
-#: templates/admin.php:17
+#: templates/admin.php:20
msgid "0 is unlimited"
msgstr "0 es ilimitado"
-#: templates/admin.php:19
+#: templates/admin.php:22
msgid "Maximum input size for ZIP files"
msgstr "Tamaño máximo para archivos ZIP de entrada"
-#: templates/admin.php:23
+#: templates/admin.php:26
msgid "Save"
msgstr "Guardar"
@@ -246,28 +267,28 @@ msgstr "Subir"
msgid "Cancel upload"
msgstr "Cancelar subida"
-#: templates/index.php:57
+#: templates/index.php:58
msgid "Nothing in here. Upload something!"
msgstr "Aquí no hay nada. ¡Sube algo!"
-#: templates/index.php:71
+#: templates/index.php:72
msgid "Download"
msgstr "Descargar"
-#: templates/index.php:103
+#: templates/index.php:104
msgid "Upload too large"
msgstr "El archivo es demasiado grande"
-#: templates/index.php:105
+#: templates/index.php:106
msgid ""
"The files you are trying to upload exceed the maximum size for file uploads "
"on this server."
msgstr "Los archivos que estás intentando subir sobrepasan el tamaño máximo permitido por este servidor."
-#: templates/index.php:110
+#: templates/index.php:111
msgid "Files are being scanned, please wait."
msgstr "Se están escaneando los archivos, por favor espere."
-#: templates/index.php:113
+#: templates/index.php:114
msgid "Current scanning"
msgstr "Ahora escaneando"
diff --git a/l10n/es/settings.po b/l10n/es/settings.po
index edd6703127..be3f8676b4 100644
--- a/l10n/es/settings.po
+++ b/l10n/es/settings.po
@@ -9,6 +9,7 @@
# , 2011-2012.
# , 2011.
# oSiNaReF <>, 2012.
+# , 2012.
# Raul Fernandez Garcia , 2012.
# , 2012.
# , 2011.
@@ -18,9 +19,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-12-21 00:10+0100\n"
-"PO-Revision-Date: 2012-12-19 23:20+0000\n"
-"Last-Translator: I Robot \n"
+"POT-Creation-Date: 2012-12-31 00:04+0100\n"
+"PO-Revision-Date: 2012-12-30 00:45+0000\n"
+"Last-Translator: Agustin Ferrario \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"
@@ -128,27 +129,27 @@ msgstr " -licenciado por
#: templates/help.php:3
msgid "User Documentation"
-msgstr ""
+msgstr "Documentación del usuario"
#: templates/help.php:4
msgid "Administrator Documentation"
-msgstr ""
+msgstr "Documentación del adminsitrador"
#: templates/help.php:6
msgid "Online Documentation"
-msgstr ""
+msgstr "Documentación en linea"
#: templates/help.php:7
msgid "Forum"
-msgstr ""
+msgstr "Foro"
#: templates/help.php:9
msgid "Bugtracker"
-msgstr ""
+msgstr "Rastreador de Bugs"
#: templates/help.php:11
msgid "Commercial Support"
-msgstr ""
+msgstr "Soporte Comercial"
#: templates/personal.php:8
#, php-format
@@ -161,17 +162,17 @@ msgstr "Clientes"
#: templates/personal.php:13
msgid "Download Desktop Clients"
-msgstr ""
+msgstr "Descargar clientes de escritorio"
#: templates/personal.php:14
msgid "Download Android Client"
-msgstr ""
+msgstr "Descargar cliente para android"
#: templates/personal.php:15
msgid "Download iOS Client"
-msgstr ""
+msgstr "Descargar cliente para iOS"
-#: templates/personal.php:21 templates/users.php:23 templates/users.php:77
+#: templates/personal.php:21 templates/users.php:23 templates/users.php:82
msgid "Password"
msgstr "Contraseña"
@@ -221,15 +222,15 @@ msgstr "Ayúdanos a traducir"
#: templates/personal.php:52
msgid "WebDAV"
-msgstr ""
+msgstr "WebDAV"
#: templates/personal.php:54
msgid "Use this address to connect to your ownCloud in your file manager"
-msgstr ""
+msgstr "Use esta dirección para conectarse a su cuenta de ownCloud en el administrador de archivos"
#: templates/personal.php:63
msgid "Version"
-msgstr ""
+msgstr "Version"
#: templates/personal.php:65
msgid ""
@@ -241,11 +242,11 @@ msgid ""
"License\">AGPL."
msgstr "Desarrollado por la comunidad ownCloud , el código fuente está bajo licencia AGPL ."
-#: templates/users.php:21 templates/users.php:76
+#: templates/users.php:21 templates/users.php:81
msgid "Name"
msgstr "Nombre"
-#: templates/users.php:26 templates/users.php:78 templates/users.php:98
+#: templates/users.php:26 templates/users.php:83 templates/users.php:103
msgid "Groups"
msgstr "Grupos"
@@ -254,21 +255,29 @@ msgid "Create"
msgstr "Crear"
#: templates/users.php:35
-msgid "Default Quota"
-msgstr "Cuota predeterminada"
+msgid "Default Storage"
+msgstr "Almacenamiento Predeterminado"
-#: templates/users.php:55 templates/users.php:138
+#: templates/users.php:42 templates/users.php:138
+msgid "Unlimited"
+msgstr "Ilimitado"
+
+#: templates/users.php:60 templates/users.php:153
msgid "Other"
msgstr "Otro"
-#: templates/users.php:80 templates/users.php:112
+#: templates/users.php:85 templates/users.php:117
msgid "Group Admin"
msgstr "Grupo admin"
-#: templates/users.php:82
-msgid "Quota"
-msgstr "Cuota"
+#: templates/users.php:87
+msgid "Storage"
+msgstr "Alamacenamiento"
-#: templates/users.php:146
+#: templates/users.php:133
+msgid "Default"
+msgstr "Predeterminado"
+
+#: templates/users.php:161
msgid "Delete"
msgstr "Eliminar"
diff --git a/l10n/es/user_webdavauth.po b/l10n/es/user_webdavauth.po
index e6ff0da90b..8eec33bde1 100644
--- a/l10n/es/user_webdavauth.po
+++ b/l10n/es/user_webdavauth.po
@@ -4,13 +4,14 @@
#
# Translators:
# Art O. Pal , 2012.
+# , 2012.
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-12-20 00:11+0100\n"
-"PO-Revision-Date: 2012-12-19 23:12+0000\n"
-"Last-Translator: I Robot \n"
+"POT-Creation-Date: 2012-12-30 00:04+0100\n"
+"PO-Revision-Date: 2012-12-29 19:17+0000\n"
+"Last-Translator: pggx999 \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"
@@ -20,11 +21,11 @@ msgstr ""
#: templates/settings.php:4
msgid "URL: http://"
-msgstr ""
+msgstr "URL: http://"
#: templates/settings.php:6
msgid ""
"ownCloud will send the user credentials to this URL is interpret http 401 "
"and http 403 as credentials wrong and all other codes as credentials "
"correct."
-msgstr ""
+msgstr "ownCloud enviará al usuario las interpretaciones 401 y 403 a esta URL como incorrectas y todas las otras credenciales como correctas"
diff --git a/l10n/es_AR/core.po b/l10n/es_AR/core.po
index f00739d659..43ae151a75 100644
--- a/l10n/es_AR/core.po
+++ b/l10n/es_AR/core.po
@@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-12-13 00:17+0100\n"
-"PO-Revision-Date: 2012-12-12 23:17+0000\n"
+"POT-Creation-Date: 2013-01-07 00:04+0100\n"
+"PO-Revision-Date: 2013-01-06 23:05+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n"
"MIME-Version: 1.0\n"
@@ -22,26 +22,26 @@ msgstr ""
#: ajax/share.php:84
#, php-format
msgid "User %s shared a file with you"
-msgstr ""
+msgstr "El usurario %s compartió un archivo con vos."
#: ajax/share.php:86
#, php-format
msgid "User %s shared a folder with you"
-msgstr ""
+msgstr "El usurario %s compartió una carpeta con vos."
#: ajax/share.php:88
#, php-format
msgid ""
"User %s shared the file \"%s\" with you. It is available for download here: "
"%s"
-msgstr ""
+msgstr "El usuario %s compartió el archivo \"%s\" con vos. Está disponible para su descarga aquí: %s"
#: ajax/share.php:90
#, php-format
msgid ""
"User %s shared the folder \"%s\" with you. It is available for download "
"here: %s"
-msgstr ""
+msgstr "El usuario %s compartió el archivo \"%s\" con vos. Está disponible para su descarga aquí: %s"
#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25
msgid "Category type not provided."
@@ -163,8 +163,8 @@ msgid "The object type is not specified."
msgstr "El tipo de objeto no esta especificado. "
#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136
-#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541
-#: js/share.js:553
+#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554
+#: js/share.js:566
msgid "Error"
msgstr "Error"
@@ -176,7 +176,7 @@ msgstr "El nombre de la aplicación no esta especificado."
msgid "The required file {file} is not installed!"
msgstr "¡El archivo requerido {file} no está instalado!"
-#: js/share.js:124 js/share.js:581
+#: js/share.js:124 js/share.js:594
msgid "Error while sharing"
msgstr "Error al compartir"
@@ -204,22 +204,22 @@ msgstr "Compartir con"
msgid "Share with link"
msgstr "Compartir con link"
-#: js/share.js:164
+#: js/share.js:166
msgid "Password protect"
msgstr "Proteger con contraseña "
-#: js/share.js:168 templates/installation.php:42 templates/login.php:24
+#: js/share.js:168 templates/installation.php:44 templates/login.php:35
#: templates/verify.php:13
msgid "Password"
msgstr "Contraseña"
#: js/share.js:172
msgid "Email link to person"
-msgstr ""
+msgstr "Enviar el link por e-mail."
#: js/share.js:173
msgid "Send"
-msgstr ""
+msgstr "Enviar"
#: js/share.js:177
msgid "Set expiration date"
@@ -273,25 +273,25 @@ msgstr "borrar"
msgid "share"
msgstr "compartir"
-#: js/share.js:353 js/share.js:528 js/share.js:530
+#: js/share.js:356 js/share.js:541
msgid "Password protected"
msgstr "Protegido por contraseña"
-#: js/share.js:541
+#: js/share.js:554
msgid "Error unsetting expiration date"
msgstr "Error al remover la fecha de caducidad"
-#: js/share.js:553
+#: js/share.js:566
msgid "Error setting expiration date"
msgstr "Error al asignar fecha de vencimiento"
-#: js/share.js:568
+#: js/share.js:581
msgid "Sending ..."
-msgstr ""
+msgstr "Enviando..."
-#: js/share.js:579
+#: js/share.js:592
msgid "Email sent"
-msgstr ""
+msgstr "Email enviado"
#: lostpassword/controller.php:47
msgid "ownCloud password reset"
@@ -313,8 +313,8 @@ msgstr "Reiniciar envío de email."
msgid "Request failed!"
msgstr "Error en el pedido!"
-#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38
-#: templates/login.php:20
+#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39
+#: templates/login.php:28
msgid "Username"
msgstr "Nombre de usuario"
@@ -403,44 +403,44 @@ msgstr "Tu directorio de datos y tus archivos son probablemente accesibles desde
msgid "Create an admin account "
msgstr "Crear una cuenta de administrador "
-#: templates/installation.php:48
+#: templates/installation.php:50
msgid "Advanced"
msgstr "Avanzado"
-#: templates/installation.php:50
+#: templates/installation.php:52
msgid "Data folder"
msgstr "Directorio de almacenamiento"
-#: templates/installation.php:57
+#: templates/installation.php:59
msgid "Configure the database"
msgstr "Configurar la base de datos"
-#: templates/installation.php:62 templates/installation.php:73
-#: templates/installation.php:83 templates/installation.php:93
+#: templates/installation.php:64 templates/installation.php:75
+#: templates/installation.php:85 templates/installation.php:95
msgid "will be used"
msgstr "se utilizarán"
-#: templates/installation.php:105
+#: templates/installation.php:107
msgid "Database user"
msgstr "Usuario de la base de datos"
-#: templates/installation.php:109
+#: templates/installation.php:111
msgid "Database password"
msgstr "Contraseña de la base de datos"
-#: templates/installation.php:113
+#: templates/installation.php:115
msgid "Database name"
msgstr "Nombre de la base de datos"
-#: templates/installation.php:121
+#: templates/installation.php:123
msgid "Database tablespace"
msgstr "Espacio de tablas de la base de datos"
-#: templates/installation.php:127
+#: templates/installation.php:129
msgid "Database host"
msgstr "Host de la base de datos"
-#: templates/installation.php:132
+#: templates/installation.php:134
msgid "Finish setup"
msgstr "Completar la instalación"
@@ -528,29 +528,29 @@ msgstr "servicios web sobre los que tenés control"
msgid "Log out"
msgstr "Cerrar la sesión"
-#: templates/login.php:8
+#: templates/login.php:10
msgid "Automatic logon rejected!"
msgstr "¡El inicio de sesión automático fue rechazado!"
-#: templates/login.php:9
+#: templates/login.php:11
msgid ""
"If you did not change your password recently, your account may be "
"compromised!"
msgstr "¡Si no cambiaste tu contraseña recientemente, puede ser que tu cuenta esté comprometida!"
-#: templates/login.php:10
+#: templates/login.php:13
msgid "Please change your password to secure your account again."
msgstr "Por favor, cambiá tu contraseña para fortalecer nuevamente la seguridad de tu cuenta."
-#: templates/login.php:15
+#: templates/login.php:19
msgid "Lost your password?"
msgstr "¿Perdiste tu contraseña?"
-#: templates/login.php:27
+#: templates/login.php:39
msgid "remember"
msgstr "recordame"
-#: templates/login.php:28
+#: templates/login.php:41
msgid "Log in"
msgstr "Entrar"
@@ -566,6 +566,11 @@ msgstr "anterior"
msgid "next"
msgstr "siguiente"
+#: templates/update.php:3
+#, php-format
+msgid "Updating ownCloud to version %s, this may take a while."
+msgstr ""
+
#: templates/verify.php:5
msgid "Security Warning!"
msgstr "¡Advertencia de seguridad!"
diff --git a/l10n/es_AR/files.po b/l10n/es_AR/files.po
index 551f3b477b..54b39b3cc7 100644
--- a/l10n/es_AR/files.po
+++ b/l10n/es_AR/files.po
@@ -3,15 +3,15 @@
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
-# Agustin Ferrario , 2012.
+# Agustin Ferrario , 2012-2013.
# , 2012.
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-12-11 00:04+0100\n"
-"PO-Revision-Date: 2012-12-10 00:37+0000\n"
-"Last-Translator: Agustin Ferrario \n"
+"POT-Creation-Date: 2013-01-07 00:04+0100\n"
+"PO-Revision-Date: 2013-01-06 23:05+0000\n"
+"Last-Translator: I Robot \n"
"Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -19,37 +19,49 @@ msgstr ""
"Language: es_AR\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: ajax/upload.php:20
+#: ajax/upload.php:14
+msgid "No file was uploaded. Unknown error"
+msgstr "El archivo no fue subido. Error desconocido"
+
+#: ajax/upload.php:21
msgid "There is no error, the file uploaded with success"
msgstr "No se han producido errores, el archivo se ha subido con éxito"
-#: ajax/upload.php:21
+#: ajax/upload.php:22
msgid ""
"The uploaded file exceeds the upload_max_filesize directive in php.ini: "
msgstr "El archivo que intentás subir excede el tamaño definido por upload_max_filesize en el php.ini:"
-#: ajax/upload.php:23
+#: ajax/upload.php:24
msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form"
msgstr "El archivo que intentás subir sobrepasa el tamaño definido por la variable MAX_FILE_SIZE especificada en el formulario HTML"
-#: ajax/upload.php:25
+#: ajax/upload.php:26
msgid "The uploaded file was only partially uploaded"
msgstr "El archivo que intentás subir solo se subió parcialmente"
-#: ajax/upload.php:26
+#: ajax/upload.php:27
msgid "No file was uploaded"
msgstr "El archivo no fue subido"
-#: ajax/upload.php:27
+#: ajax/upload.php:28
msgid "Missing a temporary folder"
msgstr "Falta un directorio temporal"
-#: ajax/upload.php:28
+#: ajax/upload.php:29
msgid "Failed to write to disk"
msgstr "Error al escribir en el disco"
+#: ajax/upload.php:45
+msgid "Not enough space available"
+msgstr "No hay suficiente espacio disponible"
+
+#: ajax/upload.php:69
+msgid "Invalid directory."
+msgstr "Directorio invalido."
+
#: appinfo/app.php:10
msgid "Files"
msgstr "Archivos"
@@ -102,86 +114,94 @@ msgstr "{files} se dejaron de compartir"
msgid "deleted {files}"
msgstr "{files} borrados"
-#: js/files.js:33
+#: js/files.js:31
+msgid "'.' is an invalid file name."
+msgstr ""
+
+#: js/files.js:36
+msgid "File name cannot be empty."
+msgstr ""
+
+#: js/files.js:45
msgid ""
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not "
"allowed."
msgstr "Nombre invalido, '\\', '/', '<', '>', ':', '\"', '|', '?' y '*' no están permitidos."
-#: js/files.js:174
+#: js/files.js:186
msgid "generating ZIP-file, it may take some time."
msgstr "generando un archivo ZIP, puede llevar un tiempo."
-#: js/files.js:209
+#: js/files.js:224
msgid "Unable to upload your file as it is a directory or has 0 bytes"
msgstr "No fue posible subir el archivo porque es un directorio o porque su tamaño es 0 bytes"
-#: js/files.js:209
+#: js/files.js:224
msgid "Upload Error"
msgstr "Error al subir el archivo"
-#: js/files.js:226
+#: js/files.js:241
msgid "Close"
msgstr "Cerrar"
-#: js/files.js:245 js/files.js:359 js/files.js:389
+#: js/files.js:260 js/files.js:374 js/files.js:404
msgid "Pending"
msgstr "Pendiente"
-#: js/files.js:265
+#: js/files.js:280
msgid "1 file uploading"
msgstr "Subiendo 1 archivo"
-#: js/files.js:268 js/files.js:322 js/files.js:337
+#: js/files.js:283 js/files.js:337 js/files.js:352
msgid "{count} files uploading"
msgstr "Subiendo {count} archivos"
-#: js/files.js:340 js/files.js:373
+#: js/files.js:355 js/files.js:388
msgid "Upload cancelled."
msgstr "La subida fue cancelada"
-#: js/files.js:442
+#: js/files.js:457
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr "La subida del archivo está en proceso. Si salís de la página ahora, la subida se cancelará."
-#: js/files.js:512
+#: js/files.js:527
msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud"
msgstr "Nombre del directorio inválido. Usar \"Shared\" está reservado por ownCloud."
-#: js/files.js:693
+#: js/files.js:711
msgid "{count} files scanned"
msgstr "{count} archivos escaneados"
-#: js/files.js:701
+#: js/files.js:719
msgid "error while scanning"
msgstr "error mientras se escaneaba"
-#: js/files.js:774 templates/index.php:66
+#: js/files.js:792 templates/index.php:66
msgid "Name"
msgstr "Nombre"
-#: js/files.js:775 templates/index.php:77
+#: js/files.js:793 templates/index.php:77
msgid "Size"
msgstr "Tamaño"
-#: js/files.js:776 templates/index.php:79
+#: js/files.js:794 templates/index.php:79
msgid "Modified"
msgstr "Modificado"
-#: js/files.js:803
+#: js/files.js:813
msgid "1 folder"
msgstr "1 directorio"
-#: js/files.js:805
+#: js/files.js:815
msgid "{count} folders"
msgstr "{count} directorios"
-#: js/files.js:813
+#: js/files.js:823
msgid "1 file"
msgstr "1 archivo"
-#: js/files.js:815
+#: js/files.js:825
msgid "{count} files"
msgstr "{count} archivos"
@@ -193,27 +213,27 @@ msgstr "Tratamiento de archivos"
msgid "Maximum upload size"
msgstr "Tamaño máximo de subida"
-#: templates/admin.php:9
+#: templates/admin.php:10
msgid "max. possible: "
msgstr "máx. posible:"
-#: templates/admin.php:12
+#: templates/admin.php:15
msgid "Needed for multi-file and folder downloads."
msgstr "Es necesario para descargas multi-archivo y de carpetas"
-#: templates/admin.php:14
+#: templates/admin.php:17
msgid "Enable ZIP-download"
msgstr "Habilitar descarga en formato ZIP"
-#: templates/admin.php:17
+#: templates/admin.php:20
msgid "0 is unlimited"
msgstr "0 significa ilimitado"
-#: templates/admin.php:19
+#: templates/admin.php:22
msgid "Maximum input size for ZIP files"
msgstr "Tamaño máximo para archivos ZIP de entrada"
-#: templates/admin.php:23
+#: templates/admin.php:26
msgid "Save"
msgstr "Guardar"
diff --git a/l10n/es_AR/settings.po b/l10n/es_AR/settings.po
index d0650773d3..5e4d44648a 100644
--- a/l10n/es_AR/settings.po
+++ b/l10n/es_AR/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-12-21 00:10+0100\n"
-"PO-Revision-Date: 2012-12-19 23:20+0000\n"
-"Last-Translator: I Robot \n"
+"POT-Creation-Date: 2012-12-31 00:04+0100\n"
+"PO-Revision-Date: 2012-12-30 00:45+0000\n"
+"Last-Translator: Agustin Ferrario \n"
"Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -119,27 +119,27 @@ msgstr " -licenciado por "
#: templates/help.php:3
msgid "User Documentation"
-msgstr ""
+msgstr "Documentación de Usuario"
#: templates/help.php:4
msgid "Administrator Documentation"
-msgstr ""
+msgstr "Documentación de Administrador"
#: templates/help.php:6
msgid "Online Documentation"
-msgstr ""
+msgstr "Documentación en linea"
#: templates/help.php:7
msgid "Forum"
-msgstr ""
+msgstr "Foro"
#: templates/help.php:9
msgid "Bugtracker"
-msgstr ""
+msgstr "Informar errores"
#: templates/help.php:11
msgid "Commercial Support"
-msgstr ""
+msgstr "Soporte comercial"
#: templates/personal.php:8
#, php-format
@@ -152,17 +152,17 @@ msgstr "Clientes"
#: templates/personal.php:13
msgid "Download Desktop Clients"
-msgstr ""
+msgstr "Descargar clientes de escritorio"
#: templates/personal.php:14
msgid "Download Android Client"
-msgstr ""
+msgstr "Descargar cliente de Android"
#: templates/personal.php:15
msgid "Download iOS Client"
-msgstr ""
+msgstr "Descargar cliente de iOS"
-#: templates/personal.php:21 templates/users.php:23 templates/users.php:77
+#: templates/personal.php:21 templates/users.php:23 templates/users.php:82
msgid "Password"
msgstr "Contraseña"
@@ -212,15 +212,15 @@ msgstr "Ayudanos a traducir"
#: templates/personal.php:52
msgid "WebDAV"
-msgstr ""
+msgstr "WebDAV"
#: templates/personal.php:54
msgid "Use this address to connect to your ownCloud in your file manager"
-msgstr ""
+msgstr "Utiliza esta dirección para conectarte con ownCloud en tu Administrador de Archivos"
#: templates/personal.php:63
msgid "Version"
-msgstr ""
+msgstr "Versión"
#: templates/personal.php:65
msgid ""
@@ -232,11 +232,11 @@ msgid ""
"License\">AGPL."
msgstr "Desarrollado por la comunidad ownCloud , el código fuente está bajo licencia AGPL ."
-#: templates/users.php:21 templates/users.php:76
+#: templates/users.php:21 templates/users.php:81
msgid "Name"
msgstr "Nombre"
-#: templates/users.php:26 templates/users.php:78 templates/users.php:98
+#: templates/users.php:26 templates/users.php:83 templates/users.php:103
msgid "Groups"
msgstr "Grupos"
@@ -245,21 +245,29 @@ msgid "Create"
msgstr "Crear"
#: templates/users.php:35
-msgid "Default Quota"
-msgstr "Cuota predeterminada"
+msgid "Default Storage"
+msgstr "Almacenamiento Predeterminado"
-#: templates/users.php:55 templates/users.php:138
+#: templates/users.php:42 templates/users.php:138
+msgid "Unlimited"
+msgstr "Ilimitado"
+
+#: templates/users.php:60 templates/users.php:153
msgid "Other"
msgstr "Otro"
-#: templates/users.php:80 templates/users.php:112
+#: templates/users.php:85 templates/users.php:117
msgid "Group Admin"
msgstr "Grupo Administrador"
-#: templates/users.php:82
-msgid "Quota"
-msgstr "Cuota"
+#: templates/users.php:87
+msgid "Storage"
+msgstr "Almacenamiento"
-#: templates/users.php:146
+#: templates/users.php:133
+msgid "Default"
+msgstr "Predeterminado"
+
+#: templates/users.php:161
msgid "Delete"
msgstr "Borrar"
diff --git a/l10n/es_AR/user_ldap.po b/l10n/es_AR/user_ldap.po
index 80ab2e1f1f..4ceff26caa 100644
--- a/l10n/es_AR/user_ldap.po
+++ b/l10n/es_AR/user_ldap.po
@@ -3,14 +3,15 @@
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
+# Agustin Ferrario , 2013.
# , 2012.
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-12-15 00:11+0100\n"
-"PO-Revision-Date: 2012-12-14 23:11+0000\n"
-"Last-Translator: I Robot \n"
+"POT-Creation-Date: 2013-01-04 13:22+0100\n"
+"PO-Revision-Date: 2013-01-04 05:53+0000\n"
+"Last-Translator: Agustin Ferrario \n"
"Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -23,13 +24,13 @@ msgid ""
"Warning: Apps user_ldap and user_webdavauth are incompatible. You may"
" experience unexpected behaviour. Please ask your system administrator to "
"disable one of them."
-msgstr ""
+msgstr "Advertencia: Los Apps user_ldap y user_webdavauth son incompatibles. Puede que experimente un comportamiento inesperado. Pregunte al administrador del sistema para desactivar uno de ellos."
#: templates/settings.php:11
msgid ""
"Warning: The PHP LDAP module needs is not installed, the backend will"
" not work. Please ask your system administrator to install it."
-msgstr ""
+msgstr "Advertencia: El módulo PHP LDAP necesario no está instalado, el sistema no funcionará. Pregunte al administrador del sistema para instalarlo."
#: templates/settings.php:15
msgid "Host"
diff --git a/l10n/es_AR/user_webdavauth.po b/l10n/es_AR/user_webdavauth.po
index e3165d3da3..5eb7c5b084 100644
--- a/l10n/es_AR/user_webdavauth.po
+++ b/l10n/es_AR/user_webdavauth.po
@@ -3,14 +3,15 @@
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
+# Agustin Ferrario , 2012.
# , 2012.
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-12-20 00:11+0100\n"
-"PO-Revision-Date: 2012-12-19 23:12+0000\n"
-"Last-Translator: I Robot \n"
+"POT-Creation-Date: 2012-12-30 00:04+0100\n"
+"PO-Revision-Date: 2012-12-29 21:34+0000\n"
+"Last-Translator: Agustin Ferrario \n"
"Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -20,11 +21,11 @@ msgstr ""
#: templates/settings.php:4
msgid "URL: http://"
-msgstr ""
+msgstr "URL: http://"
#: templates/settings.php:6
msgid ""
"ownCloud will send the user credentials to this URL is interpret http 401 "
"and http 403 as credentials wrong and all other codes as credentials "
"correct."
-msgstr ""
+msgstr "ownCloud enviará las credenciales a esta dirección, si son interpretadas como http 401 o http 403 las credenciales son erroneas; todos los otros códigos indican que las credenciales son correctas."
diff --git a/l10n/et_EE/core.po b/l10n/et_EE/core.po
index 3d6dcf500f..7953c94046 100644
--- a/l10n/et_EE/core.po
+++ b/l10n/et_EE/core.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-12-13 00:17+0100\n"
-"PO-Revision-Date: 2012-12-12 23:17+0000\n"
+"POT-Creation-Date: 2013-01-07 00:04+0100\n"
+"PO-Revision-Date: 2013-01-06 23:04+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n"
"MIME-Version: 1.0\n"
@@ -162,8 +162,8 @@ msgid "The object type is not specified."
msgstr ""
#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136
-#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541
-#: js/share.js:553
+#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554
+#: js/share.js:566
msgid "Error"
msgstr "Viga"
@@ -175,7 +175,7 @@ msgstr ""
msgid "The required file {file} is not installed!"
msgstr ""
-#: js/share.js:124 js/share.js:581
+#: js/share.js:124 js/share.js:594
msgid "Error while sharing"
msgstr "Viga jagamisel"
@@ -203,11 +203,11 @@ msgstr "Jaga"
msgid "Share with link"
msgstr "Jaga lingiga"
-#: js/share.js:164
+#: js/share.js:166
msgid "Password protect"
msgstr "Parooliga kaitstud"
-#: js/share.js:168 templates/installation.php:42 templates/login.php:24
+#: js/share.js:168 templates/installation.php:44 templates/login.php:35
#: templates/verify.php:13
msgid "Password"
msgstr "Parool"
@@ -272,23 +272,23 @@ msgstr "kustuta"
msgid "share"
msgstr "jaga"
-#: js/share.js:353 js/share.js:528 js/share.js:530
+#: js/share.js:356 js/share.js:541
msgid "Password protected"
msgstr "Parooliga kaitstud"
-#: js/share.js:541
+#: js/share.js:554
msgid "Error unsetting expiration date"
msgstr "Viga aegumise kuupäeva eemaldamisel"
-#: js/share.js:553
+#: js/share.js:566
msgid "Error setting expiration date"
msgstr "Viga aegumise kuupäeva määramisel"
-#: js/share.js:568
+#: js/share.js:581
msgid "Sending ..."
msgstr ""
-#: js/share.js:579
+#: js/share.js:592
msgid "Email sent"
msgstr ""
@@ -312,8 +312,8 @@ msgstr "Taastamise e-kiri on saadetud."
msgid "Request failed!"
msgstr "Päring ebaõnnestus!"
-#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38
-#: templates/login.php:20
+#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39
+#: templates/login.php:28
msgid "Username"
msgstr "Kasutajanimi"
@@ -402,44 +402,44 @@ msgstr ""
msgid "Create an admin account "
msgstr "Loo admini konto "
-#: templates/installation.php:48
+#: templates/installation.php:50
msgid "Advanced"
msgstr "Lisavalikud"
-#: templates/installation.php:50
+#: templates/installation.php:52
msgid "Data folder"
msgstr "Andmete kaust"
-#: templates/installation.php:57
+#: templates/installation.php:59
msgid "Configure the database"
msgstr "Seadista andmebaasi"
-#: templates/installation.php:62 templates/installation.php:73
-#: templates/installation.php:83 templates/installation.php:93
+#: templates/installation.php:64 templates/installation.php:75
+#: templates/installation.php:85 templates/installation.php:95
msgid "will be used"
msgstr "kasutatakse"
-#: templates/installation.php:105
+#: templates/installation.php:107
msgid "Database user"
msgstr "Andmebaasi kasutaja"
-#: templates/installation.php:109
+#: templates/installation.php:111
msgid "Database password"
msgstr "Andmebaasi parool"
-#: templates/installation.php:113
+#: templates/installation.php:115
msgid "Database name"
msgstr "Andmebasi nimi"
-#: templates/installation.php:121
+#: templates/installation.php:123
msgid "Database tablespace"
msgstr "Andmebaasi tabeliruum"
-#: templates/installation.php:127
+#: templates/installation.php:129
msgid "Database host"
msgstr "Andmebaasi host"
-#: templates/installation.php:132
+#: templates/installation.php:134
msgid "Finish setup"
msgstr "Lõpeta seadistamine"
@@ -527,29 +527,29 @@ msgstr "veebiteenused sinu kontrolli all"
msgid "Log out"
msgstr "Logi välja"
-#: templates/login.php:8
+#: templates/login.php:10
msgid "Automatic logon rejected!"
msgstr "Automaatne sisselogimine lükati tagasi!"
-#: templates/login.php:9
+#: templates/login.php:11
msgid ""
"If you did not change your password recently, your account may be "
"compromised!"
msgstr "Kui sa ei muutnud oma parooli hiljut, siis võib su kasutajakonto olla ohustatud!"
-#: templates/login.php:10
+#: templates/login.php:13
msgid "Please change your password to secure your account again."
msgstr "Palun muuda parooli, et oma kasutajakonto uuesti turvata."
-#: templates/login.php:15
+#: templates/login.php:19
msgid "Lost your password?"
msgstr "Kaotasid oma parooli?"
-#: templates/login.php:27
+#: templates/login.php:39
msgid "remember"
msgstr "pea meeles"
-#: templates/login.php:28
+#: templates/login.php:41
msgid "Log in"
msgstr "Logi sisse"
@@ -565,6 +565,11 @@ msgstr "eelm"
msgid "next"
msgstr "järgm"
+#: templates/update.php:3
+#, php-format
+msgid "Updating ownCloud to version %s, this may take a while."
+msgstr ""
+
#: templates/verify.php:5
msgid "Security Warning!"
msgstr "turvahoiatus!"
diff --git a/l10n/et_EE/files.po b/l10n/et_EE/files.po
index 9c1c0fadb7..0f0c412ea0 100644
--- a/l10n/et_EE/files.po
+++ b/l10n/et_EE/files.po
@@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-12-01 00:01+0100\n"
-"PO-Revision-Date: 2012-11-30 23:02+0000\n"
+"POT-Creation-Date: 2013-01-07 00:04+0100\n"
+"PO-Revision-Date: 2013-01-06 23:05+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n"
"MIME-Version: 1.0\n"
@@ -19,46 +19,58 @@ msgstr ""
"Language: et_EE\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: ajax/upload.php:20
+#: ajax/upload.php:14
+msgid "No file was uploaded. Unknown error"
+msgstr "Ühtegi faili ei laetud üles. Tundmatu viga"
+
+#: ajax/upload.php:21
msgid "There is no error, the file uploaded with success"
msgstr "Ühtegi viga pole, fail on üles laetud"
-#: ajax/upload.php:21
+#: ajax/upload.php:22
msgid ""
"The uploaded file exceeds the upload_max_filesize directive in php.ini: "
msgstr ""
-#: ajax/upload.php:23
+#: ajax/upload.php:24
msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form"
msgstr "Üles laetud faili suurus ületab HTML vormis määratud upload_max_filesize suuruse"
-#: ajax/upload.php:25
+#: ajax/upload.php:26
msgid "The uploaded file was only partially uploaded"
msgstr "Fail laeti üles ainult osaliselt"
-#: ajax/upload.php:26
+#: ajax/upload.php:27
msgid "No file was uploaded"
msgstr "Ühtegi faili ei laetud üles"
-#: ajax/upload.php:27
+#: ajax/upload.php:28
msgid "Missing a temporary folder"
msgstr "Ajutiste failide kaust puudub"
-#: ajax/upload.php:28
+#: ajax/upload.php:29
msgid "Failed to write to disk"
msgstr "Kettale kirjutamine ebaõnnestus"
+#: ajax/upload.php:45
+msgid "Not enough space available"
+msgstr ""
+
+#: ajax/upload.php:69
+msgid "Invalid directory."
+msgstr ""
+
#: appinfo/app.php:10
msgid "Files"
msgstr "Failid"
-#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84
+#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85
msgid "Unshare"
msgstr "Lõpeta jagamine"
-#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90
+#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91
msgid "Delete"
msgstr "Kustuta"
@@ -66,122 +78,130 @@ msgstr "Kustuta"
msgid "Rename"
msgstr "ümber"
-#: js/filelist.js:201 js/filelist.js:203
+#: js/filelist.js:199 js/filelist.js:201
msgid "{new_name} already exists"
msgstr "{new_name} on juba olemas"
-#: js/filelist.js:201 js/filelist.js:203
+#: js/filelist.js:199 js/filelist.js:201
msgid "replace"
msgstr "asenda"
-#: js/filelist.js:201
+#: js/filelist.js:199
msgid "suggest name"
msgstr "soovita nime"
-#: js/filelist.js:201 js/filelist.js:203
+#: js/filelist.js:199 js/filelist.js:201
msgid "cancel"
msgstr "loobu"
-#: js/filelist.js:250
+#: js/filelist.js:248
msgid "replaced {new_name}"
msgstr "asendatud nimega {new_name}"
-#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286
+#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284
msgid "undo"
msgstr "tagasi"
-#: js/filelist.js:252
+#: js/filelist.js:250
msgid "replaced {new_name} with {old_name}"
msgstr "asendas nime {old_name} nimega {new_name}"
-#: js/filelist.js:284
+#: js/filelist.js:282
msgid "unshared {files}"
msgstr "jagamata {files}"
-#: js/filelist.js:286
+#: js/filelist.js:284
msgid "deleted {files}"
msgstr "kustutatud {files}"
-#: js/files.js:33
+#: js/files.js:31
+msgid "'.' is an invalid file name."
+msgstr ""
+
+#: js/files.js:36
+msgid "File name cannot be empty."
+msgstr ""
+
+#: js/files.js:45
msgid ""
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not "
"allowed."
msgstr "Vigane nimi, '\\', '/', '<', '>', ':', '\"', '|', '?' ja '*' pole lubatud."
-#: js/files.js:183
+#: js/files.js:186
msgid "generating ZIP-file, it may take some time."
msgstr "ZIP-faili loomine, see võib veidi aega võtta."
-#: js/files.js:218
+#: js/files.js:224
msgid "Unable to upload your file as it is a directory or has 0 bytes"
msgstr "Sinu faili üleslaadimine ebaõnnestus, kuna see on kaust või selle suurus on 0 baiti"
-#: js/files.js:218
+#: js/files.js:224
msgid "Upload Error"
msgstr "Üleslaadimise viga"
-#: js/files.js:235
+#: js/files.js:241
msgid "Close"
msgstr "Sulge"
-#: js/files.js:254 js/files.js:368 js/files.js:398
+#: js/files.js:260 js/files.js:374 js/files.js:404
msgid "Pending"
msgstr "Ootel"
-#: js/files.js:274
+#: js/files.js:280
msgid "1 file uploading"
msgstr "1 faili üleslaadimisel"
-#: js/files.js:277 js/files.js:331 js/files.js:346
+#: js/files.js:283 js/files.js:337 js/files.js:352
msgid "{count} files uploading"
msgstr "{count} faili üleslaadimist"
-#: js/files.js:349 js/files.js:382
+#: js/files.js:355 js/files.js:388
msgid "Upload cancelled."
msgstr "Üleslaadimine tühistati."
-#: js/files.js:451
+#: js/files.js:457
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr "Faili üleslaadimine on töös. Lehelt lahkumine katkestab selle üleslaadimise."
-#: js/files.js:523
+#: js/files.js:527
msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud"
msgstr "Vigane kausta nimi. Nime \"Jagatud\" kasutamine on Owncloudi poolt broneeritud "
-#: js/files.js:704
+#: js/files.js:711
msgid "{count} files scanned"
msgstr "{count} faili skännitud"
-#: js/files.js:712
+#: js/files.js:719
msgid "error while scanning"
msgstr "viga skännimisel"
-#: js/files.js:785 templates/index.php:65
+#: js/files.js:792 templates/index.php:66
msgid "Name"
msgstr "Nimi"
-#: js/files.js:786 templates/index.php:76
+#: js/files.js:793 templates/index.php:77
msgid "Size"
msgstr "Suurus"
-#: js/files.js:787 templates/index.php:78
+#: js/files.js:794 templates/index.php:79
msgid "Modified"
msgstr "Muudetud"
-#: js/files.js:814
+#: js/files.js:813
msgid "1 folder"
msgstr "1 kaust"
-#: js/files.js:816
+#: js/files.js:815
msgid "{count} folders"
msgstr "{count} kausta"
-#: js/files.js:824
+#: js/files.js:823
msgid "1 file"
msgstr "1 fail"
-#: js/files.js:826
+#: js/files.js:825
msgid "{count} files"
msgstr "{count} faili"
@@ -193,27 +213,27 @@ msgstr "Failide käsitlemine"
msgid "Maximum upload size"
msgstr "Maksimaalne üleslaadimise suurus"
-#: templates/admin.php:9
+#: templates/admin.php:10
msgid "max. possible: "
msgstr "maks. võimalik: "
-#: templates/admin.php:12
+#: templates/admin.php:15
msgid "Needed for multi-file and folder downloads."
msgstr "Vajalik mitme faili ja kausta allalaadimiste jaoks."
-#: templates/admin.php:14
+#: templates/admin.php:17
msgid "Enable ZIP-download"
msgstr "Luba ZIP-ina allalaadimine"
-#: templates/admin.php:17
+#: templates/admin.php:20
msgid "0 is unlimited"
msgstr "0 tähendab piiramatut"
-#: templates/admin.php:19
+#: templates/admin.php:22
msgid "Maximum input size for ZIP files"
msgstr "Maksimaalne ZIP-faili sisestatava faili suurus"
-#: templates/admin.php:23
+#: templates/admin.php:26
msgid "Save"
msgstr "Salvesta"
@@ -241,28 +261,28 @@ msgstr "Lae üles"
msgid "Cancel upload"
msgstr "Tühista üleslaadimine"
-#: templates/index.php:57
+#: templates/index.php:58
msgid "Nothing in here. Upload something!"
msgstr "Siin pole midagi. Lae midagi üles!"
-#: templates/index.php:71
+#: templates/index.php:72
msgid "Download"
msgstr "Lae alla"
-#: templates/index.php:103
+#: templates/index.php:104
msgid "Upload too large"
msgstr "Üleslaadimine on liiga suur"
-#: templates/index.php:105
+#: templates/index.php:106
msgid ""
"The files you are trying to upload exceed the maximum size for file uploads "
"on this server."
msgstr "Failid, mida sa proovid üles laadida, ületab serveri poolt üleslaetavatele failidele määratud maksimaalse suuruse."
-#: templates/index.php:110
+#: templates/index.php:111
msgid "Files are being scanned, please wait."
msgstr "Faile skannitakse, palun oota"
-#: templates/index.php:113
+#: templates/index.php:114
msgid "Current scanning"
msgstr "Praegune skannimine"
diff --git a/l10n/et_EE/settings.po b/l10n/et_EE/settings.po
index 0212408126..42f157b4e7 100644
--- a/l10n/et_EE/settings.po
+++ b/l10n/et_EE/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-12-21 00:10+0100\n"
-"PO-Revision-Date: 2012-12-19 23:20+0000\n"
+"POT-Creation-Date: 2012-12-30 00:04+0100\n"
+"PO-Revision-Date: 2012-12-29 23:05+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n"
"MIME-Version: 1.0\n"
@@ -162,7 +162,7 @@ msgstr ""
msgid "Download iOS Client"
msgstr ""
-#: templates/personal.php:21 templates/users.php:23 templates/users.php:77
+#: templates/personal.php:21 templates/users.php:23 templates/users.php:82
msgid "Password"
msgstr "Parool"
@@ -232,11 +232,11 @@ msgid ""
"License\">AGPL."
msgstr ""
-#: templates/users.php:21 templates/users.php:76
+#: templates/users.php:21 templates/users.php:81
msgid "Name"
msgstr "Nimi"
-#: templates/users.php:26 templates/users.php:78 templates/users.php:98
+#: templates/users.php:26 templates/users.php:83 templates/users.php:103
msgid "Groups"
msgstr "Grupid"
@@ -245,21 +245,29 @@ msgid "Create"
msgstr "Lisa"
#: templates/users.php:35
-msgid "Default Quota"
-msgstr "Vaikimisi kvoot"
+msgid "Default Storage"
+msgstr ""
-#: templates/users.php:55 templates/users.php:138
+#: templates/users.php:42 templates/users.php:138
+msgid "Unlimited"
+msgstr ""
+
+#: templates/users.php:60 templates/users.php:153
msgid "Other"
msgstr "Muu"
-#: templates/users.php:80 templates/users.php:112
+#: templates/users.php:85 templates/users.php:117
msgid "Group Admin"
msgstr "Grupi admin"
-#: templates/users.php:82
-msgid "Quota"
-msgstr "Mahupiir"
+#: templates/users.php:87
+msgid "Storage"
+msgstr ""
-#: templates/users.php:146
+#: templates/users.php:133
+msgid "Default"
+msgstr ""
+
+#: templates/users.php:161
msgid "Delete"
msgstr "Kustuta"
diff --git a/l10n/eu/core.po b/l10n/eu/core.po
index 20402a0498..4825d0400e 100644
--- a/l10n/eu/core.po
+++ b/l10n/eu/core.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-12-14 00:16+0100\n"
-"PO-Revision-Date: 2012-12-13 11:46+0000\n"
-"Last-Translator: Piarres Beobide \n"
+"POT-Creation-Date: 2013-01-07 00:04+0100\n"
+"PO-Revision-Date: 2013-01-06 23:04+0000\n"
+"Last-Translator: I Robot \n"
"Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -164,8 +164,8 @@ msgid "The object type is not specified."
msgstr "Objetu mota ez dago zehaztuta."
#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136
-#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541
-#: js/share.js:553
+#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554
+#: js/share.js:566
msgid "Error"
msgstr "Errorea"
@@ -177,7 +177,7 @@ msgstr "App izena ez dago zehaztuta."
msgid "The required file {file} is not installed!"
msgstr "Beharrezkoa den {file} fitxategia ez dago instalatuta!"
-#: js/share.js:124 js/share.js:581
+#: js/share.js:124 js/share.js:594
msgid "Error while sharing"
msgstr "Errore bat egon da elkarbanatzean"
@@ -205,11 +205,11 @@ msgstr "Elkarbanatu honekin"
msgid "Share with link"
msgstr "Elkarbanatu lotura batekin"
-#: js/share.js:164
+#: js/share.js:166
msgid "Password protect"
msgstr "Babestu pasahitzarekin"
-#: js/share.js:168 templates/installation.php:42 templates/login.php:24
+#: js/share.js:168 templates/installation.php:44 templates/login.php:35
#: templates/verify.php:13
msgid "Password"
msgstr "Pasahitza"
@@ -274,23 +274,23 @@ msgstr "ezabatu"
msgid "share"
msgstr "elkarbanatu"
-#: js/share.js:353 js/share.js:528 js/share.js:530
+#: js/share.js:356 js/share.js:541
msgid "Password protected"
msgstr "Pasahitzarekin babestuta"
-#: js/share.js:541
+#: js/share.js:554
msgid "Error unsetting expiration date"
msgstr "Errorea izan da muga data kentzean"
-#: js/share.js:553
+#: js/share.js:566
msgid "Error setting expiration date"
msgstr "Errore bat egon da muga data ezartzean"
-#: js/share.js:568
+#: js/share.js:581
msgid "Sending ..."
msgstr "Bidaltzen ..."
-#: js/share.js:579
+#: js/share.js:592
msgid "Email sent"
msgstr "Eposta bidalia"
@@ -314,8 +314,8 @@ msgstr "Berrezartzeko eposta bidali da."
msgid "Request failed!"
msgstr "Eskariak huts egin du!"
-#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38
-#: templates/login.php:20
+#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39
+#: templates/login.php:28
msgid "Username"
msgstr "Erabiltzaile izena"
@@ -404,44 +404,44 @@ msgstr "Zure data karpeta eta zure fitxategiak internetetik zuzenean eskuragarri
msgid "Create an admin account "
msgstr "Sortu kudeatzaile kontu bat"
-#: templates/installation.php:48
+#: templates/installation.php:50
msgid "Advanced"
msgstr "Aurreratua"
-#: templates/installation.php:50
+#: templates/installation.php:52
msgid "Data folder"
msgstr "Datuen karpeta"
-#: templates/installation.php:57
+#: templates/installation.php:59
msgid "Configure the database"
msgstr "Konfiguratu datu basea"
-#: templates/installation.php:62 templates/installation.php:73
-#: templates/installation.php:83 templates/installation.php:93
+#: templates/installation.php:64 templates/installation.php:75
+#: templates/installation.php:85 templates/installation.php:95
msgid "will be used"
msgstr "erabiliko da"
-#: templates/installation.php:105
+#: templates/installation.php:107
msgid "Database user"
msgstr "Datubasearen erabiltzailea"
-#: templates/installation.php:109
+#: templates/installation.php:111
msgid "Database password"
msgstr "Datubasearen pasahitza"
-#: templates/installation.php:113
+#: templates/installation.php:115
msgid "Database name"
msgstr "Datubasearen izena"
-#: templates/installation.php:121
+#: templates/installation.php:123
msgid "Database tablespace"
msgstr "Datu basearen taula-lekua"
-#: templates/installation.php:127
+#: templates/installation.php:129
msgid "Database host"
msgstr "Datubasearen hostalaria"
-#: templates/installation.php:132
+#: templates/installation.php:134
msgid "Finish setup"
msgstr "Bukatu konfigurazioa"
@@ -529,29 +529,29 @@ msgstr "web zerbitzuak zure kontrolpean"
msgid "Log out"
msgstr "Saioa bukatu"
-#: templates/login.php:8
+#: templates/login.php:10
msgid "Automatic logon rejected!"
msgstr "Saio hasiera automatikoa ez onartuta!"
-#: templates/login.php:9
+#: templates/login.php:11
msgid ""
"If you did not change your password recently, your account may be "
"compromised!"
msgstr "Zure pasahitza orain dela gutxi ez baduzu aldatu, zure kontua arriskuan egon daiteke!"
-#: templates/login.php:10
+#: templates/login.php:13
msgid "Please change your password to secure your account again."
msgstr "Mesedez aldatu zure pasahitza zure kontua berriz segurtatzeko."
-#: templates/login.php:15
+#: templates/login.php:19
msgid "Lost your password?"
msgstr "Galdu duzu pasahitza?"
-#: templates/login.php:27
+#: templates/login.php:39
msgid "remember"
msgstr "gogoratu"
-#: templates/login.php:28
+#: templates/login.php:41
msgid "Log in"
msgstr "Hasi saioa"
@@ -567,6 +567,11 @@ msgstr "aurrekoa"
msgid "next"
msgstr "hurrengoa"
+#: templates/update.php:3
+#, php-format
+msgid "Updating ownCloud to version %s, this may take a while."
+msgstr ""
+
#: templates/verify.php:5
msgid "Security Warning!"
msgstr "Segurtasun abisua"
diff --git a/l10n/eu/files.po b/l10n/eu/files.po
index fc884c532e..ddd92ff0f3 100644
--- a/l10n/eu/files.po
+++ b/l10n/eu/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-12-14 00:16+0100\n"
-"PO-Revision-Date: 2012-12-13 11:48+0000\n"
-"Last-Translator: Piarres Beobide \n"
+"POT-Creation-Date: 2013-01-07 00:04+0100\n"
+"PO-Revision-Date: 2013-01-06 23:05+0000\n"
+"Last-Translator: I Robot \n"
"Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -20,37 +20,49 @@ msgstr ""
"Language: eu\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: ajax/upload.php:20
+#: ajax/upload.php:14
+msgid "No file was uploaded. Unknown error"
+msgstr "Ez da fitxategirik igo. Errore ezezaguna"
+
+#: ajax/upload.php:21
msgid "There is no error, the file uploaded with success"
msgstr "Ez da arazorik izan, fitxategia ongi igo da"
-#: ajax/upload.php:21
+#: ajax/upload.php:22
msgid ""
"The uploaded file exceeds the upload_max_filesize directive in php.ini: "
msgstr "Igotako fitxategiak php.ini fitxategian ezarritako upload_max_filesize muga gainditu du:"
-#: ajax/upload.php:23
+#: ajax/upload.php:24
msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form"
msgstr "Igotako fitxategiaren tamaina HTML inprimakiko MAX_FILESIZE direktiban adierazitakoa baino handiagoa da"
-#: ajax/upload.php:25
+#: ajax/upload.php:26
msgid "The uploaded file was only partially uploaded"
msgstr "Igotako fitxategiaren zati bat baino gehiago ez da igo"
-#: ajax/upload.php:26
+#: ajax/upload.php:27
msgid "No file was uploaded"
msgstr "Ez da fitxategirik igo"
-#: ajax/upload.php:27
+#: ajax/upload.php:28
msgid "Missing a temporary folder"
msgstr "Aldi baterako karpeta falta da"
-#: ajax/upload.php:28
+#: ajax/upload.php:29
msgid "Failed to write to disk"
msgstr "Errore bat izan da diskoan idazterakoan"
+#: ajax/upload.php:45
+msgid "Not enough space available"
+msgstr ""
+
+#: ajax/upload.php:69
+msgid "Invalid directory."
+msgstr ""
+
#: appinfo/app.php:10
msgid "Files"
msgstr "Fitxategiak"
@@ -103,86 +115,94 @@ msgstr "elkarbanaketa utzita {files}"
msgid "deleted {files}"
msgstr "ezabatuta {files}"
-#: js/files.js:33
+#: js/files.js:31
+msgid "'.' is an invalid file name."
+msgstr ""
+
+#: js/files.js:36
+msgid "File name cannot be empty."
+msgstr ""
+
+#: js/files.js:45
msgid ""
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not "
"allowed."
msgstr "IZen aliogabea, '\\', '/', '<', '>', ':', '\"', '|', '?' eta '*' ez daude baimenduta."
-#: js/files.js:174
+#: js/files.js:186
msgid "generating ZIP-file, it may take some time."
msgstr "ZIP-fitxategia sortzen ari da, denbora har dezake"
-#: js/files.js:209
+#: js/files.js:224
msgid "Unable to upload your file as it is a directory or has 0 bytes"
msgstr "Ezin da zure fitxategia igo, karpeta bat da edo 0 byt ditu"
-#: js/files.js:209
+#: js/files.js:224
msgid "Upload Error"
msgstr "Igotzean errore bat suertatu da"
-#: js/files.js:226
+#: js/files.js:241
msgid "Close"
msgstr "Itxi"
-#: js/files.js:245 js/files.js:359 js/files.js:389
+#: js/files.js:260 js/files.js:374 js/files.js:404
msgid "Pending"
msgstr "Zain"
-#: js/files.js:265
+#: js/files.js:280
msgid "1 file uploading"
msgstr "fitxategi 1 igotzen"
-#: js/files.js:268 js/files.js:322 js/files.js:337
+#: js/files.js:283 js/files.js:337 js/files.js:352
msgid "{count} files uploading"
msgstr "{count} fitxategi igotzen"
-#: js/files.js:340 js/files.js:373
+#: js/files.js:355 js/files.js:388
msgid "Upload cancelled."
msgstr "Igoera ezeztatuta"
-#: js/files.js:442
+#: js/files.js:457
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr "Fitxategien igoera martxan da. Orria orain uzteak igoera ezeztatutko du."
-#: js/files.js:512
+#: js/files.js:527
msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud"
msgstr "Karpeta izen baliogabea. \"Shared\" karpetaren erabilera Owncloudek erreserbatuta dauka"
-#: js/files.js:693
+#: js/files.js:711
msgid "{count} files scanned"
msgstr "{count} fitxategi eskaneatuta"
-#: js/files.js:701
+#: js/files.js:719
msgid "error while scanning"
msgstr "errore bat egon da eskaneatzen zen bitartean"
-#: js/files.js:774 templates/index.php:66
+#: js/files.js:792 templates/index.php:66
msgid "Name"
msgstr "Izena"
-#: js/files.js:775 templates/index.php:77
+#: js/files.js:793 templates/index.php:77
msgid "Size"
msgstr "Tamaina"
-#: js/files.js:776 templates/index.php:79
+#: js/files.js:794 templates/index.php:79
msgid "Modified"
msgstr "Aldatuta"
-#: js/files.js:803
+#: js/files.js:813
msgid "1 folder"
msgstr "karpeta bat"
-#: js/files.js:805
+#: js/files.js:815
msgid "{count} folders"
msgstr "{count} karpeta"
-#: js/files.js:813
+#: js/files.js:823
msgid "1 file"
msgstr "fitxategi bat"
-#: js/files.js:815
+#: js/files.js:825
msgid "{count} files"
msgstr "{count} fitxategi"
@@ -194,27 +214,27 @@ msgstr "Fitxategien kudeaketa"
msgid "Maximum upload size"
msgstr "Igo daitekeen gehienezko tamaina"
-#: templates/admin.php:9
+#: templates/admin.php:10
msgid "max. possible: "
msgstr "max, posiblea:"
-#: templates/admin.php:12
+#: templates/admin.php:15
msgid "Needed for multi-file and folder downloads."
msgstr "Beharrezkoa fitxategi-anitz eta karpeten deskargarako."
-#: templates/admin.php:14
+#: templates/admin.php:17
msgid "Enable ZIP-download"
msgstr "Gaitu ZIP-deskarga"
-#: templates/admin.php:17
+#: templates/admin.php:20
msgid "0 is unlimited"
msgstr "0 mugarik gabe esan nahi du"
-#: templates/admin.php:19
+#: templates/admin.php:22
msgid "Maximum input size for ZIP files"
msgstr "ZIP fitxategien gehienezko tamaina"
-#: templates/admin.php:23
+#: templates/admin.php:26
msgid "Save"
msgstr "Gorde"
diff --git a/l10n/eu/files_external.po b/l10n/eu/files_external.po
index 70742445f5..285a6bad98 100644
--- a/l10n/eu/files_external.po
+++ b/l10n/eu/files_external.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-12-13 00:17+0100\n"
-"PO-Revision-Date: 2012-12-11 23:22+0000\n"
-"Last-Translator: I Robot \n"
+"POT-Creation-Date: 2012-12-28 00:20+0100\n"
+"PO-Revision-Date: 2012-12-27 20:50+0000\n"
+"Last-Translator: asieriko \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"
@@ -46,14 +46,14 @@ msgstr "Errore bat egon da Google Drive biltegiratzea konfiguratzean"
msgid ""
"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares "
"is not possible. Please ask your system administrator to install it."
-msgstr ""
+msgstr "Abisua: \"smbclient\" ez dago instalatuta. CIFS/SMB partekatutako karpetak montatzea ez da posible. Mesedez eskatu zure sistema kudeatzaileari instalatzea."
#: lib/config.php:435
msgid ""
"Warning: The FTP support in PHP is not enabled or installed. Mounting"
" of FTP shares is not possible. Please ask your system administrator to "
"install it."
-msgstr ""
+msgstr "Abisua: PHPren FTP modulua ez dago instalatuta edo gaitua. FTP partekatutako karpetak montatzea ez da posible. Mesedez eskatu zure sistema kudeatzaileari instalatzea."
#: templates/settings.php:3
msgid "External Storage"
@@ -100,7 +100,7 @@ msgid "Users"
msgstr "Erabiltzaileak"
#: templates/settings.php:108 templates/settings.php:109
-#: templates/settings.php:149 templates/settings.php:150
+#: templates/settings.php:144 templates/settings.php:145
msgid "Delete"
msgstr "Ezabatu"
@@ -112,10 +112,10 @@ msgstr "Gaitu erabiltzaileentzako Kanpo Biltegiratzea"
msgid "Allow users to mount their own external storage"
msgstr "Baimendu erabiltzaileak bere kanpo biltegiratzeak muntatzen"
-#: templates/settings.php:139
+#: templates/settings.php:136
msgid "SSL root certificates"
msgstr "SSL erro ziurtagiriak"
-#: templates/settings.php:158
+#: templates/settings.php:153
msgid "Import Root Certificate"
msgstr "Inportatu Erro Ziurtagiria"
diff --git a/l10n/eu/settings.po b/l10n/eu/settings.po
index 93231c3514..cf8c43c710 100644
--- a/l10n/eu/settings.po
+++ b/l10n/eu/settings.po
@@ -10,8 +10,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-12-21 00:10+0100\n"
-"PO-Revision-Date: 2012-12-19 23:20+0000\n"
+"POT-Creation-Date: 2012-12-30 00:04+0100\n"
+"PO-Revision-Date: 2012-12-29 23:05+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n"
"MIME-Version: 1.0\n"
@@ -120,27 +120,27 @@ msgstr " -lizentziatua AGPL."
msgstr "ownCloud komunitateak garatuta, itubruru kodea AGPL lizentziarekin banatzen da ."
-#: templates/users.php:21 templates/users.php:76
+#: templates/users.php:21 templates/users.php:81
msgid "Name"
msgstr "Izena"
-#: templates/users.php:26 templates/users.php:78 templates/users.php:98
+#: templates/users.php:26 templates/users.php:83 templates/users.php:103
msgid "Groups"
msgstr "Taldeak"
@@ -246,21 +246,29 @@ msgid "Create"
msgstr "Sortu"
#: templates/users.php:35
-msgid "Default Quota"
-msgstr "Kuota lehentsia"
+msgid "Default Storage"
+msgstr ""
-#: templates/users.php:55 templates/users.php:138
+#: templates/users.php:42 templates/users.php:138
+msgid "Unlimited"
+msgstr ""
+
+#: templates/users.php:60 templates/users.php:153
msgid "Other"
msgstr "Besteak"
-#: templates/users.php:80 templates/users.php:112
+#: templates/users.php:85 templates/users.php:117
msgid "Group Admin"
msgstr "Talde administradorea"
-#: templates/users.php:82
-msgid "Quota"
-msgstr "Kuota"
+#: templates/users.php:87
+msgid "Storage"
+msgstr ""
-#: templates/users.php:146
+#: templates/users.php:133
+msgid "Default"
+msgstr ""
+
+#: templates/users.php:161
msgid "Delete"
msgstr "Ezabatu"
diff --git a/l10n/eu/user_ldap.po b/l10n/eu/user_ldap.po
index 262c0ba4f3..6184b2abf9 100644
--- a/l10n/eu/user_ldap.po
+++ b/l10n/eu/user_ldap.po
@@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-12-15 00:11+0100\n"
-"PO-Revision-Date: 2012-12-14 23:11+0000\n"
-"Last-Translator: I Robot \n"
+"POT-Creation-Date: 2012-12-28 00:20+0100\n"
+"PO-Revision-Date: 2012-12-27 20:38+0000\n"
+"Last-Translator: asieriko \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"
@@ -23,13 +23,13 @@ msgid ""
"Warning: Apps user_ldap and user_webdavauth are incompatible. You may"
" experience unexpected behaviour. Please ask your system administrator to "
"disable one of them."
-msgstr ""
+msgstr "Abisua: user_ldap eta user_webdavauth aplikazioak bateraezinak dira. Portaera berezia izan dezakezu. Mesedez eskatu zure sistema kudeatzaileari bietako bat desgaitzeko."
#: templates/settings.php:11
msgid ""
"Warning: The PHP LDAP module needs is not installed, the backend will"
" not work. Please ask your system administrator to install it."
-msgstr ""
+msgstr "Abisua: PHPk behar duen LDAP modulua ez dago instalaturik, motorrak ez du funtzionatuko. Mesedez eskatu zure sistema kudeatzaileari instala dezan."
#: templates/settings.php:15
msgid "Host"
diff --git a/l10n/eu/user_webdavauth.po b/l10n/eu/user_webdavauth.po
index b7e5b1a0d3..0f03935240 100644
--- a/l10n/eu/user_webdavauth.po
+++ b/l10n/eu/user_webdavauth.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-12-20 00:11+0100\n"
-"PO-Revision-Date: 2012-12-19 23:12+0000\n"
-"Last-Translator: I Robot \n"
+"POT-Creation-Date: 2012-12-28 00:20+0100\n"
+"PO-Revision-Date: 2012-12-27 20:58+0000\n"
+"Last-Translator: asieriko \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"
@@ -20,11 +20,11 @@ msgstr ""
#: templates/settings.php:4
msgid "URL: http://"
-msgstr ""
+msgstr "URL: http://"
#: templates/settings.php:6
msgid ""
"ownCloud will send the user credentials to this URL is interpret http 401 "
"and http 403 as credentials wrong and all other codes as credentials "
"correct."
-msgstr ""
+msgstr "ownCloud erabiltzailearen kredentzialak helbide honetara bidaliko ditu. http 401 eta http 403 kredentzial ez zuzenak bezala hartuko dira eta beste kode guztiak kredentzial zuzentzat hartuko dira."
diff --git a/l10n/fa/core.po b/l10n/fa/core.po
index 8b2531f874..6693df21f9 100644
--- a/l10n/fa/core.po
+++ b/l10n/fa/core.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-12-13 00:17+0100\n"
-"PO-Revision-Date: 2012-12-12 23:17+0000\n"
+"POT-Creation-Date: 2013-01-07 00:04+0100\n"
+"PO-Revision-Date: 2013-01-06 23:05+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n"
"MIME-Version: 1.0\n"
@@ -162,8 +162,8 @@ msgid "The object type is not specified."
msgstr ""
#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136
-#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541
-#: js/share.js:553
+#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554
+#: js/share.js:566
msgid "Error"
msgstr "خطا"
@@ -175,7 +175,7 @@ msgstr ""
msgid "The required file {file} is not installed!"
msgstr ""
-#: js/share.js:124 js/share.js:581
+#: js/share.js:124 js/share.js:594
msgid "Error while sharing"
msgstr ""
@@ -203,11 +203,11 @@ msgstr ""
msgid "Share with link"
msgstr ""
-#: js/share.js:164
+#: js/share.js:166
msgid "Password protect"
msgstr ""
-#: js/share.js:168 templates/installation.php:42 templates/login.php:24
+#: js/share.js:168 templates/installation.php:44 templates/login.php:35
#: templates/verify.php:13
msgid "Password"
msgstr "گذرواژه"
@@ -272,23 +272,23 @@ msgstr ""
msgid "share"
msgstr ""
-#: js/share.js:353 js/share.js:528 js/share.js:530
+#: js/share.js:356 js/share.js:541
msgid "Password protected"
msgstr ""
-#: js/share.js:541
+#: js/share.js:554
msgid "Error unsetting expiration date"
msgstr ""
-#: js/share.js:553
+#: js/share.js:566
msgid "Error setting expiration date"
msgstr ""
-#: js/share.js:568
+#: js/share.js:581
msgid "Sending ..."
msgstr ""
-#: js/share.js:579
+#: js/share.js:592
msgid "Email sent"
msgstr ""
@@ -312,8 +312,8 @@ msgstr ""
msgid "Request failed!"
msgstr ""
-#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38
-#: templates/login.php:20
+#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39
+#: templates/login.php:28
msgid "Username"
msgstr "شناسه"
@@ -402,44 +402,44 @@ msgstr ""
msgid "Create an admin account "
msgstr "لطفا یک شناسه برای مدیر بسازید"
-#: templates/installation.php:48
+#: templates/installation.php:50
msgid "Advanced"
msgstr "حرفه ای"
-#: templates/installation.php:50
+#: templates/installation.php:52
msgid "Data folder"
msgstr "پوشه اطلاعاتی"
-#: templates/installation.php:57
+#: templates/installation.php:59
msgid "Configure the database"
msgstr "پایگاه داده برنامه ریزی شدند"
-#: templates/installation.php:62 templates/installation.php:73
-#: templates/installation.php:83 templates/installation.php:93
+#: templates/installation.php:64 templates/installation.php:75
+#: templates/installation.php:85 templates/installation.php:95
msgid "will be used"
msgstr "استفاده خواهد شد"
-#: templates/installation.php:105
+#: templates/installation.php:107
msgid "Database user"
msgstr "شناسه پایگاه داده"
-#: templates/installation.php:109
+#: templates/installation.php:111
msgid "Database password"
msgstr "پسورد پایگاه داده"
-#: templates/installation.php:113
+#: templates/installation.php:115
msgid "Database name"
msgstr "نام پایگاه داده"
-#: templates/installation.php:121
+#: templates/installation.php:123
msgid "Database tablespace"
msgstr ""
-#: templates/installation.php:127
+#: templates/installation.php:129
msgid "Database host"
msgstr "هاست پایگاه داده"
-#: templates/installation.php:132
+#: templates/installation.php:134
msgid "Finish setup"
msgstr "اتمام نصب"
@@ -527,29 +527,29 @@ msgstr "سرویس وب تحت کنترل شما"
msgid "Log out"
msgstr "خروج"
-#: templates/login.php:8
+#: templates/login.php:10
msgid "Automatic logon rejected!"
msgstr ""
-#: templates/login.php:9
+#: templates/login.php:11
msgid ""
"If you did not change your password recently, your account may be "
"compromised!"
msgstr ""
-#: templates/login.php:10
+#: templates/login.php:13
msgid "Please change your password to secure your account again."
msgstr ""
-#: templates/login.php:15
+#: templates/login.php:19
msgid "Lost your password?"
msgstr "آیا گذرواژه تان را به یاد نمی آورید؟"
-#: templates/login.php:27
+#: templates/login.php:39
msgid "remember"
msgstr "بیاد آوری"
-#: templates/login.php:28
+#: templates/login.php:41
msgid "Log in"
msgstr "ورود"
@@ -565,6 +565,11 @@ msgstr "بازگشت"
msgid "next"
msgstr "بعدی"
+#: templates/update.php:3
+#, php-format
+msgid "Updating ownCloud to version %s, this may take a while."
+msgstr ""
+
#: templates/verify.php:5
msgid "Security Warning!"
msgstr ""
diff --git a/l10n/fa/files.po b/l10n/fa/files.po
index 7e13f99c90..8ca4747a57 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-12-01 00:01+0100\n"
-"PO-Revision-Date: 2012-11-30 23:02+0000\n"
+"POT-Creation-Date: 2013-01-07 00:04+0100\n"
+"PO-Revision-Date: 2013-01-06 23:05+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n"
"MIME-Version: 1.0\n"
@@ -20,46 +20,58 @@ msgstr ""
"Language: fa\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-#: ajax/upload.php:20
+#: ajax/upload.php:14
+msgid "No file was uploaded. Unknown error"
+msgstr "هیچ فایلی آپلود نشد.خطای ناشناس"
+
+#: ajax/upload.php:21
msgid "There is no error, the file uploaded with success"
msgstr "هیچ خطایی وجود ندارد فایل با موفقیت بار گذاری شد"
-#: ajax/upload.php:21
+#: ajax/upload.php:22
msgid ""
"The uploaded file exceeds the upload_max_filesize directive in php.ini: "
msgstr ""
-#: ajax/upload.php:23
+#: ajax/upload.php:24
msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form"
msgstr "حداکثر حجم مجاز برای بارگذاری از طریق HTML \nMAX_FILE_SIZE"
-#: ajax/upload.php:25
+#: ajax/upload.php:26
msgid "The uploaded file was only partially uploaded"
msgstr "مقدار کمی از فایل بارگذاری شده"
-#: ajax/upload.php:26
+#: ajax/upload.php:27
msgid "No file was uploaded"
msgstr "هیچ فایلی بارگذاری نشده"
-#: ajax/upload.php:27
+#: ajax/upload.php:28
msgid "Missing a temporary folder"
msgstr "یک پوشه موقت گم شده است"
-#: ajax/upload.php:28
+#: ajax/upload.php:29
msgid "Failed to write to disk"
msgstr "نوشتن بر روی دیسک سخت ناموفق بود"
+#: ajax/upload.php:45
+msgid "Not enough space available"
+msgstr ""
+
+#: ajax/upload.php:69
+msgid "Invalid directory."
+msgstr ""
+
#: appinfo/app.php:10
msgid "Files"
msgstr "فایل ها"
-#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84
+#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85
msgid "Unshare"
msgstr ""
-#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90
+#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91
msgid "Delete"
msgstr "پاک کردن"
@@ -67,122 +79,130 @@ msgstr "پاک کردن"
msgid "Rename"
msgstr "تغییرنام"
-#: js/filelist.js:201 js/filelist.js:203
+#: js/filelist.js:199 js/filelist.js:201
msgid "{new_name} already exists"
msgstr ""
-#: js/filelist.js:201 js/filelist.js:203
+#: js/filelist.js:199 js/filelist.js:201
msgid "replace"
msgstr "جایگزین"
-#: js/filelist.js:201
+#: js/filelist.js:199
msgid "suggest name"
msgstr ""
-#: js/filelist.js:201 js/filelist.js:203
+#: js/filelist.js:199 js/filelist.js:201
msgid "cancel"
msgstr "لغو"
-#: js/filelist.js:250
+#: js/filelist.js:248
msgid "replaced {new_name}"
msgstr ""
-#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286
+#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284
msgid "undo"
msgstr "بازگشت"
-#: js/filelist.js:252
+#: js/filelist.js:250
msgid "replaced {new_name} with {old_name}"
msgstr ""
-#: js/filelist.js:284
+#: js/filelist.js:282
msgid "unshared {files}"
msgstr ""
-#: js/filelist.js:286
+#: js/filelist.js:284
msgid "deleted {files}"
msgstr ""
-#: js/files.js:33
+#: js/files.js:31
+msgid "'.' is an invalid file name."
+msgstr ""
+
+#: js/files.js:36
+msgid "File name cannot be empty."
+msgstr ""
+
+#: js/files.js:45
msgid ""
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not "
"allowed."
msgstr ""
-#: js/files.js:183
+#: js/files.js:186
msgid "generating ZIP-file, it may take some time."
msgstr "در حال ساخت فایل فشرده ممکن است زمان زیادی به طول بیانجامد"
-#: js/files.js:218
+#: js/files.js:224
msgid "Unable to upload your file as it is a directory or has 0 bytes"
msgstr "ناتوان در بارگذاری یا فایل یک پوشه است یا 0بایت دارد"
-#: js/files.js:218
+#: js/files.js:224
msgid "Upload Error"
msgstr "خطا در بار گذاری"
-#: js/files.js:235
+#: js/files.js:241
msgid "Close"
msgstr "بستن"
-#: js/files.js:254 js/files.js:368 js/files.js:398
+#: js/files.js:260 js/files.js:374 js/files.js:404
msgid "Pending"
msgstr "در انتظار"
-#: js/files.js:274
+#: js/files.js:280
msgid "1 file uploading"
msgstr ""
-#: js/files.js:277 js/files.js:331 js/files.js:346
+#: js/files.js:283 js/files.js:337 js/files.js:352
msgid "{count} files uploading"
msgstr ""
-#: js/files.js:349 js/files.js:382
+#: js/files.js:355 js/files.js:388
msgid "Upload cancelled."
msgstr "بار گذاری لغو شد"
-#: js/files.js:451
+#: js/files.js:457
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr ""
-#: js/files.js:523
+#: js/files.js:527
msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud"
msgstr ""
-#: js/files.js:704
+#: js/files.js:711
msgid "{count} files scanned"
msgstr ""
-#: js/files.js:712
+#: js/files.js:719
msgid "error while scanning"
msgstr ""
-#: js/files.js:785 templates/index.php:65
+#: js/files.js:792 templates/index.php:66
msgid "Name"
msgstr "نام"
-#: js/files.js:786 templates/index.php:76
+#: js/files.js:793 templates/index.php:77
msgid "Size"
msgstr "اندازه"
-#: js/files.js:787 templates/index.php:78
+#: js/files.js:794 templates/index.php:79
msgid "Modified"
msgstr "تغییر یافته"
-#: js/files.js:814
+#: js/files.js:813
msgid "1 folder"
msgstr ""
-#: js/files.js:816
+#: js/files.js:815
msgid "{count} folders"
msgstr ""
-#: js/files.js:824
+#: js/files.js:823
msgid "1 file"
msgstr ""
-#: js/files.js:826
+#: js/files.js:825
msgid "{count} files"
msgstr ""
@@ -194,27 +214,27 @@ msgstr "اداره پرونده ها"
msgid "Maximum upload size"
msgstr "حداکثر اندازه بارگزاری"
-#: templates/admin.php:9
+#: templates/admin.php:10
msgid "max. possible: "
msgstr "حداکثرمقدارممکن:"
-#: templates/admin.php:12
+#: templates/admin.php:15
msgid "Needed for multi-file and folder downloads."
msgstr "احتیاج پیدا خواهد شد برای چند پوشه و پرونده"
-#: templates/admin.php:14
+#: templates/admin.php:17
msgid "Enable ZIP-download"
msgstr "فعال سازی بارگیری پرونده های فشرده"
-#: templates/admin.php:17
+#: templates/admin.php:20
msgid "0 is unlimited"
msgstr "0 نامحدود است"
-#: templates/admin.php:19
+#: templates/admin.php:22
msgid "Maximum input size for ZIP files"
msgstr "حداکثرمقدار برای بار گزاری پرونده های فشرده"
-#: templates/admin.php:23
+#: templates/admin.php:26
msgid "Save"
msgstr "ذخیره"
@@ -242,28 +262,28 @@ msgstr "بارگذاری"
msgid "Cancel upload"
msgstr "متوقف کردن بار گذاری"
-#: templates/index.php:57
+#: templates/index.php:58
msgid "Nothing in here. Upload something!"
msgstr "اینجا هیچ چیز نیست."
-#: templates/index.php:71
+#: templates/index.php:72
msgid "Download"
msgstr "بارگیری"
-#: templates/index.php:103
+#: templates/index.php:104
msgid "Upload too large"
msgstr "حجم بارگذاری بسیار زیاد است"
-#: templates/index.php:105
+#: templates/index.php:106
msgid ""
"The files you are trying to upload exceed the maximum size for file uploads "
"on this server."
msgstr "فایلها بیش از حد تعیین شده در این سرور هستند\nمترجم:با تغییر فایل php,ini میتوان این محدودیت را برطرف کرد"
-#: templates/index.php:110
+#: templates/index.php:111
msgid "Files are being scanned, please wait."
msgstr "پرونده ها در حال بازرسی هستند لطفا صبر کنید"
-#: templates/index.php:113
+#: templates/index.php:114
msgid "Current scanning"
msgstr "بازرسی کنونی"
diff --git a/l10n/fa/settings.po b/l10n/fa/settings.po
index 3d7035f89a..55f1ea9720 100644
--- a/l10n/fa/settings.po
+++ b/l10n/fa/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-12-21 00:10+0100\n"
-"PO-Revision-Date: 2012-12-19 23:20+0000\n"
+"POT-Creation-Date: 2012-12-30 00:04+0100\n"
+"PO-Revision-Date: 2012-12-29 23:05+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n"
"MIME-Version: 1.0\n"
@@ -164,7 +164,7 @@ msgstr ""
msgid "Download iOS Client"
msgstr ""
-#: templates/personal.php:21 templates/users.php:23 templates/users.php:77
+#: templates/personal.php:21 templates/users.php:23 templates/users.php:82
msgid "Password"
msgstr "گذرواژه"
@@ -234,11 +234,11 @@ msgid ""
"License\">AGPL."
msgstr ""
-#: templates/users.php:21 templates/users.php:76
+#: templates/users.php:21 templates/users.php:81
msgid "Name"
msgstr "نام"
-#: templates/users.php:26 templates/users.php:78 templates/users.php:98
+#: templates/users.php:26 templates/users.php:83 templates/users.php:103
msgid "Groups"
msgstr "گروه ها"
@@ -247,21 +247,29 @@ msgid "Create"
msgstr "ایجاد کردن"
#: templates/users.php:35
-msgid "Default Quota"
-msgstr "سهم پیش فرض"
+msgid "Default Storage"
+msgstr ""
-#: templates/users.php:55 templates/users.php:138
+#: templates/users.php:42 templates/users.php:138
+msgid "Unlimited"
+msgstr ""
+
+#: templates/users.php:60 templates/users.php:153
msgid "Other"
msgstr "سایر"
-#: templates/users.php:80 templates/users.php:112
+#: templates/users.php:85 templates/users.php:117
msgid "Group Admin"
msgstr ""
-#: templates/users.php:82
-msgid "Quota"
-msgstr "سهم"
+#: templates/users.php:87
+msgid "Storage"
+msgstr ""
-#: templates/users.php:146
+#: templates/users.php:133
+msgid "Default"
+msgstr ""
+
+#: templates/users.php:161
msgid "Delete"
msgstr "پاک کردن"
diff --git a/l10n/fi_FI/core.po b/l10n/fi_FI/core.po
index c7c2c1c4a1..8824e25a49 100644
--- a/l10n/fi_FI/core.po
+++ b/l10n/fi_FI/core.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-12-15 00:11+0100\n"
-"PO-Revision-Date: 2012-12-14 13:22+0000\n"
-"Last-Translator: Jiri Grönroos \n"
+"POT-Creation-Date: 2013-01-07 00:04+0100\n"
+"PO-Revision-Date: 2013-01-06 23:05+0000\n"
+"Last-Translator: I Robot \n"
"Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -168,8 +168,8 @@ msgid "The object type is not specified."
msgstr ""
#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136
-#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541
-#: js/share.js:553
+#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554
+#: js/share.js:566
msgid "Error"
msgstr "Virhe"
@@ -181,7 +181,7 @@ msgstr "Sovelluksen nimeä ei ole määritelty."
msgid "The required file {file} is not installed!"
msgstr "Vaadittua tiedostoa {file} ei ole asennettu!"
-#: js/share.js:124 js/share.js:581
+#: js/share.js:124 js/share.js:594
msgid "Error while sharing"
msgstr "Virhe jaettaessa"
@@ -209,11 +209,11 @@ msgstr ""
msgid "Share with link"
msgstr "Jaa linkillä"
-#: js/share.js:164
+#: js/share.js:166
msgid "Password protect"
msgstr "Suojaa salasanalla"
-#: js/share.js:168 templates/installation.php:44 templates/login.php:26
+#: js/share.js:168 templates/installation.php:44 templates/login.php:35
#: templates/verify.php:13
msgid "Password"
msgstr "Salasana"
@@ -278,23 +278,23 @@ msgstr "poista"
msgid "share"
msgstr "jaa"
-#: js/share.js:353 js/share.js:528 js/share.js:530
+#: js/share.js:356 js/share.js:541
msgid "Password protected"
msgstr "Salasanasuojattu"
-#: js/share.js:541
+#: js/share.js:554
msgid "Error unsetting expiration date"
msgstr "Virhe purettaessa eräpäivää"
-#: js/share.js:553
+#: js/share.js:566
msgid "Error setting expiration date"
msgstr "Virhe päättymispäivää asettaessa"
-#: js/share.js:568
+#: js/share.js:581
msgid "Sending ..."
msgstr "Lähetetään..."
-#: js/share.js:579
+#: js/share.js:592
msgid "Email sent"
msgstr "Sähköposti lähetetty"
@@ -319,7 +319,7 @@ msgid "Request failed!"
msgstr "Pyyntö epäonnistui!"
#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39
-#: templates/login.php:21
+#: templates/login.php:28
msgid "Username"
msgstr "Käyttäjätunnus"
@@ -533,29 +533,29 @@ msgstr "verkkopalvelut hallinnassasi"
msgid "Log out"
msgstr "Kirjaudu ulos"
-#: templates/login.php:8
+#: templates/login.php:10
msgid "Automatic logon rejected!"
msgstr "Automaattinen sisäänkirjautuminen hylättiin!"
-#: templates/login.php:9
+#: templates/login.php:11
msgid ""
"If you did not change your password recently, your account may be "
"compromised!"
msgstr "Jos et vaihtanut salasanaasi äskettäin, tilisi saattaa olla murrettu."
-#: templates/login.php:10
+#: templates/login.php:13
msgid "Please change your password to secure your account again."
msgstr "Vaihda salasanasi suojataksesi tilisi uudelleen."
-#: templates/login.php:15
+#: templates/login.php:19
msgid "Lost your password?"
msgstr "Unohditko salasanasi?"
-#: templates/login.php:29
+#: templates/login.php:39
msgid "remember"
msgstr "muista"
-#: templates/login.php:30
+#: templates/login.php:41
msgid "Log in"
msgstr "Kirjaudu sisään"
@@ -571,6 +571,11 @@ msgstr "edellinen"
msgid "next"
msgstr "seuraava"
+#: templates/update.php:3
+#, php-format
+msgid "Updating ownCloud to version %s, this may take a while."
+msgstr ""
+
#: templates/verify.php:5
msgid "Security Warning!"
msgstr "Turvallisuusvaroitus!"
diff --git a/l10n/fi_FI/files.po b/l10n/fi_FI/files.po
index e96dbeabb5..a2dbb70ba5 100644
--- a/l10n/fi_FI/files.po
+++ b/l10n/fi_FI/files.po
@@ -4,7 +4,7 @@
#
# Translators:
# Jesse Jaara , 2012.
-# Jiri Grönroos , 2012.
+# Jiri Grönroos , 2012-2013.
# Johannes Korpela <>, 2012.
# , 2012.
# , 2012.
@@ -12,8 +12,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-12-01 00:01+0100\n"
-"PO-Revision-Date: 2012-11-30 23:02+0000\n"
+"POT-Creation-Date: 2013-01-07 00:04+0100\n"
+"PO-Revision-Date: 2013-01-06 23:05+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n"
"MIME-Version: 1.0\n"
@@ -22,46 +22,58 @@ msgstr ""
"Language: fi_FI\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: ajax/upload.php:20
+#: ajax/upload.php:14
+msgid "No file was uploaded. Unknown error"
+msgstr "Tiedostoa ei lähetetty. Tuntematon virhe"
+
+#: ajax/upload.php:21
msgid "There is no error, the file uploaded with success"
msgstr "Ei virheitä, tiedosto lähetettiin onnistuneesti"
-#: ajax/upload.php:21
+#: ajax/upload.php:22
msgid ""
"The uploaded file exceeds the upload_max_filesize directive in php.ini: "
msgstr ""
-#: ajax/upload.php:23
+#: ajax/upload.php:24
msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form"
msgstr "Lähetetty tiedosto ylittää HTML-lomakkeessa määritetyn MAX_FILE_SIZE-arvon ylärajan"
-#: ajax/upload.php:25
+#: ajax/upload.php:26
msgid "The uploaded file was only partially uploaded"
msgstr "Tiedoston lähetys onnistui vain osittain"
-#: ajax/upload.php:26
+#: ajax/upload.php:27
msgid "No file was uploaded"
msgstr "Yhtäkään tiedostoa ei lähetetty"
-#: ajax/upload.php:27
+#: ajax/upload.php:28
msgid "Missing a temporary folder"
msgstr "Väliaikaiskansiota ei ole olemassa"
-#: ajax/upload.php:28
+#: ajax/upload.php:29
msgid "Failed to write to disk"
msgstr "Levylle kirjoitus epäonnistui"
+#: ajax/upload.php:45
+msgid "Not enough space available"
+msgstr "Tilaa ei ole riittävästi"
+
+#: ajax/upload.php:69
+msgid "Invalid directory."
+msgstr "Virheellinen kansio."
+
#: appinfo/app.php:10
msgid "Files"
msgstr "Tiedostot"
-#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84
+#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85
msgid "Unshare"
msgstr "Peru jakaminen"
-#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90
+#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91
msgid "Delete"
msgstr "Poista"
@@ -69,122 +81,130 @@ msgstr "Poista"
msgid "Rename"
msgstr "Nimeä uudelleen"
-#: js/filelist.js:201 js/filelist.js:203
+#: js/filelist.js:199 js/filelist.js:201
msgid "{new_name} already exists"
msgstr "{new_name} on jo olemassa"
-#: js/filelist.js:201 js/filelist.js:203
+#: js/filelist.js:199 js/filelist.js:201
msgid "replace"
msgstr "korvaa"
-#: js/filelist.js:201
+#: js/filelist.js:199
msgid "suggest name"
msgstr "ehdota nimeä"
-#: js/filelist.js:201 js/filelist.js:203
+#: js/filelist.js:199 js/filelist.js:201
msgid "cancel"
msgstr "peru"
-#: js/filelist.js:250
+#: js/filelist.js:248
msgid "replaced {new_name}"
msgstr ""
-#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286
+#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284
msgid "undo"
msgstr "kumoa"
-#: js/filelist.js:252
+#: js/filelist.js:250
msgid "replaced {new_name} with {old_name}"
msgstr ""
-#: js/filelist.js:284
+#: js/filelist.js:282
msgid "unshared {files}"
msgstr ""
-#: js/filelist.js:286
+#: js/filelist.js:284
msgid "deleted {files}"
msgstr ""
-#: js/files.js:33
+#: js/files.js:31
+msgid "'.' is an invalid file name."
+msgstr ""
+
+#: js/files.js:36
+msgid "File name cannot be empty."
+msgstr ""
+
+#: js/files.js:45
msgid ""
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not "
"allowed."
msgstr "Virheellinen nimi, merkit '\\', '/', '<', '>', ':', '\"', '|', '?' ja '*' eivät ole sallittuja."
-#: js/files.js:183
+#: js/files.js:186
msgid "generating ZIP-file, it may take some time."
msgstr "luodaan ZIP-tiedostoa, tämä saattaa kestää hetken."
-#: js/files.js:218
+#: js/files.js:224
msgid "Unable to upload your file as it is a directory or has 0 bytes"
msgstr "Tiedoston lähetys epäonnistui, koska sen koko on 0 tavua tai kyseessä on kansio"
-#: js/files.js:218
+#: js/files.js:224
msgid "Upload Error"
msgstr "Lähetysvirhe."
-#: js/files.js:235
+#: js/files.js:241
msgid "Close"
msgstr "Sulje"
-#: js/files.js:254 js/files.js:368 js/files.js:398
+#: js/files.js:260 js/files.js:374 js/files.js:404
msgid "Pending"
msgstr "Odottaa"
-#: js/files.js:274
+#: js/files.js:280
msgid "1 file uploading"
msgstr ""
-#: js/files.js:277 js/files.js:331 js/files.js:346
+#: js/files.js:283 js/files.js:337 js/files.js:352
msgid "{count} files uploading"
msgstr ""
-#: js/files.js:349 js/files.js:382
+#: js/files.js:355 js/files.js:388
msgid "Upload cancelled."
msgstr "Lähetys peruttu."
-#: js/files.js:451
+#: js/files.js:457
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr "Tiedoston lähetys on meneillään. Sivulta poistuminen nyt peruu tiedoston lähetyksen."
-#: js/files.js:523
+#: js/files.js:527
msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud"
msgstr ""
-#: js/files.js:704
+#: js/files.js:711
msgid "{count} files scanned"
msgstr ""
-#: js/files.js:712
+#: js/files.js:719
msgid "error while scanning"
msgstr ""
-#: js/files.js:785 templates/index.php:65
+#: js/files.js:792 templates/index.php:66
msgid "Name"
msgstr "Nimi"
-#: js/files.js:786 templates/index.php:76
+#: js/files.js:793 templates/index.php:77
msgid "Size"
msgstr "Koko"
-#: js/files.js:787 templates/index.php:78
+#: js/files.js:794 templates/index.php:79
msgid "Modified"
msgstr "Muutettu"
-#: js/files.js:814
+#: js/files.js:813
msgid "1 folder"
msgstr "1 kansio"
-#: js/files.js:816
+#: js/files.js:815
msgid "{count} folders"
msgstr "{count} kansiota"
-#: js/files.js:824
+#: js/files.js:823
msgid "1 file"
msgstr "1 tiedosto"
-#: js/files.js:826
+#: js/files.js:825
msgid "{count} files"
msgstr "{count} tiedostoa"
@@ -196,27 +216,27 @@ msgstr "Tiedostonhallinta"
msgid "Maximum upload size"
msgstr "Lähetettävän tiedoston suurin sallittu koko"
-#: templates/admin.php:9
+#: templates/admin.php:10
msgid "max. possible: "
msgstr "suurin mahdollinen:"
-#: templates/admin.php:12
+#: templates/admin.php:15
msgid "Needed for multi-file and folder downloads."
msgstr "Tarvitaan useampien tiedostojen ja kansioiden latausta varten."
-#: templates/admin.php:14
+#: templates/admin.php:17
msgid "Enable ZIP-download"
msgstr "Ota ZIP-paketin lataaminen käytöön"
-#: templates/admin.php:17
+#: templates/admin.php:20
msgid "0 is unlimited"
msgstr "0 on rajoittamaton"
-#: templates/admin.php:19
+#: templates/admin.php:22
msgid "Maximum input size for ZIP files"
msgstr "ZIP-tiedostojen enimmäiskoko"
-#: templates/admin.php:23
+#: templates/admin.php:26
msgid "Save"
msgstr "Tallenna"
@@ -244,28 +264,28 @@ msgstr "Lähetä"
msgid "Cancel upload"
msgstr "Peru lähetys"
-#: templates/index.php:57
+#: templates/index.php:58
msgid "Nothing in here. Upload something!"
msgstr "Täällä ei ole mitään. Lähetä tänne jotakin!"
-#: templates/index.php:71
+#: templates/index.php:72
msgid "Download"
msgstr "Lataa"
-#: templates/index.php:103
+#: templates/index.php:104
msgid "Upload too large"
msgstr "Lähetettävä tiedosto on liian suuri"
-#: templates/index.php:105
+#: templates/index.php:106
msgid ""
"The files you are trying to upload exceed the maximum size for file uploads "
"on this server."
msgstr "Lähetettäväksi valitsemasi tiedostot ylittävät palvelimen salliman tiedostokoon rajan."
-#: templates/index.php:110
+#: templates/index.php:111
msgid "Files are being scanned, please wait."
msgstr "Tiedostoja tarkistetaan, odota hetki."
-#: templates/index.php:113
+#: templates/index.php:114
msgid "Current scanning"
msgstr "Tämänhetkinen tutkinta"
diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po
index 18876d4aa6..0b52b4e2f6 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-12-22 00:24+0100\n"
-"PO-Revision-Date: 2012-12-21 17:40+0000\n"
-"Last-Translator: Jiri Grönroos \n"
+"POT-Creation-Date: 2012-12-30 00:04+0100\n"
+"PO-Revision-Date: 2012-12-29 23:05+0000\n"
+"Last-Translator: I Robot \n"
"Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -163,7 +163,7 @@ msgstr "Lataa Android-sovellus"
msgid "Download iOS Client"
msgstr "Lataa iOS-sovellus"
-#: templates/personal.php:21 templates/users.php:23 templates/users.php:77
+#: templates/personal.php:21 templates/users.php:23 templates/users.php:82
msgid "Password"
msgstr "Salasana"
@@ -233,11 +233,11 @@ msgid ""
"License\">AGPL."
msgstr "Kehityksestä on vastannut ownCloud-yhteisö , lähdekoodi on julkaistu lisenssin AGPL alaisena."
-#: templates/users.php:21 templates/users.php:76
+#: templates/users.php:21 templates/users.php:81
msgid "Name"
msgstr "Nimi"
-#: templates/users.php:26 templates/users.php:78 templates/users.php:98
+#: templates/users.php:26 templates/users.php:83 templates/users.php:103
msgid "Groups"
msgstr "Ryhmät"
@@ -246,21 +246,29 @@ msgid "Create"
msgstr "Luo"
#: templates/users.php:35
-msgid "Default Quota"
-msgstr "Oletuskiintiö"
+msgid "Default Storage"
+msgstr ""
-#: templates/users.php:55 templates/users.php:138
+#: templates/users.php:42 templates/users.php:138
+msgid "Unlimited"
+msgstr ""
+
+#: templates/users.php:60 templates/users.php:153
msgid "Other"
msgstr "Muu"
-#: templates/users.php:80 templates/users.php:112
+#: templates/users.php:85 templates/users.php:117
msgid "Group Admin"
msgstr "Ryhmän ylläpitäjä"
-#: templates/users.php:82
-msgid "Quota"
-msgstr "Kiintiö"
+#: templates/users.php:87
+msgid "Storage"
+msgstr ""
-#: templates/users.php:146
+#: templates/users.php:133
+msgid "Default"
+msgstr ""
+
+#: templates/users.php:161
msgid "Delete"
msgstr "Poista"
diff --git a/l10n/fr/core.po b/l10n/fr/core.po
index 58f5d6bd5e..2396fb7d1d 100644
--- a/l10n/fr/core.po
+++ b/l10n/fr/core.po
@@ -4,21 +4,23 @@
#
# Translators:
# Christophe Lherieau , 2012.
+# , 2013.
# , 2012.
# , 2012.
# Guillaume Paumier , 2012.
# , 2012.
# Nahir Mohamed , 2012.
# , 2012.
+# , 2012.
# , 2011.
# Romain DEP. , 2012.
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-12-25 00:10+0100\n"
-"PO-Revision-Date: 2012-12-24 14:22+0000\n"
-"Last-Translator: mishka \n"
+"POT-Creation-Date: 2013-01-07 00:04+0100\n"
+"PO-Revision-Date: 2013-01-06 23:04+0000\n"
+"Last-Translator: I Robot \n"
"Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -48,7 +50,7 @@ msgstr "L'utilisateur %s a partagé le fichier \"%s\" avec vous. Vous pouvez le
msgid ""
"User %s shared the folder \"%s\" with you. It is available for download "
"here: %s"
-msgstr ""
+msgstr "L'utilisateur %s a partagé le dossier \"%s\" avec vous. Il est disponible au téléchargement ici : %s"
#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25
msgid "Category type not provided."
@@ -286,7 +288,7 @@ msgstr "Protégé par un mot de passe"
#: js/share.js:554
msgid "Error unsetting expiration date"
-msgstr "Un erreur est survenue pendant la suppression de la date d'expiration"
+msgstr "Une erreur est survenue pendant la suppression de la date d'expiration"
#: js/share.js:566
msgid "Error setting expiration date"
@@ -383,7 +385,7 @@ msgstr "Ajouter"
#: templates/installation.php:23 templates/installation.php:31
msgid "Security Warning"
-msgstr "Avertissement de sécutité"
+msgstr "Avertissement de sécurité"
#: templates/installation.php:24
msgid ""
@@ -573,6 +575,11 @@ msgstr "précédent"
msgid "next"
msgstr "suivant"
+#: templates/update.php:3
+#, php-format
+msgid "Updating ownCloud to version %s, this may take a while."
+msgstr ""
+
#: templates/verify.php:5
msgid "Security Warning!"
msgstr "Alerte de sécurité !"
diff --git a/l10n/fr/files.po b/l10n/fr/files.po
index b0fb5e1a70..3b12e33fe8 100644
--- a/l10n/fr/files.po
+++ b/l10n/fr/files.po
@@ -5,6 +5,7 @@
# Translators:
# Christophe Lherieau , 2012.
# Cyril Glapa , 2012.
+# , 2013.
# Geoffrey Guerrier , 2012.
# , 2012.
# , 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-12-05 00:04+0100\n"
-"PO-Revision-Date: 2012-12-04 10:24+0000\n"
-"Last-Translator: Robert Di Rosa <>\n"
+"POT-Creation-Date: 2013-01-07 00:04+0100\n"
+"PO-Revision-Date: 2013-01-06 23:05+0000\n"
+"Last-Translator: I Robot \n"
"Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -28,46 +29,58 @@ msgstr ""
"Language: fr\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-#: ajax/upload.php:20
+#: ajax/upload.php:14
+msgid "No file was uploaded. Unknown error"
+msgstr "Aucun fichier n'a été chargé. Erreur inconnue"
+
+#: ajax/upload.php:21
msgid "There is no error, the file uploaded with success"
msgstr "Aucune erreur, le fichier a été téléversé avec succès"
-#: ajax/upload.php:21
+#: ajax/upload.php:22
msgid ""
"The uploaded file exceeds the upload_max_filesize directive in php.ini: "
msgstr "Le fichier envoyé dépasse la valeur upload_max_filesize située dans le fichier php.ini:"
-#: ajax/upload.php:23
+#: ajax/upload.php:24
msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form"
msgstr "Le fichier téléversé excède la valeur de MAX_FILE_SIZE spécifiée dans le formulaire HTML"
-#: ajax/upload.php:25
+#: ajax/upload.php:26
msgid "The uploaded file was only partially uploaded"
msgstr "Le fichier n'a été que partiellement téléversé"
-#: ajax/upload.php:26
+#: ajax/upload.php:27
msgid "No file was uploaded"
msgstr "Aucun fichier n'a été téléversé"
-#: ajax/upload.php:27
+#: ajax/upload.php:28
msgid "Missing a temporary folder"
msgstr "Il manque un répertoire temporaire"
-#: ajax/upload.php:28
+#: ajax/upload.php:29
msgid "Failed to write to disk"
msgstr "Erreur d'écriture sur le disque"
+#: ajax/upload.php:45
+msgid "Not enough space available"
+msgstr ""
+
+#: ajax/upload.php:69
+msgid "Invalid directory."
+msgstr ""
+
#: appinfo/app.php:10
msgid "Files"
msgstr "Fichiers"
-#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84
+#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85
msgid "Unshare"
msgstr "Ne plus partager"
-#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90
+#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91
msgid "Delete"
msgstr "Supprimer"
@@ -75,122 +88,130 @@ msgstr "Supprimer"
msgid "Rename"
msgstr "Renommer"
-#: js/filelist.js:201 js/filelist.js:203
+#: js/filelist.js:199 js/filelist.js:201
msgid "{new_name} already exists"
msgstr "{new_name} existe déjà"
-#: js/filelist.js:201 js/filelist.js:203
+#: js/filelist.js:199 js/filelist.js:201
msgid "replace"
msgstr "remplacer"
-#: js/filelist.js:201
+#: js/filelist.js:199
msgid "suggest name"
msgstr "Suggérer un nom"
-#: js/filelist.js:201 js/filelist.js:203
+#: js/filelist.js:199 js/filelist.js:201
msgid "cancel"
msgstr "annuler"
-#: js/filelist.js:250
+#: js/filelist.js:248
msgid "replaced {new_name}"
-msgstr "{new_name} a été replacé"
+msgstr "{new_name} a été remplacé"
-#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286
+#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284
msgid "undo"
msgstr "annuler"
-#: js/filelist.js:252
+#: js/filelist.js:250
msgid "replaced {new_name} with {old_name}"
msgstr "{new_name} a été remplacé par {old_name}"
-#: js/filelist.js:284
+#: js/filelist.js:282
msgid "unshared {files}"
msgstr "Fichiers non partagés : {files}"
-#: js/filelist.js:286
+#: js/filelist.js:284
msgid "deleted {files}"
msgstr "Fichiers supprimés : {files}"
-#: js/files.js:33
+#: js/files.js:31
+msgid "'.' is an invalid file name."
+msgstr ""
+
+#: js/files.js:36
+msgid "File name cannot be empty."
+msgstr ""
+
+#: js/files.js:45
msgid ""
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not "
"allowed."
msgstr "Nom invalide, les caractères '\\', '/', '<', '>', ':', '\"', '|', '?' et '*' ne sont pas autorisés."
-#: js/files.js:183
+#: js/files.js:186
msgid "generating ZIP-file, it may take some time."
msgstr "Fichier ZIP en cours d'assemblage ; cela peut prendre du temps."
-#: js/files.js:218
+#: js/files.js:224
msgid "Unable to upload your file as it is a directory or has 0 bytes"
msgstr "Impossible de charger vos fichiers car il s'agit d'un dossier ou le fichier fait 0 octet."
-#: js/files.js:218
+#: js/files.js:224
msgid "Upload Error"
msgstr "Erreur de chargement"
-#: js/files.js:235
+#: js/files.js:241
msgid "Close"
msgstr "Fermer"
-#: js/files.js:254 js/files.js:368 js/files.js:398
+#: js/files.js:260 js/files.js:374 js/files.js:404
msgid "Pending"
msgstr "En cours"
-#: js/files.js:274
+#: js/files.js:280
msgid "1 file uploading"
msgstr "1 fichier en cours de téléchargement"
-#: js/files.js:277 js/files.js:331 js/files.js:346
+#: js/files.js:283 js/files.js:337 js/files.js:352
msgid "{count} files uploading"
msgstr "{count} fichiers téléversés"
-#: js/files.js:349 js/files.js:382
+#: js/files.js:355 js/files.js:388
msgid "Upload cancelled."
msgstr "Chargement annulé."
-#: js/files.js:451
+#: js/files.js:457
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr "L'envoi du fichier est en cours. Quitter cette page maintenant annulera l'envoi du fichier."
-#: js/files.js:523
+#: js/files.js:527
msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud"
msgstr "Nom de répertoire invalide. \"Shared\" est réservé par ownCloud"
-#: js/files.js:704
+#: js/files.js:711
msgid "{count} files scanned"
msgstr "{count} fichiers indexés"
-#: js/files.js:712
+#: js/files.js:719
msgid "error while scanning"
msgstr "erreur lors de l'indexation"
-#: js/files.js:785 templates/index.php:65
+#: js/files.js:792 templates/index.php:66
msgid "Name"
msgstr "Nom"
-#: js/files.js:786 templates/index.php:76
+#: js/files.js:793 templates/index.php:77
msgid "Size"
msgstr "Taille"
-#: js/files.js:787 templates/index.php:78
+#: js/files.js:794 templates/index.php:79
msgid "Modified"
msgstr "Modifié"
-#: js/files.js:814
+#: js/files.js:813
msgid "1 folder"
msgstr "1 dossier"
-#: js/files.js:816
+#: js/files.js:815
msgid "{count} folders"
msgstr "{count} dossiers"
-#: js/files.js:824
+#: js/files.js:823
msgid "1 file"
msgstr "1 fichier"
-#: js/files.js:826
+#: js/files.js:825
msgid "{count} files"
msgstr "{count} fichiers"
@@ -202,27 +223,27 @@ msgstr "Gestion des fichiers"
msgid "Maximum upload size"
msgstr "Taille max. d'envoi"
-#: templates/admin.php:9
+#: templates/admin.php:10
msgid "max. possible: "
msgstr "Max. possible :"
-#: templates/admin.php:12
+#: templates/admin.php:15
msgid "Needed for multi-file and folder downloads."
msgstr "Nécessaire pour le téléchargement de plusieurs fichiers et de dossiers."
-#: templates/admin.php:14
+#: templates/admin.php:17
msgid "Enable ZIP-download"
msgstr "Activer le téléchargement ZIP"
-#: templates/admin.php:17
+#: templates/admin.php:20
msgid "0 is unlimited"
msgstr "0 est illimité"
-#: templates/admin.php:19
+#: templates/admin.php:22
msgid "Maximum input size for ZIP files"
msgstr "Taille maximale pour les fichiers ZIP"
-#: templates/admin.php:23
+#: templates/admin.php:26
msgid "Save"
msgstr "Sauvegarder"
@@ -250,28 +271,28 @@ msgstr "Envoyer"
msgid "Cancel upload"
msgstr "Annuler l'envoi"
-#: templates/index.php:57
+#: templates/index.php:58
msgid "Nothing in here. Upload something!"
msgstr "Il n'y a rien ici ! Envoyez donc quelque chose :)"
-#: templates/index.php:71
+#: templates/index.php:72
msgid "Download"
msgstr "Téléchargement"
-#: templates/index.php:103
+#: templates/index.php:104
msgid "Upload too large"
msgstr "Fichier trop volumineux"
-#: templates/index.php:105
+#: templates/index.php:106
msgid ""
"The files you are trying to upload exceed the maximum size for file uploads "
"on this server."
msgstr "Les fichiers que vous essayez d'envoyer dépassent la taille maximale permise par ce serveur."
-#: templates/index.php:110
+#: templates/index.php:111
msgid "Files are being scanned, please wait."
msgstr "Les fichiers sont en cours d'analyse, veuillez patienter."
-#: templates/index.php:113
+#: templates/index.php:114
msgid "Current scanning"
msgstr "Analyse en cours"
diff --git a/l10n/fr/files_external.po b/l10n/fr/files_external.po
index 5484aa3b4c..02af3bd71f 100644
--- a/l10n/fr/files_external.po
+++ b/l10n/fr/files_external.po
@@ -3,14 +3,15 @@
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
+# , 2012.
# Romain DEP. , 2012.
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-12-13 00:17+0100\n"
-"PO-Revision-Date: 2012-12-11 23:22+0000\n"
-"Last-Translator: I Robot \n"
+"POT-Creation-Date: 2012-12-31 00:04+0100\n"
+"PO-Revision-Date: 2012-12-30 10:41+0000\n"
+"Last-Translator: Romain DEP. \n"
"Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -46,14 +47,14 @@ msgstr "Erreur lors de la configuration du support de stockage Google Drive"
msgid ""
"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares "
"is not possible. Please ask your system administrator to install it."
-msgstr ""
+msgstr "Attention : \"smbclient\" n'est pas installé. Le montage des partages CIFS/SMB n'est pas disponible. Contactez votre administrateur système pour l'installer."
#: lib/config.php:435
msgid ""
"Warning: The FTP support in PHP is not enabled or installed. Mounting"
" of FTP shares is not possible. Please ask your system administrator to "
"install it."
-msgstr ""
+msgstr "Attention : Le support FTP de PHP n'est pas activé ou installé. Le montage des partages FTP n'est pas disponible. Contactez votre administrateur système pour l'installer."
#: templates/settings.php:3
msgid "External Storage"
@@ -100,7 +101,7 @@ msgid "Users"
msgstr "Utilisateurs"
#: templates/settings.php:108 templates/settings.php:109
-#: templates/settings.php:149 templates/settings.php:150
+#: templates/settings.php:144 templates/settings.php:145
msgid "Delete"
msgstr "Supprimer"
@@ -112,10 +113,10 @@ msgstr "Activer le stockage externe pour les utilisateurs"
msgid "Allow users to mount their own external storage"
msgstr "Autoriser les utilisateurs à monter leur propre stockage externe"
-#: templates/settings.php:139
+#: templates/settings.php:136
msgid "SSL root certificates"
msgstr "Certificats racine SSL"
-#: templates/settings.php:158
+#: templates/settings.php:153
msgid "Import Root Certificate"
msgstr "Importer un certificat racine"
diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po
index 3d95e66bbe..be09fe8f50 100644
--- a/l10n/fr/settings.po
+++ b/l10n/fr/settings.po
@@ -5,6 +5,7 @@
# Translators:
# Brice , 2012.
# Cyril Glapa , 2012.
+# , 2013.
# , 2011.
# , 2012.
# , 2012.
@@ -21,9 +22,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-12-25 00:10+0100\n"
-"PO-Revision-Date: 2012-12-24 14:10+0000\n"
-"Last-Translator: mishka \n"
+"POT-Creation-Date: 2013-01-04 13:22+0100\n"
+"PO-Revision-Date: 2013-01-03 10:33+0000\n"
+"Last-Translator: dbasquin \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"
@@ -174,7 +175,7 @@ msgstr "Télécharger le client Android"
msgid "Download iOS Client"
msgstr "Télécharger le client iOS"
-#: templates/personal.php:21 templates/users.php:23 templates/users.php:77
+#: templates/personal.php:21 templates/users.php:23 templates/users.php:82
msgid "Password"
msgstr "Mot de passe"
@@ -244,11 +245,11 @@ msgid ""
"License\">AGPL."
msgstr "Développé par la communauté ownCloud , le code source est publié sous license AGPL ."
-#: templates/users.php:21 templates/users.php:76
+#: templates/users.php:21 templates/users.php:81
msgid "Name"
msgstr "Nom"
-#: templates/users.php:26 templates/users.php:78 templates/users.php:98
+#: templates/users.php:26 templates/users.php:83 templates/users.php:103
msgid "Groups"
msgstr "Groupes"
@@ -257,21 +258,29 @@ msgid "Create"
msgstr "Créer"
#: templates/users.php:35
-msgid "Default Quota"
-msgstr "Quota par défaut"
+msgid "Default Storage"
+msgstr "Support de stockage par défaut"
-#: templates/users.php:55 templates/users.php:138
+#: templates/users.php:42 templates/users.php:138
+msgid "Unlimited"
+msgstr "Illimité"
+
+#: templates/users.php:60 templates/users.php:153
msgid "Other"
msgstr "Autre"
-#: templates/users.php:80 templates/users.php:112
+#: templates/users.php:85 templates/users.php:117
msgid "Group Admin"
msgstr "Groupe Admin"
-#: templates/users.php:82
-msgid "Quota"
-msgstr "Quota"
+#: templates/users.php:87
+msgid "Storage"
+msgstr "Support de stockage"
-#: templates/users.php:146
+#: templates/users.php:133
+msgid "Default"
+msgstr "Défaut"
+
+#: templates/users.php:161
msgid "Delete"
msgstr "Supprimer"
diff --git a/l10n/fr/user_webdavauth.po b/l10n/fr/user_webdavauth.po
index 4d2c6a7837..4917efe050 100644
--- a/l10n/fr/user_webdavauth.po
+++ b/l10n/fr/user_webdavauth.po
@@ -3,15 +3,16 @@
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
+# , 2012.
# Robert Di Rosa <>, 2012.
# Romain DEP. , 2012.
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-12-20 00:11+0100\n"
-"PO-Revision-Date: 2012-12-19 23:12+0000\n"
-"Last-Translator: I Robot \n"
+"POT-Creation-Date: 2012-12-30 00:04+0100\n"
+"PO-Revision-Date: 2012-12-28 23:13+0000\n"
+"Last-Translator: ouafnico \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"
@@ -21,7 +22,7 @@ msgstr ""
#: templates/settings.php:4
msgid "URL: http://"
-msgstr ""
+msgstr "URL : http://"
#: templates/settings.php:6
msgid ""
diff --git a/l10n/gl/core.po b/l10n/gl/core.po
index 22c6634339..357aa690c3 100644
--- a/l10n/gl/core.po
+++ b/l10n/gl/core.po
@@ -4,13 +4,14 @@
#
# Translators:
# antiparvos , 2012.
+# , 2012.
# Xosé M. Lamas , 2012.
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-12-13 00:17+0100\n"
-"PO-Revision-Date: 2012-12-12 23:17+0000\n"
+"POT-Creation-Date: 2013-01-07 00:04+0100\n"
+"PO-Revision-Date: 2013-01-06 23:04+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n"
"MIME-Version: 1.0\n"
@@ -22,26 +23,26 @@ msgstr ""
#: ajax/share.php:84
#, php-format
msgid "User %s shared a file with you"
-msgstr ""
+msgstr "O usuario %s compartíu un ficheiro con vostede"
#: ajax/share.php:86
#, php-format
msgid "User %s shared a folder with you"
-msgstr ""
+msgstr "O usuario %s compartíu un cartafol con vostede"
#: ajax/share.php:88
#, php-format
msgid ""
"User %s shared the file \"%s\" with you. It is available for download here: "
"%s"
-msgstr ""
+msgstr "O usuario %s compartiu o ficheiro «%s» con vostede. Teno dispoñíbel en: %s"
#: ajax/share.php:90
#, php-format
msgid ""
"User %s shared the folder \"%s\" with you. It is available for download "
"here: %s"
-msgstr ""
+msgstr "O usuario %s compartiu o cartafol «%s» con vostede. Teno dispoñíbel en: %s"
#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25
msgid "Category type not provided."
@@ -65,12 +66,12 @@ msgstr "Non se forneceu o tipo de obxecto."
#: ajax/vcategories/removeFromFavorites.php:30
#, php-format
msgid "%s ID not provided."
-msgstr "Non se deu o ID %s."
+msgstr "Non se forneceu o ID %s."
#: ajax/vcategories/addToFavorites.php:35
#, php-format
msgid "Error adding %s to favorites."
-msgstr "Erro ao engadir %s aos favoritos."
+msgstr "Produciuse un erro ao engadir %s aos favoritos."
#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136
msgid "No categories selected for deletion."
@@ -79,7 +80,7 @@ msgstr "Non hai categorías seleccionadas para eliminar."
#: ajax/vcategories/removeFromFavorites.php:35
#, php-format
msgid "Error removing %s from favorites."
-msgstr "Erro ao eliminar %s dos favoritos."
+msgstr "Produciuse un erro ao eliminar %s dos favoritos."
#: js/js.js:259 templates/layout.user.php:60 templates/layout.user.php:61
msgid "Settings"
@@ -95,7 +96,7 @@ msgstr "hai 1 minuto"
#: js/js.js:706
msgid "{minutes} minutes ago"
-msgstr "{minutes} minutos atrás"
+msgstr "hai {minutes} minutos"
#: js/js.js:707
msgid "1 hour ago"
@@ -103,7 +104,7 @@ msgstr "hai 1 hora"
#: js/js.js:708
msgid "{hours} hours ago"
-msgstr "{hours} horas atrás"
+msgstr "hai {hours} horas"
#: js/js.js:709
msgid "today"
@@ -115,7 +116,7 @@ msgstr "onte"
#: js/js.js:711
msgid "{days} days ago"
-msgstr "{days} días atrás"
+msgstr "hai {days} días"
#: js/js.js:712
msgid "last month"
@@ -123,7 +124,7 @@ msgstr "último mes"
#: js/js.js:713
msgid "{months} months ago"
-msgstr "{months} meses atrás"
+msgstr "hai {months} meses"
#: js/js.js:714
msgid "months ago"
@@ -163,8 +164,8 @@ msgid "The object type is not specified."
msgstr "Non se especificou o tipo de obxecto."
#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136
-#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541
-#: js/share.js:553
+#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554
+#: js/share.js:566
msgid "Error"
msgstr "Erro"
@@ -176,25 +177,25 @@ msgstr "Non se especificou o nome do aplicativo."
msgid "The required file {file} is not installed!"
msgstr "Non está instalado o ficheiro {file} que se precisa"
-#: js/share.js:124 js/share.js:581
+#: js/share.js:124 js/share.js:594
msgid "Error while sharing"
-msgstr "Erro compartindo"
+msgstr "Produciuse un erro ao compartir"
#: js/share.js:135
msgid "Error while unsharing"
-msgstr "Erro ao deixar de compartir"
+msgstr "Produciuse un erro ao deixar de compartir"
#: js/share.js:142
msgid "Error while changing permissions"
-msgstr "Erro ao cambiar os permisos"
+msgstr "Produciuse un erro ao cambiar os permisos"
#: js/share.js:151
msgid "Shared with you and the group {group} by {owner}"
-msgstr "Compartido contigo e co grupo {group} de {owner}"
+msgstr "Compartido con vostede e co grupo {group} por {owner}"
#: js/share.js:153
msgid "Shared with you by {owner}"
-msgstr "Compartido contigo por {owner}"
+msgstr "Compartido con vostede por {owner}"
#: js/share.js:158
msgid "Share with"
@@ -202,24 +203,24 @@ msgstr "Compartir con"
#: js/share.js:163
msgid "Share with link"
-msgstr "Compartir ca ligazón"
+msgstr "Compartir coa ligazón"
-#: js/share.js:164
+#: js/share.js:166
msgid "Password protect"
msgstr "Protexido con contrasinais"
-#: js/share.js:168 templates/installation.php:42 templates/login.php:24
+#: js/share.js:168 templates/installation.php:44 templates/login.php:35
#: templates/verify.php:13
msgid "Password"
msgstr "Contrasinal"
#: js/share.js:172
msgid "Email link to person"
-msgstr ""
+msgstr "Enviar ligazón por correo"
#: js/share.js:173
msgid "Send"
-msgstr ""
+msgstr "Enviar"
#: js/share.js:177
msgid "Set expiration date"
@@ -231,7 +232,7 @@ msgstr "Data de caducidade"
#: js/share.js:210
msgid "Share via email:"
-msgstr "Compartir por correo electrónico:"
+msgstr "Compartir por correo:"
#: js/share.js:212
msgid "No people found"
@@ -239,7 +240,7 @@ msgstr "Non se atopou xente"
#: js/share.js:239
msgid "Resharing is not allowed"
-msgstr "Non se acepta volver a compartir"
+msgstr "Non se permite volver a compartir"
#: js/share.js:275
msgid "Shared in {item} with {user}"
@@ -267,64 +268,64 @@ msgstr "actualizar"
#: js/share.js:319
msgid "delete"
-msgstr "borrar"
+msgstr "eliminar"
#: js/share.js:322
msgid "share"
msgstr "compartir"
-#: js/share.js:353 js/share.js:528 js/share.js:530
+#: js/share.js:356 js/share.js:541
msgid "Password protected"
msgstr "Protexido con contrasinal"
-#: js/share.js:541
+#: js/share.js:554
msgid "Error unsetting expiration date"
-msgstr "Erro ao quitar a data de caducidade"
+msgstr "Produciuse un erro ao retirar a data de caducidade"
-#: js/share.js:553
+#: js/share.js:566
msgid "Error setting expiration date"
-msgstr "Erro ao definir a data de caducidade"
+msgstr "Produciuse un erro ao definir a data de caducidade"
-#: js/share.js:568
+#: js/share.js:581
msgid "Sending ..."
-msgstr ""
+msgstr "Enviando..."
-#: js/share.js:579
+#: js/share.js:592
msgid "Email sent"
-msgstr ""
+msgstr "Correo enviado"
#: lostpassword/controller.php:47
msgid "ownCloud password reset"
-msgstr "Restablecer contrasinal de ownCloud"
+msgstr "Restabelecer o contrasinal de ownCloud"
#: lostpassword/templates/email.php:2
msgid "Use the following link to reset your password: {link}"
-msgstr "Usa a seguinte ligazón para restablecer o contrasinal: {link}"
+msgstr "Usa a seguinte ligazón para restabelecer o contrasinal: {link}"
#: lostpassword/templates/lostpassword.php:3
msgid "You will receive a link to reset your password via Email."
-msgstr "Recibirá unha ligazón por correo electrónico para restablecer o contrasinal"
+msgstr "Recibirá unha ligazón por correo para restabelecer o contrasinal"
#: lostpassword/templates/lostpassword.php:5
msgid "Reset email send."
-msgstr "Restablecer o envío por correo."
+msgstr "Restabelecer o envío por correo."
#: lostpassword/templates/lostpassword.php:8
msgid "Request failed!"
-msgstr "Fallo na petición"
+msgstr "Non foi posíbel facer a petición"
-#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38
-#: templates/login.php:20
+#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39
+#: templates/login.php:28
msgid "Username"
msgstr "Nome de usuario"
#: lostpassword/templates/lostpassword.php:14
msgid "Request reset"
-msgstr "Petición de restablecemento"
+msgstr "Petición de restabelecemento"
#: lostpassword/templates/resetpassword.php:4
msgid "Your password was reset"
-msgstr "O contrasinal foi restablecido"
+msgstr "O contrasinal foi restabelecido"
#: lostpassword/templates/resetpassword.php:5
msgid "To login page"
@@ -336,7 +337,7 @@ msgstr "Novo contrasinal"
#: lostpassword/templates/resetpassword.php:11
msgid "Reset password"
-msgstr "Restablecer contrasinal"
+msgstr "Restabelecer o contrasinal"
#: strings.php:5
msgid "Personal"
@@ -376,19 +377,19 @@ msgstr "Engadir"
#: templates/installation.php:23 templates/installation.php:31
msgid "Security Warning"
-msgstr "Aviso de seguridade"
+msgstr "Aviso de seguranza"
#: templates/installation.php:24
msgid ""
"No secure random number generator is available, please enable the PHP "
"OpenSSL extension."
-msgstr "Non hai un xerador de números aleatorios dispoñíbel. Activa o engadido de OpenSSL para PHP."
+msgstr "Non hai un xerador de números ao chou dispoñíbel. Active o engadido de OpenSSL para PHP."
#: templates/installation.php:26
msgid ""
"Without a secure random number generator an attacker may be able to predict "
"password reset tokens and take over your account."
-msgstr "Sen un xerador de números aleatorios seguro podería acontecer que predicindo as cadeas de texto de reinicio de contrasinais se afagan coa túa conta."
+msgstr "Sen un xerador seguro de números ao chou podería acontecer que predicindo as cadeas de texto de reinicio de contrasinais se afagan coa súa conta."
#: templates/installation.php:32
msgid ""
@@ -397,50 +398,50 @@ 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 "O teu cartafol de datos e os teus ficheiros son seguramente accesibles a través de internet. O ficheiro .htaccess que ownCloud fornece non está empregándose. Suxírese que configures o teu servidor web de tal maneira que o cartafol de datos non estea accesíbel ou movas o cartafol de datos fóra do root do directorio de datos do servidor web."
+msgstr "O seu cartafol de datos e os seus ficheiros probabelmente sexan accesíbeis a través da Internet. O ficheiro .htaccess que fornece ownCloud non está a empregarse. Suxerimoslle que configure o seu servidor web de tal xeito que o cartafol de datos non estea accesíbel ou mova o cartafol de datos fora do directorio raíz de datos do servidor web."
#: templates/installation.php:36
msgid "Create an admin account "
msgstr "Crear unha contra de administrador "
-#: templates/installation.php:48
+#: templates/installation.php:50
msgid "Advanced"
msgstr "Avanzado"
-#: templates/installation.php:50
+#: templates/installation.php:52
msgid "Data folder"
msgstr "Cartafol de datos"
-#: templates/installation.php:57
+#: templates/installation.php:59
msgid "Configure the database"
msgstr "Configurar a base de datos"
-#: templates/installation.php:62 templates/installation.php:73
-#: templates/installation.php:83 templates/installation.php:93
+#: templates/installation.php:64 templates/installation.php:75
+#: templates/installation.php:85 templates/installation.php:95
msgid "will be used"
-msgstr "será utilizado"
+msgstr "vai ser utilizado"
-#: templates/installation.php:105
+#: templates/installation.php:107
msgid "Database user"
msgstr "Usuario da base de datos"
-#: templates/installation.php:109
+#: templates/installation.php:111
msgid "Database password"
msgstr "Contrasinal da base de datos"
-#: templates/installation.php:113
+#: templates/installation.php:115
msgid "Database name"
msgstr "Nome da base de datos"
-#: templates/installation.php:121
+#: templates/installation.php:123
msgid "Database tablespace"
msgstr "Táboa de espazos da base de datos"
-#: templates/installation.php:127
+#: templates/installation.php:129
msgid "Database host"
msgstr "Servidor da base de datos"
-#: templates/installation.php:132
+#: templates/installation.php:134
msgid "Finish setup"
msgstr "Rematar a configuración"
@@ -474,51 +475,51 @@ msgstr "Sábado"
#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "January"
-msgstr "Xaneiro"
+msgstr "xaneiro"
#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "February"
-msgstr "Febreiro"
+msgstr "febreiro"
#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "March"
-msgstr "Marzo"
+msgstr "marzo"
#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "April"
-msgstr "Abril"
+msgstr "abril"
#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "May"
-msgstr "Maio"
+msgstr "maio"
#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "June"
-msgstr "Xuño"
+msgstr "xuño"
#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "July"
-msgstr "Xullo"
+msgstr "xullo"
#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "August"
-msgstr "Agosto"
+msgstr "agosto"
#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "September"
-msgstr "Setembro"
+msgstr "setembro"
#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "October"
-msgstr "Outubro"
+msgstr "outubro"
#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "November"
-msgstr "Novembro"
+msgstr "novembro"
#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "December"
-msgstr "Decembro"
+msgstr "decembro"
#: templates/layout.guest.php:42
msgid "web services under your control"
@@ -528,29 +529,29 @@ msgstr "servizos web baixo o seu control"
msgid "Log out"
msgstr "Desconectar"
-#: templates/login.php:8
+#: templates/login.php:10
msgid "Automatic logon rejected!"
msgstr "Rexeitouse a entrada automática"
-#: templates/login.php:9
+#: templates/login.php:11
msgid ""
"If you did not change your password recently, your account may be "
"compromised!"
-msgstr "Se non fixeches cambios de contrasinal recentemente é posíbel que a túa conta estea comprometida!"
+msgstr "Se non fixo recentemente cambios de contrasinal é posíbel que a súa conta estea comprometida!"
-#: templates/login.php:10
+#: templates/login.php:13
msgid "Please change your password to secure your account again."
-msgstr "Cambia de novo o teu contrasinal para asegurar a túa conta."
+msgstr "Cambie de novo o seu contrasinal para asegurar a súa conta."
-#: templates/login.php:15
+#: templates/login.php:19
msgid "Lost your password?"
msgstr "Perdeu o contrasinal?"
-#: templates/login.php:27
+#: templates/login.php:39
msgid "remember"
msgstr "lembrar"
-#: templates/login.php:28
+#: templates/login.php:41
msgid "Log in"
msgstr "Conectar"
@@ -566,6 +567,11 @@ msgstr "anterior"
msgid "next"
msgstr "seguinte"
+#: templates/update.php:3
+#, php-format
+msgid "Updating ownCloud to version %s, this may take a while."
+msgstr ""
+
#: templates/verify.php:5
msgid "Security Warning!"
msgstr "Advertencia de seguranza"
@@ -574,7 +580,7 @@ msgstr "Advertencia de seguranza"
msgid ""
"Please verify your password. For security reasons you may be "
"occasionally asked to enter your password again."
-msgstr "Verifica o teu contrasinal. Por motivos de seguridade pode que ocasionalmente se che pregunte de novo polo teu contrasinal."
+msgstr "Verifique o seu contrasinal. Por motivos de seguranza pode que ocasionalmente se lle pregunte de novo polo seu contrasinal."
#: templates/verify.php:16
msgid "Verify"
diff --git a/l10n/gl/files.po b/l10n/gl/files.po
index d44302b22d..991b1aa060 100644
--- a/l10n/gl/files.po
+++ b/l10n/gl/files.po
@@ -3,15 +3,15 @@
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
-# antiparvos , 2012.
+# antiparvos , 2012-2013.
# Xosé M. Lamas , 2012.
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-12-03 00:04+0100\n"
-"PO-Revision-Date: 2012-12-02 21:51+0000\n"
-"Last-Translator: Miguel Branco \n"
+"POT-Creation-Date: 2013-01-07 00:04+0100\n"
+"PO-Revision-Date: 2013-01-06 23:05+0000\n"
+"Last-Translator: I Robot \n"
"Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -19,46 +19,58 @@ msgstr ""
"Language: gl\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: ajax/upload.php:20
+#: ajax/upload.php:14
+msgid "No file was uploaded. Unknown error"
+msgstr "Non se subiu ningún ficheiro. Erro descoñecido."
+
+#: ajax/upload.php:21
msgid "There is no error, the file uploaded with success"
msgstr "Non hai erros. O ficheiro enviouse correctamente"
-#: ajax/upload.php:21
+#: ajax/upload.php:22
msgid ""
"The uploaded file exceeds the upload_max_filesize directive in php.ini: "
msgstr "O ficheiro subido excede a directiva indicada polo tamaño_máximo_de_subida de php.ini"
-#: ajax/upload.php:23
+#: ajax/upload.php:24
msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form"
msgstr "O ficheiro enviado supera a directiva MAX_FILE_SIZE que foi indicada no formulario HTML"
-#: ajax/upload.php:25
+#: ajax/upload.php:26
msgid "The uploaded file was only partially uploaded"
msgstr "O ficheiro enviado foi só parcialmente enviado"
-#: ajax/upload.php:26
+#: ajax/upload.php:27
msgid "No file was uploaded"
msgstr "Non se enviou ningún ficheiro"
-#: ajax/upload.php:27
+#: ajax/upload.php:28
msgid "Missing a temporary folder"
msgstr "Falta un cartafol temporal"
-#: ajax/upload.php:28
+#: ajax/upload.php:29
msgid "Failed to write to disk"
msgstr "Erro ao escribir no disco"
+#: ajax/upload.php:45
+msgid "Not enough space available"
+msgstr "O espazo dispoñíbel é insuficiente"
+
+#: ajax/upload.php:69
+msgid "Invalid directory."
+msgstr "O directorio é incorrecto."
+
#: appinfo/app.php:10
msgid "Files"
msgstr "Ficheiros"
-#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84
+#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85
msgid "Unshare"
msgstr "Deixar de compartir"
-#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90
+#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91
msgid "Delete"
msgstr "Eliminar"
@@ -66,122 +78,130 @@ msgstr "Eliminar"
msgid "Rename"
msgstr "Mudar o nome"
-#: js/filelist.js:201 js/filelist.js:203
+#: js/filelist.js:199 js/filelist.js:201
msgid "{new_name} already exists"
msgstr "xa existe un {new_name}"
-#: js/filelist.js:201 js/filelist.js:203
+#: js/filelist.js:199 js/filelist.js:201
msgid "replace"
msgstr "substituír"
-#: js/filelist.js:201
+#: js/filelist.js:199
msgid "suggest name"
msgstr "suxerir nome"
-#: js/filelist.js:201 js/filelist.js:203
+#: js/filelist.js:199 js/filelist.js:201
msgid "cancel"
msgstr "cancelar"
-#: js/filelist.js:250
+#: js/filelist.js:248
msgid "replaced {new_name}"
msgstr "substituír {new_name}"
-#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286
+#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284
msgid "undo"
msgstr "desfacer"
-#: js/filelist.js:252
+#: js/filelist.js:250
msgid "replaced {new_name} with {old_name}"
msgstr "substituír {new_name} polo {old_name}"
-#: js/filelist.js:284
+#: js/filelist.js:282
msgid "unshared {files}"
msgstr "{files} sen compartir"
-#: js/filelist.js:286
+#: js/filelist.js:284
msgid "deleted {files}"
msgstr "{files} eliminados"
-#: js/files.js:33
+#: js/files.js:31
+msgid "'.' is an invalid file name."
+msgstr ""
+
+#: js/files.js:36
+msgid "File name cannot be empty."
+msgstr ""
+
+#: js/files.js:45
msgid ""
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not "
"allowed."
msgstr "Nome non válido, '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' non se permiten."
-#: js/files.js:183
+#: js/files.js:186
msgid "generating ZIP-file, it may take some time."
msgstr "xerando un ficheiro ZIP, o que pode levar un anaco."
-#: js/files.js:218
+#: js/files.js:224
msgid "Unable to upload your file as it is a directory or has 0 bytes"
msgstr "Non se puido subir o ficheiro pois ou é un directorio ou ten 0 bytes"
-#: js/files.js:218
+#: js/files.js:224
msgid "Upload Error"
msgstr "Erro na subida"
-#: js/files.js:235
+#: js/files.js:241
msgid "Close"
msgstr "Pechar"
-#: js/files.js:254 js/files.js:368 js/files.js:398
+#: js/files.js:260 js/files.js:374 js/files.js:404
msgid "Pending"
msgstr "Pendentes"
-#: js/files.js:274
+#: js/files.js:280
msgid "1 file uploading"
msgstr "1 ficheiro subíndose"
-#: js/files.js:277 js/files.js:331 js/files.js:346
+#: js/files.js:283 js/files.js:337 js/files.js:352
msgid "{count} files uploading"
msgstr "{count} ficheiros subíndose"
-#: js/files.js:349 js/files.js:382
+#: js/files.js:355 js/files.js:388
msgid "Upload cancelled."
msgstr "Subida cancelada."
-#: js/files.js:451
+#: js/files.js:457
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr "A subida do ficheiro está en curso. Saír agora da páxina cancelará a subida."
-#: js/files.js:523
+#: js/files.js:527
msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud"
msgstr "Nome de cartafol non válido. O uso de \"compartido\" está reservado exclusivamente para ownCloud"
-#: js/files.js:704
+#: js/files.js:711
msgid "{count} files scanned"
msgstr "{count} ficheiros escaneados"
-#: js/files.js:712
+#: js/files.js:719
msgid "error while scanning"
msgstr "erro mentres analizaba"
-#: js/files.js:785 templates/index.php:65
+#: js/files.js:792 templates/index.php:66
msgid "Name"
msgstr "Nome"
-#: js/files.js:786 templates/index.php:76
+#: js/files.js:793 templates/index.php:77
msgid "Size"
msgstr "Tamaño"
-#: js/files.js:787 templates/index.php:78
+#: js/files.js:794 templates/index.php:79
msgid "Modified"
msgstr "Modificado"
-#: js/files.js:814
+#: js/files.js:813
msgid "1 folder"
msgstr "1 cartafol"
-#: js/files.js:816
+#: js/files.js:815
msgid "{count} folders"
msgstr "{count} cartafoles"
-#: js/files.js:824
+#: js/files.js:823
msgid "1 file"
msgstr "1 ficheiro"
-#: js/files.js:826
+#: js/files.js:825
msgid "{count} files"
msgstr "{count} ficheiros"
@@ -193,27 +213,27 @@ msgstr "Manexo de ficheiro"
msgid "Maximum upload size"
msgstr "Tamaño máximo de envío"
-#: templates/admin.php:9
+#: templates/admin.php:10
msgid "max. possible: "
msgstr "máx. posible: "
-#: templates/admin.php:12
+#: templates/admin.php:15
msgid "Needed for multi-file and folder downloads."
msgstr "Precísase para a descarga de varios ficheiros e cartafoles."
-#: templates/admin.php:14
+#: templates/admin.php:17
msgid "Enable ZIP-download"
msgstr "Habilitar a descarga-ZIP"
-#: templates/admin.php:17
+#: templates/admin.php:20
msgid "0 is unlimited"
msgstr "0 significa ilimitado"
-#: templates/admin.php:19
+#: templates/admin.php:22
msgid "Maximum input size for ZIP files"
msgstr "Tamaño máximo de descarga para os ZIP"
-#: templates/admin.php:23
+#: templates/admin.php:26
msgid "Save"
msgstr "Gardar"
@@ -241,28 +261,28 @@ msgstr "Enviar"
msgid "Cancel upload"
msgstr "Cancelar a subida"
-#: templates/index.php:57
+#: templates/index.php:58
msgid "Nothing in here. Upload something!"
msgstr "Nada por aquí. Envía algo."
-#: templates/index.php:71
+#: templates/index.php:72
msgid "Download"
msgstr "Descargar"
-#: templates/index.php:103
+#: templates/index.php:104
msgid "Upload too large"
msgstr "Envío demasiado grande"
-#: templates/index.php:105
+#: templates/index.php:106
msgid ""
"The files you are trying to upload exceed the maximum size for file uploads "
"on this server."
msgstr "Os ficheiros que trata de subir superan o tamaño máximo permitido neste servidor"
-#: templates/index.php:110
+#: templates/index.php:111
msgid "Files are being scanned, please wait."
msgstr "Estanse analizando os ficheiros. Agarda."
-#: templates/index.php:113
+#: templates/index.php:114
msgid "Current scanning"
msgstr "Análise actual"
diff --git a/l10n/gl/files_external.po b/l10n/gl/files_external.po
index 775152bbea..9bc476ece0 100644
--- a/l10n/gl/files_external.po
+++ b/l10n/gl/files_external.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-12-13 00:17+0100\n"
-"PO-Revision-Date: 2012-12-11 23:22+0000\n"
-"Last-Translator: I Robot \n"
+"POT-Creation-Date: 2013-01-01 00:04+0100\n"
+"PO-Revision-Date: 2012-12-31 08:40+0000\n"
+"Last-Translator: mbouzada \n"
"Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -37,7 +37,7 @@ msgstr "Cubrir todos os campos obrigatorios"
#: js/dropbox.js:85
msgid "Please provide a valid Dropbox app key and secret."
-msgstr "Dá o segredo e a chave correcta do aplicativo de Dropbox."
+msgstr "Forneza unha chave correcta e segreda do Dropbox."
#: js/google.js:26 js/google.js:73 js/google.js:78
msgid "Error configuring Google Drive storage"
@@ -47,14 +47,14 @@ msgstr "Produciuse un erro ao configurar o almacenamento en Google Drive"
msgid ""
"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares "
"is not possible. Please ask your system administrator to install it."
-msgstr ""
+msgstr "Aviso: «smbclient» non está instalado. Non é posibel a montaxe de comparticións CIFS/SMB. Consulte co administrador do sistema para instalalo."
#: lib/config.php:435
msgid ""
"Warning: The FTP support in PHP is not enabled or installed. Mounting"
" of FTP shares is not possible. Please ask your system administrator to "
"install it."
-msgstr ""
+msgstr "Aviso: A compatibilidade de FTP en PHP non está activada ou instalada. Non é posibel a montaxe de comparticións FTP. Consulte co administrador do sistema para instalalo."
#: templates/settings.php:3
msgid "External Storage"
@@ -101,7 +101,7 @@ msgid "Users"
msgstr "Usuarios"
#: templates/settings.php:108 templates/settings.php:109
-#: templates/settings.php:149 templates/settings.php:150
+#: templates/settings.php:144 templates/settings.php:145
msgid "Delete"
msgstr "Eliminar"
@@ -113,10 +113,10 @@ msgstr "Activar o almacenamento externo do usuario"
msgid "Allow users to mount their own external storage"
msgstr "Permitir aos usuarios montar os seus propios almacenamentos externos"
-#: templates/settings.php:139
+#: templates/settings.php:136
msgid "SSL root certificates"
msgstr "Certificados SSL root"
-#: templates/settings.php:158
+#: templates/settings.php:153
msgid "Import Root Certificate"
msgstr "Importar o certificado root"
diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po
index 234468f6e0..29fdaa8ac2 100644
--- a/l10n/gl/settings.po
+++ b/l10n/gl/settings.po
@@ -4,14 +4,15 @@
#
# Translators:
# antiparvos , 2012.
+# , 2012.
# Xosé M. Lamas , 2012.
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-12-21 00:10+0100\n"
-"PO-Revision-Date: 2012-12-19 23:20+0000\n"
-"Last-Translator: I Robot \n"
+"POT-Creation-Date: 2013-01-01 00:04+0100\n"
+"PO-Revision-Date: 2012-12-31 09:02+0000\n"
+"Last-Translator: mbouzada \n"
"Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -21,7 +22,7 @@ msgstr ""
#: ajax/apps/ocs.php:20
msgid "Unable to load list from App Store"
-msgstr "Non se puido cargar a lista desde a App Store"
+msgstr "Non foi posíbel cargar a lista desde a App Store"
#: ajax/creategroup.php:10
msgid "Group already exists"
@@ -29,23 +30,23 @@ msgstr "O grupo xa existe"
#: ajax/creategroup.php:19
msgid "Unable to add group"
-msgstr "Non se pode engadir o grupo"
+msgstr "Non é posíbel engadir o grupo"
#: ajax/enableapp.php:12
msgid "Could not enable app. "
-msgstr "Con se puido activar o aplicativo."
+msgstr "Non é posíbel activar o aplicativo."
#: ajax/lostpassword.php:12
msgid "Email saved"
-msgstr "Correo electrónico gardado"
+msgstr "Correo gardado"
#: ajax/lostpassword.php:14
msgid "Invalid email"
-msgstr "correo electrónico non válido"
+msgstr "correo incorrecto"
#: ajax/openid.php:13
msgid "OpenID Changed"
-msgstr "Mudou o OpenID"
+msgstr "Cambiou o OpenID"
#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20
msgid "Invalid request"
@@ -53,19 +54,19 @@ msgstr "Petición incorrecta"
#: ajax/removegroup.php:13
msgid "Unable to delete group"
-msgstr "Non se pode eliminar o grupo."
+msgstr "Non é posíbel eliminar o grupo."
#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18
msgid "Authentication error"
-msgstr "Erro na autenticación"
+msgstr "Produciuse un erro de autenticación"
#: ajax/removeuser.php:24
msgid "Unable to delete user"
-msgstr "Non se pode eliminar o usuario"
+msgstr "Non é posíbel eliminar o usuario"
#: ajax/setlanguage.php:15
msgid "Language changed"
-msgstr "O idioma mudou"
+msgstr "O idioma cambiou"
#: ajax/togglegroups.php:12
msgid "Admins can't remove themself from the admin group"
@@ -74,12 +75,12 @@ msgstr "Os administradores non se pode eliminar a si mesmos do grupo admin"
#: ajax/togglegroups.php:28
#, php-format
msgid "Unable to add user to group %s"
-msgstr "Non se puido engadir o usuario ao grupo %s"
+msgstr "Non é posíbel engadir o usuario ao grupo %s"
#: ajax/togglegroups.php:34
#, php-format
msgid "Unable to remove user from group %s"
-msgstr "Non se puido eliminar o usuario do grupo %s"
+msgstr "Non é posíbel eliminar o usuario do grupo %s"
#: js/apps.js:28 js/apps.js:67
msgid "Disable"
@@ -99,7 +100,7 @@ msgstr "Galego"
#: templates/apps.php:10
msgid "Add your App"
-msgstr "Engade o teu aplicativo"
+msgstr "Engada o seu aplicativo"
#: templates/apps.php:11
msgid "More Apps"
@@ -107,11 +108,11 @@ msgstr "Máis aplicativos"
#: templates/apps.php:27
msgid "Select an App"
-msgstr "Escolla un Aplicativo"
+msgstr "Escolla un aplicativo"
#: templates/apps.php:31
msgid "See application page at apps.owncloud.com"
-msgstr "Vexa a páxina do aplicativo en apps.owncloud.com"
+msgstr "Consulte a páxina do aplicativo en apps.owncloud.com"
#: templates/apps.php:32
msgid " -licensed by "
@@ -119,32 +120,32 @@ msgstr " -licenciado por%s of the available %s "
-msgstr "Tes usados %s do total dispoñíbel de %s "
+msgstr "Te en uso %s do total dispoñíbel de %s "
#: templates/personal.php:12
msgid "Clients"
@@ -152,17 +153,17 @@ msgstr "Clientes"
#: templates/personal.php:13
msgid "Download Desktop Clients"
-msgstr ""
+msgstr "Descargar clientes para escritorio"
#: templates/personal.php:14
msgid "Download Android Client"
-msgstr ""
+msgstr "Descargar clientes para Android"
#: templates/personal.php:15
msgid "Download iOS Client"
-msgstr ""
+msgstr "Descargar clientes ra iOS"
-#: templates/personal.php:21 templates/users.php:23 templates/users.php:77
+#: templates/personal.php:21 templates/users.php:23 templates/users.php:82
msgid "Password"
msgstr "Contrasinal"
@@ -172,7 +173,7 @@ msgstr "O seu contrasinal foi cambiado"
#: templates/personal.php:23
msgid "Unable to change your password"
-msgstr "Incapaz de trocar o seu contrasinal"
+msgstr "Non é posíbel cambiar o seu contrasinal"
#: templates/personal.php:24
msgid "Current password"
@@ -188,19 +189,19 @@ msgstr "amosar"
#: templates/personal.php:27
msgid "Change password"
-msgstr "Mudar contrasinal"
+msgstr "Cambiar o contrasinal"
#: templates/personal.php:33
msgid "Email"
-msgstr "Correo electrónico"
+msgstr "Correo"
#: templates/personal.php:34
msgid "Your email address"
-msgstr "O seu enderezo de correo electrónico"
+msgstr "O seu enderezo de correo"
#: templates/personal.php:35
msgid "Fill in an email address to enable password recovery"
-msgstr "Escriba un enderezo de correo electrónico para habilitar a recuperación do contrasinal"
+msgstr "Escriba un enderezo de correo para activar a recuperación do contrasinal"
#: templates/personal.php:41 templates/personal.php:42
msgid "Language"
@@ -212,15 +213,15 @@ msgstr "Axude na tradución"
#: templates/personal.php:52
msgid "WebDAV"
-msgstr ""
+msgstr "WebDAV"
#: templates/personal.php:54
msgid "Use this address to connect to your ownCloud in your file manager"
-msgstr ""
+msgstr "Utilice este enderezo para conectarse ao seu ownCloud co administrador de ficheiros"
#: templates/personal.php:63
msgid "Version"
-msgstr ""
+msgstr "Versión"
#: templates/personal.php:65
msgid ""
@@ -232,11 +233,11 @@ msgid ""
"License\">AGPL."
msgstr "Desenvolvido pola comunidade ownCloud , o código fonte está baixo a licenza AGPL ."
-#: templates/users.php:21 templates/users.php:76
+#: templates/users.php:21 templates/users.php:81
msgid "Name"
msgstr "Nome"
-#: templates/users.php:26 templates/users.php:78 templates/users.php:98
+#: templates/users.php:26 templates/users.php:83 templates/users.php:103
msgid "Groups"
msgstr "Grupos"
@@ -245,21 +246,29 @@ msgid "Create"
msgstr "Crear"
#: templates/users.php:35
-msgid "Default Quota"
-msgstr "Cota por omisión"
+msgid "Default Storage"
+msgstr "Almacenamento predeterminado"
-#: templates/users.php:55 templates/users.php:138
+#: templates/users.php:42 templates/users.php:138
+msgid "Unlimited"
+msgstr "Sen límites"
+
+#: templates/users.php:60 templates/users.php:153
msgid "Other"
msgstr "Outro"
-#: templates/users.php:80 templates/users.php:112
+#: templates/users.php:85 templates/users.php:117
msgid "Group Admin"
msgstr "Grupo Admin"
-#: templates/users.php:82
-msgid "Quota"
-msgstr "Cota"
+#: templates/users.php:87
+msgid "Storage"
+msgstr "Almacenamento"
-#: templates/users.php:146
+#: templates/users.php:133
+msgid "Default"
+msgstr "Predeterminado"
+
+#: templates/users.php:161
msgid "Delete"
-msgstr "Borrar"
+msgstr "Eliminar"
diff --git a/l10n/gl/user_ldap.po b/l10n/gl/user_ldap.po
index e61cf22989..024f611c18 100644
--- a/l10n/gl/user_ldap.po
+++ b/l10n/gl/user_ldap.po
@@ -9,9 +9,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-12-15 00:11+0100\n"
-"PO-Revision-Date: 2012-12-14 23:11+0000\n"
-"Last-Translator: I Robot \n"
+"POT-Creation-Date: 2013-01-01 00:04+0100\n"
+"PO-Revision-Date: 2012-12-31 08:48+0000\n"
+"Last-Translator: mbouzada \n"
"Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -24,13 +24,13 @@ msgid ""
"Warning: Apps user_ldap and user_webdavauth are incompatible. You may"
" experience unexpected behaviour. Please ask your system administrator to "
"disable one of them."
-msgstr ""
+msgstr "Aviso: Os aplicativos user_ldap e user_webdavauth son incompatíbeis. Pode acontecer un comportamento estraño. Consulte co administrador do sistema para desactivar un deles."
#: templates/settings.php:11
msgid ""
"Warning: The PHP LDAP module needs is not installed, the backend will"
" not work. Please ask your system administrator to install it."
-msgstr ""
+msgstr "Aviso: O módulo PHP LDAP é necesario e non está instalado, a infraestrutura non funcionará. Consulte co administrador do sistema para instalalo."
#: templates/settings.php:15
msgid "Host"
@@ -58,7 +58,7 @@ 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 "O DN do cliente do usuario co que hai que estabelecer unha conexión, p.ex uid=axente, dc=exemplo, dc=com. Para o acceso en anónimo de o DN e o contrasinal baleiros."
+msgstr "O DN do cliente do usuario co que hai que estabelecer unha conexión, p.ex uid=axente, dc=exemplo, dc=com. Para o acceso anónimo deixe o DN e o contrasinal baleiros."
#: templates/settings.php:18
msgid "Password"
@@ -130,7 +130,7 @@ msgstr "Usar TLS"
#: templates/settings.php:28
msgid "Do not use it for SSL connections, it will fail."
-msgstr "Non empregualo para conexións SSL: fallará."
+msgstr "Non empregalo para conexións SSL: fallará."
#: templates/settings.php:29
msgid "Case insensitve LDAP server (Windows)"
diff --git a/l10n/gl/user_webdavauth.po b/l10n/gl/user_webdavauth.po
index 8fdb274563..5630c82c50 100644
--- a/l10n/gl/user_webdavauth.po
+++ b/l10n/gl/user_webdavauth.po
@@ -3,14 +3,15 @@
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
+# , 2012.
# Miguel Branco, 2012.
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-12-20 00:11+0100\n"
-"PO-Revision-Date: 2012-12-19 23:12+0000\n"
-"Last-Translator: I Robot \n"
+"POT-Creation-Date: 2013-01-01 00:04+0100\n"
+"PO-Revision-Date: 2012-12-31 08:22+0000\n"
+"Last-Translator: mbouzada \n"
"Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -20,11 +21,11 @@ msgstr ""
#: templates/settings.php:4
msgid "URL: http://"
-msgstr ""
+msgstr "URL: http://"
#: templates/settings.php:6
msgid ""
"ownCloud will send the user credentials to this URL is interpret http 401 "
"and http 403 as credentials wrong and all other codes as credentials "
"correct."
-msgstr ""
+msgstr "ownCloud enviará as credenciais do usuario a este URL, http 401 e http 403 interpretanse como credenciais incorrectas e todos os outros códigos como credenciais correctas."
diff --git a/l10n/he/core.po b/l10n/he/core.po
index 131ac2897e..027e294615 100644
--- a/l10n/he/core.po
+++ b/l10n/he/core.po
@@ -11,9 +11,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-12-18 00:13+0100\n"
-"PO-Revision-Date: 2012-12-17 07:42+0000\n"
-"Last-Translator: Yaron Shahrabani \n"
+"POT-Creation-Date: 2013-01-07 00:04+0100\n"
+"PO-Revision-Date: 2013-01-06 23:04+0000\n"
+"Last-Translator: I Robot \n"
"Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -165,8 +165,8 @@ msgid "The object type is not specified."
msgstr "סוג הפריט לא צוין."
#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136
-#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541
-#: js/share.js:553
+#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554
+#: js/share.js:566
msgid "Error"
msgstr "שגיאה"
@@ -178,7 +178,7 @@ msgstr "שם היישום לא צוין."
msgid "The required file {file} is not installed!"
msgstr "הקובץ הנדרש {file} אינו מותקן!"
-#: js/share.js:124 js/share.js:581
+#: js/share.js:124 js/share.js:594
msgid "Error while sharing"
msgstr "שגיאה במהלך השיתוף"
@@ -206,11 +206,11 @@ msgstr "שיתוף עם"
msgid "Share with link"
msgstr "שיתוף עם קישור"
-#: js/share.js:164
+#: js/share.js:166
msgid "Password protect"
msgstr "הגנה בססמה"
-#: js/share.js:168 templates/installation.php:44 templates/login.php:26
+#: js/share.js:168 templates/installation.php:44 templates/login.php:35
#: templates/verify.php:13
msgid "Password"
msgstr "ססמה"
@@ -275,23 +275,23 @@ msgstr "מחיקה"
msgid "share"
msgstr "שיתוף"
-#: js/share.js:353 js/share.js:528 js/share.js:530
+#: js/share.js:356 js/share.js:541
msgid "Password protected"
msgstr "מוגן בססמה"
-#: js/share.js:541
+#: js/share.js:554
msgid "Error unsetting expiration date"
msgstr "אירעה שגיאה בביטול תאריך התפוגה"
-#: js/share.js:553
+#: js/share.js:566
msgid "Error setting expiration date"
msgstr "אירעה שגיאה בעת הגדרת תאריך התפוגה"
-#: js/share.js:568
+#: js/share.js:581
msgid "Sending ..."
msgstr "מתבצעת שליחה ..."
-#: js/share.js:579
+#: js/share.js:592
msgid "Email sent"
msgstr "הודעת הדוא״ל נשלחה"
@@ -316,7 +316,7 @@ msgid "Request failed!"
msgstr "הבקשה נכשלה!"
#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39
-#: templates/login.php:21
+#: templates/login.php:28
msgid "Username"
msgstr "שם משתמש"
@@ -530,29 +530,29 @@ msgstr "שירותי רשת בשליטתך"
msgid "Log out"
msgstr "התנתקות"
-#: templates/login.php:8
+#: templates/login.php:10
msgid "Automatic logon rejected!"
msgstr "בקשת הכניסה האוטומטית נדחתה!"
-#: templates/login.php:9
+#: templates/login.php:11
msgid ""
"If you did not change your password recently, your account may be "
"compromised!"
msgstr "אם לא שינית את ססמתך לאחרונה, יתכן שחשבונך נפגע!"
-#: templates/login.php:10
+#: templates/login.php:13
msgid "Please change your password to secure your account again."
msgstr "נא לשנות את הססמה שלך כדי לאבטח את חשבונך מחדש."
-#: templates/login.php:15
+#: templates/login.php:19
msgid "Lost your password?"
msgstr "שכחת את ססמתך?"
-#: templates/login.php:29
+#: templates/login.php:39
msgid "remember"
msgstr "שמירת הססמה"
-#: templates/login.php:30
+#: templates/login.php:41
msgid "Log in"
msgstr "כניסה"
@@ -568,6 +568,11 @@ msgstr "הקודם"
msgid "next"
msgstr "הבא"
+#: templates/update.php:3
+#, php-format
+msgid "Updating ownCloud to version %s, this may take a while."
+msgstr ""
+
#: templates/verify.php:5
msgid "Security Warning!"
msgstr "אזהרת אבטחה!"
diff --git a/l10n/he/files.po b/l10n/he/files.po
index 2d18545dbb..5e4c82a7dc 100644
--- a/l10n/he/files.po
+++ b/l10n/he/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-12-02 00:02+0100\n"
-"PO-Revision-Date: 2012-12-01 06:37+0000\n"
-"Last-Translator: Yaron Shahrabani \n"
+"POT-Creation-Date: 2013-01-07 00:04+0100\n"
+"PO-Revision-Date: 2013-01-06 23:05+0000\n"
+"Last-Translator: I Robot \n"
"Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -21,46 +21,58 @@ msgstr ""
"Language: he\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: ajax/upload.php:20
+#: ajax/upload.php:14
+msgid "No file was uploaded. Unknown error"
+msgstr "לא הועלה קובץ. טעות בלתי מזוהה."
+
+#: ajax/upload.php:21
msgid "There is no error, the file uploaded with success"
msgstr "לא אירעה תקלה, הקבצים הועלו בהצלחה"
-#: ajax/upload.php:21
+#: ajax/upload.php:22
msgid ""
"The uploaded file exceeds the upload_max_filesize directive in php.ini: "
msgstr "הקבצים שנשלחו חורגים מהגודל שצוין בהגדרה upload_max_filesize שבקובץ php.ini:"
-#: ajax/upload.php:23
+#: ajax/upload.php:24
msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form"
msgstr "הקובץ שהועלה חרג מההנחיה MAX_FILE_SIZE שצוינה בטופס ה־HTML"
-#: ajax/upload.php:25
+#: ajax/upload.php:26
msgid "The uploaded file was only partially uploaded"
msgstr "הקובץ שהועלה הועלה בצורה חלקית"
-#: ajax/upload.php:26
+#: ajax/upload.php:27
msgid "No file was uploaded"
msgstr "לא הועלו קבצים"
-#: ajax/upload.php:27
+#: ajax/upload.php:28
msgid "Missing a temporary folder"
msgstr "תיקייה זמנית חסרה"
-#: ajax/upload.php:28
+#: ajax/upload.php:29
msgid "Failed to write to disk"
msgstr "הכתיבה לכונן נכשלה"
+#: ajax/upload.php:45
+msgid "Not enough space available"
+msgstr ""
+
+#: ajax/upload.php:69
+msgid "Invalid directory."
+msgstr ""
+
#: appinfo/app.php:10
msgid "Files"
msgstr "קבצים"
-#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84
+#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85
msgid "Unshare"
msgstr "הסר שיתוף"
-#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90
+#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91
msgid "Delete"
msgstr "מחיקה"
@@ -68,122 +80,130 @@ msgstr "מחיקה"
msgid "Rename"
msgstr "שינוי שם"
-#: js/filelist.js:201 js/filelist.js:203
+#: js/filelist.js:199 js/filelist.js:201
msgid "{new_name} already exists"
msgstr "{new_name} כבר קיים"
-#: js/filelist.js:201 js/filelist.js:203
+#: js/filelist.js:199 js/filelist.js:201
msgid "replace"
msgstr "החלפה"
-#: js/filelist.js:201
+#: js/filelist.js:199
msgid "suggest name"
msgstr "הצעת שם"
-#: js/filelist.js:201 js/filelist.js:203
+#: js/filelist.js:199 js/filelist.js:201
msgid "cancel"
msgstr "ביטול"
-#: js/filelist.js:250
+#: js/filelist.js:248
msgid "replaced {new_name}"
msgstr "{new_name} הוחלף"
-#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286
+#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284
msgid "undo"
msgstr "ביטול"
-#: js/filelist.js:252
+#: js/filelist.js:250
msgid "replaced {new_name} with {old_name}"
msgstr "{new_name} הוחלף ב־{old_name}"
-#: js/filelist.js:284
+#: js/filelist.js:282
msgid "unshared {files}"
msgstr "בוטל שיתופם של {files}"
-#: js/filelist.js:286
+#: js/filelist.js:284
msgid "deleted {files}"
msgstr "{files} נמחקו"
-#: js/files.js:33
+#: js/files.js:31
+msgid "'.' is an invalid file name."
+msgstr ""
+
+#: js/files.js:36
+msgid "File name cannot be empty."
+msgstr ""
+
+#: js/files.js:45
msgid ""
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not "
"allowed."
msgstr "השם שגוי, אסור להשתמש בתווים '\\', '/', '<', '>', ':', '\"', '|', '?' ו־'*'."
-#: js/files.js:183
+#: js/files.js:186
msgid "generating ZIP-file, it may take some time."
msgstr "יוצר קובץ ZIP, אנא המתן."
-#: js/files.js:218
+#: js/files.js:224
msgid "Unable to upload your file as it is a directory or has 0 bytes"
msgstr "לא יכול להעלות את הקובץ מכיוון שזו תקיה או שמשקל הקובץ 0 בתים"
-#: js/files.js:218
+#: js/files.js:224
msgid "Upload Error"
msgstr "שגיאת העלאה"
-#: js/files.js:235
+#: js/files.js:241
msgid "Close"
msgstr "סגירה"
-#: js/files.js:254 js/files.js:368 js/files.js:398
+#: js/files.js:260 js/files.js:374 js/files.js:404
msgid "Pending"
msgstr "ממתין"
-#: js/files.js:274
+#: js/files.js:280
msgid "1 file uploading"
msgstr "קובץ אחד נשלח"
-#: js/files.js:277 js/files.js:331 js/files.js:346
+#: js/files.js:283 js/files.js:337 js/files.js:352
msgid "{count} files uploading"
msgstr "{count} קבצים נשלחים"
-#: js/files.js:349 js/files.js:382
+#: js/files.js:355 js/files.js:388
msgid "Upload cancelled."
msgstr "ההעלאה בוטלה."
-#: js/files.js:451
+#: js/files.js:457
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr "מתבצעת כעת העלאת קבצים. עזיבה של העמוד תבטל את ההעלאה."
-#: js/files.js:523
+#: js/files.js:527
msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud"
msgstr "שם התיקייה שגוי. השימוש בשם „Shared“ שמור לטובת Owncloud"
-#: js/files.js:704
+#: js/files.js:711
msgid "{count} files scanned"
msgstr "{count} קבצים נסרקו"
-#: js/files.js:712
+#: js/files.js:719
msgid "error while scanning"
msgstr "אירעה שגיאה במהלך הסריקה"
-#: js/files.js:785 templates/index.php:65
+#: js/files.js:792 templates/index.php:66
msgid "Name"
msgstr "שם"
-#: js/files.js:786 templates/index.php:76
+#: js/files.js:793 templates/index.php:77
msgid "Size"
msgstr "גודל"
-#: js/files.js:787 templates/index.php:78
+#: js/files.js:794 templates/index.php:79
msgid "Modified"
msgstr "זמן שינוי"
-#: js/files.js:814
+#: js/files.js:813
msgid "1 folder"
msgstr "תיקייה אחת"
-#: js/files.js:816
+#: js/files.js:815
msgid "{count} folders"
msgstr "{count} תיקיות"
-#: js/files.js:824
+#: js/files.js:823
msgid "1 file"
msgstr "קובץ אחד"
-#: js/files.js:826
+#: js/files.js:825
msgid "{count} files"
msgstr "{count} קבצים"
@@ -195,27 +215,27 @@ msgstr "טיפול בקבצים"
msgid "Maximum upload size"
msgstr "גודל העלאה מקסימלי"
-#: templates/admin.php:9
+#: templates/admin.php:10
msgid "max. possible: "
msgstr "המרבי האפשרי: "
-#: templates/admin.php:12
+#: templates/admin.php:15
msgid "Needed for multi-file and folder downloads."
msgstr "נחוץ להורדה של ריבוי קבצים או תיקיות."
-#: templates/admin.php:14
+#: templates/admin.php:17
msgid "Enable ZIP-download"
msgstr "הפעלת הורדת ZIP"
-#: templates/admin.php:17
+#: templates/admin.php:20
msgid "0 is unlimited"
msgstr "0 - ללא הגבלה"
-#: templates/admin.php:19
+#: templates/admin.php:22
msgid "Maximum input size for ZIP files"
msgstr "גודל הקלט המרבי לקובצי ZIP"
-#: templates/admin.php:23
+#: templates/admin.php:26
msgid "Save"
msgstr "שמירה"
@@ -243,28 +263,28 @@ msgstr "העלאה"
msgid "Cancel upload"
msgstr "ביטול ההעלאה"
-#: templates/index.php:57
+#: templates/index.php:58
msgid "Nothing in here. Upload something!"
msgstr "אין כאן שום דבר. אולי ברצונך להעלות משהו?"
-#: templates/index.php:71
+#: templates/index.php:72
msgid "Download"
msgstr "הורדה"
-#: templates/index.php:103
+#: templates/index.php:104
msgid "Upload too large"
msgstr "העלאה גדולה מידי"
-#: templates/index.php:105
+#: templates/index.php:106
msgid ""
"The files you are trying to upload exceed the maximum size for file uploads "
"on this server."
msgstr "הקבצים שניסית להעלות חרגו מהגודל המקסימלי להעלאת קבצים על שרת זה."
-#: templates/index.php:110
+#: templates/index.php:111
msgid "Files are being scanned, please wait."
msgstr "הקבצים נסרקים, נא להמתין."
-#: templates/index.php:113
+#: templates/index.php:114
msgid "Current scanning"
msgstr "הסריקה הנוכחית"
diff --git a/l10n/he/files_encryption.po b/l10n/he/files_encryption.po
index ab535b9271..860989631c 100644
--- a/l10n/he/files_encryption.po
+++ b/l10n/he/files_encryption.po
@@ -3,32 +3,33 @@
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
+# Gilad Naaman , 2012.
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-08-13 23:12+0200\n"
-"PO-Revision-Date: 2012-08-12 22:33+0000\n"
-"Last-Translator: FULL NAME \n"
+"POT-Creation-Date: 2012-12-27 00:04+0100\n"
+"PO-Revision-Date: 2012-12-26 17:21+0000\n"
+"Last-Translator: Gilad Naaman \n"
"Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: he\n"
-"Plural-Forms: nplurals=2; plural=(n != 1)\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: templates/settings.php:3
msgid "Encryption"
-msgstr ""
+msgstr "הצפנה"
-#: templates/settings.php:4
-msgid "Exclude the following file types from encryption"
-msgstr ""
-
-#: templates/settings.php:5
-msgid "None"
-msgstr ""
-
-#: templates/settings.php:10
+#: templates/settings.php:6
msgid "Enable Encryption"
-msgstr ""
+msgstr "הפעל הצפנה"
+
+#: templates/settings.php:7
+msgid "None"
+msgstr "כלום"
+
+#: templates/settings.php:12
+msgid "Exclude the following file types from encryption"
+msgstr "הוצא את סוגי הקבצים הבאים מהצפנה"
diff --git a/l10n/he/settings.po b/l10n/he/settings.po
index 8cec0934f2..4dd6b3fe8d 100644
--- a/l10n/he/settings.po
+++ b/l10n/he/settings.po
@@ -3,6 +3,7 @@
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
+# Gilad Naaman , 2012.
# , 2012.
# , 2011.
# Yaron Shahrabani , 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-12-21 00:10+0100\n"
-"PO-Revision-Date: 2012-12-19 23:20+0000\n"
+"POT-Creation-Date: 2012-12-30 00:04+0100\n"
+"PO-Revision-Date: 2012-12-29 23:05+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n"
"MIME-Version: 1.0\n"
@@ -120,19 +121,19 @@ msgstr "ברישיון לטובת AGPL."
msgstr "פותח על די קהילתownCloud , קוד המקור מוגן ברישיון AGPL ."
-#: templates/users.php:21 templates/users.php:76
+#: templates/users.php:21 templates/users.php:81
msgid "Name"
msgstr "שם"
-#: templates/users.php:26 templates/users.php:78 templates/users.php:98
+#: templates/users.php:26 templates/users.php:83 templates/users.php:103
msgid "Groups"
msgstr "קבוצות"
@@ -246,21 +247,29 @@ msgid "Create"
msgstr "יצירה"
#: templates/users.php:35
-msgid "Default Quota"
-msgstr "מכסת בררת המחדל"
+msgid "Default Storage"
+msgstr ""
-#: templates/users.php:55 templates/users.php:138
+#: templates/users.php:42 templates/users.php:138
+msgid "Unlimited"
+msgstr ""
+
+#: templates/users.php:60 templates/users.php:153
msgid "Other"
msgstr "אחר"
-#: templates/users.php:80 templates/users.php:112
+#: templates/users.php:85 templates/users.php:117
msgid "Group Admin"
msgstr "מנהל הקבוצה"
-#: templates/users.php:82
-msgid "Quota"
-msgstr "מכסה"
+#: templates/users.php:87
+msgid "Storage"
+msgstr ""
-#: templates/users.php:146
+#: templates/users.php:133
+msgid "Default"
+msgstr ""
+
+#: templates/users.php:161
msgid "Delete"
msgstr "מחיקה"
diff --git a/l10n/hi/core.po b/l10n/hi/core.po
index ad1e340700..9e21f4363b 100644
--- a/l10n/hi/core.po
+++ b/l10n/hi/core.po
@@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-12-13 00:17+0100\n"
-"PO-Revision-Date: 2012-12-12 23:17+0000\n"
+"POT-Creation-Date: 2013-01-07 00:04+0100\n"
+"PO-Revision-Date: 2013-01-06 23:05+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n"
"MIME-Version: 1.0\n"
@@ -163,8 +163,8 @@ msgid "The object type is not specified."
msgstr ""
#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136
-#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541
-#: js/share.js:553
+#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554
+#: js/share.js:566
msgid "Error"
msgstr ""
@@ -176,7 +176,7 @@ msgstr ""
msgid "The required file {file} is not installed!"
msgstr ""
-#: js/share.js:124 js/share.js:581
+#: js/share.js:124 js/share.js:594
msgid "Error while sharing"
msgstr ""
@@ -204,11 +204,11 @@ msgstr ""
msgid "Share with link"
msgstr ""
-#: js/share.js:164
+#: js/share.js:166
msgid "Password protect"
msgstr ""
-#: js/share.js:168 templates/installation.php:42 templates/login.php:24
+#: js/share.js:168 templates/installation.php:44 templates/login.php:35
#: templates/verify.php:13
msgid "Password"
msgstr "पासवर्ड"
@@ -273,23 +273,23 @@ msgstr ""
msgid "share"
msgstr ""
-#: js/share.js:353 js/share.js:528 js/share.js:530
+#: js/share.js:356 js/share.js:541
msgid "Password protected"
msgstr ""
-#: js/share.js:541
+#: js/share.js:554
msgid "Error unsetting expiration date"
msgstr ""
-#: js/share.js:553
+#: js/share.js:566
msgid "Error setting expiration date"
msgstr ""
-#: js/share.js:568
+#: js/share.js:581
msgid "Sending ..."
msgstr ""
-#: js/share.js:579
+#: js/share.js:592
msgid "Email sent"
msgstr ""
@@ -313,8 +313,8 @@ msgstr ""
msgid "Request failed!"
msgstr ""
-#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38
-#: templates/login.php:20
+#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39
+#: templates/login.php:28
msgid "Username"
msgstr "प्रयोक्ता का नाम"
@@ -403,44 +403,44 @@ msgstr ""
msgid "Create an admin account "
msgstr "व्यवस्थापक खाता बनाएँ"
-#: templates/installation.php:48
+#: templates/installation.php:50
msgid "Advanced"
msgstr "उन्नत"
-#: templates/installation.php:50
+#: templates/installation.php:52
msgid "Data folder"
msgstr ""
-#: templates/installation.php:57
+#: templates/installation.php:59
msgid "Configure the database"
msgstr "डेटाबेस कॉन्फ़िगर करें "
-#: templates/installation.php:62 templates/installation.php:73
-#: templates/installation.php:83 templates/installation.php:93
+#: templates/installation.php:64 templates/installation.php:75
+#: templates/installation.php:85 templates/installation.php:95
msgid "will be used"
msgstr ""
-#: templates/installation.php:105
+#: templates/installation.php:107
msgid "Database user"
msgstr "डेटाबेस उपयोगकर्ता"
-#: templates/installation.php:109
+#: templates/installation.php:111
msgid "Database password"
msgstr "डेटाबेस पासवर्ड"
-#: templates/installation.php:113
+#: templates/installation.php:115
msgid "Database name"
msgstr ""
-#: templates/installation.php:121
+#: templates/installation.php:123
msgid "Database tablespace"
msgstr ""
-#: templates/installation.php:127
+#: templates/installation.php:129
msgid "Database host"
msgstr ""
-#: templates/installation.php:132
+#: templates/installation.php:134
msgid "Finish setup"
msgstr "सेटअप समाप्त करे"
@@ -528,29 +528,29 @@ msgstr ""
msgid "Log out"
msgstr ""
-#: templates/login.php:8
+#: templates/login.php:10
msgid "Automatic logon rejected!"
msgstr ""
-#: templates/login.php:9
+#: templates/login.php:11
msgid ""
"If you did not change your password recently, your account may be "
"compromised!"
msgstr ""
-#: templates/login.php:10
+#: templates/login.php:13
msgid "Please change your password to secure your account again."
msgstr ""
-#: templates/login.php:15
+#: templates/login.php:19
msgid "Lost your password?"
msgstr ""
-#: templates/login.php:27
+#: templates/login.php:39
msgid "remember"
msgstr ""
-#: templates/login.php:28
+#: templates/login.php:41
msgid "Log in"
msgstr ""
@@ -566,6 +566,11 @@ msgstr "पिछला"
msgid "next"
msgstr "अगला"
+#: templates/update.php:3
+#, php-format
+msgid "Updating ownCloud to version %s, this may take a while."
+msgstr ""
+
#: templates/verify.php:5
msgid "Security Warning!"
msgstr ""
diff --git a/l10n/hi/files.po b/l10n/hi/files.po
index 1c494c435f..16c322352c 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-12-01 00:01+0100\n"
-"PO-Revision-Date: 2012-11-30 23:02+0000\n"
+"POT-Creation-Date: 2013-01-07 00:04+0100\n"
+"PO-Revision-Date: 2013-01-06 23:05+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n"
"MIME-Version: 1.0\n"
@@ -17,46 +17,58 @@ msgstr ""
"Language: hi\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: ajax/upload.php:20
-msgid "There is no error, the file uploaded with success"
+#: ajax/upload.php:14
+msgid "No file was uploaded. Unknown error"
msgstr ""
#: ajax/upload.php:21
+msgid "There is no error, the file uploaded with success"
+msgstr ""
+
+#: ajax/upload.php:22
msgid ""
"The uploaded file exceeds the upload_max_filesize directive in php.ini: "
msgstr ""
-#: ajax/upload.php:23
+#: ajax/upload.php:24
msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form"
msgstr ""
-#: ajax/upload.php:25
+#: ajax/upload.php:26
msgid "The uploaded file was only partially uploaded"
msgstr ""
-#: ajax/upload.php:26
+#: ajax/upload.php:27
msgid "No file was uploaded"
msgstr ""
-#: ajax/upload.php:27
+#: ajax/upload.php:28
msgid "Missing a temporary folder"
msgstr ""
-#: ajax/upload.php:28
+#: ajax/upload.php:29
msgid "Failed to write to disk"
msgstr ""
+#: ajax/upload.php:45
+msgid "Not enough space available"
+msgstr ""
+
+#: ajax/upload.php:69
+msgid "Invalid directory."
+msgstr ""
+
#: appinfo/app.php:10
msgid "Files"
msgstr ""
-#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84
+#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85
msgid "Unshare"
msgstr ""
-#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90
+#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91
msgid "Delete"
msgstr ""
@@ -64,122 +76,130 @@ msgstr ""
msgid "Rename"
msgstr ""
-#: js/filelist.js:201 js/filelist.js:203
+#: js/filelist.js:199 js/filelist.js:201
msgid "{new_name} already exists"
msgstr ""
-#: js/filelist.js:201 js/filelist.js:203
+#: js/filelist.js:199 js/filelist.js:201
msgid "replace"
msgstr ""
-#: js/filelist.js:201
+#: js/filelist.js:199
msgid "suggest name"
msgstr ""
-#: js/filelist.js:201 js/filelist.js:203
+#: js/filelist.js:199 js/filelist.js:201
msgid "cancel"
msgstr ""
-#: js/filelist.js:250
+#: js/filelist.js:248
msgid "replaced {new_name}"
msgstr ""
-#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286
+#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284
msgid "undo"
msgstr ""
-#: js/filelist.js:252
+#: js/filelist.js:250
msgid "replaced {new_name} with {old_name}"
msgstr ""
-#: js/filelist.js:284
+#: js/filelist.js:282
msgid "unshared {files}"
msgstr ""
-#: js/filelist.js:286
+#: js/filelist.js:284
msgid "deleted {files}"
msgstr ""
-#: js/files.js:33
+#: js/files.js:31
+msgid "'.' is an invalid file name."
+msgstr ""
+
+#: js/files.js:36
+msgid "File name cannot be empty."
+msgstr ""
+
+#: js/files.js:45
msgid ""
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not "
"allowed."
msgstr ""
-#: js/files.js:183
+#: js/files.js:186
msgid "generating ZIP-file, it may take some time."
msgstr ""
-#: js/files.js:218
+#: js/files.js:224
msgid "Unable to upload your file as it is a directory or has 0 bytes"
msgstr ""
-#: js/files.js:218
+#: js/files.js:224
msgid "Upload Error"
msgstr ""
-#: js/files.js:235
+#: js/files.js:241
msgid "Close"
msgstr ""
-#: js/files.js:254 js/files.js:368 js/files.js:398
+#: js/files.js:260 js/files.js:374 js/files.js:404
msgid "Pending"
msgstr ""
-#: js/files.js:274
+#: js/files.js:280
msgid "1 file uploading"
msgstr ""
-#: js/files.js:277 js/files.js:331 js/files.js:346
+#: js/files.js:283 js/files.js:337 js/files.js:352
msgid "{count} files uploading"
msgstr ""
-#: js/files.js:349 js/files.js:382
+#: js/files.js:355 js/files.js:388
msgid "Upload cancelled."
msgstr ""
-#: js/files.js:451
+#: js/files.js:457
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr ""
-#: js/files.js:523
+#: js/files.js:527
msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud"
msgstr ""
-#: js/files.js:704
+#: js/files.js:711
msgid "{count} files scanned"
msgstr ""
-#: js/files.js:712
+#: js/files.js:719
msgid "error while scanning"
msgstr ""
-#: js/files.js:785 templates/index.php:65
+#: js/files.js:792 templates/index.php:66
msgid "Name"
msgstr ""
-#: js/files.js:786 templates/index.php:76
+#: js/files.js:793 templates/index.php:77
msgid "Size"
msgstr ""
-#: js/files.js:787 templates/index.php:78
+#: js/files.js:794 templates/index.php:79
msgid "Modified"
msgstr ""
-#: js/files.js:814
+#: js/files.js:813
msgid "1 folder"
msgstr ""
-#: js/files.js:816
+#: js/files.js:815
msgid "{count} folders"
msgstr ""
-#: js/files.js:824
+#: js/files.js:823
msgid "1 file"
msgstr ""
-#: js/files.js:826
+#: js/files.js:825
msgid "{count} files"
msgstr ""
@@ -191,27 +211,27 @@ msgstr ""
msgid "Maximum upload size"
msgstr ""
-#: templates/admin.php:9
+#: templates/admin.php:10
msgid "max. possible: "
msgstr ""
-#: templates/admin.php:12
+#: templates/admin.php:15
msgid "Needed for multi-file and folder downloads."
msgstr ""
-#: templates/admin.php:14
+#: templates/admin.php:17
msgid "Enable ZIP-download"
msgstr ""
-#: templates/admin.php:17
+#: templates/admin.php:20
msgid "0 is unlimited"
msgstr ""
-#: templates/admin.php:19
+#: templates/admin.php:22
msgid "Maximum input size for ZIP files"
msgstr ""
-#: templates/admin.php:23
+#: templates/admin.php:26
msgid "Save"
msgstr ""
@@ -239,28 +259,28 @@ msgstr ""
msgid "Cancel upload"
msgstr ""
-#: templates/index.php:57
+#: templates/index.php:58
msgid "Nothing in here. Upload something!"
msgstr ""
-#: templates/index.php:71
+#: templates/index.php:72
msgid "Download"
msgstr ""
-#: templates/index.php:103
+#: templates/index.php:104
msgid "Upload too large"
msgstr ""
-#: templates/index.php:105
+#: templates/index.php:106
msgid ""
"The files you are trying to upload exceed the maximum size for file uploads "
"on this server."
msgstr ""
-#: templates/index.php:110
+#: templates/index.php:111
msgid "Files are being scanned, please wait."
msgstr ""
-#: templates/index.php:113
+#: templates/index.php:114
msgid "Current scanning"
msgstr ""
diff --git a/l10n/hi/settings.po b/l10n/hi/settings.po
index 76241d2e5a..5bf2738100 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-12-20 00:11+0100\n"
-"PO-Revision-Date: 2012-12-19 23:11+0000\n"
+"POT-Creation-Date: 2012-12-30 00:04+0100\n"
+"PO-Revision-Date: 2012-12-29 23:05+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n"
"MIME-Version: 1.0\n"
@@ -160,7 +160,7 @@ msgstr ""
msgid "Download iOS Client"
msgstr ""
-#: templates/personal.php:21 templates/users.php:23 templates/users.php:77
+#: templates/personal.php:21 templates/users.php:23 templates/users.php:82
msgid "Password"
msgstr "पासवर्ड"
@@ -230,11 +230,11 @@ msgid ""
"License\">AGPL."
msgstr ""
-#: templates/users.php:21 templates/users.php:76
+#: templates/users.php:21 templates/users.php:81
msgid "Name"
msgstr ""
-#: templates/users.php:26 templates/users.php:78 templates/users.php:98
+#: templates/users.php:26 templates/users.php:83 templates/users.php:103
msgid "Groups"
msgstr ""
@@ -243,21 +243,29 @@ msgid "Create"
msgstr ""
#: templates/users.php:35
-msgid "Default Quota"
+msgid "Default Storage"
msgstr ""
-#: templates/users.php:55 templates/users.php:138
+#: templates/users.php:42 templates/users.php:138
+msgid "Unlimited"
+msgstr ""
+
+#: templates/users.php:60 templates/users.php:153
msgid "Other"
msgstr ""
-#: templates/users.php:80 templates/users.php:112
+#: templates/users.php:85 templates/users.php:117
msgid "Group Admin"
msgstr ""
-#: templates/users.php:82
-msgid "Quota"
+#: templates/users.php:87
+msgid "Storage"
msgstr ""
-#: templates/users.php:146
+#: templates/users.php:133
+msgid "Default"
+msgstr ""
+
+#: templates/users.php:161
msgid "Delete"
msgstr ""
diff --git a/l10n/hr/core.po b/l10n/hr/core.po
index 3b78e7b8fd..afe9e17a5b 100644
--- a/l10n/hr/core.po
+++ b/l10n/hr/core.po
@@ -11,8 +11,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-12-13 00:17+0100\n"
-"PO-Revision-Date: 2012-12-12 23:17+0000\n"
+"POT-Creation-Date: 2013-01-07 00:04+0100\n"
+"PO-Revision-Date: 2013-01-06 23:04+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n"
"MIME-Version: 1.0\n"
@@ -165,8 +165,8 @@ msgid "The object type is not specified."
msgstr ""
#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136
-#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541
-#: js/share.js:553
+#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554
+#: js/share.js:566
msgid "Error"
msgstr "Pogreška"
@@ -178,7 +178,7 @@ msgstr ""
msgid "The required file {file} is not installed!"
msgstr ""
-#: js/share.js:124 js/share.js:581
+#: js/share.js:124 js/share.js:594
msgid "Error while sharing"
msgstr "Greška prilikom djeljenja"
@@ -206,11 +206,11 @@ msgstr "Djeli sa"
msgid "Share with link"
msgstr "Djeli preko link-a"
-#: js/share.js:164
+#: js/share.js:166
msgid "Password protect"
msgstr "Zaštiti lozinkom"
-#: js/share.js:168 templates/installation.php:42 templates/login.php:24
+#: js/share.js:168 templates/installation.php:44 templates/login.php:35
#: templates/verify.php:13
msgid "Password"
msgstr "Lozinka"
@@ -275,23 +275,23 @@ msgstr "izbriši"
msgid "share"
msgstr "djeli"
-#: js/share.js:353 js/share.js:528 js/share.js:530
+#: js/share.js:356 js/share.js:541
msgid "Password protected"
msgstr "Zaštita lozinkom"
-#: js/share.js:541
+#: js/share.js:554
msgid "Error unsetting expiration date"
msgstr "Greška prilikom brisanja datuma isteka"
-#: js/share.js:553
+#: js/share.js:566
msgid "Error setting expiration date"
msgstr "Greška prilikom postavljanja datuma isteka"
-#: js/share.js:568
+#: js/share.js:581
msgid "Sending ..."
msgstr ""
-#: js/share.js:579
+#: js/share.js:592
msgid "Email sent"
msgstr ""
@@ -315,8 +315,8 @@ msgstr ""
msgid "Request failed!"
msgstr ""
-#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38
-#: templates/login.php:20
+#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39
+#: templates/login.php:28
msgid "Username"
msgstr "Korisničko ime"
@@ -405,44 +405,44 @@ msgstr ""
msgid "Create an admin account "
msgstr "Stvori administratorski račun "
-#: templates/installation.php:48
+#: templates/installation.php:50
msgid "Advanced"
msgstr "Dodatno"
-#: templates/installation.php:50
+#: templates/installation.php:52
msgid "Data folder"
msgstr "Mapa baze podataka"
-#: templates/installation.php:57
+#: templates/installation.php:59
msgid "Configure the database"
msgstr "Konfiguriraj bazu podataka"
-#: templates/installation.php:62 templates/installation.php:73
-#: templates/installation.php:83 templates/installation.php:93
+#: templates/installation.php:64 templates/installation.php:75
+#: templates/installation.php:85 templates/installation.php:95
msgid "will be used"
msgstr "će se koristiti"
-#: templates/installation.php:105
+#: templates/installation.php:107
msgid "Database user"
msgstr "Korisnik baze podataka"
-#: templates/installation.php:109
+#: templates/installation.php:111
msgid "Database password"
msgstr "Lozinka baze podataka"
-#: templates/installation.php:113
+#: templates/installation.php:115
msgid "Database name"
msgstr "Ime baze podataka"
-#: templates/installation.php:121
+#: templates/installation.php:123
msgid "Database tablespace"
msgstr "Database tablespace"
-#: templates/installation.php:127
+#: templates/installation.php:129
msgid "Database host"
msgstr "Poslužitelj baze podataka"
-#: templates/installation.php:132
+#: templates/installation.php:134
msgid "Finish setup"
msgstr "Završi postavljanje"
@@ -530,29 +530,29 @@ msgstr "web usluge pod vašom kontrolom"
msgid "Log out"
msgstr "Odjava"
-#: templates/login.php:8
+#: templates/login.php:10
msgid "Automatic logon rejected!"
msgstr ""
-#: templates/login.php:9
+#: templates/login.php:11
msgid ""
"If you did not change your password recently, your account may be "
"compromised!"
msgstr ""
-#: templates/login.php:10
+#: templates/login.php:13
msgid "Please change your password to secure your account again."
msgstr ""
-#: templates/login.php:15
+#: templates/login.php:19
msgid "Lost your password?"
msgstr "Izgubili ste lozinku?"
-#: templates/login.php:27
+#: templates/login.php:39
msgid "remember"
msgstr "zapamtiti"
-#: templates/login.php:28
+#: templates/login.php:41
msgid "Log in"
msgstr "Prijava"
@@ -568,6 +568,11 @@ msgstr "prethodan"
msgid "next"
msgstr "sljedeći"
+#: templates/update.php:3
+#, php-format
+msgid "Updating ownCloud to version %s, this may take a while."
+msgstr ""
+
#: templates/verify.php:5
msgid "Security Warning!"
msgstr ""
diff --git a/l10n/hr/files.po b/l10n/hr/files.po
index 7a1464ff14..f704578fce 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-12-01 00:01+0100\n"
-"PO-Revision-Date: 2012-11-30 23:02+0000\n"
+"POT-Creation-Date: 2013-01-07 00:04+0100\n"
+"PO-Revision-Date: 2013-01-06 23:05+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n"
"MIME-Version: 1.0\n"
@@ -20,46 +20,58 @@ msgstr ""
"Language: hr\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
-#: ajax/upload.php:20
+#: ajax/upload.php:14
+msgid "No file was uploaded. Unknown error"
+msgstr ""
+
+#: ajax/upload.php:21
msgid "There is no error, the file uploaded with success"
msgstr "Datoteka je poslana uspješno i bez pogrešaka"
-#: ajax/upload.php:21
+#: ajax/upload.php:22
msgid ""
"The uploaded file exceeds the upload_max_filesize directive in php.ini: "
msgstr ""
-#: ajax/upload.php:23
+#: ajax/upload.php:24
msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form"
msgstr "Poslana datoteka izlazi iz okvira MAX_FILE_SIZE direktive postavljene u HTML obrascu"
-#: ajax/upload.php:25
+#: ajax/upload.php:26
msgid "The uploaded file was only partially uploaded"
msgstr "Datoteka je poslana samo djelomično"
-#: ajax/upload.php:26
+#: ajax/upload.php:27
msgid "No file was uploaded"
msgstr "Ni jedna datoteka nije poslana"
-#: ajax/upload.php:27
+#: ajax/upload.php:28
msgid "Missing a temporary folder"
msgstr "Nedostaje privremena mapa"
-#: ajax/upload.php:28
+#: ajax/upload.php:29
msgid "Failed to write to disk"
msgstr "Neuspjelo pisanje na disk"
+#: ajax/upload.php:45
+msgid "Not enough space available"
+msgstr ""
+
+#: ajax/upload.php:69
+msgid "Invalid directory."
+msgstr ""
+
#: appinfo/app.php:10
msgid "Files"
msgstr "Datoteke"
-#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84
+#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85
msgid "Unshare"
msgstr "Prekini djeljenje"
-#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90
+#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91
msgid "Delete"
msgstr "Briši"
@@ -67,122 +79,130 @@ msgstr "Briši"
msgid "Rename"
msgstr "Promjeni ime"
-#: js/filelist.js:201 js/filelist.js:203
+#: js/filelist.js:199 js/filelist.js:201
msgid "{new_name} already exists"
msgstr ""
-#: js/filelist.js:201 js/filelist.js:203
+#: js/filelist.js:199 js/filelist.js:201
msgid "replace"
msgstr "zamjeni"
-#: js/filelist.js:201
+#: js/filelist.js:199
msgid "suggest name"
msgstr "predloži ime"
-#: js/filelist.js:201 js/filelist.js:203
+#: js/filelist.js:199 js/filelist.js:201
msgid "cancel"
msgstr "odustani"
-#: js/filelist.js:250
+#: js/filelist.js:248
msgid "replaced {new_name}"
msgstr ""
-#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286
+#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284
msgid "undo"
msgstr "vrati"
-#: js/filelist.js:252
+#: js/filelist.js:250
msgid "replaced {new_name} with {old_name}"
msgstr ""
-#: js/filelist.js:284
+#: js/filelist.js:282
msgid "unshared {files}"
msgstr ""
-#: js/filelist.js:286
+#: js/filelist.js:284
msgid "deleted {files}"
msgstr ""
-#: js/files.js:33
+#: js/files.js:31
+msgid "'.' is an invalid file name."
+msgstr ""
+
+#: js/files.js:36
+msgid "File name cannot be empty."
+msgstr ""
+
+#: js/files.js:45
msgid ""
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not "
"allowed."
msgstr ""
-#: js/files.js:183
+#: js/files.js:186
msgid "generating ZIP-file, it may take some time."
msgstr "generiranje ZIP datoteke, ovo može potrajati."
-#: js/files.js:218
+#: js/files.js:224
msgid "Unable to upload your file as it is a directory or has 0 bytes"
msgstr "Nemoguće poslati datoteku jer je prazna ili je direktorij"
-#: js/files.js:218
+#: js/files.js:224
msgid "Upload Error"
msgstr "Pogreška pri slanju"
-#: js/files.js:235
+#: js/files.js:241
msgid "Close"
msgstr "Zatvori"
-#: js/files.js:254 js/files.js:368 js/files.js:398
+#: js/files.js:260 js/files.js:374 js/files.js:404
msgid "Pending"
msgstr "U tijeku"
-#: js/files.js:274
+#: js/files.js:280
msgid "1 file uploading"
msgstr "1 datoteka se učitava"
-#: js/files.js:277 js/files.js:331 js/files.js:346
+#: js/files.js:283 js/files.js:337 js/files.js:352
msgid "{count} files uploading"
msgstr ""
-#: js/files.js:349 js/files.js:382
+#: js/files.js:355 js/files.js:388
msgid "Upload cancelled."
msgstr "Slanje poništeno."
-#: js/files.js:451
+#: js/files.js:457
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr "Učitavanje datoteke. Napuštanjem stranice će prekinuti učitavanje."
-#: js/files.js:523
+#: js/files.js:527
msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud"
msgstr ""
-#: js/files.js:704
+#: js/files.js:711
msgid "{count} files scanned"
msgstr ""
-#: js/files.js:712
+#: js/files.js:719
msgid "error while scanning"
msgstr "grečka prilikom skeniranja"
-#: js/files.js:785 templates/index.php:65
+#: js/files.js:792 templates/index.php:66
msgid "Name"
msgstr "Naziv"
-#: js/files.js:786 templates/index.php:76
+#: js/files.js:793 templates/index.php:77
msgid "Size"
msgstr "Veličina"
-#: js/files.js:787 templates/index.php:78
+#: js/files.js:794 templates/index.php:79
msgid "Modified"
msgstr "Zadnja promjena"
-#: js/files.js:814
+#: js/files.js:813
msgid "1 folder"
msgstr ""
-#: js/files.js:816
+#: js/files.js:815
msgid "{count} folders"
msgstr ""
-#: js/files.js:824
+#: js/files.js:823
msgid "1 file"
msgstr ""
-#: js/files.js:826
+#: js/files.js:825
msgid "{count} files"
msgstr ""
@@ -194,27 +214,27 @@ msgstr "datoteka za rukovanje"
msgid "Maximum upload size"
msgstr "Maksimalna veličina prijenosa"
-#: templates/admin.php:9
+#: templates/admin.php:10
msgid "max. possible: "
msgstr "maksimalna moguća: "
-#: templates/admin.php:12
+#: templates/admin.php:15
msgid "Needed for multi-file and folder downloads."
msgstr "Potrebno za preuzimanje više datoteke i mape"
-#: templates/admin.php:14
+#: templates/admin.php:17
msgid "Enable ZIP-download"
msgstr "Omogući ZIP-preuzimanje"
-#: templates/admin.php:17
+#: templates/admin.php:20
msgid "0 is unlimited"
msgstr "0 je \"bez limita\""
-#: templates/admin.php:19
+#: templates/admin.php:22
msgid "Maximum input size for ZIP files"
msgstr "Maksimalna veličina za ZIP datoteke"
-#: templates/admin.php:23
+#: templates/admin.php:26
msgid "Save"
msgstr "Snimi"
@@ -242,28 +262,28 @@ msgstr "Pošalji"
msgid "Cancel upload"
msgstr "Prekini upload"
-#: templates/index.php:57
+#: templates/index.php:58
msgid "Nothing in here. Upload something!"
msgstr "Nema ničega u ovoj mapi. Pošalji nešto!"
-#: templates/index.php:71
+#: templates/index.php:72
msgid "Download"
msgstr "Preuzmi"
-#: templates/index.php:103
+#: templates/index.php:104
msgid "Upload too large"
msgstr "Prijenos je preobiman"
-#: templates/index.php:105
+#: templates/index.php:106
msgid ""
"The files you are trying to upload exceed the maximum size for file uploads "
"on this server."
msgstr "Datoteke koje pokušavate prenijeti prelaze maksimalnu veličinu za prijenos datoteka na ovom poslužitelju."
-#: templates/index.php:110
+#: templates/index.php:111
msgid "Files are being scanned, please wait."
msgstr "Datoteke se skeniraju, molimo pričekajte."
-#: templates/index.php:113
+#: templates/index.php:114
msgid "Current scanning"
msgstr "Trenutno skeniranje"
diff --git a/l10n/hr/settings.po b/l10n/hr/settings.po
index b46de54ca7..530e4e42e1 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-12-21 00:10+0100\n"
-"PO-Revision-Date: 2012-12-19 23:20+0000\n"
+"POT-Creation-Date: 2012-12-30 00:04+0100\n"
+"PO-Revision-Date: 2012-12-29 23:05+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n"
"MIME-Version: 1.0\n"
@@ -163,7 +163,7 @@ msgstr ""
msgid "Download iOS Client"
msgstr ""
-#: templates/personal.php:21 templates/users.php:23 templates/users.php:77
+#: templates/personal.php:21 templates/users.php:23 templates/users.php:82
msgid "Password"
msgstr "Lozinka"
@@ -233,11 +233,11 @@ msgid ""
"License\">AGPL."
msgstr ""
-#: templates/users.php:21 templates/users.php:76
+#: templates/users.php:21 templates/users.php:81
msgid "Name"
msgstr "Ime"
-#: templates/users.php:26 templates/users.php:78 templates/users.php:98
+#: templates/users.php:26 templates/users.php:83 templates/users.php:103
msgid "Groups"
msgstr "Grupe"
@@ -246,21 +246,29 @@ msgid "Create"
msgstr "Izradi"
#: templates/users.php:35
-msgid "Default Quota"
-msgstr "standardni kvota"
+msgid "Default Storage"
+msgstr ""
-#: templates/users.php:55 templates/users.php:138
+#: templates/users.php:42 templates/users.php:138
+msgid "Unlimited"
+msgstr ""
+
+#: templates/users.php:60 templates/users.php:153
msgid "Other"
msgstr "ostali"
-#: templates/users.php:80 templates/users.php:112
+#: templates/users.php:85 templates/users.php:117
msgid "Group Admin"
msgstr "Grupa Admin"
-#: templates/users.php:82
-msgid "Quota"
-msgstr "kvota"
+#: templates/users.php:87
+msgid "Storage"
+msgstr ""
-#: templates/users.php:146
+#: templates/users.php:133
+msgid "Default"
+msgstr ""
+
+#: templates/users.php:161
msgid "Delete"
msgstr "Obriši"
diff --git a/l10n/hu/core.po b/l10n/hu/core.po
new file mode 100644
index 0000000000..34ccef27dd
--- /dev/null
+++ b/l10n/hu/core.po
@@ -0,0 +1,584 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+#
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: ownCloud\n"
+"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
+"POT-Creation-Date: 2013-01-07 00:04+0100\n"
+"PO-Revision-Date: 2013-01-06 23:05+0000\n"
+"Last-Translator: I Robot \n"
+"Language-Team: Hungarian (http://www.transifex.com/projects/p/owncloud/language/hu/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: hu\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: ajax/share.php:84
+#, php-format
+msgid "User %s shared a file with you"
+msgstr ""
+
+#: ajax/share.php:86
+#, php-format
+msgid "User %s shared a folder with you"
+msgstr ""
+
+#: ajax/share.php:88
+#, php-format
+msgid ""
+"User %s shared the file \"%s\" with you. It is available for download here: "
+"%s"
+msgstr ""
+
+#: ajax/share.php:90
+#, php-format
+msgid ""
+"User %s shared the folder \"%s\" with you. It is available for download "
+"here: %s"
+msgstr ""
+
+#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25
+msgid "Category type not provided."
+msgstr ""
+
+#: ajax/vcategories/add.php:30
+msgid "No category to add?"
+msgstr ""
+
+#: ajax/vcategories/add.php:37
+msgid "This category already exists: "
+msgstr ""
+
+#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27
+#: ajax/vcategories/favorites.php:24
+#: ajax/vcategories/removeFromFavorites.php:26
+msgid "Object type not provided."
+msgstr ""
+
+#: ajax/vcategories/addToFavorites.php:30
+#: ajax/vcategories/removeFromFavorites.php:30
+#, php-format
+msgid "%s ID not provided."
+msgstr ""
+
+#: ajax/vcategories/addToFavorites.php:35
+#, php-format
+msgid "Error adding %s to favorites."
+msgstr ""
+
+#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136
+msgid "No categories selected for deletion."
+msgstr ""
+
+#: ajax/vcategories/removeFromFavorites.php:35
+#, php-format
+msgid "Error removing %s from favorites."
+msgstr ""
+
+#: js/js.js:259 templates/layout.user.php:60 templates/layout.user.php:61
+msgid "Settings"
+msgstr ""
+
+#: js/js.js:704
+msgid "seconds ago"
+msgstr ""
+
+#: js/js.js:705
+msgid "1 minute ago"
+msgstr ""
+
+#: js/js.js:706
+msgid "{minutes} minutes ago"
+msgstr ""
+
+#: js/js.js:707
+msgid "1 hour ago"
+msgstr ""
+
+#: js/js.js:708
+msgid "{hours} hours ago"
+msgstr ""
+
+#: js/js.js:709
+msgid "today"
+msgstr ""
+
+#: js/js.js:710
+msgid "yesterday"
+msgstr ""
+
+#: js/js.js:711
+msgid "{days} days ago"
+msgstr ""
+
+#: js/js.js:712
+msgid "last month"
+msgstr ""
+
+#: js/js.js:713
+msgid "{months} months ago"
+msgstr ""
+
+#: js/js.js:714
+msgid "months ago"
+msgstr ""
+
+#: js/js.js:715
+msgid "last year"
+msgstr ""
+
+#: js/js.js:716
+msgid "years ago"
+msgstr ""
+
+#: js/oc-dialogs.js:126
+msgid "Choose"
+msgstr ""
+
+#: js/oc-dialogs.js:146 js/oc-dialogs.js:166
+msgid "Cancel"
+msgstr ""
+
+#: js/oc-dialogs.js:162
+msgid "No"
+msgstr ""
+
+#: js/oc-dialogs.js:163
+msgid "Yes"
+msgstr ""
+
+#: js/oc-dialogs.js:180
+msgid "Ok"
+msgstr ""
+
+#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102
+#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162
+msgid "The object type is not specified."
+msgstr ""
+
+#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136
+#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554
+#: js/share.js:566
+msgid "Error"
+msgstr ""
+
+#: js/oc-vcategories.js:179
+msgid "The app name is not specified."
+msgstr ""
+
+#: js/oc-vcategories.js:194
+msgid "The required file {file} is not installed!"
+msgstr ""
+
+#: js/share.js:124 js/share.js:594
+msgid "Error while sharing"
+msgstr ""
+
+#: js/share.js:135
+msgid "Error while unsharing"
+msgstr ""
+
+#: js/share.js:142
+msgid "Error while changing permissions"
+msgstr ""
+
+#: js/share.js:151
+msgid "Shared with you and the group {group} by {owner}"
+msgstr ""
+
+#: js/share.js:153
+msgid "Shared with you by {owner}"
+msgstr ""
+
+#: js/share.js:158
+msgid "Share with"
+msgstr ""
+
+#: js/share.js:163
+msgid "Share with link"
+msgstr ""
+
+#: js/share.js:166
+msgid "Password protect"
+msgstr ""
+
+#: js/share.js:168 templates/installation.php:44 templates/login.php:35
+#: templates/verify.php:13
+msgid "Password"
+msgstr ""
+
+#: js/share.js:172
+msgid "Email link to person"
+msgstr ""
+
+#: js/share.js:173
+msgid "Send"
+msgstr ""
+
+#: js/share.js:177
+msgid "Set expiration date"
+msgstr ""
+
+#: js/share.js:178
+msgid "Expiration date"
+msgstr ""
+
+#: js/share.js:210
+msgid "Share via email:"
+msgstr ""
+
+#: js/share.js:212
+msgid "No people found"
+msgstr ""
+
+#: js/share.js:239
+msgid "Resharing is not allowed"
+msgstr ""
+
+#: js/share.js:275
+msgid "Shared in {item} with {user}"
+msgstr ""
+
+#: js/share.js:296
+msgid "Unshare"
+msgstr ""
+
+#: js/share.js:308
+msgid "can edit"
+msgstr ""
+
+#: js/share.js:310
+msgid "access control"
+msgstr ""
+
+#: js/share.js:313
+msgid "create"
+msgstr ""
+
+#: js/share.js:316
+msgid "update"
+msgstr ""
+
+#: js/share.js:319
+msgid "delete"
+msgstr ""
+
+#: js/share.js:322
+msgid "share"
+msgstr ""
+
+#: js/share.js:356 js/share.js:541
+msgid "Password protected"
+msgstr ""
+
+#: js/share.js:554
+msgid "Error unsetting expiration date"
+msgstr ""
+
+#: js/share.js:566
+msgid "Error setting expiration date"
+msgstr ""
+
+#: js/share.js:581
+msgid "Sending ..."
+msgstr ""
+
+#: js/share.js:592
+msgid "Email sent"
+msgstr ""
+
+#: lostpassword/controller.php:47
+msgid "ownCloud password reset"
+msgstr ""
+
+#: lostpassword/templates/email.php:2
+msgid "Use the following link to reset your password: {link}"
+msgstr ""
+
+#: lostpassword/templates/lostpassword.php:3
+msgid "You will receive a link to reset your password via Email."
+msgstr ""
+
+#: lostpassword/templates/lostpassword.php:5
+msgid "Reset email send."
+msgstr ""
+
+#: lostpassword/templates/lostpassword.php:8
+msgid "Request failed!"
+msgstr ""
+
+#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39
+#: templates/login.php:28
+msgid "Username"
+msgstr ""
+
+#: lostpassword/templates/lostpassword.php:14
+msgid "Request reset"
+msgstr ""
+
+#: lostpassword/templates/resetpassword.php:4
+msgid "Your password was reset"
+msgstr ""
+
+#: lostpassword/templates/resetpassword.php:5
+msgid "To login page"
+msgstr ""
+
+#: lostpassword/templates/resetpassword.php:8
+msgid "New password"
+msgstr ""
+
+#: lostpassword/templates/resetpassword.php:11
+msgid "Reset password"
+msgstr ""
+
+#: strings.php:5
+msgid "Personal"
+msgstr ""
+
+#: strings.php:6
+msgid "Users"
+msgstr ""
+
+#: strings.php:7
+msgid "Apps"
+msgstr ""
+
+#: strings.php:8
+msgid "Admin"
+msgstr ""
+
+#: strings.php:9
+msgid "Help"
+msgstr ""
+
+#: templates/403.php:12
+msgid "Access forbidden"
+msgstr ""
+
+#: templates/404.php:12
+msgid "Cloud not found"
+msgstr ""
+
+#: templates/edit_categories_dialog.php:4
+msgid "Edit categories"
+msgstr ""
+
+#: templates/edit_categories_dialog.php:16
+msgid "Add"
+msgstr ""
+
+#: templates/installation.php:23 templates/installation.php:31
+msgid "Security Warning"
+msgstr ""
+
+#: templates/installation.php:24
+msgid ""
+"No secure random number generator is available, please enable the PHP "
+"OpenSSL extension."
+msgstr ""
+
+#: templates/installation.php:26
+msgid ""
+"Without a secure random number generator an attacker may be able to predict "
+"password reset tokens and take over your account."
+msgstr ""
+
+#: templates/installation.php:32
+msgid ""
+"Your data directory and your files are probably accessible from the "
+"internet. The .htaccess file that ownCloud provides is not working. We "
+"strongly suggest that you configure your webserver in a way that the data "
+"directory is no longer accessible or you move the data directory outside the"
+" webserver document root."
+msgstr ""
+
+#: templates/installation.php:36
+msgid "Create an admin account "
+msgstr ""
+
+#: templates/installation.php:50
+msgid "Advanced"
+msgstr ""
+
+#: templates/installation.php:52
+msgid "Data folder"
+msgstr ""
+
+#: templates/installation.php:59
+msgid "Configure the database"
+msgstr ""
+
+#: templates/installation.php:64 templates/installation.php:75
+#: templates/installation.php:85 templates/installation.php:95
+msgid "will be used"
+msgstr ""
+
+#: templates/installation.php:107
+msgid "Database user"
+msgstr ""
+
+#: templates/installation.php:111
+msgid "Database password"
+msgstr ""
+
+#: templates/installation.php:115
+msgid "Database name"
+msgstr ""
+
+#: templates/installation.php:123
+msgid "Database tablespace"
+msgstr ""
+
+#: templates/installation.php:129
+msgid "Database host"
+msgstr ""
+
+#: templates/installation.php:134
+msgid "Finish setup"
+msgstr ""
+
+#: templates/layout.guest.php:16 templates/layout.user.php:17
+msgid "Sunday"
+msgstr ""
+
+#: templates/layout.guest.php:16 templates/layout.user.php:17
+msgid "Monday"
+msgstr ""
+
+#: templates/layout.guest.php:16 templates/layout.user.php:17
+msgid "Tuesday"
+msgstr ""
+
+#: templates/layout.guest.php:16 templates/layout.user.php:17
+msgid "Wednesday"
+msgstr ""
+
+#: templates/layout.guest.php:16 templates/layout.user.php:17
+msgid "Thursday"
+msgstr ""
+
+#: templates/layout.guest.php:16 templates/layout.user.php:17
+msgid "Friday"
+msgstr ""
+
+#: templates/layout.guest.php:16 templates/layout.user.php:17
+msgid "Saturday"
+msgstr ""
+
+#: templates/layout.guest.php:17 templates/layout.user.php:18
+msgid "January"
+msgstr ""
+
+#: templates/layout.guest.php:17 templates/layout.user.php:18
+msgid "February"
+msgstr ""
+
+#: templates/layout.guest.php:17 templates/layout.user.php:18
+msgid "March"
+msgstr ""
+
+#: templates/layout.guest.php:17 templates/layout.user.php:18
+msgid "April"
+msgstr ""
+
+#: templates/layout.guest.php:17 templates/layout.user.php:18
+msgid "May"
+msgstr ""
+
+#: templates/layout.guest.php:17 templates/layout.user.php:18
+msgid "June"
+msgstr ""
+
+#: templates/layout.guest.php:17 templates/layout.user.php:18
+msgid "July"
+msgstr ""
+
+#: templates/layout.guest.php:17 templates/layout.user.php:18
+msgid "August"
+msgstr ""
+
+#: templates/layout.guest.php:17 templates/layout.user.php:18
+msgid "September"
+msgstr ""
+
+#: templates/layout.guest.php:17 templates/layout.user.php:18
+msgid "October"
+msgstr ""
+
+#: templates/layout.guest.php:17 templates/layout.user.php:18
+msgid "November"
+msgstr ""
+
+#: templates/layout.guest.php:17 templates/layout.user.php:18
+msgid "December"
+msgstr ""
+
+#: templates/layout.guest.php:42
+msgid "web services under your control"
+msgstr ""
+
+#: templates/layout.user.php:45
+msgid "Log out"
+msgstr ""
+
+#: templates/login.php:10
+msgid "Automatic logon rejected!"
+msgstr ""
+
+#: templates/login.php:11
+msgid ""
+"If you did not change your password recently, your account may be "
+"compromised!"
+msgstr ""
+
+#: templates/login.php:13
+msgid "Please change your password to secure your account again."
+msgstr ""
+
+#: templates/login.php:19
+msgid "Lost your password?"
+msgstr ""
+
+#: templates/login.php:39
+msgid "remember"
+msgstr ""
+
+#: templates/login.php:41
+msgid "Log in"
+msgstr ""
+
+#: templates/logout.php:1
+msgid "You are logged out."
+msgstr ""
+
+#: templates/part.pagenavi.php:3
+msgid "prev"
+msgstr ""
+
+#: templates/part.pagenavi.php:20
+msgid "next"
+msgstr ""
+
+#: templates/update.php:3
+#, php-format
+msgid "Updating ownCloud to version %s, this may take a while."
+msgstr ""
+
+#: templates/verify.php:5
+msgid "Security Warning!"
+msgstr ""
+
+#: templates/verify.php:6
+msgid ""
+"Please verify your password. For security reasons you may be "
+"occasionally asked to enter your password again."
+msgstr ""
+
+#: templates/verify.php:16
+msgid "Verify"
+msgstr ""
diff --git a/l10n/hu/files.po b/l10n/hu/files.po
new file mode 100644
index 0000000000..cb4ea38343
--- /dev/null
+++ b/l10n/hu/files.po
@@ -0,0 +1,286 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+#
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: ownCloud\n"
+"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
+"POT-Creation-Date: 2013-01-07 00:04+0100\n"
+"PO-Revision-Date: 2013-01-06 23:05+0000\n"
+"Last-Translator: I Robot \n"
+"Language-Team: Hungarian (http://www.transifex.com/projects/p/owncloud/language/hu/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: hu\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: ajax/upload.php:14
+msgid "No file was uploaded. Unknown error"
+msgstr ""
+
+#: ajax/upload.php:21
+msgid "There is no error, the file uploaded with success"
+msgstr ""
+
+#: ajax/upload.php:22
+msgid ""
+"The uploaded file exceeds the upload_max_filesize directive in php.ini: "
+msgstr ""
+
+#: ajax/upload.php:24
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form"
+msgstr ""
+
+#: ajax/upload.php:26
+msgid "The uploaded file was only partially uploaded"
+msgstr ""
+
+#: ajax/upload.php:27
+msgid "No file was uploaded"
+msgstr ""
+
+#: ajax/upload.php:28
+msgid "Missing a temporary folder"
+msgstr ""
+
+#: ajax/upload.php:29
+msgid "Failed to write to disk"
+msgstr ""
+
+#: ajax/upload.php:45
+msgid "Not enough space available"
+msgstr ""
+
+#: ajax/upload.php:69
+msgid "Invalid directory."
+msgstr ""
+
+#: appinfo/app.php:10
+msgid "Files"
+msgstr ""
+
+#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85
+msgid "Unshare"
+msgstr ""
+
+#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91
+msgid "Delete"
+msgstr ""
+
+#: js/fileactions.js:181
+msgid "Rename"
+msgstr ""
+
+#: js/filelist.js:199 js/filelist.js:201
+msgid "{new_name} already exists"
+msgstr ""
+
+#: js/filelist.js:199 js/filelist.js:201
+msgid "replace"
+msgstr ""
+
+#: js/filelist.js:199
+msgid "suggest name"
+msgstr ""
+
+#: js/filelist.js:199 js/filelist.js:201
+msgid "cancel"
+msgstr ""
+
+#: js/filelist.js:248
+msgid "replaced {new_name}"
+msgstr ""
+
+#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284
+msgid "undo"
+msgstr ""
+
+#: js/filelist.js:250
+msgid "replaced {new_name} with {old_name}"
+msgstr ""
+
+#: js/filelist.js:282
+msgid "unshared {files}"
+msgstr ""
+
+#: js/filelist.js:284
+msgid "deleted {files}"
+msgstr ""
+
+#: js/files.js:31
+msgid "'.' is an invalid file name."
+msgstr ""
+
+#: js/files.js:36
+msgid "File name cannot be empty."
+msgstr ""
+
+#: js/files.js:45
+msgid ""
+"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not "
+"allowed."
+msgstr ""
+
+#: js/files.js:186
+msgid "generating ZIP-file, it may take some time."
+msgstr ""
+
+#: js/files.js:224
+msgid "Unable to upload your file as it is a directory or has 0 bytes"
+msgstr ""
+
+#: js/files.js:224
+msgid "Upload Error"
+msgstr ""
+
+#: js/files.js:241
+msgid "Close"
+msgstr ""
+
+#: js/files.js:260 js/files.js:374 js/files.js:404
+msgid "Pending"
+msgstr ""
+
+#: js/files.js:280
+msgid "1 file uploading"
+msgstr ""
+
+#: js/files.js:283 js/files.js:337 js/files.js:352
+msgid "{count} files uploading"
+msgstr ""
+
+#: js/files.js:355 js/files.js:388
+msgid "Upload cancelled."
+msgstr ""
+
+#: js/files.js:457
+msgid ""
+"File upload is in progress. Leaving the page now will cancel the upload."
+msgstr ""
+
+#: js/files.js:527
+msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud"
+msgstr ""
+
+#: js/files.js:711
+msgid "{count} files scanned"
+msgstr ""
+
+#: js/files.js:719
+msgid "error while scanning"
+msgstr ""
+
+#: js/files.js:792 templates/index.php:66
+msgid "Name"
+msgstr ""
+
+#: js/files.js:793 templates/index.php:77
+msgid "Size"
+msgstr ""
+
+#: js/files.js:794 templates/index.php:79
+msgid "Modified"
+msgstr ""
+
+#: js/files.js:813
+msgid "1 folder"
+msgstr ""
+
+#: js/files.js:815
+msgid "{count} folders"
+msgstr ""
+
+#: js/files.js:823
+msgid "1 file"
+msgstr ""
+
+#: js/files.js:825
+msgid "{count} files"
+msgstr ""
+
+#: templates/admin.php:5
+msgid "File handling"
+msgstr ""
+
+#: templates/admin.php:7
+msgid "Maximum upload size"
+msgstr ""
+
+#: templates/admin.php:10
+msgid "max. possible: "
+msgstr ""
+
+#: templates/admin.php:15
+msgid "Needed for multi-file and folder downloads."
+msgstr ""
+
+#: templates/admin.php:17
+msgid "Enable ZIP-download"
+msgstr ""
+
+#: templates/admin.php:20
+msgid "0 is unlimited"
+msgstr ""
+
+#: templates/admin.php:22
+msgid "Maximum input size for ZIP files"
+msgstr ""
+
+#: templates/admin.php:26
+msgid "Save"
+msgstr ""
+
+#: templates/index.php:7
+msgid "New"
+msgstr ""
+
+#: templates/index.php:10
+msgid "Text file"
+msgstr ""
+
+#: templates/index.php:12
+msgid "Folder"
+msgstr ""
+
+#: templates/index.php:14
+msgid "From link"
+msgstr ""
+
+#: templates/index.php:35
+msgid "Upload"
+msgstr ""
+
+#: templates/index.php:43
+msgid "Cancel upload"
+msgstr ""
+
+#: templates/index.php:58
+msgid "Nothing in here. Upload something!"
+msgstr ""
+
+#: templates/index.php:72
+msgid "Download"
+msgstr ""
+
+#: templates/index.php:104
+msgid "Upload too large"
+msgstr ""
+
+#: templates/index.php:106
+msgid ""
+"The files you are trying to upload exceed the maximum size for file uploads "
+"on this server."
+msgstr ""
+
+#: templates/index.php:111
+msgid "Files are being scanned, please wait."
+msgstr ""
+
+#: templates/index.php:114
+msgid "Current scanning"
+msgstr ""
diff --git a/l10n/hu/files_encryption.po b/l10n/hu/files_encryption.po
new file mode 100644
index 0000000000..26913fea99
--- /dev/null
+++ b/l10n/hu/files_encryption.po
@@ -0,0 +1,34 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+#
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: ownCloud\n"
+"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
+"POT-Creation-Date: 2013-01-03 00:04+0100\n"
+"PO-Revision-Date: 2012-08-12 22:33+0000\n"
+"Last-Translator: FULL NAME \n"
+"Language-Team: Hungarian (http://www.transifex.com/projects/p/owncloud/language/hu/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: hu\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: templates/settings.php:3
+msgid "Encryption"
+msgstr ""
+
+#: templates/settings.php:6
+msgid "Enable Encryption"
+msgstr ""
+
+#: templates/settings.php:7
+msgid "None"
+msgstr ""
+
+#: templates/settings.php:12
+msgid "Exclude the following file types from encryption"
+msgstr ""
diff --git a/l10n/hu/files_external.po b/l10n/hu/files_external.po
new file mode 100644
index 0000000000..5ee957401a
--- /dev/null
+++ b/l10n/hu/files_external.po
@@ -0,0 +1,120 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+#
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: ownCloud\n"
+"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
+"POT-Creation-Date: 2013-01-03 00:04+0100\n"
+"PO-Revision-Date: 2012-08-12 22:34+0000\n"
+"Last-Translator: FULL NAME \n"
+"Language-Team: Hungarian (http://www.transifex.com/projects/p/owncloud/language/hu/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: hu\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: js/dropbox.js:7 js/dropbox.js:25 js/google.js:7 js/google.js:23
+msgid "Access granted"
+msgstr ""
+
+#: js/dropbox.js:28 js/dropbox.js:74 js/dropbox.js:79 js/dropbox.js:86
+msgid "Error configuring Dropbox storage"
+msgstr ""
+
+#: js/dropbox.js:34 js/dropbox.js:45 js/google.js:31 js/google.js:40
+msgid "Grant access"
+msgstr ""
+
+#: js/dropbox.js:73 js/google.js:72
+msgid "Fill out all required fields"
+msgstr ""
+
+#: js/dropbox.js:85
+msgid "Please provide a valid Dropbox app key and secret."
+msgstr ""
+
+#: js/google.js:26 js/google.js:73 js/google.js:78
+msgid "Error configuring Google Drive storage"
+msgstr ""
+
+#: lib/config.php:434
+msgid ""
+"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares "
+"is not possible. Please ask your system administrator to install it."
+msgstr ""
+
+#: lib/config.php:435
+msgid ""
+"Warning: The FTP support in PHP is not enabled or installed. Mounting"
+" of FTP shares is not possible. Please ask your system administrator to "
+"install it."
+msgstr ""
+
+#: templates/settings.php:3
+msgid "External Storage"
+msgstr ""
+
+#: templates/settings.php:8 templates/settings.php:22
+msgid "Mount point"
+msgstr ""
+
+#: templates/settings.php:9
+msgid "Backend"
+msgstr ""
+
+#: templates/settings.php:10
+msgid "Configuration"
+msgstr ""
+
+#: templates/settings.php:11
+msgid "Options"
+msgstr ""
+
+#: templates/settings.php:12
+msgid "Applicable"
+msgstr ""
+
+#: templates/settings.php:27
+msgid "Add mount point"
+msgstr ""
+
+#: templates/settings.php:85
+msgid "None set"
+msgstr ""
+
+#: templates/settings.php:86
+msgid "All Users"
+msgstr ""
+
+#: templates/settings.php:87
+msgid "Groups"
+msgstr ""
+
+#: templates/settings.php:95
+msgid "Users"
+msgstr ""
+
+#: templates/settings.php:108 templates/settings.php:109
+#: templates/settings.php:144 templates/settings.php:145
+msgid "Delete"
+msgstr ""
+
+#: templates/settings.php:124
+msgid "Enable User External Storage"
+msgstr ""
+
+#: templates/settings.php:125
+msgid "Allow users to mount their own external storage"
+msgstr ""
+
+#: templates/settings.php:136
+msgid "SSL root certificates"
+msgstr ""
+
+#: templates/settings.php:153
+msgid "Import Root Certificate"
+msgstr ""
diff --git a/l10n/hu/files_sharing.po b/l10n/hu/files_sharing.po
new file mode 100644
index 0000000000..07688f2047
--- /dev/null
+++ b/l10n/hu/files_sharing.po
@@ -0,0 +1,48 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+#
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: ownCloud\n"
+"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
+"POT-Creation-Date: 2013-01-03 00:04+0100\n"
+"PO-Revision-Date: 2012-08-12 22:35+0000\n"
+"Last-Translator: FULL NAME \n"
+"Language-Team: Hungarian (http://www.transifex.com/projects/p/owncloud/language/hu/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: hu\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: templates/authenticate.php:4
+msgid "Password"
+msgstr ""
+
+#: templates/authenticate.php:6
+msgid "Submit"
+msgstr ""
+
+#: templates/public.php:17
+#, php-format
+msgid "%s shared the folder %s with you"
+msgstr ""
+
+#: templates/public.php:19
+#, php-format
+msgid "%s shared the file %s with you"
+msgstr ""
+
+#: templates/public.php:22 templates/public.php:38
+msgid "Download"
+msgstr ""
+
+#: templates/public.php:37
+msgid "No preview available for"
+msgstr ""
+
+#: templates/public.php:43
+msgid "web services under your control"
+msgstr ""
diff --git a/l10n/hu/files_versions.po b/l10n/hu/files_versions.po
new file mode 100644
index 0000000000..8fb51cf620
--- /dev/null
+++ b/l10n/hu/files_versions.po
@@ -0,0 +1,42 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+#
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: ownCloud\n"
+"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
+"POT-Creation-Date: 2013-01-03 00:04+0100\n"
+"PO-Revision-Date: 2012-08-12 22:37+0000\n"
+"Last-Translator: FULL NAME \n"
+"Language-Team: Hungarian (http://www.transifex.com/projects/p/owncloud/language/hu/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: hu\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: js/settings-personal.js:31 templates/settings-personal.php:7
+msgid "Expire all versions"
+msgstr ""
+
+#: js/versions.js:16
+msgid "History"
+msgstr ""
+
+#: templates/settings-personal.php:4
+msgid "Versions"
+msgstr ""
+
+#: templates/settings-personal.php:10
+msgid "This will delete all existing backup versions of your files"
+msgstr ""
+
+#: templates/settings.php:3
+msgid "Files Versioning"
+msgstr ""
+
+#: templates/settings.php:4
+msgid "Enable"
+msgstr ""
diff --git a/l10n/hu/lib.po b/l10n/hu/lib.po
new file mode 100644
index 0000000000..0dc080f7db
--- /dev/null
+++ b/l10n/hu/lib.po
@@ -0,0 +1,152 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+#
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: ownCloud\n"
+"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
+"POT-Creation-Date: 2013-01-03 00:04+0100\n"
+"PO-Revision-Date: 2012-07-27 22:23+0000\n"
+"Last-Translator: FULL NAME \n"
+"Language-Team: Hungarian (http://www.transifex.com/projects/p/owncloud/language/hu/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: hu\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: app.php:287
+msgid "Help"
+msgstr ""
+
+#: app.php:294
+msgid "Personal"
+msgstr ""
+
+#: app.php:299
+msgid "Settings"
+msgstr ""
+
+#: app.php:304
+msgid "Users"
+msgstr ""
+
+#: app.php:311
+msgid "Apps"
+msgstr ""
+
+#: app.php:313
+msgid "Admin"
+msgstr ""
+
+#: files.php:365
+msgid "ZIP download is turned off."
+msgstr ""
+
+#: files.php:366
+msgid "Files need to be downloaded one by one."
+msgstr ""
+
+#: files.php:366 files.php:391
+msgid "Back to Files"
+msgstr ""
+
+#: files.php:390
+msgid "Selected files too large to generate zip file."
+msgstr ""
+
+#: json.php:28
+msgid "Application is not enabled"
+msgstr ""
+
+#: json.php:39 json.php:64 json.php:77 json.php:89
+msgid "Authentication error"
+msgstr ""
+
+#: json.php:51
+msgid "Token expired. Please reload page."
+msgstr ""
+
+#: search/provider/file.php:17 search/provider/file.php:35
+msgid "Files"
+msgstr ""
+
+#: search/provider/file.php:26 search/provider/file.php:33
+msgid "Text"
+msgstr ""
+
+#: search/provider/file.php:29
+msgid "Images"
+msgstr ""
+
+#: template.php:103
+msgid "seconds ago"
+msgstr ""
+
+#: template.php:104
+msgid "1 minute ago"
+msgstr ""
+
+#: template.php:105
+#, php-format
+msgid "%d minutes ago"
+msgstr ""
+
+#: template.php:106
+msgid "1 hour ago"
+msgstr ""
+
+#: template.php:107
+#, php-format
+msgid "%d hours ago"
+msgstr ""
+
+#: template.php:108
+msgid "today"
+msgstr ""
+
+#: template.php:109
+msgid "yesterday"
+msgstr ""
+
+#: template.php:110
+#, php-format
+msgid "%d days ago"
+msgstr ""
+
+#: template.php:111
+msgid "last month"
+msgstr ""
+
+#: template.php:112
+#, php-format
+msgid "%d months ago"
+msgstr ""
+
+#: template.php:113
+msgid "last year"
+msgstr ""
+
+#: template.php:114
+msgid "years ago"
+msgstr ""
+
+#: updater.php:75
+#, php-format
+msgid "%s is available. Get more information "
+msgstr ""
+
+#: updater.php:77
+msgid "up to date"
+msgstr ""
+
+#: updater.php:80
+msgid "updates check is disabled"
+msgstr ""
+
+#: vcategories.php:188 vcategories.php:249
+#, php-format
+msgid "Could not find category \"%s\""
+msgstr ""
diff --git a/l10n/hu/settings.po b/l10n/hu/settings.po
new file mode 100644
index 0000000000..934e419f78
--- /dev/null
+++ b/l10n/hu/settings.po
@@ -0,0 +1,271 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+#
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: ownCloud\n"
+"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
+"POT-Creation-Date: 2013-01-03 00:04+0100\n"
+"PO-Revision-Date: 2011-07-25 16:05+0000\n"
+"Last-Translator: FULL NAME \n"
+"Language-Team: Hungarian (http://www.transifex.com/projects/p/owncloud/language/hu/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: hu\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: ajax/apps/ocs.php:20
+msgid "Unable to load list from App Store"
+msgstr ""
+
+#: ajax/creategroup.php:10
+msgid "Group already exists"
+msgstr ""
+
+#: ajax/creategroup.php:19
+msgid "Unable to add group"
+msgstr ""
+
+#: ajax/enableapp.php:12
+msgid "Could not enable app. "
+msgstr ""
+
+#: ajax/lostpassword.php:12
+msgid "Email saved"
+msgstr ""
+
+#: ajax/lostpassword.php:14
+msgid "Invalid email"
+msgstr ""
+
+#: ajax/openid.php:13
+msgid "OpenID Changed"
+msgstr ""
+
+#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20
+msgid "Invalid request"
+msgstr ""
+
+#: ajax/removegroup.php:13
+msgid "Unable to delete group"
+msgstr ""
+
+#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18
+msgid "Authentication error"
+msgstr ""
+
+#: ajax/removeuser.php:24
+msgid "Unable to delete user"
+msgstr ""
+
+#: ajax/setlanguage.php:15
+msgid "Language changed"
+msgstr ""
+
+#: ajax/togglegroups.php:12
+msgid "Admins can't remove themself from the admin group"
+msgstr ""
+
+#: ajax/togglegroups.php:28
+#, php-format
+msgid "Unable to add user to group %s"
+msgstr ""
+
+#: ajax/togglegroups.php:34
+#, php-format
+msgid "Unable to remove user from group %s"
+msgstr ""
+
+#: js/apps.js:28 js/apps.js:67
+msgid "Disable"
+msgstr ""
+
+#: js/apps.js:28 js/apps.js:55
+msgid "Enable"
+msgstr ""
+
+#: js/personal.js:69
+msgid "Saving..."
+msgstr ""
+
+#: personal.php:42 personal.php:43
+msgid "__language_name__"
+msgstr ""
+
+#: templates/apps.php:10
+msgid "Add your App"
+msgstr ""
+
+#: templates/apps.php:11
+msgid "More Apps"
+msgstr ""
+
+#: templates/apps.php:27
+msgid "Select an App"
+msgstr ""
+
+#: templates/apps.php:31
+msgid "See application page at apps.owncloud.com"
+msgstr ""
+
+#: templates/apps.php:32
+msgid " -licensed by "
+msgstr ""
+
+#: templates/help.php:3
+msgid "User Documentation"
+msgstr ""
+
+#: templates/help.php:4
+msgid "Administrator Documentation"
+msgstr ""
+
+#: templates/help.php:6
+msgid "Online Documentation"
+msgstr ""
+
+#: templates/help.php:7
+msgid "Forum"
+msgstr ""
+
+#: templates/help.php:9
+msgid "Bugtracker"
+msgstr ""
+
+#: templates/help.php:11
+msgid "Commercial Support"
+msgstr ""
+
+#: templates/personal.php:8
+#, php-format
+msgid "You have used %s of the available %s "
+msgstr ""
+
+#: templates/personal.php:12
+msgid "Clients"
+msgstr ""
+
+#: templates/personal.php:13
+msgid "Download Desktop Clients"
+msgstr ""
+
+#: templates/personal.php:14
+msgid "Download Android Client"
+msgstr ""
+
+#: templates/personal.php:15
+msgid "Download iOS Client"
+msgstr ""
+
+#: templates/personal.php:21 templates/users.php:23 templates/users.php:82
+msgid "Password"
+msgstr ""
+
+#: templates/personal.php:22
+msgid "Your password was changed"
+msgstr ""
+
+#: templates/personal.php:23
+msgid "Unable to change your password"
+msgstr ""
+
+#: templates/personal.php:24
+msgid "Current password"
+msgstr ""
+
+#: templates/personal.php:25
+msgid "New password"
+msgstr ""
+
+#: templates/personal.php:26
+msgid "show"
+msgstr ""
+
+#: templates/personal.php:27
+msgid "Change password"
+msgstr ""
+
+#: templates/personal.php:33
+msgid "Email"
+msgstr ""
+
+#: templates/personal.php:34
+msgid "Your email address"
+msgstr ""
+
+#: templates/personal.php:35
+msgid "Fill in an email address to enable password recovery"
+msgstr ""
+
+#: templates/personal.php:41 templates/personal.php:42
+msgid "Language"
+msgstr ""
+
+#: templates/personal.php:47
+msgid "Help translate"
+msgstr ""
+
+#: templates/personal.php:52
+msgid "WebDAV"
+msgstr ""
+
+#: templates/personal.php:54
+msgid "Use this address to connect to your ownCloud in your file manager"
+msgstr ""
+
+#: templates/personal.php:63
+msgid "Version"
+msgstr ""
+
+#: templates/personal.php:65
+msgid ""
+"Developed by the ownCloud community , the source code is "
+"licensed under the AGPL ."
+msgstr ""
+
+#: templates/users.php:21 templates/users.php:81
+msgid "Name"
+msgstr ""
+
+#: templates/users.php:26 templates/users.php:83 templates/users.php:103
+msgid "Groups"
+msgstr ""
+
+#: templates/users.php:32
+msgid "Create"
+msgstr ""
+
+#: templates/users.php:35
+msgid "Default Storage"
+msgstr ""
+
+#: templates/users.php:42 templates/users.php:138
+msgid "Unlimited"
+msgstr ""
+
+#: templates/users.php:60 templates/users.php:153
+msgid "Other"
+msgstr ""
+
+#: templates/users.php:85 templates/users.php:117
+msgid "Group Admin"
+msgstr ""
+
+#: templates/users.php:87
+msgid "Storage"
+msgstr ""
+
+#: templates/users.php:133
+msgid "Default"
+msgstr ""
+
+#: templates/users.php:161
+msgid "Delete"
+msgstr ""
diff --git a/l10n/hu/user_ldap.po b/l10n/hu/user_ldap.po
new file mode 100644
index 0000000000..e2abecc29a
--- /dev/null
+++ b/l10n/hu/user_ldap.po
@@ -0,0 +1,183 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+#
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: ownCloud\n"
+"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
+"POT-Creation-Date: 2013-01-03 00:04+0100\n"
+"PO-Revision-Date: 2012-08-12 22:45+0000\n"
+"Last-Translator: FULL NAME \n"
+"Language-Team: Hungarian (http://www.transifex.com/projects/p/owncloud/language/hu/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: hu\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: templates/settings.php:8
+msgid ""
+"Warning: Apps user_ldap and user_webdavauth are incompatible. You may"
+" experience unexpected behaviour. Please ask your system administrator to "
+"disable one of them."
+msgstr ""
+
+#: templates/settings.php:11
+msgid ""
+"Warning: The PHP LDAP module needs is not installed, the backend will"
+" not work. Please ask your system administrator to install it."
+msgstr ""
+
+#: templates/settings.php:15
+msgid "Host"
+msgstr ""
+
+#: templates/settings.php:15
+msgid ""
+"You can omit the protocol, except you require SSL. Then start with ldaps://"
+msgstr ""
+
+#: templates/settings.php:16
+msgid "Base DN"
+msgstr ""
+
+#: templates/settings.php:16
+msgid "You can specify Base DN for users and groups in the Advanced tab"
+msgstr ""
+
+#: templates/settings.php:17
+msgid "User DN"
+msgstr ""
+
+#: templates/settings.php:17
+msgid ""
+"The DN of the client user with which the bind shall be done, e.g. "
+"uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password "
+"empty."
+msgstr ""
+
+#: templates/settings.php:18
+msgid "Password"
+msgstr ""
+
+#: templates/settings.php:18
+msgid "For anonymous access, leave DN and Password empty."
+msgstr ""
+
+#: templates/settings.php:19
+msgid "User Login Filter"
+msgstr ""
+
+#: templates/settings.php:19
+#, php-format
+msgid ""
+"Defines the filter to apply, when login is attempted. %%uid replaces the "
+"username in the login action."
+msgstr ""
+
+#: templates/settings.php:19
+#, php-format
+msgid "use %%uid placeholder, e.g. \"uid=%%uid\""
+msgstr ""
+
+#: templates/settings.php:20
+msgid "User List Filter"
+msgstr ""
+
+#: templates/settings.php:20
+msgid "Defines the filter to apply, when retrieving users."
+msgstr ""
+
+#: templates/settings.php:20
+msgid "without any placeholder, e.g. \"objectClass=person\"."
+msgstr ""
+
+#: templates/settings.php:21
+msgid "Group Filter"
+msgstr ""
+
+#: templates/settings.php:21
+msgid "Defines the filter to apply, when retrieving groups."
+msgstr ""
+
+#: templates/settings.php:21
+msgid "without any placeholder, e.g. \"objectClass=posixGroup\"."
+msgstr ""
+
+#: templates/settings.php:24
+msgid "Port"
+msgstr ""
+
+#: templates/settings.php:25
+msgid "Base User Tree"
+msgstr ""
+
+#: templates/settings.php:26
+msgid "Base Group Tree"
+msgstr ""
+
+#: templates/settings.php:27
+msgid "Group-Member association"
+msgstr ""
+
+#: templates/settings.php:28
+msgid "Use TLS"
+msgstr ""
+
+#: templates/settings.php:28
+msgid "Do not use it for SSL connections, it will fail."
+msgstr ""
+
+#: templates/settings.php:29
+msgid "Case insensitve LDAP server (Windows)"
+msgstr ""
+
+#: templates/settings.php:30
+msgid "Turn off SSL certificate validation."
+msgstr ""
+
+#: templates/settings.php:30
+msgid ""
+"If connection only works with this option, import the LDAP server's SSL "
+"certificate in your ownCloud server."
+msgstr ""
+
+#: templates/settings.php:30
+msgid "Not recommended, use for testing only."
+msgstr ""
+
+#: templates/settings.php:31
+msgid "User Display Name Field"
+msgstr ""
+
+#: templates/settings.php:31
+msgid "The LDAP attribute to use to generate the user`s ownCloud name."
+msgstr ""
+
+#: templates/settings.php:32
+msgid "Group Display Name Field"
+msgstr ""
+
+#: templates/settings.php:32
+msgid "The LDAP attribute to use to generate the groups`s ownCloud name."
+msgstr ""
+
+#: templates/settings.php:34
+msgid "in bytes"
+msgstr ""
+
+#: templates/settings.php:36
+msgid "in seconds. A change empties the cache."
+msgstr ""
+
+#: templates/settings.php:37
+msgid ""
+"Leave empty for user name (default). Otherwise, specify an LDAP/AD "
+"attribute."
+msgstr ""
+
+#: templates/settings.php:39
+msgid "Help"
+msgstr ""
diff --git a/l10n/hu/user_webdavauth.po b/l10n/hu/user_webdavauth.po
new file mode 100644
index 0000000000..d6235e0472
--- /dev/null
+++ b/l10n/hu/user_webdavauth.po
@@ -0,0 +1,29 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+#
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: ownCloud\n"
+"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
+"POT-Creation-Date: 2013-01-03 00:04+0100\n"
+"PO-Revision-Date: 2012-11-09 09:06+0000\n"
+"Last-Translator: FULL NAME \n"
+"Language-Team: Hungarian (http://www.transifex.com/projects/p/owncloud/language/hu/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: hu\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: templates/settings.php:4
+msgid "URL: http://"
+msgstr ""
+
+#: templates/settings.php:6
+msgid ""
+"ownCloud will send the user credentials to this URL is interpret http 401 "
+"and http 403 as credentials wrong and all other codes as credentials "
+"correct."
+msgstr ""
diff --git a/l10n/hu_HU/core.po b/l10n/hu_HU/core.po
index be9005b337..50ba444d42 100644
--- a/l10n/hu_HU/core.po
+++ b/l10n/hu_HU/core.po
@@ -10,8 +10,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-12-13 00:17+0100\n"
-"PO-Revision-Date: 2012-12-12 23:17+0000\n"
+"POT-Creation-Date: 2013-01-07 00:04+0100\n"
+"PO-Revision-Date: 2013-01-06 23:04+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n"
"MIME-Version: 1.0\n"
@@ -23,30 +23,30 @@ msgstr ""
#: ajax/share.php:84
#, php-format
msgid "User %s shared a file with you"
-msgstr ""
+msgstr "%s felhasználó megosztott Önnel egy fájlt"
#: ajax/share.php:86
#, php-format
msgid "User %s shared a folder with you"
-msgstr ""
+msgstr "%s felhasználó megosztott Önnel egy mappát"
#: ajax/share.php:88
#, php-format
msgid ""
"User %s shared the file \"%s\" with you. It is available for download here: "
"%s"
-msgstr ""
+msgstr "%s felhasználó megosztotta ezt az állományt Önnel: %s. A fájl innen tölthető le: %s"
#: ajax/share.php:90
#, php-format
msgid ""
"User %s shared the folder \"%s\" with you. It is available for download "
"here: %s"
-msgstr ""
+msgstr "%s felhasználó megosztotta ezt a mappát Önnel: %s. A mappa innen tölthető le: %s"
#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25
msgid "Category type not provided."
-msgstr ""
+msgstr "Nincs megadva a kategória típusa."
#: ajax/vcategories/add.php:30
msgid "No category to add?"
@@ -54,24 +54,24 @@ msgstr "Nincs hozzáadandó kategória?"
#: ajax/vcategories/add.php:37
msgid "This category already exists: "
-msgstr "Ez a kategória már létezik"
+msgstr "Ez a kategória már létezik: "
#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27
#: ajax/vcategories/favorites.php:24
#: ajax/vcategories/removeFromFavorites.php:26
msgid "Object type not provided."
-msgstr ""
+msgstr "Az objektum típusa nincs megadva."
#: ajax/vcategories/addToFavorites.php:30
#: ajax/vcategories/removeFromFavorites.php:30
#, php-format
msgid "%s ID not provided."
-msgstr ""
+msgstr "%s ID nincs megadva."
#: ajax/vcategories/addToFavorites.php:35
#, php-format
msgid "Error adding %s to favorites."
-msgstr ""
+msgstr "Nem sikerült a kedvencekhez adni ezt: %s"
#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136
msgid "No categories selected for deletion."
@@ -80,7 +80,7 @@ msgstr "Nincs törlésre jelölt kategória"
#: ajax/vcategories/removeFromFavorites.php:35
#, php-format
msgid "Error removing %s from favorites."
-msgstr ""
+msgstr "Nem sikerült a kedvencekből törölni ezt: %s"
#: js/js.js:259 templates/layout.user.php:60 templates/layout.user.php:61
msgid "Settings"
@@ -88,23 +88,23 @@ msgstr "Beállítások"
#: js/js.js:704
msgid "seconds ago"
-msgstr "másodperccel ezelőtt"
+msgstr "pár másodperce"
#: js/js.js:705
msgid "1 minute ago"
-msgstr "1 perccel ezelőtt"
+msgstr "1 perce"
#: js/js.js:706
msgid "{minutes} minutes ago"
-msgstr ""
+msgstr "{minutes} perce"
#: js/js.js:707
msgid "1 hour ago"
-msgstr ""
+msgstr "1 órája"
#: js/js.js:708
msgid "{hours} hours ago"
-msgstr ""
+msgstr "{hours} órája"
#: js/js.js:709
msgid "today"
@@ -116,7 +116,7 @@ msgstr "tegnap"
#: js/js.js:711
msgid "{days} days ago"
-msgstr ""
+msgstr "{days} napja"
#: js/js.js:712
msgid "last month"
@@ -124,11 +124,11 @@ msgstr "múlt hónapban"
#: js/js.js:713
msgid "{months} months ago"
-msgstr ""
+msgstr "{months} hónapja"
#: js/js.js:714
msgid "months ago"
-msgstr "hónappal ezelőtt"
+msgstr "több hónapja"
#: js/js.js:715
msgid "last year"
@@ -136,11 +136,11 @@ msgstr "tavaly"
#: js/js.js:716
msgid "years ago"
-msgstr "évvel ezelőtt"
+msgstr "több éve"
#: js/oc-dialogs.js:126
msgid "Choose"
-msgstr ""
+msgstr "Válasszon"
#: js/oc-dialogs.js:146 js/oc-dialogs.js:166
msgid "Cancel"
@@ -161,138 +161,138 @@ msgstr "Ok"
#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102
#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162
msgid "The object type is not specified."
-msgstr ""
+msgstr "Az objektum típusa nincs megadva."
#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136
-#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541
-#: js/share.js:553
+#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554
+#: js/share.js:566
msgid "Error"
msgstr "Hiba"
#: js/oc-vcategories.js:179
msgid "The app name is not specified."
-msgstr ""
+msgstr "Az alkalmazás neve nincs megadva."
#: js/oc-vcategories.js:194
msgid "The required file {file} is not installed!"
-msgstr ""
+msgstr "A szükséges fájl: {file} nincs telepítve!"
-#: js/share.js:124 js/share.js:581
+#: js/share.js:124 js/share.js:594
msgid "Error while sharing"
-msgstr ""
+msgstr "Nem sikerült létrehozni a megosztást"
#: js/share.js:135
msgid "Error while unsharing"
-msgstr ""
+msgstr "Nem sikerült visszavonni a megosztást"
#: js/share.js:142
msgid "Error while changing permissions"
-msgstr ""
+msgstr "Nem sikerült módosítani a jogosultságokat"
#: js/share.js:151
msgid "Shared with you and the group {group} by {owner}"
-msgstr ""
+msgstr "Megosztotta Önnel és a(z) {group} csoporttal: {owner}"
#: js/share.js:153
msgid "Shared with you by {owner}"
-msgstr ""
+msgstr "Megosztotta Önnel: {owner}"
#: js/share.js:158
msgid "Share with"
-msgstr ""
+msgstr "Kivel osztom meg"
#: js/share.js:163
msgid "Share with link"
-msgstr ""
+msgstr "Link megadásával osztom meg"
-#: js/share.js:164
+#: js/share.js:166
msgid "Password protect"
-msgstr ""
+msgstr "Jelszóval is védem"
-#: js/share.js:168 templates/installation.php:42 templates/login.php:24
+#: js/share.js:168 templates/installation.php:44 templates/login.php:35
#: templates/verify.php:13
msgid "Password"
-msgstr "Jelszó"
+msgstr "Jelszó (tetszőleges)"
#: js/share.js:172
msgid "Email link to person"
-msgstr ""
+msgstr "Email címre küldjük el"
#: js/share.js:173
msgid "Send"
-msgstr ""
+msgstr "Küldjük el"
#: js/share.js:177
msgid "Set expiration date"
-msgstr ""
+msgstr "Legyen lejárati idő"
#: js/share.js:178
msgid "Expiration date"
-msgstr ""
+msgstr "A lejárati idő"
#: js/share.js:210
msgid "Share via email:"
-msgstr ""
+msgstr "Megosztás emaillel:"
#: js/share.js:212
msgid "No people found"
-msgstr ""
+msgstr "Nincs találat"
#: js/share.js:239
msgid "Resharing is not allowed"
-msgstr ""
+msgstr "Ezt az állományt csak a tulajdonosa oszthatja meg másokkal"
#: js/share.js:275
msgid "Shared in {item} with {user}"
-msgstr ""
+msgstr "Megosztva {item}-ben {user}-rel"
#: js/share.js:296
msgid "Unshare"
-msgstr "Nem oszt meg"
+msgstr "A megosztás visszavonása"
#: js/share.js:308
msgid "can edit"
-msgstr ""
+msgstr "módosíthat"
#: js/share.js:310
msgid "access control"
-msgstr ""
+msgstr "jogosultság"
#: js/share.js:313
msgid "create"
-msgstr "létrehozás"
+msgstr "létrehoz"
#: js/share.js:316
msgid "update"
-msgstr ""
+msgstr "szerkeszt"
#: js/share.js:319
msgid "delete"
-msgstr ""
+msgstr "töröl"
#: js/share.js:322
msgid "share"
-msgstr ""
+msgstr "megoszt"
-#: js/share.js:353 js/share.js:528 js/share.js:530
+#: js/share.js:356 js/share.js:541
msgid "Password protected"
-msgstr ""
+msgstr "Jelszóval van védve"
-#: js/share.js:541
+#: js/share.js:554
msgid "Error unsetting expiration date"
-msgstr ""
+msgstr "Nem sikerült a lejárati időt törölni"
-#: js/share.js:553
+#: js/share.js:566
msgid "Error setting expiration date"
-msgstr ""
+msgstr "Nem sikerült a lejárati időt beállítani"
-#: js/share.js:568
+#: js/share.js:581
msgid "Sending ..."
-msgstr ""
+msgstr "Küldés ..."
-#: js/share.js:579
+#: js/share.js:592
msgid "Email sent"
-msgstr ""
+msgstr "Az emailt elküldtük"
#: lostpassword/controller.php:47
msgid "ownCloud password reset"
@@ -300,22 +300,22 @@ msgstr "ownCloud jelszó-visszaállítás"
#: lostpassword/templates/email.php:2
msgid "Use the following link to reset your password: {link}"
-msgstr "Használja az alábbi linket a jelszó-visszaállításhoz: {link}"
+msgstr "Használja ezt a linket a jelszó ismételt beállításához: {link}"
#: lostpassword/templates/lostpassword.php:3
msgid "You will receive a link to reset your password via Email."
-msgstr "Egy e-mailben kap értesítést a jelszóváltoztatás módjáról."
+msgstr "Egy emailben fog értesítést kapni a jelszóbeállítás módjáról."
#: lostpassword/templates/lostpassword.php:5
msgid "Reset email send."
-msgstr ""
+msgstr "Elküldtük az emailt a jelszó ismételt beállításához."
#: lostpassword/templates/lostpassword.php:8
msgid "Request failed!"
-msgstr ""
+msgstr "Nem sikerült a kérést teljesíteni!"
-#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38
-#: templates/login.php:20
+#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39
+#: templates/login.php:28
msgid "Username"
msgstr "Felhasználónév"
@@ -353,7 +353,7 @@ msgstr "Alkalmazások"
#: strings.php:8
msgid "Admin"
-msgstr "Admin"
+msgstr "Adminisztráció"
#: strings.php:9
msgid "Help"
@@ -361,7 +361,7 @@ msgstr "Súgó"
#: templates/403.php:12
msgid "Access forbidden"
-msgstr "Hozzáférés tiltva"
+msgstr "A hozzáférés nem engedélyezett"
#: templates/404.php:12
msgid "Cloud not found"
@@ -383,13 +383,13 @@ msgstr "Biztonsági figyelmeztetés"
msgid ""
"No secure random number generator is available, please enable the PHP "
"OpenSSL extension."
-msgstr ""
+msgstr "Nem érhető el megfelelő véletlenszám-generátor, telepíteni kellene a PHP OpenSSL kiegészítését."
#: templates/installation.php:26
msgid ""
"Without a secure random number generator an attacker may be able to predict "
"password reset tokens and take over your account."
-msgstr ""
+msgstr "Megfelelő véletlenszám-generátor hiányában egy támadó szándékú idegen képes lehet megjósolni a jelszóvisszaállító tokent, és Ön helyett belépni."
#: templates/installation.php:32
msgid ""
@@ -398,160 +398,160 @@ 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 "Az adatkönytára és az itt levő fájlok valószínűleg elérhetők az internetről. Az ownCloud által beillesztett .htaccess fájl nem működik. Nagyon fontos, hogy a webszervert úgy konfigurálja, hogy az adatkönyvtár nem legyen közvetlenül kívülről elérhető, vagy az adatkönyvtárt tegye a webszerver dokumentumfáján kívülre."
#: templates/installation.php:36
msgid "Create an admin account "
-msgstr "Rendszergazdafiók létrehozása"
+msgstr "Rendszergazdai belépés létrehozása"
-#: templates/installation.php:48
+#: templates/installation.php:50
msgid "Advanced"
msgstr "Haladó"
-#: templates/installation.php:50
+#: templates/installation.php:52
msgid "Data folder"
msgstr "Adatkönyvtár"
-#: templates/installation.php:57
+#: templates/installation.php:59
msgid "Configure the database"
msgstr "Adatbázis konfigurálása"
-#: templates/installation.php:62 templates/installation.php:73
-#: templates/installation.php:83 templates/installation.php:93
+#: templates/installation.php:64 templates/installation.php:75
+#: templates/installation.php:85 templates/installation.php:95
msgid "will be used"
-msgstr "használva lesz"
+msgstr "adatbázist fogunk használni"
-#: templates/installation.php:105
+#: templates/installation.php:107
msgid "Database user"
msgstr "Adatbázis felhasználónév"
-#: templates/installation.php:109
+#: templates/installation.php:111
msgid "Database password"
msgstr "Adatbázis jelszó"
-#: templates/installation.php:113
+#: templates/installation.php:115
msgid "Database name"
-msgstr "Adatbázis név"
+msgstr "Az adatbázis neve"
-#: templates/installation.php:121
+#: templates/installation.php:123
msgid "Database tablespace"
-msgstr ""
+msgstr "Az adatbázis táblázattér (tablespace)"
-#: templates/installation.php:127
+#: templates/installation.php:129
msgid "Database host"
msgstr "Adatbázis szerver"
-#: templates/installation.php:132
+#: templates/installation.php:134
msgid "Finish setup"
-msgstr "Beállítás befejezése"
+msgstr "A beállítások befejezése"
#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Sunday"
-msgstr "Vasárnap"
+msgstr "vasárnap"
#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Monday"
-msgstr "Hétfő"
+msgstr "hétfő"
#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Tuesday"
-msgstr "Kedd"
+msgstr "kedd"
#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Wednesday"
-msgstr "Szerda"
+msgstr "szerda"
#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Thursday"
-msgstr "Csütörtök"
+msgstr "csütörtök"
#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Friday"
-msgstr "Péntek"
+msgstr "péntek"
#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Saturday"
-msgstr "Szombat"
+msgstr "szombat"
#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "January"
-msgstr "Január"
+msgstr "január"
#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "February"
-msgstr "Február"
+msgstr "február"
#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "March"
-msgstr "Március"
+msgstr "március"
#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "April"
-msgstr "Április"
+msgstr "április"
#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "May"
-msgstr "Május"
+msgstr "május"
#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "June"
-msgstr "Június"
+msgstr "június"
#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "July"
-msgstr "Július"
+msgstr "július"
#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "August"
-msgstr "Augusztus"
+msgstr "augusztus"
#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "September"
-msgstr "Szeptember"
+msgstr "szeptember"
#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "October"
-msgstr "Október"
+msgstr "október"
#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "November"
-msgstr "November"
+msgstr "november"
#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "December"
-msgstr "December"
+msgstr "december"
#: templates/layout.guest.php:42
msgid "web services under your control"
-msgstr "webszolgáltatások az irányításod alatt"
+msgstr "webszolgáltatások saját kézben"
#: templates/layout.user.php:45
msgid "Log out"
msgstr "Kilépés"
-#: templates/login.php:8
+#: templates/login.php:10
msgid "Automatic logon rejected!"
-msgstr ""
+msgstr "Az automatikus bejelentkezés sikertelen!"
-#: templates/login.php:9
+#: templates/login.php:11
msgid ""
"If you did not change your password recently, your account may be "
"compromised!"
-msgstr ""
+msgstr "Ha mostanában nem módosította a jelszavát, akkor lehetséges, hogy idegenek jutottak be a rendszerbe az Ön nevében!"
-#: templates/login.php:10
+#: templates/login.php:13
msgid "Please change your password to secure your account again."
-msgstr ""
+msgstr "A biztonsága érdekében változtassa meg a jelszavát!"
-#: templates/login.php:15
+#: templates/login.php:19
msgid "Lost your password?"
-msgstr "Elfelejtett jelszó?"
+msgstr "Elfelejtette a jelszavát?"
-#: templates/login.php:27
+#: templates/login.php:39
msgid "remember"
msgstr "emlékezzen"
-#: templates/login.php:28
+#: templates/login.php:41
msgid "Log in"
msgstr "Bejelentkezés"
@@ -561,22 +561,27 @@ msgstr "Kilépett."
#: templates/part.pagenavi.php:3
msgid "prev"
-msgstr "Előző"
+msgstr "előző"
#: templates/part.pagenavi.php:20
msgid "next"
-msgstr "Következő"
+msgstr "következő"
+
+#: templates/update.php:3
+#, php-format
+msgid "Updating ownCloud to version %s, this may take a while."
+msgstr ""
#: templates/verify.php:5
msgid "Security Warning!"
-msgstr ""
+msgstr "Biztonsági figyelmeztetés!"
#: templates/verify.php:6
msgid ""
"Please verify your password. For security reasons you may be "
"occasionally asked to enter your password again."
-msgstr ""
+msgstr "Kérjük írja be a jelszavát! Biztonsági okokból néha a bejelentkezést követően is ellenőrzésképpen meg kell adnia a jelszavát."
#: templates/verify.php:16
msgid "Verify"
-msgstr ""
+msgstr "Ellenőrzés"
diff --git a/l10n/hu_HU/files.po b/l10n/hu_HU/files.po
index cddd901f07..70bb805b10 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-12-01 00:01+0100\n"
-"PO-Revision-Date: 2012-11-30 23:02+0000\n"
+"POT-Creation-Date: 2013-01-07 00:04+0100\n"
+"PO-Revision-Date: 2013-01-06 23:05+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n"
"MIME-Version: 1.0\n"
@@ -20,171 +20,191 @@ msgstr ""
"Language: hu_HU\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: ajax/upload.php:20
-msgid "There is no error, the file uploaded with success"
-msgstr "Nincs hiba, a fájl sikeresen feltöltve."
+#: ajax/upload.php:14
+msgid "No file was uploaded. Unknown error"
+msgstr "Nem történt feltöltés. Ismeretlen hiba"
#: ajax/upload.php:21
+msgid "There is no error, the file uploaded with success"
+msgstr "A fájlt sikerült feltölteni"
+
+#: ajax/upload.php:22
msgid ""
"The uploaded file exceeds the upload_max_filesize directive in php.ini: "
-msgstr ""
+msgstr "A feltöltött fájl mérete meghaladja a php.ini állományban megadott upload_max_filesize paraméter értékét."
-#: ajax/upload.php:23
+#: ajax/upload.php:24
msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form"
-msgstr "A feltöltött fájl meghaladja a MAX_FILE_SIZE direktívát ami meghatározott a HTML form-ban."
-
-#: ajax/upload.php:25
-msgid "The uploaded file was only partially uploaded"
-msgstr "Az eredeti fájl csak részlegesen van feltöltve."
+msgstr "A feltöltött fájl mérete meghaladja a MAX_FILE_SIZE paramétert, ami a HTML formban került megadásra."
#: ajax/upload.php:26
-msgid "No file was uploaded"
-msgstr "Nem lett fájl feltöltve."
+msgid "The uploaded file was only partially uploaded"
+msgstr "Az eredeti fájlt csak részben sikerült feltölteni."
#: ajax/upload.php:27
-msgid "Missing a temporary folder"
-msgstr "Hiányzik az ideiglenes könyvtár"
+msgid "No file was uploaded"
+msgstr "Nem töltődött fel semmi"
#: ajax/upload.php:28
+msgid "Missing a temporary folder"
+msgstr "Hiányzik egy ideiglenes mappa"
+
+#: ajax/upload.php:29
msgid "Failed to write to disk"
-msgstr "Nem írható lemezre"
+msgstr "Nem sikerült a lemezre történő írás"
+
+#: ajax/upload.php:45
+msgid "Not enough space available"
+msgstr ""
+
+#: ajax/upload.php:69
+msgid "Invalid directory."
+msgstr ""
#: appinfo/app.php:10
msgid "Files"
msgstr "Fájlok"
-#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84
+#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85
msgid "Unshare"
-msgstr "Nem oszt meg"
+msgstr "Megosztás visszavonása"
-#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90
+#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91
msgid "Delete"
msgstr "Törlés"
#: js/fileactions.js:181
msgid "Rename"
-msgstr ""
+msgstr "Átnevezés"
-#: js/filelist.js:201 js/filelist.js:203
+#: js/filelist.js:199 js/filelist.js:201
msgid "{new_name} already exists"
-msgstr ""
+msgstr "{new_name} már létezik"
-#: js/filelist.js:201 js/filelist.js:203
+#: js/filelist.js:199 js/filelist.js:201
msgid "replace"
-msgstr "cserél"
+msgstr "írjuk fölül"
-#: js/filelist.js:201
+#: js/filelist.js:199
msgid "suggest name"
-msgstr ""
+msgstr "legyen más neve"
-#: js/filelist.js:201 js/filelist.js:203
+#: js/filelist.js:199 js/filelist.js:201
msgid "cancel"
msgstr "mégse"
-#: js/filelist.js:250
+#: js/filelist.js:248
msgid "replaced {new_name}"
-msgstr ""
+msgstr "a(z) {new_name} állományt kicseréltük"
-#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286
+#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284
msgid "undo"
-msgstr "visszavon"
+msgstr "visszavonás"
-#: js/filelist.js:252
+#: js/filelist.js:250
msgid "replaced {new_name} with {old_name}"
-msgstr ""
+msgstr "{new_name} fájlt kicseréltük ezzel: {old_name}"
+
+#: js/filelist.js:282
+msgid "unshared {files}"
+msgstr "{files} fájl megosztása visszavonva"
#: js/filelist.js:284
-msgid "unshared {files}"
-msgstr ""
-
-#: js/filelist.js:286
msgid "deleted {files}"
+msgstr "{files} fájl törölve"
+
+#: js/files.js:31
+msgid "'.' is an invalid file name."
msgstr ""
-#: js/files.js:33
+#: js/files.js:36
+msgid "File name cannot be empty."
+msgstr ""
+
+#: js/files.js:45
msgid ""
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not "
"allowed."
-msgstr ""
+msgstr "Érvénytelen elnevezés. Ezek a karakterek nem használhatók: '\\', '/', '<', '>', ':', '\"', '|', '?' és '*'"
-#: js/files.js:183
+#: js/files.js:186
msgid "generating ZIP-file, it may take some time."
msgstr "ZIP-fájl generálása, ez eltarthat egy ideig."
-#: js/files.js:218
+#: js/files.js:224
msgid "Unable to upload your file as it is a directory or has 0 bytes"
msgstr "Nem tölthető fel, mert mappa volt, vagy 0 byte méretű"
-#: js/files.js:218
+#: js/files.js:224
msgid "Upload Error"
msgstr "Feltöltési hiba"
-#: js/files.js:235
+#: js/files.js:241
msgid "Close"
-msgstr "Bezár"
+msgstr "Bezárás"
-#: js/files.js:254 js/files.js:368 js/files.js:398
+#: js/files.js:260 js/files.js:374 js/files.js:404
msgid "Pending"
msgstr "Folyamatban"
-#: js/files.js:274
+#: js/files.js:280
msgid "1 file uploading"
-msgstr ""
+msgstr "1 fájl töltődik föl"
-#: js/files.js:277 js/files.js:331 js/files.js:346
+#: js/files.js:283 js/files.js:337 js/files.js:352
msgid "{count} files uploading"
-msgstr ""
+msgstr "{count} fájl töltődik föl"
-#: js/files.js:349 js/files.js:382
+#: js/files.js:355 js/files.js:388
msgid "Upload cancelled."
-msgstr "Feltöltés megszakítva"
+msgstr "A feltöltést megszakítottuk."
-#: js/files.js:451
+#: js/files.js:457
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
-msgstr ""
+msgstr "Fájlfeltöltés van folyamatban. Az oldal elhagyása megszakítja a feltöltést."
-#: js/files.js:523
+#: js/files.js:527
msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud"
-msgstr ""
+msgstr "Érvénytelen mappanév. A \"Shared\" elnevezést az Owncloud rendszer használja."
-#: js/files.js:704
+#: js/files.js:711
msgid "{count} files scanned"
-msgstr ""
+msgstr "{count} fájlt találtunk"
-#: js/files.js:712
+#: js/files.js:719
msgid "error while scanning"
-msgstr ""
+msgstr "Hiba a fájllista-ellenőrzés során"
-#: js/files.js:785 templates/index.php:65
+#: js/files.js:792 templates/index.php:66
msgid "Name"
msgstr "Név"
-#: js/files.js:786 templates/index.php:76
+#: js/files.js:793 templates/index.php:77
msgid "Size"
msgstr "Méret"
-#: js/files.js:787 templates/index.php:78
+#: js/files.js:794 templates/index.php:79
msgid "Modified"
msgstr "Módosítva"
-#: js/files.js:814
+#: js/files.js:813
msgid "1 folder"
-msgstr ""
+msgstr "1 mappa"
-#: js/files.js:816
+#: js/files.js:815
msgid "{count} folders"
-msgstr ""
+msgstr "{count} mappa"
-#: js/files.js:824
+#: js/files.js:823
msgid "1 file"
-msgstr ""
+msgstr "1 fájl"
-#: js/files.js:826
+#: js/files.js:825
msgid "{count} files"
-msgstr ""
+msgstr "{count} fájl"
#: templates/admin.php:5
msgid "File handling"
@@ -194,27 +214,27 @@ msgstr "Fájlkezelés"
msgid "Maximum upload size"
msgstr "Maximális feltölthető fájlméret"
-#: templates/admin.php:9
+#: templates/admin.php:10
msgid "max. possible: "
-msgstr "max. lehetséges"
+msgstr "max. lehetséges: "
-#: templates/admin.php:12
+#: templates/admin.php:15
msgid "Needed for multi-file and folder downloads."
-msgstr "Kötegelt file- vagy mappaletöltéshez szükséges"
-
-#: templates/admin.php:14
-msgid "Enable ZIP-download"
-msgstr "ZIP-letöltés engedélyezése"
+msgstr "Kötegelt fájl- vagy mappaletöltéshez szükséges"
#: templates/admin.php:17
+msgid "Enable ZIP-download"
+msgstr "A ZIP-letöltés engedélyezése"
+
+#: templates/admin.php:20
msgid "0 is unlimited"
msgstr "0 = korlátlan"
-#: templates/admin.php:19
+#: templates/admin.php:22
msgid "Maximum input size for ZIP files"
-msgstr "ZIP file-ok maximum mérete"
+msgstr "ZIP-fájlok maximális kiindulási mérete"
-#: templates/admin.php:23
+#: templates/admin.php:26
msgid "Save"
msgstr "Mentés"
@@ -232,7 +252,7 @@ msgstr "Mappa"
#: templates/index.php:14
msgid "From link"
-msgstr ""
+msgstr "Feltöltés linkről"
#: templates/index.php:35
msgid "Upload"
@@ -240,30 +260,30 @@ msgstr "Feltöltés"
#: templates/index.php:43
msgid "Cancel upload"
-msgstr "Feltöltés megszakítása"
+msgstr "A feltöltés megszakítása"
-#: templates/index.php:57
+#: templates/index.php:58
msgid "Nothing in here. Upload something!"
-msgstr "Töltsön fel egy fájlt."
+msgstr "Itt nincs semmi. Töltsön fel valamit!"
-#: templates/index.php:71
+#: templates/index.php:72
msgid "Download"
msgstr "Letöltés"
-#: templates/index.php:103
+#: templates/index.php:104
msgid "Upload too large"
-msgstr "Feltöltés túl nagy"
+msgstr "A feltöltés túl nagy"
-#: templates/index.php:105
+#: templates/index.php:106
msgid ""
"The files you are trying to upload exceed the maximum size for file uploads "
"on this server."
-msgstr "A fájlokat amit próbálsz feltölteni meghaladta a legnagyobb fájlméretet ezen a szerveren."
+msgstr "A feltöltendő állományok mérete meghaladja a kiszolgálón megengedett maximális méretet."
-#: templates/index.php:110
+#: templates/index.php:111
msgid "Files are being scanned, please wait."
-msgstr "File-ok vizsgálata, kis türelmet"
+msgstr "A fájllista ellenőrzése zajlik, kis türelmet!"
-#: templates/index.php:113
+#: templates/index.php:114
msgid "Current scanning"
-msgstr "Aktuális vizsgálat"
+msgstr "Ellenőrzés alatt"
diff --git a/l10n/hu_HU/files_encryption.po b/l10n/hu_HU/files_encryption.po
index 8fa556e471..896e96e2c7 100644
--- a/l10n/hu_HU/files_encryption.po
+++ b/l10n/hu_HU/files_encryption.po
@@ -8,28 +8,28 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-08-26 19:46+0200\n"
-"PO-Revision-Date: 2012-08-26 09:01+0000\n"
-"Last-Translator: Csaba Orban \n"
+"POT-Creation-Date: 2012-12-31 00:04+0100\n"
+"PO-Revision-Date: 2012-12-30 17:43+0000\n"
+"Last-Translator: Laszlo Tornoci \n"
"Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n"
"MIME-Version: 1.0\n"
"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"
#: templates/settings.php:3
msgid "Encryption"
msgstr "Titkosítás"
-#: templates/settings.php:4
-msgid "Exclude the following file types from encryption"
-msgstr "A következő fájl típusok kizárása a titkosításból"
+#: templates/settings.php:6
+msgid "Enable Encryption"
+msgstr "A titkosítás engedélyezése"
-#: templates/settings.php:5
+#: templates/settings.php:7
msgid "None"
msgstr "Egyik sem"
-#: templates/settings.php:10
-msgid "Enable Encryption"
-msgstr "Titkosítás engedélyezése"
+#: templates/settings.php:12
+msgid "Exclude the following file types from encryption"
+msgstr "A következő fájltípusok kizárása a titkosításból"
diff --git a/l10n/hu_HU/files_external.po b/l10n/hu_HU/files_external.po
index b77194ab26..450c7e0561 100644
--- a/l10n/hu_HU/files_external.po
+++ b/l10n/hu_HU/files_external.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-12-13 00:17+0100\n"
-"PO-Revision-Date: 2012-12-11 23:22+0000\n"
-"Last-Translator: I Robot \n"
+"POT-Creation-Date: 2012-12-31 00:04+0100\n"
+"PO-Revision-Date: 2012-12-30 19:20+0000\n"
+"Last-Translator: Laszlo Tornoci \n"
"Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -19,76 +19,76 @@ msgstr ""
#: js/dropbox.js:7 js/dropbox.js:25 js/google.js:7 js/google.js:23
msgid "Access granted"
-msgstr ""
+msgstr "Érvényes hozzáférés"
#: js/dropbox.js:28 js/dropbox.js:74 js/dropbox.js:79 js/dropbox.js:86
msgid "Error configuring Dropbox storage"
-msgstr ""
+msgstr "A Dropbox tárolót nem sikerült beállítani"
#: js/dropbox.js:34 js/dropbox.js:45 js/google.js:31 js/google.js:40
msgid "Grant access"
-msgstr ""
+msgstr "Megadom a hozzáférést"
#: js/dropbox.js:73 js/google.js:72
msgid "Fill out all required fields"
-msgstr ""
+msgstr "Töltse ki az összes szükséges mezőt"
#: js/dropbox.js:85
msgid "Please provide a valid Dropbox app key and secret."
-msgstr ""
+msgstr "Adjon meg egy érvényes Dropbox app key-t és secretet!"
#: js/google.js:26 js/google.js:73 js/google.js:78
msgid "Error configuring Google Drive storage"
-msgstr ""
+msgstr "A Google Drive tárolót nem sikerült beállítani"
#: lib/config.php:434
msgid ""
"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares "
"is not possible. Please ask your system administrator to install it."
-msgstr ""
+msgstr "Figyelem: az \"smbclient\" nincs telepítve a kiszolgálón. Emiatt nem lehet CIFS/SMB megosztásokat fölcsatolni. Kérje meg a rendszergazdát, hogy telepítse a szükséges programot."
#: lib/config.php:435
msgid ""
"Warning: The FTP support in PHP is not enabled or installed. Mounting"
" of FTP shares is not possible. Please ask your system administrator to "
"install it."
-msgstr ""
+msgstr "Figyelem: a PHP FTP támogatása vagy nincs telepítve, vagy nincs engedélyezve a kiszolgálón. Emiatt nem lehetséges FTP-tárolókat fölcsatolni. Kérje meg a rendszergazdát, hogy telepítse a szükséges programot."
#: templates/settings.php:3
msgid "External Storage"
-msgstr ""
+msgstr "Külső tárolási szolgáltatások becsatolása"
#: templates/settings.php:8 templates/settings.php:22
msgid "Mount point"
-msgstr ""
+msgstr "Hova csatoljuk"
#: templates/settings.php:9
msgid "Backend"
-msgstr ""
+msgstr "Külső tárolórendszer"
#: templates/settings.php:10
msgid "Configuration"
-msgstr ""
+msgstr "Beállítások"
#: templates/settings.php:11
msgid "Options"
-msgstr ""
+msgstr "Opciók"
#: templates/settings.php:12
msgid "Applicable"
-msgstr ""
+msgstr "Érvényességi kör"
#: templates/settings.php:27
msgid "Add mount point"
-msgstr ""
+msgstr "Új csatolás létrehozása"
#: templates/settings.php:85
msgid "None set"
-msgstr ""
+msgstr "Nincs beállítva"
#: templates/settings.php:86
msgid "All Users"
-msgstr ""
+msgstr "Az összes felhasználó"
#: templates/settings.php:87
msgid "Groups"
@@ -99,22 +99,22 @@ msgid "Users"
msgstr "Felhasználók"
#: templates/settings.php:108 templates/settings.php:109
-#: templates/settings.php:149 templates/settings.php:150
+#: templates/settings.php:144 templates/settings.php:145
msgid "Delete"
msgstr "Törlés"
#: templates/settings.php:124
msgid "Enable User External Storage"
-msgstr ""
+msgstr "Külső tárolók engedélyezése a felhasználók részére"
#: templates/settings.php:125
msgid "Allow users to mount their own external storage"
-msgstr ""
+msgstr "Lehetővé teszi, hogy a felhasználók külső tárolási szolgáltatásokat csatoljanak be a saját területükre"
-#: templates/settings.php:139
+#: templates/settings.php:136
msgid "SSL root certificates"
-msgstr ""
+msgstr "SSL tanúsítványok"
-#: templates/settings.php:158
+#: templates/settings.php:153
msgid "Import Root Certificate"
-msgstr ""
+msgstr "SSL tanúsítványok importálása"
diff --git a/l10n/hu_HU/files_sharing.po b/l10n/hu_HU/files_sharing.po
index 4379b279a6..0534ea09d4 100644
--- a/l10n/hu_HU/files_sharing.po
+++ b/l10n/hu_HU/files_sharing.po
@@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-22 01:14+0200\n"
-"PO-Revision-Date: 2012-09-21 23:15+0000\n"
-"Last-Translator: I Robot \n"
+"POT-Creation-Date: 2012-12-31 00:04+0100\n"
+"PO-Revision-Date: 2012-12-30 17:39+0000\n"
+"Last-Translator: Laszlo Tornoci \n"
"Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -20,30 +20,30 @@ msgstr ""
#: templates/authenticate.php:4
msgid "Password"
-msgstr ""
+msgstr "Jelszó"
#: templates/authenticate.php:6
msgid "Submit"
-msgstr ""
+msgstr "Elküld"
-#: templates/public.php:9
+#: templates/public.php:17
#, php-format
msgid "%s shared the folder %s with you"
-msgstr ""
+msgstr "%s megosztotta Önnel ezt a mappát: %s"
-#: templates/public.php:11
+#: templates/public.php:19
#, php-format
msgid "%s shared the file %s with you"
-msgstr ""
+msgstr "%s megosztotta Önnel ezt az állományt: %s"
-#: templates/public.php:14 templates/public.php:30
+#: templates/public.php:22 templates/public.php:38
msgid "Download"
-msgstr ""
-
-#: templates/public.php:29
-msgid "No preview available for"
-msgstr ""
+msgstr "Letöltés"
#: templates/public.php:37
+msgid "No preview available for"
+msgstr "Nem áll rendelkezésre előnézet ehhez: "
+
+#: templates/public.php:43
msgid "web services under your control"
-msgstr ""
+msgstr "webszolgáltatások saját kézben"
diff --git a/l10n/hu_HU/files_versions.po b/l10n/hu_HU/files_versions.po
index b55e474da7..0a39722ad7 100644
--- a/l10n/hu_HU/files_versions.po
+++ b/l10n/hu_HU/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-22 01:14+0200\n"
-"PO-Revision-Date: 2012-09-21 23:15+0000\n"
-"Last-Translator: I Robot \n"
+"POT-Creation-Date: 2012-12-31 00:04+0100\n"
+"PO-Revision-Date: 2012-12-30 17:24+0000\n"
+"Last-Translator: Laszlo Tornoci \n"
"Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -17,26 +17,26 @@ msgstr ""
"Language: hu_HU\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: js/settings-personal.js:31 templates/settings-personal.php:10
+#: js/settings-personal.js:31 templates/settings-personal.php:7
msgid "Expire all versions"
-msgstr ""
+msgstr "Az összes korábbi változat törlése"
#: js/versions.js:16
msgid "History"
-msgstr ""
+msgstr "Korábbi változatok"
#: templates/settings-personal.php:4
msgid "Versions"
-msgstr ""
+msgstr "Az állományok korábbi változatai"
-#: templates/settings-personal.php:7
+#: templates/settings-personal.php:10
msgid "This will delete all existing backup versions of your files"
-msgstr ""
+msgstr "Itt törölni tudja állományainak összes korábbi verzióját"
#: templates/settings.php:3
msgid "Files Versioning"
-msgstr ""
+msgstr "Az állományok verzionálása"
#: templates/settings.php:4
msgid "Enable"
-msgstr ""
+msgstr "engedélyezve"
diff --git a/l10n/hu_HU/lib.po b/l10n/hu_HU/lib.po
index 18f4e74d07..1a78f30958 100644
--- a/l10n/hu_HU/lib.po
+++ b/l10n/hu_HU/lib.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-11-16 00:02+0100\n"
-"PO-Revision-Date: 2012-11-14 23:13+0000\n"
-"Last-Translator: I Robot \n"
+"POT-Creation-Date: 2012-12-31 00:04+0100\n"
+"PO-Revision-Date: 2012-12-30 09:34+0000\n"
+"Last-Translator: Laszlo Tornoci \n"
"Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -18,45 +18,45 @@ msgstr ""
"Language: hu_HU\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: app.php:285
+#: app.php:287
msgid "Help"
msgstr "Súgó"
-#: app.php:292
+#: app.php:294
msgid "Personal"
msgstr "Személyes"
-#: app.php:297
+#: app.php:299
msgid "Settings"
msgstr "Beállítások"
-#: app.php:302
+#: app.php:304
msgid "Users"
msgstr "Felhasználók"
-#: app.php:309
+#: app.php:311
msgid "Apps"
msgstr "Alkalmazások"
-#: app.php:311
+#: app.php:313
msgid "Admin"
msgstr "Admin"
-#: files.php:332
+#: files.php:365
msgid "ZIP download is turned off."
-msgstr "ZIP-letöltés letiltva"
+msgstr "A ZIP-letöltés nem engedélyezett."
-#: files.php:333
+#: files.php:366
msgid "Files need to be downloaded one by one."
-msgstr "A file-okat egyenként kell letölteni"
+msgstr "A fájlokat egyenként kell letölteni"
-#: files.php:333 files.php:358
+#: files.php:366 files.php:391
msgid "Back to Files"
-msgstr "Vissza a File-okhoz"
+msgstr "Vissza a Fájlokhoz"
-#: files.php:357
+#: files.php:390
msgid "Selected files too large to generate zip file."
-msgstr "Túl nagy file-ok a zip-generáláshoz"
+msgstr "A kiválasztott fájlok túl nagy a zip tömörítéshez."
#: json.php:28
msgid "Application is not enabled"
@@ -68,7 +68,7 @@ msgstr "Hitelesítési hiba"
#: json.php:51
msgid "Token expired. Please reload page."
-msgstr "A token lejárt. Frissítsd az oldalt."
+msgstr "A token lejárt. Frissítse az oldalt."
#: search/provider/file.php:17 search/provider/file.php:35
msgid "Files"
@@ -80,29 +80,29 @@ msgstr "Szöveg"
#: search/provider/file.php:29
msgid "Images"
-msgstr ""
+msgstr "Képek"
#: template.php:103
msgid "seconds ago"
-msgstr "másodperccel ezelőtt"
+msgstr "másodperce"
#: template.php:104
msgid "1 minute ago"
-msgstr "1 perccel ezelőtt"
+msgstr "1 perce"
#: template.php:105
#, php-format
msgid "%d minutes ago"
-msgstr "%d perccel ezelőtt"
+msgstr "%d perce"
#: template.php:106
msgid "1 hour ago"
-msgstr ""
+msgstr "1 órája"
#: template.php:107
#, php-format
msgid "%d hours ago"
-msgstr ""
+msgstr "%d órája"
#: template.php:108
msgid "today"
@@ -115,7 +115,7 @@ msgstr "tegnap"
#: template.php:110
#, php-format
msgid "%d days ago"
-msgstr "%d évvel ezelőtt"
+msgstr "%d napja"
#: template.php:111
msgid "last month"
@@ -124,7 +124,7 @@ msgstr "múlt hónapban"
#: template.php:112
#, php-format
msgid "%d months ago"
-msgstr ""
+msgstr "%d hónapja"
#: template.php:113
msgid "last year"
@@ -132,22 +132,22 @@ msgstr "tavaly"
#: template.php:114
msgid "years ago"
-msgstr "évvel ezelőtt"
+msgstr "éve"
#: updater.php:75
#, php-format
msgid "%s is available. Get more information "
-msgstr ""
+msgstr "%s elérhető. További információ ."
#: updater.php:77
msgid "up to date"
-msgstr ""
+msgstr "a legfrissebb változat"
#: updater.php:80
msgid "updates check is disabled"
-msgstr ""
+msgstr "A frissitések ellenőrzése nincs engedélyezve."
#: vcategories.php:188 vcategories.php:249
#, php-format
msgid "Could not find category \"%s\""
-msgstr ""
+msgstr "Ez a kategória nem található: \"%s\""
diff --git a/l10n/hu_HU/settings.po b/l10n/hu_HU/settings.po
index fcc66c8ce6..b00e728cc4 100644
--- a/l10n/hu_HU/settings.po
+++ b/l10n/hu_HU/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-12-21 00:10+0100\n"
-"PO-Revision-Date: 2012-12-19 23:20+0000\n"
-"Last-Translator: I Robot \n"
+"POT-Creation-Date: 2012-12-31 00:04+0100\n"
+"PO-Revision-Date: 2012-12-30 14:17+0000\n"
+"Last-Translator: Laszlo Tornoci \n"
"Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -25,15 +25,15 @@ msgstr "Nem tölthető le a lista az App Store-ból"
#: ajax/creategroup.php:10
msgid "Group already exists"
-msgstr ""
+msgstr "A csoport már létezik"
#: ajax/creategroup.php:19
msgid "Unable to add group"
-msgstr ""
+msgstr "A csoport nem hozható létre"
#: ajax/enableapp.php:12
msgid "Could not enable app. "
-msgstr ""
+msgstr "A program nem aktiválható."
#: ajax/lostpassword.php:12
msgid "Email saved"
@@ -53,15 +53,15 @@ msgstr "Érvénytelen kérés"
#: ajax/removegroup.php:13
msgid "Unable to delete group"
-msgstr ""
+msgstr "A csoport nem törölhető"
#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18
msgid "Authentication error"
-msgstr "Hitelesítési hiba"
+msgstr "Azonosítási hiba"
#: ajax/removeuser.php:24
msgid "Unable to delete user"
-msgstr ""
+msgstr "A felhasználó nem törölhető"
#: ajax/setlanguage.php:15
msgid "Language changed"
@@ -69,17 +69,17 @@ msgstr "A nyelv megváltozott"
#: ajax/togglegroups.php:12
msgid "Admins can't remove themself from the admin group"
-msgstr ""
+msgstr "Adminisztrátorok nem távolíthatják el magukat az admin csoportból."
#: ajax/togglegroups.php:28
#, php-format
msgid "Unable to add user to group %s"
-msgstr ""
+msgstr "A felhasználó nem adható hozzá ehhez a csoporthoz: %s"
#: ajax/togglegroups.php:34
#, php-format
msgid "Unable to remove user from group %s"
-msgstr ""
+msgstr "A felhasználó nem távolítható el ebből a csoportból: %s"
#: js/apps.js:28 js/apps.js:67
msgid "Disable"
@@ -99,15 +99,15 @@ msgstr "__language_name__"
#: templates/apps.php:10
msgid "Add your App"
-msgstr "App hozzáadása"
+msgstr "Az alkalmazás hozzáadása"
#: templates/apps.php:11
msgid "More Apps"
-msgstr ""
+msgstr "További alkalmazások"
#: templates/apps.php:27
msgid "Select an App"
-msgstr "Egy App kiválasztása"
+msgstr "Válasszon egy alkalmazást"
#: templates/apps.php:31
msgid "See application page at apps.owncloud.com"
@@ -115,36 +115,36 @@ msgstr "Lásd apps.owncloud.com, alkalmazások oldal"
#: templates/apps.php:32
msgid " -licensed by "
-msgstr ""
+msgstr " -a jogtuladonos "
#: templates/help.php:3
msgid "User Documentation"
-msgstr ""
+msgstr "Felhasználói leírás"
#: templates/help.php:4
msgid "Administrator Documentation"
-msgstr ""
+msgstr "Üzemeltetői leírás"
#: templates/help.php:6
msgid "Online Documentation"
-msgstr ""
+msgstr "Online leírás"
#: templates/help.php:7
msgid "Forum"
-msgstr ""
+msgstr "Fórum"
#: templates/help.php:9
msgid "Bugtracker"
-msgstr ""
+msgstr "Hibabejelentések"
#: templates/help.php:11
msgid "Commercial Support"
-msgstr ""
+msgstr "Megvásárolható támogatás"
#: templates/personal.php:8
#, php-format
msgid "You have used %s of the available %s "
-msgstr ""
+msgstr "Az Ön tárterület-felhasználása jelenleg: %s . Maximálisan ennyi áll rendelkezésére: %s "
#: templates/personal.php:12
msgid "Clients"
@@ -152,43 +152,43 @@ msgstr "Kliensek"
#: templates/personal.php:13
msgid "Download Desktop Clients"
-msgstr ""
+msgstr "Desktop kliensprogramok letöltése"
#: templates/personal.php:14
msgid "Download Android Client"
-msgstr ""
+msgstr "Android kliens letöltése"
#: templates/personal.php:15
msgid "Download iOS Client"
-msgstr ""
+msgstr "iOS kliens letöltése"
-#: templates/personal.php:21 templates/users.php:23 templates/users.php:77
+#: templates/personal.php:21 templates/users.php:23 templates/users.php:82
msgid "Password"
msgstr "Jelszó"
#: templates/personal.php:22
msgid "Your password was changed"
-msgstr ""
+msgstr "A jelszava megváltozott"
#: templates/personal.php:23
msgid "Unable to change your password"
-msgstr "Nem lehet megváltoztatni a jelszavad"
+msgstr "A jelszó nem változtatható meg"
#: templates/personal.php:24
msgid "Current password"
-msgstr "Jelenlegi jelszó"
+msgstr "A jelenlegi jelszó"
#: templates/personal.php:25
msgid "New password"
-msgstr "Új jelszó"
+msgstr "Az új jelszó"
#: templates/personal.php:26
msgid "show"
-msgstr "Mutat"
+msgstr "lássam"
#: templates/personal.php:27
msgid "Change password"
-msgstr "Jelszó megváltoztatása"
+msgstr "A jelszó megváltoztatása"
#: templates/personal.php:33
msgid "Email"
@@ -196,11 +196,11 @@ msgstr "Email"
#: templates/personal.php:34
msgid "Your email address"
-msgstr "Email címed"
+msgstr "Az Ön email címe"
#: templates/personal.php:35
msgid "Fill in an email address to enable password recovery"
-msgstr "Töltsd ki az email címet, hogy engedélyezhesd a jelszó-visszaállítást"
+msgstr "Adja meg az email címét, hogy jelszó-emlékeztetőt kérhessen, ha elfelejtette a jelszavát!"
#: templates/personal.php:41 templates/personal.php:42
msgid "Language"
@@ -208,19 +208,19 @@ msgstr "Nyelv"
#: templates/personal.php:47
msgid "Help translate"
-msgstr "Segíts lefordítani!"
+msgstr "Segítsen a fordításban!"
#: templates/personal.php:52
msgid "WebDAV"
-msgstr ""
+msgstr "WebDAV"
#: templates/personal.php:54
msgid "Use this address to connect to your ownCloud in your file manager"
-msgstr ""
+msgstr "Ennek a címnek a megadásával a WebDAV-protokollon keresztül saját gépének fájlkezelőjével is is elérheti az állományait."
#: templates/personal.php:63
msgid "Version"
-msgstr ""
+msgstr "Verzió"
#: templates/personal.php:65
msgid ""
@@ -230,13 +230,13 @@ msgid ""
"licensed under the AGPL ."
-msgstr ""
+msgstr "A programot az ownCloud közösség fejleszti. A forráskód az AGPL feltételei mellett használható föl."
-#: templates/users.php:21 templates/users.php:76
+#: templates/users.php:21 templates/users.php:81
msgid "Name"
msgstr "Név"
-#: templates/users.php:26 templates/users.php:78 templates/users.php:98
+#: templates/users.php:26 templates/users.php:83 templates/users.php:103
msgid "Groups"
msgstr "Csoportok"
@@ -245,21 +245,29 @@ msgid "Create"
msgstr "Létrehozás"
#: templates/users.php:35
-msgid "Default Quota"
-msgstr "Alapértelmezett kvóta"
-
-#: templates/users.php:55 templates/users.php:138
-msgid "Other"
-msgstr "Egyéb"
-
-#: templates/users.php:80 templates/users.php:112
-msgid "Group Admin"
+msgid "Default Storage"
msgstr ""
-#: templates/users.php:82
-msgid "Quota"
-msgstr "Kvóta"
+#: templates/users.php:42 templates/users.php:138
+msgid "Unlimited"
+msgstr ""
-#: templates/users.php:146
+#: templates/users.php:60 templates/users.php:153
+msgid "Other"
+msgstr "Más"
+
+#: templates/users.php:85 templates/users.php:117
+msgid "Group Admin"
+msgstr "Csoportadminisztrátor"
+
+#: templates/users.php:87
+msgid "Storage"
+msgstr ""
+
+#: templates/users.php:133
+msgid "Default"
+msgstr ""
+
+#: templates/users.php:161
msgid "Delete"
msgstr "Törlés"
diff --git a/l10n/hu_HU/user_ldap.po b/l10n/hu_HU/user_ldap.po
index 330b4cd146..655c88dd46 100644
--- a/l10n/hu_HU/user_ldap.po
+++ b/l10n/hu_HU/user_ldap.po
@@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-12-15 00:11+0100\n"
-"PO-Revision-Date: 2012-12-14 23:11+0000\n"
-"Last-Translator: I Robot \n"
+"POT-Creation-Date: 2012-12-30 00:04+0100\n"
+"PO-Revision-Date: 2012-12-29 17:19+0000\n"
+"Last-Translator: Laszlo Tornoci \n"
"Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -22,34 +22,34 @@ msgid ""
"Warning: Apps user_ldap and user_webdavauth are incompatible. You may"
" experience unexpected behaviour. Please ask your system administrator to "
"disable one of them."
-msgstr ""
+msgstr "Figyelem: a user_ldap és user_webdavauth alkalmazások nem kompatibilisek. Együttes használatuk váratlan eredményekhez vezethet. Kérje meg a rendszergazdát, hogy a kettő közül kapcsolja ki az egyiket."
#: templates/settings.php:11
msgid ""
"Warning: The PHP LDAP module needs is not installed, the backend will"
" not work. Please ask your system administrator to install it."
-msgstr ""
+msgstr "Figyelem: a szükséges PHP LDAP modul nincs telepítve. Enélkül az LDAP azonosítás nem fog működni. Kérje meg a rendszergazdát, hogy telepítse a szükséges modult!"
#: templates/settings.php:15
msgid "Host"
-msgstr ""
+msgstr "Kiszolgáló"
#: templates/settings.php:15
msgid ""
"You can omit the protocol, except you require SSL. Then start with ldaps://"
-msgstr ""
+msgstr "A protokoll előtag elhagyható, kivéve, ha SSL-t kíván használni. Ebben az esetben kezdje így: ldaps://"
#: templates/settings.php:16
msgid "Base DN"
-msgstr ""
+msgstr "DN-gyökér"
#: templates/settings.php:16
msgid "You can specify Base DN for users and groups in the Advanced tab"
-msgstr ""
+msgstr "A Haladó fülre kattintva külön DN-gyökér állítható be a felhasználók és a csoportok számára"
#: templates/settings.php:17
msgid "User DN"
-msgstr ""
+msgstr "A kapcsolódó felhasználó DN-je"
#: templates/settings.php:17
msgid ""
@@ -60,51 +60,51 @@ msgstr ""
#: templates/settings.php:18
msgid "Password"
-msgstr ""
+msgstr "Jelszó"
#: templates/settings.php:18
msgid "For anonymous access, leave DN and Password empty."
-msgstr ""
+msgstr "Bejelentkezés nélküli eléréshez ne töltse ki a DN és Jelszó mezőket!"
#: templates/settings.php:19
msgid "User Login Filter"
-msgstr ""
+msgstr "Szűrő a bejelentkezéshez"
#: templates/settings.php:19
#, php-format
msgid ""
"Defines the filter to apply, when login is attempted. %%uid replaces the "
"username in the login action."
-msgstr ""
+msgstr "Ez a szűrő érvényes a bejelentkezés megkísérlésekor. Ekkor az %%uid változó helyére a bejelentkezési név kerül."
#: templates/settings.php:19
#, php-format
msgid "use %%uid placeholder, e.g. \"uid=%%uid\""
-msgstr ""
+msgstr "használja az %%uid változót, pl. \"uid=%%uid\""
#: templates/settings.php:20
msgid "User List Filter"
-msgstr ""
+msgstr "A felhasználók szűrője"
#: templates/settings.php:20
msgid "Defines the filter to apply, when retrieving users."
-msgstr ""
+msgstr "Ez a szűrő érvényes a felhasználók listázásakor."
#: templates/settings.php:20
msgid "without any placeholder, e.g. \"objectClass=person\"."
-msgstr ""
+msgstr "itt ne használjon változót, pl. \"objectClass=person\"."
#: templates/settings.php:21
msgid "Group Filter"
-msgstr ""
+msgstr "A csoportok szűrője"
#: templates/settings.php:21
msgid "Defines the filter to apply, when retrieving groups."
-msgstr ""
+msgstr "Ez a szűrő érvényes a csoportok listázásakor."
#: templates/settings.php:21
msgid "without any placeholder, e.g. \"objectClass=posixGroup\"."
-msgstr ""
+msgstr "itt ne használjunk változót, pl. \"objectClass=posixGroup\"."
#: templates/settings.php:24
msgid "Port"
@@ -112,72 +112,72 @@ msgstr ""
#: templates/settings.php:25
msgid "Base User Tree"
-msgstr ""
+msgstr "A felhasználói fa gyökere"
#: templates/settings.php:26
msgid "Base Group Tree"
-msgstr ""
+msgstr "A csoportfa gyökere"
#: templates/settings.php:27
msgid "Group-Member association"
-msgstr ""
+msgstr "A csoporttagság attribútuma"
#: templates/settings.php:28
msgid "Use TLS"
-msgstr ""
+msgstr "Használjunk TLS-t"
#: templates/settings.php:28
msgid "Do not use it for SSL connections, it will fail."
-msgstr ""
+msgstr "Ne használjuk SSL-kapcsolat esetén, mert nem fog működni!"
#: templates/settings.php:29
msgid "Case insensitve LDAP server (Windows)"
-msgstr ""
+msgstr "Az LDAP-kiszolgáló nem tesz különbséget a kis- és nagybetűk között (Windows)"
#: templates/settings.php:30
msgid "Turn off SSL certificate validation."
-msgstr ""
+msgstr "Ne ellenőrizzük az SSL-tanúsítvány érvényességét"
#: templates/settings.php:30
msgid ""
"If connection only works with this option, import the LDAP server's SSL "
"certificate in your ownCloud server."
-msgstr ""
+msgstr "Ha a kapcsolat csak ezzel a beállítással működik, akkor importálja az LDAP-kiszolgáló SSL tanúsítványát az ownCloud kiszolgálóra!"
#: templates/settings.php:30
msgid "Not recommended, use for testing only."
-msgstr ""
+msgstr "Nem javasolt, csak tesztelésre érdemes használni."
#: templates/settings.php:31
msgid "User Display Name Field"
-msgstr ""
+msgstr "A felhasználónév mezője"
#: templates/settings.php:31
msgid "The LDAP attribute to use to generate the user`s ownCloud name."
-msgstr ""
+msgstr "Ebből az LDAP attribútumból képződik a felhasználó elnevezése, ami megjelenik az ownCloudban."
#: templates/settings.php:32
msgid "Group Display Name Field"
-msgstr ""
+msgstr "A csoport nevének mezője"
#: templates/settings.php:32
msgid "The LDAP attribute to use to generate the groups`s ownCloud name."
-msgstr ""
+msgstr "Ebből az LDAP attribútumból képződik a csoport elnevezése, ami megjelenik az ownCloudban."
#: templates/settings.php:34
msgid "in bytes"
-msgstr ""
+msgstr "bájtban"
#: templates/settings.php:36
msgid "in seconds. A change empties the cache."
-msgstr ""
+msgstr "másodpercben. A változtatás törli a cache tartalmát."
#: templates/settings.php:37
msgid ""
"Leave empty for user name (default). Otherwise, specify an LDAP/AD "
"attribute."
-msgstr ""
+msgstr "Hagyja üresen, ha a felhasználónevet kívánja használni. Ellenkező esetben adjon meg egy LDAP/AD attribútumot!"
#: templates/settings.php:39
msgid "Help"
-msgstr ""
+msgstr "Súgó"
diff --git a/l10n/hu_HU/user_webdavauth.po b/l10n/hu_HU/user_webdavauth.po
index 5b8d806958..5d89219034 100644
--- a/l10n/hu_HU/user_webdavauth.po
+++ b/l10n/hu_HU/user_webdavauth.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-12-20 00:11+0100\n"
-"PO-Revision-Date: 2012-12-19 23:12+0000\n"
-"Last-Translator: I Robot \n"
+"POT-Creation-Date: 2012-12-31 00:04+0100\n"
+"PO-Revision-Date: 2012-12-30 20:47+0000\n"
+"Last-Translator: Laszlo Tornoci \n"
"Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -19,11 +19,11 @@ msgstr ""
#: templates/settings.php:4
msgid "URL: http://"
-msgstr ""
+msgstr "URL: http://"
#: templates/settings.php:6
msgid ""
"ownCloud will send the user credentials to this URL is interpret http 401 "
"and http 403 as credentials wrong and all other codes as credentials "
"correct."
-msgstr ""
+msgstr "Az ownCloud rendszer erre a címre fogja elküldeni a felhasználók bejelentkezési adatait. Ha 401-es vagy 403-as http kódot kap vissza, azt sikertelen azonosításként fogja értelmezni, minden más kódot sikeresnek fog tekinteni."
diff --git a/l10n/ia/core.po b/l10n/ia/core.po
index cf1e1c8105..29a834b73e 100644
--- a/l10n/ia/core.po
+++ b/l10n/ia/core.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-12-13 00:17+0100\n"
-"PO-Revision-Date: 2012-12-12 23:17+0000\n"
+"POT-Creation-Date: 2013-01-07 00:04+0100\n"
+"PO-Revision-Date: 2013-01-06 23:04+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n"
"MIME-Version: 1.0\n"
@@ -162,8 +162,8 @@ msgid "The object type is not specified."
msgstr ""
#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136
-#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541
-#: js/share.js:553
+#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554
+#: js/share.js:566
msgid "Error"
msgstr ""
@@ -175,7 +175,7 @@ msgstr ""
msgid "The required file {file} is not installed!"
msgstr ""
-#: js/share.js:124 js/share.js:581
+#: js/share.js:124 js/share.js:594
msgid "Error while sharing"
msgstr ""
@@ -203,11 +203,11 @@ msgstr ""
msgid "Share with link"
msgstr ""
-#: js/share.js:164
+#: js/share.js:166
msgid "Password protect"
msgstr ""
-#: js/share.js:168 templates/installation.php:42 templates/login.php:24
+#: js/share.js:168 templates/installation.php:44 templates/login.php:35
#: templates/verify.php:13
msgid "Password"
msgstr "Contrasigno"
@@ -272,23 +272,23 @@ msgstr ""
msgid "share"
msgstr ""
-#: js/share.js:353 js/share.js:528 js/share.js:530
+#: js/share.js:356 js/share.js:541
msgid "Password protected"
msgstr ""
-#: js/share.js:541
+#: js/share.js:554
msgid "Error unsetting expiration date"
msgstr ""
-#: js/share.js:553
+#: js/share.js:566
msgid "Error setting expiration date"
msgstr ""
-#: js/share.js:568
+#: js/share.js:581
msgid "Sending ..."
msgstr ""
-#: js/share.js:579
+#: js/share.js:592
msgid "Email sent"
msgstr ""
@@ -312,8 +312,8 @@ msgstr ""
msgid "Request failed!"
msgstr ""
-#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38
-#: templates/login.php:20
+#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39
+#: templates/login.php:28
msgid "Username"
msgstr "Nomine de usator"
@@ -402,44 +402,44 @@ msgstr ""
msgid "Create an admin account "
msgstr "Crear un conto de administration "
-#: templates/installation.php:48
+#: templates/installation.php:50
msgid "Advanced"
msgstr "Avantiate"
-#: templates/installation.php:50
+#: templates/installation.php:52
msgid "Data folder"
msgstr "Dossier de datos"
-#: templates/installation.php:57
+#: templates/installation.php:59
msgid "Configure the database"
msgstr "Configurar le base de datos"
-#: templates/installation.php:62 templates/installation.php:73
-#: templates/installation.php:83 templates/installation.php:93
+#: templates/installation.php:64 templates/installation.php:75
+#: templates/installation.php:85 templates/installation.php:95
msgid "will be used"
msgstr "essera usate"
-#: templates/installation.php:105
+#: templates/installation.php:107
msgid "Database user"
msgstr "Usator de base de datos"
-#: templates/installation.php:109
+#: templates/installation.php:111
msgid "Database password"
msgstr "Contrasigno de base de datos"
-#: templates/installation.php:113
+#: templates/installation.php:115
msgid "Database name"
msgstr "Nomine de base de datos"
-#: templates/installation.php:121
+#: templates/installation.php:123
msgid "Database tablespace"
msgstr ""
-#: templates/installation.php:127
+#: templates/installation.php:129
msgid "Database host"
msgstr "Hospite de base de datos"
-#: templates/installation.php:132
+#: templates/installation.php:134
msgid "Finish setup"
msgstr ""
@@ -527,29 +527,29 @@ msgstr "servicios web sub tu controlo"
msgid "Log out"
msgstr "Clauder le session"
-#: templates/login.php:8
+#: templates/login.php:10
msgid "Automatic logon rejected!"
msgstr ""
-#: templates/login.php:9
+#: templates/login.php:11
msgid ""
"If you did not change your password recently, your account may be "
"compromised!"
msgstr ""
-#: templates/login.php:10
+#: templates/login.php:13
msgid "Please change your password to secure your account again."
msgstr ""
-#: templates/login.php:15
+#: templates/login.php:19
msgid "Lost your password?"
msgstr "Tu perdeva le contrasigno?"
-#: templates/login.php:27
+#: templates/login.php:39
msgid "remember"
msgstr "memora"
-#: templates/login.php:28
+#: templates/login.php:41
msgid "Log in"
msgstr "Aperir session"
@@ -565,6 +565,11 @@ msgstr "prev"
msgid "next"
msgstr "prox"
+#: templates/update.php:3
+#, php-format
+msgid "Updating ownCloud to version %s, this may take a while."
+msgstr ""
+
#: templates/verify.php:5
msgid "Security Warning!"
msgstr ""
diff --git a/l10n/ia/files.po b/l10n/ia/files.po
index 3f93aeb396..679f4b62cb 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-12-01 00:01+0100\n"
-"PO-Revision-Date: 2012-11-30 23:02+0000\n"
+"POT-Creation-Date: 2013-01-07 00:04+0100\n"
+"PO-Revision-Date: 2013-01-06 23:05+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n"
"MIME-Version: 1.0\n"
@@ -19,46 +19,58 @@ msgstr ""
"Language: ia\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: ajax/upload.php:20
-msgid "There is no error, the file uploaded with success"
+#: ajax/upload.php:14
+msgid "No file was uploaded. Unknown error"
msgstr ""
#: ajax/upload.php:21
+msgid "There is no error, the file uploaded with success"
+msgstr ""
+
+#: ajax/upload.php:22
msgid ""
"The uploaded file exceeds the upload_max_filesize directive in php.ini: "
msgstr ""
-#: ajax/upload.php:23
+#: ajax/upload.php:24
msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form"
msgstr ""
-#: ajax/upload.php:25
+#: ajax/upload.php:26
msgid "The uploaded file was only partially uploaded"
msgstr "Le file incargate solmente esseva incargate partialmente"
-#: ajax/upload.php:26
+#: ajax/upload.php:27
msgid "No file was uploaded"
msgstr "Nulle file esseva incargate"
-#: ajax/upload.php:27
+#: ajax/upload.php:28
msgid "Missing a temporary folder"
msgstr "Manca un dossier temporari"
-#: ajax/upload.php:28
+#: ajax/upload.php:29
msgid "Failed to write to disk"
msgstr ""
+#: ajax/upload.php:45
+msgid "Not enough space available"
+msgstr ""
+
+#: ajax/upload.php:69
+msgid "Invalid directory."
+msgstr ""
+
#: appinfo/app.php:10
msgid "Files"
msgstr "Files"
-#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84
+#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85
msgid "Unshare"
msgstr ""
-#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90
+#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91
msgid "Delete"
msgstr "Deler"
@@ -66,122 +78,130 @@ msgstr "Deler"
msgid "Rename"
msgstr ""
-#: js/filelist.js:201 js/filelist.js:203
+#: js/filelist.js:199 js/filelist.js:201
msgid "{new_name} already exists"
msgstr ""
-#: js/filelist.js:201 js/filelist.js:203
+#: js/filelist.js:199 js/filelist.js:201
msgid "replace"
msgstr ""
-#: js/filelist.js:201
+#: js/filelist.js:199
msgid "suggest name"
msgstr ""
-#: js/filelist.js:201 js/filelist.js:203
+#: js/filelist.js:199 js/filelist.js:201
msgid "cancel"
msgstr ""
-#: js/filelist.js:250
+#: js/filelist.js:248
msgid "replaced {new_name}"
msgstr ""
-#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286
+#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284
msgid "undo"
msgstr ""
-#: js/filelist.js:252
+#: js/filelist.js:250
msgid "replaced {new_name} with {old_name}"
msgstr ""
-#: js/filelist.js:284
+#: js/filelist.js:282
msgid "unshared {files}"
msgstr ""
-#: js/filelist.js:286
+#: js/filelist.js:284
msgid "deleted {files}"
msgstr ""
-#: js/files.js:33
+#: js/files.js:31
+msgid "'.' is an invalid file name."
+msgstr ""
+
+#: js/files.js:36
+msgid "File name cannot be empty."
+msgstr ""
+
+#: js/files.js:45
msgid ""
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not "
"allowed."
msgstr ""
-#: js/files.js:183
+#: js/files.js:186
msgid "generating ZIP-file, it may take some time."
msgstr ""
-#: js/files.js:218
+#: js/files.js:224
msgid "Unable to upload your file as it is a directory or has 0 bytes"
msgstr ""
-#: js/files.js:218
+#: js/files.js:224
msgid "Upload Error"
msgstr ""
-#: js/files.js:235
+#: js/files.js:241
msgid "Close"
msgstr "Clauder"
-#: js/files.js:254 js/files.js:368 js/files.js:398
+#: js/files.js:260 js/files.js:374 js/files.js:404
msgid "Pending"
msgstr ""
-#: js/files.js:274
+#: js/files.js:280
msgid "1 file uploading"
msgstr ""
-#: js/files.js:277 js/files.js:331 js/files.js:346
+#: js/files.js:283 js/files.js:337 js/files.js:352
msgid "{count} files uploading"
msgstr ""
-#: js/files.js:349 js/files.js:382
+#: js/files.js:355 js/files.js:388
msgid "Upload cancelled."
msgstr ""
-#: js/files.js:451
+#: js/files.js:457
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr ""
-#: js/files.js:523
+#: js/files.js:527
msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud"
msgstr ""
-#: js/files.js:704
+#: js/files.js:711
msgid "{count} files scanned"
msgstr ""
-#: js/files.js:712
+#: js/files.js:719
msgid "error while scanning"
msgstr ""
-#: js/files.js:785 templates/index.php:65
+#: js/files.js:792 templates/index.php:66
msgid "Name"
msgstr "Nomine"
-#: js/files.js:786 templates/index.php:76
+#: js/files.js:793 templates/index.php:77
msgid "Size"
msgstr "Dimension"
-#: js/files.js:787 templates/index.php:78
+#: js/files.js:794 templates/index.php:79
msgid "Modified"
msgstr "Modificate"
-#: js/files.js:814
+#: js/files.js:813
msgid "1 folder"
msgstr ""
-#: js/files.js:816
+#: js/files.js:815
msgid "{count} folders"
msgstr ""
-#: js/files.js:824
+#: js/files.js:823
msgid "1 file"
msgstr ""
-#: js/files.js:826
+#: js/files.js:825
msgid "{count} files"
msgstr ""
@@ -193,27 +213,27 @@ msgstr ""
msgid "Maximum upload size"
msgstr "Dimension maxime de incargamento"
-#: templates/admin.php:9
+#: templates/admin.php:10
msgid "max. possible: "
msgstr ""
-#: templates/admin.php:12
+#: templates/admin.php:15
msgid "Needed for multi-file and folder downloads."
msgstr ""
-#: templates/admin.php:14
+#: templates/admin.php:17
msgid "Enable ZIP-download"
msgstr ""
-#: templates/admin.php:17
+#: templates/admin.php:20
msgid "0 is unlimited"
msgstr ""
-#: templates/admin.php:19
+#: templates/admin.php:22
msgid "Maximum input size for ZIP files"
msgstr ""
-#: templates/admin.php:23
+#: templates/admin.php:26
msgid "Save"
msgstr "Salveguardar"
@@ -241,28 +261,28 @@ msgstr "Incargar"
msgid "Cancel upload"
msgstr ""
-#: templates/index.php:57
+#: templates/index.php:58
msgid "Nothing in here. Upload something!"
msgstr "Nihil hic. Incarga alcun cosa!"
-#: templates/index.php:71
+#: templates/index.php:72
msgid "Download"
msgstr "Discargar"
-#: templates/index.php:103
+#: templates/index.php:104
msgid "Upload too large"
msgstr "Incargamento troppo longe"
-#: templates/index.php:105
+#: templates/index.php:106
msgid ""
"The files you are trying to upload exceed the maximum size for file uploads "
"on this server."
msgstr ""
-#: templates/index.php:110
+#: templates/index.php:111
msgid "Files are being scanned, please wait."
msgstr ""
-#: templates/index.php:113
+#: templates/index.php:114
msgid "Current scanning"
msgstr ""
diff --git a/l10n/ia/settings.po b/l10n/ia/settings.po
index 892fdc95fd..5030c5a00a 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-12-21 00:10+0100\n"
-"PO-Revision-Date: 2012-12-19 23:20+0000\n"
+"POT-Creation-Date: 2012-12-30 00:04+0100\n"
+"PO-Revision-Date: 2012-12-29 23:05+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n"
"MIME-Version: 1.0\n"
@@ -162,7 +162,7 @@ msgstr ""
msgid "Download iOS Client"
msgstr ""
-#: templates/personal.php:21 templates/users.php:23 templates/users.php:77
+#: templates/personal.php:21 templates/users.php:23 templates/users.php:82
msgid "Password"
msgstr "Contrasigno"
@@ -232,11 +232,11 @@ msgid ""
"License\">AGPL."
msgstr ""
-#: templates/users.php:21 templates/users.php:76
+#: templates/users.php:21 templates/users.php:81
msgid "Name"
msgstr "Nomine"
-#: templates/users.php:26 templates/users.php:78 templates/users.php:98
+#: templates/users.php:26 templates/users.php:83 templates/users.php:103
msgid "Groups"
msgstr "Gruppos"
@@ -245,21 +245,29 @@ msgid "Create"
msgstr "Crear"
#: templates/users.php:35
-msgid "Default Quota"
-msgstr "Quota predeterminate"
+msgid "Default Storage"
+msgstr ""
-#: templates/users.php:55 templates/users.php:138
+#: templates/users.php:42 templates/users.php:138
+msgid "Unlimited"
+msgstr ""
+
+#: templates/users.php:60 templates/users.php:153
msgid "Other"
msgstr "Altere"
-#: templates/users.php:80 templates/users.php:112
+#: templates/users.php:85 templates/users.php:117
msgid "Group Admin"
msgstr ""
-#: templates/users.php:82
-msgid "Quota"
-msgstr "Quota"
+#: templates/users.php:87
+msgid "Storage"
+msgstr ""
-#: templates/users.php:146
+#: templates/users.php:133
+msgid "Default"
+msgstr ""
+
+#: templates/users.php:161
msgid "Delete"
msgstr "Deler"
diff --git a/l10n/id/core.po b/l10n/id/core.po
index 20b68e9ecf..bc8894d1f0 100644
--- a/l10n/id/core.po
+++ b/l10n/id/core.po
@@ -11,8 +11,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-12-13 00:17+0100\n"
-"PO-Revision-Date: 2012-12-12 23:17+0000\n"
+"POT-Creation-Date: 2013-01-07 00:04+0100\n"
+"PO-Revision-Date: 2013-01-06 23:04+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n"
"MIME-Version: 1.0\n"
@@ -165,8 +165,8 @@ msgid "The object type is not specified."
msgstr ""
#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136
-#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541
-#: js/share.js:553
+#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554
+#: js/share.js:566
msgid "Error"
msgstr "gagal"
@@ -178,7 +178,7 @@ msgstr ""
msgid "The required file {file} is not installed!"
msgstr ""
-#: js/share.js:124 js/share.js:581
+#: js/share.js:124 js/share.js:594
msgid "Error while sharing"
msgstr "gagal ketika membagikan"
@@ -206,11 +206,11 @@ msgstr "bagikan dengan"
msgid "Share with link"
msgstr "bagikan dengan tautan"
-#: js/share.js:164
+#: js/share.js:166
msgid "Password protect"
msgstr "lindungi dengan kata kunci"
-#: js/share.js:168 templates/installation.php:42 templates/login.php:24
+#: js/share.js:168 templates/installation.php:44 templates/login.php:35
#: templates/verify.php:13
msgid "Password"
msgstr "Password"
@@ -275,23 +275,23 @@ msgstr "hapus"
msgid "share"
msgstr "bagikan"
-#: js/share.js:353 js/share.js:528 js/share.js:530
+#: js/share.js:356 js/share.js:541
msgid "Password protected"
msgstr "dilindungi kata kunci"
-#: js/share.js:541
+#: js/share.js:554
msgid "Error unsetting expiration date"
msgstr "gagal melepas tanggal kadaluarsa"
-#: js/share.js:553
+#: js/share.js:566
msgid "Error setting expiration date"
msgstr "gagal memasang tanggal kadaluarsa"
-#: js/share.js:568
+#: js/share.js:581
msgid "Sending ..."
msgstr ""
-#: js/share.js:579
+#: js/share.js:592
msgid "Email sent"
msgstr ""
@@ -315,8 +315,8 @@ msgstr ""
msgid "Request failed!"
msgstr ""
-#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38
-#: templates/login.php:20
+#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39
+#: templates/login.php:28
msgid "Username"
msgstr "Username"
@@ -405,44 +405,44 @@ msgstr ""
msgid "Create an admin account "
msgstr "Buat sebuah akun admin "
-#: templates/installation.php:48
+#: templates/installation.php:50
msgid "Advanced"
msgstr "Tingkat Lanjut"
-#: templates/installation.php:50
+#: templates/installation.php:52
msgid "Data folder"
msgstr "Folder data"
-#: templates/installation.php:57
+#: templates/installation.php:59
msgid "Configure the database"
msgstr "Konfigurasi database"
-#: templates/installation.php:62 templates/installation.php:73
-#: templates/installation.php:83 templates/installation.php:93
+#: templates/installation.php:64 templates/installation.php:75
+#: templates/installation.php:85 templates/installation.php:95
msgid "will be used"
msgstr "akan digunakan"
-#: templates/installation.php:105
+#: templates/installation.php:107
msgid "Database user"
msgstr "Pengguna database"
-#: templates/installation.php:109
+#: templates/installation.php:111
msgid "Database password"
msgstr "Password database"
-#: templates/installation.php:113
+#: templates/installation.php:115
msgid "Database name"
msgstr "Nama database"
-#: templates/installation.php:121
+#: templates/installation.php:123
msgid "Database tablespace"
msgstr "tablespace basis data"
-#: templates/installation.php:127
+#: templates/installation.php:129
msgid "Database host"
msgstr "Host database"
-#: templates/installation.php:132
+#: templates/installation.php:134
msgid "Finish setup"
msgstr "Selesaikan instalasi"
@@ -530,29 +530,29 @@ msgstr "web service dibawah kontrol anda"
msgid "Log out"
msgstr "Keluar"
-#: templates/login.php:8
+#: templates/login.php:10
msgid "Automatic logon rejected!"
msgstr "login otomatis ditolak!"
-#: templates/login.php:9
+#: templates/login.php:11
msgid ""
"If you did not change your password recently, your account may be "
"compromised!"
msgstr "apabila anda tidak merubah kata kunci belakangan ini, akun anda dapat di gunakan orang lain!"
-#: templates/login.php:10
+#: templates/login.php:13
msgid "Please change your password to secure your account again."
msgstr "mohon ubah kata kunci untuk mengamankan akun anda"
-#: templates/login.php:15
+#: templates/login.php:19
msgid "Lost your password?"
msgstr "Lupa password anda?"
-#: templates/login.php:27
+#: templates/login.php:39
msgid "remember"
msgstr "selalu login"
-#: templates/login.php:28
+#: templates/login.php:41
msgid "Log in"
msgstr "Masuk"
@@ -568,6 +568,11 @@ msgstr "sebelum"
msgid "next"
msgstr "selanjutnya"
+#: templates/update.php:3
+#, php-format
+msgid "Updating ownCloud to version %s, this may take a while."
+msgstr ""
+
#: templates/verify.php:5
msgid "Security Warning!"
msgstr "peringatan keamanan!"
diff --git a/l10n/id/files.po b/l10n/id/files.po
index 4c752ed6c0..7f8b49e2fe 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-12-01 00:01+0100\n"
-"PO-Revision-Date: 2012-11-30 23:02+0000\n"
+"POT-Creation-Date: 2013-01-07 00:04+0100\n"
+"PO-Revision-Date: 2013-01-06 23:05+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n"
"MIME-Version: 1.0\n"
@@ -20,46 +20,58 @@ msgstr ""
"Language: id\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-#: ajax/upload.php:20
+#: ajax/upload.php:14
+msgid "No file was uploaded. Unknown error"
+msgstr ""
+
+#: ajax/upload.php:21
msgid "There is no error, the file uploaded with success"
msgstr "Tidak ada galat, berkas sukses diunggah"
-#: ajax/upload.php:21
+#: ajax/upload.php:22
msgid ""
"The uploaded file exceeds the upload_max_filesize directive in php.ini: "
msgstr ""
-#: ajax/upload.php:23
+#: ajax/upload.php:24
msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form"
msgstr "File yang diunggah melampaui directive MAX_FILE_SIZE yang disebutan dalam form HTML."
-#: ajax/upload.php:25
+#: ajax/upload.php:26
msgid "The uploaded file was only partially uploaded"
msgstr "Berkas hanya diunggah sebagian"
-#: ajax/upload.php:26
+#: ajax/upload.php:27
msgid "No file was uploaded"
msgstr "Tidak ada berkas yang diunggah"
-#: ajax/upload.php:27
+#: ajax/upload.php:28
msgid "Missing a temporary folder"
msgstr "Kehilangan folder temporer"
-#: ajax/upload.php:28
+#: ajax/upload.php:29
msgid "Failed to write to disk"
msgstr "Gagal menulis ke disk"
+#: ajax/upload.php:45
+msgid "Not enough space available"
+msgstr ""
+
+#: ajax/upload.php:69
+msgid "Invalid directory."
+msgstr ""
+
#: appinfo/app.php:10
msgid "Files"
msgstr "Berkas"
-#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84
+#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85
msgid "Unshare"
msgstr "batalkan berbagi"
-#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90
+#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91
msgid "Delete"
msgstr "Hapus"
@@ -67,122 +79,130 @@ msgstr "Hapus"
msgid "Rename"
msgstr ""
-#: js/filelist.js:201 js/filelist.js:203
+#: js/filelist.js:199 js/filelist.js:201
msgid "{new_name} already exists"
msgstr ""
-#: js/filelist.js:201 js/filelist.js:203
+#: js/filelist.js:199 js/filelist.js:201
msgid "replace"
msgstr "mengganti"
-#: js/filelist.js:201
+#: js/filelist.js:199
msgid "suggest name"
msgstr ""
-#: js/filelist.js:201 js/filelist.js:203
+#: js/filelist.js:199 js/filelist.js:201
msgid "cancel"
msgstr "batalkan"
-#: js/filelist.js:250
+#: js/filelist.js:248
msgid "replaced {new_name}"
msgstr ""
-#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286
+#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284
msgid "undo"
msgstr "batal dikerjakan"
-#: js/filelist.js:252
+#: js/filelist.js:250
msgid "replaced {new_name} with {old_name}"
msgstr ""
-#: js/filelist.js:284
+#: js/filelist.js:282
msgid "unshared {files}"
msgstr ""
-#: js/filelist.js:286
+#: js/filelist.js:284
msgid "deleted {files}"
msgstr ""
-#: js/files.js:33
+#: js/files.js:31
+msgid "'.' is an invalid file name."
+msgstr ""
+
+#: js/files.js:36
+msgid "File name cannot be empty."
+msgstr ""
+
+#: js/files.js:45
msgid ""
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not "
"allowed."
msgstr ""
-#: js/files.js:183
+#: js/files.js:186
msgid "generating ZIP-file, it may take some time."
msgstr "membuat berkas ZIP, ini mungkin memakan waktu."
-#: js/files.js:218
+#: js/files.js:224
msgid "Unable to upload your file as it is a directory or has 0 bytes"
msgstr "Gagal mengunggah berkas anda karena berupa direktori atau mempunyai ukuran 0 byte"
-#: js/files.js:218
+#: js/files.js:224
msgid "Upload Error"
msgstr "Terjadi Galat Pengunggahan"
-#: js/files.js:235
+#: js/files.js:241
msgid "Close"
msgstr "tutup"
-#: js/files.js:254 js/files.js:368 js/files.js:398
+#: js/files.js:260 js/files.js:374 js/files.js:404
msgid "Pending"
msgstr "Menunggu"
-#: js/files.js:274
+#: js/files.js:280
msgid "1 file uploading"
msgstr ""
-#: js/files.js:277 js/files.js:331 js/files.js:346
+#: js/files.js:283 js/files.js:337 js/files.js:352
msgid "{count} files uploading"
msgstr ""
-#: js/files.js:349 js/files.js:382
+#: js/files.js:355 js/files.js:388
msgid "Upload cancelled."
msgstr "Pengunggahan dibatalkan."
-#: js/files.js:451
+#: js/files.js:457
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr ""
-#: js/files.js:523
+#: js/files.js:527
msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud"
msgstr ""
-#: js/files.js:704
+#: js/files.js:711
msgid "{count} files scanned"
msgstr ""
-#: js/files.js:712
+#: js/files.js:719
msgid "error while scanning"
msgstr ""
-#: js/files.js:785 templates/index.php:65
+#: js/files.js:792 templates/index.php:66
msgid "Name"
msgstr "Nama"
-#: js/files.js:786 templates/index.php:76
+#: js/files.js:793 templates/index.php:77
msgid "Size"
msgstr "Ukuran"
-#: js/files.js:787 templates/index.php:78
+#: js/files.js:794 templates/index.php:79
msgid "Modified"
msgstr "Dimodifikasi"
-#: js/files.js:814
+#: js/files.js:813
msgid "1 folder"
msgstr ""
-#: js/files.js:816
+#: js/files.js:815
msgid "{count} folders"
msgstr ""
-#: js/files.js:824
+#: js/files.js:823
msgid "1 file"
msgstr ""
-#: js/files.js:826
+#: js/files.js:825
msgid "{count} files"
msgstr ""
@@ -194,27 +214,27 @@ msgstr "Penanganan berkas"
msgid "Maximum upload size"
msgstr "Ukuran unggah maksimum"
-#: templates/admin.php:9
+#: templates/admin.php:10
msgid "max. possible: "
msgstr "Kemungkinan maks:"
-#: templates/admin.php:12
+#: templates/admin.php:15
msgid "Needed for multi-file and folder downloads."
msgstr "Dibutuhkan untuk multi-berkas dan unduhan folder"
-#: templates/admin.php:14
+#: templates/admin.php:17
msgid "Enable ZIP-download"
msgstr "Aktifkan unduhan ZIP"
-#: templates/admin.php:17
+#: templates/admin.php:20
msgid "0 is unlimited"
msgstr "0 adalah tidak terbatas"
-#: templates/admin.php:19
+#: templates/admin.php:22
msgid "Maximum input size for ZIP files"
msgstr "Ukuran masukan maksimal untuk berkas ZIP"
-#: templates/admin.php:23
+#: templates/admin.php:26
msgid "Save"
msgstr "simpan"
@@ -242,28 +262,28 @@ msgstr "Unggah"
msgid "Cancel upload"
msgstr "Batal mengunggah"
-#: templates/index.php:57
+#: templates/index.php:58
msgid "Nothing in here. Upload something!"
msgstr "Tidak ada apa-apa di sini. Unggah sesuatu!"
-#: templates/index.php:71
+#: templates/index.php:72
msgid "Download"
msgstr "Unduh"
-#: templates/index.php:103
+#: templates/index.php:104
msgid "Upload too large"
msgstr "Unggahan terlalu besar"
-#: templates/index.php:105
+#: templates/index.php:106
msgid ""
"The files you are trying to upload exceed the maximum size for file uploads "
"on this server."
msgstr "Berkas yang anda coba unggah melebihi ukuran maksimum untuk pengunggahan berkas di server ini."
-#: templates/index.php:110
+#: templates/index.php:111
msgid "Files are being scanned, please wait."
msgstr "Berkas sedang dipindai, silahkan tunggu."
-#: templates/index.php:113
+#: templates/index.php:114
msgid "Current scanning"
msgstr "Sedang memindai"
diff --git a/l10n/id/settings.po b/l10n/id/settings.po
index 4e52623ad9..1abd347dc8 100644
--- a/l10n/id/settings.po
+++ b/l10n/id/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-12-21 00:10+0100\n"
-"PO-Revision-Date: 2012-12-19 23:20+0000\n"
+"POT-Creation-Date: 2012-12-30 00:04+0100\n"
+"PO-Revision-Date: 2012-12-29 23:05+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n"
"MIME-Version: 1.0\n"
@@ -164,7 +164,7 @@ msgstr ""
msgid "Download iOS Client"
msgstr ""
-#: templates/personal.php:21 templates/users.php:23 templates/users.php:77
+#: templates/personal.php:21 templates/users.php:23 templates/users.php:82
msgid "Password"
msgstr "Password"
@@ -234,11 +234,11 @@ msgid ""
"License\">AGPL."
msgstr ""
-#: templates/users.php:21 templates/users.php:76
+#: templates/users.php:21 templates/users.php:81
msgid "Name"
msgstr "Nama"
-#: templates/users.php:26 templates/users.php:78 templates/users.php:98
+#: templates/users.php:26 templates/users.php:83 templates/users.php:103
msgid "Groups"
msgstr "Group"
@@ -247,21 +247,29 @@ msgid "Create"
msgstr "Buat"
#: templates/users.php:35
-msgid "Default Quota"
-msgstr "Kuota default"
+msgid "Default Storage"
+msgstr ""
-#: templates/users.php:55 templates/users.php:138
+#: templates/users.php:42 templates/users.php:138
+msgid "Unlimited"
+msgstr ""
+
+#: templates/users.php:60 templates/users.php:153
msgid "Other"
msgstr "Lain-lain"
-#: templates/users.php:80 templates/users.php:112
+#: templates/users.php:85 templates/users.php:117
msgid "Group Admin"
msgstr "Admin Grup"
-#: templates/users.php:82
-msgid "Quota"
-msgstr "Quota"
+#: templates/users.php:87
+msgid "Storage"
+msgstr ""
-#: templates/users.php:146
+#: templates/users.php:133
+msgid "Default"
+msgstr ""
+
+#: templates/users.php:161
msgid "Delete"
msgstr "Hapus"
diff --git a/l10n/is/core.po b/l10n/is/core.po
index 4432000b3c..ae7fa02d39 100644
--- a/l10n/is/core.po
+++ b/l10n/is/core.po
@@ -4,12 +4,13 @@
#
# Translators:
# , 2012.
+# , 2012.
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-12-13 00:17+0100\n"
-"PO-Revision-Date: 2012-12-12 23:17+0000\n"
+"POT-Creation-Date: 2013-01-07 00:04+0100\n"
+"PO-Revision-Date: 2013-01-06 23:05+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n"
"MIME-Version: 1.0\n"
@@ -21,26 +22,26 @@ msgstr ""
#: ajax/share.php:84
#, php-format
msgid "User %s shared a file with you"
-msgstr ""
+msgstr "Notandinn %s deildi skrá með þér"
#: ajax/share.php:86
#, php-format
msgid "User %s shared a folder with you"
-msgstr ""
+msgstr "Notandinn %s deildi möppu með þér"
#: ajax/share.php:88
#, php-format
msgid ""
"User %s shared the file \"%s\" with you. It is available for download here: "
"%s"
-msgstr ""
+msgstr "Notandinn %s deildi skránni \"%s\" með þér. Hægt er að hlaða henni niður hér: %s"
#: ajax/share.php:90
#, php-format
msgid ""
"User %s shared the folder \"%s\" with you. It is available for download "
"here: %s"
-msgstr ""
+msgstr "Notandinn %s deildi möppunni \"%s\" með þér. Hægt er að hlaða henni niður hér: %s"
#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25
msgid "Category type not provided."
@@ -48,41 +49,41 @@ msgstr "Flokkur ekki gefin"
#: ajax/vcategories/add.php:30
msgid "No category to add?"
-msgstr ""
+msgstr "Enginn flokkur til að bæta við ?"
#: ajax/vcategories/add.php:37
msgid "This category already exists: "
-msgstr ""
+msgstr "Þessi flokkur er þegar til:"
#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27
#: ajax/vcategories/favorites.php:24
#: ajax/vcategories/removeFromFavorites.php:26
msgid "Object type not provided."
-msgstr ""
+msgstr "Tegund ekki í boði."
#: ajax/vcategories/addToFavorites.php:30
#: ajax/vcategories/removeFromFavorites.php:30
#, php-format
msgid "%s ID not provided."
-msgstr ""
+msgstr "%s ID ekki í boði."
#: ajax/vcategories/addToFavorites.php:35
#, php-format
msgid "Error adding %s to favorites."
-msgstr ""
+msgstr "Villa við að bæta %s við eftirlæti."
#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136
msgid "No categories selected for deletion."
-msgstr ""
+msgstr "Enginn flokkur valinn til eyðingar."
#: ajax/vcategories/removeFromFavorites.php:35
#, php-format
msgid "Error removing %s from favorites."
-msgstr ""
+msgstr "Villa við að fjarlægja %s úr eftirlæti."
#: js/js.js:259 templates/layout.user.php:60 templates/layout.user.php:61
msgid "Settings"
-msgstr ""
+msgstr "Stillingar"
#: js/js.js:704
msgid "seconds ago"
@@ -98,11 +99,11 @@ msgstr "{minutes} min síðan"
#: js/js.js:707
msgid "1 hour ago"
-msgstr ""
+msgstr "Fyrir 1 klst."
#: js/js.js:708
msgid "{hours} hours ago"
-msgstr ""
+msgstr "fyrir {hours} klst."
#: js/js.js:709
msgid "today"
@@ -122,7 +123,7 @@ msgstr "síðasta mánuði"
#: js/js.js:713
msgid "{months} months ago"
-msgstr ""
+msgstr "fyrir {months} mánuðum"
#: js/js.js:714
msgid "months ago"
@@ -138,204 +139,204 @@ msgstr "árum síðan"
#: js/oc-dialogs.js:126
msgid "Choose"
-msgstr ""
+msgstr "Veldu"
#: js/oc-dialogs.js:146 js/oc-dialogs.js:166
msgid "Cancel"
-msgstr ""
+msgstr "Hætta við"
#: js/oc-dialogs.js:162
msgid "No"
-msgstr ""
+msgstr "Nei"
#: js/oc-dialogs.js:163
msgid "Yes"
-msgstr ""
+msgstr "Já"
#: js/oc-dialogs.js:180
msgid "Ok"
-msgstr ""
+msgstr "Í lagi"
#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102
#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162
msgid "The object type is not specified."
-msgstr ""
+msgstr "Tegund ekki tilgreind"
#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136
-#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541
-#: js/share.js:553
+#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554
+#: js/share.js:566
msgid "Error"
-msgstr ""
+msgstr "Villa "
#: js/oc-vcategories.js:179
msgid "The app name is not specified."
-msgstr ""
+msgstr "Nafn forrits ekki tilgreint"
#: js/oc-vcategories.js:194
msgid "The required file {file} is not installed!"
-msgstr ""
+msgstr "Umbeðina skráin {file} ekki tiltæk!"
-#: js/share.js:124 js/share.js:581
+#: js/share.js:124 js/share.js:594
msgid "Error while sharing"
-msgstr ""
+msgstr "Villa við deilingu"
#: js/share.js:135
msgid "Error while unsharing"
-msgstr ""
+msgstr "Villa við að hætta deilingu"
#: js/share.js:142
msgid "Error while changing permissions"
-msgstr ""
+msgstr "Villa við að breyta aðgangsheimildum"
#: js/share.js:151
msgid "Shared with you and the group {group} by {owner}"
-msgstr ""
+msgstr "Deilt með þér og hópnum {group} af {owner}"
#: js/share.js:153
msgid "Shared with you by {owner}"
-msgstr ""
+msgstr "Deilt með þér af {owner}"
#: js/share.js:158
msgid "Share with"
-msgstr ""
+msgstr "Deila með"
#: js/share.js:163
msgid "Share with link"
-msgstr ""
+msgstr "Deila með veftengli"
-#: js/share.js:164
+#: js/share.js:166
msgid "Password protect"
-msgstr ""
+msgstr "Verja með lykilorði"
-#: js/share.js:168 templates/installation.php:42 templates/login.php:24
+#: js/share.js:168 templates/installation.php:44 templates/login.php:35
#: templates/verify.php:13
msgid "Password"
msgstr "Lykilorð"
#: js/share.js:172
msgid "Email link to person"
-msgstr ""
+msgstr "Senda vefhlekk í tölvupóstu til notenda"
#: js/share.js:173
msgid "Send"
-msgstr ""
+msgstr "Senda"
#: js/share.js:177
msgid "Set expiration date"
-msgstr ""
+msgstr "Setja gildistíma"
#: js/share.js:178
msgid "Expiration date"
-msgstr ""
+msgstr "Gildir til"
#: js/share.js:210
msgid "Share via email:"
-msgstr ""
+msgstr "Deila með tölvupósti:"
#: js/share.js:212
msgid "No people found"
-msgstr ""
+msgstr "Engir notendur fundust"
#: js/share.js:239
msgid "Resharing is not allowed"
-msgstr ""
+msgstr "Endurdeiling er ekki leyfð"
#: js/share.js:275
msgid "Shared in {item} with {user}"
-msgstr ""
+msgstr "Deilt með {item} ásamt {user}"
#: js/share.js:296
msgid "Unshare"
-msgstr ""
+msgstr "Hætta deilingu"
#: js/share.js:308
msgid "can edit"
-msgstr ""
+msgstr "getur breytt"
#: js/share.js:310
msgid "access control"
-msgstr ""
+msgstr "aðgangsstýring"
#: js/share.js:313
msgid "create"
-msgstr ""
+msgstr "mynda"
#: js/share.js:316
msgid "update"
-msgstr ""
+msgstr "uppfæra"
#: js/share.js:319
msgid "delete"
-msgstr ""
+msgstr "eyða"
#: js/share.js:322
msgid "share"
-msgstr ""
+msgstr "deila"
-#: js/share.js:353 js/share.js:528 js/share.js:530
+#: js/share.js:356 js/share.js:541
msgid "Password protected"
-msgstr ""
+msgstr "Verja með lykilorði"
-#: js/share.js:541
+#: js/share.js:554
msgid "Error unsetting expiration date"
-msgstr ""
+msgstr "Villa við að aftengja gildistíma"
-#: js/share.js:553
+#: js/share.js:566
msgid "Error setting expiration date"
-msgstr ""
+msgstr "Villa við að setja gildistíma"
-#: js/share.js:568
+#: js/share.js:581
msgid "Sending ..."
-msgstr ""
+msgstr "Sendi ..."
-#: js/share.js:579
+#: js/share.js:592
msgid "Email sent"
-msgstr ""
+msgstr "Tölvupóstur sendur"
#: lostpassword/controller.php:47
msgid "ownCloud password reset"
-msgstr ""
+msgstr "endursetja ownCloud lykilorð "
#: lostpassword/templates/email.php:2
msgid "Use the following link to reset your password: {link}"
-msgstr ""
+msgstr "Notað eftirfarandi veftengil til að endursetja lykilorðið þitt: {link}"
#: lostpassword/templates/lostpassword.php:3
msgid "You will receive a link to reset your password via Email."
-msgstr ""
+msgstr "Þú munt fá veftengil í tölvupósti til að endursetja lykilorðið."
#: lostpassword/templates/lostpassword.php:5
msgid "Reset email send."
-msgstr ""
+msgstr "Beiðni um endursetningu send."
#: lostpassword/templates/lostpassword.php:8
msgid "Request failed!"
-msgstr ""
+msgstr "Beiðni mistókst!"
-#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38
-#: templates/login.php:20
+#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39
+#: templates/login.php:28
msgid "Username"
msgstr "Notendanafn"
#: lostpassword/templates/lostpassword.php:14
msgid "Request reset"
-msgstr ""
+msgstr "Endursetja lykilorð"
#: lostpassword/templates/resetpassword.php:4
msgid "Your password was reset"
-msgstr ""
+msgstr "Lykilorðið þitt hefur verið endursett."
#: lostpassword/templates/resetpassword.php:5
msgid "To login page"
-msgstr ""
+msgstr "Fara á innskráningarsíðu"
#: lostpassword/templates/resetpassword.php:8
msgid "New password"
-msgstr ""
+msgstr "Nýtt lykilorð"
#: lostpassword/templates/resetpassword.php:11
msgid "Reset password"
-msgstr ""
+msgstr "Endursetja lykilorð"
#: strings.php:5
msgid "Personal"
@@ -343,11 +344,11 @@ msgstr "Persónustillingar"
#: strings.php:6
msgid "Users"
-msgstr ""
+msgstr "Notendur"
#: strings.php:7
msgid "Apps"
-msgstr ""
+msgstr "Forrit"
#: strings.php:8
msgid "Admin"
@@ -359,7 +360,7 @@ msgstr "Help"
#: templates/403.php:12
msgid "Access forbidden"
-msgstr ""
+msgstr "Aðgangur bannaður"
#: templates/404.php:12
msgid "Cloud not found"
@@ -375,19 +376,19 @@ msgstr "Bæta"
#: templates/installation.php:23 templates/installation.php:31
msgid "Security Warning"
-msgstr ""
+msgstr "Öryggis aðvörun"
#: templates/installation.php:24
msgid ""
"No secure random number generator is available, please enable the PHP "
"OpenSSL extension."
-msgstr ""
+msgstr "Enginn traustur slembitölugjafi í boði, vinsamlegast virkjaðu PHP OpenSSL viðbótina."
#: templates/installation.php:26
msgid ""
"Without a secure random number generator an attacker may be able to predict "
"password reset tokens and take over your account."
-msgstr ""
+msgstr "Án öruggs slembitölugjafa er mögulegt að sjá fyrir öryggis auðkenni til að endursetja lykilorð og komast inn á aðganginn þinn."
#: templates/installation.php:32
msgid ""
@@ -396,80 +397,80 @@ 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 "Gagnamappan þín er að öllum líkindum aðgengileg frá internetinu. Skráin .htaccess sem fylgir með ownCloud er ekki að virka. Við mælum eindregið með því að þú stillir vefþjóninn þannig að gagnamappan verði ekki aðgengileg frá internetinu eða færir hana út fyrir vefrótina."
#: templates/installation.php:36
msgid "Create an admin account "
msgstr "Útbúa vefstjóra aðgang "
-#: templates/installation.php:48
-msgid "Advanced"
-msgstr ""
-
#: templates/installation.php:50
+msgid "Advanced"
+msgstr "Ítarlegt"
+
+#: templates/installation.php:52
msgid "Data folder"
-msgstr ""
+msgstr "Gagnamappa"
-#: templates/installation.php:57
+#: templates/installation.php:59
msgid "Configure the database"
-msgstr ""
+msgstr "Stilla gagnagrunn"
-#: templates/installation.php:62 templates/installation.php:73
-#: templates/installation.php:83 templates/installation.php:93
+#: templates/installation.php:64 templates/installation.php:75
+#: templates/installation.php:85 templates/installation.php:95
msgid "will be used"
-msgstr ""
+msgstr "verður notað"
-#: templates/installation.php:105
+#: templates/installation.php:107
msgid "Database user"
-msgstr ""
+msgstr "Notandi gagnagrunns"
-#: templates/installation.php:109
+#: templates/installation.php:111
msgid "Database password"
-msgstr ""
+msgstr "Lykilorð gagnagrunns"
-#: templates/installation.php:113
+#: templates/installation.php:115
msgid "Database name"
-msgstr ""
+msgstr "Nafn gagnagrunns"
-#: templates/installation.php:121
+#: templates/installation.php:123
msgid "Database tablespace"
-msgstr ""
+msgstr "Töflusvæði gagnagrunns"
-#: templates/installation.php:127
+#: templates/installation.php:129
msgid "Database host"
-msgstr ""
+msgstr "Netþjónn gagnagrunns"
-#: templates/installation.php:132
+#: templates/installation.php:134
msgid "Finish setup"
-msgstr ""
+msgstr "Ljúka uppsetningu"
#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Sunday"
-msgstr ""
+msgstr "Sunnudagur"
#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Monday"
-msgstr ""
+msgstr "Mánudagur"
#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Tuesday"
-msgstr ""
+msgstr "Þriðjudagur"
#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Wednesday"
-msgstr ""
+msgstr "Miðvikudagur"
#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Thursday"
-msgstr ""
+msgstr "Fimmtudagur"
#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Friday"
-msgstr ""
+msgstr "Föstudagur"
#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Saturday"
-msgstr ""
+msgstr "Laugardagur"
#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "January"
@@ -513,45 +514,45 @@ msgstr "Október"
#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "November"
-msgstr ""
+msgstr "Nóvember"
#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "December"
-msgstr ""
+msgstr "Desember"
#: templates/layout.guest.php:42
msgid "web services under your control"
-msgstr ""
+msgstr "vefþjónusta undir þinni stjórn"
#: templates/layout.user.php:45
msgid "Log out"
msgstr "Útskrá"
-#: templates/login.php:8
+#: templates/login.php:10
msgid "Automatic logon rejected!"
-msgstr ""
+msgstr "Sjálfvirkri innskráningu hafnað!"
-#: templates/login.php:9
+#: templates/login.php:11
msgid ""
"If you did not change your password recently, your account may be "
"compromised!"
-msgstr ""
+msgstr "Ef þú breyttir ekki lykilorðinu þínu fyrir skömmu, er mögulegt að einhver annar hafi komist inn á aðganginn þinn."
-#: templates/login.php:10
+#: templates/login.php:13
msgid "Please change your password to secure your account again."
-msgstr ""
+msgstr "Vinsamlegast breyttu lykilorðinu þínu til að tryggja öryggi þitt."
-#: templates/login.php:15
+#: templates/login.php:19
msgid "Lost your password?"
-msgstr ""
+msgstr "Týndir þú lykilorðinu?"
-#: templates/login.php:27
+#: templates/login.php:39
msgid "remember"
-msgstr ""
+msgstr "muna eftir mér"
-#: templates/login.php:28
+#: templates/login.php:41
msgid "Log in"
-msgstr ""
+msgstr "Skrá inn "
#: templates/logout.php:1
msgid "You are logged out."
@@ -565,16 +566,21 @@ msgstr "fyrra"
msgid "next"
msgstr "næsta"
+#: templates/update.php:3
+#, php-format
+msgid "Updating ownCloud to version %s, this may take a while."
+msgstr ""
+
#: templates/verify.php:5
msgid "Security Warning!"
-msgstr ""
+msgstr "Öryggis aðvörun!"
#: templates/verify.php:6
msgid ""
"Please verify your password. For security reasons you may be "
"occasionally asked to enter your password again."
-msgstr ""
+msgstr "Vinsamlegast staðfestu lykilorðið þitt. Í öryggisskyni munum við biðja þig um að skipta um lykilorð af og til."
#: templates/verify.php:16
msgid "Verify"
-msgstr ""
+msgstr "Staðfesta"
diff --git a/l10n/is/files.po b/l10n/is/files.po
index 094b80b04e..32e2dbdcf8 100644
--- a/l10n/is/files.po
+++ b/l10n/is/files.po
@@ -3,13 +3,14 @@
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
+# , 2012.
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-12-06 00:11+0100\n"
-"PO-Revision-Date: 2011-08-13 02:19+0000\n"
-"Last-Translator: FULL NAME \n"
+"POT-Creation-Date: 2013-01-07 00:04+0100\n"
+"PO-Revision-Date: 2013-01-06 23:05+0000\n"
+"Last-Translator: I Robot \n"
"Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -17,250 +18,270 @@ msgstr ""
"Language: is\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: ajax/upload.php:20
-msgid "There is no error, the file uploaded with success"
+#: ajax/upload.php:14
+msgid "No file was uploaded. Unknown error"
msgstr ""
#: ajax/upload.php:21
+msgid "There is no error, the file uploaded with success"
+msgstr "Engin villa, innsending heppnaðist"
+
+#: ajax/upload.php:22
msgid ""
"The uploaded file exceeds the upload_max_filesize directive in php.ini: "
-msgstr ""
+msgstr "Innsend skrá er stærri en upload_max stillingin í php.ini:"
-#: ajax/upload.php:23
+#: ajax/upload.php:24
msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form"
-msgstr ""
-
-#: ajax/upload.php:25
-msgid "The uploaded file was only partially uploaded"
-msgstr ""
+msgstr "Innsenda skráin er stærri en MAX_FILE_SIZE sem skilgreint er í HTML sniðinu."
#: ajax/upload.php:26
-msgid "No file was uploaded"
-msgstr ""
+msgid "The uploaded file was only partially uploaded"
+msgstr "Einungis hluti af innsendri skrá skilaði sér"
#: ajax/upload.php:27
-msgid "Missing a temporary folder"
-msgstr ""
+msgid "No file was uploaded"
+msgstr "Engin skrá skilaði sér"
#: ajax/upload.php:28
+msgid "Missing a temporary folder"
+msgstr "Vantar bráðabirgðamöppu"
+
+#: ajax/upload.php:29
msgid "Failed to write to disk"
+msgstr "Tókst ekki að skrifa á disk"
+
+#: ajax/upload.php:45
+msgid "Not enough space available"
+msgstr ""
+
+#: ajax/upload.php:69
+msgid "Invalid directory."
msgstr ""
#: appinfo/app.php:10
msgid "Files"
-msgstr ""
+msgstr "Skrár"
-#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84
+#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85
msgid "Unshare"
-msgstr ""
+msgstr "Hætta deilingu"
-#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90
+#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91
msgid "Delete"
-msgstr ""
+msgstr "Eyða"
#: js/fileactions.js:181
msgid "Rename"
-msgstr ""
+msgstr "Endurskýra"
-#: js/filelist.js:201 js/filelist.js:203
+#: js/filelist.js:199 js/filelist.js:201
msgid "{new_name} already exists"
-msgstr ""
+msgstr "{new_name} er þegar til"
-#: js/filelist.js:201 js/filelist.js:203
+#: js/filelist.js:199 js/filelist.js:201
msgid "replace"
-msgstr ""
+msgstr "yfirskrifa"
-#: js/filelist.js:201
+#: js/filelist.js:199
msgid "suggest name"
-msgstr ""
+msgstr "stinga upp á nafni"
-#: js/filelist.js:201 js/filelist.js:203
+#: js/filelist.js:199 js/filelist.js:201
msgid "cancel"
-msgstr ""
+msgstr "hætta við"
+
+#: js/filelist.js:248
+msgid "replaced {new_name}"
+msgstr "endurskýrði {new_name}"
+
+#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284
+msgid "undo"
+msgstr "afturkalla"
#: js/filelist.js:250
-msgid "replaced {new_name}"
-msgstr ""
-
-#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286
-msgid "undo"
-msgstr ""
-
-#: js/filelist.js:252
msgid "replaced {new_name} with {old_name}"
-msgstr ""
+msgstr "yfirskrifaði {new_name} með {old_name}"
+
+#: js/filelist.js:282
+msgid "unshared {files}"
+msgstr "Hætti við deilingu á {files}"
#: js/filelist.js:284
-msgid "unshared {files}"
-msgstr ""
-
-#: js/filelist.js:286
msgid "deleted {files}"
+msgstr "eyddi {files}"
+
+#: js/files.js:31
+msgid "'.' is an invalid file name."
msgstr ""
-#: js/files.js:33
+#: js/files.js:36
+msgid "File name cannot be empty."
+msgstr ""
+
+#: js/files.js:45
msgid ""
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not "
"allowed."
-msgstr ""
+msgstr "Ógilt nafn, táknin '\\', '/', '<', '>', ':', '\"', '|', '?' og '*' eru ekki leyfð."
-#: js/files.js:183
+#: js/files.js:186
msgid "generating ZIP-file, it may take some time."
-msgstr ""
+msgstr "bý til ZIP skrá, það gæti tekið smá stund."
-#: js/files.js:218
+#: js/files.js:224
msgid "Unable to upload your file as it is a directory or has 0 bytes"
-msgstr ""
+msgstr "Innsending á skrá mistókst, hugsanlega sendir þú möppu eða skráin er 0 bæti."
-#: js/files.js:218
+#: js/files.js:224
msgid "Upload Error"
-msgstr ""
+msgstr "Villa við innsendingu"
-#: js/files.js:235
+#: js/files.js:241
msgid "Close"
-msgstr ""
+msgstr "Loka"
-#: js/files.js:254 js/files.js:368 js/files.js:398
+#: js/files.js:260 js/files.js:374 js/files.js:404
msgid "Pending"
-msgstr ""
+msgstr "Bíður"
-#: js/files.js:274
+#: js/files.js:280
msgid "1 file uploading"
-msgstr ""
+msgstr "1 skrá innsend"
-#: js/files.js:277 js/files.js:331 js/files.js:346
+#: js/files.js:283 js/files.js:337 js/files.js:352
msgid "{count} files uploading"
-msgstr ""
+msgstr "{count} skrár innsendar"
-#: js/files.js:349 js/files.js:382
+#: js/files.js:355 js/files.js:388
msgid "Upload cancelled."
-msgstr ""
+msgstr "Hætt við innsendingu."
-#: js/files.js:451
+#: js/files.js:457
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
-msgstr ""
+msgstr "Innsending í gangi. Ef þú ferð af þessari síðu mun innsending misheppnast."
-#: js/files.js:523
+#: js/files.js:527
msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud"
-msgstr ""
+msgstr "Ógilt nafn á möppu. Nafnið \"Shared\" er frátekið fyrir ownCloud."
-#: js/files.js:704
+#: js/files.js:711
msgid "{count} files scanned"
-msgstr ""
+msgstr "{count} skrár skimaðar"
-#: js/files.js:712
+#: js/files.js:719
msgid "error while scanning"
-msgstr ""
+msgstr "villa við skimun"
-#: js/files.js:785 templates/index.php:65
+#: js/files.js:792 templates/index.php:66
msgid "Name"
-msgstr ""
+msgstr "Nafn"
-#: js/files.js:786 templates/index.php:76
+#: js/files.js:793 templates/index.php:77
msgid "Size"
-msgstr ""
+msgstr "Stærð"
-#: js/files.js:787 templates/index.php:78
+#: js/files.js:794 templates/index.php:79
msgid "Modified"
-msgstr ""
+msgstr "Breytt"
-#: js/files.js:814
+#: js/files.js:813
msgid "1 folder"
-msgstr ""
+msgstr "1 mappa"
-#: js/files.js:816
+#: js/files.js:815
msgid "{count} folders"
-msgstr ""
+msgstr "{count} möppur"
-#: js/files.js:824
+#: js/files.js:823
msgid "1 file"
-msgstr ""
+msgstr "1 skrá"
-#: js/files.js:826
+#: js/files.js:825
msgid "{count} files"
-msgstr ""
+msgstr "{count} skrár"
#: templates/admin.php:5
msgid "File handling"
-msgstr ""
+msgstr "Meðhöndlun skrár"
#: templates/admin.php:7
msgid "Maximum upload size"
-msgstr ""
+msgstr "Hámarks stærð innsendingar"
-#: templates/admin.php:9
+#: templates/admin.php:10
msgid "max. possible: "
-msgstr ""
+msgstr "hámark mögulegt: "
-#: templates/admin.php:12
+#: templates/admin.php:15
msgid "Needed for multi-file and folder downloads."
-msgstr ""
-
-#: templates/admin.php:14
-msgid "Enable ZIP-download"
-msgstr ""
+msgstr "Nauðsynlegt til að sækja margar skrár og möppur í einu."
#: templates/admin.php:17
+msgid "Enable ZIP-download"
+msgstr "Virkja ZIP niðurhal."
+
+#: templates/admin.php:20
msgid "0 is unlimited"
-msgstr ""
+msgstr "0 er ótakmarkað"
-#: templates/admin.php:19
+#: templates/admin.php:22
msgid "Maximum input size for ZIP files"
-msgstr ""
+msgstr "Hámarks inntaksstærð fyrir ZIP skrár"
-#: templates/admin.php:23
+#: templates/admin.php:26
msgid "Save"
-msgstr ""
+msgstr "Vista"
#: templates/index.php:7
msgid "New"
-msgstr ""
+msgstr "Nýtt"
#: templates/index.php:10
msgid "Text file"
-msgstr ""
+msgstr "Texta skrá"
#: templates/index.php:12
msgid "Folder"
-msgstr ""
+msgstr "Mappa"
#: templates/index.php:14
msgid "From link"
-msgstr ""
+msgstr "Af tengli"
#: templates/index.php:35
msgid "Upload"
-msgstr ""
+msgstr "Senda inn"
#: templates/index.php:43
msgid "Cancel upload"
-msgstr ""
+msgstr "Hætta við innsendingu"
-#: templates/index.php:57
+#: templates/index.php:58
msgid "Nothing in here. Upload something!"
-msgstr ""
+msgstr "Ekkert hér. Sendu eitthvað inn!"
-#: templates/index.php:71
+#: templates/index.php:72
msgid "Download"
-msgstr ""
+msgstr "Niðurhal"
-#: templates/index.php:103
+#: templates/index.php:104
msgid "Upload too large"
-msgstr ""
+msgstr "Innsend skrá of stór"
-#: templates/index.php:105
+#: templates/index.php:106
msgid ""
"The files you are trying to upload exceed the maximum size for file uploads "
"on this server."
-msgstr ""
+msgstr "Skrárnar sem þú ert að senda inn eru stærri en hámarks innsendingarstærð á þessum netþjóni."
-#: templates/index.php:110
+#: templates/index.php:111
msgid "Files are being scanned, please wait."
-msgstr ""
+msgstr "Verið er að skima skrár, vinsamlegast hinkraðu."
-#: templates/index.php:113
+#: templates/index.php:114
msgid "Current scanning"
-msgstr ""
+msgstr "Er að skima"
diff --git a/l10n/is/files_encryption.po b/l10n/is/files_encryption.po
index aba8a60b74..3dfd91e61a 100644
--- a/l10n/is/files_encryption.po
+++ b/l10n/is/files_encryption.po
@@ -3,13 +3,14 @@
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
+# , 2012.
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-12-06 00:11+0100\n"
-"PO-Revision-Date: 2012-08-12 22:33+0000\n"
-"Last-Translator: FULL NAME \n"
+"POT-Creation-Date: 2012-12-31 00:04+0100\n"
+"PO-Revision-Date: 2012-12-30 19:56+0000\n"
+"Last-Translator: sveinn \n"
"Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -19,16 +20,16 @@ msgstr ""
#: templates/settings.php:3
msgid "Encryption"
-msgstr ""
+msgstr "Dulkóðun"
-#: templates/settings.php:4
-msgid "Exclude the following file types from encryption"
-msgstr ""
+#: templates/settings.php:6
+msgid "Enable Encryption"
+msgstr "Virkja dulkóðun"
-#: templates/settings.php:5
+#: templates/settings.php:7
msgid "None"
-msgstr ""
+msgstr "Ekkert"
#: templates/settings.php:12
-msgid "Enable Encryption"
-msgstr ""
+msgid "Exclude the following file types from encryption"
+msgstr "Undanskilja eftirfarandi skráartegundir frá dulkóðun"
diff --git a/l10n/is/files_external.po b/l10n/is/files_external.po
index a62f4ed1e0..1e8fbe7551 100644
--- a/l10n/is/files_external.po
+++ b/l10n/is/files_external.po
@@ -3,13 +3,14 @@
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
+# , 2012.
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-12-13 00:17+0100\n"
-"PO-Revision-Date: 2012-12-11 23:22+0000\n"
-"Last-Translator: I Robot \n"
+"POT-Creation-Date: 2012-12-31 00:04+0100\n"
+"PO-Revision-Date: 2012-12-30 18:22+0000\n"
+"Last-Translator: sveinn \n"
"Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -19,102 +20,102 @@ msgstr ""
#: js/dropbox.js:7 js/dropbox.js:25 js/google.js:7 js/google.js:23
msgid "Access granted"
-msgstr ""
+msgstr "Aðgengi veitt"
#: js/dropbox.js:28 js/dropbox.js:74 js/dropbox.js:79 js/dropbox.js:86
msgid "Error configuring Dropbox storage"
-msgstr ""
+msgstr "Villa við að setja upp Dropbox gagnasvæði"
#: js/dropbox.js:34 js/dropbox.js:45 js/google.js:31 js/google.js:40
msgid "Grant access"
-msgstr ""
+msgstr "Veita aðgengi"
#: js/dropbox.js:73 js/google.js:72
msgid "Fill out all required fields"
-msgstr ""
+msgstr "Fylltu út alla skilyrta reiti"
#: js/dropbox.js:85
msgid "Please provide a valid Dropbox app key and secret."
-msgstr ""
+msgstr "Gefðu upp virkan Dropbox lykil og leynikóða"
#: js/google.js:26 js/google.js:73 js/google.js:78
msgid "Error configuring Google Drive storage"
-msgstr ""
+msgstr "Villa kom upp við að setja upp Google Drive gagnasvæði"
#: lib/config.php:434
msgid ""
"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares "
"is not possible. Please ask your system administrator to install it."
-msgstr ""
+msgstr "Aðvörun: \"smbclient\" er ekki uppsettur. Uppsetning á CIFS/SMB gagnasvæðum er ekki möguleg. Hafðu samband við kerfisstjóra til að fá hann uppsettan."
#: lib/config.php:435
msgid ""
"Warning: The FTP support in PHP is not enabled or installed. Mounting"
" of FTP shares is not possible. Please ask your system administrator to "
"install it."
-msgstr ""
+msgstr "Aðvörun: FTP stuðningur í PHP er ekki virkur. Uppsetning á FTP gagnasvæðum er ekki möguleg. Hafðu samband við kerfisstjóra til að fá hann uppsettan."
#: templates/settings.php:3
msgid "External Storage"
-msgstr ""
+msgstr "Ytri gagnageymsla"
#: templates/settings.php:8 templates/settings.php:22
msgid "Mount point"
-msgstr ""
+msgstr "Mount svæði"
#: templates/settings.php:9
msgid "Backend"
-msgstr ""
+msgstr "Stjórnun"
#: templates/settings.php:10
msgid "Configuration"
-msgstr ""
+msgstr "Uppsetning"
#: templates/settings.php:11
msgid "Options"
-msgstr ""
+msgstr "Stillingar"
#: templates/settings.php:12
msgid "Applicable"
-msgstr ""
+msgstr "Gilt"
#: templates/settings.php:27
msgid "Add mount point"
-msgstr ""
+msgstr "Bæta við mount svæði"
#: templates/settings.php:85
msgid "None set"
-msgstr ""
+msgstr "Ekkert sett"
#: templates/settings.php:86
msgid "All Users"
-msgstr ""
+msgstr "Allir notendur"
#: templates/settings.php:87
msgid "Groups"
-msgstr ""
+msgstr "Hópar"
#: templates/settings.php:95
msgid "Users"
-msgstr ""
+msgstr "Notendur"
#: templates/settings.php:108 templates/settings.php:109
-#: templates/settings.php:149 templates/settings.php:150
+#: templates/settings.php:144 templates/settings.php:145
msgid "Delete"
-msgstr ""
+msgstr "Eyða"
#: templates/settings.php:124
msgid "Enable User External Storage"
-msgstr ""
+msgstr "Virkja ytra gagnasvæði notenda"
#: templates/settings.php:125
msgid "Allow users to mount their own external storage"
-msgstr ""
+msgstr "Leyfa notendum að bæta við sínum eigin ytri gagnasvæðum"
-#: templates/settings.php:139
+#: templates/settings.php:136
msgid "SSL root certificates"
-msgstr ""
+msgstr "SSL rótar skilríki"
-#: templates/settings.php:158
+#: templates/settings.php:153
msgid "Import Root Certificate"
-msgstr ""
+msgstr "Flytja inn rótar skilríki"
diff --git a/l10n/is/files_sharing.po b/l10n/is/files_sharing.po
index 1d9102f084..d37c647555 100644
--- a/l10n/is/files_sharing.po
+++ b/l10n/is/files_sharing.po
@@ -3,13 +3,14 @@
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
+# , 2012.
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-12-06 00:11+0100\n"
-"PO-Revision-Date: 2012-08-12 22:35+0000\n"
-"Last-Translator: FULL NAME \n"
+"POT-Creation-Date: 2012-12-31 00:04+0100\n"
+"PO-Revision-Date: 2012-12-30 15:08+0000\n"
+"Last-Translator: sveinn \n"
"Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -19,30 +20,30 @@ msgstr ""
#: templates/authenticate.php:4
msgid "Password"
-msgstr ""
+msgstr "Lykilorð"
#: templates/authenticate.php:6
msgid "Submit"
-msgstr ""
+msgstr "Senda"
#: templates/public.php:17
#, php-format
msgid "%s shared the folder %s with you"
-msgstr ""
+msgstr "%s deildi möppunni %s með þér"
#: templates/public.php:19
#, php-format
msgid "%s shared the file %s with you"
-msgstr ""
+msgstr "%s deildi skránni %s með þér"
#: templates/public.php:22 templates/public.php:38
msgid "Download"
-msgstr ""
+msgstr "Niðurhal"
#: templates/public.php:37
msgid "No preview available for"
-msgstr ""
+msgstr "Yfirlit ekki í boði fyrir"
#: templates/public.php:43
msgid "web services under your control"
-msgstr ""
+msgstr "vefþjónusta undir þinni stjórn"
diff --git a/l10n/is/files_versions.po b/l10n/is/files_versions.po
index 82fb035847..bc2e72de57 100644
--- a/l10n/is/files_versions.po
+++ b/l10n/is/files_versions.po
@@ -3,13 +3,14 @@
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
+# , 2012.
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-12-06 00:11+0100\n"
-"PO-Revision-Date: 2012-08-12 22:37+0000\n"
-"Last-Translator: FULL NAME \n"
+"POT-Creation-Date: 2012-12-31 00:04+0100\n"
+"PO-Revision-Date: 2012-12-30 17:42+0000\n"
+"Last-Translator: sveinn \n"
"Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -17,26 +18,26 @@ msgstr ""
"Language: is\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: js/settings-personal.js:31 templates/settings-personal.php:10
+#: js/settings-personal.js:31 templates/settings-personal.php:7
msgid "Expire all versions"
-msgstr ""
+msgstr "Úrelda allar útgáfur"
#: js/versions.js:16
msgid "History"
-msgstr ""
+msgstr "Saga"
#: templates/settings-personal.php:4
msgid "Versions"
-msgstr ""
+msgstr "Útgáfur"
-#: templates/settings-personal.php:7
+#: templates/settings-personal.php:10
msgid "This will delete all existing backup versions of your files"
-msgstr ""
+msgstr "Þetta mun eyða öllum afritum af skránum þínum"
#: templates/settings.php:3
msgid "Files Versioning"
-msgstr ""
+msgstr "Útgáfur af skrám"
#: templates/settings.php:4
msgid "Enable"
-msgstr ""
+msgstr "Virkja"
diff --git a/l10n/is/lib.po b/l10n/is/lib.po
index 8531c69aa2..0e7cb46187 100644
--- a/l10n/is/lib.po
+++ b/l10n/is/lib.po
@@ -3,13 +3,14 @@
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
+# , 2012.
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-12-06 00:11+0100\n"
-"PO-Revision-Date: 2012-07-27 22:23+0000\n"
-"Last-Translator: FULL NAME \n"
+"POT-Creation-Date: 2012-12-31 00:04+0100\n"
+"PO-Revision-Date: 2012-12-30 15:15+0000\n"
+"Last-Translator: sveinn \n"
"Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -19,134 +20,134 @@ msgstr ""
#: app.php:287
msgid "Help"
-msgstr ""
+msgstr "Hjálp"
#: app.php:294
msgid "Personal"
-msgstr ""
+msgstr "Um mig"
#: app.php:299
msgid "Settings"
-msgstr ""
+msgstr "Stillingar"
#: app.php:304
msgid "Users"
-msgstr ""
+msgstr "Notendur"
#: app.php:311
msgid "Apps"
-msgstr ""
+msgstr "Forrit"
#: app.php:313
msgid "Admin"
-msgstr ""
+msgstr "Stjórnun"
-#: files.php:361
+#: files.php:365
msgid "ZIP download is turned off."
-msgstr ""
+msgstr "Slökkt á ZIP niðurhali."
-#: files.php:362
+#: files.php:366
msgid "Files need to be downloaded one by one."
-msgstr ""
+msgstr "Skrárnar verður að sækja eina og eina"
-#: files.php:362 files.php:387
+#: files.php:366 files.php:391
msgid "Back to Files"
-msgstr ""
+msgstr "Aftur í skrár"
-#: files.php:386
+#: files.php:390
msgid "Selected files too large to generate zip file."
-msgstr ""
+msgstr "Valdar skrár eru of stórar til að búa til ZIP skrá."
#: json.php:28
msgid "Application is not enabled"
-msgstr ""
+msgstr "Forrit ekki virkt"
#: json.php:39 json.php:64 json.php:77 json.php:89
msgid "Authentication error"
-msgstr ""
+msgstr "Villa við auðkenningu"
#: json.php:51
msgid "Token expired. Please reload page."
-msgstr ""
+msgstr "Auðkenning útrunnin. Vinsamlegast skráðu þig aftur inn."
#: search/provider/file.php:17 search/provider/file.php:35
msgid "Files"
-msgstr ""
+msgstr "Skrár"
#: search/provider/file.php:26 search/provider/file.php:33
msgid "Text"
-msgstr ""
+msgstr "Texti"
#: search/provider/file.php:29
msgid "Images"
-msgstr ""
+msgstr "Myndir"
#: template.php:103
msgid "seconds ago"
-msgstr ""
+msgstr "sek."
#: template.php:104
msgid "1 minute ago"
-msgstr ""
+msgstr "Fyrir 1 mínútu"
#: template.php:105
#, php-format
msgid "%d minutes ago"
-msgstr ""
+msgstr "fyrir %d mínútum"
#: template.php:106
msgid "1 hour ago"
-msgstr ""
+msgstr "Fyrir 1 klst."
#: template.php:107
#, php-format
msgid "%d hours ago"
-msgstr ""
+msgstr "fyrir %d klst."
#: template.php:108
msgid "today"
-msgstr ""
+msgstr "í dag"
#: template.php:109
msgid "yesterday"
-msgstr ""
+msgstr "í gær"
#: template.php:110
#, php-format
msgid "%d days ago"
-msgstr ""
+msgstr "fyrir %d dögum"
#: template.php:111
msgid "last month"
-msgstr ""
+msgstr "síðasta mánuði"
#: template.php:112
#, php-format
msgid "%d months ago"
-msgstr ""
+msgstr "fyrir %d mánuðum"
#: template.php:113
msgid "last year"
-msgstr ""
+msgstr "síðasta ári"
#: template.php:114
msgid "years ago"
-msgstr ""
+msgstr "einhverjum árum"
#: updater.php:75
#, php-format
msgid "%s is available. Get more information "
-msgstr ""
+msgstr "%s er í boði. Sækja meiri upplýsingar "
#: updater.php:77
msgid "up to date"
-msgstr ""
+msgstr "nýjasta útgáfa"
#: updater.php:80
msgid "updates check is disabled"
-msgstr ""
+msgstr "uppfærslupróf er ekki virkjað"
#: vcategories.php:188 vcategories.php:249
#, php-format
msgid "Could not find category \"%s\""
-msgstr ""
+msgstr "Fann ekki flokkinn \"%s\""
diff --git a/l10n/is/settings.po b/l10n/is/settings.po
index 5872b39972..5b2d7ad671 100644
--- a/l10n/is/settings.po
+++ b/l10n/is/settings.po
@@ -3,13 +3,14 @@
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
+# , 2012.
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-12-20 00:11+0100\n"
-"PO-Revision-Date: 2012-12-19 23:11+0000\n"
-"Last-Translator: I Robot \n"
+"POT-Creation-Date: 2012-12-31 00:04+0100\n"
+"PO-Revision-Date: 2012-12-30 17:53+0000\n"
+"Last-Translator: sveinn \n"
"Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -19,97 +20,97 @@ msgstr ""
#: ajax/apps/ocs.php:20
msgid "Unable to load list from App Store"
-msgstr ""
+msgstr "Ekki tókst að hlaða lista frá forrita síðu"
#: ajax/creategroup.php:10
msgid "Group already exists"
-msgstr ""
+msgstr "Hópur er þegar til"
#: ajax/creategroup.php:19
msgid "Unable to add group"
-msgstr ""
+msgstr "Ekki tókst að bæta við hóp"
#: ajax/enableapp.php:12
msgid "Could not enable app. "
-msgstr ""
+msgstr "Gat ekki virkjað forrit"
#: ajax/lostpassword.php:12
msgid "Email saved"
-msgstr ""
+msgstr "Netfang vistað"
#: ajax/lostpassword.php:14
msgid "Invalid email"
-msgstr ""
+msgstr "Ógilt netfang"
#: ajax/openid.php:13
msgid "OpenID Changed"
-msgstr ""
+msgstr "OpenID breytt"
#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20
msgid "Invalid request"
-msgstr ""
+msgstr "Ógild fyrirspurn"
#: ajax/removegroup.php:13
msgid "Unable to delete group"
-msgstr ""
+msgstr "Ekki tókst að eyða hóp"
#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18
msgid "Authentication error"
-msgstr ""
+msgstr "Villa við auðkenningu"
#: ajax/removeuser.php:24
msgid "Unable to delete user"
-msgstr ""
+msgstr "Ekki tókst að eyða notenda"
#: ajax/setlanguage.php:15
msgid "Language changed"
-msgstr ""
+msgstr "Tungumáli breytt"
#: ajax/togglegroups.php:12
msgid "Admins can't remove themself from the admin group"
-msgstr ""
+msgstr "Stjórnendur geta ekki fjarlægt sjálfa sig úr stjórnendahóp"
#: ajax/togglegroups.php:28
#, php-format
msgid "Unable to add user to group %s"
-msgstr ""
+msgstr "Ekki tókst að bæta notenda við hópinn %s"
#: ajax/togglegroups.php:34
#, php-format
msgid "Unable to remove user from group %s"
-msgstr ""
+msgstr "Ekki tókst að fjarlægja notanda úr hópnum %s"
#: js/apps.js:28 js/apps.js:67
msgid "Disable"
-msgstr ""
+msgstr "Gera óvirkt"
#: js/apps.js:28 js/apps.js:55
msgid "Enable"
-msgstr ""
+msgstr "Virkja"
#: js/personal.js:69
msgid "Saving..."
-msgstr ""
+msgstr "Er að vista ..."
#: personal.php:42 personal.php:43
msgid "__language_name__"
-msgstr ""
+msgstr "__nafn_tungumáls__"
#: templates/apps.php:10
msgid "Add your App"
-msgstr ""
+msgstr "Bæta við forriti"
#: templates/apps.php:11
msgid "More Apps"
-msgstr ""
+msgstr "Fleiri forrit"
#: templates/apps.php:27
msgid "Select an App"
-msgstr ""
+msgstr "Veldu forrit"
#: templates/apps.php:31
msgid "See application page at apps.owncloud.com"
-msgstr ""
+msgstr "Skoða forrita síðuna hjá apps.owncloud.com"
#: templates/apps.php:32
msgid " -licensed by "
@@ -117,108 +118,108 @@ msgstr ""
#: templates/help.php:3
msgid "User Documentation"
-msgstr ""
+msgstr "Notenda handbók"
#: templates/help.php:4
msgid "Administrator Documentation"
-msgstr ""
+msgstr "Stjórnenda handbók"
#: templates/help.php:6
msgid "Online Documentation"
-msgstr ""
+msgstr "Handbók á netinu"
#: templates/help.php:7
msgid "Forum"
-msgstr ""
+msgstr "Vefspjall"
#: templates/help.php:9
msgid "Bugtracker"
-msgstr ""
+msgstr "Villubókhald"
#: templates/help.php:11
msgid "Commercial Support"
-msgstr ""
+msgstr "Borgaður stuðningur"
#: templates/personal.php:8
#, php-format
msgid "You have used %s of the available %s "
-msgstr ""
+msgstr "Þú hefur notað %s af tiltæku %s "
#: templates/personal.php:12
msgid "Clients"
-msgstr ""
+msgstr "Notendahugbúnaður"
#: templates/personal.php:13
msgid "Download Desktop Clients"
-msgstr ""
+msgstr "Hlaða niður notendahugbúnaði"
#: templates/personal.php:14
msgid "Download Android Client"
-msgstr ""
+msgstr "Hlaða niður Andoid hugbúnaði"
#: templates/personal.php:15
msgid "Download iOS Client"
-msgstr ""
+msgstr "Hlaða niður iOS hugbúnaði"
-#: templates/personal.php:21 templates/users.php:23 templates/users.php:77
+#: templates/personal.php:21 templates/users.php:23 templates/users.php:82
msgid "Password"
-msgstr ""
+msgstr "Lykilorð"
#: templates/personal.php:22
msgid "Your password was changed"
-msgstr ""
+msgstr "Lykilorði þínu hefur verið breytt"
#: templates/personal.php:23
msgid "Unable to change your password"
-msgstr ""
+msgstr "Ekki tókst að breyta lykilorðinu þínu"
#: templates/personal.php:24
msgid "Current password"
-msgstr ""
+msgstr "Núverandi lykilorð"
#: templates/personal.php:25
msgid "New password"
-msgstr ""
+msgstr "Nýtt lykilorð"
#: templates/personal.php:26
msgid "show"
-msgstr ""
+msgstr "sýna"
#: templates/personal.php:27
msgid "Change password"
-msgstr ""
+msgstr "Breyta lykilorði"
#: templates/personal.php:33
msgid "Email"
-msgstr ""
+msgstr "Netfang"
#: templates/personal.php:34
msgid "Your email address"
-msgstr ""
+msgstr "Netfangið þitt"
#: templates/personal.php:35
msgid "Fill in an email address to enable password recovery"
-msgstr ""
+msgstr "Sláðu inn netfangið þitt til að virkja endurheimt á lykilorði"
#: templates/personal.php:41 templates/personal.php:42
msgid "Language"
-msgstr ""
+msgstr "Tungumál"
#: templates/personal.php:47
msgid "Help translate"
-msgstr ""
+msgstr "Hjálpa við þýðingu"
#: templates/personal.php:52
msgid "WebDAV"
-msgstr ""
+msgstr "WebDAV"
#: templates/personal.php:54
msgid "Use this address to connect to your ownCloud in your file manager"
-msgstr ""
+msgstr "Notaðu þessa vefslóð til að tengjast ownCloud svæðinu þínu"
#: templates/personal.php:63
msgid "Version"
-msgstr ""
+msgstr "Útgáfa"
#: templates/personal.php:65
msgid ""
@@ -228,36 +229,44 @@ msgid ""
"licensed under the AGPL ."
-msgstr ""
+msgstr "Þróað af ownCloud samfélaginu , forrita kóðinn er skráðu með AGPL ."
-#: templates/users.php:21 templates/users.php:76
+#: templates/users.php:21 templates/users.php:81
msgid "Name"
-msgstr ""
+msgstr "Nafn"
-#: templates/users.php:26 templates/users.php:78 templates/users.php:98
+#: templates/users.php:26 templates/users.php:83 templates/users.php:103
msgid "Groups"
-msgstr ""
+msgstr "Hópar"
#: templates/users.php:32
msgid "Create"
-msgstr ""
+msgstr "Búa til"
#: templates/users.php:35
-msgid "Default Quota"
-msgstr ""
+msgid "Default Storage"
+msgstr "Sjálfgefin gagnageymsla"
-#: templates/users.php:55 templates/users.php:138
+#: templates/users.php:42 templates/users.php:138
+msgid "Unlimited"
+msgstr "Ótakmarkað"
+
+#: templates/users.php:60 templates/users.php:153
msgid "Other"
-msgstr ""
+msgstr "Annað"
-#: templates/users.php:80 templates/users.php:112
+#: templates/users.php:85 templates/users.php:117
msgid "Group Admin"
-msgstr ""
+msgstr "Hópa stjóri"
-#: templates/users.php:82
-msgid "Quota"
-msgstr ""
+#: templates/users.php:87
+msgid "Storage"
+msgstr "gagnapláss"
-#: templates/users.php:146
+#: templates/users.php:133
+msgid "Default"
+msgstr "Sjálfgefið"
+
+#: templates/users.php:161
msgid "Delete"
-msgstr ""
+msgstr "Eyða"
diff --git a/l10n/is/user_ldap.po b/l10n/is/user_ldap.po
index 06ab3b51ea..828b0b2693 100644
--- a/l10n/is/user_ldap.po
+++ b/l10n/is/user_ldap.po
@@ -3,13 +3,14 @@
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
+# , 2012.
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-12-15 00:11+0100\n"
-"PO-Revision-Date: 2012-12-14 23:11+0000\n"
-"Last-Translator: I Robot \n"
+"POT-Creation-Date: 2012-12-31 00:04+0100\n"
+"PO-Revision-Date: 2012-12-30 19:00+0000\n"
+"Last-Translator: sveinn \n"
"Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -32,7 +33,7 @@ msgstr ""
#: templates/settings.php:15
msgid "Host"
-msgstr ""
+msgstr "Netþjónn"
#: templates/settings.php:15
msgid ""
@@ -60,7 +61,7 @@ msgstr ""
#: templates/settings.php:18
msgid "Password"
-msgstr ""
+msgstr "Lykilorð"
#: templates/settings.php:18
msgid "For anonymous access, leave DN and Password empty."
@@ -180,4 +181,4 @@ msgstr ""
#: templates/settings.php:39
msgid "Help"
-msgstr ""
+msgstr "Hjálp"
diff --git a/l10n/is/user_webdavauth.po b/l10n/is/user_webdavauth.po
index 378e437e2a..859ebae198 100644
--- a/l10n/is/user_webdavauth.po
+++ b/l10n/is/user_webdavauth.po
@@ -3,13 +3,14 @@
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
+# , 2012.
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-12-20 00:11+0100\n"
-"PO-Revision-Date: 2012-12-19 23:12+0000\n"
-"Last-Translator: I Robot \n"
+"POT-Creation-Date: 2012-12-31 00:04+0100\n"
+"PO-Revision-Date: 2012-12-30 21:13+0000\n"
+"Last-Translator: sveinn \n"
"Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -19,11 +20,11 @@ msgstr ""
#: templates/settings.php:4
msgid "URL: http://"
-msgstr ""
+msgstr "Vefslóð: http://"
#: templates/settings.php:6
msgid ""
"ownCloud will send the user credentials to this URL is interpret http 401 "
"and http 403 as credentials wrong and all other codes as credentials "
"correct."
-msgstr ""
+msgstr "ownCloud mun senda auðkenni notenda á þessa vefslóð og túkla svörin http 401 og http 403 sem rangar auðkenniupplýsingar og öll önnur svör sem rétt."
diff --git a/l10n/it/core.po b/l10n/it/core.po
index d1d6f74af3..fcd13a5c7e 100644
--- a/l10n/it/core.po
+++ b/l10n/it/core.po
@@ -12,9 +12,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-12-15 00:11+0100\n"
-"PO-Revision-Date: 2012-12-14 08:54+0000\n"
-"Last-Translator: Vincenzo Reale \n"
+"POT-Creation-Date: 2013-01-07 00:04+0100\n"
+"PO-Revision-Date: 2013-01-06 23:04+0000\n"
+"Last-Translator: I Robot \n"
"Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -166,8 +166,8 @@ msgid "The object type is not specified."
msgstr "Il tipo di oggetto non è specificato."
#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136
-#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541
-#: js/share.js:553
+#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554
+#: js/share.js:566
msgid "Error"
msgstr "Errore"
@@ -179,7 +179,7 @@ msgstr "Il nome dell'applicazione non è specificato."
msgid "The required file {file} is not installed!"
msgstr "Il file richiesto {file} non è installato!"
-#: js/share.js:124 js/share.js:581
+#: js/share.js:124 js/share.js:594
msgid "Error while sharing"
msgstr "Errore durante la condivisione"
@@ -207,11 +207,11 @@ msgstr "Condividi con"
msgid "Share with link"
msgstr "Condividi con collegamento"
-#: js/share.js:164
+#: js/share.js:166
msgid "Password protect"
msgstr "Proteggi con password"
-#: js/share.js:168 templates/installation.php:44 templates/login.php:26
+#: js/share.js:168 templates/installation.php:44 templates/login.php:35
#: templates/verify.php:13
msgid "Password"
msgstr "Password"
@@ -276,23 +276,23 @@ msgstr "eliminare"
msgid "share"
msgstr "condividere"
-#: js/share.js:353 js/share.js:528 js/share.js:530
+#: js/share.js:356 js/share.js:541
msgid "Password protected"
msgstr "Protetta da password"
-#: js/share.js:541
+#: js/share.js:554
msgid "Error unsetting expiration date"
msgstr "Errore durante la rimozione della data di scadenza"
-#: js/share.js:553
+#: js/share.js:566
msgid "Error setting expiration date"
msgstr "Errore durante l'impostazione della data di scadenza"
-#: js/share.js:568
+#: js/share.js:581
msgid "Sending ..."
msgstr "Invio in corso..."
-#: js/share.js:579
+#: js/share.js:592
msgid "Email sent"
msgstr "Messaggio inviato"
@@ -317,7 +317,7 @@ msgid "Request failed!"
msgstr "Richiesta non riuscita!"
#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39
-#: templates/login.php:21
+#: templates/login.php:28
msgid "Username"
msgstr "Nome utente"
@@ -531,29 +531,29 @@ msgstr "servizi web nelle tue mani"
msgid "Log out"
msgstr "Esci"
-#: templates/login.php:8
+#: templates/login.php:10
msgid "Automatic logon rejected!"
msgstr "Accesso automatico rifiutato."
-#: templates/login.php:9
+#: templates/login.php:11
msgid ""
"If you did not change your password recently, your account may be "
"compromised!"
msgstr "Se non hai cambiato la password recentemente, il tuo account potrebbe essere stato compromesso."
-#: templates/login.php:10
+#: templates/login.php:13
msgid "Please change your password to secure your account again."
msgstr "Cambia la password per rendere nuovamente sicuro il tuo account."
-#: templates/login.php:15
+#: templates/login.php:19
msgid "Lost your password?"
msgstr "Hai perso la password?"
-#: templates/login.php:29
+#: templates/login.php:39
msgid "remember"
msgstr "ricorda"
-#: templates/login.php:30
+#: templates/login.php:41
msgid "Log in"
msgstr "Accedi"
@@ -569,6 +569,11 @@ msgstr "precedente"
msgid "next"
msgstr "successivo"
+#: templates/update.php:3
+#, php-format
+msgid "Updating ownCloud to version %s, this may take a while."
+msgstr ""
+
#: templates/verify.php:5
msgid "Security Warning!"
msgstr "Avviso di sicurezza"
diff --git a/l10n/it/files.po b/l10n/it/files.po
index 062fa2906f..04eb3b518b 100644
--- a/l10n/it/files.po
+++ b/l10n/it/files.po
@@ -6,14 +6,14 @@
#