diff --git a/.gitignore b/.gitignore
index 7c0df64b864..819347f540f 100644
--- a/.gitignore
+++ b/.gitignore
@@ -55,3 +55,9 @@ nbproject
# WebFinger
.well-known
/.buildpath
+
+#tests - autogenerated filed
+data-autotest
+/tests/coverage*
+/tests/autoconfig*
+/tests/autotest*
diff --git a/apps/files/admin.php b/apps/files/admin.php
index 80fd4f4e4a5..f747f8645f6 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 45448279fa1..cb0bec399d1 100644
--- a/apps/files/ajax/rename.php
+++ b/apps/files/ajax/rename.php
@@ -12,7 +12,7 @@ $file = stripslashes($_GET["file"]);
$newname = stripslashes($_GET["newname"]);
// Delete
-if( OC_Files::move( $dir, $file, $dir, $newname )) {
+if( $newname !== '.' and OC_Files::move( $dir, $file, $dir, $newname )) {
OCP\JSON::success(array("data" => array( "dir" => $dir, "file" => $file, "newname" => $newname )));
}
else{
diff --git a/apps/files/ajax/upload.php b/apps/files/ajax/upload.php
index 4a9816454d9..35463095988 100644
--- a/apps/files/ajax/upload.php
+++ b/apps/files/ajax/upload.php
@@ -8,6 +8,7 @@ OCP\JSON::setContentTypeHeader('text/plain');
OCP\JSON::checkLoggedIn();
OCP\JSON::callCheck();
+$l=OC_L10N::get('files');
// current max upload size
$l=new OC_L10N('files');
@@ -16,15 +17,15 @@ $maxHumanFilesize=OCP\Util::humanFileSize($maxUploadFilesize);
$maxHumanFilesize=$l->t('Upload') . ' max. '.$maxHumanFilesize;
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' ),
'uploadMaxFilesize'=>$maxUploadFilesize,
'maxHumanFilesize'=>$maxHumanFilesize
)));
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: ')
@@ -53,10 +54,9 @@ foreach($files['size'] as $size) {
$totalSize+=$size;
}
if($totalSize>OC_Filesystem::free_space($dir)) {
- OCP\JSON::error(array('data' => array( 'message' => 'Not enough space available',
+ OCP\JSON::error(array('data' => array( 'message' => $l->t( 'Not enough space available' ),
'uploadMaxFilesize'=>$maxUploadFilesize,
- 'maxHumanFilesize'=>$maxHumanFilesize
- )));
+ 'maxHumanFilesize'=>$maxHumanFilesize)));
exit();
}
@@ -88,10 +88,10 @@ 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,
'uploadMaxFilesize'=>$maxUploadFilesize,
'maxHumanFilesize'=>$maxHumanFilesize
)));
diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js
index 96dd0323d29..22d701d8ff9 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 e35dbe673d9..8d4cd06326e 100644
--- a/apps/files/js/files.js
+++ b/apps/files/js/files.js
@@ -43,17 +43,29 @@ Files={
}
},
- 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() {
@@ -530,7 +542,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 00000000000..45cf1c2313d
--- /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 0866d97bd74..981b8ec7ec9 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 12eb79a1a10..958cb930e7d 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",
diff --git a/apps/files/l10n/da.php b/apps/files/l10n/da.php
index 24652622c61..e2fd0c8c18f 100644
--- a/apps/files/l10n/da.php
+++ b/apps/files/l10n/da.php
@@ -1,5 +1,7 @@
"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",
"The uploaded file was only partially uploaded" => "Den uploadede file blev kun delvist uploadet",
"No file was uploaded" => "Ingen fil blev uploadet",
@@ -18,6 +20,7 @@
"replaced {new_name} with {old_name}" => "erstattede {new_name} med {old_name}",
"unshared {files}" => "ikke delte {files}",
"deleted {files}" => "slettede {files}",
+"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Ugyldigt navn, '\\', '/', '<', '>', ':' | '?', '\"', '', og '*' er ikke tilladt.",
"generating ZIP-file, it may take some time." => "genererer ZIP-fil, det kan tage lidt tid.",
"Unable to upload your file as it is a directory or has 0 bytes" => "Kunne ikke uploade din fil, da det enten er en mappe eller er tom",
"Upload Error" => "Fejl ved upload",
@@ -27,6 +30,7 @@
"{count} files uploading" => "{count} filer uploades",
"Upload cancelled." => "Upload afbrudt.",
"File upload is in progress. Leaving the page now will cancel the upload." => "Fil upload kører. Hvis du forlader siden nu, vil uploadet blive annuleret.",
+"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Ugyldigt mappenavn. Brug af \"Shared\" er forbeholdt Owncloud",
"{count} files scanned" => "{count} filer skannet",
"error while scanning" => "fejl under scanning",
"Name" => "Navn",
@@ -47,6 +51,7 @@
"New" => "Ny",
"Text file" => "Tekstfil",
"Folder" => "Mappe",
+"From link" => "Fra link",
"Upload" => "Upload",
"Cancel upload" => "Fortryd upload",
"Nothing in here. Upload something!" => "Her er tomt. Upload noget!",
diff --git a/apps/files/l10n/de.php b/apps/files/l10n/de.php
index 8073ee28da5..5f4778eb867 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 6a9730e94b0..3ba32229070 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 ddbea421241..60be0bc7aac 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 bdde6d0fece..c371334933d 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 40b9ea9f23f..2b9bdeeece9 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 e514d8de59a..9375954c02e 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 0fddbfdca46..0dfc7b5bcd5 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 0b223b93d8c..e141fa65726 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 8284593e886..062df6a56b3 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 772dabbb392..00f8ded5163 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 86d476873d0..8ffb0d351f7 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 5c50e3764cf..0071b5b7dd2 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",
diff --git a/apps/files/l10n/he.php b/apps/files/l10n/he.php
index 4c73493211d..971933f2310 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 083d5a391e1..cb06fe087e6 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 00000000000..bca878873ac
--- /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 90b34171220..6c7ca59774e 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 7b8c3ca4778..29f4fd4eafa 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に設定されたサイズを超えています",
diff --git a/apps/files/l10n/ko.php b/apps/files/l10n/ko.php
index 4b5d57dff92..d0a6d57538a 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 1d22746156e..9eb11360fed 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 d7756698d0c..7fa87840842 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 e5615a1c29b..f97228ecd1b 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 093a5430d53..998caabf9f5 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 8051eae8c42..e485fdc6c3e 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 97e5c94fb31..5f266bd7cd4 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 8c90fd47714..36c9d6e62aa 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 34e8dc8a50e..b09c8f39c8b 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 4b6d0a8b151..403bd5c0982 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 bb701aac002..d7d3d37613a 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 e256075896f..be33077f811 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 21d9710f6ba..1043e7ae9d9 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 c5ee6c422d5..f07751073c4 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 bcc849242ac..7cef4e19c46 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",
diff --git a/apps/files/l10n/ta_LK.php b/apps/files/l10n/ta_LK.php
index 9399089bc78..b68ad8f02c6 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 343138ba126..f6b3b1c56f1 100644
--- a/apps/files/l10n/th_TH.php
+++ b/apps/files/l10n/th_TH.php
@@ -1,5 +1,7 @@
"ยังไม่มีไฟล์ใดที่ถูกอัพโหลด เกิดข้อผิดพลาดที่ไม่ทราบสาเหตุ",
"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",
"The uploaded file was only partially uploaded" => "ไฟล์ที่อัพโหลดยังไม่ได้ถูกอัพโหลดอย่างสมบูรณ์",
"No file was uploaded" => "ยังไม่มีไฟล์ที่ถูกอัพโหลด",
diff --git a/apps/files/l10n/tr.php b/apps/files/l10n/tr.php
index 061ed1f3ae2..80182d8ec80 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 00491bcc2d6..4daa2d628c7 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 4f58e623178..b14186d9615 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 ccf0efff050..cad4b95c6aa 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 8db652f003e..1188c252922 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 5333209eff7..7b55b547148 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 0de12edcba5..ad69b5519d9 100644
--- a/apps/files/templates/admin.php
+++ b/apps/files/templates/admin.php
@@ -6,7 +6,10 @@
'/>
- (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 00000000000..0332d59520a
--- /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 4352d8b7712..8ea0f731736 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 00000000000..3210ecb4f8a
--- /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 00000000000..474ee42b842
--- /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 00000000000..ad983b52e43
--- /dev/null
+++ b/apps/files_external/l10n/bn_BD.php
@@ -0,0 +1,6 @@
+ "প্রশাসক",
+"Groups" => "গোষ্ঠী",
+"Users" => "ব্যবহারকারিবৃন্দ",
+"Delete" => "মুছে ফেল"
+);
diff --git a/apps/files_external/l10n/da.php b/apps/files_external/l10n/da.php
index 00a81f3da16..bae89a6cfdd 100644
--- a/apps/files_external/l10n/da.php
+++ b/apps/files_external/l10n/da.php
@@ -5,6 +5,8 @@
"Fill out all required fields" => "Udfyld alle nødvendige felter",
"Please provide a valid Dropbox app key and secret." => "Angiv venligst en valid Dropbox app nøgle og hemmelighed",
"Error configuring Google Drive storage" => "Fejl ved konfiguration af Google Drive plads",
+"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => " Advarsel: b> \"smbclient\" ikke er installeret. Montering af CIFS / SMB delinger er ikke muligt. Spørg din systemadministrator om at installere det.",
+"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." => " Advarsel: b> FTP-understøttelse i PHP ikke er aktiveret eller installeret. Montering af FTP delinger er ikke muligt. Spørg din systemadministrator om at installere det.",
"External Storage" => "Ekstern opbevaring",
"Mount point" => "Monteringspunkt",
"Backend" => "Backend",
diff --git a/apps/files_external/l10n/de.php b/apps/files_external/l10n/de.php
index 196b3af2038..277cc2e6efe 100644
--- a/apps/files_external/l10n/de.php
+++ b/apps/files_external/l10n/de.php
@@ -5,8 +5,8 @@
"Fill out all required fields" => "Bitte alle notwendigen Felder füllen",
"Please provide a valid Dropbox app key and secret." => "Bitte trage einen gültigen Dropbox-App-Key mit Secret ein.",
"Error configuring Google Drive storage" => "Fehler beim Einrichten von Google Drive",
-"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "Warnung: \"smbclient\" ist nicht installiert. Das Einhängen von CIFS/SMB-Freigaben ist nicht möglich. Bitte Deinen System-Verwalter dies zu installieren.",
-"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." => "Warnung: \"smbclient\" ist nicht aktiv oder nicht installiert. Das Einhängen von FTP-Freigaben ist nicht möglich. Bitte Deinen System-Verwalter dies zu installieren.",
+"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "Warnung: \"smbclient\" ist nicht installiert. Das Einhängen von CIFS/SMB-Freigaben ist nicht möglich. Bitte Deinen System-Administrator, dies zu installieren.",
+"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." => "Warnung:: Die FTP Unterstützung von PHP ist nicht aktiviert oder installiert. Bitte wende Dich an Deinen Systemadministrator.",
"External Storage" => "Externer Speicher",
"Mount point" => "Mount-Point",
"Backend" => "Backend",
diff --git a/apps/files_external/l10n/de_DE.php b/apps/files_external/l10n/de_DE.php
index fb969006d66..5675eb057f0 100644
--- a/apps/files_external/l10n/de_DE.php
+++ b/apps/files_external/l10n/de_DE.php
@@ -5,8 +5,8 @@
"Fill out all required fields" => "Bitte alle notwendigen Felder füllen",
"Please provide a valid Dropbox app key and secret." => "Bitte tragen Sie einen gültigen Dropbox-App-Key mit Secret ein.",
"Error configuring Google Drive storage" => "Fehler beim Einrichten von Google Drive",
-"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "Achtung: \"smbclient\" ist nicht installiert. Das Laden von CIFS/SMB shares ist nicht möglich. Bitte wenden Sie sich an Ihren Systemadministrator.",
-"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." => "Achtung: Die FTP Unterstützung von PHP ist nicht initialisiert oder installiert. Bitte wenden Sie sich an Ihren Systemadministrator.",
+"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "Warnung: \"smbclient\" ist nicht installiert. Das Einhängen von CIFS/SMB-Freigaben ist nicht möglich. Bitten Sie Ihren Systemadministrator, dies zu installieren.",
+"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." => "Warnung:: Die FTP Unterstützung von PHP ist nicht aktiviert oder installiert. Bitte wenden Sie sich an Ihren Systemadministrator.",
"External Storage" => "Externer Speicher",
"Mount point" => "Mount-Point",
"Backend" => "Backend",
diff --git a/apps/files_external/l10n/el.php b/apps/files_external/l10n/el.php
index a1dae9d4888..9bf499a911d 100644
--- a/apps/files_external/l10n/el.php
+++ b/apps/files_external/l10n/el.php
@@ -5,6 +5,8 @@
"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" => "Σύστημα υποστήριξης",
diff --git a/apps/files_external/l10n/eu.php b/apps/files_external/l10n/eu.php
index dccd377b119..597204c894d 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 90007aafaaf..0825a961b1c 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 5024dac4d8c..f8100e14620 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 e915c34b950..b8973c96411 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 00000000000..5110bf5ad27
--- /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 597623323b0..e3c1e4652b3 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/nl.php b/apps/files_external/l10n/nl.php
index d0c0b02b8f8..132c8cf3ac2 100644
--- a/apps/files_external/l10n/nl.php
+++ b/apps/files_external/l10n/nl.php
@@ -5,6 +5,8 @@
"Fill out all required fields" => "Vul alle verplichte in",
"Please provide a valid Dropbox app key and secret." => "Geef een geldige Dropbox key en secret.",
"Error configuring Google Drive storage" => "Fout tijdens het configureren van Google Drive opslag",
+"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "Waarschuwing: \"smbclient\" is niet geïnstalleerd. Mounten van CIFS/SMB shares is niet mogelijk. Vraag uw beheerder om smbclient te installeren.",
+"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." => "Waarschuwing: FTP ondersteuning in PHP is niet geactiveerd of geïnstalleerd. Mounten van FTP shares is niet mogelijk. Vraag uw beheerder FTP ondersteuning te installeren.",
"External Storage" => "Externe opslag",
"Mount point" => "Aankoppelpunt",
"Backend" => "Backend",
diff --git a/apps/files_external/l10n/ru_RU.php b/apps/files_external/l10n/ru_RU.php
index 05a784100c2..e539b3cb2cf 100644
--- a/apps/files_external/l10n/ru_RU.php
+++ b/apps/files_external/l10n/ru_RU.php
@@ -5,7 +5,7 @@
"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\" не установлен. Mounting of CIFS/SMB shares is not possible. Пожалуйста, обратитесь к системному администратору, чтобы установить его.",
+"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" => "Точка монтирования",
diff --git a/apps/files_external/l10n/sv.php b/apps/files_external/l10n/sv.php
index 0a5e1c66d99..0d42a1f4682 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 c5e9f8f892f..e9a045aab57 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/l10n/zh_CN.php b/apps/files_external/l10n/zh_CN.php
index 247ef7ce95c..1bb88564630 100644
--- a/apps/files_external/l10n/zh_CN.php
+++ b/apps/files_external/l10n/zh_CN.php
@@ -5,6 +5,8 @@
"Fill out all required fields" => "完成所有必填项",
"Please provide a valid Dropbox app key and secret." => "请提供有效的Dropbox应用key和secret",
"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." => "警告:PHP中尚未启用或安装FTP。FTP 分享挂载无法实现。请咨询系统管理员进行安装。",
"External Storage" => "外部存储",
"Mount point" => "挂载点",
"Backend" => "后端",
diff --git a/apps/files_sharing/appinfo/app.php b/apps/files_sharing/appinfo/app.php
index 109f86b2e87..0104d0d017f 100644
--- a/apps/files_sharing/appinfo/app.php
+++ b/apps/files_sharing/appinfo/app.php
@@ -6,4 +6,4 @@ OC::$CLASSPATH['OC_Filestorage_Shared'] = "apps/files_sharing/lib/sharedstorage.
OCP\Util::connectHook('OC_Filesystem', 'setup', 'OC_Filestorage_Shared', 'setup');
OCP\Share::registerBackend('file', 'OC_Share_Backend_File');
OCP\Share::registerBackend('folder', 'OC_Share_Backend_Folder', 'file');
-OCP\Util::addScript('files_sharing', 'share');
+OCP\Util::addScript('files_sharing', 'share');
\ No newline at end of file
diff --git a/apps/files_sharing/l10n/ar.php b/apps/files_sharing/l10n/ar.php
new file mode 100644
index 00000000000..4cf3f8c0920
--- /dev/null
+++ b/apps/files_sharing/l10n/ar.php
@@ -0,0 +1,9 @@
+ "كلمة المرور",
+"Submit" => "تطبيق",
+"%s shared the folder %s with you" => "%s شارك المجلد %s معك",
+"%s shared the file %s with you" => "%s شارك الملف %s معك",
+"Download" => "تحميل",
+"No preview available for" => "لا يوجد عرض مسبق لـ",
+"web services under your control" => "خدمات الشبكة تحت سيطرتك"
+);
diff --git a/apps/files_sharing/l10n/bn_BD.php b/apps/files_sharing/l10n/bn_BD.php
new file mode 100644
index 00000000000..785dfcd2f1d
--- /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 881b5afd817..f8ca541260d 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 00000000000..bf1975c54ae
--- /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_versions/l10n/ar.php b/apps/files_versions/l10n/ar.php
new file mode 100644
index 00000000000..fea7f1c7562
--- /dev/null
+++ b/apps/files_versions/l10n/ar.php
@@ -0,0 +1,8 @@
+ "إنهاء تاريخ الإنتهاء لجميع الإصدارات",
+"History" => "السجل الزمني",
+"Versions" => "الإصدارات",
+"This will delete all existing backup versions of your files" => "هذه العملية ستقوم بإلغاء جميع إصدارات النسخ الاحتياطي للملفات",
+"Files Versioning" => "أصدرة الملفات",
+"Enable" => "تفعيل"
+);
diff --git a/apps/files_versions/l10n/bn_BD.php b/apps/files_versions/l10n/bn_BD.php
new file mode 100644
index 00000000000..d44ea131313
--- /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 00000000000..1575eda3f35
--- /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 00000000000..f63939d3af9
--- /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 00000000000..73f207d5024
--- /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/ar.php b/apps/user_ldap/l10n/ar.php
new file mode 100644
index 00000000000..ced0b4293b7
--- /dev/null
+++ b/apps/user_ldap/l10n/ar.php
@@ -0,0 +1,3 @@
+ "كلمة المرور"
+);
diff --git a/apps/user_ldap/l10n/bn_BD.php b/apps/user_ldap/l10n/bn_BD.php
new file mode 100644
index 00000000000..eca40c171f8
--- /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 cce3de085d2..b11b56f9b65 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/de.php b/apps/user_ldap/l10n/de.php
index bcd8ccfe343..87579cb2431 100644
--- a/apps/user_ldap/l10n/de.php
+++ b/apps/user_ldap/l10n/de.php
@@ -1,6 +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." => "Warnung: Die Apps user_ldap und user_webdavauth sind nicht kompatible. Unerwartetes Verhalten kann auftreten. Bitte Deinen System-Verwalter eine von beiden zu de-aktivieren.",
-"Warning: The PHP LDAP module needs is not installed, the backend will not work. Please ask your system administrator to install it." => "Warnung: Das PHP-Modul, das LDAP benöntigt, ist nicht installiert. Das Backend wird nicht funktionieren. Bitte deinen System-Administrator das Modul zu installieren.",
+"Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "Warnung: Die Anwendungen user_ldap und user_webdavauth sind inkompatibel. Es kann demzufolge zu unerwarteten Verhalten kommen. Bitte Deinen Systemadministator eine der beiden Anwendungen zu deaktivieren.",
+"Warning: The PHP LDAP module needs is not installed, the backend will not work. Please ask your system administrator to install it." => "Warnung: Das PHP-Modul, das LDAP benöntigt, ist nicht installiert. Das Backend wird nicht funktionieren. Bitte deinen Systemadministrator das Modul zu installieren.",
"Host" => "Host",
"You can omit the protocol, except you require SSL. Then start with ldaps://" => "Du kannst das Protokoll auslassen, außer wenn Du SSL benötigst. Beginne dann mit ldaps://",
"Base DN" => "Basis-DN",
diff --git a/apps/user_ldap/l10n/de_DE.php b/apps/user_ldap/l10n/de_DE.php
index e6288c78af4..f986ae83e87 100644
--- a/apps/user_ldap/l10n/de_DE.php
+++ b/apps/user_ldap/l10n/de_DE.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." => "Warnung: Die Anwendungen user_ldap und user_webdavauth sind inkompatibel. Es kann demzufolge zu unerwarteten Verhalten kommen. Bitten Sie Ihren Systemadministator eine der beiden Anwendungen zu deaktivieren.",
+"Warning: The PHP LDAP module needs is not installed, the backend will not work. Please ask your system administrator to install it." => "Warnung: Das PHP-Modul, das LDAP benöntigt, ist nicht installiert. Das Backend wird nicht funktionieren. Bitten Sie Ihren Systemadministrator das Modul zu installieren.",
"Host" => "Host",
"You can omit the protocol, except you require SSL. Then start with ldaps://" => "Sie können das Protokoll auslassen, außer wenn Sie SSL benötigen. Beginnen Sie dann mit ldaps://",
"Base DN" => "Basis-DN",
diff --git a/apps/user_ldap/l10n/el.php b/apps/user_ldap/l10n/el.php
index e973eaac0a9..8c421cf162b 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 6bd452e9d90..0b1340d4397 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 35dacef3f2f..06ca9cb294e 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/fr.php b/apps/user_ldap/l10n/fr.php
index a0b1c6b7d9c..9750d1352a8 100644
--- a/apps/user_ldap/l10n/fr.php
+++ b/apps/user_ldap/l10n/fr.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." => "Avertissement: Les applications user_ldap et user_webdavauth sont incompatibles. Des disfonctionnements peuvent survenir. Contactez votre administrateur système pour qu'il désactive l'une d'elles.",
+"Warning: The PHP LDAP module needs is not installed, the backend will not work. Please ask your system administrator to install it." => "Avertissement: Le module PHP LDAP requis n'est pas installé, l'application ne marchera pas. Contactez votre administrateur système pour qu'il l'installe.",
"Host" => "Hôte",
"You can omit the protocol, except you require SSL. Then start with ldaps://" => "Vous pouvez omettre le protocole, sauf si vous avez besoin de SSL. Dans ce cas préfixez avec ldaps://",
"Base DN" => "DN Racine",
diff --git a/apps/user_ldap/l10n/gl.php b/apps/user_ldap/l10n/gl.php
index 41431293cba..ae05efcd27f 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 00000000000..14eb5837ceb
--- /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 00000000000..29bc7692795
--- /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 f0a348b7421..70a62e71765 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/nl.php b/apps/user_ldap/l10n/nl.php
index 84c36881f9a..23e9a15c010 100644
--- a/apps/user_ldap/l10n/nl.php
+++ b/apps/user_ldap/l10n/nl.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." => "Waarschuwing: De Apps user_ldap en user_webdavauth zijn incompatible. U kunt onverwacht gedrag ervaren. Vraag uw beheerder om een van beide apps de deactiveren.",
+"Warning: The PHP LDAP module needs is not installed, the backend will not work. Please ask your system administrator to install it." => "Waarschuwing: De PHP LDAP module is niet geïnstalleerd, de backend zal dus niet werken. Vraag uw beheerder de module te installeren.",
"Host" => "Host",
"You can omit the protocol, except you require SSL. Then start with ldaps://" => "Je kunt het protocol weglaten, tenzij je SSL vereist. Start in dat geval met ldaps://",
"Base DN" => "Basis DN",
diff --git a/apps/user_ldap/l10n/ro.php b/apps/user_ldap/l10n/ro.php
index beeed857455..b4d7d4902fe 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 00000000000..6da65d9832b
--- /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/ar.php b/apps/user_webdavauth/l10n/ar.php
index 9bd32954b05..cf59cd2519e 100644
--- a/apps/user_webdavauth/l10n/ar.php
+++ b/apps/user_webdavauth/l10n/ar.php
@@ -1,3 +1,3 @@
"WebDAV URL: http://"
+"URL: http://" => "الرابط: http://"
);
diff --git a/apps/user_webdavauth/l10n/ca.php b/apps/user_webdavauth/l10n/ca.php
index a59bffb870d..84a6c599e78 100644
--- a/apps/user_webdavauth/l10n/ca.php
+++ b/apps/user_webdavauth/l10n/ca.php
@@ -1,3 +1,4 @@
"Adreça 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à les credencials d'usuari a aquesta URL. S'interpretarà http 401 i http 403 com a credencials incorrectes i tots els altres codis com a credencials correctes."
);
diff --git a/apps/user_webdavauth/l10n/cs_CZ.php b/apps/user_webdavauth/l10n/cs_CZ.php
index a5b7e56771f..5cb9b4c3704 100644
--- a/apps/user_webdavauth/l10n/cs_CZ.php
+++ b/apps/user_webdavauth/l10n/cs_CZ.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 odešle přihlašovací údaje uživatele na URL a z návratové hodnoty určí stav přihlášení. Http 401 a 403 vyhodnotí jako neplatné údaje a všechny ostatní jako úspěšné přihlášení."
);
diff --git a/apps/user_webdavauth/l10n/da.php b/apps/user_webdavauth/l10n/da.php
new file mode 100644
index 00000000000..7d9ee1d5b29
--- /dev/null
+++ b/apps/user_webdavauth/l10n/da.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 vil sende brugeroplysningerne til denne webadresse er fortolker http 401 og http 403 som brugeroplysninger forkerte og alle andre koder som brugeroplysninger korrekte."
+);
diff --git a/apps/user_webdavauth/l10n/de.php b/apps/user_webdavauth/l10n/de.php
index 9bd32954b05..8589dc0c4fd 100644
--- a/apps/user_webdavauth/l10n/de.php
+++ b/apps/user_webdavauth/l10n/de.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 wird die Logindaten zu dieser URL senden. http 401 und http 403 werden als falsche Logindaten interpretiert und alle anderen Codes als korrekte Logindaten."
);
diff --git a/apps/user_webdavauth/l10n/de_DE.php b/apps/user_webdavauth/l10n/de_DE.php
index 9bd32954b05..3d73dccfe8e 100644
--- a/apps/user_webdavauth/l10n/de_DE.php
+++ b/apps/user_webdavauth/l10n/de_DE.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 "
);
diff --git a/apps/user_webdavauth/l10n/el.php b/apps/user_webdavauth/l10n/el.php
index 9bd32954b05..bf4c11af64c 100644
--- a/apps/user_webdavauth/l10n/el.php
+++ b/apps/user_webdavauth/l10n/el.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 θα στείλει τα συνθηματικά χρήστη σε αυτό το URL, μεταφράζοντας τα http 401 και http 403 ως λανθασμένα συνθηματικά και όλους τους άλλους κωδικούς ως σωστά συνθηματικά."
);
diff --git a/apps/user_webdavauth/l10n/eo.php b/apps/user_webdavauth/l10n/eo.php
index b4a2652d33e..245a5101341 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 9bd32954b05..3975b04cbc1 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 81f2ea1e578..0606d3a8eb4 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 9bd32954b05..bbda9f10ba0 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 759d45b230e..339931c7cee 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 a5b7e56771f..fa81db333d4 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 00000000000..75a23ed7be4
--- /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 00000000000..13d9a1fe8f4
--- /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/it.php b/apps/user_webdavauth/l10n/it.php
index a5b7e56771f..b0abf2f2082 100644
--- a/apps/user_webdavauth/l10n/it.php
+++ b/apps/user_webdavauth/l10n/it.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 invierà le credenziali dell'utente a questo URL. Interpreta i codici http 401 e http 403 come credenziali errate e tutti gli altri codici come credenziali corrette."
);
diff --git a/apps/user_webdavauth/l10n/ja_JP.php b/apps/user_webdavauth/l10n/ja_JP.php
index 9bd32954b05..8643805ffcc 100644
--- a/apps/user_webdavauth/l10n/ja_JP.php
+++ b/apps/user_webdavauth/l10n/ja_JP.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のこのURLへのユーザ資格情報の送信は、資格情報が間違っている場合はHTTP401もしくは403を返し、正しい場合は全てのコードを返します。"
);
diff --git a/apps/user_webdavauth/l10n/mk.php b/apps/user_webdavauth/l10n/mk.php
new file mode 100644
index 00000000000..245a5101341
--- /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 00000000000..245a5101341
--- /dev/null
+++ b/apps/user_webdavauth/l10n/nb_NO.php
@@ -0,0 +1,3 @@
+ "URL: http://"
+);
diff --git a/apps/user_webdavauth/l10n/nl.php b/apps/user_webdavauth/l10n/nl.php
index 9bd32954b05..687442fb665 100644
--- a/apps/user_webdavauth/l10n/nl.php
+++ b/apps/user_webdavauth/l10n/nl.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 zal de inloggegevens naar deze URL als geïnterpreteerde http 401 en http 403 als de inloggegevens onjuist zijn. Andere codes als de inloggegevens correct zijn."
);
diff --git a/apps/user_webdavauth/l10n/pl.php b/apps/user_webdavauth/l10n/pl.php
index 9bd32954b05..245a5101341 100644
--- a/apps/user_webdavauth/l10n/pl.php
+++ b/apps/user_webdavauth/l10n/pl.php
@@ -1,3 +1,3 @@
"WebDAV URL: http://"
+"URL: http://" => "URL: http://"
);
diff --git a/apps/user_webdavauth/l10n/pt_PT.php b/apps/user_webdavauth/l10n/pt_PT.php
index 1aca5caeff1..e8bfcfda81e 100644
--- a/apps/user_webdavauth/l10n/pt_PT.php
+++ b/apps/user_webdavauth/l10n/pt_PT.php
@@ -1,3 +1,4 @@
"Endereço 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." => "O ownCloud vai enviar as credenciais para este URL. Todos os códigos http 401 e 403 serão interpretados como credenciais inválidas, todos os restantes códigos http serão interpretados como credenciais correctas."
);
diff --git a/apps/user_webdavauth/l10n/ro.php b/apps/user_webdavauth/l10n/ro.php
new file mode 100644
index 00000000000..17157da044d
--- /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 9bd32954b05..245a5101341 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/ru_RU.php b/apps/user_webdavauth/l10n/ru_RU.php
index 9bd32954b05..245a5101341 100644
--- a/apps/user_webdavauth/l10n/ru_RU.php
+++ b/apps/user_webdavauth/l10n/ru_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 9bd32954b05..8f4effc81a1 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 9bd32954b05..b7a7e4ea2d9 100644
--- a/apps/user_webdavauth/l10n/sv.php
+++ b/apps/user_webdavauth/l10n/sv.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 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 9bd32954b05..245a5101341 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/apps/user_webdavauth/l10n/uk.php b/apps/user_webdavauth/l10n/uk.php
index 9bd32954b05..57aa90684ae 100644
--- a/apps/user_webdavauth/l10n/uk.php
+++ b/apps/user_webdavauth/l10n/uk.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 відправить облікові дані на цей URL та буде інтерпретувати http 401 і http 403, як невірні облікові дані, а всі інші коди, як вірні."
);
diff --git a/apps/user_webdavauth/l10n/zh_CN.php b/apps/user_webdavauth/l10n/zh_CN.php
index 33c77f7d30e..5b06409b42e 100644
--- a/apps/user_webdavauth/l10n/zh_CN.php
+++ b/apps/user_webdavauth/l10n/zh_CN.php
@@ -1,3 +1,3 @@
"WebDAV地址: http://"
+"URL: http://" => "URL:http://"
);
diff --git a/config/config.sample.php b/config/config.sample.php
index 78dfe17ea79..b1655d02830 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 00000000000..20ab045c892
--- /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 d635916b5ae..6e1cef72eda 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/img/actions/logout.png b/core/img/actions/logout.png
index eb2ea766c31..37f62543ac2 100644
Binary files a/core/img/actions/logout.png and b/core/img/actions/logout.png differ
diff --git a/core/img/actions/logout.svg b/core/img/actions/logout.svg
index d95ac959778..0281fad43e7 100644
--- a/core/img/actions/logout.svg
+++ b/core/img/actions/logout.svg
@@ -11,11 +11,14 @@
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.0"
- width="18"
+ width="16"
height="16"
id="svg2403"
- inkscape:version="0.48.1 r9760"
- sodipodi:docname="system-shutdown-panel2.svg">
+ inkscape:version="0.48.3.1 r9886"
+ sodipodi:docname="logout.svg"
+ inkscape:export-filename="logout.png"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90">
+ gradientTransform="matrix(1.0526316,0,0,0.9843625,0.578947,0.06024281)" />
+
+
+
+
+
+
+
+
+ id="path3927"
+ d="m 8.0000634,1 c -0.4714045,0 -0.9610304,0.5419023 -0.95,1 l 0,6 c -0.00747,0.5283126 0.4216346,1 0.95,1 0.5283654,0 0.957472,-0.4716874 0.95,-1 l 0,-6 c 0.014622,-0.605105 -0.4785955,-1 -0.95,-1 z m -3.34375,2.5 c -0.087186,0.019294 -0.1716251,0.050959 -0.25,0.09375 -2.9994999,1.5715133 -3.91842874,4.7978566 -3.125,7.46875 C 2.0747421,13.733393 4.5611725,16 7.9688134,16 11.327833,16 13.846204,13.850562 14.687563,11.21875 15.528922,8.5869378 14.630363,5.3955638 11.562563,3.625 11.128957,3.3713639 10.503661,3.535122 10.250038,3.9687356 9.9964154,4.4023491 10.160192,5.0276401 10.593813,5.28125 c 2.390793,1.3798311 2.882452,3.4944109 2.28125,5.375 -0.601202,1.880589 -2.344037,3.4375 -4.9062496,3.4375 -2.575923,0 -4.297634,-1.650181 -4.875,-3.59375 C 2.5164474,8.5564313 3.0469519,6.451888 5.2813134,5.28125 5.6599659,5.0748887 5.8603711,4.5887067 5.7371222,4.1754605 5.6138734,3.7622144 5.1798937,3.4652349 4.7500634,3.5 4.7188384,3.49846 4.6875384,3.49846 4.6563134,3.5 z"
+ style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;opacity:0.5;color:#000000;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="sccsccsccssscscssscscc" />
-
+ inkscape:connector-curvature="0" />
diff --git a/core/js/js.js b/core/js/js.js
index 7d967321d93..610950995db 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/ar.php b/core/l10n/ar.php
index 80a22a248e6..d33de577b3d 100644
--- a/core/l10n/ar.php
+++ b/core/l10n/ar.php
@@ -1,10 +1,48 @@
"ألا توجد فئة للإضافة؟",
+"This category already exists: " => "هذه الفئة موجودة مسبقاً",
+"No categories selected for deletion." => "لم يتم اختيار فئة للحذف",
"Settings" => "تعديلات",
+"seconds ago" => "منذ ثواني",
+"1 minute ago" => "منذ دقيقة",
+"{minutes} minutes ago" => "{minutes} منذ دقائق",
+"today" => "اليوم",
+"Choose" => "اختيار",
"Cancel" => "الغاء",
+"No" => "لا",
+"Yes" => "نعم",
+"Ok" => "موافق",
+"Error" => "خطأ",
+"Error while sharing" => "حصل خطأ عند عملية المشاركة",
+"Error while unsharing" => "حصل خطأ عند عملية إزالة المشاركة",
+"Error while changing permissions" => "حصل خطأ عند عملية إعادة تعيين التصريح بالتوصل",
+"Shared with you and the group {group} by {owner}" => "شورك معك ومع المجموعة {group} من قبل {owner}",
+"Shared with you by {owner}" => "شورك معك من قبل {owner}",
+"Share with" => "شارك مع",
+"Share with link" => "شارك مع رابط",
+"Password protect" => "حماية كلمة السر",
"Password" => "كلمة السر",
+"Set expiration date" => "تعيين تاريخ إنتهاء الصلاحية",
+"Expiration date" => "تاريخ إنتهاء الصلاحية",
+"Share via email:" => "مشاركة عبر البريد الإلكتروني:",
+"No people found" => "لم يتم العثور على أي شخص",
+"Resharing is not allowed" => "لا يسمح بعملية إعادة المشاركة",
+"Shared in {item} with {user}" => "شورك في {item} مع {user}",
"Unshare" => "إلغاء مشاركة",
+"can edit" => "التحرير مسموح",
+"access control" => "ضبط الوصول",
+"create" => "إنشاء",
+"update" => "تحديث",
+"delete" => "حذف",
+"share" => "مشاركة",
+"Password protected" => "محمي بكلمة السر",
+"Error unsetting expiration date" => "حصل خطأ عند عملية إزالة تاريخ إنتهاء الصلاحية",
+"Error setting expiration date" => "حصل خطأ عند عملية تعيين تاريخ إنتهاء الصلاحية",
+"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" => "لقد تم تعديل كلمة السر",
@@ -16,9 +54,12 @@
"Apps" => "التطبيقات",
"Admin" => "مستخدم رئيسي",
"Help" => "المساعدة",
+"Access forbidden" => "التوصّل محظور",
"Cloud not found" => "لم يتم إيجاد",
"Edit categories" => "عدل الفئات",
"Add" => "أدخل",
+"Security Warning" => "تحذير أمان",
+"No secure random number generator is available, please enable the PHP OpenSSL extension." => "لا يوجد مولّد أرقام عشوائية ، الرجاء تفعيل الـ PHP OpenSSL extension.",
"Create an admin account" => "أضف مستخدم رئيسي ",
"Advanced" => "خيارات متقدمة",
"Data folder" => "مجلد المعلومات",
@@ -27,6 +68,7 @@
"Database user" => "مستخدم قاعدة البيانات",
"Database password" => "كلمة سر مستخدم قاعدة البيانات",
"Database name" => "إسم قاعدة البيانات",
+"Database tablespace" => "مساحة جدول قاعدة البيانات",
"Database host" => "خادم قاعدة البيانات",
"Finish setup" => "انهاء التعديلات",
"Sunday" => "الاحد",
@@ -50,10 +92,16 @@
"December" => "كانون الاول",
"web services under your control" => "خدمات الوب تحت تصرفك",
"Log out" => "الخروج",
+"Automatic logon rejected!" => "تم رفض تسجيل الدخول التلقائي!",
+"If you did not change your password recently, your account may be compromised!" => "قد يكون حسابك في خطر إن لم تقم بإعادة تعيين كلمة السر حديثاً",
+"Please change your password to secure your account again." => "الرجاء إعادة تعيين كلمة السر لتأمين حسابك.",
"Lost your password?" => "هل نسيت كلمة السر؟",
"remember" => "تذكر",
"Log in" => "أدخل",
"You are logged out." => "تم الخروج بنجاح.",
"prev" => "السابق",
-"next" => "التالي"
+"next" => "التالي",
+"Security Warning!" => "تحذير أمان!",
+"Please verify your password. For security reasons you may be occasionally asked to enter your password again." => "الرجاء التحقق من كلمة السر. من الممكن أحياناً أن نطلب منك إعادة إدخال كلمة السر مرة أخرى.",
+"Verify" => "تحقيق"
);
diff --git a/core/l10n/bn_BD.php b/core/l10n/bn_BD.php
new file mode 100644
index 00000000000..a3350761386
--- /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/ca.php b/core/l10n/ca.php
index cf7cdfb7c94..f98922f8f38 100644
--- a/core/l10n/ca.php
+++ b/core/l10n/ca.php
@@ -33,7 +33,7 @@
"The object type is not specified." => "No s'ha especificat el tipus d'objecte.",
"Error" => "Error",
"The app name is not specified." => "No s'ha especificat el nom de l'aplicació.",
-"The required file {file} is not installed!" => "El figtxer requerit {file} no està instal·lat!",
+"The required file {file} is not installed!" => "El fitxer requerit {file} no està instal·lat!",
"Error while sharing" => "Error en compartir",
"Error while unsharing" => "Error en deixar de compartir",
"Error while changing permissions" => "Error en canviar els permisos",
diff --git a/core/l10n/da.php b/core/l10n/da.php
index 2798b22830f..a792e1d9bae 100644
--- a/core/l10n/da.php
+++ b/core/l10n/da.php
@@ -1,15 +1,27 @@
"Bruger %s delte en fil med dig",
+"User %s shared a folder with you" => "Bruger %s delte en mappe med dig",
+"User %s shared the file \"%s\" with you. It is available for download here: %s" => "Bruger %s delte filen \"%s\" med dig. Den kan hentes her: %s",
+"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Bruger %s delte mappe \"%s\" med dig. Det kan hentes her: %s",
+"Category type not provided." => "Kategori typen ikke er fastsat.",
"No category to add?" => "Ingen kategori at tilføje?",
"This category already exists: " => "Denne kategori eksisterer allerede: ",
+"Object type not provided." => "Object type ikke er fastsat.",
+"%s ID not provided." => "%s ID ikke oplyst.",
+"Error adding %s to favorites." => "Fejl ved tilføjelse af %s til favoritter.",
"No categories selected for deletion." => "Ingen kategorier valgt",
+"Error removing %s from favorites." => "Fejl ved fjernelse af %s fra favoritter.",
"Settings" => "Indstillinger",
"seconds ago" => "sekunder siden",
"1 minute ago" => "1 minut 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} dage siden",
"last month" => "sidste måned",
+"{months} months ago" => "{months} måneder siden",
"months ago" => "måneder siden",
"last year" => "sidste år",
"years ago" => "år siden",
@@ -18,7 +30,10 @@
"No" => "Nej",
"Yes" => "Ja",
"Ok" => "OK",
+"The object type is not specified." => "Objekttypen er ikke angivet.",
"Error" => "Fejl",
+"The app name is not specified." => "Den app navn er ikke angivet.",
+"The required file {file} is not installed!" => "Den krævede fil {file} er ikke installeret!",
"Error while sharing" => "Fejl under deling",
"Error while unsharing" => "Fejl under annullering af deling",
"Error while changing permissions" => "Fejl under justering af rettigheder",
@@ -28,6 +43,8 @@
"Share with link" => "Del med link",
"Password protect" => "Beskyt med adgangskode",
"Password" => "Kodeord",
+"Email link to person" => "E-mail link til person",
+"Send" => "Send",
"Set expiration date" => "Vælg udløbsdato",
"Expiration date" => "Udløbsdato",
"Share via email:" => "Del via email:",
@@ -44,9 +61,13 @@
"Password protected" => "Beskyttet med adgangskode",
"Error unsetting expiration date" => "Fejl ved fjernelse af udløbsdato",
"Error setting expiration date" => "Fejl under sætning af udløbsdato",
+"Sending ..." => "Sender ...",
+"Email sent" => "E-mail afsendt",
"ownCloud password reset" => "Nulstil ownCloud kodeord",
"Use the following link to reset your password: {link}" => "Anvend følgende link til at nulstille din adgangskode: {link}",
"You will receive a link to reset your password via Email." => "Du vil modtage et link til at nulstille dit kodeord via email.",
+"Reset email send." => "Reset-mail afsendt.",
+"Request failed!" => "Anmodningen mislykkedes!",
"Username" => "Brugernavn",
"Request reset" => "Anmod om nulstilling",
"Your password was reset" => "Dit kodeord blev nulstillet",
diff --git a/core/l10n/de.php b/core/l10n/de.php
index 08a120763a3..c5867eda8c3 100644
--- a/core/l10n/de.php
+++ b/core/l10n/de.php
@@ -1,8 +1,8 @@
"%s möchte eine Datei mit dir teilen",
-"User %s shared a folder with you" => "%s möchte ein Verzeichnis mit dir teilen",
-"User %s shared the file \"%s\" with you. It is available for download here: %s" => "%s möchte die Datei %s mit dir teilen. Sie liegt hier zum Download bereit: %s",
-"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "%s möchte das Verzeichnis %s mit dir teilen. Es liegt hier zum Download bereit: %s",
+"User %s shared a file with you" => "Der Nutzer %s hat eine Datei für Dich freigegeben",
+"User %s shared a folder with you" => "%s hat ein Verzeichnis für Dich freigegeben",
+"User %s shared the file \"%s\" with you. It is available for download here: %s" => "%s hat eine Datei \"%s\" für Dich freigegeben. Sie ist zum Download hier ferfügbar: %s",
+"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "%s hat eine Verzeichnis \"%s\" für Dich freigegeben. Es ist zum Download hier ferfügbar: %s",
"Category type not provided." => "Kategorie nicht angegeben.",
"No category to add?" => "Keine Kategorie hinzuzufügen?",
"This category already exists: " => "Kategorie existiert bereits:",
diff --git a/core/l10n/de_DE.php b/core/l10n/de_DE.php
index e32068f6db2..ed0bc0e0ffb 100644
--- a/core/l10n/de_DE.php
+++ b/core/l10n/de_DE.php
@@ -1,8 +1,8 @@
"Der Nutzer %s teilt eine Datei mit dir",
-"User %s shared a folder with you" => "Der Nutzer %s teilt einen Ordner mit dir",
-"User %s shared the file \"%s\" with you. It is available for download here: %s" => "Der Nutzer %s teilt die Datei \"%s\" mit dir. Du kannst diese hier herunterladen: %s",
-"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Der Nutzer %s teilt den Ornder \"%s\" mit dir. Du kannst diesen hier herunterladen: %s",
+"User %s shared a file with you" => "Der Nutzer %s hat eine Datei für Sie freigegeben",
+"User %s shared a folder with you" => "%s hat ein Verzeichnis für Sie freigegeben",
+"User %s shared the file \"%s\" with you. It is available for download here: %s" => "%s hat eine Datei \"%s\" für Sie freigegeben. Sie ist zum Download hier ferfügbar: %s",
+"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "%s hat eine Verzeichnis \"%s\" für Sie freigegeben. Es ist zum Download hier ferfügbar: %s",
"Category type not provided." => "Kategorie nicht angegeben.",
"No category to add?" => "Keine Kategorie hinzuzufügen?",
"This category already exists: " => "Kategorie existiert bereits:",
@@ -43,7 +43,7 @@
"Share with link" => "Über einen Link freigeben",
"Password protect" => "Passwortschutz",
"Password" => "Passwort",
-"Email link to person" => "Link per Mail an Person schicken",
+"Email link to person" => "Link per E-Mail verschicken",
"Send" => "Senden",
"Set expiration date" => "Setze ein Ablaufdatum",
"Expiration date" => "Ablaufdatum",
diff --git a/core/l10n/el.php b/core/l10n/el.php
index e01de9fdc2c..d8a5d7aef51 100644
--- a/core/l10n/el.php
+++ b/core/l10n/el.php
@@ -1,4 +1,8 @@
"Ο χρήστης %s διαμοιράστηκε ένα αρχείο με εσάς",
+"User %s shared a folder with you" => "Ο χρήστης %s διαμοιράστηκε ένα φάκελο με εσάς",
+"User %s shared the file \"%s\" with you. It is available for download here: %s" => "Ο χρήστης %s διαμοιράστηκε το αρχείο \"%s\" μαζί σας. Είναι διαθέσιμο για λήψη εδώ: %s",
+"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Ο χρήστης %s διαμοιράστηκε τον φάκελο \"%s\" μαζί σας. Είναι διαθέσιμος για λήψη εδώ: %s",
"Category type not provided." => "Δεν δώθηκε τύπος κατηγορίας.",
"No category to add?" => "Δεν έχετε κατηγορία να προσθέσετε;",
"This category already exists: " => "Αυτή η κατηγορία υπάρχει ήδη:",
@@ -39,6 +43,8 @@
"Share with link" => "Διαμοιρασμός με σύνδεσμο",
"Password protect" => "Προστασία συνθηματικού",
"Password" => "Συνθηματικό",
+"Email link to person" => "Αποστολή συνδέσμου με email ",
+"Send" => "Αποστολή",
"Set expiration date" => "Ορισμός ημ. λήξης",
"Expiration date" => "Ημερομηνία λήξης",
"Share via email:" => "Διαμοιρασμός μέσω email:",
@@ -55,6 +61,8 @@
"Password protected" => "Προστασία με συνθηματικό",
"Error unsetting expiration date" => "Σφάλμα κατά την διαγραφή της ημ. λήξης",
"Error setting expiration date" => "Σφάλμα κατά τον ορισμό ημ. λήξης",
+"Sending ..." => "Αποστολή...",
+"Email sent" => "Το Email απεστάλη ",
"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." => "Θα λάβετε ένα σύνδεσμο για να επαναφέρετε τον κωδικό πρόσβασής σας μέσω ηλεκτρονικού ταχυδρομείου.",
diff --git a/core/l10n/es_AR.php b/core/l10n/es_AR.php
index 2da7951b064..830281dabbe 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 f02a7b0087c..6b1449dd4ba 100644
--- a/core/l10n/fr.php
+++ b/core/l10n/fr.php
@@ -1,4 +1,8 @@
"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à : ",
@@ -39,6 +43,8 @@
"Share with link" => "Partager via lien",
"Password protect" => "Protéger par un mot de passe",
"Password" => "Mot de passe",
+"Email link to person" => "Envoyez le lien par email",
+"Send" => "Envoyer",
"Set expiration date" => "Spécifier la date d'expiration",
"Expiration date" => "Date d'expiration",
"Share via email:" => "Partager via e-mail :",
@@ -53,8 +59,10 @@
"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é",
"ownCloud password reset" => "Réinitialisation de votre mot de passe Owncloud",
"Use the following link to reset your password: {link}" => "Utilisez le lien suivant pour réinitialiser votre mot de passe : {link}",
"You will receive a link to reset your password via Email." => "Vous allez recevoir un e-mail contenant un lien pour réinitialiser votre mot de passe.",
@@ -75,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 4cdc39896b5..8daa8c6d1c4 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 d1bfb303e6f..1c86e8b11d6 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 23117cddf8b..53b2fe88839 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 7382a1e8398..4069e297a7b 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/nl.php b/core/l10n/nl.php
index 89bb322773d..c3f5c887658 100644
--- a/core/l10n/nl.php
+++ b/core/l10n/nl.php
@@ -1,4 +1,8 @@
"Gebruiker %s deelde een bestand met u",
+"User %s shared a folder with you" => "Gebruiker %s deelde een map met u",
+"User %s shared the file \"%s\" with you. It is available for download here: %s" => "Gebruiker %s deelde bestand \"%s\" met u. Het is hier te downloaden: %s",
+"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Gebruiker %s deelde de map \"%s\" met u. De map is hier beschikbaar voor download: %s",
"Category type not provided." => "Categorie type niet opgegeven.",
"No category to add?" => "Geen categorie toevoegen?",
"This category already exists: " => "Deze categorie bestaat al.",
@@ -39,6 +43,8 @@
"Share with link" => "Deel met link",
"Password protect" => "Wachtwoord beveiliging",
"Password" => "Wachtwoord",
+"Email link to person" => "E-mail link naar persoon",
+"Send" => "Versturen",
"Set expiration date" => "Stel vervaldatum in",
"Expiration date" => "Vervaldatum",
"Share via email:" => "Deel via email:",
@@ -55,6 +61,8 @@
"Password protected" => "Wachtwoord beveiligd",
"Error unsetting expiration date" => "Fout tijdens het verwijderen van de verval datum",
"Error setting expiration date" => "Fout tijdens het instellen van de vervaldatum",
+"Sending ..." => "Versturen ...",
+"Email sent" => "E-mail verzonden",
"ownCloud password reset" => "ownCloud wachtwoord herstellen",
"Use the following link to reset your password: {link}" => "Gebruik de volgende link om je wachtwoord te resetten: {link}",
"You will receive a link to reset your password via Email." => "U ontvangt een link om uw wachtwoord opnieuw in te stellen via e-mail.",
diff --git a/core/l10n/ro.php b/core/l10n/ro.php
index 560ef5b9fc8..1c58e5fe2be 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/ru_RU.php b/core/l10n/ru_RU.php
index 3d67179c14e..c18fe245c9e 100644
--- a/core/l10n/ru_RU.php
+++ b/core/l10n/ru_RU.php
@@ -43,6 +43,7 @@
"Share with link" => "Опубликовать с ссылкой",
"Password protect" => "Защитить паролем",
"Password" => "Пароль",
+"Email link to person" => "Ссылка на адрес электронной почты",
"Send" => "Отправить",
"Set expiration date" => "Установить срок действия",
"Expiration date" => "Дата истечения срока действия",
diff --git a/core/l10n/sv.php b/core/l10n/sv.php
index b06ccb199c6..a7698fb30ce 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 cb0df023993..86036e5ebd1 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/l10n/zh_CN.php b/core/l10n/zh_CN.php
index a83382904d3..64b108ca1dd 100644
--- a/core/l10n/zh_CN.php
+++ b/core/l10n/zh_CN.php
@@ -1,4 +1,8 @@
"用户 %s 与您共享了一个文件",
+"User %s shared a folder with you" => "用户 %s 与您共享了一个文件夹",
+"User %s shared the file \"%s\" with you. It is available for download here: %s" => "用户 %s 与您共享了文件\"%s\"。文件下载地址:%s",
+"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "用户 %s 与您共享了文件夹\"%s\"。文件夹下载地址:%s",
"Category type not provided." => "未提供分类类型。",
"No category to add?" => "没有可添加分类?",
"This category already exists: " => "此分类已存在: ",
@@ -39,6 +43,7 @@
"Share with link" => "共享链接",
"Password protect" => "密码保护",
"Password" => "密码",
+"Send" => "发送",
"Set expiration date" => "设置过期日期",
"Expiration date" => "过期日期",
"Share via email:" => "通过Email共享",
@@ -55,6 +60,8 @@
"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." => "您将会收到包含可以重置密码链接的邮件。",
diff --git a/core/lostpassword/controller.php b/core/lostpassword/controller.php
index e64b16d3b83..3ef8eaf71aa 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/update.php b/core/templates/update.php
new file mode 100644
index 00000000000..c9f3144f257
--- /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/l10n/ar/core.po b/l10n/ar/core.po
index 4671747f750..0785bd05e65 100644
--- a/l10n/ar/core.po
+++ b/l10n/ar/core.po
@@ -3,14 +3,15 @@
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
+# , 2012.
# , 2011, 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"
-"Last-Translator: I Robot \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"
"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"
@@ -48,11 +49,11 @@ msgstr ""
#: ajax/vcategories/add.php:30
msgid "No category to add?"
-msgstr ""
+msgstr "ألا توجد فئة للإضافة؟"
#: ajax/vcategories/add.php:37
msgid "This category already exists: "
-msgstr ""
+msgstr "هذه الفئة موجودة مسبقاً"
#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27
#: ajax/vcategories/favorites.php:24
@@ -73,7 +74,7 @@ msgstr ""
#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136
msgid "No categories selected for deletion."
-msgstr ""
+msgstr "لم يتم اختيار فئة للحذف"
#: ajax/vcategories/removeFromFavorites.php:35
#, php-format
@@ -86,15 +87,15 @@ msgstr "تعديلات"
#: js/js.js:704
msgid "seconds ago"
-msgstr ""
+msgstr "منذ ثواني"
#: js/js.js:705
msgid "1 minute ago"
-msgstr ""
+msgstr "منذ دقيقة"
#: js/js.js:706
msgid "{minutes} minutes ago"
-msgstr ""
+msgstr "{minutes} منذ دقائق"
#: js/js.js:707
msgid "1 hour ago"
@@ -106,7 +107,7 @@ msgstr ""
#: js/js.js:709
msgid "today"
-msgstr ""
+msgstr "اليوم"
#: js/js.js:710
msgid "yesterday"
@@ -138,7 +139,7 @@ msgstr ""
#: js/oc-dialogs.js:126
msgid "Choose"
-msgstr ""
+msgstr "اختيار"
#: js/oc-dialogs.js:146 js/oc-dialogs.js:166
msgid "Cancel"
@@ -146,15 +147,15 @@ msgstr "الغاء"
#: js/oc-dialogs.js:162
msgid "No"
-msgstr ""
+msgstr "لا"
#: js/oc-dialogs.js:163
msgid "Yes"
-msgstr ""
+msgstr "نعم"
#: js/oc-dialogs.js:180
msgid "Ok"
-msgstr ""
+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
@@ -162,10 +163,10 @@ 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 ""
+msgstr "خطأ"
#: js/oc-vcategories.js:179
msgid "The app name is not specified."
@@ -175,39 +176,39 @@ 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 ""
+msgstr "حصل خطأ عند عملية المشاركة"
#: js/share.js:135
msgid "Error while unsharing"
-msgstr ""
+msgstr "حصل خطأ عند عملية إزالة المشاركة"
#: js/share.js:142
msgid "Error while changing permissions"
-msgstr ""
+msgstr "حصل خطأ عند عملية إعادة تعيين التصريح بالتوصل"
#: js/share.js:151
msgid "Shared with you and the group {group} by {owner}"
-msgstr ""
+msgstr "شورك معك ومع المجموعة {group} من قبل {owner}"
#: js/share.js:153
msgid "Shared with you by {owner}"
-msgstr ""
+msgstr "شورك معك من قبل {owner}"
#: js/share.js:158
msgid "Share with"
-msgstr ""
+msgstr "شارك مع"
#: js/share.js:163
msgid "Share with link"
-msgstr ""
+msgstr "شارك مع رابط"
-#: js/share.js:164
+#: js/share.js:166
msgid "Password protect"
-msgstr ""
+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 "كلمة السر"
@@ -222,27 +223,27 @@ msgstr ""
#: js/share.js:177
msgid "Set expiration date"
-msgstr ""
+msgstr "تعيين تاريخ إنتهاء الصلاحية"
#: js/share.js:178
msgid "Expiration date"
-msgstr ""
+msgstr "تاريخ إنتهاء الصلاحية"
#: js/share.js:210
msgid "Share via email:"
-msgstr ""
+msgstr "مشاركة عبر البريد الإلكتروني:"
#: js/share.js:212
msgid "No people found"
-msgstr ""
+msgstr "لم يتم العثور على أي شخص"
#: js/share.js:239
msgid "Resharing is not allowed"
-msgstr ""
+msgstr "لا يسمح بعملية إعادة المشاركة"
#: js/share.js:275
msgid "Shared in {item} with {user}"
-msgstr ""
+msgstr "شورك في {item} مع {user}"
#: js/share.js:296
msgid "Unshare"
@@ -250,51 +251,51 @@ msgstr "إلغاء مشاركة"
#: js/share.js:308
msgid "can edit"
-msgstr ""
+msgstr "التحرير مسموح"
#: js/share.js:310
msgid "access control"
-msgstr ""
+msgstr "ضبط الوصول"
#: js/share.js:313
msgid "create"
-msgstr ""
+msgstr "إنشاء"
#: js/share.js:316
msgid "update"
-msgstr ""
+msgstr "تحديث"
#: js/share.js:319
msgid "delete"
-msgstr ""
+msgstr "حذف"
#: js/share.js:322
msgid "share"
-msgstr ""
+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 ""
+msgstr "محمي بكلمة السر"
-#: js/share.js:541
+#: js/share.js:554
msgid "Error unsetting expiration date"
-msgstr ""
+msgstr "حصل خطأ عند عملية إزالة تاريخ إنتهاء الصلاحية"
-#: js/share.js:553
+#: js/share.js:566
msgid "Error setting expiration date"
-msgstr ""
+msgstr "حصل خطأ عند عملية تعيين تاريخ إنتهاء الصلاحية"
-#: js/share.js:568
+#: js/share.js:581
msgid "Sending ..."
msgstr ""
-#: js/share.js:579
+#: js/share.js:592
msgid "Email sent"
msgstr ""
#: lostpassword/controller.php:47
msgid "ownCloud password reset"
-msgstr ""
+msgstr "إعادة تعيين كلمة سر ownCloud"
#: lostpassword/templates/email.php:2
msgid "Use the following link to reset your password: {link}"
@@ -306,14 +307,14 @@ msgstr "سوف نرسل لك بريد يحتوي على وصلة لتجديد ك
#: lostpassword/templates/lostpassword.php:5
msgid "Reset email send."
-msgstr ""
+msgstr "إعادة إرسال البريد الإلكتروني."
#: lostpassword/templates/lostpassword.php:8
msgid "Request failed!"
-msgstr ""
+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 "إسم المستخدم"
@@ -359,7 +360,7 @@ msgstr "المساعدة"
#: templates/403.php:12
msgid "Access forbidden"
-msgstr ""
+msgstr "التوصّل محظور"
#: templates/404.php:12
msgid "Cloud not found"
@@ -375,13 +376,13 @@ msgstr "أدخل"
#: templates/installation.php:23 templates/installation.php:31
msgid "Security Warning"
-msgstr ""
+msgstr "تحذير أمان"
#: templates/installation.php:24
msgid ""
"No secure random number generator is available, please enable the PHP "
"OpenSSL extension."
-msgstr ""
+msgstr "لا يوجد مولّد أرقام عشوائية ، الرجاء تفعيل الـ PHP OpenSSL extension."
#: templates/installation.php:26
msgid ""
@@ -402,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 ""
+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 +528,29 @@ msgstr "خدمات الوب تحت تصرفك"
msgid "Log out"
msgstr "الخروج"
-#: templates/login.php:8
+#: templates/login.php:10
msgid "Automatic logon rejected!"
-msgstr ""
+msgstr "تم رفض تسجيل الدخول التلقائي!"
-#: templates/login.php:9
+#: templates/login.php:11
msgid ""
"If you did not change your password recently, your account may be "
"compromised!"
-msgstr ""
+msgstr "قد يكون حسابك في خطر إن لم تقم بإعادة تعيين كلمة السر حديثاً"
-#: templates/login.php:10
+#: templates/login.php:13
msgid "Please change your password to secure your account again."
-msgstr ""
+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 "أدخل"
@@ -567,14 +568,14 @@ msgstr "التالي"
#: templates/verify.php:5
msgid "Security Warning!"
-msgstr ""
+msgstr "تحذير أمان!"
#: templates/verify.php:6
msgid ""
"Please verify your password. For security reasons you may be "
"occasionally asked to enter your password again."
-msgstr ""
+msgstr "الرجاء التحقق من كلمة السر. من الممكن أحياناً أن نطلب منك إعادة إدخال كلمة السر مرة أخرى."
#: templates/verify.php:16
msgid "Verify"
-msgstr ""
+msgstr "تحقيق"
diff --git a/l10n/ar/files.po b/l10n/ar/files.po
index 2f8cead51f3..5d25164f500 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-04 13:22+0100\n"
+"PO-Revision-Date: 2013-01-04 12:22+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,39 +77,39 @@ 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 ""
@@ -107,80 +119,80 @@ msgid ""
"allowed."
msgstr ""
-#: js/files.js:183
+#: js/files.js:174
msgid "generating ZIP-file, it may take some time."
msgstr ""
-#: js/files.js:218
+#: js/files.js:212
msgid "Unable to upload your file as it is a directory or has 0 bytes"
msgstr ""
-#: js/files.js:218
+#: js/files.js:212
msgid "Upload Error"
msgstr ""
-#: js/files.js:235
+#: js/files.js:229
msgid "Close"
msgstr "إغلق"
-#: js/files.js:254 js/files.js:368 js/files.js:398
+#: js/files.js:248 js/files.js:362 js/files.js:392
msgid "Pending"
msgstr ""
-#: js/files.js:274
+#: js/files.js:268
msgid "1 file uploading"
msgstr ""
-#: js/files.js:277 js/files.js:331 js/files.js:346
+#: js/files.js:271 js/files.js:325 js/files.js:340
msgid "{count} files uploading"
msgstr ""
-#: js/files.js:349 js/files.js:382
+#: js/files.js:343 js/files.js:376
msgid "Upload cancelled."
msgstr ""
-#: js/files.js:451
+#: js/files.js:445
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr ""
-#: js/files.js:523
+#: js/files.js:515
msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud"
msgstr ""
-#: js/files.js:704
+#: js/files.js:699
msgid "{count} files scanned"
msgstr ""
-#: js/files.js:712
+#: js/files.js:707
msgid "error while scanning"
msgstr ""
-#: js/files.js:785 templates/index.php:65
+#: js/files.js:780 templates/index.php:66
msgid "Name"
msgstr "الاسم"
-#: js/files.js:786 templates/index.php:76
+#: js/files.js:781 templates/index.php:77
msgid "Size"
msgstr "حجم"
-#: js/files.js:787 templates/index.php:78
+#: js/files.js:782 templates/index.php:79
msgid "Modified"
msgstr "معدل"
-#: js/files.js:814
+#: js/files.js:801
msgid "1 folder"
msgstr ""
-#: js/files.js:816
+#: js/files.js:803
msgid "{count} folders"
msgstr ""
-#: js/files.js:824
+#: js/files.js:811
msgid "1 file"
msgstr ""
-#: js/files.js:826
+#: js/files.js:813
msgid "{count} files"
msgstr ""
@@ -192,27 +204,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 +252,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/files_sharing.po b/l10n/ar/files_sharing.po
index 4c6c7c44821..92546656f2f 100644
--- a/l10n/ar/files_sharing.po
+++ b/l10n/ar/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-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-23 00:09+0100\n"
+"PO-Revision-Date: 2012-12-22 19:42+0000\n"
+"Last-Translator: aboodilankaboot \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"
@@ -19,30 +20,30 @@ msgstr ""
#: templates/authenticate.php:4
msgid "Password"
-msgstr ""
+msgstr "كلمة المرور"
#: templates/authenticate.php:6
msgid "Submit"
-msgstr ""
+msgstr "تطبيق"
-#: templates/public.php:9
+#: templates/public.php:17
#, php-format
msgid "%s shared the folder %s with you"
-msgstr ""
+msgstr "%s شارك المجلد %s معك"
-#: templates/public.php:11
+#: templates/public.php:19
#, php-format
msgid "%s shared the file %s with you"
-msgstr ""
+msgstr "%s شارك الملف %s معك"
-#: templates/public.php:14 templates/public.php:30
+#: templates/public.php:22 templates/public.php:38
msgid "Download"
-msgstr ""
+msgstr "تحميل"
-#: templates/public.php:29
+#: templates/public.php:37
msgid "No preview available for"
-msgstr ""
+msgstr "لا يوجد عرض مسبق لـ"
-#: templates/public.php:37
+#: templates/public.php:43
msgid "web services under your control"
-msgstr ""
+msgstr "خدمات الشبكة تحت سيطرتك"
diff --git a/l10n/ar/files_versions.po b/l10n/ar/files_versions.po
index 850b57a0081..3b32ba6301d 100644
--- a/l10n/ar/files_versions.po
+++ b/l10n/ar/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-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-23 00:09+0100\n"
+"PO-Revision-Date: 2012-12-22 19:47+0000\n"
+"Last-Translator: aboodilankaboot \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"
@@ -17,26 +18,26 @@ 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"
-#: 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 "إنهاء تاريخ الإنتهاء لجميع الإصدارات"
#: js/versions.js:16
msgid "History"
-msgstr ""
+msgstr "السجل الزمني"
#: templates/settings-personal.php:4
msgid "Versions"
-msgstr ""
+msgstr "الإصدارات"
-#: templates/settings-personal.php:7
+#: templates/settings-personal.php:10
msgid "This will delete all existing backup versions of your files"
-msgstr ""
+msgstr "هذه العملية ستقوم بإلغاء جميع إصدارات النسخ الاحتياطي للملفات"
#: templates/settings.php:3
msgid "Files Versioning"
-msgstr ""
+msgstr "أصدرة الملفات"
#: templates/settings.php:4
msgid "Enable"
-msgstr ""
+msgstr "تفعيل"
diff --git a/l10n/ar/lib.po b/l10n/ar/lib.po
index fc9b90e3d69..6a9cdf2b15b 100644
--- a/l10n/ar/lib.po
+++ b/l10n/ar/lib.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-11-16 00:02+0100\n"
-"PO-Revision-Date: 2012-11-14 23:13+0000\n"
+"POT-Creation-Date: 2012-12-24 00:11+0100\n"
+"PO-Revision-Date: 2012-12-23 19:00+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n"
"MIME-Version: 1.0\n"
@@ -17,43 +17,43 @@ msgstr ""
"Language: ar\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
-#: app.php:285
+#: app.php:287
msgid "Help"
msgstr "المساعدة"
-#: app.php:292
+#: app.php:294
msgid "Personal"
msgstr "شخصي"
-#: app.php:297
+#: app.php:299
msgid "Settings"
msgstr "تعديلات"
-#: app.php:302
+#: app.php:304
msgid "Users"
msgstr "المستخدمين"
-#: app.php:309
+#: app.php:311
msgid "Apps"
msgstr ""
-#: app.php:311
+#: app.php:313
msgid "Admin"
msgstr ""
-#: files.php:332
+#: files.php:365
msgid "ZIP download is turned off."
msgstr ""
-#: files.php:333
+#: files.php:366
msgid "Files need to be downloaded one by one."
msgstr ""
-#: files.php:333 files.php:358
+#: files.php:366 files.php:391
msgid "Back to Files"
msgstr ""
-#: files.php:357
+#: files.php:390
msgid "Selected files too large to generate zip file."
msgstr ""
@@ -83,11 +83,11 @@ msgstr ""
#: template.php:103
msgid "seconds ago"
-msgstr ""
+msgstr "منذ ثواني"
#: template.php:104
msgid "1 minute ago"
-msgstr ""
+msgstr "منذ دقيقة"
#: template.php:105
#, php-format
@@ -105,7 +105,7 @@ msgstr ""
#: template.php:108
msgid "today"
-msgstr ""
+msgstr "اليوم"
#: template.php:109
msgid "yesterday"
diff --git a/l10n/ar/settings.po b/l10n/ar/settings.po
index 4ccf4fd4202..a800f4eef21 100644
--- a/l10n/ar/settings.po
+++ b/l10n/ar/settings.po
@@ -4,13 +4,14 @@
#
# Translators:
# , 2012.
+# , 2012.
# , 2011, 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"
+"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"
@@ -21,27 +22,27 @@ msgstr ""
#: ajax/apps/ocs.php:20
msgid "Unable to load list from App Store"
-msgstr ""
+msgstr "فشل تحميل القائمة من الآب ستور"
#: ajax/creategroup.php:10
msgid "Group already exists"
-msgstr ""
+msgstr "المجموعة موجودة مسبقاً"
#: ajax/creategroup.php:19
msgid "Unable to add group"
-msgstr ""
+msgstr "فشل إضافة المجموعة"
#: ajax/enableapp.php:12
msgid "Could not enable app. "
-msgstr ""
+msgstr "فشل عملية تفعيل التطبيق"
#: ajax/lostpassword.php:12
msgid "Email saved"
-msgstr ""
+msgstr "تم حفظ البريد الإلكتروني"
#: ajax/lostpassword.php:14
msgid "Invalid email"
-msgstr ""
+msgstr "البريد الإلكتروني غير صالح"
#: ajax/openid.php:13
msgid "OpenID Changed"
@@ -53,7 +54,7 @@ msgstr "طلبك غير مفهوم"
#: ajax/removegroup.php:13
msgid "Unable to delete group"
-msgstr ""
+msgstr "فشل إزالة المجموعة"
#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18
msgid "Authentication error"
@@ -61,7 +62,7 @@ msgstr "لم يتم التأكد من الشخصية بنجاح"
#: ajax/removeuser.php:24
msgid "Unable to delete user"
-msgstr ""
+msgstr "فشل إزالة المستخدم"
#: ajax/setlanguage.php:15
msgid "Language changed"
@@ -69,25 +70,25 @@ msgstr "تم تغيير اللغة"
#: ajax/togglegroups.php:12
msgid "Admins can't remove themself from the admin group"
-msgstr ""
+msgstr "لا يستطيع المدير إزالة حسابه من مجموعة المديرين"
#: ajax/togglegroups.php:28
#, php-format
msgid "Unable to add user to group %s"
-msgstr ""
+msgstr "فشل إضافة المستخدم الى المجموعة %s"
#: ajax/togglegroups.php:34
#, php-format
msgid "Unable to remove user from group %s"
-msgstr ""
+msgstr "فشل إزالة المستخدم من المجموعة %s"
#: js/apps.js:28 js/apps.js:67
msgid "Disable"
-msgstr ""
+msgstr "إيقاف"
#: js/apps.js:28 js/apps.js:55
msgid "Enable"
-msgstr ""
+msgstr "تفعيل"
#: js/personal.js:69
msgid "Saving..."
@@ -99,11 +100,11 @@ msgstr "__language_name__"
#: templates/apps.php:10
msgid "Add your App"
-msgstr ""
+msgstr "أضف تطبيقاتك"
#: templates/apps.php:11
msgid "More Apps"
-msgstr ""
+msgstr "المزيد من التطبيقات"
#: templates/apps.php:27
msgid "Select an App"
@@ -111,64 +112,64 @@ msgstr "إختر تطبيقاً"
#: templates/apps.php:31
msgid "See application page at apps.owncloud.com"
-msgstr ""
+msgstr "راجع صفحة التطبيق على apps.owncloud.com"
#: templates/apps.php:32
msgid "-licensed by "
-msgstr ""
+msgstr "-ترخيص من قبل "
#: templates/help.php:3
msgid "User Documentation"
-msgstr ""
+msgstr "كتاب توثيق المستخدم"
#: templates/help.php:4
msgid "Administrator Documentation"
-msgstr ""
+msgstr "كتاب توثيق المدير"
#: templates/help.php:6
msgid "Online Documentation"
-msgstr ""
+msgstr "توثيق متوفر على الشبكة"
#: templates/help.php:7
msgid "Forum"
-msgstr ""
+msgstr "منتدى"
#: templates/help.php:9
msgid "Bugtracker"
-msgstr ""
+msgstr "تعقب علة"
#: templates/help.php:11
msgid "Commercial Support"
-msgstr ""
+msgstr "دعم تجاري"
#: templates/personal.php:8
#, php-format
msgid "You have used %s of the available %s"
-msgstr ""
+msgstr "تم إستهلاك %s من المتوفر %s"
#: templates/personal.php:12
msgid "Clients"
-msgstr ""
+msgstr "الزبائن"
#: templates/personal.php:13
msgid "Download Desktop Clients"
-msgstr ""
+msgstr "تحميل عملاء سطح المكتب"
#: templates/personal.php:14
msgid "Download Android Client"
-msgstr ""
+msgstr "تحميل عميل آندرويد"
#: templates/personal.php:15
msgid "Download iOS Client"
-msgstr ""
+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 "كلمات السر"
#: templates/personal.php:22
msgid "Your password was changed"
-msgstr ""
+msgstr "لقد تم تغيير كلمة السر"
#: templates/personal.php:23
msgid "Unable to change your password"
@@ -212,15 +213,15 @@ msgstr "ساعد في الترجمه"
#: 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 "إستخدم هذا العنوان للإتصال بـ ownCloud في مدير الملفات"
#: templates/personal.php:63
msgid "Version"
-msgstr ""
+msgstr "إصدار"
#: templates/personal.php:65
msgid ""
@@ -230,13 +231,13 @@ msgid ""
"licensed under the AGPL."
-msgstr ""
+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 "مجموعات"
@@ -245,21 +246,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:87
+msgid "Storage"
msgstr ""
-#: templates/users.php:82
-msgid "Quota"
-msgstr "حصه"
+#: templates/users.php:133
+msgid "Default"
+msgstr ""
-#: templates/users.php:146
+#: templates/users.php:161
msgid "Delete"
msgstr "حذف"
diff --git a/l10n/ar/user_ldap.po b/l10n/ar/user_ldap.po
index 6a78dcfd054..7aaa90abe9a 100644
--- a/l10n/ar/user_ldap.po
+++ b/l10n/ar/user_ldap.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-12-15 00:11+0100\n"
-"PO-Revision-Date: 2012-12-14 23:11+0000\n"
+"POT-Creation-Date: 2012-12-23 00:09+0100\n"
+"PO-Revision-Date: 2012-12-22 19:40+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"
@@ -60,7 +60,7 @@ msgstr ""
#: templates/settings.php:18
msgid "Password"
-msgstr ""
+msgstr "كلمة المرور"
#: templates/settings.php:18
msgid "For anonymous access, leave DN and Password empty."
diff --git a/l10n/ar/user_webdavauth.po b/l10n/ar/user_webdavauth.po
index 1d788f23767..ac1aa5b4a5e 100644
--- a/l10n/ar/user_webdavauth.po
+++ b/l10n/ar/user_webdavauth.po
@@ -4,13 +4,14 @@
#
# Translators:
# , 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-23 00:09+0100\n"
+"PO-Revision-Date: 2012-12-22 19:22+0000\n"
+"Last-Translator: aboodilankaboot \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"
@@ -20,7 +21,7 @@ msgstr ""
#: templates/settings.php:4
msgid "URL: http://"
-msgstr ""
+msgstr "الرابط: http://"
#: templates/settings.php:6
msgid ""
diff --git a/l10n/bg_BG/files.po b/l10n/bg_BG/files.po
index aec7865e431..9ef621af1e6 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-04 13:22+0100\n"
+"PO-Revision-Date: 2013-01-04 12:22+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,39 +78,39 @@ 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 ""
@@ -108,80 +120,80 @@ msgid ""
"allowed."
msgstr ""
-#: js/files.js:183
+#: js/files.js:174
msgid "generating ZIP-file, it may take some time."
msgstr ""
-#: js/files.js:218
+#: js/files.js:212
msgid "Unable to upload your file as it is a directory or has 0 bytes"
msgstr ""
-#: js/files.js:218
+#: js/files.js:212
msgid "Upload Error"
msgstr "Грешка при качване"
-#: js/files.js:235
+#: js/files.js:229
msgid "Close"
msgstr ""
-#: js/files.js:254 js/files.js:368 js/files.js:398
+#: js/files.js:248 js/files.js:362 js/files.js:392
msgid "Pending"
msgstr ""
-#: js/files.js:274
+#: js/files.js:268
msgid "1 file uploading"
msgstr ""
-#: js/files.js:277 js/files.js:331 js/files.js:346
+#: js/files.js:271 js/files.js:325 js/files.js:340
msgid "{count} files uploading"
msgstr ""
-#: js/files.js:349 js/files.js:382
+#: js/files.js:343 js/files.js:376
msgid "Upload cancelled."
msgstr "Качването е отменено."
-#: js/files.js:451
+#: js/files.js:445
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr ""
-#: js/files.js:523
+#: js/files.js:515
msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud"
msgstr ""
-#: js/files.js:704
+#: js/files.js:699
msgid "{count} files scanned"
msgstr ""
-#: js/files.js:712
+#: js/files.js:707
msgid "error while scanning"
msgstr ""
-#: js/files.js:785 templates/index.php:65
+#: js/files.js:780 templates/index.php:66
msgid "Name"
msgstr "Име"
-#: js/files.js:786 templates/index.php:76
+#: js/files.js:781 templates/index.php:77
msgid "Size"
msgstr "Размер"
-#: js/files.js:787 templates/index.php:78
+#: js/files.js:782 templates/index.php:79
msgid "Modified"
msgstr "Променено"
-#: js/files.js:814
+#: js/files.js:801
msgid "1 folder"
msgstr ""
-#: js/files.js:816
+#: js/files.js:803
msgid "{count} folders"
msgstr ""
-#: js/files.js:824
+#: js/files.js:811
msgid "1 file"
msgstr ""
-#: js/files.js:826
+#: js/files.js:813
msgid "{count} files"
msgstr ""
@@ -193,27 +205,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 +253,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 76380b18681..37e75b3725c 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-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: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n"
"MIME-Version: 1.0\n"
@@ -149,7 +149,7 @@ msgstr ""
#: templates/personal.php:12
msgid "Clients"
-msgstr ""
+msgstr "Клиенти"
#: templates/personal.php:13
msgid "Download Desktop Clients"
@@ -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:42 templates/users.php:138
+msgid "Unlimited"
+msgstr ""
-#: templates/users.php:55 templates/users.php:138
+#: 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:133
+msgid "Default"
+msgstr ""
-#: templates/users.php:146
+#: 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 00000000000..76af85b64d8
--- /dev/null
+++ b/l10n/bn_BD/core.po
@@ -0,0 +1,580 @@
+# 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:32+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/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/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 00000000000..9954cd477fd
--- /dev/null
+++ b/l10n/bn_BD/files.po
@@ -0,0 +1,279 @@
+# 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-04 13:22+0100\n"
+"PO-Revision-Date: 2013-01-04 12:22+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:33
+msgid ""
+"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not "
+"allowed."
+msgstr ""
+
+#: js/files.js:174
+msgid "generating ZIP-file, it may take some time."
+msgstr ""
+
+#: js/files.js:212
+msgid "Unable to upload your file as it is a directory or has 0 bytes"
+msgstr ""
+
+#: js/files.js:212
+msgid "Upload Error"
+msgstr "আপলোড করতে সমস্যা"
+
+#: js/files.js:229
+msgid "Close"
+msgstr ""
+
+#: js/files.js:248 js/files.js:362 js/files.js:392
+msgid "Pending"
+msgstr "মুলতুবি"
+
+#: js/files.js:268
+msgid "1 file uploading"
+msgstr "১ টি ফাইল আপলোড করা হচ্ছে"
+
+#: js/files.js:271 js/files.js:325 js/files.js:340
+msgid "{count} files uploading"
+msgstr ""
+
+#: js/files.js:343 js/files.js:376
+msgid "Upload cancelled."
+msgstr "আপলোড বাতিল করা হয়েছে ।"
+
+#: js/files.js:445
+msgid ""
+"File upload is in progress. Leaving the page now will cancel the upload."
+msgstr ""
+
+#: js/files.js:515
+msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud"
+msgstr ""
+
+#: js/files.js:699
+msgid "{count} files scanned"
+msgstr ""
+
+#: js/files.js:707
+msgid "error while scanning"
+msgstr "স্ক্যান করার সময় সমস্যা দেখা দিয়েছে"
+
+#: js/files.js:780 templates/index.php:66
+msgid "Name"
+msgstr "নাম"
+
+#: js/files.js:781 templates/index.php:77
+msgid "Size"
+msgstr "আকার"
+
+#: js/files.js:782 templates/index.php:79
+msgid "Modified"
+msgstr "পরিবর্তিত"
+
+#: js/files.js:801
+msgid "1 folder"
+msgstr ""
+
+#: js/files.js:803
+msgid "{count} folders"
+msgstr ""
+
+#: js/files.js:811
+msgid "1 file"
+msgstr ""
+
+#: js/files.js:813
+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 00000000000..da32933e271
--- /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 00000000000..601f3807ce2
--- /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 00000000000..69c55d62484
--- /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 00000000000..9f543cad59e
--- /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 00000000000..184ae9bb05d
--- /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 00000000000..de192ed72c9
--- /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 00000000000..509354b9d66
--- /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 00000000000..3aa6ccffca6
--- /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 0ce863841d7..9fd20a8ef12 100644
--- a/l10n/ca/core.po
+++ b/l10n/ca/core.po
@@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-12-14 00:16+0100\n"
-"PO-Revision-Date: 2012-12-13 09:48+0000\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"
"Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n"
"MIME-Version: 1.0\n"
@@ -163,8 +163,8 @@ msgid "The object type is not specified."
msgstr "No s'ha especificat el tipus d'objecte."
#: 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"
@@ -174,9 +174,9 @@ msgstr "No s'ha especificat el nom de l'aplicació."
#: js/oc-vcategories.js:194
msgid "The required file {file} is not installed!"
-msgstr "El figtxer requerit {file} no està instal·lat!"
+msgstr "El fitxer requerit {file} no està instal·lat!"
-#: js/share.js:124 js/share.js:581
+#: js/share.js:124 js/share.js:594
msgid "Error while sharing"
msgstr "Error en compartir"
@@ -204,11 +204,11 @@ msgstr "Comparteix amb"
msgid "Share with link"
msgstr "Comparteix amb enllaç"
-#: js/share.js:164
+#: js/share.js:166
msgid "Password protect"
msgstr "Protegir amb contrasenya"
-#: 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 "Contrasenya"
@@ -273,23 +273,23 @@ msgstr "elimina"
msgid "share"
msgstr "comparteix"
-#: js/share.js:353 js/share.js:528 js/share.js:530
+#: js/share.js:356 js/share.js:541
msgid "Password protected"
msgstr "Protegeix amb contrasenya"
-#: js/share.js:541
+#: js/share.js:554
msgid "Error unsetting expiration date"
msgstr "Error en eliminar la data d'expiració"
-#: js/share.js:553
+#: js/share.js:566
msgid "Error setting expiration date"
msgstr "Error en establir la data d'expiració"
-#: js/share.js:568
+#: js/share.js:581
msgid "Sending ..."
msgstr "Enviant..."
-#: js/share.js:579
+#: js/share.js:592
msgid "Email sent"
msgstr "El correu electrónic s'ha enviat"
@@ -313,8 +313,8 @@ msgstr "S'ha enviat el correu reinicialització"
msgid "Request failed!"
msgstr "El requeriment ha fallat!"
-#: 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 "Nom d'usuari"
@@ -403,44 +403,44 @@ msgstr "La carpeta de dades i els fitxers provablement són accessibles des d'in
msgid "Create an admin account"
msgstr "Crea un compte d'administrador"
-#: templates/installation.php:48
+#: templates/installation.php:50
msgid "Advanced"
msgstr "Avançat"
-#: templates/installation.php:50
+#: templates/installation.php:52
msgid "Data folder"
msgstr "Carpeta de dades"
-#: templates/installation.php:57
+#: templates/installation.php:59
msgid "Configure the database"
msgstr "Configura la base de dades"
-#: 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 "s'usarà"
-#: templates/installation.php:105
+#: templates/installation.php:107
msgid "Database user"
msgstr "Usuari de la base de dades"
-#: templates/installation.php:109
+#: templates/installation.php:111
msgid "Database password"
msgstr "Contrasenya de la base de dades"
-#: templates/installation.php:113
+#: templates/installation.php:115
msgid "Database name"
msgstr "Nom de la base de dades"
-#: templates/installation.php:121
+#: templates/installation.php:123
msgid "Database tablespace"
msgstr "Espai de taula de la base de dades"
-#: templates/installation.php:127
+#: templates/installation.php:129
msgid "Database host"
msgstr "Ordinador central de la base de dades"
-#: templates/installation.php:132
+#: templates/installation.php:134
msgid "Finish setup"
msgstr "Acaba la configuració"
@@ -528,29 +528,29 @@ msgstr "controleu els vostres serveis web"
msgid "Log out"
msgstr "Surt"
-#: templates/login.php:8
+#: templates/login.php:10
msgid "Automatic logon rejected!"
msgstr "L'ha rebutjat l'acceditació 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 no heu canviat la contrasenya recentment el vostre compte pot estar compromès!"
-#: templates/login.php:10
+#: templates/login.php:13
msgid "Please change your password to secure your account again."
msgstr "Canvieu la contrasenya de nou per assegurar el vostre compte."
-#: templates/login.php:15
+#: templates/login.php:19
msgid "Lost your password?"
msgstr "Heu perdut la contrasenya?"
-#: templates/login.php:27
+#: templates/login.php:39
msgid "remember"
msgstr "recorda'm"
-#: templates/login.php:28
+#: templates/login.php:41
msgid "Log in"
msgstr "Inici de sessió"
diff --git a/l10n/ca/files.po b/l10n/ca/files.po
index 478d4fded6c..c3c57eb4cd1 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-05 00:02+0100\n"
+"PO-Revision-Date: 2013-01-04 14:32+0000\n"
+"Last-Translator: aseques \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,39 +82,39 @@ 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}"
@@ -111,80 +124,80 @@ msgid ""
"allowed."
msgstr "El nóm no és vàlid, '\\', '/', '<', '>', ':', '\"', '|', '?' i '*' no estan permesos."
-#: js/files.js:183
+#: js/files.js:174
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:212
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:212
msgid "Upload Error"
msgstr "Error en la pujada"
-#: js/files.js:235
+#: js/files.js:229
msgid "Close"
msgstr "Tanca"
-#: js/files.js:254 js/files.js:368 js/files.js:398
+#: js/files.js:248 js/files.js:362 js/files.js:392
msgid "Pending"
msgstr "Pendents"
-#: js/files.js:274
+#: js/files.js:268
msgid "1 file uploading"
msgstr "1 fitxer pujant"
-#: js/files.js:277 js/files.js:331 js/files.js:346
+#: js/files.js:271 js/files.js:325 js/files.js:340
msgid "{count} files uploading"
msgstr "{count} fitxers en pujada"
-#: js/files.js:349 js/files.js:382
+#: js/files.js:343 js/files.js:376
msgid "Upload cancelled."
msgstr "La pujada s'ha cancel·lat."
-#: js/files.js:451
+#: js/files.js:445
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:515
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:699
msgid "{count} files scanned"
msgstr "{count} fitxers escannejats"
-#: js/files.js:712
+#: js/files.js:707
msgid "error while scanning"
msgstr "error durant l'escaneig"
-#: js/files.js:785 templates/index.php:65
+#: js/files.js:780 templates/index.php:66
msgid "Name"
msgstr "Nom"
-#: js/files.js:786 templates/index.php:76
+#: js/files.js:781 templates/index.php:77
msgid "Size"
msgstr "Mida"
-#: js/files.js:787 templates/index.php:78
+#: js/files.js:782 templates/index.php:79
msgid "Modified"
msgstr "Modificat"
-#: js/files.js:814
+#: js/files.js:801
msgid "1 folder"
msgstr "1 carpeta"
-#: js/files.js:816
+#: js/files.js:803
msgid "{count} folders"
msgstr "{count} carpetes"
-#: js/files.js:824
+#: js/files.js:811
msgid "1 file"
msgstr "1 fitxer"
-#: js/files.js:826
+#: js/files.js:813
msgid "{count} files"
msgstr "{count} fitxers"
@@ -196,27 +209,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 +257,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 331a63af1a7..85b991ab12e 100644
--- a/l10n/ca/settings.po
+++ b/l10n/ca/settings.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-20 00:11+0100\n"
-"PO-Revision-Date: 2012-12-19 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 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"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -122,27 +122,27 @@ msgstr "-propietat de %s d'un total disponible de %sAGPL."
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:42 templates/users.php:138
+msgid "Unlimited"
+msgstr "Il·limitat"
-#: templates/users.php:55 templates/users.php:138
+#: 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:133
+msgid "Default"
+msgstr "Per defecte"
-#: templates/users.php:146
+#: templates/users.php:161
msgid "Delete"
msgstr "Suprimeix"
diff --git a/l10n/ca/user_webdavauth.po b/l10n/ca/user_webdavauth.po
index 7517e250151..c7a053911de 100644
--- a/l10n/ca/user_webdavauth.po
+++ b/l10n/ca/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-22 00:24+0100\n"
+"PO-Revision-Date: 2012-12-21 09:21+0000\n"
+"Last-Translator: rogerc \n"
"Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -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 enviarà les credencials d'usuari a aquesta URL. S'interpretarà http 401 i http 403 com a credencials incorrectes i tots els altres codis com a credencials correctes."
diff --git a/l10n/cs_CZ/files.po b/l10n/cs_CZ/files.po
index ae2e4682356..9732a89e24c 100644
--- a/l10n/cs_CZ/files.po
+++ b/l10n/cs_CZ/files.po
@@ -10,9 +10,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-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-05 00:02+0100\n"
+"PO-Revision-Date: 2013-01-04 12:30+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 ""
+
+#: ajax/upload.php:69
+msgid "Invalid directory."
+msgstr ""
+
#: 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,39 +79,39 @@ 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}"
@@ -109,80 +121,80 @@ msgid ""
"allowed."
msgstr "Neplatný název, znaky '\\', '/', '<', '>', ':', '\"', '|', '?' a '*' nejsou povoleny."
-#: js/files.js:183
+#: js/files.js:174
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:212
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:212
msgid "Upload Error"
msgstr "Chyba odesílání"
-#: js/files.js:235
+#: js/files.js:229
msgid "Close"
msgstr "Zavřít"
-#: js/files.js:254 js/files.js:368 js/files.js:398
+#: js/files.js:248 js/files.js:362 js/files.js:392
msgid "Pending"
msgstr "Čekající"
-#: js/files.js:274
+#: js/files.js:268
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:271 js/files.js:325 js/files.js:340
msgid "{count} files uploading"
msgstr "odesílám {count} souborů"
-#: js/files.js:349 js/files.js:382
+#: js/files.js:343 js/files.js:376
msgid "Upload cancelled."
msgstr "Odesílání zrušeno."
-#: js/files.js:451
+#: js/files.js:445
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:515
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:699
msgid "{count} files scanned"
msgstr "prozkoumáno {count} souborů"
-#: js/files.js:712
+#: js/files.js:707
msgid "error while scanning"
msgstr "chyba při prohledávání"
-#: js/files.js:785 templates/index.php:65
+#: js/files.js:780 templates/index.php:66
msgid "Name"
msgstr "Název"
-#: js/files.js:786 templates/index.php:76
+#: js/files.js:781 templates/index.php:77
msgid "Size"
msgstr "Velikost"
-#: js/files.js:787 templates/index.php:78
+#: js/files.js:782 templates/index.php:79
msgid "Modified"
msgstr "Změněno"
-#: js/files.js:814
+#: js/files.js:801
msgid "1 folder"
msgstr "1 složka"
-#: js/files.js:816
+#: js/files.js:803
msgid "{count} folders"
msgstr "{count} složky"
-#: js/files.js:824
+#: js/files.js:811
msgid "1 file"
msgstr "1 soubor"
-#: js/files.js:826
+#: js/files.js:813
msgid "{count} files"
msgstr "{count} soubory"
@@ -194,27 +206,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 +254,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 30b993246e2..2fd34e04214 100644
--- a/l10n/cs_CZ/settings.po
+++ b/l10n/cs_CZ/settings.po
@@ -13,9 +13,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-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 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"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -123,27 +123,27 @@ msgstr "-licencováno %s z %s dostupných"
#: templates/personal.php:12
msgid "Clients"
-msgstr ""
+msgstr "Klienti"
#: templates/personal.php:13
msgid "Download Desktop Clients"
-msgstr ""
+msgstr "Stáhnout klienty pro počítač"
#: templates/personal.php:14
msgid "Download Android Client"
-msgstr ""
+msgstr "Stáhnout klienta pro android"
#: templates/personal.php:15
msgid "Download iOS Client"
-msgstr ""
+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"
@@ -216,15 +216,15 @@ msgstr "Pomoci s překladem"
#: 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 "Použijte tuto adresu pro připojení k vašemu ownCloud skrze správce souborů"
#: templates/personal.php:63
msgid "Version"
-msgstr ""
+msgstr "Verze"
#: templates/personal.php:65
msgid ""
@@ -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:42 templates/users.php:138
+msgid "Unlimited"
+msgstr "Neomezeně"
-#: templates/users.php:55 templates/users.php:138
+#: 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:133
+msgid "Default"
+msgstr "Výchozí"
-#: templates/users.php:146
+#: templates/users.php:161
msgid "Delete"
msgstr "Smazat"
diff --git a/l10n/cs_CZ/user_webdavauth.po b/l10n/cs_CZ/user_webdavauth.po
index c6d6edace6f..3545665816d 100644
--- a/l10n/cs_CZ/user_webdavauth.po
+++ b/l10n/cs_CZ/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-21 00:10+0100\n"
+"PO-Revision-Date: 2012-12-20 19:51+0000\n"
+"Last-Translator: Tomáš Chvátal \n"
"Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -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 odešle přihlašovací údaje uživatele na URL a z návratové hodnoty určí stav přihlášení. Http 401 a 403 vyhodnotí jako neplatné údaje a všechny ostatní jako úspěšné přihlášení."
diff --git a/l10n/da/core.po b/l10n/da/core.po
index 01fdc7642c0..6fa46250122 100644
--- a/l10n/da/core.po
+++ b/l10n/da/core.po
@@ -3,6 +3,7 @@
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
+# , 2012.
# , 2011, 2012.
# Morten Juhl-Johansen Zölde-Fejér , 2011-2012.
# Ole Holm Frandsen , 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-13 00:17+0100\n"
-"PO-Revision-Date: 2012-12-12 23:17+0000\n"
-"Last-Translator: I Robot \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"
"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"
@@ -27,30 +28,30 @@ msgstr ""
#: ajax/share.php:84
#, php-format
msgid "User %s shared a file with you"
-msgstr ""
+msgstr "Bruger %s delte en fil med dig"
#: ajax/share.php:86
#, php-format
msgid "User %s shared a folder with you"
-msgstr ""
+msgstr "Bruger %s delte en mappe med dig"
#: ajax/share.php:88
#, php-format
msgid ""
"User %s shared the file \"%s\" with you. It is available for download here: "
"%s"
-msgstr ""
+msgstr "Bruger %s delte filen \"%s\" med dig. Den kan hentes her: %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 "Bruger %s delte mappe \"%s\" med dig. Det kan hentes her: %s"
#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25
msgid "Category type not provided."
-msgstr ""
+msgstr "Kategori typen ikke er fastsat."
#: ajax/vcategories/add.php:30
msgid "No category to add?"
@@ -64,18 +65,18 @@ msgstr "Denne kategori eksisterer allerede: "
#: ajax/vcategories/favorites.php:24
#: ajax/vcategories/removeFromFavorites.php:26
msgid "Object type not provided."
-msgstr ""
+msgstr "Object type ikke er fastsat."
#: ajax/vcategories/addToFavorites.php:30
#: ajax/vcategories/removeFromFavorites.php:30
#, php-format
msgid "%s ID not provided."
-msgstr ""
+msgstr "%s ID ikke oplyst."
#: ajax/vcategories/addToFavorites.php:35
#, php-format
msgid "Error adding %s to favorites."
-msgstr ""
+msgstr "Fejl ved tilføjelse af %s til favoritter."
#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136
msgid "No categories selected for deletion."
@@ -84,7 +85,7 @@ msgstr "Ingen kategorier valgt"
#: ajax/vcategories/removeFromFavorites.php:35
#, php-format
msgid "Error removing %s from favorites."
-msgstr ""
+msgstr "Fejl ved fjernelse af %s fra favoritter."
#: js/js.js:259 templates/layout.user.php:60 templates/layout.user.php:61
msgid "Settings"
@@ -104,11 +105,11 @@ msgstr "{minutes} minutter siden"
#: js/js.js:707
msgid "1 hour ago"
-msgstr ""
+msgstr "1 time siden"
#: js/js.js:708
msgid "{hours} hours ago"
-msgstr ""
+msgstr "{hours} timer siden"
#: js/js.js:709
msgid "today"
@@ -128,7 +129,7 @@ msgstr "sidste måned"
#: js/js.js:713
msgid "{months} months ago"
-msgstr ""
+msgstr "{months} måneder siden"
#: js/js.js:714
msgid "months ago"
@@ -165,23 +166,23 @@ 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 "Objekttypen er ikke angivet."
#: 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 "Fejl"
#: js/oc-vcategories.js:179
msgid "The app name is not specified."
-msgstr ""
+msgstr "Den app navn er ikke angivet."
#: js/oc-vcategories.js:194
msgid "The required file {file} is not installed!"
-msgstr ""
+msgstr "Den krævede fil {file} er ikke installeret!"
-#: js/share.js:124 js/share.js:581
+#: js/share.js:124 js/share.js:594
msgid "Error while sharing"
msgstr "Fejl under deling"
@@ -209,22 +210,22 @@ msgstr "Del med"
msgid "Share with link"
msgstr "Del med link"
-#: js/share.js:164
+#: js/share.js:166
msgid "Password protect"
msgstr "Beskyt med adgangskode"
-#: 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 "Kodeord"
#: js/share.js:172
msgid "Email link to person"
-msgstr ""
+msgstr "E-mail link til person"
#: js/share.js:173
msgid "Send"
-msgstr ""
+msgstr "Send"
#: js/share.js:177
msgid "Set expiration date"
@@ -278,25 +279,25 @@ msgstr "slet"
msgid "share"
msgstr "del"
-#: js/share.js:353 js/share.js:528 js/share.js:530
+#: js/share.js:356 js/share.js:541
msgid "Password protected"
msgstr "Beskyttet med adgangskode"
-#: js/share.js:541
+#: js/share.js:554
msgid "Error unsetting expiration date"
msgstr "Fejl ved fjernelse af udløbsdato"
-#: js/share.js:553
+#: js/share.js:566
msgid "Error setting expiration date"
msgstr "Fejl under sætning af udløbsdato"
-#: js/share.js:568
+#: js/share.js:581
msgid "Sending ..."
-msgstr ""
+msgstr "Sender ..."
-#: js/share.js:579
+#: js/share.js:592
msgid "Email sent"
-msgstr ""
+msgstr "E-mail afsendt"
#: lostpassword/controller.php:47
msgid "ownCloud password reset"
@@ -312,14 +313,14 @@ msgstr "Du vil modtage et link til at nulstille dit kodeord via email."
#: lostpassword/templates/lostpassword.php:5
msgid "Reset email send."
-msgstr ""
+msgstr "Reset-mail afsendt."
#: lostpassword/templates/lostpassword.php:8
msgid "Request failed!"
-msgstr ""
+msgstr "Anmodningen mislykkedes!"
-#: 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 "Brugernavn"
@@ -408,44 +409,44 @@ msgstr "Din data mappe og dine filer er muligvis tilgængelige fra internettet.
msgid "Create an admin account"
msgstr "Opret en administratorkonto"
-#: templates/installation.php:48
+#: templates/installation.php:50
msgid "Advanced"
msgstr "Avanceret"
-#: templates/installation.php:50
+#: templates/installation.php:52
msgid "Data folder"
msgstr "Datamappe"
-#: templates/installation.php:57
+#: templates/installation.php:59
msgid "Configure the database"
msgstr "Konfigurer databasen"
-#: 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 "vil blive brugt"
-#: templates/installation.php:105
+#: templates/installation.php:107
msgid "Database user"
msgstr "Databasebruger"
-#: templates/installation.php:109
+#: templates/installation.php:111
msgid "Database password"
msgstr "Databasekodeord"
-#: templates/installation.php:113
+#: templates/installation.php:115
msgid "Database name"
msgstr "Navn på database"
-#: templates/installation.php:121
+#: templates/installation.php:123
msgid "Database tablespace"
msgstr "Database tabelplads"
-#: templates/installation.php:127
+#: templates/installation.php:129
msgid "Database host"
msgstr "Databasehost"
-#: templates/installation.php:132
+#: templates/installation.php:134
msgid "Finish setup"
msgstr "Afslut opsætning"
@@ -533,29 +534,29 @@ msgstr "Webtjenester under din kontrol"
msgid "Log out"
msgstr "Log ud"
-#: templates/login.php:8
+#: templates/login.php:10
msgid "Automatic logon rejected!"
msgstr "Automatisk login afvist!"
-#: templates/login.php:9
+#: templates/login.php:11
msgid ""
"If you did not change your password recently, your account may be "
"compromised!"
msgstr "Hvis du ikke har ændret din adgangskode for nylig, har nogen muligvis tiltvunget sig adgang til din konto!"
-#: templates/login.php:10
+#: templates/login.php:13
msgid "Please change your password to secure your account again."
msgstr "Skift adgangskode for at sikre din konto igen."
-#: templates/login.php:15
+#: templates/login.php:19
msgid "Lost your password?"
msgstr "Mistet dit kodeord?"
-#: templates/login.php:27
+#: templates/login.php:39
msgid "remember"
msgstr "husk"
-#: templates/login.php:28
+#: templates/login.php:41
msgid "Log in"
msgstr "Log ind"
diff --git a/l10n/da/files.po b/l10n/da/files.po
index 2b9b44a9169..0678675170f 100644
--- a/l10n/da/files.po
+++ b/l10n/da/files.po
@@ -3,6 +3,7 @@
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
+# , 2012.
# Morten Juhl-Johansen Zölde-Fejér , 2011-2012.
# Ole Holm Frandsen , 2012.
# , 2012.
@@ -14,8 +15,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-05 00:02+0100\n"
+"PO-Revision-Date: 2013-01-04 12:30+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"
@@ -24,46 +25,58 @@ 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 ""
+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"
-#: 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 "Fjern deling"
-#: 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 "Slet"
@@ -71,39 +84,39 @@ msgstr "Slet"
msgid "Rename"
msgstr "Omdøb"
-#: js/filelist.js:201 js/filelist.js:203
+#: js/filelist.js:199 js/filelist.js:201
msgid "{new_name} already exists"
msgstr "{new_name} eksisterer allerede"
-#: js/filelist.js:201 js/filelist.js:203
+#: js/filelist.js:199 js/filelist.js:201
msgid "replace"
msgstr "erstat"
-#: js/filelist.js:201
+#: js/filelist.js:199
msgid "suggest name"
msgstr "foreslå navn"
-#: js/filelist.js:201 js/filelist.js:203
+#: js/filelist.js:199 js/filelist.js:201
msgid "cancel"
msgstr "fortryd"
-#: js/filelist.js:250
+#: js/filelist.js:248
msgid "replaced {new_name}"
msgstr "erstattede {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 "fortryd"
-#: js/filelist.js:252
+#: js/filelist.js:250
msgid "replaced {new_name} with {old_name}"
msgstr "erstattede {new_name} med {old_name}"
-#: js/filelist.js:284
+#: js/filelist.js:282
msgid "unshared {files}"
msgstr "ikke delte {files}"
-#: js/filelist.js:286
+#: js/filelist.js:284
msgid "deleted {files}"
msgstr "slettede {files}"
@@ -111,82 +124,82 @@ msgstr "slettede {files}"
msgid ""
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not "
"allowed."
-msgstr ""
+msgstr "Ugyldigt navn, '\\', '/', '<', '>', ':' | '?', '\"', '', og '*' er ikke tilladt."
-#: js/files.js:183
+#: js/files.js:174
msgid "generating ZIP-file, it may take some time."
msgstr "genererer ZIP-fil, det kan tage lidt tid."
-#: js/files.js:218
+#: js/files.js:212
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:218
+#: js/files.js:212
msgid "Upload Error"
msgstr "Fejl ved upload"
-#: js/files.js:235
+#: js/files.js:229
msgid "Close"
msgstr "Luk"
-#: js/files.js:254 js/files.js:368 js/files.js:398
+#: js/files.js:248 js/files.js:362 js/files.js:392
msgid "Pending"
msgstr "Afventer"
-#: js/files.js:274
+#: js/files.js:268
msgid "1 file uploading"
msgstr "1 fil uploades"
-#: js/files.js:277 js/files.js:331 js/files.js:346
+#: js/files.js:271 js/files.js:325 js/files.js:340
msgid "{count} files uploading"
msgstr "{count} filer uploades"
-#: js/files.js:349 js/files.js:382
+#: js/files.js:343 js/files.js:376
msgid "Upload cancelled."
msgstr "Upload afbrudt."
-#: js/files.js:451
+#: js/files.js:445
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:523
+#: js/files.js:515
msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud"
-msgstr ""
+msgstr "Ugyldigt mappenavn. Brug af \"Shared\" er forbeholdt Owncloud"
-#: js/files.js:704
+#: js/files.js:699
msgid "{count} files scanned"
msgstr "{count} filer skannet"
-#: js/files.js:712
+#: js/files.js:707
msgid "error while scanning"
msgstr "fejl under scanning"
-#: js/files.js:785 templates/index.php:65
+#: js/files.js:780 templates/index.php:66
msgid "Name"
msgstr "Navn"
-#: js/files.js:786 templates/index.php:76
+#: js/files.js:781 templates/index.php:77
msgid "Size"
msgstr "Størrelse"
-#: js/files.js:787 templates/index.php:78
+#: js/files.js:782 templates/index.php:79
msgid "Modified"
msgstr "Ændret"
-#: js/files.js:814
+#: js/files.js:801
msgid "1 folder"
msgstr "1 mappe"
-#: js/files.js:816
+#: js/files.js:803
msgid "{count} folders"
msgstr "{count} mapper"
-#: js/files.js:824
+#: js/files.js:811
msgid "1 file"
msgstr "1 fil"
-#: js/files.js:826
+#: js/files.js:813
msgid "{count} files"
msgstr "{count} filer"
@@ -198,27 +211,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"
@@ -236,7 +249,7 @@ msgstr "Mappe"
#: templates/index.php:14
msgid "From link"
-msgstr ""
+msgstr "Fra link"
#: templates/index.php:35
msgid "Upload"
@@ -246,28 +259,28 @@ msgstr "Upload"
msgid "Cancel upload"
msgstr "Fortryd upload"
-#: templates/index.php:57
+#: templates/index.php:58
msgid "Nothing in here. Upload something!"
msgstr "Her er tomt. Upload noget!"
-#: templates/index.php:71
+#: templates/index.php:72
msgid "Download"
msgstr "Download"
-#: templates/index.php:103
+#: templates/index.php:104
msgid "Upload too large"
msgstr "Upload for stor"
-#: 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 "Filerne, du prøver at uploade, er større end den maksimale størrelse for fil-upload på denne server."
-#: templates/index.php:110
+#: templates/index.php:111
msgid "Files are being scanned, please wait."
msgstr "Filerne bliver indlæst, vent venligst."
-#: templates/index.php:113
+#: templates/index.php:114
msgid "Current scanning"
msgstr "Indlæser"
diff --git a/l10n/da/files_external.po b/l10n/da/files_external.po
index 804a2489d08..d21b07f05e6 100644
--- a/l10n/da/files_external.po
+++ b/l10n/da/files_external.po
@@ -3,15 +3,16 @@
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
+# , 2012.
# Morten Juhl-Johansen Zölde-Fejér , 2012.
# Ole Holm Frandsen , 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-24 00:10+0100\n"
+"PO-Revision-Date: 2012-12-23 21:47+0000\n"
+"Last-Translator: cronner \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"
@@ -47,14 +48,14 @@ msgstr "Fejl ved konfiguration af Google Drive plads"
msgid ""
"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares "
"is not possible. Please ask your system administrator to install it."
-msgstr ""
+msgstr " Advarsel: b> \"smbclient\" ikke er installeret. Montering af CIFS / SMB delinger er ikke muligt. Spørg din systemadministrator om at installere det."
#: 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 " Advarsel: b> FTP-understøttelse i PHP ikke er aktiveret eller installeret. Montering af FTP delinger er ikke muligt. Spørg din systemadministrator om at installere det."
#: templates/settings.php:3
msgid "External Storage"
@@ -101,7 +102,7 @@ msgid "Users"
msgstr "Brugere"
#: 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 "Slet"
@@ -113,10 +114,10 @@ msgstr "Aktiver ekstern opbevaring for brugere"
msgid "Allow users to mount their own external storage"
msgstr "Tillad brugere at montere deres egne eksterne opbevaring"
-#: templates/settings.php:139
+#: templates/settings.php:136
msgid "SSL root certificates"
msgstr "SSL-rodcertifikater"
-#: templates/settings.php:158
+#: templates/settings.php:153
msgid "Import Root Certificate"
msgstr "Importer rodcertifikat"
diff --git a/l10n/da/lib.po b/l10n/da/lib.po
index 76cd064267c..187d797c533 100644
--- a/l10n/da/lib.po
+++ b/l10n/da/lib.po
@@ -3,15 +3,16 @@
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
+# , 2012.
# Morten Juhl-Johansen Zölde-Fejér , 2012.
# , 2012.
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-24 00:11+0100\n"
+"PO-Revision-Date: 2012-12-23 21:58+0000\n"
+"Last-Translator: cronner \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"
@@ -19,43 +20,43 @@ msgstr ""
"Language: da\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: app.php:285
+#: app.php:287
msgid "Help"
msgstr "Hjælp"
-#: app.php:292
+#: app.php:294
msgid "Personal"
msgstr "Personlig"
-#: app.php:297
+#: app.php:299
msgid "Settings"
msgstr "Indstillinger"
-#: app.php:302
+#: app.php:304
msgid "Users"
msgstr "Brugere"
-#: app.php:309
+#: app.php:311
msgid "Apps"
msgstr "Apps"
-#: app.php:311
+#: app.php:313
msgid "Admin"
msgstr "Admin"
-#: files.php:332
+#: files.php:365
msgid "ZIP download is turned off."
msgstr "ZIP-download er slået fra."
-#: files.php:333
+#: files.php:366
msgid "Files need to be downloaded one by one."
msgstr "Filer skal downloades en for en."
-#: files.php:333 files.php:358
+#: files.php:366 files.php:391
msgid "Back to Files"
msgstr "Tilbage til Filer"
-#: files.php:357
+#: files.php:390
msgid "Selected files too large to generate zip file."
msgstr "De markerede filer er for store til at generere en ZIP-fil."
@@ -81,7 +82,7 @@ msgstr "SMS"
#: search/provider/file.php:29
msgid "Images"
-msgstr ""
+msgstr "Billeder"
#: template.php:103
msgid "seconds ago"
@@ -98,12 +99,12 @@ msgstr "%d minutter siden"
#: template.php:106
msgid "1 hour ago"
-msgstr ""
+msgstr "1 time siden"
#: template.php:107
#, php-format
msgid "%d hours ago"
-msgstr ""
+msgstr "%d timer siden"
#: template.php:108
msgid "today"
@@ -125,7 +126,7 @@ msgstr "Sidste måned"
#: template.php:112
#, php-format
msgid "%d months ago"
-msgstr ""
+msgstr "%d måneder siden"
#: template.php:113
msgid "last year"
@@ -151,4 +152,4 @@ msgstr "Check for opdateringer er deaktiveret"
#: vcategories.php:188 vcategories.php:249
#, php-format
msgid "Could not find category \"%s\""
-msgstr ""
+msgstr "Kunne ikke finde kategorien \"%s\""
diff --git a/l10n/da/settings.po b/l10n/da/settings.po
index 9fb7f125016..3c2c03dfdaf 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-20 00:11+0100\n"
-"PO-Revision-Date: 2012-12-19 23:11+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,50 +127,50 @@ 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"
-msgstr ""
+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:133
+msgid "Default"
+msgstr "Standard"
-#: templates/users.php:146
+#: templates/users.php:161
msgid "Delete"
msgstr "Slet"
diff --git a/l10n/da/user_ldap.po b/l10n/da/user_ldap.po
index 00ec233a6eb..0aab1f40519 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/da/user_webdavauth.po b/l10n/da/user_webdavauth.po
index 3ff9f07c589..73cb352861f 100644
--- a/l10n/da/user_webdavauth.po
+++ b/l10n/da/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-24 00:10+0100\n"
+"PO-Revision-Date: 2012-12-23 22:14+0000\n"
+"Last-Translator: cronner \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"
@@ -19,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 vil sende brugeroplysningerne til denne webadresse er fortolker http 401 og http 403 som brugeroplysninger forkerte og alle andre koder som brugeroplysninger korrekte."
diff --git a/l10n/de/core.po b/l10n/de/core.po
index 4d2fac3a45e..861465cce99 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-19 00:03+0100\n"
-"PO-Revision-Date: 2012-12-18 08:06+0000\n"
-"Last-Translator: Susi <>\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"
"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"
@@ -36,26 +36,26 @@ msgstr ""
#: ajax/share.php:84
#, php-format
msgid "User %s shared a file with you"
-msgstr "%s möchte eine Datei mit dir teilen"
+msgstr "Der Nutzer %s hat eine Datei für Dich freigegeben"
#: ajax/share.php:86
#, php-format
msgid "User %s shared a folder with you"
-msgstr "%s möchte ein Verzeichnis mit dir teilen"
+msgstr "%s hat ein Verzeichnis für Dich freigegeben"
#: ajax/share.php:88
#, php-format
msgid ""
"User %s shared the file \"%s\" with you. It is available for download here: "
"%s"
-msgstr "%s möchte die Datei %s mit dir teilen. Sie liegt hier zum Download bereit: %s"
+msgstr "%s hat eine Datei \"%s\" für Dich freigegeben. Sie ist zum Download hier ferfügbar: %s"
#: ajax/share.php:90
#, php-format
msgid ""
"User %s shared the folder \"%s\" with you. It is available for download "
"here: %s"
-msgstr "%s möchte das Verzeichnis %s mit dir teilen. Es liegt hier zum Download bereit: %s"
+msgstr "%s hat eine Verzeichnis \"%s\" für Dich freigegeben. Es ist zum Download hier ferfügbar: %s"
#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25
msgid "Category type not provided."
@@ -222,7 +222,7 @@ msgstr "Über einen Link freigeben"
msgid "Password protect"
msgstr "Passwortschutz"
-#: 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 "Passwort"
@@ -328,7 +328,7 @@ msgid "Request failed!"
msgstr "Die Anfrage schlug fehl!"
#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39
-#: templates/login.php:21
+#: templates/login.php:28
msgid "Username"
msgstr "Benutzername"
@@ -542,29 +542,29 @@ msgstr "Web-Services unter Ihrer Kontrolle"
msgid "Log out"
msgstr "Abmelden"
-#: templates/login.php:8
+#: templates/login.php:10
msgid "Automatic logon rejected!"
msgstr "Automatischer Login zurückgewiesen!"
-#: templates/login.php:9
+#: templates/login.php:11
msgid ""
"If you did not change your password recently, your account may be "
"compromised!"
msgstr "Wenn Du Dein Passwort nicht vor kurzem geändert hast, könnte Dein\nAccount kompromittiert sein!"
-#: templates/login.php:10
+#: templates/login.php:13
msgid "Please change your password to secure your account again."
msgstr "Bitte ändere Dein Passwort, um Deinen Account wieder zu schützen."
-#: templates/login.php:15
+#: templates/login.php:19
msgid "Lost your password?"
msgstr "Passwort vergessen?"
-#: templates/login.php:29
+#: templates/login.php:39
msgid "remember"
msgstr "merken"
-#: templates/login.php:30
+#: templates/login.php:41
msgid "Log in"
msgstr "Einloggen"
diff --git a/l10n/de/files.po b/l10n/de/files.po
index 7dc41332e04..03474bf54bf 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-05 00:02+0100\n"
+"PO-Revision-Date: 2013-01-04 21:11+0000\n"
+"Last-Translator: Linutux \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"
@@ -127,76 +140,76 @@ msgstr "Ungültiger Name, '\\', '/', '<', '>', ':', '\"', '|', '?' und '*' sind
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:212
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:212
msgid "Upload Error"
msgstr "Fehler beim Upload"
-#: js/files.js:226
+#: js/files.js:229
msgid "Close"
msgstr "Schließen"
-#: js/files.js:245 js/files.js:359 js/files.js:389
+#: js/files.js:248 js/files.js:362 js/files.js:392
msgid "Pending"
msgstr "Ausstehend"
-#: js/files.js:265
+#: js/files.js:268
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:271 js/files.js:325 js/files.js:340
msgid "{count} files uploading"
msgstr "{count} Dateien werden hochgeladen"
-#: js/files.js:340 js/files.js:373
+#: js/files.js:343 js/files.js:376
msgid "Upload cancelled."
msgstr "Upload abgebrochen."
-#: js/files.js:442
+#: js/files.js:445
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:515
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:699
msgid "{count} files scanned"
msgstr "{count} Dateien wurden gescannt"
-#: js/files.js:701
+#: js/files.js:707
msgid "error while scanning"
msgstr "Fehler beim Scannen"
-#: js/files.js:774 templates/index.php:66
+#: js/files.js:780 templates/index.php:66
msgid "Name"
msgstr "Name"
-#: js/files.js:775 templates/index.php:77
+#: js/files.js:781 templates/index.php:77
msgid "Size"
msgstr "Größe"
-#: js/files.js:776 templates/index.php:79
+#: js/files.js:782 templates/index.php:79
msgid "Modified"
msgstr "Bearbeitet"
-#: js/files.js:803
+#: js/files.js:801
msgid "1 folder"
msgstr "1 Ordner"
-#: js/files.js:805
+#: js/files.js:803
msgid "{count} folders"
msgstr "{count} Ordner"
-#: js/files.js:813
+#: js/files.js:811
msgid "1 file"
msgstr "1 Datei"
-#: js/files.js:815
+#: js/files.js:813
msgid "{count} files"
msgstr "{count} Dateien"
@@ -208,27 +221,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/files_external.po b/l10n/de/files_external.po
index 42d733228c9..c8d7b8f8e41 100644
--- a/l10n/de/files_external.po
+++ b/l10n/de/files_external.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-16 00:11+0100\n"
-"PO-Revision-Date: 2012-12-15 19:35+0000\n"
-"Last-Translator: I Robot \n"
+"POT-Creation-Date: 2012-12-23 00:09+0100\n"
+"PO-Revision-Date: 2012-12-22 13:57+0000\n"
+"Last-Translator: Mirodin \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"
@@ -50,14 +50,14 @@ msgstr "Fehler beim Einrichten von 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 "Warnung: \"smbclient\" ist nicht installiert. Das Einhängen von CIFS/SMB-Freigaben ist nicht möglich. Bitte Deinen System-Verwalter dies zu installieren."
+msgstr "Warnung: \"smbclient\" ist nicht installiert. Das Einhängen von CIFS/SMB-Freigaben ist nicht möglich. Bitte Deinen System-Administrator, dies zu installieren."
#: 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 "Warnung: \"smbclient\" ist nicht aktiv oder nicht installiert. Das Einhängen von FTP-Freigaben ist nicht möglich. Bitte Deinen System-Verwalter dies zu installieren."
+msgstr "Warnung:: Die FTP Unterstützung von PHP ist nicht aktiviert oder installiert. Bitte wende Dich an Deinen Systemadministrator."
#: templates/settings.php:3
msgid "External Storage"
@@ -104,7 +104,7 @@ msgid "Users"
msgstr "Benutzer"
#: 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 "Löschen"
@@ -116,10 +116,10 @@ msgstr "Externen Speicher für Benutzer aktivieren"
msgid "Allow users to mount their own external storage"
msgstr "Erlaubt Benutzern ihre eigenen externen Speicher einzubinden"
-#: templates/settings.php:139
+#: templates/settings.php:136
msgid "SSL root certificates"
msgstr "SSL-Root-Zertifikate"
-#: templates/settings.php:158
+#: templates/settings.php:153
msgid "Import Root Certificate"
msgstr "Root-Zertifikate importieren"
diff --git a/l10n/de/settings.po b/l10n/de/settings.po
index cbc4d58803d..129f9393516 100644
--- a/l10n/de/settings.po
+++ b/l10n/de/settings.po
@@ -24,8 +24,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-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"
@@ -134,27 +134,27 @@ msgstr "-lizenziert von
#: templates/help.php:3
msgid "User Documentation"
-msgstr ""
+msgstr "Dokumentation für Benutzer"
#: templates/help.php:4
msgid "Administrator Documentation"
-msgstr ""
+msgstr "Dokumentation für Administratoren"
#: templates/help.php:6
msgid "Online Documentation"
-msgstr ""
+msgstr "Online-Dokumentation"
#: templates/help.php:7
msgid "Forum"
-msgstr ""
+msgstr "Forum"
#: templates/help.php:9
msgid "Bugtracker"
-msgstr ""
+msgstr "Bugtracker"
#: templates/help.php:11
msgid "Commercial Support"
-msgstr ""
+msgstr "Kommerzieller Support"
#: templates/personal.php:8
#, php-format
@@ -163,21 +163,21 @@ msgstr "Du verwendest %s der verfügbaren %s"
#: templates/personal.php:12
msgid "Clients"
-msgstr ""
+msgstr "Kunden"
#: templates/personal.php:13
msgid "Download Desktop Clients"
-msgstr ""
+msgstr "Desktop-Client herunterladen"
#: templates/personal.php:14
msgid "Download Android Client"
-msgstr ""
+msgstr "Android-Client herunterladen"
#: templates/personal.php:15
msgid "Download iOS Client"
-msgstr ""
+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"
@@ -227,15 +227,15 @@ msgstr "Hilf bei der Übersetzung"
#: 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 "Verwende diese Adresse, um Deinen Dateimanager mit Deiner ownCloud zu verbinden"
#: templates/personal.php:63
msgid "Version"
-msgstr ""
+msgstr "Version"
#: templates/personal.php:65
msgid ""
@@ -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:42 templates/users.php:138
+msgid "Unlimited"
+msgstr "Unbegrenzt"
-#: templates/users.php:55 templates/users.php:138
+#: 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:133
+msgid "Default"
+msgstr "Standard"
-#: templates/users.php:146
+#: templates/users.php:161
msgid "Delete"
msgstr "Löschen"
diff --git a/l10n/de/user_ldap.po b/l10n/de/user_ldap.po
index 2d9cbf3b697..7e83a5b2043 100644
--- a/l10n/de/user_ldap.po
+++ b/l10n/de/user_ldap.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-19 00:03+0100\n"
-"PO-Revision-Date: 2012-12-18 08:19+0000\n"
-"Last-Translator: Susi <>\n"
+"POT-Creation-Date: 2012-12-23 00:09+0100\n"
+"PO-Revision-Date: 2012-12-22 14:04+0000\n"
+"Last-Translator: Mirodin \n"
"Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -30,13 +30,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 "Warnung: Die Apps user_ldap und user_webdavauth sind nicht kompatible. Unerwartetes Verhalten kann auftreten. Bitte Deinen System-Verwalter eine von beiden zu de-aktivieren."
+msgstr "Warnung: Die Anwendungen user_ldap und user_webdavauth sind inkompatibel. Es kann demzufolge zu unerwarteten Verhalten kommen. Bitte Deinen Systemadministator eine der beiden Anwendungen zu deaktivieren."
#: 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 "Warnung: Das PHP-Modul, das LDAP benöntigt, ist nicht installiert. Das Backend wird nicht funktionieren. Bitte deinen System-Administrator das Modul zu installieren."
+msgstr "Warnung: Das PHP-Modul, das LDAP benöntigt, ist nicht installiert. Das Backend wird nicht funktionieren. Bitte deinen Systemadministrator das Modul zu installieren."
#: templates/settings.php:15
msgid "Host"
diff --git a/l10n/de/user_webdavauth.po b/l10n/de/user_webdavauth.po
index b79ed12e950..392938e5f92 100644
--- a/l10n/de/user_webdavauth.po
+++ b/l10n/de/user_webdavauth.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-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-23 00:09+0100\n"
+"PO-Revision-Date: 2012-12-22 14:08+0000\n"
+"Last-Translator: Mirodin \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"
@@ -21,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 wird die Logindaten zu dieser URL senden. http 401 und http 403 werden als falsche Logindaten interpretiert und alle anderen Codes als korrekte Logindaten."
diff --git a/l10n/de_DE/core.po b/l10n/de_DE/core.po
index faa7f085445..116cf3006cd 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-15 00:11+0100\n"
-"PO-Revision-Date: 2012-12-14 12:15+0000\n"
-"Last-Translator: deh3nne \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"
"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,26 +35,26 @@ msgstr ""
#: ajax/share.php:84
#, php-format
msgid "User %s shared a file with you"
-msgstr "Der Nutzer %s teilt eine Datei mit dir"
+msgstr "Der Nutzer %s hat eine Datei für Sie freigegeben"
#: ajax/share.php:86
#, php-format
msgid "User %s shared a folder with you"
-msgstr "Der Nutzer %s teilt einen Ordner mit dir"
+msgstr "%s hat ein Verzeichnis für Sie freigegeben"
#: ajax/share.php:88
#, php-format
msgid ""
"User %s shared the file \"%s\" with you. It is available for download here: "
"%s"
-msgstr "Der Nutzer %s teilt die Datei \"%s\" mit dir. Du kannst diese hier herunterladen: %s"
+msgstr "%s hat eine Datei \"%s\" für Sie freigegeben. Sie ist zum Download hier ferfügbar: %s"
#: ajax/share.php:90
#, php-format
msgid ""
"User %s shared the folder \"%s\" with you. It is available for download "
"here: %s"
-msgstr "Der Nutzer %s teilt den Ornder \"%s\" mit dir. Du kannst diesen hier herunterladen: %s"
+msgstr "%s hat eine Verzeichnis \"%s\" für Sie freigegeben. Es ist zum Download hier ferfügbar: %s"
#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25
msgid "Category type not provided."
@@ -176,8 +176,8 @@ msgid "The object type is not specified."
msgstr "Der Objekttyp ist nicht angegeben."
#: 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 "Fehler"
@@ -189,7 +189,7 @@ msgstr "Der App-Name ist nicht angegeben."
msgid "The required file {file} is not installed!"
msgstr "Die benötigte Datei {file} ist nicht installiert."
-#: js/share.js:124 js/share.js:581
+#: js/share.js:124 js/share.js:594
msgid "Error while sharing"
msgstr "Fehler bei der Freigabe"
@@ -217,18 +217,18 @@ msgstr "Freigeben für"
msgid "Share with link"
msgstr "Über einen Link freigeben"
-#: js/share.js:164
+#: js/share.js:166
msgid "Password protect"
msgstr "Passwortschutz"
-#: 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 "Passwort"
#: js/share.js:172
msgid "Email link to person"
-msgstr "Link per Mail an Person schicken"
+msgstr "Link per E-Mail verschicken"
#: js/share.js:173
msgid "Send"
@@ -286,23 +286,23 @@ msgstr "löschen"
msgid "share"
msgstr "freigeben"
-#: js/share.js:353 js/share.js:528 js/share.js:530
+#: js/share.js:356 js/share.js:541
msgid "Password protected"
msgstr "Durch ein Passwort geschützt"
-#: js/share.js:541
+#: js/share.js:554
msgid "Error unsetting expiration date"
msgstr "Fehler beim Entfernen des Ablaufdatums"
-#: js/share.js:553
+#: js/share.js:566
msgid "Error setting expiration date"
msgstr "Fehler beim Setzen des Ablaufdatums"
-#: js/share.js:568
+#: js/share.js:581
msgid "Sending ..."
msgstr "Sende ..."
-#: js/share.js:579
+#: js/share.js:592
msgid "Email sent"
msgstr "Email gesendet"
@@ -327,7 +327,7 @@ msgid "Request failed!"
msgstr "Die Anfrage schlug fehl!"
#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39
-#: templates/login.php:21
+#: templates/login.php:28
msgid "Username"
msgstr "Benutzername"
@@ -541,29 +541,29 @@ msgstr "Web-Services unter Ihrer Kontrolle"
msgid "Log out"
msgstr "Abmelden"
-#: templates/login.php:8
+#: templates/login.php:10
msgid "Automatic logon rejected!"
msgstr "Automatische Anmeldung verweigert."
-#: templates/login.php:9
+#: templates/login.php:11
msgid ""
"If you did not change your password recently, your account may be "
"compromised!"
msgstr "Wenn Sie Ihr Passwort nicht vor kurzem geändert haben, könnte Ihr\nAccount kompromittiert sein!"
-#: templates/login.php:10
+#: templates/login.php:13
msgid "Please change your password to secure your account again."
msgstr "Bitte ändern Sie Ihr Passwort, um Ihr Konto wieder zu sichern."
-#: templates/login.php:15
+#: templates/login.php:19
msgid "Lost your password?"
msgstr "Passwort vergessen?"
-#: templates/login.php:29
+#: templates/login.php:39
msgid "remember"
msgstr "merken"
-#: templates/login.php:30
+#: templates/login.php:41
msgid "Log in"
msgstr "Einloggen"
diff --git a/l10n/de_DE/files.po b/l10n/de_DE/files.po
index 035e733deb4..ff895f0d9c5 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-05 00:02+0100\n"
+"PO-Revision-Date: 2013-01-04 21:31+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"
@@ -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"
@@ -128,76 +140,76 @@ msgstr "Ungültiger Name, '\\', '/', '<', '>', ':', '\"', '|', '?' und '*' sind
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:212
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:212
msgid "Upload Error"
msgstr "Fehler beim Upload"
-#: js/files.js:226
+#: js/files.js:229
msgid "Close"
msgstr "Schließen"
-#: js/files.js:245 js/files.js:359 js/files.js:389
+#: js/files.js:248 js/files.js:362 js/files.js:392
msgid "Pending"
msgstr "Ausstehend"
-#: js/files.js:265
+#: js/files.js:268
msgid "1 file uploading"
msgstr "1 Datei wird hochgeladen"
-#: js/files.js:268 js/files.js:322 js/files.js:337
+#: js/files.js:271 js/files.js:325 js/files.js:340
msgid "{count} files uploading"
msgstr "{count} Dateien wurden hochgeladen"
-#: js/files.js:340 js/files.js:373
+#: js/files.js:343 js/files.js:376
msgid "Upload cancelled."
msgstr "Upload abgebrochen."
-#: js/files.js:442
+#: js/files.js:445
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:515
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:699
msgid "{count} files scanned"
msgstr "{count} Dateien wurden gescannt"
-#: js/files.js:701
+#: js/files.js:707
msgid "error while scanning"
msgstr "Fehler beim Scannen"
-#: js/files.js:774 templates/index.php:66
+#: js/files.js:780 templates/index.php:66
msgid "Name"
msgstr "Name"
-#: js/files.js:775 templates/index.php:77
+#: js/files.js:781 templates/index.php:77
msgid "Size"
msgstr "Größe"
-#: js/files.js:776 templates/index.php:79
+#: js/files.js:782 templates/index.php:79
msgid "Modified"
msgstr "Bearbeitet"
-#: js/files.js:803
+#: js/files.js:801
msgid "1 folder"
msgstr "1 Ordner"
-#: js/files.js:805
+#: js/files.js:803
msgid "{count} folders"
msgstr "{count} Ordner"
-#: js/files.js:813
+#: js/files.js:811
msgid "1 file"
msgstr "1 Datei"
-#: js/files.js:815
+#: js/files.js:813
msgid "{count} files"
msgstr "{count} Dateien"
@@ -209,27 +221,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/files_external.po b/l10n/de_DE/files_external.po
index 1b603f1ee39..6567207b387 100644
--- a/l10n/de_DE/files_external.po
+++ b/l10n/de_DE/files_external.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-19 00:03+0100\n"
-"PO-Revision-Date: 2012-12-18 11:52+0000\n"
-"Last-Translator: deh3nne \n"
+"POT-Creation-Date: 2012-12-23 00:09+0100\n"
+"PO-Revision-Date: 2012-12-22 13:57+0000\n"
+"Last-Translator: Mirodin \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"
@@ -50,14 +50,14 @@ msgstr "Fehler beim Einrichten von 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 "Achtung: \"smbclient\" ist nicht installiert. Das Laden von CIFS/SMB shares ist nicht möglich. Bitte wenden Sie sich an Ihren Systemadministrator."
+msgstr "Warnung: \"smbclient\" ist nicht installiert. Das Einhängen von CIFS/SMB-Freigaben ist nicht möglich. Bitten Sie Ihren Systemadministrator, dies zu installieren."
#: 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 "Achtung: Die FTP Unterstützung von PHP ist nicht initialisiert oder installiert. Bitte wenden Sie sich an Ihren Systemadministrator."
+msgstr "Warnung:: Die FTP Unterstützung von PHP ist nicht aktiviert oder installiert. Bitte wenden Sie sich an Ihren Systemadministrator."
#: templates/settings.php:3
msgid "External Storage"
@@ -104,7 +104,7 @@ msgid "Users"
msgstr "Benutzer"
#: 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 "Löschen"
@@ -116,10 +116,10 @@ msgstr "Externen Speicher für Benutzer aktivieren"
msgid "Allow users to mount their own external storage"
msgstr "Erlaubt Benutzern ihre eigenen externen Speicher einzubinden"
-#: templates/settings.php:139
+#: templates/settings.php:136
msgid "SSL root certificates"
msgstr "SSL-Root-Zertifikate"
-#: templates/settings.php:158
+#: templates/settings.php:153
msgid "Import Root Certificate"
msgstr "Root-Zertifikate importieren"
diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po
index 62f52d34b42..4886219fbce 100644
--- a/l10n/de_DE/settings.po
+++ b/l10n/de_DE/settings.po
@@ -18,14 +18,15 @@
# Phi Lieb <>, 2012.
# , 2012.
# , 2012.
+# , 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:11+0000\n"
-"Last-Translator: I Robot \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"
@@ -133,27 +134,27 @@ msgstr "-lizenziert von
#: templates/help.php:3
msgid "User Documentation"
-msgstr ""
+msgstr "Dokumentation für Benutzer"
#: templates/help.php:4
msgid "Administrator Documentation"
-msgstr ""
+msgstr "Dokumentation für Administratoren"
#: templates/help.php:6
msgid "Online Documentation"
-msgstr ""
+msgstr "Online-Dokumentation"
#: templates/help.php:7
msgid "Forum"
-msgstr ""
+msgstr "Forum"
#: templates/help.php:9
msgid "Bugtracker"
-msgstr ""
+msgstr "Bugtracker"
#: templates/help.php:11
msgid "Commercial Support"
-msgstr ""
+msgstr "Kommerzieller Support"
#: templates/personal.php:8
#, php-format
@@ -162,21 +163,21 @@ msgstr "Sie verwenden %s der verfügbaren %s"
#: templates/personal.php:12
msgid "Clients"
-msgstr ""
+msgstr "Kunden"
#: templates/personal.php:13
msgid "Download Desktop Clients"
-msgstr ""
+msgstr "Desktop-Client herunterladen"
#: templates/personal.php:14
msgid "Download Android Client"
-msgstr ""
+msgstr "Android-Client herunterladen"
#: templates/personal.php:15
msgid "Download iOS Client"
-msgstr ""
+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"
@@ -226,15 +227,15 @@ msgstr "Helfen Sie bei der Übersetzung"
#: 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 "Verwenden Sie diese Adresse, um Ihren Dateimanager mit Ihrer ownCloud zu verbinden"
#: templates/personal.php:63
msgid "Version"
-msgstr ""
+msgstr "Version"
#: templates/personal.php:65
msgid ""
@@ -244,13 +245,13 @@ msgid ""
"licensed under the AGPL."
-msgstr "Entwickelt von der ownCloud-Community, der Quellcode ist unter der AGPL lizenziert."
+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"
@@ -259,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:42 templates/users.php:138
+msgid "Unlimited"
+msgstr "Unbegrenzt"
-#: templates/users.php:55 templates/users.php:138
+#: 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:133
+msgid "Default"
+msgstr "Standard"
-#: templates/users.php:146
+#: templates/users.php:161
msgid "Delete"
msgstr "Löschen"
diff --git a/l10n/de_DE/user_ldap.po b/l10n/de_DE/user_ldap.po
index 8e59bdac23d..843b2e80f4d 100644
--- a/l10n/de_DE/user_ldap.po
+++ b/l10n/de_DE/user_ldap.po
@@ -8,14 +8,15 @@
# Maurice Preuß <>, 2012.
# , 2012.
# Phi Lieb <>, 2012.
+# , 2012.
# , 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-23 00:09+0100\n"
+"PO-Revision-Date: 2012-12-22 14:04+0000\n"
+"Last-Translator: Mirodin \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"
@@ -28,13 +29,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 "Warnung: Die Anwendungen user_ldap und user_webdavauth sind inkompatibel. Es kann demzufolge zu unerwarteten Verhalten kommen. Bitten Sie Ihren Systemadministator eine der beiden Anwendungen zu deaktivieren."
#: 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 "Warnung: Das PHP-Modul, das LDAP benöntigt, ist nicht installiert. Das Backend wird nicht funktionieren. Bitten Sie Ihren Systemadministrator das Modul zu installieren."
#: templates/settings.php:15
msgid "Host"
diff --git a/l10n/de_DE/user_webdavauth.po b/l10n/de_DE/user_webdavauth.po
index d026975111c..aabd937409d 100644
--- a/l10n/de_DE/user_webdavauth.po
+++ b/l10n/de_DE/user_webdavauth.po
@@ -4,13 +4,15 @@
#
# Translators:
# , 2012.
+# , 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: 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"
@@ -20,11 +22,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 "
diff --git a/l10n/el/core.po b/l10n/el/core.po
index 29a4a7ee03e..7a42857d69c 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-13 00:17+0100\n"
-"PO-Revision-Date: 2012-12-12 23:17+0000\n"
-"Last-Translator: I Robot \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"
"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"
@@ -27,26 +27,26 @@ msgstr ""
#: ajax/share.php:84
#, php-format
msgid "User %s shared a file with you"
-msgstr ""
+msgstr "Ο χρήστης %s διαμοιράστηκε ένα αρχείο με εσάς"
#: ajax/share.php:86
#, php-format
msgid "User %s shared a folder with you"
-msgstr ""
+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 ""
+msgstr "Ο χρήστης %s διαμοιράστηκε το αρχείο \"%s\" μαζί σας. Είναι διαθέσιμο για λήψη εδώ: %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 διαμοιράστηκε τον φάκελο \"%s\" μαζί σας. Είναι διαθέσιμος για λήψη εδώ: %s"
#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25
msgid "Category type not provided."
@@ -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 "Σφάλμα"
@@ -181,7 +181,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 "Σφάλμα κατά τον διαμοιρασμό"
@@ -209,22 +209,22 @@ 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 "Συνθηματικό"
#: js/share.js:172
msgid "Email link to person"
-msgstr ""
+msgstr "Αποστολή συνδέσμου με email "
#: js/share.js:173
msgid "Send"
-msgstr ""
+msgstr "Αποστολή"
#: js/share.js:177
msgid "Set expiration date"
@@ -278,25 +278,25 @@ 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 ""
+msgstr "Αποστολή..."
-#: js/share.js:579
+#: js/share.js:592
msgid "Email sent"
-msgstr ""
+msgstr "Το Email απεστάλη "
#: lostpassword/controller.php:47
msgid "ownCloud password reset"
@@ -318,8 +318,8 @@ msgstr "Η επαναφορά του email στάλθηκε."
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 "Όνομα Χρήστη"
@@ -408,44 +408,44 @@ msgstr "Ο κατάλογος data και τα αρχεία σας πιθανό
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 "Ολοκλήρωση εγκατάστασης"
@@ -533,29 +533,29 @@ msgstr "Υπηρεσίες web υπό τον έλεγχό σας"
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 "Είσοδος"
diff --git a/l10n/el/files.po b/l10n/el/files.po
index 85209f363a5..bfb66198a04 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-05 00:02+0100\n"
+"PO-Revision-Date: 2013-01-04 12:30+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,39 +83,39 @@ 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}"
@@ -112,80 +125,80 @@ msgid ""
"allowed."
msgstr "Μη έγκυρο όνομα, '\\', '/', '<', '>', ':', '\"', '|', '?' και '*' δεν επιτρέπονται."
-#: js/files.js:183
+#: js/files.js:174
msgid "generating ZIP-file, it may take some time."
msgstr "παραγωγή αρχείου ZIP, ίσως διαρκέσει αρκετά."
-#: js/files.js:218
+#: js/files.js:212
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:212
msgid "Upload Error"
msgstr "Σφάλμα Αποστολής"
-#: js/files.js:235
+#: js/files.js:229
msgid "Close"
msgstr "Κλείσιμο"
-#: js/files.js:254 js/files.js:368 js/files.js:398
+#: js/files.js:248 js/files.js:362 js/files.js:392
msgid "Pending"
msgstr "Εκκρεμεί"
-#: js/files.js:274
+#: js/files.js:268
msgid "1 file uploading"
msgstr "1 αρχείο ανεβαίνει"
-#: js/files.js:277 js/files.js:331 js/files.js:346
+#: js/files.js:271 js/files.js:325 js/files.js:340
msgid "{count} files uploading"
msgstr "{count} αρχεία ανεβαίνουν"
-#: js/files.js:349 js/files.js:382
+#: js/files.js:343 js/files.js:376
msgid "Upload cancelled."
msgstr "Η αποστολή ακυρώθηκε."
-#: js/files.js:451
+#: js/files.js:445
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
-msgstr "Η αποστολή του αρχείου βρίσκεται σε εξέλιξη. Έξοδος από την σελίδα τώρα θα ακυρώσει την αποστολή."
+msgstr "Η αποστολή του αρχείου βρίσκεται σε εξέλιξη. Το κλείσιμο της σελίδας θα ακυρώσει την αποστολή."
-#: js/files.js:523
+#: js/files.js:515
msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud"
msgstr "Μη έγκυρο όνομα φακέλου. Η χρήση του \"Shared\" είναι δεσμευμένη από το Owncloud"
-#: js/files.js:704
+#: js/files.js:699
msgid "{count} files scanned"
msgstr "{count} αρχεία ανιχνεύτηκαν"
-#: js/files.js:712
+#: js/files.js:707
msgid "error while scanning"
msgstr "σφάλμα κατά την ανίχνευση"
-#: js/files.js:785 templates/index.php:65
+#: js/files.js:780 templates/index.php:66
msgid "Name"
msgstr "Όνομα"
-#: js/files.js:786 templates/index.php:76
+#: js/files.js:781 templates/index.php:77
msgid "Size"
msgstr "Μέγεθος"
-#: js/files.js:787 templates/index.php:78
+#: js/files.js:782 templates/index.php:79
msgid "Modified"
msgstr "Τροποποιήθηκε"
-#: js/files.js:814
+#: js/files.js:801
msgid "1 folder"
msgstr "1 φάκελος"
-#: js/files.js:816
+#: js/files.js:803
msgid "{count} folders"
msgstr "{count} φάκελοι"
-#: js/files.js:824
+#: js/files.js:811
msgid "1 file"
msgstr "1 αρχείο"
-#: js/files.js:826
+#: js/files.js:813
msgid "{count} files"
msgstr "{count} αρχεία"
@@ -197,27 +210,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 +258,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/files_external.po b/l10n/el/files_external.po
index c1705152ae5..f72135ae53a 100644
--- a/l10n/el/files_external.po
+++ b/l10n/el/files_external.po
@@ -3,6 +3,7 @@
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
+# Efstathios Iosifidis , 2012.
# Efstathios Iosifidis , 2012.
# Nisok Kosin , 2012.
# Petros Kyladitis , 2012.
@@ -12,9 +13,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-22 00:24+0100\n"
+"PO-Revision-Date: 2012-12-21 13:41+0000\n"
+"Last-Translator: Efstathios Iosifidis \n"
"Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -50,14 +51,14 @@ msgstr "Σφάλμα ρυθμίζωντας αποθήκευση 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 "Προσοχή: Ο \"smbclient\" δεν εγκαταστάθηκε. Δεν είναι δυνατή η προσάρτηση CIFS/SMB. Παρακαλώ ενημερώστε τον διαχειριστή συστήματος να το εγκαταστήσει."
#: 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 "Προσοχή: Η υποστήριξη FTP στην PHP δεν ενεργοποιήθηκε ή εγκαταστάθηκε. Δεν είναι δυνατή η προσάρτηση FTP. Παρακαλώ ενημερώστε τον διαχειριστή συστήματος να το εγκαταστήσει."
#: templates/settings.php:3
msgid "External Storage"
@@ -104,7 +105,7 @@ msgid "Users"
msgstr "Χρήστες"
#: 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 "Διαγραφή"
@@ -116,10 +117,10 @@ msgstr "Ενεργοποίηση Εξωτερικού Αποθηκευτικού
msgid "Allow users to mount their own external storage"
msgstr "Να επιτρέπεται στους χρήστες να προσαρτούν δικό τους εξωτερικό αποθηκευτικό χώρο"
-#: templates/settings.php:139
+#: templates/settings.php:136
msgid "SSL root certificates"
msgstr "Πιστοποιητικά SSL root"
-#: templates/settings.php:158
+#: templates/settings.php:153
msgid "Import Root Certificate"
msgstr "Εισαγωγή Πιστοποιητικού Root"
diff --git a/l10n/el/settings.po b/l10n/el/settings.po
index f4a0b03ecf3..83f4985217b 100644
--- a/l10n/el/settings.po
+++ b/l10n/el/settings.po
@@ -18,8 +18,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-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: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n"
"MIME-Version: 1.0\n"
@@ -128,27 +128,27 @@ msgstr "-άδεια από %s από διαθέσι
#: templates/personal.php:12
msgid "Clients"
-msgstr ""
+msgstr "Πελάτες"
#: templates/personal.php:13
msgid "Download Desktop Clients"
-msgstr ""
+msgstr "Λήψη Προγραμμάτων για Σταθερούς Υπολογιστές"
#: templates/personal.php:14
msgid "Download Android Client"
-msgstr ""
+msgstr "Λήψη Προγράμματος Android"
#: templates/personal.php:15
msgid "Download iOS Client"
-msgstr ""
+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 "Συνθηματικό"
@@ -221,15 +221,15 @@ msgstr "Βοηθήστε στη μετάφραση"
#: 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 "Χρήση αυτής της διεύθυνσης για σύνδεση στο ownCloud με τον διαχειριστή αρχείων σας"
#: templates/personal.php:63
msgid "Version"
-msgstr ""
+msgstr "Έκδοση"
#: templates/personal.php:65
msgid ""
@@ -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:133
+msgid "Default"
+msgstr ""
-#: templates/users.php:146
+#: templates/users.php:161
msgid "Delete"
msgstr "Διαγραφή"
diff --git a/l10n/el/user_ldap.po b/l10n/el/user_ldap.po
index cea052cafa1..14b7e75c710 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 60b8985afdb..dff8dd88f35 100644
--- a/l10n/el/user_webdavauth.po
+++ b/l10n/el/user_webdavauth.po
@@ -4,13 +4,15 @@
#
# 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-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 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"
@@ -20,11 +22,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 θα στείλει τα συνθηματικά χρήστη σε αυτό το URL, μεταφράζοντας τα http 401 και http 403 ως λανθασμένα συνθηματικά και όλους τους άλλους κωδικούς ως σωστά συνθηματικά."
diff --git a/l10n/eo/files.po b/l10n/eo/files.po
index 98d1dba639f..d91d11781c7 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-05 00:02+0100\n"
+"PO-Revision-Date: 2013-01-04 12:30+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,39 +78,39 @@ 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}"
@@ -108,80 +120,80 @@ msgid ""
"allowed."
msgstr "Nevalida nomo: “\\”, “/”, “<”, “>”, “:”, “\"”, “|”, “?” kaj “*” ne permesatas."
-#: js/files.js:183
+#: js/files.js:174
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:212
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:212
msgid "Upload Error"
msgstr "Alŝuta eraro"
-#: js/files.js:235
+#: js/files.js:229
msgid "Close"
msgstr "Fermi"
-#: js/files.js:254 js/files.js:368 js/files.js:398
+#: js/files.js:248 js/files.js:362 js/files.js:392
msgid "Pending"
msgstr "Traktotaj"
-#: js/files.js:274
+#: js/files.js:268
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:271 js/files.js:325 js/files.js:340
msgid "{count} files uploading"
msgstr "{count} dosieroj alŝutatas"
-#: js/files.js:349 js/files.js:382
+#: js/files.js:343 js/files.js:376
msgid "Upload cancelled."
msgstr "La alŝuto nuliĝis."
-#: js/files.js:451
+#: js/files.js:445
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:515
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:699
msgid "{count} files scanned"
msgstr "{count} dosieroj skaniĝis"
-#: js/files.js:712
+#: js/files.js:707
msgid "error while scanning"
msgstr "eraro dum skano"
-#: js/files.js:785 templates/index.php:65
+#: js/files.js:780 templates/index.php:66
msgid "Name"
msgstr "Nomo"
-#: js/files.js:786 templates/index.php:76
+#: js/files.js:781 templates/index.php:77
msgid "Size"
msgstr "Grando"
-#: js/files.js:787 templates/index.php:78
+#: js/files.js:782 templates/index.php:79
msgid "Modified"
msgstr "Modifita"
-#: js/files.js:814
+#: js/files.js:801
msgid "1 folder"
msgstr "1 dosierujo"
-#: js/files.js:816
+#: js/files.js:803
msgid "{count} folders"
msgstr "{count} dosierujoj"
-#: js/files.js:824
+#: js/files.js:811
msgid "1 file"
msgstr "1 dosiero"
-#: js/files.js:826
+#: js/files.js:813
msgid "{count} files"
msgstr "{count} dosierujoj"
@@ -193,27 +205,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 +253,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 8614b6b1fe6..d57fded0283 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-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: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n"
"MIME-Version: 1.0\n"
@@ -148,7 +148,7 @@ msgstr "Vi uzas %s el la haveblaj %s"
#: templates/personal.php:12
msgid "Clients"
-msgstr ""
+msgstr "Klientoj"
#: templates/personal.php:13
msgid "Download Desktop Clients"
@@ -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:42 templates/users.php:138
+msgid "Unlimited"
+msgstr ""
-#: templates/users.php:55 templates/users.php:138
+#: 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:133
+msgid "Default"
+msgstr ""
-#: templates/users.php:146
+#: templates/users.php:161
msgid "Delete"
msgstr "Forigi"
diff --git a/l10n/eo/user_webdavauth.po b/l10n/eo/user_webdavauth.po
index d3ca981d96d..60a766ad4c7 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/files.po b/l10n/es/files.po
index 8925d2d93df..beefcf059f4 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-05 00:02+0100\n"
+"PO-Revision-Date: 2013-01-04 13:10+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"
@@ -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,39 +84,39 @@ 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"
@@ -113,80 +126,80 @@ msgid ""
"allowed."
msgstr "Nombre Invalido, \"\\\", \"/\", \"<\", \">\", \":\", \"\", \"|\" \"?\" y \"*\" no están permitidos "
-#: js/files.js:183
+#: js/files.js:174
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:212
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:212
msgid "Upload Error"
msgstr "Error al subir el archivo"
-#: js/files.js:235
+#: js/files.js:229
msgid "Close"
msgstr "cerrrar"
-#: js/files.js:254 js/files.js:368 js/files.js:398
+#: js/files.js:248 js/files.js:362 js/files.js:392
msgid "Pending"
msgstr "Pendiente"
-#: js/files.js:274
+#: js/files.js:268
msgid "1 file uploading"
msgstr "subiendo 1 archivo"
-#: js/files.js:277 js/files.js:331 js/files.js:346
+#: js/files.js:271 js/files.js:325 js/files.js:340
msgid "{count} files uploading"
msgstr "Subiendo {count} archivos"
-#: js/files.js:349 js/files.js:382
+#: js/files.js:343 js/files.js:376
msgid "Upload cancelled."
msgstr "Subida cancelada."
-#: js/files.js:451
+#: js/files.js:445
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:515
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:699
msgid "{count} files scanned"
msgstr "{count} archivos escaneados"
-#: js/files.js:712
+#: js/files.js:707
msgid "error while scanning"
msgstr "error escaneando"
-#: js/files.js:785 templates/index.php:65
+#: js/files.js:780 templates/index.php:66
msgid "Name"
msgstr "Nombre"
-#: js/files.js:786 templates/index.php:76
+#: js/files.js:781 templates/index.php:77
msgid "Size"
msgstr "Tamaño"
-#: js/files.js:787 templates/index.php:78
+#: js/files.js:782 templates/index.php:79
msgid "Modified"
msgstr "Modificado"
-#: js/files.js:814
+#: js/files.js:801
msgid "1 folder"
msgstr "1 carpeta"
-#: js/files.js:816
+#: js/files.js:803
msgid "{count} folders"
msgstr "{count} carpetas"
-#: js/files.js:824
+#: js/files.js:811
msgid "1 file"
msgstr "1 archivo"
-#: js/files.js:826
+#: js/files.js:813
msgid "{count} files"
msgstr "{count} archivos"
@@ -198,27 +211,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 +259,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 a705db8b0d9..be3f8676b46 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-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 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
@@ -157,21 +158,21 @@ msgstr "Ha usado %s de %s disponibles"
#: templates/personal.php:12
msgid "Clients"
-msgstr ""
+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:42 templates/users.php:138
+msgid "Unlimited"
+msgstr "Ilimitado"
-#: templates/users.php:55 templates/users.php:138
+#: 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:133
+msgid "Default"
+msgstr "Predeterminado"
-#: templates/users.php:146
+#: templates/users.php:161
msgid "Delete"
msgstr "Eliminar"
diff --git a/l10n/es/user_webdavauth.po b/l10n/es/user_webdavauth.po
index e6ff0da90b0..8eec33bde17 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 f00739d659a..16b141f0822 100644
--- a/l10n/es_AR/core.po
+++ b/l10n/es_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-13 00:17+0100\n"
-"PO-Revision-Date: 2012-12-12 23:17+0000\n"
-"Last-Translator: I Robot \n"
+"POT-Creation-Date: 2013-01-05 00:02+0100\n"
+"PO-Revision-Date: 2013-01-04 15:11+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"
@@ -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"
diff --git a/l10n/es_AR/files.po b/l10n/es_AR/files.po
index 551f3b477be..8743c1e27a1 100644
--- a/l10n/es_AR/files.po
+++ b/l10n/es_AR/files.po
@@ -3,14 +3,14 @@
# 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"
+"POT-Creation-Date: 2013-01-05 00:02+0100\n"
+"PO-Revision-Date: 2013-01-04 13:11+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"
@@ -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"
@@ -112,76 +124,76 @@ msgstr "Nombre invalido, '\\', '/', '<', '>', ':', '\"', '|', '?' y '*' no está
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:212
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:212
msgid "Upload Error"
msgstr "Error al subir el archivo"
-#: js/files.js:226
+#: js/files.js:229
msgid "Close"
msgstr "Cerrar"
-#: js/files.js:245 js/files.js:359 js/files.js:389
+#: js/files.js:248 js/files.js:362 js/files.js:392
msgid "Pending"
msgstr "Pendiente"
-#: js/files.js:265
+#: js/files.js:268
msgid "1 file uploading"
msgstr "Subiendo 1 archivo"
-#: js/files.js:268 js/files.js:322 js/files.js:337
+#: js/files.js:271 js/files.js:325 js/files.js:340
msgid "{count} files uploading"
msgstr "Subiendo {count} archivos"
-#: js/files.js:340 js/files.js:373
+#: js/files.js:343 js/files.js:376
msgid "Upload cancelled."
msgstr "La subida fue cancelada"
-#: js/files.js:442
+#: js/files.js:445
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:515
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:699
msgid "{count} files scanned"
msgstr "{count} archivos escaneados"
-#: js/files.js:701
+#: js/files.js:707
msgid "error while scanning"
msgstr "error mientras se escaneaba"
-#: js/files.js:774 templates/index.php:66
+#: js/files.js:780 templates/index.php:66
msgid "Name"
msgstr "Nombre"
-#: js/files.js:775 templates/index.php:77
+#: js/files.js:781 templates/index.php:77
msgid "Size"
msgstr "Tamaño"
-#: js/files.js:776 templates/index.php:79
+#: js/files.js:782 templates/index.php:79
msgid "Modified"
msgstr "Modificado"
-#: js/files.js:803
+#: js/files.js:801
msgid "1 folder"
msgstr "1 directorio"
-#: js/files.js:805
+#: js/files.js:803
msgid "{count} folders"
msgstr "{count} directorios"
-#: js/files.js:813
+#: js/files.js:811
msgid "1 file"
msgstr "1 archivo"
-#: js/files.js:815
+#: js/files.js:813
msgid "{count} files"
msgstr "{count} archivos"
@@ -193,27 +205,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 3c23f272dbf..5e4d44648a9 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-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 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
@@ -148,21 +148,21 @@ msgstr "Usaste %s de los %s disponibles"
#: templates/personal.php:12
msgid "Clients"
-msgstr ""
+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:42 templates/users.php:138
+msgid "Unlimited"
+msgstr "Ilimitado"
-#: templates/users.php:55 templates/users.php:138
+#: 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:133
+msgid "Default"
+msgstr "Predeterminado"
-#: templates/users.php:146
+#: 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 80ab2e1f1f5..4ceff26caa1 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 e3165d3da3d..5eb7c5b084b 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/files.po b/l10n/et_EE/files.po
index 9c1c0fadb7b..0bf6d42f8fa 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-05 00:02+0100\n"
+"PO-Revision-Date: 2013-01-04 12:30+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,39 +78,39 @@ 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}"
@@ -108,80 +120,80 @@ msgid ""
"allowed."
msgstr "Vigane nimi, '\\', '/', '<', '>', ':', '\"', '|', '?' ja '*' pole lubatud."
-#: js/files.js:183
+#: js/files.js:174
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:212
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:212
msgid "Upload Error"
msgstr "Üleslaadimise viga"
-#: js/files.js:235
+#: js/files.js:229
msgid "Close"
msgstr "Sulge"
-#: js/files.js:254 js/files.js:368 js/files.js:398
+#: js/files.js:248 js/files.js:362 js/files.js:392
msgid "Pending"
msgstr "Ootel"
-#: js/files.js:274
+#: js/files.js:268
msgid "1 file uploading"
msgstr "1 faili üleslaadimisel"
-#: js/files.js:277 js/files.js:331 js/files.js:346
+#: js/files.js:271 js/files.js:325 js/files.js:340
msgid "{count} files uploading"
msgstr "{count} faili üleslaadimist"
-#: js/files.js:349 js/files.js:382
+#: js/files.js:343 js/files.js:376
msgid "Upload cancelled."
msgstr "Üleslaadimine tühistati."
-#: js/files.js:451
+#: js/files.js:445
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:515
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:699
msgid "{count} files scanned"
msgstr "{count} faili skännitud"
-#: js/files.js:712
+#: js/files.js:707
msgid "error while scanning"
msgstr "viga skännimisel"
-#: js/files.js:785 templates/index.php:65
+#: js/files.js:780 templates/index.php:66
msgid "Name"
msgstr "Nimi"
-#: js/files.js:786 templates/index.php:76
+#: js/files.js:781 templates/index.php:77
msgid "Size"
msgstr "Suurus"
-#: js/files.js:787 templates/index.php:78
+#: js/files.js:782 templates/index.php:79
msgid "Modified"
msgstr "Muudetud"
-#: js/files.js:814
+#: js/files.js:801
msgid "1 folder"
msgstr "1 kaust"
-#: js/files.js:816
+#: js/files.js:803
msgid "{count} folders"
msgstr "{count} kausta"
-#: js/files.js:824
+#: js/files.js:811
msgid "1 file"
msgstr "1 fail"
-#: js/files.js:826
+#: js/files.js:813
msgid "{count} files"
msgstr "{count} faili"
@@ -193,27 +205,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 +253,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 17e9aaeab7f..42f157b4e7c 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-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: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n"
"MIME-Version: 1.0\n"
@@ -148,7 +148,7 @@ msgstr ""
#: templates/personal.php:12
msgid "Clients"
-msgstr ""
+msgstr "Kliendid"
#: templates/personal.php:13
msgid "Download Desktop Clients"
@@ -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:42 templates/users.php:138
+msgid "Unlimited"
+msgstr ""
-#: templates/users.php:55 templates/users.php:138
+#: 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:133
+msgid "Default"
+msgstr ""
-#: templates/users.php:146
+#: templates/users.php:161
msgid "Delete"
msgstr "Kustuta"
diff --git a/l10n/eu/files.po b/l10n/eu/files.po
index fc884c532ed..39f84f32b35 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-05 00:02+0100\n"
+"PO-Revision-Date: 2013-01-04 12:30+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"
@@ -113,76 +125,76 @@ msgstr "IZen aliogabea, '\\', '/', '<', '>', ':', '\"', '|', '?' eta '*' ez daud
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:212
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:212
msgid "Upload Error"
msgstr "Igotzean errore bat suertatu da"
-#: js/files.js:226
+#: js/files.js:229
msgid "Close"
msgstr "Itxi"
-#: js/files.js:245 js/files.js:359 js/files.js:389
+#: js/files.js:248 js/files.js:362 js/files.js:392
msgid "Pending"
msgstr "Zain"
-#: js/files.js:265
+#: js/files.js:268
msgid "1 file uploading"
msgstr "fitxategi 1 igotzen"
-#: js/files.js:268 js/files.js:322 js/files.js:337
+#: js/files.js:271 js/files.js:325 js/files.js:340
msgid "{count} files uploading"
msgstr "{count} fitxategi igotzen"
-#: js/files.js:340 js/files.js:373
+#: js/files.js:343 js/files.js:376
msgid "Upload cancelled."
msgstr "Igoera ezeztatuta"
-#: js/files.js:442
+#: js/files.js:445
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:515
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:699
msgid "{count} files scanned"
msgstr "{count} fitxategi eskaneatuta"
-#: js/files.js:701
+#: js/files.js:707
msgid "error while scanning"
msgstr "errore bat egon da eskaneatzen zen bitartean"
-#: js/files.js:774 templates/index.php:66
+#: js/files.js:780 templates/index.php:66
msgid "Name"
msgstr "Izena"
-#: js/files.js:775 templates/index.php:77
+#: js/files.js:781 templates/index.php:77
msgid "Size"
msgstr "Tamaina"
-#: js/files.js:776 templates/index.php:79
+#: js/files.js:782 templates/index.php:79
msgid "Modified"
msgstr "Aldatuta"
-#: js/files.js:803
+#: js/files.js:801
msgid "1 folder"
msgstr "karpeta bat"
-#: js/files.js:805
+#: js/files.js:803
msgid "{count} folders"
msgstr "{count} karpeta"
-#: js/files.js:813
+#: js/files.js:811
msgid "1 file"
msgstr "fitxategi bat"
-#: js/files.js:815
+#: js/files.js:813
msgid "{count} files"
msgstr "{count} fitxategi"
@@ -194,27 +206,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 70742445f54..285a6bad98d 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 b3a9725781d..cf8c43c710b 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-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: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n"
"MIME-Version: 1.0\n"
@@ -120,27 +120,27 @@ msgstr "-lizentziatua %s erabili duzu eskuragarri duzun %s<
#: templates/personal.php:12
msgid "Clients"
-msgstr ""
+msgstr "Bezeroak"
#: templates/personal.php:13
msgid "Download Desktop Clients"
-msgstr ""
+msgstr "Deskargatu mahaigainerako bezeroak"
#: templates/personal.php:14
msgid "Download Android Client"
-msgstr ""
+msgstr "Deskargatu Android bezeroa"
#: templates/personal.php:15
msgid "Download iOS Client"
-msgstr ""
+msgstr "Deskargatu iOS bezeroa"
-#: 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 "Pasahitza"
@@ -213,15 +213,15 @@ msgstr "Lagundu itzultzen"
#: 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 "Erabili helbide hau zure fitxategi kudeatzailean zure ownCloudera konektatzeko"
#: templates/personal.php:63
msgid "Version"
-msgstr ""
+msgstr "Bertsioa"
#: templates/personal.php:65
msgid ""
@@ -233,11 +233,11 @@ msgid ""
"License\">AGPL."
msgstr "ownCloud komunitateak garatuta, itubruru kodeaAGPL 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:133
+msgid "Default"
+msgstr ""
-#: templates/users.php:146
+#: templates/users.php:161
msgid "Delete"
msgstr "Ezabatu"
diff --git a/l10n/eu/user_ldap.po b/l10n/eu/user_ldap.po
index 262c0ba4f38..6184b2abf9d 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 b7e5b1a0d37..0f039352404 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/files.po b/l10n/fa/files.po
index 7e13f99c90f..2a5d7c6c147 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-05 00:02+0100\n"
+"PO-Revision-Date: 2013-01-04 12:30+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,39 +79,39 @@ 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 ""
@@ -109,80 +121,80 @@ msgid ""
"allowed."
msgstr ""
-#: js/files.js:183
+#: js/files.js:174
msgid "generating ZIP-file, it may take some time."
msgstr "در حال ساخت فایل فشرده ممکن است زمان زیادی به طول بیانجامد"
-#: js/files.js:218
+#: js/files.js:212
msgid "Unable to upload your file as it is a directory or has 0 bytes"
msgstr "ناتوان در بارگذاری یا فایل یک پوشه است یا 0بایت دارد"
-#: js/files.js:218
+#: js/files.js:212
msgid "Upload Error"
msgstr "خطا در بار گذاری"
-#: js/files.js:235
+#: js/files.js:229
msgid "Close"
msgstr "بستن"
-#: js/files.js:254 js/files.js:368 js/files.js:398
+#: js/files.js:248 js/files.js:362 js/files.js:392
msgid "Pending"
msgstr "در انتظار"
-#: js/files.js:274
+#: js/files.js:268
msgid "1 file uploading"
msgstr ""
-#: js/files.js:277 js/files.js:331 js/files.js:346
+#: js/files.js:271 js/files.js:325 js/files.js:340
msgid "{count} files uploading"
msgstr ""
-#: js/files.js:349 js/files.js:382
+#: js/files.js:343 js/files.js:376
msgid "Upload cancelled."
msgstr "بار گذاری لغو شد"
-#: js/files.js:451
+#: js/files.js:445
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr ""
-#: js/files.js:523
+#: js/files.js:515
msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud"
msgstr ""
-#: js/files.js:704
+#: js/files.js:699
msgid "{count} files scanned"
msgstr ""
-#: js/files.js:712
+#: js/files.js:707
msgid "error while scanning"
msgstr ""
-#: js/files.js:785 templates/index.php:65
+#: js/files.js:780 templates/index.php:66
msgid "Name"
msgstr "نام"
-#: js/files.js:786 templates/index.php:76
+#: js/files.js:781 templates/index.php:77
msgid "Size"
msgstr "اندازه"
-#: js/files.js:787 templates/index.php:78
+#: js/files.js:782 templates/index.php:79
msgid "Modified"
msgstr "تغییر یافته"
-#: js/files.js:814
+#: js/files.js:801
msgid "1 folder"
msgstr ""
-#: js/files.js:816
+#: js/files.js:803
msgid "{count} folders"
msgstr ""
-#: js/files.js:824
+#: js/files.js:811
msgid "1 file"
msgstr ""
-#: js/files.js:826
+#: js/files.js:813
msgid "{count} files"
msgstr ""
@@ -194,27 +206,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 +254,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 8b195e20c4d..55f1ea97204 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-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: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n"
"MIME-Version: 1.0\n"
@@ -150,7 +150,7 @@ msgstr ""
#: templates/personal.php:12
msgid "Clients"
-msgstr ""
+msgstr "مشتریان"
#: templates/personal.php:13
msgid "Download Desktop Clients"
@@ -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:42 templates/users.php:138
+msgid "Unlimited"
+msgstr ""
-#: templates/users.php:55 templates/users.php:138
+#: 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:133
+msgid "Default"
+msgstr ""
-#: templates/users.php:146
+#: templates/users.php:161
msgid "Delete"
msgstr "پاک کردن"
diff --git a/l10n/fi_FI/files.po b/l10n/fi_FI/files.po
index e96dbeabb50..9220162130c 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,9 +12,9 @@ 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"
-"Last-Translator: I Robot \n"
+"POT-Creation-Date: 2013-01-05 00:02+0100\n"
+"PO-Revision-Date: 2013-01-04 17:44+0000\n"
+"Last-Translator: Jiri Grönroos \n"
"Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -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,39 +81,39 @@ 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 ""
@@ -111,80 +123,80 @@ msgid ""
"allowed."
msgstr "Virheellinen nimi, merkit '\\', '/', '<', '>', ':', '\"', '|', '?' ja '*' eivät ole sallittuja."
-#: js/files.js:183
+#: js/files.js:174
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:212
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:212
msgid "Upload Error"
msgstr "Lähetysvirhe."
-#: js/files.js:235
+#: js/files.js:229
msgid "Close"
msgstr "Sulje"
-#: js/files.js:254 js/files.js:368 js/files.js:398
+#: js/files.js:248 js/files.js:362 js/files.js:392
msgid "Pending"
msgstr "Odottaa"
-#: js/files.js:274
+#: js/files.js:268
msgid "1 file uploading"
msgstr ""
-#: js/files.js:277 js/files.js:331 js/files.js:346
+#: js/files.js:271 js/files.js:325 js/files.js:340
msgid "{count} files uploading"
msgstr ""
-#: js/files.js:349 js/files.js:382
+#: js/files.js:343 js/files.js:376
msgid "Upload cancelled."
msgstr "Lähetys peruttu."
-#: js/files.js:451
+#: js/files.js:445
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:515
msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud"
msgstr ""
-#: js/files.js:704
+#: js/files.js:699
msgid "{count} files scanned"
msgstr ""
-#: js/files.js:712
+#: js/files.js:707
msgid "error while scanning"
msgstr ""
-#: js/files.js:785 templates/index.php:65
+#: js/files.js:780 templates/index.php:66
msgid "Name"
msgstr "Nimi"
-#: js/files.js:786 templates/index.php:76
+#: js/files.js:781 templates/index.php:77
msgid "Size"
msgstr "Koko"
-#: js/files.js:787 templates/index.php:78
+#: js/files.js:782 templates/index.php:79
msgid "Modified"
msgstr "Muutettu"
-#: js/files.js:814
+#: js/files.js:801
msgid "1 folder"
msgstr "1 kansio"
-#: js/files.js:816
+#: js/files.js:803
msgid "{count} folders"
msgstr "{count} kansiota"
-#: js/files.js:824
+#: js/files.js:811
msgid "1 file"
msgstr "1 tiedosto"
-#: js/files.js:826
+#: js/files.js:813
msgid "{count} files"
msgstr "{count} tiedostoa"
@@ -196,27 +208,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 +256,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 c65a8d3da40..0b52b4e2f60 100644
--- a/l10n/fi_FI/settings.po
+++ b/l10n/fi_FI/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-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: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n"
"MIME-Version: 1.0\n"
@@ -120,27 +120,27 @@ msgstr "-lisensoija %s/%s"
#: templates/personal.php:12
msgid "Clients"
-msgstr ""
+msgstr "Asiakkaat"
#: templates/personal.php:13
msgid "Download Desktop Clients"
-msgstr ""
+msgstr "Lataa työpöytäsovelluksia"
#: templates/personal.php:14
msgid "Download Android Client"
-msgstr ""
+msgstr "Lataa Android-sovellus"
#: templates/personal.php:15
msgid "Download iOS Client"
-msgstr ""
+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"
@@ -213,15 +213,15 @@ msgstr "Auta kääntämisessä"
#: 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 "Käytä tätä osoitetta yhdistäessäsi ownCloudiisi tiedostonhallintaa käyttäen"
#: templates/personal.php:63
msgid "Version"
-msgstr ""
+msgstr "Versio"
#: templates/personal.php:65
msgid ""
@@ -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:133
+msgid "Default"
+msgstr ""
-#: templates/users.php:146
+#: templates/users.php:161
msgid "Delete"
msgstr "Poista"
diff --git a/l10n/fr/core.po b/l10n/fr/core.po
index 3630d49e784..04a866c32f8 100644
--- a/l10n/fr/core.po
+++ b/l10n/fr/core.po
@@ -4,20 +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-13 00:17+0100\n"
-"PO-Revision-Date: 2012-12-12 23:17+0000\n"
-"Last-Translator: I Robot \n"
+"POT-Creation-Date: 2013-01-04 13:22+0100\n"
+"PO-Revision-Date: 2013-01-03 10:24+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"
@@ -28,26 +31,26 @@ msgstr ""
#: ajax/share.php:84
#, php-format
msgid "User %s shared a file with you"
-msgstr ""
+msgstr "L'utilisateur %s a partagé un fichier avec vous"
#: ajax/share.php:86
#, php-format
msgid "User %s shared a folder with you"
-msgstr ""
+msgstr "L'utilsateur %s a partagé un dossier avec vous"
#: ajax/share.php:88
#, php-format
msgid ""
"User %s shared the file \"%s\" with you. It is available for download here: "
"%s"
-msgstr ""
+msgstr "L'utilisateur %s a partagé le fichier \"%s\" avec vous. Vous pouvez le télécharger ici : %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 "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."
@@ -169,8 +172,8 @@ msgid "The object type is not specified."
msgstr "Le type d'objet n'est pas spécifié."
#: 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 "Erreur"
@@ -182,7 +185,7 @@ msgstr "Le nom de l'application n'est pas spécifié."
msgid "The required file {file} is not installed!"
msgstr "Le fichier requis {file} n'est pas installé !"
-#: js/share.js:124 js/share.js:581
+#: js/share.js:124 js/share.js:594
msgid "Error while sharing"
msgstr "Erreur lors de la mise en partage"
@@ -210,22 +213,22 @@ msgstr "Partager avec"
msgid "Share with link"
msgstr "Partager via lien"
-#: js/share.js:164
+#: js/share.js:166
msgid "Password protect"
msgstr "Protéger par un mot de passe"
-#: 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 "Mot de passe"
#: js/share.js:172
msgid "Email link to person"
-msgstr ""
+msgstr "Envoyez le lien par email"
#: js/share.js:173
msgid "Send"
-msgstr ""
+msgstr "Envoyer"
#: js/share.js:177
msgid "Set expiration date"
@@ -279,25 +282,25 @@ msgstr "supprimer"
msgid "share"
msgstr "partager"
-#: js/share.js:353 js/share.js:528 js/share.js:530
+#: js/share.js:356 js/share.js:541
msgid "Password protected"
msgstr "Protégé par un mot de passe"
-#: js/share.js:541
+#: 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:553
+#: js/share.js:566
msgid "Error setting expiration date"
msgstr "Erreur lors de la spécification de la date d'expiration"
-#: js/share.js:568
+#: js/share.js:581
msgid "Sending ..."
-msgstr ""
+msgstr "En cours d'envoi ..."
-#: js/share.js:579
+#: js/share.js:592
msgid "Email sent"
-msgstr ""
+msgstr "Email envoyé"
#: lostpassword/controller.php:47
msgid "ownCloud password reset"
@@ -319,8 +322,8 @@ msgstr "Mail de réinitialisation envoyé."
msgid "Request failed!"
msgstr "La requête a échoué !"
-#: 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 "Nom d'utilisateur"
@@ -382,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 ""
@@ -409,44 +412,44 @@ msgstr "Votre dossier data et vos fichiers sont probablement accessibles depuis
msgid "Create an admin account"
msgstr "Créer un compte administrateur"
-#: templates/installation.php:48
+#: templates/installation.php:50
msgid "Advanced"
msgstr "Avancé"
-#: templates/installation.php:50
+#: templates/installation.php:52
msgid "Data folder"
msgstr "Répertoire des données"
-#: templates/installation.php:57
+#: templates/installation.php:59
msgid "Configure the database"
msgstr "Configurer la base de données"
-#: 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 "sera utilisé"
-#: templates/installation.php:105
+#: templates/installation.php:107
msgid "Database user"
msgstr "Utilisateur pour la base de données"
-#: templates/installation.php:109
+#: templates/installation.php:111
msgid "Database password"
msgstr "Mot de passe de la base de données"
-#: templates/installation.php:113
+#: templates/installation.php:115
msgid "Database name"
msgstr "Nom de la base de données"
-#: templates/installation.php:121
+#: templates/installation.php:123
msgid "Database tablespace"
msgstr "Tablespaces de la base de données"
-#: templates/installation.php:127
+#: templates/installation.php:129
msgid "Database host"
msgstr "Serveur de la base de données"
-#: templates/installation.php:132
+#: templates/installation.php:134
msgid "Finish setup"
msgstr "Terminer l'installation"
@@ -534,29 +537,29 @@ msgstr "services web sous votre contrôle"
msgid "Log out"
msgstr "Se déconnecter"
-#: templates/login.php:8
+#: templates/login.php:10
msgid "Automatic logon rejected!"
msgstr "Connexion automatique rejetée !"
-#: templates/login.php:9
+#: templates/login.php:11
msgid ""
"If you did not change your password recently, your account may be "
"compromised!"
msgstr "Si vous n'avez pas changé votre mot de passe récemment, votre compte risque d'être compromis !"
-#: templates/login.php:10
+#: templates/login.php:13
msgid "Please change your password to secure your account again."
msgstr "Veuillez changer votre mot de passe pour sécuriser à nouveau votre compte."
-#: templates/login.php:15
+#: templates/login.php:19
msgid "Lost your password?"
msgstr "Mot de passe perdu ?"
-#: templates/login.php:27
+#: templates/login.php:39
msgid "remember"
msgstr "se souvenir de moi"
-#: templates/login.php:28
+#: templates/login.php:41
msgid "Log in"
msgstr "Connexion"
diff --git a/l10n/fr/files.po b/l10n/fr/files.po
index b0fb5e1a70e..e08609ef35b 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-05 00:02+0100\n"
+"PO-Revision-Date: 2013-01-04 12:30+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,39 +88,39 @@ 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}"
@@ -117,80 +130,80 @@ msgid ""
"allowed."
msgstr "Nom invalide, les caractères '\\', '/', '<', '>', ':', '\"', '|', '?' et '*' ne sont pas autorisés."
-#: js/files.js:183
+#: js/files.js:174
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:212
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:212
msgid "Upload Error"
msgstr "Erreur de chargement"
-#: js/files.js:235
+#: js/files.js:229
msgid "Close"
msgstr "Fermer"
-#: js/files.js:254 js/files.js:368 js/files.js:398
+#: js/files.js:248 js/files.js:362 js/files.js:392
msgid "Pending"
msgstr "En cours"
-#: js/files.js:274
+#: js/files.js:268
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:271 js/files.js:325 js/files.js:340
msgid "{count} files uploading"
msgstr "{count} fichiers téléversés"
-#: js/files.js:349 js/files.js:382
+#: js/files.js:343 js/files.js:376
msgid "Upload cancelled."
msgstr "Chargement annulé."
-#: js/files.js:451
+#: js/files.js:445
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:515
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:699
msgid "{count} files scanned"
msgstr "{count} fichiers indexés"
-#: js/files.js:712
+#: js/files.js:707
msgid "error while scanning"
msgstr "erreur lors de l'indexation"
-#: js/files.js:785 templates/index.php:65
+#: js/files.js:780 templates/index.php:66
msgid "Name"
msgstr "Nom"
-#: js/files.js:786 templates/index.php:76
+#: js/files.js:781 templates/index.php:77
msgid "Size"
msgstr "Taille"
-#: js/files.js:787 templates/index.php:78
+#: js/files.js:782 templates/index.php:79
msgid "Modified"
msgstr "Modifié"
-#: js/files.js:814
+#: js/files.js:801
msgid "1 folder"
msgstr "1 dossier"
-#: js/files.js:816
+#: js/files.js:803
msgid "{count} folders"
msgstr "{count} dossiers"
-#: js/files.js:824
+#: js/files.js:811
msgid "1 file"
msgstr "1 fichier"
-#: js/files.js:826
+#: js/files.js:813
msgid "{count} files"
msgstr "{count} fichiers"
@@ -202,27 +215,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 +263,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 5484aa3b4c9..02af3bd71fb 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 60e593f91e7..be09fe8f50a 100644
--- a/l10n/fr/settings.po
+++ b/l10n/fr/settings.po
@@ -5,12 +5,14 @@
# Translators:
# Brice , 2012.
# Cyril Glapa , 2012.
+# , 2013.
# , 2011.
# , 2012.
# , 2012.
# , 2012.
# Jan-Christoph Borchardt , 2011.
# , 2012.
+# , 2012.
# Nahir Mohamed , 2012.
# , 2012.
# Robert Di Rosa <>, 2012.
@@ -20,9 +22,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:11+0000\n"
-"Last-Translator: I Robot \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"
@@ -130,27 +132,27 @@ msgstr "Distribué sous licence , par %s des %s disponible
#: templates/personal.php:12
msgid "Clients"
-msgstr ""
+msgstr "Clients"
#: templates/personal.php:13
msgid "Download Desktop Clients"
-msgstr ""
+msgstr "Télécharger des clients de bureau"
#: templates/personal.php:14
msgid "Download Android Client"
-msgstr ""
+msgstr "Télécharger le client Android"
#: templates/personal.php:15
msgid "Download iOS Client"
-msgstr ""
+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"
@@ -223,15 +225,15 @@ msgstr "Aidez à traduire"
#: 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 "Utiliser cette adresse pour vous connecter à ownCloud dans votre gestionnaire de fichiers"
#: templates/personal.php:63
msgid "Version"
-msgstr ""
+msgstr "Version"
#: templates/personal.php:65
msgid ""
@@ -243,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"
@@ -256,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:42 templates/users.php:138
+msgid "Unlimited"
+msgstr "Illimité"
-#: templates/users.php:55 templates/users.php:138
+#: 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:133
+msgid "Default"
+msgstr "Défaut"
-#: templates/users.php:146
+#: templates/users.php:161
msgid "Delete"
msgstr "Supprimer"
diff --git a/l10n/fr/user_ldap.po b/l10n/fr/user_ldap.po
index fee57ce5e39..d435d3b77ce 100644
--- a/l10n/fr/user_ldap.po
+++ b/l10n/fr/user_ldap.po
@@ -5,6 +5,7 @@
# Translators:
# Cyril Glapa , 2012.
# , 2012.
+# , 2012.
# Romain DEP. , 2012.
# , 2012.
# , 2012.
@@ -12,9 +13,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-25 00:10+0100\n"
+"PO-Revision-Date: 2012-12-24 14:18+0000\n"
+"Last-Translator: mishka \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"
@@ -27,13 +28,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 "Avertissement: Les applications user_ldap et user_webdavauth sont incompatibles. Des disfonctionnements peuvent survenir. Contactez votre administrateur système pour qu'il désactive l'une d'elles."
#: 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 "Avertissement: Le module PHP LDAP requis n'est pas installé, l'application ne marchera pas. Contactez votre administrateur système pour qu'il l'installe."
#: templates/settings.php:15
msgid "Host"
diff --git a/l10n/fr/user_webdavauth.po b/l10n/fr/user_webdavauth.po
index 4d2c6a78376..4917efe0505 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 22c66343396..69256439a07 100644
--- a/l10n/gl/core.po
+++ b/l10n/gl/core.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-13 00:17+0100\n"
-"PO-Revision-Date: 2012-12-12 23:17+0000\n"
-"Last-Translator: I Robot \n"
+"POT-Creation-Date: 2013-01-01 00:04+0100\n"
+"PO-Revision-Date: 2012-12-31 09:32+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"
@@ -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"
@@ -574,7 +575,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 d44302b22d1..9d4acd36d9a 100644
--- a/l10n/gl/files.po
+++ b/l10n/gl/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 21:51+0000\n"
-"Last-Translator: Miguel Branco \n"
+"POT-Creation-Date: 2013-01-05 00:02+0100\n"
+"PO-Revision-Date: 2013-01-04 12:30+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 ""
+
+#: ajax/upload.php:69
+msgid "Invalid directory."
+msgstr ""
+
#: 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,39 +78,39 @@ 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"
@@ -108,80 +120,80 @@ msgid ""
"allowed."
msgstr "Nome non válido, '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' non se permiten."
-#: js/files.js:183
+#: js/files.js:174
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:212
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:212
msgid "Upload Error"
msgstr "Erro na subida"
-#: js/files.js:235
+#: js/files.js:229
msgid "Close"
msgstr "Pechar"
-#: js/files.js:254 js/files.js:368 js/files.js:398
+#: js/files.js:248 js/files.js:362 js/files.js:392
msgid "Pending"
msgstr "Pendentes"
-#: js/files.js:274
+#: js/files.js:268
msgid "1 file uploading"
msgstr "1 ficheiro subíndose"
-#: js/files.js:277 js/files.js:331 js/files.js:346
+#: js/files.js:271 js/files.js:325 js/files.js:340
msgid "{count} files uploading"
msgstr "{count} ficheiros subíndose"
-#: js/files.js:349 js/files.js:382
+#: js/files.js:343 js/files.js:376
msgid "Upload cancelled."
msgstr "Subida cancelada."
-#: js/files.js:451
+#: js/files.js:445
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:515
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:699
msgid "{count} files scanned"
msgstr "{count} ficheiros escaneados"
-#: js/files.js:712
+#: js/files.js:707
msgid "error while scanning"
msgstr "erro mentres analizaba"
-#: js/files.js:785 templates/index.php:65
+#: js/files.js:780 templates/index.php:66
msgid "Name"
msgstr "Nome"
-#: js/files.js:786 templates/index.php:76
+#: js/files.js:781 templates/index.php:77
msgid "Size"
msgstr "Tamaño"
-#: js/files.js:787 templates/index.php:78
+#: js/files.js:782 templates/index.php:79
msgid "Modified"
msgstr "Modificado"
-#: js/files.js:814
+#: js/files.js:801
msgid "1 folder"
msgstr "1 cartafol"
-#: js/files.js:816
+#: js/files.js:803
msgid "{count} folders"
msgstr "{count} cartafoles"
-#: js/files.js:824
+#: js/files.js:811
msgid "1 file"
msgstr "1 ficheiro"
-#: js/files.js:826
+#: js/files.js:813
msgid "{count} files"
msgstr "{count} ficheiros"
@@ -193,27 +205,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 +253,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 775152bbea7..9bc476ece0b 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 aee8d7785c5..29fdaa8ac25 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-20 00:11+0100\n"
-"PO-Revision-Date: 2012-12-19 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 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,50 +120,50 @@ 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"
-msgstr ""
+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:42 templates/users.php:138
+msgid "Unlimited"
+msgstr "Sen límites"
-#: templates/users.php:55 templates/users.php:138
+#: 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:133
+msgid "Default"
+msgstr "Predeterminado"
-#: templates/users.php:146
+#: 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 e61cf22989a..024f611c187 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 8fdb2745637..5630c82c50e 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/files.po b/l10n/he/files.po
index 2d18545dbb6..5a1ed8223cf 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-05 00:02+0100\n"
+"PO-Revision-Date: 2013-01-04 12:30+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,39 +80,39 @@ 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} נמחקו"
@@ -110,80 +122,80 @@ msgid ""
"allowed."
msgstr "השם שגוי, אסור להשתמש בתווים '\\', '/', '<', '>', ':', '\"', '|', '?' ו־'*'."
-#: js/files.js:183
+#: js/files.js:174
msgid "generating ZIP-file, it may take some time."
msgstr "יוצר קובץ ZIP, אנא המתן."
-#: js/files.js:218
+#: js/files.js:212
msgid "Unable to upload your file as it is a directory or has 0 bytes"
msgstr "לא יכול להעלות את הקובץ מכיוון שזו תקיה או שמשקל הקובץ 0 בתים"
-#: js/files.js:218
+#: js/files.js:212
msgid "Upload Error"
msgstr "שגיאת העלאה"
-#: js/files.js:235
+#: js/files.js:229
msgid "Close"
msgstr "סגירה"
-#: js/files.js:254 js/files.js:368 js/files.js:398
+#: js/files.js:248 js/files.js:362 js/files.js:392
msgid "Pending"
msgstr "ממתין"
-#: js/files.js:274
+#: js/files.js:268
msgid "1 file uploading"
msgstr "קובץ אחד נשלח"
-#: js/files.js:277 js/files.js:331 js/files.js:346
+#: js/files.js:271 js/files.js:325 js/files.js:340
msgid "{count} files uploading"
msgstr "{count} קבצים נשלחים"
-#: js/files.js:349 js/files.js:382
+#: js/files.js:343 js/files.js:376
msgid "Upload cancelled."
msgstr "ההעלאה בוטלה."
-#: js/files.js:451
+#: js/files.js:445
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr "מתבצעת כעת העלאת קבצים. עזיבה של העמוד תבטל את ההעלאה."
-#: js/files.js:523
+#: js/files.js:515
msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud"
msgstr "שם התיקייה שגוי. השימוש בשם „Shared“ שמור לטובת Owncloud"
-#: js/files.js:704
+#: js/files.js:699
msgid "{count} files scanned"
msgstr "{count} קבצים נסרקו"
-#: js/files.js:712
+#: js/files.js:707
msgid "error while scanning"
msgstr "אירעה שגיאה במהלך הסריקה"
-#: js/files.js:785 templates/index.php:65
+#: js/files.js:780 templates/index.php:66
msgid "Name"
msgstr "שם"
-#: js/files.js:786 templates/index.php:76
+#: js/files.js:781 templates/index.php:77
msgid "Size"
msgstr "גודל"
-#: js/files.js:787 templates/index.php:78
+#: js/files.js:782 templates/index.php:79
msgid "Modified"
msgstr "זמן שינוי"
-#: js/files.js:814
+#: js/files.js:801
msgid "1 folder"
msgstr "תיקייה אחת"
-#: js/files.js:816
+#: js/files.js:803
msgid "{count} folders"
msgstr "{count} תיקיות"
-#: js/files.js:824
+#: js/files.js:811
msgid "1 file"
msgstr "קובץ אחד"
-#: js/files.js:826
+#: js/files.js:813
msgid "{count} files"
msgstr "{count} קבצים"
@@ -195,27 +207,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 +255,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 ab535b9271f..860989631c4 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:6
+msgid "Enable Encryption"
+msgstr "הפעל הצפנה"
-#: templates/settings.php:5
+#: templates/settings.php:7
msgid "None"
-msgstr ""
+msgstr "כלום"
-#: templates/settings.php:10
-msgid "Enable Encryption"
-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 f116ca17bb4..4dd6b3fe8d4 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-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: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n"
"MIME-Version: 1.0\n"
@@ -120,19 +121,19 @@ msgstr "ברישיון לטובת %s מתוך %s הזמ
#: templates/personal.php:12
msgid "Clients"
-msgstr ""
+msgstr "לקוחות"
#: templates/personal.php:13
msgid "Download Desktop Clients"
-msgstr ""
+msgstr "הורד לתוכנה למחשב"
#: templates/personal.php:14
msgid "Download Android Client"
-msgstr ""
+msgstr "הורד תוכנה לאנדרואיד"
#: templates/personal.php:15
msgid "Download iOS Client"
-msgstr ""
+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 "ססמה"
@@ -217,11 +218,11 @@ msgstr ""
#: templates/personal.php:54
msgid "Use this address to connect to your ownCloud in your file manager"
-msgstr ""
+msgstr "השתמש בכתובת זאת על מנת להתחבר אל ownCloud דרך סייר קבצים."
#: templates/personal.php:63
msgid "Version"
-msgstr ""
+msgstr "גרסא"
#: templates/personal.php:65
msgid ""
@@ -233,11 +234,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 "קבוצות"
@@ -246,21 +247,29 @@ msgid "Create"
msgstr "יצירה"
#: templates/users.php:35
-msgid "Default Quota"
-msgstr "מכסת בררת המחדל"
+msgid "Default Storage"
+msgstr ""
+
+#: templates/users.php:42 templates/users.php:138
+msgid "Unlimited"
+msgstr ""
-#: templates/users.php:55 templates/users.php:138
+#: 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:133
+msgid "Default"
+msgstr ""
-#: templates/users.php:146
+#: templates/users.php:161
msgid "Delete"
msgstr "מחיקה"
diff --git a/l10n/hi/files.po b/l10n/hi/files.po
index 1c494c435f9..12a3b1fd159 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-04 13:22+0100\n"
+"PO-Revision-Date: 2013-01-04 12:22+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,39 +76,39 @@ 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 ""
@@ -106,80 +118,80 @@ msgid ""
"allowed."
msgstr ""
-#: js/files.js:183
+#: js/files.js:174
msgid "generating ZIP-file, it may take some time."
msgstr ""
-#: js/files.js:218
+#: js/files.js:212
msgid "Unable to upload your file as it is a directory or has 0 bytes"
msgstr ""
-#: js/files.js:218
+#: js/files.js:212
msgid "Upload Error"
msgstr ""
-#: js/files.js:235
+#: js/files.js:229
msgid "Close"
msgstr ""
-#: js/files.js:254 js/files.js:368 js/files.js:398
+#: js/files.js:248 js/files.js:362 js/files.js:392
msgid "Pending"
msgstr ""
-#: js/files.js:274
+#: js/files.js:268
msgid "1 file uploading"
msgstr ""
-#: js/files.js:277 js/files.js:331 js/files.js:346
+#: js/files.js:271 js/files.js:325 js/files.js:340
msgid "{count} files uploading"
msgstr ""
-#: js/files.js:349 js/files.js:382
+#: js/files.js:343 js/files.js:376
msgid "Upload cancelled."
msgstr ""
-#: js/files.js:451
+#: js/files.js:445
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr ""
-#: js/files.js:523
+#: js/files.js:515
msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud"
msgstr ""
-#: js/files.js:704
+#: js/files.js:699
msgid "{count} files scanned"
msgstr ""
-#: js/files.js:712
+#: js/files.js:707
msgid "error while scanning"
msgstr ""
-#: js/files.js:785 templates/index.php:65
+#: js/files.js:780 templates/index.php:66
msgid "Name"
msgstr ""
-#: js/files.js:786 templates/index.php:76
+#: js/files.js:781 templates/index.php:77
msgid "Size"
msgstr ""
-#: js/files.js:787 templates/index.php:78
+#: js/files.js:782 templates/index.php:79
msgid "Modified"
msgstr ""
-#: js/files.js:814
+#: js/files.js:801
msgid "1 folder"
msgstr ""
-#: js/files.js:816
+#: js/files.js:803
msgid "{count} folders"
msgstr ""
-#: js/files.js:824
+#: js/files.js:811
msgid "1 file"
msgstr ""
-#: js/files.js:826
+#: js/files.js:813
msgid "{count} files"
msgstr ""
@@ -191,27 +203,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 +251,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 76241d2e5a1..5bf27381000 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:133
+msgid "Default"
msgstr ""
-#: templates/users.php:146
+#: templates/users.php:161
msgid "Delete"
msgstr ""
diff --git a/l10n/hr/files.po b/l10n/hr/files.po
index 7a1464ff148..d47d5f18bdc 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-04 13:22+0100\n"
+"PO-Revision-Date: 2013-01-04 12:22+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,39 +79,39 @@ 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 ""
@@ -109,80 +121,80 @@ msgid ""
"allowed."
msgstr ""
-#: js/files.js:183
+#: js/files.js:174
msgid "generating ZIP-file, it may take some time."
msgstr "generiranje ZIP datoteke, ovo može potrajati."
-#: js/files.js:218
+#: js/files.js:212
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:212
msgid "Upload Error"
msgstr "Pogreška pri slanju"
-#: js/files.js:235
+#: js/files.js:229
msgid "Close"
msgstr "Zatvori"
-#: js/files.js:254 js/files.js:368 js/files.js:398
+#: js/files.js:248 js/files.js:362 js/files.js:392
msgid "Pending"
msgstr "U tijeku"
-#: js/files.js:274
+#: js/files.js:268
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:271 js/files.js:325 js/files.js:340
msgid "{count} files uploading"
msgstr ""
-#: js/files.js:349 js/files.js:382
+#: js/files.js:343 js/files.js:376
msgid "Upload cancelled."
msgstr "Slanje poništeno."
-#: js/files.js:451
+#: js/files.js:445
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:515
msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud"
msgstr ""
-#: js/files.js:704
+#: js/files.js:699
msgid "{count} files scanned"
msgstr ""
-#: js/files.js:712
+#: js/files.js:707
msgid "error while scanning"
msgstr "grečka prilikom skeniranja"
-#: js/files.js:785 templates/index.php:65
+#: js/files.js:780 templates/index.php:66
msgid "Name"
msgstr "Naziv"
-#: js/files.js:786 templates/index.php:76
+#: js/files.js:781 templates/index.php:77
msgid "Size"
msgstr "Veličina"
-#: js/files.js:787 templates/index.php:78
+#: js/files.js:782 templates/index.php:79
msgid "Modified"
msgstr "Zadnja promjena"
-#: js/files.js:814
+#: js/files.js:801
msgid "1 folder"
msgstr ""
-#: js/files.js:816
+#: js/files.js:803
msgid "{count} folders"
msgstr ""
-#: js/files.js:824
+#: js/files.js:811
msgid "1 file"
msgstr ""
-#: js/files.js:826
+#: js/files.js:813
msgid "{count} files"
msgstr ""
@@ -194,27 +206,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 +254,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 2597c4cf005..530e4e42e1e 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-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: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n"
"MIME-Version: 1.0\n"
@@ -149,7 +149,7 @@ msgstr ""
#: templates/personal.php:12
msgid "Clients"
-msgstr ""
+msgstr "Klijenti"
#: templates/personal.php:13
msgid "Download Desktop Clients"
@@ -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:42 templates/users.php:138
+msgid "Unlimited"
+msgstr ""
-#: templates/users.php:55 templates/users.php:138
+#: 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:133
+msgid "Default"
+msgstr ""
-#: templates/users.php:146
+#: 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 00000000000..03c54c112f2
--- /dev/null
+++ b/l10n/hu/core.po
@@ -0,0 +1,579 @@
+# 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/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/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 00000000000..c3d83a15a02
--- /dev/null
+++ b/l10n/hu/files.po
@@ -0,0 +1,278 @@
+# 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-04 13:22+0100\n"
+"PO-Revision-Date: 2013-01-04 12:22+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:33
+msgid ""
+"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not "
+"allowed."
+msgstr ""
+
+#: js/files.js:174
+msgid "generating ZIP-file, it may take some time."
+msgstr ""
+
+#: js/files.js:212
+msgid "Unable to upload your file as it is a directory or has 0 bytes"
+msgstr ""
+
+#: js/files.js:212
+msgid "Upload Error"
+msgstr ""
+
+#: js/files.js:229
+msgid "Close"
+msgstr ""
+
+#: js/files.js:248 js/files.js:362 js/files.js:392
+msgid "Pending"
+msgstr ""
+
+#: js/files.js:268
+msgid "1 file uploading"
+msgstr ""
+
+#: js/files.js:271 js/files.js:325 js/files.js:340
+msgid "{count} files uploading"
+msgstr ""
+
+#: js/files.js:343 js/files.js:376
+msgid "Upload cancelled."
+msgstr ""
+
+#: js/files.js:445
+msgid ""
+"File upload is in progress. Leaving the page now will cancel the upload."
+msgstr ""
+
+#: js/files.js:515
+msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud"
+msgstr ""
+
+#: js/files.js:699
+msgid "{count} files scanned"
+msgstr ""
+
+#: js/files.js:707
+msgid "error while scanning"
+msgstr ""
+
+#: js/files.js:780 templates/index.php:66
+msgid "Name"
+msgstr ""
+
+#: js/files.js:781 templates/index.php:77
+msgid "Size"
+msgstr ""
+
+#: js/files.js:782 templates/index.php:79
+msgid "Modified"
+msgstr ""
+
+#: js/files.js:801
+msgid "1 folder"
+msgstr ""
+
+#: js/files.js:803
+msgid "{count} folders"
+msgstr ""
+
+#: js/files.js:811
+msgid "1 file"
+msgstr ""
+
+#: js/files.js:813
+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 00000000000..26913fea990
--- /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 00000000000..5ee957401ae
--- /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 00000000000..07688f2047c
--- /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 00000000000..8fb51cf6202
--- /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 00000000000..0dc080f7db0
--- /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 00000000000..934e419f787
--- /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 00000000000..e2abecc29af
--- /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 00000000000..d6235e0472c
--- /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 be9005b3379..40dde261a38 100644
--- a/l10n/hu_HU/core.po
+++ b/l10n/hu_HU/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-13 00:17+0100\n"
-"PO-Revision-Date: 2012-12-12 23:17+0000\n"
-"Last-Translator: I Robot \n"
+"POT-Creation-Date: 2013-01-01 00:04+0100\n"
+"PO-Revision-Date: 2012-12-31 14:56+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"
@@ -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,22 @@ 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/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 cddd901f078..ab2c04997d0 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-05 00:02+0100\n"
+"PO-Revision-Date: 2013-01-04 12:30+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,183 @@ 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."
+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:25
+#: ajax/upload.php:26
msgid "The uploaded file was only partially uploaded"
-msgstr "Az eredeti fájl csak részlegesen van feltöltve."
+msgstr "Az eredeti fájlt csak részben sikerült feltölteni."
-#: ajax/upload.php:26
+#: ajax/upload.php:27
msgid "No file was uploaded"
-msgstr "Nem lett fájl feltöltve."
+msgstr "Nem töltődött fel semmi"
-#: ajax/upload.php:27
+#: ajax/upload.php:28
msgid "Missing a temporary folder"
-msgstr "Hiányzik az ideiglenes könyvtár"
+msgstr "Hiányzik egy ideiglenes mappa"
-#: ajax/upload.php:28
+#: 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:284
+#: js/filelist.js:282
msgid "unshared {files}"
-msgstr ""
+msgstr "{files} fájl megosztása visszavonva"
-#: js/filelist.js:286
+#: js/filelist.js:284
msgid "deleted {files}"
-msgstr ""
+msgstr "{files} fájl törölve"
#: js/files.js:33
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:174
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:212
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:212
msgid "Upload Error"
msgstr "Feltöltési hiba"
-#: js/files.js:235
+#: js/files.js:229
msgid "Close"
-msgstr "Bezár"
+msgstr "Bezárás"
-#: js/files.js:254 js/files.js:368 js/files.js:398
+#: js/files.js:248 js/files.js:362 js/files.js:392
msgid "Pending"
msgstr "Folyamatban"
-#: js/files.js:274
+#: js/files.js:268
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:271 js/files.js:325 js/files.js:340
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:343 js/files.js:376
msgid "Upload cancelled."
-msgstr "Feltöltés megszakítva"
+msgstr "A feltöltést megszakítottuk."
-#: js/files.js:451
+#: js/files.js:445
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:515
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:699
msgid "{count} files scanned"
-msgstr ""
+msgstr "{count} fájlt találtunk"
-#: js/files.js:712
+#: js/files.js:707
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:780 templates/index.php:66
msgid "Name"
msgstr "Név"
-#: js/files.js:786 templates/index.php:76
+#: js/files.js:781 templates/index.php:77
msgid "Size"
msgstr "Méret"
-#: js/files.js:787 templates/index.php:78
+#: js/files.js:782 templates/index.php:79
msgid "Modified"
msgstr "Módosítva"
-#: js/files.js:814
+#: js/files.js:801
msgid "1 folder"
-msgstr ""
+msgstr "1 mappa"
-#: js/files.js:816
+#: js/files.js:803
msgid "{count} folders"
-msgstr ""
+msgstr "{count} mappa"
-#: js/files.js:824
+#: js/files.js:811
msgid "1 file"
-msgstr ""
+msgstr "1 fájl"
-#: js/files.js:826
+#: js/files.js:813
msgid "{count} files"
-msgstr ""
+msgstr "{count} fájl"
#: templates/admin.php:5
msgid "File handling"
@@ -194,27 +206,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"
+msgstr "Kötegelt fájl- vagy mappaletöltéshez szükséges"
-#: templates/admin.php:14
+#: templates/admin.php:17
msgid "Enable ZIP-download"
-msgstr "ZIP-letöltés engedélyezése"
+msgstr "A ZIP-letöltés engedélyezése"
-#: templates/admin.php:17
+#: 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 +244,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 +252,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 8fa556e4714..896e96e2c73 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 b77194ab265..450c7e05616 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 4379b279a64..0534ea09d43 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 ""
+msgstr "Letöltés"
-#: templates/public.php:29
+#: templates/public.php:37
msgid "No preview available for"
-msgstr ""
+msgstr "Nem áll rendelkezésre előnézet ehhez: "
-#: templates/public.php:37
+#: 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 b55e474da7f..0a39722ad7f 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 18f4e74d072..1a78f30958a 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 b4a0c243974..b00e728cc43 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-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 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,80 +115,80 @@ 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"
-msgstr ""
+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"
+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 "Egyéb"
+msgstr "Más"
-#: templates/users.php:80 templates/users.php:112
+#: templates/users.php:85 templates/users.php:117
msgid "Group Admin"
+msgstr "Csoportadminisztrátor"
+
+#: templates/users.php:87
+msgid "Storage"
msgstr ""
-#: templates/users.php:82
-msgid "Quota"
-msgstr "Kvóta"
+#: templates/users.php:133
+msgid "Default"
+msgstr ""
-#: templates/users.php:146
+#: 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 330b4cd1465..655c88dd46a 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 5b8d806958e..5d89219034f 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/files.po b/l10n/ia/files.po
index 3f93aeb3961..7e27aa1727b 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-04 13:22+0100\n"
+"PO-Revision-Date: 2013-01-04 12:22+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,39 +78,39 @@ 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 ""
@@ -108,80 +120,80 @@ msgid ""
"allowed."
msgstr ""
-#: js/files.js:183
+#: js/files.js:174
msgid "generating ZIP-file, it may take some time."
msgstr ""
-#: js/files.js:218
+#: js/files.js:212
msgid "Unable to upload your file as it is a directory or has 0 bytes"
msgstr ""
-#: js/files.js:218
+#: js/files.js:212
msgid "Upload Error"
msgstr ""
-#: js/files.js:235
+#: js/files.js:229
msgid "Close"
msgstr "Clauder"
-#: js/files.js:254 js/files.js:368 js/files.js:398
+#: js/files.js:248 js/files.js:362 js/files.js:392
msgid "Pending"
msgstr ""
-#: js/files.js:274
+#: js/files.js:268
msgid "1 file uploading"
msgstr ""
-#: js/files.js:277 js/files.js:331 js/files.js:346
+#: js/files.js:271 js/files.js:325 js/files.js:340
msgid "{count} files uploading"
msgstr ""
-#: js/files.js:349 js/files.js:382
+#: js/files.js:343 js/files.js:376
msgid "Upload cancelled."
msgstr ""
-#: js/files.js:451
+#: js/files.js:445
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr ""
-#: js/files.js:523
+#: js/files.js:515
msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud"
msgstr ""
-#: js/files.js:704
+#: js/files.js:699
msgid "{count} files scanned"
msgstr ""
-#: js/files.js:712
+#: js/files.js:707
msgid "error while scanning"
msgstr ""
-#: js/files.js:785 templates/index.php:65
+#: js/files.js:780 templates/index.php:66
msgid "Name"
msgstr "Nomine"
-#: js/files.js:786 templates/index.php:76
+#: js/files.js:781 templates/index.php:77
msgid "Size"
msgstr "Dimension"
-#: js/files.js:787 templates/index.php:78
+#: js/files.js:782 templates/index.php:79
msgid "Modified"
msgstr "Modificate"
-#: js/files.js:814
+#: js/files.js:801
msgid "1 folder"
msgstr ""
-#: js/files.js:816
+#: js/files.js:803
msgid "{count} folders"
msgstr ""
-#: js/files.js:824
+#: js/files.js:811
msgid "1 file"
msgstr ""
-#: js/files.js:826
+#: js/files.js:813
msgid "{count} files"
msgstr ""
@@ -193,27 +205,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 +253,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 1908def76a4..5030c5a00a3 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-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: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n"
"MIME-Version: 1.0\n"
@@ -148,7 +148,7 @@ msgstr ""
#: templates/personal.php:12
msgid "Clients"
-msgstr ""
+msgstr "Clientes"
#: templates/personal.php:13
msgid "Download Desktop Clients"
@@ -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:42 templates/users.php:138
+msgid "Unlimited"
+msgstr ""
-#: templates/users.php:55 templates/users.php:138
+#: 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:133
+msgid "Default"
+msgstr ""
-#: templates/users.php:146
+#: templates/users.php:161
msgid "Delete"
msgstr "Deler"
diff --git a/l10n/id/files.po b/l10n/id/files.po
index 4c752ed6c0b..d1498ef87e2 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-04 13:22+0100\n"
+"PO-Revision-Date: 2013-01-04 12:22+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,39 +79,39 @@ 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 ""
@@ -109,80 +121,80 @@ msgid ""
"allowed."
msgstr ""
-#: js/files.js:183
+#: js/files.js:174
msgid "generating ZIP-file, it may take some time."
msgstr "membuat berkas ZIP, ini mungkin memakan waktu."
-#: js/files.js:218
+#: js/files.js:212
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:212
msgid "Upload Error"
msgstr "Terjadi Galat Pengunggahan"
-#: js/files.js:235
+#: js/files.js:229
msgid "Close"
msgstr "tutup"
-#: js/files.js:254 js/files.js:368 js/files.js:398
+#: js/files.js:248 js/files.js:362 js/files.js:392
msgid "Pending"
msgstr "Menunggu"
-#: js/files.js:274
+#: js/files.js:268
msgid "1 file uploading"
msgstr ""
-#: js/files.js:277 js/files.js:331 js/files.js:346
+#: js/files.js:271 js/files.js:325 js/files.js:340
msgid "{count} files uploading"
msgstr ""
-#: js/files.js:349 js/files.js:382
+#: js/files.js:343 js/files.js:376
msgid "Upload cancelled."
msgstr "Pengunggahan dibatalkan."
-#: js/files.js:451
+#: js/files.js:445
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr ""
-#: js/files.js:523
+#: js/files.js:515
msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud"
msgstr ""
-#: js/files.js:704
+#: js/files.js:699
msgid "{count} files scanned"
msgstr ""
-#: js/files.js:712
+#: js/files.js:707
msgid "error while scanning"
msgstr ""
-#: js/files.js:785 templates/index.php:65
+#: js/files.js:780 templates/index.php:66
msgid "Name"
msgstr "Nama"
-#: js/files.js:786 templates/index.php:76
+#: js/files.js:781 templates/index.php:77
msgid "Size"
msgstr "Ukuran"
-#: js/files.js:787 templates/index.php:78
+#: js/files.js:782 templates/index.php:79
msgid "Modified"
msgstr "Dimodifikasi"
-#: js/files.js:814
+#: js/files.js:801
msgid "1 folder"
msgstr ""
-#: js/files.js:816
+#: js/files.js:803
msgid "{count} folders"
msgstr ""
-#: js/files.js:824
+#: js/files.js:811
msgid "1 file"
msgstr ""
-#: js/files.js:826
+#: js/files.js:813
msgid "{count} files"
msgstr ""
@@ -194,27 +206,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 +254,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 cbca52ee8d2..1abd347dc88 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-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: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n"
"MIME-Version: 1.0\n"
@@ -150,7 +150,7 @@ msgstr ""
#: templates/personal.php:12
msgid "Clients"
-msgstr ""
+msgstr "Klien"
#: templates/personal.php:13
msgid "Download Desktop Clients"
@@ -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:42 templates/users.php:138
+msgid "Unlimited"
+msgstr ""
-#: templates/users.php:55 templates/users.php:138
+#: 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:133
+msgid "Default"
+msgstr ""
-#: templates/users.php:146
+#: templates/users.php:161
msgid "Delete"
msgstr "Hapus"
diff --git a/l10n/is/core.po b/l10n/is/core.po
index 4432000b3cc..f21c418fab2 100644
--- a/l10n/is/core.po
+++ b/l10n/is/core.po
@@ -4,13 +4,14 @@
#
# 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"
-"Last-Translator: I Robot \n"
+"POT-Creation-Date: 2012-12-31 00:04+0100\n"
+"PO-Revision-Date: 2012-12-30 14:48+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"
@@ -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
+#: templates/installation.php:50
msgid "Advanced"
-msgstr ""
+msgstr "Ítarlegt"
-#: templates/installation.php:50
+#: 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."
@@ -567,14 +568,14 @@ msgstr "næsta"
#: 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 094b80b04e4..a09396d6c0e 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-04 13:22+0100\n"
+"PO-Revision-Date: 2013-01-04 12:22+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,262 @@ 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 ""
+msgstr "Innsenda skráin er stærri en MAX_FILE_SIZE sem skilgreint er í HTML sniðinu."
-#: ajax/upload.php:25
+#: ajax/upload.php:26
msgid "The uploaded file was only partially uploaded"
-msgstr ""
+msgstr "Einungis hluti af innsendri skrá skilaði sér"
-#: ajax/upload.php:26
+#: ajax/upload.php:27
msgid "No file was uploaded"
-msgstr ""
+msgstr "Engin skrá skilaði sér"
-#: ajax/upload.php:27
+#: ajax/upload.php:28
msgid "Missing a temporary folder"
-msgstr ""
+msgstr "Vantar bráðabirgðamöppu"
-#: ajax/upload.php:28
+#: 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:250
+#: js/filelist.js:248
msgid "replaced {new_name}"
-msgstr ""
+msgstr "endurskýrði {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 ""
+msgstr "afturkalla"
-#: js/filelist.js:252
+#: js/filelist.js:250
msgid "replaced {new_name} with {old_name}"
-msgstr ""
+msgstr "yfirskrifaði {new_name} með {old_name}"
-#: js/filelist.js:284
+#: js/filelist.js:282
msgid "unshared {files}"
-msgstr ""
+msgstr "Hætti við deilingu á {files}"
-#: js/filelist.js:286
+#: js/filelist.js:284
msgid "deleted {files}"
-msgstr ""
+msgstr "eyddi {files}"
#: js/files.js:33
msgid ""
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not "
"allowed."
-msgstr ""
+msgstr "Ógilt nafn, táknin '\\', '/', '<', '>', ':', '\"', '|', '?' og '*' eru ekki leyfð."
-#: js/files.js:183
+#: js/files.js:174
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:212
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:212
msgid "Upload Error"
-msgstr ""
+msgstr "Villa við innsendingu"
-#: js/files.js:235
+#: js/files.js:229
msgid "Close"
-msgstr ""
+msgstr "Loka"
-#: js/files.js:254 js/files.js:368 js/files.js:398
+#: js/files.js:248 js/files.js:362 js/files.js:392
msgid "Pending"
-msgstr ""
+msgstr "Bíður"
-#: js/files.js:274
+#: js/files.js:268
msgid "1 file uploading"
-msgstr ""
+msgstr "1 skrá innsend"
-#: js/files.js:277 js/files.js:331 js/files.js:346
+#: js/files.js:271 js/files.js:325 js/files.js:340
msgid "{count} files uploading"
-msgstr ""
+msgstr "{count} skrár innsendar"
-#: js/files.js:349 js/files.js:382
+#: js/files.js:343 js/files.js:376
msgid "Upload cancelled."
-msgstr ""
+msgstr "Hætt við innsendingu."
-#: js/files.js:451
+#: js/files.js:445
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:515
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:699
msgid "{count} files scanned"
-msgstr ""
+msgstr "{count} skrár skimaðar"
-#: js/files.js:712
+#: js/files.js:707
msgid "error while scanning"
-msgstr ""
+msgstr "villa við skimun"
-#: js/files.js:785 templates/index.php:65
+#: js/files.js:780 templates/index.php:66
msgid "Name"
-msgstr ""
+msgstr "Nafn"
-#: js/files.js:786 templates/index.php:76
+#: js/files.js:781 templates/index.php:77
msgid "Size"
-msgstr ""
+msgstr "Stærð"
-#: js/files.js:787 templates/index.php:78
+#: js/files.js:782 templates/index.php:79
msgid "Modified"
-msgstr ""
+msgstr "Breytt"
-#: js/files.js:814
+#: js/files.js:801
msgid "1 folder"
-msgstr ""
+msgstr "1 mappa"
-#: js/files.js:816
+#: js/files.js:803
msgid "{count} folders"
-msgstr ""
+msgstr "{count} möppur"
-#: js/files.js:824
+#: js/files.js:811
msgid "1 file"
-msgstr ""
+msgstr "1 skrá"
-#: js/files.js:826
+#: js/files.js:813
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 ""
+msgstr "Nauðsynlegt til að sækja margar skrár og möppur í einu."
-#: templates/admin.php:14
+#: templates/admin.php:17
msgid "Enable ZIP-download"
-msgstr ""
+msgstr "Virkja ZIP niðurhal."
-#: templates/admin.php:17
+#: 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 aba8a60b74f..3dfd91e61ab 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 a62f4ed1e0a..1e8fbe75517 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 1d9102f0849..d37c6475559 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 82fb0358475..bc2e72de575 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 8531c69aa27..0e7cb461873 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 5872b39972e..5b2d7ad671a 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:42 templates/users.php:138
+msgid "Unlimited"
+msgstr "Ótakmarkað"
-#: templates/users.php:55 templates/users.php:138
+#: 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:133
+msgid "Default"
+msgstr "Sjálfgefið"
-#: templates/users.php:146
+#: 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 06ab3b51ea6..828b0b2693a 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 378e437e2a3..859ebae1986 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/files.po b/l10n/it/files.po
index 062fa2906fd..4dbd873f5db 100644
--- a/l10n/it/files.po
+++ b/l10n/it/files.po
@@ -6,13 +6,13 @@
# , 2011.
# Francesco Apruzzese , 2011.
# , 2012.
-# Vincenzo Reale , 2012.
+# Vincenzo Reale , 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 01:41+0000\n"
+"POT-Creation-Date: 2013-01-05 00:02+0100\n"
+"PO-Revision-Date: 2013-01-04 18:21+0000\n"
"Last-Translator: Vincenzo Reale \n"
"Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n"
"MIME-Version: 1.0\n"
@@ -21,46 +21,58 @@ msgstr ""
"Language: it\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 "Nessun file è stato inviato. Errore sconosciuto"
+
+#: ajax/upload.php:21
msgid "There is no error, the file uploaded with success"
msgstr "Non ci sono errori, file caricato con successo"
-#: ajax/upload.php:21
+#: ajax/upload.php:22
msgid ""
"The uploaded file exceeds the upload_max_filesize directive in php.ini: "
msgstr "Il file caricato supera la direttiva upload_max_filesize 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 "Il file caricato supera il valore MAX_FILE_SIZE definito nel form HTML"
-#: ajax/upload.php:25
+#: ajax/upload.php:26
msgid "The uploaded file was only partially uploaded"
msgstr "Il file è stato parzialmente caricato"
-#: ajax/upload.php:26
+#: ajax/upload.php:27
msgid "No file was uploaded"
msgstr "Nessun file è stato caricato"
-#: ajax/upload.php:27
+#: ajax/upload.php:28
msgid "Missing a temporary folder"
msgstr "Cartella temporanea mancante"
-#: ajax/upload.php:28
+#: ajax/upload.php:29
msgid "Failed to write to disk"
msgstr "Scrittura su disco non riuscita"
+#: ajax/upload.php:45
+msgid "Not enough space available"
+msgstr "Spazio disponibile insufficiente"
+
+#: ajax/upload.php:69
+msgid "Invalid directory."
+msgstr "Cartella non valida."
+
#: appinfo/app.php:10
msgid "Files"
msgstr "File"
-#: 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 "Rimuovi condivisione"
-#: 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 "Elimina"
@@ -68,39 +80,39 @@ msgstr "Elimina"
msgid "Rename"
msgstr "Rinomina"
-#: js/filelist.js:201 js/filelist.js:203
+#: js/filelist.js:199 js/filelist.js:201
msgid "{new_name} already exists"
msgstr "{new_name} esiste già"
-#: js/filelist.js:201 js/filelist.js:203
+#: js/filelist.js:199 js/filelist.js:201
msgid "replace"
msgstr "sostituisci"
-#: js/filelist.js:201
+#: js/filelist.js:199
msgid "suggest name"
msgstr "suggerisci nome"
-#: js/filelist.js:201 js/filelist.js:203
+#: js/filelist.js:199 js/filelist.js:201
msgid "cancel"
msgstr "annulla"
-#: js/filelist.js:250
+#: js/filelist.js:248
msgid "replaced {new_name}"
msgstr "sostituito {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 "annulla"
-#: js/filelist.js:252
+#: js/filelist.js:250
msgid "replaced {new_name} with {old_name}"
msgstr "sostituito {new_name} con {old_name}"
-#: js/filelist.js:284
+#: js/filelist.js:282
msgid "unshared {files}"
msgstr "non condivisi {files}"
-#: js/filelist.js:286
+#: js/filelist.js:284
msgid "deleted {files}"
msgstr "eliminati {files}"
@@ -110,80 +122,80 @@ msgid ""
"allowed."
msgstr "Nome non valido, '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' non sono consentiti."
-#: js/files.js:183
+#: js/files.js:174
msgid "generating ZIP-file, it may take some time."
msgstr "creazione file ZIP, potrebbe richiedere del tempo."
-#: js/files.js:218
+#: js/files.js:212
msgid "Unable to upload your file as it is a directory or has 0 bytes"
msgstr "Impossibile inviare il file poiché è una cartella o ha dimensione 0 byte"
-#: js/files.js:218
+#: js/files.js:212
msgid "Upload Error"
msgstr "Errore di invio"
-#: js/files.js:235
+#: js/files.js:229
msgid "Close"
msgstr "Chiudi"
-#: js/files.js:254 js/files.js:368 js/files.js:398
+#: js/files.js:248 js/files.js:362 js/files.js:392
msgid "Pending"
msgstr "In corso"
-#: js/files.js:274
+#: js/files.js:268
msgid "1 file uploading"
msgstr "1 file in fase di caricamento"
-#: js/files.js:277 js/files.js:331 js/files.js:346
+#: js/files.js:271 js/files.js:325 js/files.js:340
msgid "{count} files uploading"
msgstr "{count} file in fase di caricamentoe"
-#: js/files.js:349 js/files.js:382
+#: js/files.js:343 js/files.js:376
msgid "Upload cancelled."
msgstr "Invio annullato"
-#: js/files.js:451
+#: js/files.js:445
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr "Caricamento del file in corso. La chiusura della pagina annullerà il caricamento."
-#: js/files.js:523
+#: js/files.js:515
msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud"
msgstr "Nome della cartella non valido. L'uso di \"Shared\" è riservato a ownCloud"
-#: js/files.js:704
+#: js/files.js:699
msgid "{count} files scanned"
msgstr "{count} file analizzati"
-#: js/files.js:712
+#: js/files.js:707
msgid "error while scanning"
msgstr "errore durante la scansione"
-#: js/files.js:785 templates/index.php:65
+#: js/files.js:780 templates/index.php:66
msgid "Name"
msgstr "Nome"
-#: js/files.js:786 templates/index.php:76
+#: js/files.js:781 templates/index.php:77
msgid "Size"
msgstr "Dimensione"
-#: js/files.js:787 templates/index.php:78
+#: js/files.js:782 templates/index.php:79
msgid "Modified"
msgstr "Modificato"
-#: js/files.js:814
+#: js/files.js:801
msgid "1 folder"
msgstr "1 cartella"
-#: js/files.js:816
+#: js/files.js:803
msgid "{count} folders"
msgstr "{count} cartelle"
-#: js/files.js:824
+#: js/files.js:811
msgid "1 file"
msgstr "1 file"
-#: js/files.js:826
+#: js/files.js:813
msgid "{count} files"
msgstr "{count} file"
@@ -195,27 +207,27 @@ msgstr "Gestione file"
msgid "Maximum upload size"
msgstr "Dimensione massima upload"
-#: templates/admin.php:9
+#: templates/admin.php:10
msgid "max. possible: "
msgstr "numero mass.: "
-#: templates/admin.php:12
+#: templates/admin.php:15
msgid "Needed for multi-file and folder downloads."
msgstr "Necessario per lo scaricamento di file multipli e cartelle."
-#: templates/admin.php:14
+#: templates/admin.php:17
msgid "Enable ZIP-download"
msgstr "Abilita scaricamento ZIP"
-#: templates/admin.php:17
+#: templates/admin.php:20
msgid "0 is unlimited"
msgstr "0 è illimitato"
-#: templates/admin.php:19
+#: templates/admin.php:22
msgid "Maximum input size for ZIP files"
msgstr "Dimensione massima per i file ZIP"
-#: templates/admin.php:23
+#: templates/admin.php:26
msgid "Save"
msgstr "Salva"
@@ -243,28 +255,28 @@ msgstr "Carica"
msgid "Cancel upload"
msgstr "Annulla invio"
-#: templates/index.php:57
+#: templates/index.php:58
msgid "Nothing in here. Upload something!"
msgstr "Non c'è niente qui. Carica qualcosa!"
-#: templates/index.php:71
+#: templates/index.php:72
msgid "Download"
msgstr "Scarica"
-#: templates/index.php:103
+#: templates/index.php:104
msgid "Upload too large"
msgstr "Il file caricato è troppo 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 "I file che stai provando a caricare superano la dimensione massima consentita su questo server."
-#: templates/index.php:110
+#: templates/index.php:111
msgid "Files are being scanned, please wait."
msgstr "Scansione dei file in corso, attendi"
-#: templates/index.php:113
+#: templates/index.php:114
msgid "Current scanning"
msgstr "Scansione corrente"
diff --git a/l10n/it/settings.po b/l10n/it/settings.po
index c678a89ccf9..046096abda4 100644
--- a/l10n/it/settings.po
+++ b/l10n/it/settings.po
@@ -14,9 +14,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-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 07:47+0000\n"
+"Last-Translator: Vincenzo Reale \n"
"Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -124,27 +124,27 @@ msgstr "-licenziato da %s dei %s disponibili"
#: templates/personal.php:12
msgid "Clients"
-msgstr ""
+msgstr "Client"
#: templates/personal.php:13
msgid "Download Desktop Clients"
-msgstr ""
+msgstr "Scarica client desktop"
#: templates/personal.php:14
msgid "Download Android Client"
-msgstr ""
+msgstr "Scarica client Android"
#: templates/personal.php:15
msgid "Download iOS Client"
-msgstr ""
+msgstr "Scarica 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 "Password"
@@ -217,15 +217,15 @@ msgstr "Migliora la traduzione"
#: 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 "Usa questo indirizzo per connetterti al tuo ownCloud dal tuo gestore file"
#: templates/personal.php:63
msgid "Version"
-msgstr ""
+msgstr "Versione"
#: templates/personal.php:65
msgid ""
@@ -237,11 +237,11 @@ msgid ""
"License\">AGPL."
msgstr "Sviluppato dalla comunità di ownCloud, il codice sorgente è licenziato nei termini della 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 "Gruppi"
@@ -250,21 +250,29 @@ msgid "Create"
msgstr "Crea"
#: templates/users.php:35
-msgid "Default Quota"
-msgstr "Quota predefinita"
+msgid "Default Storage"
+msgstr "Archiviazione predefinita"
+
+#: templates/users.php:42 templates/users.php:138
+msgid "Unlimited"
+msgstr "Illimitata"
-#: templates/users.php:55 templates/users.php:138
+#: templates/users.php:60 templates/users.php:153
msgid "Other"
msgstr "Altro"
-#: templates/users.php:80 templates/users.php:112
+#: templates/users.php:85 templates/users.php:117
msgid "Group Admin"
msgstr "Gruppo di amministrazione"
-#: templates/users.php:82
-msgid "Quota"
-msgstr "Quote"
+#: templates/users.php:87
+msgid "Storage"
+msgstr "Archiviazione"
+
+#: templates/users.php:133
+msgid "Default"
+msgstr "Predefinito"
-#: templates/users.php:146
+#: templates/users.php:161
msgid "Delete"
msgstr "Elimina"
diff --git a/l10n/it/user_webdavauth.po b/l10n/it/user_webdavauth.po
index 4bd0f76fade..074902ec724 100644
--- a/l10n/it/user_webdavauth.po
+++ b/l10n/it/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-22 00:24+0100\n"
+"PO-Revision-Date: 2012-12-21 08:45+0000\n"
+"Last-Translator: Vincenzo Reale \n"
"Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -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 invierà le credenziali dell'utente a questo URL. Interpreta i codici http 401 e http 403 come credenziali errate e tutti gli altri codici come credenziali corrette."
diff --git a/l10n/ja_JP/files.po b/l10n/ja_JP/files.po
index 3f253361a8a..39ebcb8c951 100644
--- a/l10n/ja_JP/files.po
+++ b/l10n/ja_JP/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-04 00:06+0100\n"
-"PO-Revision-Date: 2012-12-03 01:53+0000\n"
-"Last-Translator: Daisuke Deguchi \n"
+"POT-Creation-Date: 2013-01-05 00:02+0100\n"
+"PO-Revision-Date: 2013-01-04 12:30+0000\n"
+"Last-Translator: I Robot \n"
"Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -21,46 +21,58 @@ msgstr ""
"Language: ja_JP\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 "アップロードされたファイルはphp.ini の upload_max_filesize に設定されたサイズを超えています:"
-#: 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のフォームに設定されたMAX_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 "削除"
@@ -68,39 +80,39 @@ 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 "{old_name} を {new_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}"
@@ -110,80 +122,80 @@ msgid ""
"allowed."
msgstr "無効な名前、'\\', '/', '<', '>', ':', '\"', '|', '?', '*' は使用できません。"
-#: js/files.js:183
+#: js/files.js:174
msgid "generating ZIP-file, it may take some time."
msgstr "ZIPファイルを生成中です、しばらくお待ちください。"
-#: js/files.js:218
+#: js/files.js:212
msgid "Unable to upload your file as it is a directory or has 0 bytes"
msgstr "ディレクトリもしくは0バイトのファイルはアップロードできません"
-#: js/files.js:218
+#: js/files.js:212
msgid "Upload Error"
msgstr "アップロードエラー"
-#: js/files.js:235
+#: js/files.js:229
msgid "Close"
msgstr "閉じる"
-#: js/files.js:254 js/files.js:368 js/files.js:398
+#: js/files.js:248 js/files.js:362 js/files.js:392
msgid "Pending"
msgstr "保留"
-#: js/files.js:274
+#: js/files.js:268
msgid "1 file uploading"
msgstr "ファイルを1つアップロード中"
-#: js/files.js:277 js/files.js:331 js/files.js:346
+#: js/files.js:271 js/files.js:325 js/files.js:340
msgid "{count} files uploading"
msgstr "{count} ファイルをアップロード中"
-#: js/files.js:349 js/files.js:382
+#: js/files.js:343 js/files.js:376
msgid "Upload cancelled."
msgstr "アップロードはキャンセルされました。"
-#: js/files.js:451
+#: js/files.js:445
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr "ファイル転送を実行中です。今このページから移動するとアップロードが中止されます。"
-#: js/files.js:523
+#: js/files.js:515
msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud"
msgstr "無効なフォルダ名です。\"Shared\" の利用は ownCloud が予約済みです。"
-#: js/files.js:704
+#: js/files.js:699
msgid "{count} files scanned"
msgstr "{count} ファイルをスキャン"
-#: js/files.js:712
+#: js/files.js:707
msgid "error while scanning"
msgstr "スキャン中のエラー"
-#: js/files.js:785 templates/index.php:65
+#: js/files.js:780 templates/index.php:66
msgid "Name"
msgstr "名前"
-#: js/files.js:786 templates/index.php:76
+#: js/files.js:781 templates/index.php:77
msgid "Size"
msgstr "サイズ"
-#: js/files.js:787 templates/index.php:78
+#: js/files.js:782 templates/index.php:79
msgid "Modified"
msgstr "更新日時"
-#: js/files.js:814
+#: js/files.js:801
msgid "1 folder"
msgstr "1 フォルダ"
-#: js/files.js:816
+#: js/files.js:803
msgid "{count} folders"
msgstr "{count} フォルダ"
-#: js/files.js:824
+#: js/files.js:811
msgid "1 file"
msgstr "1 ファイル"
-#: js/files.js:826
+#: js/files.js:813
msgid "{count} files"
msgstr "{count} ファイル"
@@ -195,27 +207,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 +255,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/ja_JP/settings.po b/l10n/ja_JP/settings.po
index e4303fd636b..7f6ee2171c9 100644
--- a/l10n/ja_JP/settings.po
+++ b/l10n/ja_JP/settings.po
@@ -4,15 +4,16 @@
#
# Translators:
# Daisuke Deguchi , 2012.
+# Daisuke Deguchi , 2012-2013.
# , 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:11+0000\n"
-"Last-Translator: I Robot \n"
+"POT-Creation-Date: 2013-01-04 13:22+0100\n"
+"PO-Revision-Date: 2013-01-04 01:31+0000\n"
+"Last-Translator: Daisuke Deguchi \n"
"Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -120,27 +121,27 @@ msgstr "-ライセンス:
#: templates/help.php:3
msgid "User Documentation"
-msgstr ""
+msgstr "ユーザドキュメント"
#: templates/help.php:4
msgid "Administrator Documentation"
-msgstr ""
+msgstr "管理者ドキュメント"
#: templates/help.php:6
msgid "Online Documentation"
-msgstr ""
+msgstr "オンラインドキュメント"
#: templates/help.php:7
msgid "Forum"
-msgstr ""
+msgstr "フォーラム"
#: templates/help.php:9
msgid "Bugtracker"
-msgstr ""
+msgstr "バグトラッカー"
#: templates/help.php:11
msgid "Commercial Support"
-msgstr ""
+msgstr "コマーシャルサポート"
#: templates/personal.php:8
#, php-format
@@ -149,21 +150,21 @@ msgstr "現在、%s / %s を利用していま
#: templates/personal.php:12
msgid "Clients"
-msgstr ""
+msgstr "顧客"
#: templates/personal.php:13
msgid "Download Desktop Clients"
-msgstr ""
+msgstr "デスクトップクライアントをダウンロード"
#: templates/personal.php:14
msgid "Download Android Client"
-msgstr ""
+msgstr "Androidクライアントをダウンロード"
#: templates/personal.php:15
msgid "Download iOS Client"
-msgstr ""
+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 "パスワード"
@@ -213,15 +214,15 @@ msgstr "翻訳に協力する"
#: 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 "ファイルマネージャでownCloudに接続する際はこのアドレスを利用してください"
#: templates/personal.php:63
msgid "Version"
-msgstr ""
+msgstr "バージョン"
#: templates/personal.php:65
msgid ""
@@ -233,11 +234,11 @@ msgid ""
"License\">AGPL."
msgstr "ownCloud communityにより開発されています、ソースコードライセンスは、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:42 templates/users.php:138
+msgid "Unlimited"
+msgstr "無制限"
-#: templates/users.php:55 templates/users.php:138
+#: 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:133
+msgid "Default"
+msgstr "デフォルト"
-#: templates/users.php:146
+#: templates/users.php:161
msgid "Delete"
msgstr "削除"
diff --git a/l10n/ja_JP/user_webdavauth.po b/l10n/ja_JP/user_webdavauth.po
index 5873fda3833..b6499e4ce5f 100644
--- a/l10n/ja_JP/user_webdavauth.po
+++ b/l10n/ja_JP/user_webdavauth.po
@@ -4,13 +4,14 @@
#
# Translators:
# Daisuke Deguchi , 2012.
+# Daisuke Deguchi , 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-21 00:10+0100\n"
+"PO-Revision-Date: 2012-12-20 03:51+0000\n"
+"Last-Translator: Daisuke Deguchi \n"
"Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n"
"MIME-Version: 1.0\n"
"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のこのURLへのユーザ資格情報の送信は、資格情報が間違っている場合はHTTP401もしくは403を返し、正しい場合は全てのコードを返します。"
diff --git a/l10n/ka_GE/files.po b/l10n/ka_GE/files.po
index 5e3078f5048..ebcf1bec0d6 100644
--- a/l10n/ka_GE/files.po
+++ b/l10n/ka_GE/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-04 13:22+0100\n"
+"PO-Revision-Date: 2013-01-04 12:22+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n"
"MIME-Version: 1.0\n"
@@ -18,46 +18,58 @@ msgstr ""
"Language: ka_GE\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 "ატვირთული ფაილი აჭარბებს 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,39 +77,39 @@ 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}"
@@ -107,80 +119,80 @@ msgid ""
"allowed."
msgstr ""
-#: js/files.js:183
+#: js/files.js:174
msgid "generating ZIP-file, it may take some time."
msgstr "ZIP-ფაილის გენერირება, ამას ჭირდება გარკვეული დრო."
-#: js/files.js:218
+#: js/files.js:212
msgid "Unable to upload your file as it is a directory or has 0 bytes"
msgstr "თქვენი ფაილის ატვირთვა ვერ მოხერხდა. ის არის საქაღალდე და შეიცავს 0 ბაიტს"
-#: js/files.js:218
+#: js/files.js:212
msgid "Upload Error"
msgstr "შეცდომა ატვირთვისას"
-#: js/files.js:235
+#: js/files.js:229
msgid "Close"
msgstr "დახურვა"
-#: js/files.js:254 js/files.js:368 js/files.js:398
+#: js/files.js:248 js/files.js:362 js/files.js:392
msgid "Pending"
msgstr "მოცდის რეჟიმში"
-#: js/files.js:274
+#: js/files.js:268
msgid "1 file uploading"
msgstr "1 ფაილის ატვირთვა"
-#: js/files.js:277 js/files.js:331 js/files.js:346
+#: js/files.js:271 js/files.js:325 js/files.js:340
msgid "{count} files uploading"
msgstr "{count} ფაილი იტვირთება"
-#: js/files.js:349 js/files.js:382
+#: js/files.js:343 js/files.js:376
msgid "Upload cancelled."
msgstr "ატვირთვა შეჩერებულ იქნა."
-#: js/files.js:451
+#: js/files.js:445
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr "მიმდინარეობს ფაილის ატვირთვა. სხვა გვერდზე გადასვლა გამოიწვევს ატვირთვის შეჩერებას"
-#: js/files.js:523
+#: js/files.js:515
msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud"
msgstr ""
-#: js/files.js:704
+#: js/files.js:699
msgid "{count} files scanned"
msgstr "{count} ფაილი სკანირებულია"
-#: js/files.js:712
+#: js/files.js:707
msgid "error while scanning"
msgstr "შეცდომა სკანირებისას"
-#: js/files.js:785 templates/index.php:65
+#: js/files.js:780 templates/index.php:66
msgid "Name"
msgstr "სახელი"
-#: js/files.js:786 templates/index.php:76
+#: js/files.js:781 templates/index.php:77
msgid "Size"
msgstr "ზომა"
-#: js/files.js:787 templates/index.php:78
+#: js/files.js:782 templates/index.php:79
msgid "Modified"
msgstr "შეცვლილია"
-#: js/files.js:814
+#: js/files.js:801
msgid "1 folder"
msgstr "1 საქაღალდე"
-#: js/files.js:816
+#: js/files.js:803
msgid "{count} folders"
msgstr "{count} საქაღალდე"
-#: js/files.js:824
+#: js/files.js:811
msgid "1 file"
msgstr "1 ფაილი"
-#: js/files.js:826
+#: js/files.js:813
msgid "{count} files"
msgstr "{count} ფაილი"
@@ -192,27 +204,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-Download–ის ჩართვა"
-#: templates/admin.php:17
+#: templates/admin.php:20
msgid "0 is unlimited"
msgstr "0 is unlimited"
-#: 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 "შენახვა"
@@ -240,28 +252,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/ka_GE/settings.po b/l10n/ka_GE/settings.po
index 1c117e37a90..8d92cc3af03 100644
--- a/l10n/ka_GE/settings.po
+++ b/l10n/ka_GE/settings.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: 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: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n"
"MIME-Version: 1.0\n"
@@ -147,7 +147,7 @@ msgstr ""
#: templates/personal.php:12
msgid "Clients"
-msgstr ""
+msgstr "კლიენტები"
#: templates/personal.php:13
msgid "Download Desktop Clients"
@@ -161,7 +161,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 "პაროლი"
@@ -231,11 +231,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 "ჯგუფი"
@@ -244,21 +244,29 @@ msgid "Create"
msgstr "შექმნა"
#: templates/users.php:35
-msgid "Default Quota"
-msgstr "საწყისი ქვოტა"
+msgid "Default Storage"
+msgstr ""
+
+#: templates/users.php:42 templates/users.php:138
+msgid "Unlimited"
+msgstr ""
-#: templates/users.php:55 templates/users.php:138
+#: 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:133
+msgid "Default"
+msgstr ""
-#: templates/users.php:146
+#: templates/users.php:161
msgid "Delete"
msgstr "წაშლა"
diff --git a/l10n/ko/files.po b/l10n/ko/files.po
index 0fcb15b44b4..6eac0f74ad1 100644
--- a/l10n/ko/files.po
+++ b/l10n/ko/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-10 00:11+0100\n"
-"PO-Revision-Date: 2012-12-09 05:40+0000\n"
-"Last-Translator: Shinjo Park \n"
+"POT-Creation-Date: 2013-01-05 00:02+0100\n"
+"PO-Revision-Date: 2013-01-04 12:30+0000\n"
+"Last-Translator: I Robot \n"
"Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -20,37 +20,49 @@ msgstr ""
"Language: ko\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 "업로드한 파일이 php.ini의 upload_max_filesize보다 큽니다:"
-#: 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 문서에 지정한 MAX_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 "파일"
@@ -113,76 +125,76 @@ msgstr "폴더 이름이 올바르지 않습니다. 이름에 문자 '\\', '/',
msgid "generating ZIP-file, it may take some time."
msgstr "ZIP 파일을 생성하고 있습니다. 시간이 걸릴 수도 있습니다."
-#: js/files.js:209
+#: js/files.js:212
msgid "Unable to upload your file as it is a directory or has 0 bytes"
msgstr "이 파일은 디렉터리이거나 비어 있기 때문에 업로드할 수 없습니다"
-#: js/files.js:209
+#: js/files.js:212
msgid "Upload Error"
msgstr "업로드 오류"
-#: js/files.js:226
+#: js/files.js:229
msgid "Close"
msgstr "닫기"
-#: js/files.js:245 js/files.js:359 js/files.js:389
+#: js/files.js:248 js/files.js:362 js/files.js:392
msgid "Pending"
msgstr "보류 중"
-#: js/files.js:265
+#: js/files.js:268
msgid "1 file uploading"
msgstr "파일 1개 업로드 중"
-#: js/files.js:268 js/files.js:322 js/files.js:337
+#: js/files.js:271 js/files.js:325 js/files.js:340
msgid "{count} files uploading"
msgstr "파일 {count}개 업로드 중"
-#: js/files.js:340 js/files.js:373
+#: js/files.js:343 js/files.js:376
msgid "Upload cancelled."
msgstr "업로드가 취소되었습니다."
-#: js/files.js:442
+#: js/files.js:445
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr "파일 업로드가 진행 중입니다. 이 페이지를 벗어나면 업로드가 취소됩니다."
-#: js/files.js:512
+#: js/files.js:515
msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud"
msgstr "폴더 이름이 올바르지 않습니다. \"Shared\" 폴더는 ownCloud에서 예약되었습니다."
-#: js/files.js:693
+#: js/files.js:699
msgid "{count} files scanned"
msgstr "파일 {count}개 검색됨"
-#: js/files.js:701
+#: js/files.js:707
msgid "error while scanning"
msgstr "검색 중 오류 발생"
-#: js/files.js:774 templates/index.php:66
+#: js/files.js:780 templates/index.php:66
msgid "Name"
msgstr "이름"
-#: js/files.js:775 templates/index.php:77
+#: js/files.js:781 templates/index.php:77
msgid "Size"
msgstr "크기"
-#: js/files.js:776 templates/index.php:79
+#: js/files.js:782 templates/index.php:79
msgid "Modified"
msgstr "수정됨"
-#: js/files.js:803
+#: js/files.js:801
msgid "1 folder"
msgstr "폴더 1개"
-#: js/files.js:805
+#: js/files.js:803
msgid "{count} folders"
msgstr "폴더 {count}개"
-#: js/files.js:813
+#: js/files.js:811
msgid "1 file"
msgstr "파일 1개"
-#: js/files.js:815
+#: js/files.js:813
msgid "{count} files"
msgstr "파일 {count}개"
@@ -194,27 +206,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 "저장"
diff --git a/l10n/ko/settings.po b/l10n/ko/settings.po
index f3a933894cc..ea5f2c1fc67 100644
--- a/l10n/ko/settings.po
+++ b/l10n/ko/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-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: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n"
"MIME-Version: 1.0\n"
@@ -149,7 +149,7 @@ msgstr "현재 공간 %s/%s을(를) 사용 중
#: templates/personal.php:12
msgid "Clients"
-msgstr ""
+msgstr "고객"
#: templates/personal.php:13
msgid "Download Desktop Clients"
@@ -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 커뮤니티에 의해서 개발되었습니다. 원본 코드는 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 +246,29 @@ msgid "Create"
msgstr "만들기"
#: templates/users.php:35
-msgid "Default Quota"
-msgstr "기본 할당량"
+msgid "Default Storage"
+msgstr ""
+
+#: templates/users.php:42 templates/users.php:138
+msgid "Unlimited"
+msgstr ""
-#: templates/users.php:55 templates/users.php:138
+#: 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:133
+msgid "Default"
+msgstr ""
-#: templates/users.php:146
+#: templates/users.php:161
msgid "Delete"
msgstr "삭제"
diff --git a/l10n/ku_IQ/files.po b/l10n/ku_IQ/files.po
index 749a057b1c1..a191da36582 100644
--- a/l10n/ku_IQ/files.po
+++ b/l10n/ku_IQ/files.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: 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-04 13:22+0100\n"
+"PO-Revision-Date: 2013-01-04 12:22+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n"
"MIME-Version: 1.0\n"
@@ -17,46 +17,58 @@ msgstr ""
"Language: ku_IQ\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,39 +76,39 @@ 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 ""
@@ -106,80 +118,80 @@ msgid ""
"allowed."
msgstr ""
-#: js/files.js:183
+#: js/files.js:174
msgid "generating ZIP-file, it may take some time."
msgstr ""
-#: js/files.js:218
+#: js/files.js:212
msgid "Unable to upload your file as it is a directory or has 0 bytes"
msgstr ""
-#: js/files.js:218
+#: js/files.js:212
msgid "Upload Error"
msgstr ""
-#: js/files.js:235
+#: js/files.js:229
msgid "Close"
msgstr "داخستن"
-#: js/files.js:254 js/files.js:368 js/files.js:398
+#: js/files.js:248 js/files.js:362 js/files.js:392
msgid "Pending"
msgstr ""
-#: js/files.js:274
+#: js/files.js:268
msgid "1 file uploading"
msgstr ""
-#: js/files.js:277 js/files.js:331 js/files.js:346
+#: js/files.js:271 js/files.js:325 js/files.js:340
msgid "{count} files uploading"
msgstr ""
-#: js/files.js:349 js/files.js:382
+#: js/files.js:343 js/files.js:376
msgid "Upload cancelled."
msgstr ""
-#: js/files.js:451
+#: js/files.js:445
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr ""
-#: js/files.js:523
+#: js/files.js:515
msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud"
msgstr ""
-#: js/files.js:704
+#: js/files.js:699
msgid "{count} files scanned"
msgstr ""
-#: js/files.js:712
+#: js/files.js:707
msgid "error while scanning"
msgstr ""
-#: js/files.js:785 templates/index.php:65
+#: js/files.js:780 templates/index.php:66
msgid "Name"
msgstr "ناو"
-#: js/files.js:786 templates/index.php:76
+#: js/files.js:781 templates/index.php:77
msgid "Size"
msgstr ""
-#: js/files.js:787 templates/index.php:78
+#: js/files.js:782 templates/index.php:79
msgid "Modified"
msgstr ""
-#: js/files.js:814
+#: js/files.js:801
msgid "1 folder"
msgstr ""
-#: js/files.js:816
+#: js/files.js:803
msgid "{count} folders"
msgstr ""
-#: js/files.js:824
+#: js/files.js:811
msgid "1 file"
msgstr ""
-#: js/files.js:826
+#: js/files.js:813
msgid "{count} files"
msgstr ""
@@ -191,27 +203,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 +251,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/ku_IQ/settings.po b/l10n/ku_IQ/settings.po
index 535d2af3759..a1dddc85d5d 100644
--- a/l10n/ku_IQ/settings.po
+++ b/l10n/ku_IQ/settings.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: 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: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\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:133
+msgid "Default"
msgstr ""
-#: templates/users.php:146
+#: templates/users.php:161
msgid "Delete"
msgstr ""
diff --git a/l10n/lb/files.po b/l10n/lb/files.po
index d4f89d14eac..f749e860e99 100644
--- a/l10n/lb/files.po
+++ b/l10n/lb/files.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-12-01 00:01+0100\n"
-"PO-Revision-Date: 2012-11-30 23:02+0000\n"
+"POT-Creation-Date: 2013-01-04 13:22+0100\n"
+"PO-Revision-Date: 2013-01-04 12:22+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n"
"MIME-Version: 1.0\n"
@@ -18,46 +18,58 @@ msgstr ""
"Language: lb\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 "Keen Feeler, Datei ass komplett ropgelueden ginn"
-#: 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 "Déi ropgelueden Datei ass méi grouss wei d'MAX_FILE_SIZE Eegenschaft déi an der HTML form uginn ass"
-#: ajax/upload.php:25
+#: ajax/upload.php:26
msgid "The uploaded file was only partially uploaded"
msgstr "Déi ropgelueden Datei ass nëmmen hallef ropgelueden ginn"
-#: ajax/upload.php:26
+#: ajax/upload.php:27
msgid "No file was uploaded"
msgstr "Et ass keng Datei ropgelueden ginn"
-#: ajax/upload.php:27
+#: ajax/upload.php:28
msgid "Missing a temporary folder"
msgstr "Et feelt en temporären Dossier"
-#: ajax/upload.php:28
+#: ajax/upload.php:29
msgid "Failed to write to disk"
msgstr "Konnt net op den Disk schreiwen"
+#: 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 "Dateien"
-#: 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 "Läschen"
@@ -65,39 +77,39 @@ msgstr "Läschen"
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 "ersetzen"
-#: 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 "ofbriechen"
-#: 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 "réckgängeg man"
-#: 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 ""
@@ -107,80 +119,80 @@ msgid ""
"allowed."
msgstr ""
-#: js/files.js:183
+#: js/files.js:174
msgid "generating ZIP-file, it may take some time."
msgstr "Et gëtt eng ZIP-File generéiert, dëst ka bëssen daueren."
-#: js/files.js:218
+#: js/files.js:212
msgid "Unable to upload your file as it is a directory or has 0 bytes"
msgstr "Kann deng Datei net eroplueden well et en Dossier ass oder 0 byte grouss ass."
-#: js/files.js:218
+#: js/files.js:212
msgid "Upload Error"
msgstr "Fehler beim eroplueden"
-#: js/files.js:235
+#: js/files.js:229
msgid "Close"
msgstr "Zoumaachen"
-#: js/files.js:254 js/files.js:368 js/files.js:398
+#: js/files.js:248 js/files.js:362 js/files.js:392
msgid "Pending"
msgstr ""
-#: js/files.js:274
+#: js/files.js:268
msgid "1 file uploading"
msgstr ""
-#: js/files.js:277 js/files.js:331 js/files.js:346
+#: js/files.js:271 js/files.js:325 js/files.js:340
msgid "{count} files uploading"
msgstr ""
-#: js/files.js:349 js/files.js:382
+#: js/files.js:343 js/files.js:376
msgid "Upload cancelled."
msgstr "Upload ofgebrach."
-#: js/files.js:451
+#: js/files.js:445
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr "File Upload am gaang. Wann's de des Säit verléiss gëtt den Upload ofgebrach."
-#: js/files.js:523
+#: js/files.js:515
msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud"
msgstr ""
-#: js/files.js:704
+#: js/files.js:699
msgid "{count} files scanned"
msgstr ""
-#: js/files.js:712
+#: js/files.js:707
msgid "error while scanning"
msgstr ""
-#: js/files.js:785 templates/index.php:65
+#: js/files.js:780 templates/index.php:66
msgid "Name"
msgstr "Numm"
-#: js/files.js:786 templates/index.php:76
+#: js/files.js:781 templates/index.php:77
msgid "Size"
msgstr "Gréisst"
-#: js/files.js:787 templates/index.php:78
+#: js/files.js:782 templates/index.php:79
msgid "Modified"
msgstr "Geännert"
-#: js/files.js:814
+#: js/files.js:801
msgid "1 folder"
msgstr ""
-#: js/files.js:816
+#: js/files.js:803
msgid "{count} folders"
msgstr ""
-#: js/files.js:824
+#: js/files.js:811
msgid "1 file"
msgstr ""
-#: js/files.js:826
+#: js/files.js:813
msgid "{count} files"
msgstr ""
@@ -192,27 +204,27 @@ msgstr "Fichier handling"
msgid "Maximum upload size"
msgstr "Maximum Upload Gréisst "
-#: templates/admin.php:9
+#: templates/admin.php:10
msgid "max. possible: "
msgstr "max. méiglech:"
-#: templates/admin.php:12
+#: templates/admin.php:15
msgid "Needed for multi-file and folder downloads."
msgstr "Gett gebraucht fir multi-Fichier an Dossier Downloads."
-#: templates/admin.php:14
+#: templates/admin.php:17
msgid "Enable ZIP-download"
msgstr "ZIP-download erlaben"
-#: templates/admin.php:17
+#: templates/admin.php:20
msgid "0 is unlimited"
msgstr "0 ass onlimitéiert"
-#: templates/admin.php:19
+#: templates/admin.php:22
msgid "Maximum input size for ZIP files"
msgstr "Maximal Gréisst fir ZIP Fichieren"
-#: templates/admin.php:23
+#: templates/admin.php:26
msgid "Save"
msgstr "Späicheren"
@@ -240,28 +252,28 @@ msgstr "Eroplueden"
msgid "Cancel upload"
msgstr "Upload ofbriechen"
-#: templates/index.php:57
+#: templates/index.php:58
msgid "Nothing in here. Upload something!"
msgstr "Hei ass näischt. Lued eppes rop!"
-#: templates/index.php:71
+#: templates/index.php:72
msgid "Download"
msgstr "Eroflueden"
-#: templates/index.php:103
+#: templates/index.php:104
msgid "Upload too large"
msgstr "Upload ze grouss"
-#: 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 "Déi Dateien déi Dir probéiert erop ze lueden sinn méi grouss wei déi Maximal Gréisst déi op dësem Server erlaabt ass."
-#: templates/index.php:110
+#: templates/index.php:111
msgid "Files are being scanned, please wait."
msgstr "Fichieren gi gescannt, war weg."
-#: templates/index.php:113
+#: templates/index.php:114
msgid "Current scanning"
msgstr "Momentane Scan"
diff --git a/l10n/lb/settings.po b/l10n/lb/settings.po
index 7f7bba58429..cf0f377fcb9 100644
--- a/l10n/lb/settings.po
+++ b/l10n/lb/settings.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-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: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n"
"MIME-Version: 1.0\n"
@@ -147,7 +147,7 @@ msgstr ""
#: templates/personal.php:12
msgid "Clients"
-msgstr ""
+msgstr "Clienten"
#: templates/personal.php:13
msgid "Download Desktop Clients"
@@ -161,7 +161,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 "Passwuert"
@@ -231,11 +231,11 @@ msgid ""
"License\">AGPL."
msgstr ""
-#: templates/users.php:21 templates/users.php:76
+#: templates/users.php:21 templates/users.php:81
msgid "Name"
msgstr "Numm"
-#: 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"
@@ -244,21 +244,29 @@ msgid "Create"
msgstr "Erstellen"
#: templates/users.php:35
-msgid "Default Quota"
-msgstr "Standard Quota"
+msgid "Default Storage"
+msgstr ""
+
+#: templates/users.php:42 templates/users.php:138
+msgid "Unlimited"
+msgstr ""
-#: templates/users.php:55 templates/users.php:138
+#: templates/users.php:60 templates/users.php:153
msgid "Other"
msgstr "Aner"
-#: templates/users.php:80 templates/users.php:112
+#: templates/users.php:85 templates/users.php:117
msgid "Group Admin"
msgstr "Gruppen Admin"
-#: templates/users.php:82
-msgid "Quota"
-msgstr "Quota"
+#: templates/users.php:87
+msgid "Storage"
+msgstr ""
+
+#: templates/users.php:133
+msgid "Default"
+msgstr ""
-#: templates/users.php:146
+#: templates/users.php:161
msgid "Delete"
msgstr "Läschen"
diff --git a/l10n/lt_LT/files.po b/l10n/lt_LT/files.po
index ef30d7726ce..e82e8e9846d 100644
--- a/l10n/lt_LT/files.po
+++ b/l10n/lt_LT/files.po
@@ -10,8 +10,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: 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-04 13:22+0100\n"
+"PO-Revision-Date: 2013-01-04 12:22+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n"
"MIME-Version: 1.0\n"
@@ -20,46 +20,58 @@ msgstr ""
"Language: lt_LT\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-#: 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 "Klaidų nėra, failas įkeltas sėkmingai"
-#: 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 "Įkeliamo failo dydis viršija MAX_FILE_SIZE parametrą, kuris yra nustatytas HTML formoje"
-#: ajax/upload.php:25
+#: ajax/upload.php:26
msgid "The uploaded file was only partially uploaded"
msgstr "Failas buvo įkeltas tik dalinai"
-#: ajax/upload.php:26
+#: ajax/upload.php:27
msgid "No file was uploaded"
msgstr "Nebuvo įkeltas nė vienas failas"
-#: ajax/upload.php:27
+#: ajax/upload.php:28
msgid "Missing a temporary folder"
msgstr "Nėra laikinojo katalogo"
-#: ajax/upload.php:28
+#: ajax/upload.php:29
msgid "Failed to write to disk"
msgstr "Nepavyko įrašyti į 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 "Failai"
-#: 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 "Nebesidalinti"
-#: 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 "Ištrinti"
@@ -67,39 +79,39 @@ msgstr "Ištrinti"
msgid "Rename"
msgstr "Pervadinti"
-#: js/filelist.js:201 js/filelist.js:203
+#: js/filelist.js:199 js/filelist.js:201
msgid "{new_name} already exists"
msgstr "{new_name} jau egzistuoja"
-#: js/filelist.js:201 js/filelist.js:203
+#: js/filelist.js:199 js/filelist.js:201
msgid "replace"
msgstr "pakeisti"
-#: js/filelist.js:201
+#: js/filelist.js:199
msgid "suggest name"
msgstr "pasiūlyti pavadinimą"
-#: js/filelist.js:201 js/filelist.js:203
+#: js/filelist.js:199 js/filelist.js:201
msgid "cancel"
msgstr "atšaukti"
-#: js/filelist.js:250
+#: js/filelist.js:248
msgid "replaced {new_name}"
msgstr "pakeiskite {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 "anuliuoti"
-#: js/filelist.js:252
+#: js/filelist.js:250
msgid "replaced {new_name} with {old_name}"
msgstr "pakeiskite {new_name} į {old_name}"
-#: js/filelist.js:284
+#: js/filelist.js:282
msgid "unshared {files}"
msgstr "nebesidalinti {files}"
-#: js/filelist.js:286
+#: js/filelist.js:284
msgid "deleted {files}"
msgstr "ištrinti {files}"
@@ -109,80 +121,80 @@ msgid ""
"allowed."
msgstr ""
-#: js/files.js:183
+#: js/files.js:174
msgid "generating ZIP-file, it may take some time."
msgstr "kuriamas ZIP archyvas, tai gali užtrukti šiek tiek laiko."
-#: js/files.js:218
+#: js/files.js:212
msgid "Unable to upload your file as it is a directory or has 0 bytes"
msgstr "Neįmanoma įkelti failo - jo dydis gali būti 0 bitų arba tai katalogas"
-#: js/files.js:218
+#: js/files.js:212
msgid "Upload Error"
msgstr "Įkėlimo klaida"
-#: js/files.js:235
+#: js/files.js:229
msgid "Close"
msgstr "Užverti"
-#: js/files.js:254 js/files.js:368 js/files.js:398
+#: js/files.js:248 js/files.js:362 js/files.js:392
msgid "Pending"
msgstr "Laukiantis"
-#: js/files.js:274
+#: js/files.js:268
msgid "1 file uploading"
msgstr "įkeliamas 1 failas"
-#: js/files.js:277 js/files.js:331 js/files.js:346
+#: js/files.js:271 js/files.js:325 js/files.js:340
msgid "{count} files uploading"
msgstr "{count} įkeliami failai"
-#: js/files.js:349 js/files.js:382
+#: js/files.js:343 js/files.js:376
msgid "Upload cancelled."
msgstr "Įkėlimas atšauktas."
-#: js/files.js:451
+#: js/files.js:445
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr "Failo įkėlimas pradėtas. Jei paliksite šį puslapį, įkėlimas nutrūks."
-#: js/files.js:523
+#: js/files.js:515
msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud"
msgstr ""
-#: js/files.js:704
+#: js/files.js:699
msgid "{count} files scanned"
msgstr "{count} praskanuoti failai"
-#: js/files.js:712
+#: js/files.js:707
msgid "error while scanning"
msgstr "klaida skanuojant"
-#: js/files.js:785 templates/index.php:65
+#: js/files.js:780 templates/index.php:66
msgid "Name"
msgstr "Pavadinimas"
-#: js/files.js:786 templates/index.php:76
+#: js/files.js:781 templates/index.php:77
msgid "Size"
msgstr "Dydis"
-#: js/files.js:787 templates/index.php:78
+#: js/files.js:782 templates/index.php:79
msgid "Modified"
msgstr "Pakeista"
-#: js/files.js:814
+#: js/files.js:801
msgid "1 folder"
msgstr "1 aplankalas"
-#: js/files.js:816
+#: js/files.js:803
msgid "{count} folders"
msgstr "{count} aplankalai"
-#: js/files.js:824
+#: js/files.js:811
msgid "1 file"
msgstr "1 failas"
-#: js/files.js:826
+#: js/files.js:813
msgid "{count} files"
msgstr "{count} failai"
@@ -194,27 +206,27 @@ msgstr "Failų tvarkymas"
msgid "Maximum upload size"
msgstr "Maksimalus įkeliamo failo dydis"
-#: templates/admin.php:9
+#: templates/admin.php:10
msgid "max. possible: "
msgstr "maks. galima:"
-#: templates/admin.php:12
+#: templates/admin.php:15
msgid "Needed for multi-file and folder downloads."
msgstr "Reikalinga daugybinui failų ir aplankalų atsisiuntimui."
-#: templates/admin.php:14
+#: templates/admin.php:17
msgid "Enable ZIP-download"
msgstr "Įjungti atsisiuntimą ZIP archyvu"
-#: templates/admin.php:17
+#: templates/admin.php:20
msgid "0 is unlimited"
msgstr "0 yra neribotas"
-#: templates/admin.php:19
+#: templates/admin.php:22
msgid "Maximum input size for ZIP files"
msgstr "Maksimalus ZIP archyvo failo dydis"
-#: templates/admin.php:23
+#: templates/admin.php:26
msgid "Save"
msgstr "Išsaugoti"
@@ -242,28 +254,28 @@ msgstr "Įkelti"
msgid "Cancel upload"
msgstr "Atšaukti siuntimą"
-#: templates/index.php:57
+#: templates/index.php:58
msgid "Nothing in here. Upload something!"
msgstr "Čia tuščia. Įkelkite ką nors!"
-#: templates/index.php:71
+#: templates/index.php:72
msgid "Download"
msgstr "Atsisiųsti"
-#: templates/index.php:103
+#: templates/index.php:104
msgid "Upload too large"
msgstr "Įkėlimui failas per didelis"
-#: 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 "Bandomų įkelti failų dydis viršija maksimalų leidžiamą šiame serveryje"
-#: templates/index.php:110
+#: templates/index.php:111
msgid "Files are being scanned, please wait."
msgstr "Skenuojami failai, prašome palaukti."
-#: templates/index.php:113
+#: templates/index.php:114
msgid "Current scanning"
msgstr "Šiuo metu skenuojama"
diff --git a/l10n/lt_LT/settings.po b/l10n/lt_LT/settings.po
index 4b5d562b1d0..8622a3a7a26 100644
--- a/l10n/lt_LT/settings.po
+++ b/l10n/lt_LT/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-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: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n"
"MIME-Version: 1.0\n"
@@ -148,7 +148,7 @@ msgstr ""
#: templates/personal.php:12
msgid "Clients"
-msgstr ""
+msgstr "Klientai"
#: templates/personal.php:13
msgid "Download Desktop Clients"
@@ -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 "Slaptažodis"
@@ -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 "Vardas"
-#: 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 "Grupės"
@@ -245,21 +245,29 @@ msgid "Create"
msgstr "Sukurti"
#: templates/users.php:35
-msgid "Default Quota"
-msgstr "Numatytoji kvota"
+msgid "Default Storage"
+msgstr ""
+
+#: templates/users.php:42 templates/users.php:138
+msgid "Unlimited"
+msgstr ""
-#: templates/users.php:55 templates/users.php:138
+#: templates/users.php:60 templates/users.php:153
msgid "Other"
msgstr "Kita"
-#: 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 "Limitas"
+#: templates/users.php:87
+msgid "Storage"
+msgstr ""
+
+#: templates/users.php:133
+msgid "Default"
+msgstr ""
-#: templates/users.php:146
+#: templates/users.php:161
msgid "Delete"
msgstr "Ištrinti"
diff --git a/l10n/lv/files.po b/l10n/lv/files.po
index 09760c280aa..8d7b3dbc089 100644
--- a/l10n/lv/files.po
+++ b/l10n/lv/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-04 13:22+0100\n"
+"PO-Revision-Date: 2013-01-04 12:22+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n"
"MIME-Version: 1.0\n"
@@ -19,46 +19,58 @@ msgstr ""
"Language: lv\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 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 "Viss kārtībā, augšupielāde veiksmīga"
-#: 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 ""
-#: 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 "Neviens fails netika augšuplādēts"
-#: ajax/upload.php:27
+#: ajax/upload.php:28
msgid "Missing a temporary folder"
msgstr "Trūkst pagaidu mapes"
-#: ajax/upload.php:28
+#: ajax/upload.php:29
msgid "Failed to write to disk"
msgstr "Nav iespējams saglabāt"
+#: 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 "Faili"
-#: 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 "Pārtraukt līdzdalīšanu"
-#: 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 "Izdzēst"
@@ -66,39 +78,39 @@ msgstr "Izdzēst"
msgid "Rename"
msgstr "Pārdēvēt"
-#: 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 "aizvietot"
-#: js/filelist.js:201
+#: js/filelist.js:199
msgid "suggest name"
msgstr "Ieteiktais nosaukums"
-#: js/filelist.js:201 js/filelist.js:203
+#: js/filelist.js:199 js/filelist.js:201
msgid "cancel"
msgstr "atcelt"
-#: 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 "vienu soli atpakaļ"
-#: 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 ""
@@ -108,80 +120,80 @@ msgid ""
"allowed."
msgstr ""
-#: js/files.js:183
+#: js/files.js:174
msgid "generating ZIP-file, it may take some time."
msgstr "lai uzģenerētu ZIP failu, kāds brīdis ir jāpagaida"
-#: js/files.js:218
+#: js/files.js:212
msgid "Unable to upload your file as it is a directory or has 0 bytes"
msgstr "Nav iespējams augšuplādēt jūsu failu, jo tāds jau eksistē vai arī failam nav izmēra (0 baiti)"
-#: js/files.js:218
+#: js/files.js:212
msgid "Upload Error"
msgstr "Augšuplādēšanas laikā radās kļūda"
-#: js/files.js:235
+#: js/files.js:229
msgid "Close"
msgstr ""
-#: js/files.js:254 js/files.js:368 js/files.js:398
+#: js/files.js:248 js/files.js:362 js/files.js:392
msgid "Pending"
msgstr "Gaida savu kārtu"
-#: js/files.js:274
+#: js/files.js:268
msgid "1 file uploading"
msgstr ""
-#: js/files.js:277 js/files.js:331 js/files.js:346
+#: js/files.js:271 js/files.js:325 js/files.js:340
msgid "{count} files uploading"
msgstr ""
-#: js/files.js:349 js/files.js:382
+#: js/files.js:343 js/files.js:376
msgid "Upload cancelled."
msgstr "Augšuplāde ir atcelta"
-#: js/files.js:451
+#: js/files.js:445
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr "Notiek augšupielāde. Pametot lapu tagad, tiks atcelta augšupielāde."
-#: js/files.js:523
+#: js/files.js:515
msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud"
msgstr ""
-#: js/files.js:704
+#: js/files.js:699
msgid "{count} files scanned"
msgstr ""
-#: js/files.js:712
+#: js/files.js:707
msgid "error while scanning"
msgstr ""
-#: js/files.js:785 templates/index.php:65
+#: js/files.js:780 templates/index.php:66
msgid "Name"
msgstr "Nosaukums"
-#: js/files.js:786 templates/index.php:76
+#: js/files.js:781 templates/index.php:77
msgid "Size"
msgstr "Izmērs"
-#: js/files.js:787 templates/index.php:78
+#: js/files.js:782 templates/index.php:79
msgid "Modified"
msgstr "Izmainīts"
-#: js/files.js:814
+#: js/files.js:801
msgid "1 folder"
msgstr ""
-#: js/files.js:816
+#: js/files.js:803
msgid "{count} folders"
msgstr ""
-#: js/files.js:824
+#: js/files.js:811
msgid "1 file"
msgstr ""
-#: js/files.js:826
+#: js/files.js:813
msgid "{count} files"
msgstr ""
@@ -193,27 +205,27 @@ msgstr "Failu pārvaldība"
msgid "Maximum upload size"
msgstr "Maksimālais failu augšuplādes apjoms"
-#: templates/admin.php:9
+#: templates/admin.php:10
msgid "max. possible: "
msgstr "maksīmālais iespējamais:"
-#: templates/admin.php:12
+#: templates/admin.php:15
msgid "Needed for multi-file and folder downloads."
msgstr "Vajadzīgs vairāku failu un mapju lejuplādei"
-#: templates/admin.php:14
+#: templates/admin.php:17
msgid "Enable ZIP-download"
msgstr "Iespējot ZIP lejuplādi"
-#: templates/admin.php:17
+#: templates/admin.php:20
msgid "0 is unlimited"
msgstr "0 ir neierobežots"
-#: 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 "Saglabāt"
@@ -241,28 +253,28 @@ msgstr "Augšuplādet"
msgid "Cancel upload"
msgstr "Atcelt augšuplādi"
-#: templates/index.php:57
+#: templates/index.php:58
msgid "Nothing in here. Upload something!"
msgstr "Te vēl nekas nav. Rīkojies, sāc augšuplādēt"
-#: templates/index.php:71
+#: templates/index.php:72
msgid "Download"
msgstr "Lejuplādēt"
-#: templates/index.php:103
+#: templates/index.php:104
msgid "Upload too large"
msgstr "Fails ir par lielu lai to augšuplādetu"
-#: 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 "Jūsu augšuplādējamie faili pārsniedz servera pieļaujamo failu augšupielādes apjomu"
-#: templates/index.php:110
+#: templates/index.php:111
msgid "Files are being scanned, please wait."
msgstr "Faili šobrīd tiek caurskatīti, nedaudz jāpagaida."
-#: templates/index.php:113
+#: templates/index.php:114
msgid "Current scanning"
msgstr "Šobrīd tiek pārbaudīti"
diff --git a/l10n/lv/settings.po b/l10n/lv/settings.po
index 22fd0c4bb2e..6bac98259c8 100644
--- a/l10n/lv/settings.po
+++ b/l10n/lv/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-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: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\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 "Parole"
@@ -232,11 +232,11 @@ msgid ""
"License\">AGPL."
msgstr "IzstrādājusiownCloud kopiena,pirmkodukurš ir licencēts zem AGPL."
-#: templates/users.php:21 templates/users.php:76
+#: templates/users.php:21 templates/users.php:81
msgid "Name"
msgstr "Vārds"
-#: 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 "Grupas"
@@ -245,21 +245,29 @@ msgid "Create"
msgstr "Izveidot"
#: templates/users.php:35
-msgid "Default Quota"
-msgstr "Apjoms pēc noklusējuma"
+msgid "Default Storage"
+msgstr ""
+
+#: templates/users.php:42 templates/users.php:138
+msgid "Unlimited"
+msgstr ""
-#: templates/users.php:55 templates/users.php:138
+#: templates/users.php:60 templates/users.php:153
msgid "Other"
msgstr "Cits"
-#: templates/users.php:80 templates/users.php:112
+#: templates/users.php:85 templates/users.php:117
msgid "Group Admin"
msgstr "Grupas administrators"
-#: templates/users.php:82
-msgid "Quota"
-msgstr "Apjoms"
+#: templates/users.php:87
+msgid "Storage"
+msgstr ""
+
+#: templates/users.php:133
+msgid "Default"
+msgstr ""
-#: templates/users.php:146
+#: templates/users.php:161
msgid "Delete"
msgstr "Izdzēst"
diff --git a/l10n/mk/files.po b/l10n/mk/files.po
index 778f65fd741..861290c50de 100644
--- a/l10n/mk/files.po
+++ b/l10n/mk/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-18 00:13+0100\n"
-"PO-Revision-Date: 2012-12-17 12:18+0000\n"
-"Last-Translator: Georgi Stanojevski \n"
+"POT-Creation-Date: 2013-01-05 00:02+0100\n"
+"PO-Revision-Date: 2013-01-04 12:30+0000\n"
+"Last-Translator: I Robot \n"
"Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -20,37 +20,49 @@ msgstr ""
"Language: mk\n"
"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 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 "Датотеки"
@@ -113,76 +125,76 @@ msgstr "Неправилно име. , '\\', '/', '<', '>', ':', '\"', '|', '?'
msgid "generating ZIP-file, it may take some time."
msgstr "Се генерира ZIP фајлот, ќе треба извесно време."
-#: js/files.js:209
+#: js/files.js:212
msgid "Unable to upload your file as it is a directory or has 0 bytes"
msgstr "Не може да се преземе вашата датотека бидејќи фолдерот во кој се наоѓа фајлот има големина од 0 бајти"
-#: js/files.js:209
+#: js/files.js:212
msgid "Upload Error"
msgstr "Грешка при преземање"
-#: js/files.js:226
+#: js/files.js:229
msgid "Close"
msgstr "Затвои"
-#: js/files.js:245 js/files.js:359 js/files.js:389
+#: js/files.js:248 js/files.js:362 js/files.js:392
msgid "Pending"
msgstr "Чека"
-#: js/files.js:265
+#: js/files.js:268
msgid "1 file uploading"
msgstr "1 датотека се подига"
-#: js/files.js:268 js/files.js:322 js/files.js:337
+#: js/files.js:271 js/files.js:325 js/files.js:340
msgid "{count} files uploading"
msgstr "{count} датотеки се подигаат"
-#: js/files.js:340 js/files.js:373
+#: js/files.js:343 js/files.js:376
msgid "Upload cancelled."
msgstr "Преземањето е прекинато."
-#: js/files.js:442
+#: js/files.js:445
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr "Подигање на датотека е во тек. Напуштење на страницата ќе го прекине."
-#: js/files.js:512
+#: js/files.js:515
msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud"
msgstr "Неправилно име на папка. Користењето на „Shared“ е резервирано за Owncloud"
-#: js/files.js:693
+#: js/files.js:699
msgid "{count} files scanned"
msgstr "{count} датотеки скенирани"
-#: js/files.js:701
+#: js/files.js:707
msgid "error while scanning"
msgstr "грешка при скенирање"
-#: js/files.js:774 templates/index.php:66
+#: js/files.js:780 templates/index.php:66
msgid "Name"
msgstr "Име"
-#: js/files.js:775 templates/index.php:77
+#: js/files.js:781 templates/index.php:77
msgid "Size"
msgstr "Големина"
-#: js/files.js:776 templates/index.php:79
+#: js/files.js:782 templates/index.php:79
msgid "Modified"
msgstr "Променето"
-#: js/files.js:803
+#: js/files.js:801
msgid "1 folder"
msgstr "1 папка"
-#: js/files.js:805
+#: js/files.js:803
msgid "{count} folders"
msgstr "{count} папки"
-#: js/files.js:813
+#: js/files.js:811
msgid "1 file"
msgstr "1 датотека"
-#: js/files.js:815
+#: js/files.js:813
msgid "{count} files"
msgstr "{count} датотеки"
@@ -194,27 +206,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 "Сними"
diff --git a/l10n/mk/files_external.po b/l10n/mk/files_external.po
index 6fcaf65d89d..586863c6b16 100644
--- a/l10n/mk/files_external.po
+++ b/l10n/mk/files_external.po
@@ -3,13 +3,14 @@
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
+# Georgi Stanojevski , 2012.
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 13:00+0000\n"
-"Last-Translator: I Robot \n"
+"POT-Creation-Date: 2012-12-29 00:07+0100\n"
+"PO-Revision-Date: 2012-12-28 09:20+0000\n"
+"Last-Translator: Georgi Stanojevski \n"
"Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -19,48 +20,48 @@ msgstr ""
#: js/dropbox.js:7 js/dropbox.js:25 js/google.js:7 js/google.js:23
msgid "Access granted"
-msgstr ""
+msgstr "Пристапот е дозволен"
#: js/dropbox.js:28 js/dropbox.js:74 js/dropbox.js:79 js/dropbox.js:86
msgid "Error configuring Dropbox storage"
-msgstr ""
+msgstr "Грешка при конфигурација на Dropbox"
#: js/dropbox.js:34 js/dropbox.js:45 js/google.js:31 js/google.js:40
msgid "Grant access"
-msgstr ""
+msgstr "Дозволи пристап"
#: js/dropbox.js:73 js/google.js:72
msgid "Fill out all required fields"
-msgstr ""
+msgstr "Пополни ги сите задолжителни полиња"
#: js/dropbox.js:85
msgid "Please provide a valid Dropbox app key and secret."
-msgstr ""
+msgstr "Ве молам доставите валиден Dropbox клуч и тајна лозинка."
#: js/google.js:26 js/google.js:73 js/google.js:78
msgid "Error configuring Google Drive storage"
-msgstr ""
+msgstr "Грешка при конфигурација на Google Drive"
#: 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 "Внимание: \"smbclient\" не е инсталиран. Не е можно монтирање на CIFS/SMB дискови. Замолете го Вашиот систем администратор да го инсталира."
#: 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 "Внимание: Не е овозможена или инсталирани FTP подршка во PHP. Не е можно монтирање на FTP дискови. Замолете го Вашиот систем администратор да го инсталира."
#: templates/settings.php:3
msgid "External Storage"
-msgstr ""
+msgstr "Надворешно складиште"
#: templates/settings.php:8 templates/settings.php:22
msgid "Mount point"
-msgstr ""
+msgstr "Точка на монтирање"
#: templates/settings.php:9
msgid "Backend"
@@ -68,27 +69,27 @@ msgstr "Админ"
#: templates/settings.php:10
msgid "Configuration"
-msgstr ""
+msgstr "Конфигурација"
#: templates/settings.php:11
msgid "Options"
-msgstr ""
+msgstr "Опции"
#: templates/settings.php:12
msgid "Applicable"
-msgstr ""
+msgstr "Применливо"
#: templates/settings.php:27
msgid "Add mount point"
-msgstr ""
+msgstr "Додади точка на монтирање"
#: templates/settings.php:85
msgid "None set"
-msgstr ""
+msgstr "Ништо поставено"
#: templates/settings.php:86
msgid "All Users"
-msgstr ""
+msgstr "Сите корисници"
#: templates/settings.php:87
msgid "Groups"
@@ -99,22 +100,22 @@ msgid "Users"
msgstr "Корисници"
#: 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 "Избриши"
#: templates/settings.php:124
msgid "Enable User External Storage"
-msgstr ""
+msgstr "Овозможи надворешни за корисници"
#: templates/settings.php:125
msgid "Allow users to mount their own external storage"
-msgstr ""
+msgstr "Дозволи им на корисниците да монтираат свои надворешни дискови"
-#: templates/settings.php:139
+#: templates/settings.php:136
msgid "SSL root certificates"
-msgstr ""
+msgstr "SSL root сертификати"
-#: templates/settings.php:158
+#: templates/settings.php:153
msgid "Import Root Certificate"
-msgstr ""
+msgstr "Увези"
diff --git a/l10n/mk/settings.po b/l10n/mk/settings.po
index 0dac229dcd7..0f4d756335e 100644
--- a/l10n/mk/settings.po
+++ b/l10n/mk/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-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: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n"
"MIME-Version: 1.0\n"
@@ -120,19 +120,19 @@ msgstr "-лиценцирано од %s од достап
#: templates/personal.php:12
msgid "Clients"
-msgstr ""
+msgstr "Клиенти"
#: templates/personal.php:13
msgid "Download Desktop Clients"
-msgstr ""
+msgstr "Преземи клиенти за десктоп"
#: templates/personal.php:14
msgid "Download Android Client"
-msgstr ""
+msgstr "Преземи клиент за Андроид"
#: templates/personal.php:15
msgid "Download iOS Client"
-msgstr ""
+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 "Лозинка"
@@ -213,15 +213,15 @@ msgstr "Помогни во преводот"
#: 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 "Користете ја оваа адреса да "
#: templates/personal.php:63
msgid "Version"
-msgstr ""
+msgstr "Верзија"
#: templates/personal.php:65
msgid ""
@@ -233,11 +233,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 "Групи"
@@ -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:133
+msgid "Default"
+msgstr ""
-#: templates/users.php:146
+#: templates/users.php:161
msgid "Delete"
msgstr "Избриши"
diff --git a/l10n/mk/user_ldap.po b/l10n/mk/user_ldap.po
index 206aa2878d7..3b3498bce1c 100644
--- a/l10n/mk/user_ldap.po
+++ b/l10n/mk/user_ldap.po
@@ -3,13 +3,14 @@
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
+# Georgi Stanojevski , 2012.
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 13:32+0000\n"
-"Last-Translator: I Robot \n"
+"POT-Creation-Date: 2012-12-29 00:07+0100\n"
+"PO-Revision-Date: 2012-12-28 09:25+0000\n"
+"Last-Translator: Georgi Stanojevski \n"
"Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -32,12 +33,12 @@ msgstr ""
#: 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"
diff --git a/l10n/mk/user_webdavauth.po b/l10n/mk/user_webdavauth.po
index cdbba67dc8b..20fbb4d7b33 100644
--- a/l10n/mk/user_webdavauth.po
+++ b/l10n/mk/user_webdavauth.po
@@ -3,13 +3,14 @@
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
+# Georgi Stanojevski , 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-29 00:07+0100\n"
+"PO-Revision-Date: 2012-12-28 09:21+0000\n"
+"Last-Translator: Georgi Stanojevski \n"
"Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -19,7 +20,7 @@ msgstr ""
#: templates/settings.php:4
msgid "URL: http://"
-msgstr ""
+msgstr "URL: http://"
#: templates/settings.php:6
msgid ""
diff --git a/l10n/ms_MY/files.po b/l10n/ms_MY/files.po
index 02844fd34d3..772c7c7ac4b 100644
--- a/l10n/ms_MY/files.po
+++ b/l10n/ms_MY/files.po
@@ -11,8 +11,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-12-01 00:01+0100\n"
-"PO-Revision-Date: 2012-11-30 23:02+0000\n"
+"POT-Creation-Date: 2013-01-05 00:02+0100\n"
+"PO-Revision-Date: 2013-01-04 12:30+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n"
"MIME-Version: 1.0\n"
@@ -21,46 +21,58 @@ msgstr ""
"Language: ms_MY\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-#: ajax/upload.php:20
+#: ajax/upload.php:14
+msgid "No file was uploaded. Unknown error"
+msgstr "Tiada fail dimuatnaik. Ralat tidak diketahui."
+
+#: ajax/upload.php:21
msgid "There is no error, the file uploaded with success"
msgstr "Tiada ralat, fail berjaya dimuat naik."
-#: 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 "Fail yang dimuat naik melebihi MAX_FILE_SIZE yang dinyatakan dalam form HTML "
-#: ajax/upload.php:25
+#: ajax/upload.php:26
msgid "The uploaded file was only partially uploaded"
msgstr "Sebahagian daripada fail telah dimuat naik. "
-#: ajax/upload.php:26
+#: ajax/upload.php:27
msgid "No file was uploaded"
msgstr "Tiada fail yang dimuat naik"
-#: ajax/upload.php:27
+#: ajax/upload.php:28
msgid "Missing a temporary folder"
msgstr "Folder sementara hilang"
-#: ajax/upload.php:28
+#: ajax/upload.php:29
msgid "Failed to write to disk"
msgstr "Gagal untuk disimpan"
+#: 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 "fail"
-#: 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 "Padam"
@@ -68,39 +80,39 @@ msgstr "Padam"
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 "ganti"
-#: 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 "Batal"
-#: 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 ""
@@ -110,80 +122,80 @@ msgid ""
"allowed."
msgstr ""
-#: js/files.js:183
+#: js/files.js:174
msgid "generating ZIP-file, it may take some time."
msgstr "sedang menghasilkan fail ZIP, mungkin mengambil sedikit masa."
-#: js/files.js:218
+#: js/files.js:212
msgid "Unable to upload your file as it is a directory or has 0 bytes"
msgstr "Tidak boleh memuatnaik fail anda kerana mungkin ianya direktori atau saiz fail 0 bytes"
-#: js/files.js:218
+#: js/files.js:212
msgid "Upload Error"
msgstr "Muat naik ralat"
-#: js/files.js:235
+#: js/files.js:229
msgid "Close"
msgstr "Tutup"
-#: js/files.js:254 js/files.js:368 js/files.js:398
+#: js/files.js:248 js/files.js:362 js/files.js:392
msgid "Pending"
msgstr "Dalam proses"
-#: js/files.js:274
+#: js/files.js:268
msgid "1 file uploading"
msgstr ""
-#: js/files.js:277 js/files.js:331 js/files.js:346
+#: js/files.js:271 js/files.js:325 js/files.js:340
msgid "{count} files uploading"
msgstr ""
-#: js/files.js:349 js/files.js:382
+#: js/files.js:343 js/files.js:376
msgid "Upload cancelled."
msgstr "Muatnaik dibatalkan."
-#: js/files.js:451
+#: js/files.js:445
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr ""
-#: js/files.js:523
+#: js/files.js:515
msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud"
msgstr ""
-#: js/files.js:704
+#: js/files.js:699
msgid "{count} files scanned"
msgstr ""
-#: js/files.js:712
+#: js/files.js:707
msgid "error while scanning"
msgstr ""
-#: js/files.js:785 templates/index.php:65
+#: js/files.js:780 templates/index.php:66
msgid "Name"
msgstr "Nama "
-#: js/files.js:786 templates/index.php:76
+#: js/files.js:781 templates/index.php:77
msgid "Size"
msgstr "Saiz"
-#: js/files.js:787 templates/index.php:78
+#: js/files.js:782 templates/index.php:79
msgid "Modified"
msgstr "Dimodifikasi"
-#: js/files.js:814
+#: js/files.js:801
msgid "1 folder"
msgstr ""
-#: js/files.js:816
+#: js/files.js:803
msgid "{count} folders"
msgstr ""
-#: js/files.js:824
+#: js/files.js:811
msgid "1 file"
msgstr ""
-#: js/files.js:826
+#: js/files.js:813
msgid "{count} files"
msgstr ""
@@ -195,27 +207,27 @@ msgstr "Pengendalian fail"
msgid "Maximum upload size"
msgstr "Saiz maksimum muat naik"
-#: templates/admin.php:9
+#: templates/admin.php:10
msgid "max. possible: "
msgstr "maksimum:"
-#: templates/admin.php:12
+#: templates/admin.php:15
msgid "Needed for multi-file and folder downloads."
msgstr "Diperlukan untuk muatturun fail pelbagai "
-#: templates/admin.php:14
+#: templates/admin.php:17
msgid "Enable ZIP-download"
msgstr "Aktifkan muatturun ZIP"
-#: templates/admin.php:17
+#: templates/admin.php:20
msgid "0 is unlimited"
msgstr "0 adalah tanpa had"
-#: templates/admin.php:19
+#: templates/admin.php:22
msgid "Maximum input size for ZIP files"
msgstr "Saiz maksimum input untuk fail ZIP"
-#: templates/admin.php:23
+#: templates/admin.php:26
msgid "Save"
msgstr "Simpan"
@@ -243,28 +255,28 @@ msgstr "Muat naik"
msgid "Cancel upload"
msgstr "Batal muat naik"
-#: templates/index.php:57
+#: templates/index.php:58
msgid "Nothing in here. Upload something!"
msgstr "Tiada apa-apa di sini. Muat naik sesuatu!"
-#: templates/index.php:71
+#: templates/index.php:72
msgid "Download"
msgstr "Muat turun"
-#: templates/index.php:103
+#: templates/index.php:104
msgid "Upload too large"
msgstr "Muat naik 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 "Fail yang cuba dimuat naik melebihi saiz maksimum fail upload server"
-#: templates/index.php:110
+#: templates/index.php:111
msgid "Files are being scanned, please wait."
msgstr "Fail sedang diimbas, harap bersabar."
-#: templates/index.php:113
+#: templates/index.php:114
msgid "Current scanning"
msgstr "Imbasan semasa"
diff --git a/l10n/ms_MY/settings.po b/l10n/ms_MY/settings.po
index 11b17fa24a9..444196b7ee8 100644
--- a/l10n/ms_MY/settings.po
+++ b/l10n/ms_MY/settings.po
@@ -11,8 +11,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-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: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n"
"MIME-Version: 1.0\n"
@@ -150,7 +150,7 @@ msgstr ""
#: templates/personal.php:12
msgid "Clients"
-msgstr ""
+msgstr "klien"
#: templates/personal.php:13
msgid "Download Desktop Clients"
@@ -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 "Kata laluan "
@@ -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 "Kumpulan"
@@ -247,21 +247,29 @@ msgid "Create"
msgstr "Buat"
#: templates/users.php:35
-msgid "Default Quota"
-msgstr "Kuota Lalai"
+msgid "Default Storage"
+msgstr ""
+
+#: templates/users.php:42 templates/users.php:138
+msgid "Unlimited"
+msgstr ""
-#: templates/users.php:55 templates/users.php:138
+#: templates/users.php:60 templates/users.php:153
msgid "Other"
msgstr "Lain"
-#: 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 "Kuota"
+#: templates/users.php:87
+msgid "Storage"
+msgstr ""
+
+#: templates/users.php:133
+msgid "Default"
+msgstr ""
-#: templates/users.php:146
+#: templates/users.php:161
msgid "Delete"
msgstr "Padam"
diff --git a/l10n/nb_NO/core.po b/l10n/nb_NO/core.po
index 7354a7de4ce..df292b0cea6 100644
--- a/l10n/nb_NO/core.po
+++ b/l10n/nb_NO/core.po
@@ -6,6 +6,7 @@
# , 2011, 2012.
# Christer Eriksson , 2012.
# Daniel , 2012.
+# , 2012.
# , 2012.
# , 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-13 00:17+0100\n"
-"PO-Revision-Date: 2012-12-12 23:17+0000\n"
-"Last-Translator: I Robot \n"
+"POT-Creation-Date: 2012-12-30 00:04+0100\n"
+"PO-Revision-Date: 2012-12-29 16:28+0000\n"
+"Last-Translator: espenbye \n"
"Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -103,11 +104,11 @@ msgstr "{minutes} minutter siden"
#: js/js.js:707
msgid "1 hour ago"
-msgstr ""
+msgstr "1 time siden"
#: js/js.js:708
msgid "{hours} hours ago"
-msgstr ""
+msgstr "{hours} timer siden"
#: js/js.js:709
msgid "today"
@@ -127,7 +128,7 @@ msgstr "forrige måned"
#: js/js.js:713
msgid "{months} months ago"
-msgstr ""
+msgstr "{months} måneder siden"
#: js/js.js:714
msgid "months ago"
@@ -167,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 "Feil"
@@ -180,7 +181,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 "Feil under deling"
@@ -208,11 +209,11 @@ msgstr "Del med"
msgid "Share with link"
msgstr "Del med link"
-#: js/share.js:164
+#: js/share.js:166
msgid "Password protect"
msgstr "Passordbeskyttet"
-#: 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 "Passord"
@@ -223,7 +224,7 @@ msgstr ""
#: js/share.js:173
msgid "Send"
-msgstr ""
+msgstr "Send"
#: js/share.js:177
msgid "Set expiration date"
@@ -277,25 +278,25 @@ msgstr "slett"
msgid "share"
msgstr "del"
-#: js/share.js:353 js/share.js:528 js/share.js:530
+#: js/share.js:356 js/share.js:541
msgid "Password protected"
msgstr "Passordbeskyttet"
-#: 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 "Kan ikke sette utløpsdato"
-#: js/share.js:568
+#: js/share.js:581
msgid "Sending ..."
-msgstr ""
+msgstr "Sender..."
-#: js/share.js:579
+#: js/share.js:592
msgid "Email sent"
-msgstr ""
+msgstr "E-post sendt"
#: lostpassword/controller.php:47
msgid "ownCloud password reset"
@@ -317,8 +318,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 "Brukernavn"
@@ -407,44 +408,44 @@ msgstr ""
msgid "Create an admin account"
msgstr "opprett en administrator-konto"
-#: templates/installation.php:48
+#: templates/installation.php:50
msgid "Advanced"
msgstr "Avansert"
-#: templates/installation.php:50
+#: templates/installation.php:52
msgid "Data folder"
msgstr "Datamappe"
-#: templates/installation.php:57
+#: templates/installation.php:59
msgid "Configure the database"
msgstr "Konfigurer databasen"
-#: 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 "vil bli brukt"
-#: templates/installation.php:105
+#: templates/installation.php:107
msgid "Database user"
msgstr "Databasebruker"
-#: templates/installation.php:109
+#: templates/installation.php:111
msgid "Database password"
msgstr "Databasepassord"
-#: templates/installation.php:113
+#: templates/installation.php:115
msgid "Database name"
msgstr "Databasenavn"
-#: templates/installation.php:121
+#: templates/installation.php:123
msgid "Database tablespace"
msgstr "Database tabellområde"
-#: templates/installation.php:127
+#: templates/installation.php:129
msgid "Database host"
msgstr "Databasevert"
-#: templates/installation.php:132
+#: templates/installation.php:134
msgid "Finish setup"
msgstr "Fullfør oppsetting"
@@ -532,29 +533,29 @@ msgstr "nettjenester under din kontroll"
msgid "Log out"
msgstr "Logg ut"
-#: templates/login.php:8
+#: templates/login.php:10
msgid "Automatic logon rejected!"
msgstr "Automatisk pålogging avvist!"
-#: templates/login.php:9
+#: templates/login.php:11
msgid ""
"If you did not change your password recently, your account may be "
"compromised!"
msgstr "Hvis du ikke har endret passordet ditt nylig kan kontoen din være kompromitert"
-#: templates/login.php:10
+#: templates/login.php:13
msgid "Please change your password to secure your account again."
msgstr "Vennligst skift passord for å gjøre kontoen din sikker igjen."
-#: templates/login.php:15
+#: templates/login.php:19
msgid "Lost your password?"
msgstr "Mistet passordet ditt?"
-#: templates/login.php:27
+#: templates/login.php:39
msgid "remember"
msgstr "husk"
-#: templates/login.php:28
+#: templates/login.php:41
msgid "Log in"
msgstr "Logg inn"
diff --git a/l10n/nb_NO/files.po b/l10n/nb_NO/files.po
index ad0cf919ea0..efc1669f396 100644
--- a/l10n/nb_NO/files.po
+++ b/l10n/nb_NO/files.po
@@ -7,6 +7,7 @@
# Arvid Nornes , 2012.
# Christer Eriksson , 2012.
# Daniel , 2012.
+# , 2012.
# , 2012.
# , 2012.
# , 2012.
@@ -15,8 +16,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-05 00:02+0100\n"
+"PO-Revision-Date: 2013-01-04 12:30+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n"
"MIME-Version: 1.0\n"
@@ -25,46 +26,58 @@ msgstr ""
"Language: nb_NO\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 filer ble lastet opp. Ukjent feil."
+
+#: ajax/upload.php:21
msgid "There is no error, the file uploaded with success"
msgstr "Det er ingen feil. Filen ble lastet opp."
-#: 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 "Filstørrelsen overskrider maksgrensen på MAX_FILE_SIZE som ble oppgitt i HTML-skjemaet"
-#: ajax/upload.php:25
+#: ajax/upload.php:26
msgid "The uploaded file was only partially uploaded"
msgstr "Filopplastningen ble bare delvis gjennomført"
-#: ajax/upload.php:26
+#: ajax/upload.php:27
msgid "No file was uploaded"
msgstr "Ingen fil ble lastet opp"
-#: 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 "Klarte ikke å skrive 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"
-#: 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 "Avslutt deling"
-#: 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 "Slett"
@@ -72,39 +85,39 @@ msgstr "Slett"
msgid "Rename"
msgstr "Omdøp"
-#: js/filelist.js:201 js/filelist.js:203
+#: js/filelist.js:199 js/filelist.js:201
msgid "{new_name} already exists"
msgstr "{new_name} finnes allerede"
-#: js/filelist.js:201 js/filelist.js:203
+#: js/filelist.js:199 js/filelist.js:201
msgid "replace"
msgstr "erstatt"
-#: js/filelist.js:201
+#: js/filelist.js:199
msgid "suggest name"
msgstr "foreslå navn"
-#: js/filelist.js:201 js/filelist.js:203
+#: js/filelist.js:199 js/filelist.js:201
msgid "cancel"
msgstr "avbryt"
-#: js/filelist.js:250
+#: js/filelist.js:248
msgid "replaced {new_name}"
msgstr "erstatt {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 "angre"
-#: js/filelist.js:252
+#: js/filelist.js:250
msgid "replaced {new_name} with {old_name}"
msgstr "erstatt {new_name} med {old_name}"
-#: js/filelist.js:284
+#: js/filelist.js:282
msgid "unshared {files}"
msgstr ""
-#: js/filelist.js:286
+#: js/filelist.js:284
msgid "deleted {files}"
msgstr "slettet {files}"
@@ -112,82 +125,82 @@ msgstr "slettet {files}"
msgid ""
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not "
"allowed."
-msgstr ""
+msgstr "Ugyldig navn, '\\', '/', '<', '>', ':', '\"', '|', '?' og '*' er ikke tillatt."
-#: js/files.js:183
+#: js/files.js:174
msgid "generating ZIP-file, it may take some time."
msgstr "opprettet ZIP-fil, dette kan ta litt tid"
-#: js/files.js:218
+#: js/files.js:212
msgid "Unable to upload your file as it is a directory or has 0 bytes"
msgstr "Kan ikke laste opp filen din siden det er en mappe eller den har 0 bytes"
-#: js/files.js:218
+#: js/files.js:212
msgid "Upload Error"
msgstr "Opplasting feilet"
-#: js/files.js:235
+#: js/files.js:229
msgid "Close"
msgstr "Lukk"
-#: js/files.js:254 js/files.js:368 js/files.js:398
+#: js/files.js:248 js/files.js:362 js/files.js:392
msgid "Pending"
msgstr "Ventende"
-#: js/files.js:274
+#: js/files.js:268
msgid "1 file uploading"
msgstr "1 fil lastes opp"
-#: js/files.js:277 js/files.js:331 js/files.js:346
+#: js/files.js:271 js/files.js:325 js/files.js:340
msgid "{count} files uploading"
msgstr "{count} filer laster opp"
-#: js/files.js:349 js/files.js:382
+#: js/files.js:343 js/files.js:376
msgid "Upload cancelled."
msgstr "Opplasting avbrutt."
-#: js/files.js:451
+#: js/files.js:445
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr "Filopplasting pågår. Forlater du siden nå avbrytes opplastingen."
-#: js/files.js:523
+#: js/files.js:515
msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud"
-msgstr ""
+msgstr "Ugyldig mappenavn. Bruk av \"Shared\" er reservert av ownCloud."
-#: js/files.js:704
+#: js/files.js:699
msgid "{count} files scanned"
msgstr "{count} filer lest inn"
-#: js/files.js:712
+#: js/files.js:707
msgid "error while scanning"
msgstr "feil under skanning"
-#: js/files.js:785 templates/index.php:65
+#: js/files.js:780 templates/index.php:66
msgid "Name"
msgstr "Navn"
-#: js/files.js:786 templates/index.php:76
+#: js/files.js:781 templates/index.php:77
msgid "Size"
msgstr "Størrelse"
-#: js/files.js:787 templates/index.php:78
+#: js/files.js:782 templates/index.php:79
msgid "Modified"
msgstr "Endret"
-#: js/files.js:814
+#: js/files.js:801
msgid "1 folder"
msgstr "1 mappe"
-#: js/files.js:816
+#: js/files.js:803
msgid "{count} folders"
msgstr "{count} mapper"
-#: js/files.js:824
+#: js/files.js:811
msgid "1 file"
msgstr "1 fil"
-#: js/files.js:826
+#: js/files.js:813
msgid "{count} files"
msgstr "{count} filer"
@@ -199,27 +212,27 @@ msgstr "Filhåndtering"
msgid "Maximum upload size"
msgstr "Maksimum opplastingsstø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ødvendig for å laste ned mapper og mer enn én fil om gangen."
-#: templates/admin.php:14
+#: templates/admin.php:17
msgid "Enable ZIP-download"
msgstr "Aktiver nedlasting av ZIP"
-#: templates/admin.php:17
+#: templates/admin.php:20
msgid "0 is unlimited"
msgstr "0 er ubegrenset"
-#: 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 "Lagre"
@@ -237,7 +250,7 @@ msgstr "Mappe"
#: templates/index.php:14
msgid "From link"
-msgstr ""
+msgstr "Fra link"
#: templates/index.php:35
msgid "Upload"
@@ -247,28 +260,28 @@ msgstr "Last opp"
msgid "Cancel upload"
msgstr "Avbryt opplasting"
-#: templates/index.php:57
+#: templates/index.php:58
msgid "Nothing in here. Upload something!"
msgstr "Ingenting her. Last opp noe!"
-#: templates/index.php:71
+#: templates/index.php:72
msgid "Download"
msgstr "Last ned"
-#: templates/index.php:103
+#: templates/index.php:104
msgid "Upload too large"
msgstr "Opplasting for stor"
-#: 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 "Filene du prøver å laste opp er for store for å laste opp til denne serveren."
-#: templates/index.php:110
+#: templates/index.php:111
msgid "Files are being scanned, please wait."
msgstr "Skanner etter filer, vennligst vent."
-#: templates/index.php:113
+#: templates/index.php:114
msgid "Current scanning"
msgstr "Pågående skanning"
diff --git a/l10n/nb_NO/lib.po b/l10n/nb_NO/lib.po
index 266ba36b069..abaf9fc0847 100644
--- a/l10n/nb_NO/lib.po
+++ b/l10n/nb_NO/lib.po
@@ -4,6 +4,7 @@
#
# Translators:
# Arvid Nornes , 2012.
+# , 2012.
# , 2012.
# , 2012.
# , 2012.
@@ -11,9 +12,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-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-30 00:04+0100\n"
+"PO-Revision-Date: 2012-12-29 17:26+0000\n"
+"Last-Translator: espenbye \n"
"Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -21,43 +22,43 @@ msgstr ""
"Language: nb_NO\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: app.php:285
+#: app.php:287
msgid "Help"
msgstr "Hjelp"
-#: app.php:292
+#: app.php:294
msgid "Personal"
msgstr "Personlig"
-#: app.php:297
+#: app.php:299
msgid "Settings"
msgstr "Innstillinger"
-#: app.php:302
+#: app.php:304
msgid "Users"
msgstr "Brukere"
-#: app.php:309
+#: app.php:311
msgid "Apps"
msgstr "Apper"
-#: app.php:311
+#: app.php:313
msgid "Admin"
msgstr "Admin"
-#: files.php:332
+#: files.php:365
msgid "ZIP download is turned off."
msgstr "ZIP-nedlasting av avslått"
-#: files.php:333
+#: files.php:366
msgid "Files need to be downloaded one by one."
msgstr "Filene må lastes ned en om gangen"
-#: files.php:333 files.php:358
+#: files.php:366 files.php:391
msgid "Back to Files"
msgstr "Tilbake til filer"
-#: files.php:357
+#: files.php:390
msgid "Selected files too large to generate zip file."
msgstr "De valgte filene er for store til å kunne generere ZIP-fil"
@@ -91,7 +92,7 @@ msgstr "sekunder siden"
#: template.php:104
msgid "1 minute ago"
-msgstr "1 minuitt siden"
+msgstr "1 minutt siden"
#: template.php:105
#, php-format
@@ -100,12 +101,12 @@ msgstr "%d minutter siden"
#: template.php:106
msgid "1 hour ago"
-msgstr ""
+msgstr "1 time siden"
#: template.php:107
#, php-format
msgid "%d hours ago"
-msgstr ""
+msgstr "%d timer siden"
#: template.php:108
msgid "today"
@@ -127,7 +128,7 @@ msgstr "forrige måned"
#: template.php:112
#, php-format
msgid "%d months ago"
-msgstr ""
+msgstr "%d måneder siden"
#: template.php:113
msgid "last year"
@@ -153,4 +154,4 @@ msgstr "versjonssjekk er avslått"
#: vcategories.php:188 vcategories.php:249
#, php-format
msgid "Could not find category \"%s\""
-msgstr ""
+msgstr "Kunne ikke finne kategori \"%s\""
diff --git a/l10n/nb_NO/settings.po b/l10n/nb_NO/settings.po
index f95fe62e3ea..36c3224748b 100644
--- a/l10n/nb_NO/settings.po
+++ b/l10n/nb_NO/settings.po
@@ -7,6 +7,7 @@
# Arvid Nornes , 2012.
# Christer Eriksson , 2012.
# Daniel , 2012.
+# , 2012.
# , 2012.
# , 2012.
# , 2012.
@@ -14,8 +15,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: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n"
"MIME-Version: 1.0\n"
@@ -124,11 +125,11 @@ msgstr ""
#: templates/help.php:3
msgid "User Documentation"
-msgstr ""
+msgstr "Brukerdokumentasjon"
#: templates/help.php:4
msgid "Administrator Documentation"
-msgstr ""
+msgstr "Administratordokumentasjon"
#: templates/help.php:6
msgid "Online Documentation"
@@ -144,30 +145,30 @@ msgstr ""
#: templates/help.php:11
msgid "Commercial Support"
-msgstr ""
+msgstr "Kommersiell støtte"
#: templates/personal.php:8
#, php-format
msgid "You have used %s of the available %s"
-msgstr ""
+msgstr "Du har brukt %s av tilgjengelig %s"
#: templates/personal.php:12
msgid "Clients"
-msgstr ""
+msgstr "Klienter"
#: templates/personal.php:13
msgid "Download Desktop Clients"
-msgstr ""
+msgstr "Last ned skrivebordsklienter"
#: templates/personal.php:14
msgid "Download Android Client"
-msgstr ""
+msgstr "Last ned Android-klient"
#: templates/personal.php:15
msgid "Download iOS Client"
-msgstr ""
+msgstr "Last ned 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 "Passord"
@@ -217,7 +218,7 @@ msgstr "Bidra til oversettelsen"
#: 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"
@@ -225,7 +226,7 @@ msgstr ""
#: templates/personal.php:63
msgid "Version"
-msgstr ""
+msgstr "Versjon"
#: templates/personal.php:65
msgid ""
@@ -237,11 +238,11 @@ msgid ""
"License\">AGPL."
msgstr ""
-#: 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"
@@ -250,21 +251,29 @@ msgid "Create"
msgstr "Opprett"
#: templates/users.php:35
-msgid "Default Quota"
-msgstr "Standard Kvote"
+msgid "Default Storage"
+msgstr ""
+
+#: templates/users.php:42 templates/users.php:138
+msgid "Unlimited"
+msgstr ""
-#: templates/users.php:55 templates/users.php:138
+#: templates/users.php:60 templates/users.php:153
msgid "Other"
msgstr "Annet"
-#: templates/users.php:80 templates/users.php:112
+#: templates/users.php:85 templates/users.php:117
msgid "Group Admin"
msgstr "Gruppeadministrator"
-#: templates/users.php:82
-msgid "Quota"
-msgstr "Kvote"
+#: templates/users.php:87
+msgid "Storage"
+msgstr ""
+
+#: templates/users.php:133
+msgid "Default"
+msgstr ""
-#: templates/users.php:146
+#: templates/users.php:161
msgid "Delete"
msgstr "Slett"
diff --git a/l10n/nb_NO/user_webdavauth.po b/l10n/nb_NO/user_webdavauth.po
index c3f368c7777..9d7d3571927 100644
--- a/l10n/nb_NO/user_webdavauth.po
+++ b/l10n/nb_NO/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-30 00:04+0100\n"
+"PO-Revision-Date: 2012-12-29 16:42+0000\n"
+"Last-Translator: espenbye \n"
"Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -19,7 +20,7 @@ msgstr ""
#: templates/settings.php:4
msgid "URL: http://"
-msgstr ""
+msgstr "URL: http://"
#: templates/settings.php:6
msgid ""
diff --git a/l10n/nl/core.po b/l10n/nl/core.po
index 4dd97cac611..322c4e3bbf4 100644
--- a/l10n/nl/core.po
+++ b/l10n/nl/core.po
@@ -21,9 +21,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-12 23:17+0000\n"
-"Last-Translator: I Robot \n"
+"POT-Creation-Date: 2012-12-21 00:10+0100\n"
+"PO-Revision-Date: 2012-12-20 17:28+0000\n"
+"Last-Translator: André Koot \n"
"Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -34,26 +34,26 @@ msgstr ""
#: ajax/share.php:84
#, php-format
msgid "User %s shared a file with you"
-msgstr ""
+msgstr "Gebruiker %s deelde een bestand met u"
#: ajax/share.php:86
#, php-format
msgid "User %s shared a folder with you"
-msgstr ""
+msgstr "Gebruiker %s deelde een map met u"
#: ajax/share.php:88
#, php-format
msgid ""
"User %s shared the file \"%s\" with you. It is available for download here: "
"%s"
-msgstr ""
+msgstr "Gebruiker %s deelde bestand \"%s\" met u. Het is hier te downloaden: %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 "Gebruiker %s deelde de map \"%s\" met u. De map is hier beschikbaar voor download: %s"
#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25
msgid "Category type not provided."
@@ -175,8 +175,8 @@ msgid "The object type is not specified."
msgstr "Het object type is niet gespecificeerd."
#: 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 "Fout"
@@ -188,7 +188,7 @@ msgstr "De app naam is niet gespecificeerd."
msgid "The required file {file} is not installed!"
msgstr "Het vereiste bestand {file} is niet geïnstalleerd!"
-#: js/share.js:124 js/share.js:581
+#: js/share.js:124 js/share.js:594
msgid "Error while sharing"
msgstr "Fout tijdens het delen"
@@ -216,22 +216,22 @@ msgstr "Deel met"
msgid "Share with link"
msgstr "Deel met link"
-#: js/share.js:164
+#: js/share.js:166
msgid "Password protect"
msgstr "Wachtwoord beveiliging"
-#: 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 "Wachtwoord"
#: js/share.js:172
msgid "Email link to person"
-msgstr ""
+msgstr "E-mail link naar persoon"
#: js/share.js:173
msgid "Send"
-msgstr ""
+msgstr "Versturen"
#: js/share.js:177
msgid "Set expiration date"
@@ -285,25 +285,25 @@ msgstr "verwijderen"
msgid "share"
msgstr "deel"
-#: js/share.js:353 js/share.js:528 js/share.js:530
+#: js/share.js:356 js/share.js:541
msgid "Password protected"
msgstr "Wachtwoord beveiligd"
-#: js/share.js:541
+#: js/share.js:554
msgid "Error unsetting expiration date"
msgstr "Fout tijdens het verwijderen van de verval datum"
-#: js/share.js:553
+#: js/share.js:566
msgid "Error setting expiration date"
msgstr "Fout tijdens het instellen van de vervaldatum"
-#: js/share.js:568
+#: js/share.js:581
msgid "Sending ..."
-msgstr ""
+msgstr "Versturen ..."
-#: js/share.js:579
+#: js/share.js:592
msgid "Email sent"
-msgstr ""
+msgstr "E-mail verzonden"
#: lostpassword/controller.php:47
msgid "ownCloud password reset"
@@ -325,8 +325,8 @@ msgstr "Reset e-mail verstuurd."
msgid "Request failed!"
msgstr "Verzoek mislukt!"
-#: 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 "Gebruikersnaam"
@@ -415,44 +415,44 @@ msgstr "Uw data is waarschijnlijk toegankelijk vanaf net internet. Het .htacces
msgid "Create an