diff --git a/apps/files/ajax/newfile.php b/apps/files/ajax/newfile.php index 495c8212163..c2d65d718c5 100644 --- a/apps/files/ajax/newfile.php +++ b/apps/files/ajax/newfile.php @@ -66,8 +66,10 @@ if($source) { $target=$dir.'/'.$filename; $result=OC_Filesystem::file_put_contents($target, $sourceStream); if($result) { - $mime=OC_Filesystem::getMimetype($target); - $eventSource->send('success', array('mime'=>$mime, 'size'=>OC_Filesystem::filesize($target))); + $meta = OC_FileCache::get($target); + $mime=$meta['mimetype']; + $id = OC_FileCache::getId($target); + $eventSource->send('success', array('mime'=>$mime, 'size'=>OC_Filesystem::filesize($target), 'id' => $id)); } else { $eventSource->send('error', "Error while downloading ".$source. ' to '.$target); } @@ -76,11 +78,15 @@ if($source) { } else { if($content) { if(OC_Filesystem::file_put_contents($dir.'/'.$filename, $content)) { - OCP\JSON::success(array("data" => array('content'=>$content))); + $meta = OC_FileCache::get($dir.'/'.$filename); + $id = OC_FileCache::getId($dir.'/'.$filename); + OCP\JSON::success(array("data" => array('content'=>$content, 'id' => $id))); exit(); } }elseif(OC_Files::newFile($dir, $filename, 'file')) { - OCP\JSON::success(array("data" => array('content'=>$content))); + $meta = OC_FileCache::get($dir.'/'.$filename); + $id = OC_FileCache::getId($dir.'/'.$filename); + OCP\JSON::success(array("data" => array('content'=>$content, 'id' => $id))); exit(); } } diff --git a/apps/files/ajax/upload.php b/apps/files/ajax/upload.php index fb3e277a215..a4dcd80a2e2 100644 --- a/apps/files/ajax/upload.php +++ b/apps/files/ajax/upload.php @@ -50,7 +50,8 @@ if(strpos($dir, '..') === false) { $target = OCP\Files::buildNotExistingFileName(stripslashes($dir), $files['name'][$i]); if(is_uploaded_file($files['tmp_name'][$i]) and OC_Filesystem::fromTmpFile($files['tmp_name'][$i], $target)) { $meta = OC_FileCache::get($target); - $result[]=array( "status" => "success", 'mime'=>$meta['mimetype'],'size'=>$meta['size'],'name'=>basename($target)); + $id = OC_FileCache::getId($target); + $result[]=array( "status" => "success", 'mime'=>$meta['mimetype'],'size'=>$meta['size'], 'id'=>$id, 'name'=>basename($target)); } } OCP\JSON::encodedPrint($result); diff --git a/apps/files/appinfo/update.php b/apps/files/appinfo/update.php index 35008e345b9..d963b754772 100644 --- a/apps/files/appinfo/update.php +++ b/apps/files/appinfo/update.php @@ -1,14 +1,16 @@ execute(); - while( $row = $result->fetchRow()) { - $query = OC_DB::prepare( 'UPDATE `*PREFIX*properties` SET `propertyname` = ? WHERE `userid` = ? AND `propertypath` = ?' ); - $query->execute( array( preg_replace("/^{.*}/", "", $row["propertyname"]),$row["userid"], $row["propertypath"] )); - } +// fix webdav properties,add namespace in front of the property, update for OC4.5 +$installedVersion=OCP\Config::getAppValue('files', 'installed_version'); +if (version_compare($installedVersion, '1.1.6', '<')) { + $query = OC_DB::prepare( "SELECT propertyname, propertypath, userid FROM `*PREFIX*properties`" ); + $result = $query->execute(); + while( $row = $result->fetchRow()){ + if ( $row["propertyname"][0] != '{' ) { + $query = OC_DB::prepare( 'UPDATE *PREFIX*properties SET propertyname = ? WHERE userid = ? AND propertypath = ?' ); + $query->execute( array( '{DAV:}' + $row["propertyname"], $row["userid"], $row["propertypath"] )); + } + } } //update from OC 3 diff --git a/apps/files/appinfo/version b/apps/files/appinfo/version index e25d8d9f357..0664a8fd291 100644 --- a/apps/files/appinfo/version +++ b/apps/files/appinfo/version @@ -1 +1 @@ -1.1.5 +1.1.6 diff --git a/apps/files/css/files.css b/apps/files/css/files.css index 566ae39f92c..db8b8ff57ba 100644 --- a/apps/files/css/files.css +++ b/apps/files/css/files.css @@ -3,7 +3,7 @@ See the COPYING-README file. */ /* FILE MENU */ -.actions { padding:.3em; float:left; height:2em; width:10em; } +.actions { padding:.3em; float:left; height:2em; } .actions input, .actions button, .actions .button { margin:0; } #file_menu { right:0; position:absolute; top:0; } #file_menu a { display:block; float:left; background-image:none; text-decoration:none; } diff --git a/apps/files/js/files.js b/apps/files/js/files.js index ec2f159b4ca..0c00fe8c922 100644 --- a/apps/files/js/files.js +++ b/apps/files/js/files.js @@ -336,7 +336,7 @@ $(document).ready(function() { if(response[0] != undefined && response[0].status == 'success') { var file=response[0]; delete uploadingFiles[file.name]; - $('tr').filterAttr('data-file',file.name).data('mime',file.mime); + $('tr').filterAttr('data-file',file.name).data('mime',file.mime).data('id',file.id); var size = $('tr').filterAttr('data-file',file.name).find('td.filesize').text(); if(size==t('files','Pending')){ $('tr').filterAttr('data-file',file.name).find('td.filesize').text(file.size); @@ -366,7 +366,7 @@ $(document).ready(function() { if(response[0] != undefined && response[0].status == 'success') { var file=response[0]; delete uploadingFiles[file.name]; - $('tr').filterAttr('data-file',file.name).data('mime',file.mime); + $('tr').filterAttr('data-file',file.name).data('mime',file.mime).data('id',file.id); var size = $('tr').filterAttr('data-file',file.name).find('td.filesize').text(); if(size==t('files','Pending')){ $('tr').filterAttr('data-file',file.name).find('td.filesize').text(file.size); @@ -512,7 +512,7 @@ $(document).ready(function() { var date=new Date(); FileList.addFile(name,0,date,false,hidden); var tr=$('tr').filterAttr('data-file',name); - tr.data('mime','text/plain'); + tr.data('mime','text/plain').data('id',result.data.id); getMimeIcon('text/plain',function(path){ tr.find('td.filename').attr('style','background-image:url('+path+')'); }); @@ -560,11 +560,12 @@ $(document).ready(function() { eventSource.listen('success',function(data){ var mime=data.mime; var size=data.size; + var id=data.id; $('#uploadprogressbar').fadeOut(); var date=new Date(); FileList.addFile(localName,size,date,false,hidden); var tr=$('tr').filterAttr('data-file',localName); - tr.data('mime',mime); + tr.data('mime',mime).data('id',id); getMimeIcon(mime,function(path){ tr.find('td.filename').attr('style','background-image:url('+path+')'); }); diff --git a/apps/files/l10n/ar.php b/apps/files/l10n/ar.php index 52480ce7ff8..a5530851d2e 100644 --- a/apps/files/l10n/ar.php +++ b/apps/files/l10n/ar.php @@ -7,6 +7,7 @@ "Missing a temporary folder" => "المجلد المؤقت غير موجود", "Files" => "الملفات", "Delete" => "محذوف", +"Name" => "الاسم", "Size" => "حجم", "Modified" => "معدل", "Maximum upload size" => "الحد الأقصى لحجم الملفات التي يمكن رفعها", @@ -15,7 +16,6 @@ "Folder" => "مجلد", "Upload" => "إرفع", "Nothing in here. Upload something!" => "لا يوجد شيء هنا. إرفع بعض الملفات!", -"Name" => "الاسم", "Download" => "تحميل", "Upload too large" => "حجم الترفيع أعلى من المسموح", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "حجم الملفات التي تريد ترفيعها أعلى من المسموح على الخادم." diff --git a/apps/files/l10n/bg_BG.php b/apps/files/l10n/bg_BG.php index 624e08959fe..86f26a1798c 100644 --- a/apps/files/l10n/bg_BG.php +++ b/apps/files/l10n/bg_BG.php @@ -11,6 +11,7 @@ "Upload Error" => "Грешка при качване", "Upload cancelled." => "Качването е отменено.", "Invalid name, '/' is not allowed." => "Неправилно име – \"/\" не е позволено.", +"Name" => "Име", "Size" => "Размер", "Modified" => "Променено", "folder" => "папка", @@ -25,7 +26,6 @@ "Upload" => "Качване", "Cancel upload" => "Отказване на качването", "Nothing in here. Upload something!" => "Няма нищо, качете нещо!", -"Name" => "Име", "Share" => "Споделяне", "Download" => "Изтегляне", "Upload too large" => "Файлът е прекалено голям", diff --git a/apps/files/l10n/ca.php b/apps/files/l10n/ca.php index 97eccd5ee4c..e86c1960753 100644 --- a/apps/files/l10n/ca.php +++ b/apps/files/l10n/ca.php @@ -27,6 +27,7 @@ "Invalid name, '/' is not allowed." => "El nom no és vàlid, no es permet '/'.", "files scanned" => "arxius escanejats", "error while scanning" => "error durant l'escaneig", +"Name" => "Nom", "Size" => "Mida", "Modified" => "Modificat", "folder" => "carpeta", @@ -48,7 +49,6 @@ "Upload" => "Puja", "Cancel upload" => "Cancel·la la pujada", "Nothing in here. Upload something!" => "Res per aquí. Pugeu alguna cosa!", -"Name" => "Nom", "Share" => "Comparteix", "Download" => "Baixa", "Upload too large" => "La pujada és massa gran", diff --git a/apps/files/l10n/cs_CZ.php b/apps/files/l10n/cs_CZ.php index 468ed4fdfe8..1ade9e618c4 100644 --- a/apps/files/l10n/cs_CZ.php +++ b/apps/files/l10n/cs_CZ.php @@ -28,6 +28,7 @@ "Invalid name, '/' is not allowed." => "Neplatný název, znak '/' není povolen", "files scanned" => "soubory prohledány", "error while scanning" => "chyba při prohledávání", +"Name" => "Název", "Size" => "Velikost", "Modified" => "Změněno", "folder" => "složka", @@ -49,7 +50,6 @@ "Upload" => "Odeslat", "Cancel upload" => "Zrušit odesílání", "Nothing in here. Upload something!" => "Žádný obsah. Nahrajte něco.", -"Name" => "Název", "Share" => "Sdílet", "Download" => "Stáhnout", "Upload too large" => "Odeslaný soubor je příliš velký", diff --git a/apps/files/l10n/da.php b/apps/files/l10n/da.php index de0df6a26f0..4a1372de529 100644 --- a/apps/files/l10n/da.php +++ b/apps/files/l10n/da.php @@ -9,6 +9,7 @@ "Files" => "Filer", "Unshare" => "Fjern deling", "Delete" => "Slet", +"Rename" => "Omdøb", "already exists" => "findes allerede", "replace" => "erstat", "suggest name" => "foreslå navn", @@ -25,6 +26,9 @@ "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 name, '/' is not allowed." => "Ugyldigt navn, '/' er ikke tilladt.", +"files scanned" => "filer scannet", +"error while scanning" => "fejl under scanning", +"Name" => "Navn", "Size" => "Størrelse", "Modified" => "Ændret", "folder" => "mappe", @@ -46,7 +50,6 @@ "Upload" => "Upload", "Cancel upload" => "Fortryd upload", "Nothing in here. Upload something!" => "Her er tomt. Upload noget!", -"Name" => "Navn", "Share" => "Del", "Download" => "Download", "Upload too large" => "Upload for stor", diff --git a/apps/files/l10n/de.php b/apps/files/l10n/de.php index 5ef991cbea1..8b3f2857298 100644 --- a/apps/files/l10n/de.php +++ b/apps/files/l10n/de.php @@ -28,6 +28,7 @@ "Invalid name, '/' is not allowed." => "Ungültiger Name: \"/\" ist nicht erlaubt.", "files scanned" => "Dateien gescannt", "error while scanning" => "Fehler beim Scannen", +"Name" => "Name", "Size" => "Größe", "Modified" => "Bearbeitet", "folder" => "Ordner", @@ -45,11 +46,10 @@ "New" => "Neu", "Text file" => "Textdatei", "Folder" => "Ordner", -"From url" => "Von der URL", +"From url" => "URL", "Upload" => "Hochladen", "Cancel upload" => "Upload abbrechen", "Nothing in here. Upload something!" => "Alles leer. Lade etwas hoch!", -"Name" => "Name", "Share" => "Teilen", "Download" => "Herunterladen", "Upload too large" => "Upload zu groß", diff --git a/apps/files/l10n/el.php b/apps/files/l10n/el.php index 404b580ca16..1206f7f0f48 100644 --- a/apps/files/l10n/el.php +++ b/apps/files/l10n/el.php @@ -27,6 +27,7 @@ "Invalid name, '/' is not allowed." => "Μη έγκυρο όνομα, το '/' δεν επιτρέπεται.", "files scanned" => "αρχεία σαρώθηκαν", "error while scanning" => "σφάλμα κατά την ανίχνευση", +"Name" => "Όνομα", "Size" => "Μέγεθος", "Modified" => "Τροποποιήθηκε", "folder" => "φάκελος", @@ -48,7 +49,6 @@ "Upload" => "Μεταφόρτωση", "Cancel upload" => "Ακύρωση μεταφόρτωσης", "Nothing in here. Upload something!" => "Δεν υπάρχει τίποτα εδώ. Ανέβασε κάτι!", -"Name" => "Όνομα", "Share" => "Διαμοιρασμός", "Download" => "Λήψη", "Upload too large" => "Πολύ μεγάλο αρχείο προς μεταφόρτωση", diff --git a/apps/files/l10n/eo.php b/apps/files/l10n/eo.php index 95df1363ff1..03d44587448 100644 --- a/apps/files/l10n/eo.php +++ b/apps/files/l10n/eo.php @@ -25,6 +25,7 @@ "Upload cancelled." => "La alŝuto nuliĝis.", "File upload is in progress. Leaving the page now will cancel the upload." => "Dosieralŝuto plenumiĝas. Lasi la paĝon nun nuligus la alŝuton.", "Invalid name, '/' is not allowed." => "Nevalida nomo, “/” ne estas permesata.", +"Name" => "Nomo", "Size" => "Grando", "Modified" => "Modifita", "folder" => "dosierujo", @@ -46,7 +47,6 @@ "Upload" => "Alŝuti", "Cancel upload" => "Nuligi alŝuton", "Nothing in here. Upload something!" => "Nenio estas ĉi tie. Alŝutu ion!", -"Name" => "Nomo", "Share" => "Kunhavigi", "Download" => "Elŝuti", "Upload too large" => "Elŝuto tro larĝa", diff --git a/apps/files/l10n/es.php b/apps/files/l10n/es.php index 5c2a0e74f49..7e92576fe11 100644 --- a/apps/files/l10n/es.php +++ b/apps/files/l10n/es.php @@ -9,6 +9,7 @@ "Files" => "Archivos", "Unshare" => "Dejar de compartir", "Delete" => "Eliminar", +"Rename" => "Renombrar", "already exists" => "ya existe", "replace" => "reemplazar", "suggest name" => "sugerir nombre", @@ -25,6 +26,9 @@ "Upload cancelled." => "Subida cancelada.", "File upload is in progress. Leaving the page now will cancel the upload." => "La subida del archivo está en proceso. Salir de la página ahora cancelará la subida.", "Invalid name, '/' is not allowed." => "Nombre no válido, '/' no está permitido.", +"files scanned" => "archivos escaneados", +"error while scanning" => "error escaneando", +"Name" => "Nombre", "Size" => "Tamaño", "Modified" => "Modificado", "folder" => "carpeta", @@ -46,11 +50,10 @@ "Upload" => "Subir", "Cancel upload" => "Cancelar subida", "Nothing in here. Upload something!" => "Aquí no hay nada. ¡Sube algo!", -"Name" => "Nombre", "Share" => "Compartir", "Download" => "Descargar", "Upload too large" => "El archivo es demasiado grande", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Los archivos que estás intentando subir sobrepasan el tamaño máximo permitido por este servidor.", "Files are being scanned, please wait." => "Se están escaneando los archivos, por favor espere.", -"Current scanning" => "Escaneo actual" +"Current scanning" => "Ahora escaneando" ); diff --git a/apps/files/l10n/es_AR.php b/apps/files/l10n/es_AR.php new file mode 100644 index 00000000000..f3290ef4e3c --- /dev/null +++ b/apps/files/l10n/es_AR.php @@ -0,0 +1,59 @@ + "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 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 intentás subir sobrepasa el tamaño definido por la variable MAX_FILE_SIZE especificada en el formulario HTML", +"The uploaded file was only partially uploaded" => "El archivo que intentás subir solo se subió parcialmente", +"No file was uploaded" => "El archivo no fue subido", +"Missing a temporary folder" => "Falta un directorio temporal", +"Failed to write to disk" => "La escritura en disco falló", +"Files" => "Archivos", +"Unshare" => "Dejar de compartir", +"Delete" => "Borrar", +"Rename" => "cambiar nombre", +"already exists" => "ya existe", +"replace" => "reemplazar", +"suggest name" => "sugerir nombre", +"cancel" => "cancelar", +"replaced" => "reemplazado", +"undo" => "deshacer", +"with" => "con", +"unshared" => "no compartido", +"deleted" => "borrado", +"generating ZIP-file, it may take some time." => "generando un archivo ZIP, puede llevar un tiempo.", +"Unable to upload your file as it is a directory or has 0 bytes" => "No fue posible subir tu archivo porque es un directorio o su tamaño es 0 bytes", +"Upload Error" => "Error al subir el archivo", +"Pending" => "Pendiente", +"Upload cancelled." => "La subida fue cancelada", +"File upload is in progress. Leaving the page now will cancel the upload." => "La subida del archivo está en proceso. Si salís de la página ahora, la subida se cancelará.", +"Invalid name, '/' is not allowed." => "Nombre no válido, '/' no está permitido.", +"files scanned" => "archivos escaneados", +"error while scanning" => "error mientras se escaneaba", +"Name" => "Nombre", +"Size" => "Tamaño", +"Modified" => "Modificado", +"folder" => "carpeta", +"folders" => "carpetas", +"file" => "archivo", +"files" => "archivos", +"File handling" => "Tratamiento de archivos", +"Maximum upload size" => "Tamaño máximo de subida", +"max. possible: " => "máx. posible:", +"Needed for multi-file and folder downloads." => "Se necesita para descargas multi-archivo y de carpetas", +"Enable ZIP-download" => "Habilitar descarga en formato ZIP", +"0 is unlimited" => "0 significa ilimitado", +"Maximum input size for ZIP files" => "Tamaño máximo para archivos ZIP de entrada", +"Save" => "Guardar", +"New" => "Nuevo", +"Text file" => "Archivo de texto", +"Folder" => "Carpeta", +"From url" => "Desde la URL", +"Upload" => "Subir", +"Cancel upload" => "Cancelar subida", +"Nothing in here. Upload something!" => "Aquí no hay nada. ¡Subí contenido!", +"Share" => "Compartir", +"Download" => "Descargar", +"Upload too large" => "El archivo es demasiado grande", +"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Los archivos que intentás subir sobrepasan el tamaño máximo ", +"Files are being scanned, please wait." => "Se están escaneando los archivos, por favor espere.", +"Current scanning" => "Escaneo actual" +); diff --git a/apps/files/l10n/et_EE.php b/apps/files/l10n/et_EE.php index 88e91719282..f2721b194e2 100644 --- a/apps/files/l10n/et_EE.php +++ b/apps/files/l10n/et_EE.php @@ -25,6 +25,7 @@ "Upload cancelled." => "Üleslaadimine tühistati.", "File upload is in progress. Leaving the page now will cancel the upload." => "Faili üleslaadimine on töös. Lehelt lahkumine katkestab selle üleslaadimise.", "Invalid name, '/' is not allowed." => "Vigane nimi, '/' pole lubatud.", +"Name" => "Nimi", "Size" => "Suurus", "Modified" => "Muudetud", "folder" => "kaust", @@ -46,7 +47,6 @@ "Upload" => "Lae üles", "Cancel upload" => "Tühista üleslaadimine", "Nothing in here. Upload something!" => "Siin pole midagi. Lae midagi üles!", -"Name" => "Nimi", "Share" => "Jaga", "Download" => "Lae alla", "Upload too large" => "Üleslaadimine on liiga suur", diff --git a/apps/files/l10n/eu.php b/apps/files/l10n/eu.php index fd8ec94895e..9c504880008 100644 --- a/apps/files/l10n/eu.php +++ b/apps/files/l10n/eu.php @@ -27,6 +27,7 @@ "Invalid name, '/' is not allowed." => "Baliogabeko izena, '/' ezin da erabili. ", "files scanned" => "fitxategiak eskaneatuta", "error while scanning" => "errore bat egon da eskaneatzen zen bitartean", +"Name" => "Izena", "Size" => "Tamaina", "Modified" => "Aldatuta", "folder" => "karpeta", @@ -48,7 +49,6 @@ "Upload" => "Igo", "Cancel upload" => "Ezeztatu igoera", "Nothing in here. Upload something!" => "Ez dago ezer. Igo zerbait!", -"Name" => "Izena", "Share" => "Elkarbanatu", "Download" => "Deskargatu", "Upload too large" => "Igotakoa handiegia da", diff --git a/apps/files/l10n/fa.php b/apps/files/l10n/fa.php index e6ddd50f917..979e58c5578 100644 --- a/apps/files/l10n/fa.php +++ b/apps/files/l10n/fa.php @@ -21,6 +21,7 @@ "Pending" => "در انتظار", "Upload cancelled." => "بار گذاری لغو شد", "Invalid name, '/' is not allowed." => "نام نامناسب '/' غیرفعال است", +"Name" => "نام", "Size" => "اندازه", "Modified" => "تغییر یافته", "folder" => "پوشه", @@ -41,7 +42,6 @@ "Upload" => "بارگذاری", "Cancel upload" => "متوقف کردن بار گذاری", "Nothing in here. Upload something!" => "اینجا هیچ چیز نیست.", -"Name" => "نام", "Share" => "به اشتراک گذاری", "Download" => "بارگیری", "Upload too large" => "حجم بارگذاری بسیار زیاد است", diff --git a/apps/files/l10n/fi_FI.php b/apps/files/l10n/fi_FI.php index 57aeaebc442..1b9cee5ebb3 100644 --- a/apps/files/l10n/fi_FI.php +++ b/apps/files/l10n/fi_FI.php @@ -24,6 +24,7 @@ "Upload cancelled." => "Lähetys peruttu.", "File upload is in progress. Leaving the page now will cancel the upload." => "Tiedoston lähetys on meneillään. Sivulta poistuminen nyt peruu tiedoston lähetyksen.", "Invalid name, '/' is not allowed." => "Virheellinen nimi, merkki '/' ei ole sallittu.", +"Name" => "Nimi", "Size" => "Koko", "Modified" => "Muutettu", "folder" => "kansio", @@ -45,7 +46,6 @@ "Upload" => "Lähetä", "Cancel upload" => "Peru lähetys", "Nothing in here. Upload something!" => "Täällä ei ole mitään. Lähetä tänne jotakin!", -"Name" => "Nimi", "Share" => "Jaa", "Download" => "Lataa", "Upload too large" => "Lähetettävä tiedosto on liian suuri", diff --git a/apps/files/l10n/fr.php b/apps/files/l10n/fr.php index c0f08b118d5..0e874bcf354 100644 --- a/apps/files/l10n/fr.php +++ b/apps/files/l10n/fr.php @@ -9,6 +9,7 @@ "Files" => "Fichiers", "Unshare" => "Ne plus partager", "Delete" => "Supprimer", +"Rename" => "Renommer", "already exists" => "existe déjà", "replace" => "remplacer", "suggest name" => "Suggérer un nom", @@ -25,6 +26,9 @@ "Upload cancelled." => "Chargement annulé.", "File upload is in progress. Leaving the page now will cancel the upload." => "L'envoi du fichier est en cours. Quitter cette page maintenant annulera l'envoi du fichier.", "Invalid name, '/' is not allowed." => "Nom invalide, '/' n'est pas autorisé.", +"files scanned" => "fichiers indexés", +"error while scanning" => "erreur lors de l'indexation", +"Name" => "Nom", "Size" => "Taille", "Modified" => "Modifié", "folder" => "dossier", @@ -46,7 +50,6 @@ "Upload" => "Envoyer", "Cancel upload" => "Annuler l'envoi", "Nothing in here. Upload something!" => "Il n'y a rien ici ! Envoyez donc quelque chose :)", -"Name" => "Nom", "Share" => "Partager", "Download" => "Téléchargement", "Upload too large" => "Fichier trop volumineux", diff --git a/apps/files/l10n/gl.php b/apps/files/l10n/gl.php index acf136d82f6..77e87ee282c 100644 --- a/apps/files/l10n/gl.php +++ b/apps/files/l10n/gl.php @@ -27,6 +27,7 @@ "Invalid name, '/' is not allowed." => "Nome non válido, '/' non está permitido.", "files scanned" => "ficheiros analizados", "error while scanning" => "erro mentras analizaba", +"Name" => "Nome", "Size" => "Tamaño", "Modified" => "Modificado", "folder" => "cartafol", @@ -48,7 +49,6 @@ "Upload" => "Enviar", "Cancel upload" => "Cancelar subida", "Nothing in here. Upload something!" => "Nada por aquí. Envíe algo.", -"Name" => "Nome", "Share" => "Compartir", "Download" => "Descargar", "Upload too large" => "Envío demasiado grande", diff --git a/apps/files/l10n/he.php b/apps/files/l10n/he.php index e7ab4a524bc..84c669cba31 100644 --- a/apps/files/l10n/he.php +++ b/apps/files/l10n/he.php @@ -15,6 +15,7 @@ "Pending" => "ממתין", "Upload cancelled." => "ההעלאה בוטלה.", "Invalid name, '/' is not allowed." => "שם לא חוקי, '/' אסור לשימוש.", +"Name" => "שם", "Size" => "גודל", "Modified" => "זמן שינוי", "folder" => "תקיה", @@ -35,7 +36,6 @@ "Upload" => "העלאה", "Cancel upload" => "ביטול ההעלאה", "Nothing in here. Upload something!" => "אין כאן שום דבר. אולי ברצונך להעלות משהו?", -"Name" => "שם", "Share" => "שיתוף", "Download" => "הורדה", "Upload too large" => "העלאה גדולה מידי", diff --git a/apps/files/l10n/hr.php b/apps/files/l10n/hr.php index b05b7c568b4..f3b26999e8f 100644 --- a/apps/files/l10n/hr.php +++ b/apps/files/l10n/hr.php @@ -21,6 +21,7 @@ "Pending" => "U tijeku", "Upload cancelled." => "Slanje poništeno.", "Invalid name, '/' is not allowed." => "Neispravan naziv, znak '/' nije dozvoljen.", +"Name" => "Naziv", "Size" => "Veličina", "Modified" => "Zadnja promjena", "folder" => "mapa", @@ -41,7 +42,6 @@ "Upload" => "Pošalji", "Cancel upload" => "Prekini upload", "Nothing in here. Upload something!" => "Nema ničega u ovoj mapi. Pošalji nešto!", -"Name" => "Naziv", "Share" => "podjeli", "Download" => "Preuzmi", "Upload too large" => "Prijenos je preobiman", diff --git a/apps/files/l10n/hu_HU.php b/apps/files/l10n/hu_HU.php index 95b3c57ce11..0d44e6e157a 100644 --- a/apps/files/l10n/hu_HU.php +++ b/apps/files/l10n/hu_HU.php @@ -21,6 +21,7 @@ "Pending" => "Folyamatban", "Upload cancelled." => "Feltöltés megszakítva", "Invalid name, '/' is not allowed." => "Érvénytelen név, a '/' nem megengedett", +"Name" => "Név", "Size" => "Méret", "Modified" => "Módosítva", "folder" => "mappa", @@ -41,7 +42,6 @@ "Upload" => "Feltöltés", "Cancel upload" => "Feltöltés megszakítása", "Nothing in here. Upload something!" => "Töltsön fel egy fájlt.", -"Name" => "Név", "Share" => "Megosztás", "Download" => "Letöltés", "Upload too large" => "Feltöltés túl nagy", diff --git a/apps/files/l10n/ia.php b/apps/files/l10n/ia.php index f9205cb5f64..21a0bb52374 100644 --- a/apps/files/l10n/ia.php +++ b/apps/files/l10n/ia.php @@ -3,6 +3,7 @@ "No file was uploaded" => "Nulle file esseva incargate", "Files" => "Files", "Delete" => "Deler", +"Name" => "Nomine", "Size" => "Dimension", "Modified" => "Modificate", "Maximum upload size" => "Dimension maxime de incargamento", @@ -11,7 +12,6 @@ "Folder" => "Dossier", "Upload" => "Incargar", "Nothing in here. Upload something!" => "Nihil hic. Incarga alcun cosa!", -"Name" => "Nomine", "Download" => "Discargar", "Upload too large" => "Incargamento troppo longe" ); diff --git a/apps/files/l10n/id.php b/apps/files/l10n/id.php index 351d0641388..07bccdc597d 100644 --- a/apps/files/l10n/id.php +++ b/apps/files/l10n/id.php @@ -21,6 +21,7 @@ "Pending" => "Menunggu", "Upload cancelled." => "Pengunggahan dibatalkan.", "Invalid name, '/' is not allowed." => "Kesalahan nama, '/' tidak diijinkan.", +"Name" => "Nama", "Size" => "Ukuran", "Modified" => "Dimodifikasi", "folder" => "folder", @@ -41,7 +42,6 @@ "Upload" => "Unggah", "Cancel upload" => "Batal mengunggah", "Nothing in here. Upload something!" => "Tidak ada apa-apa di sini. Unggah sesuatu!", -"Name" => "Nama", "Share" => "Bagikan", "Download" => "Unduh", "Upload too large" => "Unggahan terlalu besar", diff --git a/apps/files/l10n/it.php b/apps/files/l10n/it.php index 2a92d05ec3a..4cb2daf6971 100644 --- a/apps/files/l10n/it.php +++ b/apps/files/l10n/it.php @@ -28,6 +28,7 @@ "Invalid name, '/' is not allowed." => "Nome non valido", "files scanned" => "file analizzati", "error while scanning" => "errore durante la scansione", +"Name" => "Nome", "Size" => "Dimensione", "Modified" => "Modificato", "folder" => "cartella", @@ -49,7 +50,6 @@ "Upload" => "Carica", "Cancel upload" => "Annulla invio", "Nothing in here. Upload something!" => "Non c'è niente qui. Carica qualcosa!", -"Name" => "Nome", "Share" => "Condividi", "Download" => "Scarica", "Upload too large" => "Il file caricato è troppo grande", diff --git a/apps/files/l10n/ja_JP.php b/apps/files/l10n/ja_JP.php index d6fc942069c..f0d016ec9c4 100644 --- a/apps/files/l10n/ja_JP.php +++ b/apps/files/l10n/ja_JP.php @@ -9,7 +9,7 @@ "Files" => "ファイル", "Unshare" => "共有しない", "Delete" => "削除", -"Rename" => "名称変更", +"Rename" => "名前の変更", "already exists" => "既に存在します", "replace" => "置き換え", "suggest name" => "推奨名称", @@ -28,6 +28,7 @@ "Invalid name, '/' is not allowed." => "無効な名前、'/' は使用できません。", "files scanned" => "ファイルをスキャンしました", "error while scanning" => "スキャン中のエラー", +"Name" => "名前", "Size" => "サイズ", "Modified" => "更新日時", "folder" => "フォルダ", @@ -49,7 +50,6 @@ "Upload" => "アップロード", "Cancel upload" => "アップロードをキャンセル", "Nothing in here. Upload something!" => "ここには何もありません。何かアップロードしてください。", -"Name" => "名前", "Share" => "共有", "Download" => "ダウンロード", "Upload too large" => "ファイルサイズが大きすぎます", diff --git a/apps/files/l10n/ko.php b/apps/files/l10n/ko.php index 121be7d1abb..e54d696c34e 100644 --- a/apps/files/l10n/ko.php +++ b/apps/files/l10n/ko.php @@ -21,6 +21,7 @@ "Pending" => "보류 중", "Upload cancelled." => "업로드 취소.", "Invalid name, '/' is not allowed." => "잘못된 이름, '/' 은 허용이 되지 않습니다.", +"Name" => "이름", "Size" => "크기", "Modified" => "수정됨", "folder" => "폴더", @@ -41,7 +42,6 @@ "Upload" => "업로드", "Cancel upload" => "업로드 취소", "Nothing in here. Upload something!" => "내용이 없습니다. 업로드할 수 있습니다!", -"Name" => "이름", "Share" => "공유", "Download" => "다운로드", "Upload too large" => "업로드 용량 초과", diff --git a/apps/files/l10n/lb.php b/apps/files/l10n/lb.php index 92acea1d117..a51980348c7 100644 --- a/apps/files/l10n/lb.php +++ b/apps/files/l10n/lb.php @@ -21,6 +21,7 @@ "Upload cancelled." => "Upload ofgebrach.", "File upload is in progress. Leaving the page now will cancel the upload." => "File Upload am gaang. Wann's de des Säit verléiss gëtt den Upload ofgebrach.", "Invalid name, '/' is not allowed." => "Ongültege Numm, '/' net erlaabt.", +"Name" => "Numm", "Size" => "Gréisst", "Modified" => "Geännert", "folder" => "Dossier", @@ -41,7 +42,6 @@ "Upload" => "Eroplueden", "Cancel upload" => "Upload ofbriechen", "Nothing in here. Upload something!" => "Hei ass näischt. Lued eppes rop!", -"Name" => "Numm", "Share" => "Share", "Download" => "Eroflueden", "Upload too large" => "Upload ze grouss", diff --git a/apps/files/l10n/lt_LT.php b/apps/files/l10n/lt_LT.php index 90b03143074..47a79c4a5a0 100644 --- a/apps/files/l10n/lt_LT.php +++ b/apps/files/l10n/lt_LT.php @@ -15,6 +15,7 @@ "Pending" => "Laukiantis", "Upload cancelled." => "Įkėlimas atšauktas.", "Invalid name, '/' is not allowed." => "Pavadinime negali būti naudojamas ženklas \"/\".", +"Name" => "Pavadinimas", "Size" => "Dydis", "Modified" => "Pakeista", "folder" => "katalogas", @@ -33,7 +34,6 @@ "Upload" => "Įkelti", "Cancel upload" => "Atšaukti siuntimą", "Nothing in here. Upload something!" => "Čia tuščia. Įkelkite ką nors!", -"Name" => "Pavadinimas", "Share" => "Dalintis", "Download" => "Atsisiųsti", "Upload too large" => "Įkėlimui failas per didelis", diff --git a/apps/files/l10n/lv.php b/apps/files/l10n/lv.php index eedab2546c5..813d693f94a 100644 --- a/apps/files/l10n/lv.php +++ b/apps/files/l10n/lv.php @@ -16,6 +16,7 @@ "Pending" => "Gaida savu kārtu", "Upload cancelled." => "Augšuplāde ir atcelta", "Invalid name, '/' is not allowed." => "Šis simbols '/', nav atļauts.", +"Name" => "Nosaukums", "Size" => "Izmērs", "Modified" => "Izmainīts", "folder" => "mape", @@ -33,7 +34,6 @@ "Upload" => "Augšuplādet", "Cancel upload" => "Atcelt augšuplādi", "Nothing in here. Upload something!" => "Te vēl nekas nav. Rīkojies, sāc augšuplādēt", -"Name" => "Nosaukums", "Share" => "Līdzdalīt", "Download" => "Lejuplādēt", "Upload too large" => "Fails ir par lielu lai to augšuplādetu", diff --git a/apps/files/l10n/mk.php b/apps/files/l10n/mk.php index 4e1eccff255..f4aee5ba178 100644 --- a/apps/files/l10n/mk.php +++ b/apps/files/l10n/mk.php @@ -14,6 +14,7 @@ "Pending" => "Чека", "Upload cancelled." => "Преземањето е прекинато.", "Invalid name, '/' is not allowed." => "неисправно име, '/' не е дозволено.", +"Name" => "Име", "Size" => "Големина", "Modified" => "Променето", "folder" => "фолдер", @@ -34,7 +35,6 @@ "Upload" => "Подигни", "Cancel upload" => "Откажи прикачување", "Nothing in here. Upload something!" => "Тука нема ништо. Снимете нешто!", -"Name" => "Име", "Share" => "Сподели", "Download" => "Преземи", "Upload too large" => "Датотеката е премногу голема", diff --git a/apps/files/l10n/ms_MY.php b/apps/files/l10n/ms_MY.php index de472a7c651..bfa47969b3c 100644 --- a/apps/files/l10n/ms_MY.php +++ b/apps/files/l10n/ms_MY.php @@ -20,6 +20,7 @@ "Pending" => "Dalam proses", "Upload cancelled." => "Muatnaik dibatalkan.", "Invalid name, '/' is not allowed." => "penggunaa nama tidak sah, '/' tidak dibenarkan.", +"Name" => "Nama ", "Size" => "Saiz", "Modified" => "Dimodifikasi", "folder" => "direktori", @@ -40,7 +41,6 @@ "Upload" => "Muat naik", "Cancel upload" => "Batal muat naik", "Nothing in here. Upload something!" => "Tiada apa-apa di sini. Muat naik sesuatu!", -"Name" => "Nama ", "Share" => "Kongsi", "Download" => "Muat turun", "Upload too large" => "Muat naik terlalu besar", diff --git a/apps/files/l10n/nb_NO.php b/apps/files/l10n/nb_NO.php index 6331de6d45e..cda1d51ed2f 100644 --- a/apps/files/l10n/nb_NO.php +++ b/apps/files/l10n/nb_NO.php @@ -21,6 +21,7 @@ "Pending" => "Ventende", "Upload cancelled." => "Opplasting avbrutt.", "Invalid name, '/' is not allowed." => "Ugyldig navn, '/' er ikke tillatt. ", +"Name" => "Navn", "Size" => "Størrelse", "Modified" => "Endret", "folder" => "mappe", @@ -42,7 +43,6 @@ "Upload" => "Last opp", "Cancel upload" => "Avbryt opplasting", "Nothing in here. Upload something!" => "Ingenting her. Last opp noe!", -"Name" => "Navn", "Share" => "Del", "Download" => "Last ned", "Upload too large" => "Opplasting for stor", diff --git a/apps/files/l10n/nl.php b/apps/files/l10n/nl.php index b54c96bd9ae..016f7341ab7 100644 --- a/apps/files/l10n/nl.php +++ b/apps/files/l10n/nl.php @@ -9,6 +9,7 @@ "Files" => "Bestanden", "Unshare" => "Stop delen", "Delete" => "Verwijder", +"Rename" => "Hernoem", "already exists" => "bestaat al", "replace" => "vervang", "suggest name" => "Stel een naam voor", @@ -25,6 +26,9 @@ "Upload cancelled." => "Uploaden geannuleerd.", "File upload is in progress. Leaving the page now will cancel the upload." => "Bestands upload is bezig. Wanneer de pagina nu verlaten wordt, stopt de upload.", "Invalid name, '/' is not allowed." => "Ongeldige naam, '/' is niet toegestaan.", +"files scanned" => "Gescande bestanden", +"error while scanning" => "Fout tijdens het scannen", +"Name" => "Naam", "Size" => "Bestandsgrootte", "Modified" => "Laatst aangepast", "folder" => "map", @@ -46,7 +50,6 @@ "Upload" => "Upload", "Cancel upload" => "Upload afbreken", "Nothing in here. Upload something!" => "Er bevindt zich hier niets. Upload een bestand!", -"Name" => "Naam", "Share" => "Delen", "Download" => "Download", "Upload too large" => "Bestanden te groot", diff --git a/apps/files/l10n/nn_NO.php b/apps/files/l10n/nn_NO.php index d6af7302494..7af37057ce0 100644 --- a/apps/files/l10n/nn_NO.php +++ b/apps/files/l10n/nn_NO.php @@ -7,6 +7,7 @@ "Missing a temporary folder" => "Manglar ei mellombels mappe", "Files" => "Filer", "Delete" => "Slett", +"Name" => "Namn", "Size" => "Storleik", "Modified" => "Endra", "Maximum upload size" => "Maksimal opplastingsstorleik", @@ -15,7 +16,6 @@ "Folder" => "Mappe", "Upload" => "Last opp", "Nothing in here. Upload something!" => "Ingenting her. Last noko opp!", -"Name" => "Namn", "Download" => "Last ned", "Upload too large" => "For stor opplasting", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Filene du prøver å laste opp er større enn maksgrensa til denne tenaren." diff --git a/apps/files/l10n/pl.php b/apps/files/l10n/pl.php index 22f1dd3df88..1f823d0bb5e 100644 --- a/apps/files/l10n/pl.php +++ b/apps/files/l10n/pl.php @@ -9,6 +9,7 @@ "Files" => "Pliki", "Unshare" => "Nie udostępniaj", "Delete" => "Usuwa element", +"Rename" => "Zmień nazwę", "already exists" => "Już istnieje", "replace" => "zastap", "suggest name" => "zasugeruj nazwę", @@ -27,6 +28,7 @@ "Invalid name, '/' is not allowed." => "Nieprawidłowa nazwa '/' jest niedozwolone.", "files scanned" => "Pliki skanowane", "error while scanning" => "Wystąpił błąd podczas skanowania", +"Name" => "Nazwa", "Size" => "Rozmiar", "Modified" => "Czas modyfikacji", "folder" => "folder", @@ -48,7 +50,6 @@ "Upload" => "Prześlij", "Cancel upload" => "Przestań wysyłać", "Nothing in here. Upload something!" => "Brak zawartości. Proszę wysłać pliki!", -"Name" => "Nazwa", "Share" => "Współdziel", "Download" => "Pobiera element", "Upload too large" => "Wysyłany plik ma za duży rozmiar", diff --git a/apps/files/l10n/pt_BR.php b/apps/files/l10n/pt_BR.php index e9fe7747c13..d9e6e3290ed 100644 --- a/apps/files/l10n/pt_BR.php +++ b/apps/files/l10n/pt_BR.php @@ -7,20 +7,28 @@ "Missing a temporary folder" => "Pasta temporária não encontrada", "Failed to write to disk" => "Falha ao escrever no disco", "Files" => "Arquivos", +"Unshare" => "Descompartilhar", "Delete" => "Excluir", +"Rename" => "Renomear", "already exists" => "já existe", "replace" => "substituir", +"suggest name" => "sugerir nome", "cancel" => "cancelar", "replaced" => "substituido ", "undo" => "desfazer", "with" => "com", +"unshared" => "descompartilhado", "deleted" => "deletado", "generating ZIP-file, it may take some time." => "gerando arquivo ZIP, isso pode levar um tempo.", "Unable to upload your file as it is a directory or has 0 bytes" => "Impossível enviar seus arquivo como diretório ou ele tem 0 bytes.", "Upload Error" => "Erro de envio", "Pending" => "Pendente", "Upload cancelled." => "Envio cancelado.", +"File upload is in progress. Leaving the page now will cancel the upload." => "Upload em andamento. Sair da página agora resultará no cancelamento do envio.", "Invalid name, '/' is not allowed." => "Nome inválido, '/' não é permitido.", +"files scanned" => "arquivos verificados", +"error while scanning" => "erro durante verificação", +"Name" => "Nome", "Size" => "Tamanho", "Modified" => "Modificado", "folder" => "pasta", @@ -34,6 +42,7 @@ "Enable ZIP-download" => "Habilitar ZIP-download", "0 is unlimited" => "0 para ilimitado", "Maximum input size for ZIP files" => "Tamanho máximo para arquivo ZIP", +"Save" => "Salvar", "New" => "Novo", "Text file" => "Arquivo texto", "Folder" => "Pasta", @@ -41,7 +50,6 @@ "Upload" => "Carregar", "Cancel upload" => "Cancelar upload", "Nothing in here. Upload something!" => "Nada aqui.Carrege alguma coisa!", -"Name" => "Nome", "Share" => "Compartilhar", "Download" => "Baixar", "Upload too large" => "Arquivo muito grande", diff --git a/apps/files/l10n/pt_PT.php b/apps/files/l10n/pt_PT.php index 998c494a695..ffd15ae1d06 100644 --- a/apps/files/l10n/pt_PT.php +++ b/apps/files/l10n/pt_PT.php @@ -21,6 +21,7 @@ "Pending" => "Pendente", "Upload cancelled." => "O upload foi cancelado.", "Invalid name, '/' is not allowed." => "nome inválido, '/' não permitido.", +"Name" => "Nome", "Size" => "Tamanho", "Modified" => "Modificado", "folder" => "pasta", @@ -41,7 +42,6 @@ "Upload" => "Enviar", "Cancel upload" => "Cancelar upload", "Nothing in here. Upload something!" => "Vazio. Envia alguma coisa!", -"Name" => "Nome", "Share" => "Partilhar", "Download" => "Transferir", "Upload too large" => "Envio muito grande", diff --git a/apps/files/l10n/ro.php b/apps/files/l10n/ro.php index 5fd9b60ce6a..ff4a8119372 100644 --- a/apps/files/l10n/ro.php +++ b/apps/files/l10n/ro.php @@ -27,6 +27,7 @@ "Invalid name, '/' is not allowed." => "Nume invalid, '/' nu este permis.", "files scanned" => "fișiere scanate", "error while scanning" => "eroare la scanarea", +"Name" => "Nume", "Size" => "Dimensiune", "Modified" => "Modificat", "folder" => "director", @@ -48,7 +49,6 @@ "Upload" => "Încarcă", "Cancel upload" => "Anulează încărcarea", "Nothing in here. Upload something!" => "Nimic aici. Încarcă ceva!", -"Name" => "Nume", "Share" => "Partajează", "Download" => "Descarcă", "Upload too large" => "Fișierul încărcat este prea mare", diff --git a/apps/files/l10n/ru.php b/apps/files/l10n/ru.php index 61091790af5..d21d6e3a6d8 100644 --- a/apps/files/l10n/ru.php +++ b/apps/files/l10n/ru.php @@ -25,6 +25,7 @@ "Upload cancelled." => "Загрузка отменена.", "File upload is in progress. Leaving the page now will cancel the upload." => "Файл в процессе загрузки. Покинув страницу вы прервёте загрузку.", "Invalid name, '/' is not allowed." => "Неверное имя, '/' не допускается.", +"Name" => "Название", "Size" => "Размер", "Modified" => "Изменён", "folder" => "папка", @@ -46,7 +47,6 @@ "Upload" => "Загрузить", "Cancel upload" => "Отмена загрузки", "Nothing in here. Upload something!" => "Здесь ничего нет. Загрузите что-нибудь!", -"Name" => "Название", "Share" => "Опубликовать", "Download" => "Скачать", "Upload too large" => "Файл слишком большой", diff --git a/apps/files/l10n/ru_RU.php b/apps/files/l10n/ru_RU.php index f43959d4e95..0574e2dfcde 100644 --- a/apps/files/l10n/ru_RU.php +++ b/apps/files/l10n/ru_RU.php @@ -25,6 +25,7 @@ "Upload cancelled." => "Загрузка отменена", "File upload is in progress. Leaving the page now will cancel the upload." => "Процесс загрузки файла. Если покинуть страницу сейчас, загрузка будет отменена.", "Invalid name, '/' is not allowed." => "Неправильное имя, '/' не допускается.", +"Name" => "Имя", "Size" => "Размер", "Modified" => "Изменен", "folder" => "папка", @@ -46,7 +47,6 @@ "Upload" => "Загрузить ", "Cancel upload" => "Отмена загрузки", "Nothing in here. Upload something!" => "Здесь ничего нет. Загрузите что-нибудь!", -"Name" => "Имя", "Share" => "Сделать общим", "Download" => "Загрузить", "Upload too large" => "Загрузка слишком велика", diff --git a/apps/files/l10n/sk_SK.php b/apps/files/l10n/sk_SK.php index 915303205cd..f25e6bb9bb7 100644 --- a/apps/files/l10n/sk_SK.php +++ b/apps/files/l10n/sk_SK.php @@ -27,6 +27,7 @@ "Invalid name, '/' is not allowed." => "Chybný názov, \"/\" nie je povolené", "files scanned" => "skontrolovaných súborov", "error while scanning" => "chyba počas kontroly", +"Name" => "Meno", "Size" => "Veľkosť", "Modified" => "Upravené", "folder" => "priečinok", @@ -48,7 +49,6 @@ "Upload" => "Nahrať", "Cancel upload" => "Zrušiť odosielanie", "Nothing in here. Upload something!" => "Žiadny súbor. Nahrajte niečo!", -"Name" => "Meno", "Share" => "Zdielať", "Download" => "Stiahnuť", "Upload too large" => "Odosielaný súbor je príliš veľký", diff --git a/apps/files/l10n/sl.php b/apps/files/l10n/sl.php index a3b5ceeff65..2a733d2c26a 100644 --- a/apps/files/l10n/sl.php +++ b/apps/files/l10n/sl.php @@ -9,6 +9,7 @@ "Files" => "Datoteke", "Unshare" => "Odstrani iz souporabe", "Delete" => "Izbriši", +"Rename" => "Preimenuj", "already exists" => "že obstaja", "replace" => "nadomesti", "suggest name" => "predlagaj ime", @@ -27,6 +28,7 @@ "Invalid name, '/' is not allowed." => "Neveljavno ime. Znak '/' ni dovoljen.", "files scanned" => "pregledanih datotek", "error while scanning" => "napaka med pregledovanjem datotek", +"Name" => "Ime", "Size" => "Velikost", "Modified" => "Spremenjeno", "folder" => "mapa", @@ -48,7 +50,6 @@ "Upload" => "Naloži", "Cancel upload" => "Prekliči nalaganje", "Nothing in here. Upload something!" => "Tukaj ni ničesar. Naložite kaj!", -"Name" => "Ime", "Share" => "Souporaba", "Download" => "Prenesi", "Upload too large" => "Nalaganje ni mogoče, ker je preveliko", diff --git a/apps/files/l10n/sr.php b/apps/files/l10n/sr.php index 84164e25c62..99e4b12697c 100644 --- a/apps/files/l10n/sr.php +++ b/apps/files/l10n/sr.php @@ -7,6 +7,7 @@ "Missing a temporary folder" => "Недостаје привремена фасцикла", "Files" => "Фајлови", "Delete" => "Обриши", +"Name" => "Име", "Size" => "Величина", "Modified" => "Задња измена", "Maximum upload size" => "Максимална величина пошиљке", @@ -15,7 +16,6 @@ "Folder" => "фасцикла", "Upload" => "Пошаљи", "Nothing in here. Upload something!" => "Овде нема ничег. Пошаљите нешто!", -"Name" => "Име", "Download" => "Преузми", "Upload too large" => "Пошиљка је превелика", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Фајлови које желите да пошаљете превазилазе ограничење максималне величине пошиљке на овом серверу." diff --git a/apps/files/l10n/sr@latin.php b/apps/files/l10n/sr@latin.php index 96c567aec41..d8c7ef18989 100644 --- a/apps/files/l10n/sr@latin.php +++ b/apps/files/l10n/sr@latin.php @@ -7,12 +7,12 @@ "Missing a temporary folder" => "Nedostaje privremena fascikla", "Files" => "Fajlovi", "Delete" => "Obriši", +"Name" => "Ime", "Size" => "Veličina", "Modified" => "Zadnja izmena", "Maximum upload size" => "Maksimalna veličina pošiljke", "Upload" => "Pošalji", "Nothing in here. Upload something!" => "Ovde nema ničeg. Pošaljite nešto!", -"Name" => "Ime", "Download" => "Preuzmi", "Upload too large" => "Pošiljka je prevelika", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Fajlovi koje želite da pošaljete prevazilaze ograničenje maksimalne veličine pošiljke na ovom serveru." diff --git a/apps/files/l10n/sv.php b/apps/files/l10n/sv.php index 78ddc95ff42..e94390fc774 100644 --- a/apps/files/l10n/sv.php +++ b/apps/files/l10n/sv.php @@ -9,6 +9,7 @@ "Files" => "Filer", "Unshare" => "Sluta dela", "Delete" => "Radera", +"Rename" => "Byt namn", "already exists" => "finns redan", "replace" => "ersätt", "suggest name" => "föreslå namn", @@ -27,6 +28,7 @@ "Invalid name, '/' is not allowed." => "Ogiltigt namn, '/' är inte tillåten.", "files scanned" => "filer skannade", "error while scanning" => "fel vid skanning", +"Name" => "Namn", "Size" => "Storlek", "Modified" => "Ändrad", "folder" => "mapp", @@ -48,7 +50,6 @@ "Upload" => "Ladda upp", "Cancel upload" => "Avbryt uppladdning", "Nothing in here. Upload something!" => "Ingenting här. Ladda upp något!", -"Name" => "Namn", "Share" => "Dela", "Download" => "Ladda ner", "Upload too large" => "För stor uppladdning", diff --git a/apps/files/l10n/th_TH.php b/apps/files/l10n/th_TH.php index d2b722891ed..db037b06c26 100644 --- a/apps/files/l10n/th_TH.php +++ b/apps/files/l10n/th_TH.php @@ -28,6 +28,7 @@ "Invalid name, '/' is not allowed." => "ชื่อที่ใช้ไม่ถูกต้อง '/' ไม่อนุญาตให้ใช้งาน", "files scanned" => "ไฟล์ต่างๆได้รับการสแกนแล้ว", "error while scanning" => "พบข้อผิดพลาดในระหว่างการสแกนไฟล์", +"Name" => "ชื่อ", "Size" => "ขนาด", "Modified" => "ปรับปรุงล่าสุด", "folder" => "โฟลเดอร์", @@ -49,7 +50,6 @@ "Upload" => "อัพโหลด", "Cancel upload" => "ยกเลิกการอัพโหลด", "Nothing in here. Upload something!" => "ยังไม่มีไฟล์ใดๆอยู่ที่นี่ กรุณาอัพโหลดไฟล์!", -"Name" => "ชื่อ", "Share" => "แชร์", "Download" => "ดาวน์โหลด", "Upload too large" => "ไฟล์ที่อัพโหลดมีขนาดใหญ่เกินไป", diff --git a/apps/files/l10n/tr.php b/apps/files/l10n/tr.php index 72e0e1427d3..bcbee7c5aca 100644 --- a/apps/files/l10n/tr.php +++ b/apps/files/l10n/tr.php @@ -22,6 +22,7 @@ "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 name, '/' is not allowed." => "Geçersiz isim, '/' işaretine izin verilmiyor.", +"Name" => "Ad", "Size" => "Boyut", "Modified" => "Değiştirilme", "folder" => "dizin", @@ -42,7 +43,6 @@ "Upload" => "Yükle", "Cancel upload" => "Yüklemeyi iptal et", "Nothing in here. Upload something!" => "Burada hiçbir şey yok. Birşeyler yükleyin!", -"Name" => "Ad", "Share" => "Paylaş", "Download" => "İndir", "Upload too large" => "Yüklemeniz çok büyük", diff --git a/apps/files/l10n/uk.php b/apps/files/l10n/uk.php index dc7e9d18b70..7e72683b8ba 100644 --- a/apps/files/l10n/uk.php +++ b/apps/files/l10n/uk.php @@ -15,6 +15,7 @@ "Pending" => "Очікування", "Upload cancelled." => "Завантаження перервано.", "Invalid name, '/' is not allowed." => "Некоректне ім'я, '/' не дозволено.", +"Name" => "Ім'я", "Size" => "Розмір", "Modified" => "Змінено", "folder" => "тека", @@ -31,7 +32,6 @@ "Upload" => "Відвантажити", "Cancel upload" => "Перервати завантаження", "Nothing in here. Upload something!" => "Тут нічого немає. Відвантажте що-небудь!", -"Name" => "Ім'я", "Share" => "Поділитися", "Download" => "Завантажити", "Upload too large" => "Файл занадто великий", diff --git a/apps/files/l10n/vi.php b/apps/files/l10n/vi.php index ce7e0c219ab..d6593022d8b 100644 --- a/apps/files/l10n/vi.php +++ b/apps/files/l10n/vi.php @@ -24,6 +24,7 @@ "Upload cancelled." => "Hủy tải lên", "File upload is in progress. Leaving the page now will cancel the upload." => "Tập tin tải lên đang được xử lý. Nếu bạn rời khỏi trang bây giờ sẽ hủy quá trình này.", "Invalid name, '/' is not allowed." => "Tên không hợp lệ ,không được phép dùng '/'", +"Name" => "Tên", "Size" => "Kích cỡ", "Modified" => "Thay đổi", "folder" => "folder", @@ -44,7 +45,6 @@ "Upload" => "Tải lên", "Cancel upload" => "Hủy upload", "Nothing in here. Upload something!" => "Không có gì ở đây .Hãy tải lên một cái gì đó !", -"Name" => "Tên", "Share" => "Chia sẻ", "Download" => "Tải xuống", "Upload too large" => "File tải lên quá lớn", diff --git a/apps/files/l10n/zh_CN.GB2312.php b/apps/files/l10n/zh_CN.GB2312.php index 9e4b39b8566..b60ad3d4cdd 100644 --- a/apps/files/l10n/zh_CN.GB2312.php +++ b/apps/files/l10n/zh_CN.GB2312.php @@ -27,6 +27,7 @@ "Invalid name, '/' is not allowed." => "非法文件名,\"/\"是不被许可的", "files scanned" => "文件已扫描", "error while scanning" => "扫描出错", +"Name" => "名字", "Size" => "大小", "Modified" => "修改日期", "folder" => "文件夹", @@ -48,7 +49,6 @@ "Upload" => "上传", "Cancel upload" => "取消上传", "Nothing in here. Upload something!" => "这里没有东西.上传点什么!", -"Name" => "名字", "Share" => "分享", "Download" => "下载", "Upload too large" => "上传的文件太大了", diff --git a/apps/files/l10n/zh_CN.php b/apps/files/l10n/zh_CN.php index 67289f8f483..60c40f6d485 100644 --- a/apps/files/l10n/zh_CN.php +++ b/apps/files/l10n/zh_CN.php @@ -9,6 +9,7 @@ "Files" => "文件", "Unshare" => "取消分享", "Delete" => "删除", +"Rename" => "重命名", "already exists" => "已经存在", "replace" => "替换", "suggest name" => "建议名称", @@ -27,6 +28,7 @@ "Invalid name, '/' is not allowed." => "非法的名称,不允许使用‘/’。", "files scanned" => "已扫描文件", "error while scanning" => "扫描时出错", +"Name" => "名称", "Size" => "大小", "Modified" => "修改日期", "folder" => "文件夹", @@ -48,7 +50,6 @@ "Upload" => "上传", "Cancel upload" => "取消上传", "Nothing in here. Upload something!" => "这里还什么都没有。上传些东西吧!", -"Name" => "名称", "Share" => "共享", "Download" => "下载", "Upload too large" => "上传文件过大", diff --git a/apps/files/l10n/zh_TW.php b/apps/files/l10n/zh_TW.php index 9652fb5a073..30ab1901a20 100644 --- a/apps/files/l10n/zh_TW.php +++ b/apps/files/l10n/zh_TW.php @@ -17,6 +17,7 @@ "Upload cancelled." => "上傳取消", "File upload is in progress. Leaving the page now will cancel the upload." => "檔案上傳中. 離開此頁面將會取消上傳.", "Invalid name, '/' is not allowed." => "無效的名稱, '/'是不被允許的", +"Name" => "名稱", "Size" => "大小", "Modified" => "修改", "File handling" => "檔案處理", @@ -33,7 +34,6 @@ "Upload" => "上傳", "Cancel upload" => "取消上傳", "Nothing in here. Upload something!" => "沒有任何東西。請上傳內容!", -"Name" => "名稱", "Share" => "分享", "Download" => "下載", "Upload too large" => "上傳過大", diff --git a/apps/files_encryption/l10n/es_AR.php b/apps/files_encryption/l10n/es_AR.php new file mode 100644 index 00000000000..a15c37e730e --- /dev/null +++ b/apps/files_encryption/l10n/es_AR.php @@ -0,0 +1,6 @@ + "Encriptación", +"Exclude the following file types from encryption" => "Exceptuar de la encriptación los siguientes tipos de archivo", +"None" => "Ninguno", +"Enable Encryption" => "Habilitar encriptación" +); diff --git a/apps/files_encryption/l10n/pt_BR.php b/apps/files_encryption/l10n/pt_BR.php new file mode 100644 index 00000000000..5c02f52217f --- /dev/null +++ b/apps/files_encryption/l10n/pt_BR.php @@ -0,0 +1,6 @@ + "Criptografia", +"Exclude the following file types from encryption" => "Excluir os seguintes tipos de arquivo da criptografia", +"None" => "Nenhuma", +"Enable Encryption" => "Habilitar Criptografia" +); diff --git a/apps/files_external/l10n/da.php b/apps/files_external/l10n/da.php new file mode 100644 index 00000000000..e4f1b9bb5ec --- /dev/null +++ b/apps/files_external/l10n/da.php @@ -0,0 +1,18 @@ + "Ekstern opbevaring", +"Mount point" => "Monteringspunkt", +"Backend" => "Backend", +"Configuration" => "Opsætning", +"Options" => "Valgmuligheder", +"Applicable" => "Kan anvendes", +"Add mount point" => "Tilføj monteringspunkt", +"None set" => "Ingen sat", +"All Users" => "Alle brugere", +"Groups" => "Grupper", +"Users" => "Brugere", +"Delete" => "Slet", +"Enable User External Storage" => "Aktiver ekstern opbevaring for brugere", +"Allow users to mount their own external storage" => "Tillad brugere at montere deres egne eksterne opbevaring", +"SSL root certificates" => "SSL-rodcertifikater", +"Import Root Certificate" => "Importer rodcertifikat" +); diff --git a/apps/files_external/l10n/es_AR.php b/apps/files_external/l10n/es_AR.php new file mode 100644 index 00000000000..52ed44556ab --- /dev/null +++ b/apps/files_external/l10n/es_AR.php @@ -0,0 +1,18 @@ + "Almacenamiento externo", +"Mount point" => "Punto de montaje", +"Backend" => "Motor", +"Configuration" => "Configuración", +"Options" => "Opciones", +"Applicable" => "Aplicable", +"Add mount point" => "Añadir punto de montaje", +"None set" => "No fue configurado", +"All Users" => "Todos los usuarios", +"Groups" => "Grupos", +"Users" => "Usuarios", +"Delete" => "Borrar", +"SSL root certificates" => "certificados SSL raíz", +"Import Root Certificate" => "Importar certificado raíz", +"Enable User External Storage" => "Habilitar almacenamiento de usuario externo", +"Allow users to mount their own external storage" => "Permitir a los usuarios montar su propio almacenamiento externo" +); diff --git a/apps/files_external/l10n/pt_BR.php b/apps/files_external/l10n/pt_BR.php new file mode 100644 index 00000000000..3251e4561a1 --- /dev/null +++ b/apps/files_external/l10n/pt_BR.php @@ -0,0 +1,18 @@ + "Armazenamento Externo", +"Mount point" => "Ponto de montagem", +"Backend" => "Backend", +"Configuration" => "Configuração", +"Options" => "Opções", +"Applicable" => "Aplicável", +"Add mount point" => "Adicionar ponto de montagem", +"None set" => "Nenhum definido", +"All Users" => "Todos os Usuários", +"Groups" => "Grupos", +"Users" => "Usuários", +"Delete" => "Remover", +"SSL root certificates" => "Certificados SSL raíz", +"Import Root Certificate" => "Importar Certificado Raíz", +"Enable User External Storage" => "Habilitar Armazenamento Externo do Usuário", +"Allow users to mount their own external storage" => "Permitir usuários a montar seus próprios armazenamentos externos" +); diff --git a/apps/files_external/templates/settings.php b/apps/files_external/templates/settings.php index c44b09b180f..367ce2bc03e 100644 --- a/apps/files_external/templates/settings.php +++ b/apps/files_external/templates/settings.php @@ -1,4 +1,4 @@ -
+ +