Merge branch 'master' into filesystem
This commit is contained in:
commit
88bca9bc49
291 changed files with 8184 additions and 4068 deletions
|
@ -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();
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -1,14 +1,16 @@
|
|||
<?php
|
||||
|
||||
// fix webdav properties, remove namespace information between curly bracket (update from OC4 to OC5)
|
||||
$installedVersion=OCP\Config::getAppValue('files', 'installed_version');
|
||||
if (version_compare($installedVersion, '1.1.4', '<')) {
|
||||
$query = OC_DB::prepare( "SELECT `propertyname`, `propertypath`, `userid` FROM `*PREFIX*properties`" );
|
||||
$result = $query->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
|
||||
|
|
|
@ -1 +1 @@
|
|||
1.1.5
|
||||
1.1.6
|
||||
|
|
|
@ -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; }
|
||||
|
|
|
@ -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+')');
|
||||
});
|
||||
|
|
|
@ -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." => "حجم الملفات التي تريد ترفيعها أعلى من المسموح على الخادم."
|
||||
|
|
|
@ -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" => "Файлът е прекалено голям",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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ý",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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ß",
|
||||
|
|
|
@ -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" => "Πολύ μεγάλο αρχείο προς μεταφόρτωση",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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"
|
||||
);
|
||||
|
|
59
apps/files/l10n/es_AR.php
Normal file
59
apps/files/l10n/es_AR.php
Normal file
|
@ -0,0 +1,59 @@
|
|||
<?php $TRANSLATIONS = array(
|
||||
"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 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"
|
||||
);
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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" => "حجم بارگذاری بسیار زیاد است",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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" => "העלאה גדולה מידי",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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"
|
||||
);
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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" => "ファイルサイズが大きすぎます",
|
||||
|
|
|
@ -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" => "업로드 용량 초과",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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" => "Датотеката е премногу голема",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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."
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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" => "Файл слишком большой",
|
||||
|
|
|
@ -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" => "Загрузка слишком велика",
|
||||
|
|
|
@ -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ý",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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." => "Фајлови које желите да пошаљете превазилазе ограничење максималне величине пошиљке на овом серверу."
|
||||
|
|
|
@ -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."
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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" => "ไฟล์ที่อัพโหลดมีขนาดใหญ่เกินไป",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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" => "Файл занадто великий",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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" => "上传的文件太大了",
|
||||
|
|
|
@ -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" => "上传文件过大",
|
||||
|
|
|
@ -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" => "上傳過大",
|
||||
|
|
6
apps/files_encryption/l10n/es_AR.php
Normal file
6
apps/files_encryption/l10n/es_AR.php
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?php $TRANSLATIONS = array(
|
||||
"Encryption" => "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"
|
||||
);
|
6
apps/files_encryption/l10n/pt_BR.php
Normal file
6
apps/files_encryption/l10n/pt_BR.php
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?php $TRANSLATIONS = array(
|
||||
"Encryption" => "Criptografia",
|
||||
"Exclude the following file types from encryption" => "Excluir os seguintes tipos de arquivo da criptografia",
|
||||
"None" => "Nenhuma",
|
||||
"Enable Encryption" => "Habilitar Criptografia"
|
||||
);
|
18
apps/files_external/l10n/da.php
Normal file
18
apps/files_external/l10n/da.php
Normal file
|
@ -0,0 +1,18 @@
|
|||
<?php $TRANSLATIONS = array(
|
||||
"External Storage" => "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"
|
||||
);
|
18
apps/files_external/l10n/es_AR.php
Normal file
18
apps/files_external/l10n/es_AR.php
Normal file
|
@ -0,0 +1,18 @@
|
|||
<?php $TRANSLATIONS = array(
|
||||
"External Storage" => "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"
|
||||
);
|
18
apps/files_external/l10n/pt_BR.php
Normal file
18
apps/files_external/l10n/pt_BR.php
Normal file
|
@ -0,0 +1,18 @@
|
|||
<?php $TRANSLATIONS = array(
|
||||
"External Storage" => "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"
|
||||
);
|
|
@ -1,4 +1,4 @@
|
|||
<form id="files_external" method="post" enctype="multipart/form-data" action="<?php echo OCP\Util::linkTo('files_external', 'ajax/addRootCertificate.php'); ?>">
|
||||
<form id="files_external">
|
||||
<fieldset class="personalblock">
|
||||
<legend><strong><?php echo $l->t('External Storage'); ?></strong></legend>
|
||||
<table id="externalStorage" data-admin='<?php echo json_encode($_['isAdminPage']); ?>'>
|
||||
|
@ -81,7 +81,18 @@
|
|||
</table>
|
||||
<br />
|
||||
|
||||
<?php if (!$_['isAdminPage']): ?>
|
||||
<?php if ($_['isAdminPage']): ?>
|
||||
<br />
|
||||
<input type="checkbox" name="allowUserMounting" id="allowUserMounting" value="1" <?php if ($_['allowUserMounting'] == 'yes') echo ' checked="checked"'; ?> />
|
||||
<label for="allowUserMounting"><?php echo $l->t('Enable User External Storage'); ?></label><br/>
|
||||
<em><?php echo $l->t('Allow users to mount their own external storage'); ?></em>
|
||||
<?php endif; ?>
|
||||
</fieldset>
|
||||
</form>
|
||||
|
||||
<form id="files_external" method="post" enctype="multipart/form-data" action="<?php echo OCP\Util::linkTo('files_external', 'ajax/addRootCertificate.php'); ?>">
|
||||
<fieldset class="personalblock">
|
||||
<?php if (!$_['isAdminPage']): ?>
|
||||
<table id="sslCertificate" data-admin='<?php echo json_encode($_['isAdminPage']); ?>'>
|
||||
<thead>
|
||||
<tr>
|
||||
|
@ -101,12 +112,5 @@
|
|||
<input type="file" id="rootcert_import" name="rootcert_import" style="width:230px;">
|
||||
<input type="submit" name="cert_import" value="<?php echo $l->t('Import Root Certificate'); ?>" />
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ($_['isAdminPage']): ?>
|
||||
<br />
|
||||
<input type="checkbox" name="allowUserMounting" id="allowUserMounting" value="1" <?php if ($_['allowUserMounting'] == 'yes') echo ' checked="checked"'; ?> />
|
||||
<label for="allowUserMounting"><?php echo $l->t('Enable User External Storage'); ?></label><br/>
|
||||
<em><?php echo $l->t('Allow users to mount their own external storage'); ?></em>
|
||||
<?php endif; ?>
|
||||
</fieldset>
|
||||
</form>
|
||||
</fieldset>
|
||||
</form>
|
|
@ -5,6 +5,10 @@ if (version_compare($installedVersion, '0.3', '<')) {
|
|||
$query = OCP\DB::prepare('SELECT * FROM `*PREFIX*sharing`');
|
||||
$result = $query->execute();
|
||||
$groupShares = array();
|
||||
//we need to set up user backends, otherwise creating the shares will fail with "because user does not exist"
|
||||
OC_User::useBackend(new OC_User_Database());
|
||||
OC_Group::useBackend(new OC_Group_Database());
|
||||
OC_App::loadApps(array('authentication'));
|
||||
while ($row = $result->fetchRow()) {
|
||||
$itemSource = OC_FileCache::getId($row['source'], '');
|
||||
if ($itemSource != -1) {
|
||||
|
@ -15,9 +19,9 @@ if (version_compare($installedVersion, '0.3', '<')) {
|
|||
$itemType = 'file';
|
||||
}
|
||||
if ($row['permissions'] == 0) {
|
||||
$permissions = OCP\Share::PERMISSION_READ;
|
||||
$permissions = OCP\Share::PERMISSION_READ | OCP\Share::PERMISSION_SHARE;
|
||||
} else {
|
||||
$permissions = OCP\Share::PERMISSION_READ | OCP\Share::PERMISSION_UPDATE;
|
||||
$permissions = OCP\Share::PERMISSION_READ | OCP\Share::PERMISSION_UPDATE | OCP\Share::PERMISSION_SHARE;
|
||||
if ($itemType == 'folder') {
|
||||
$permissions |= OCP\Share::PERMISSION_CREATE;
|
||||
}
|
||||
|
@ -39,17 +43,20 @@ if (version_compare($installedVersion, '0.3', '<')) {
|
|||
$shareWith = $row['uid_shared_with'];
|
||||
}
|
||||
OC_User::setUserId($row['uid_owner']);
|
||||
//we need to setup the filesystem for the user, otherwise OC_FileSystem::getRoot will fail and break
|
||||
OC_Util::setupFS($row['uid_owner']);
|
||||
try {
|
||||
OCP\Share::shareItem($itemType, $itemSource, $shareType, $shareWith, $permissions);
|
||||
}
|
||||
catch (Exception $e) {
|
||||
$update_error = true;
|
||||
echo 'Skipping sharing "'.$row['source'].'" to "'.$shareWith.'" (error is "'.$e->getMessage().'")<br/>';
|
||||
OCP\Util::writeLog('files_sharing', 'Upgrade Routine: Skipping sharing "'.$row['source'].'" to "'.$shareWith.'" (error is "'.$e->getMessage().'")', OCP\Util::WARN);
|
||||
}
|
||||
OC_Util::tearDownFS();
|
||||
}
|
||||
}
|
||||
if ($update_error) {
|
||||
throw new Exception('There were some problems upgrading the sharing of files');
|
||||
OCP\Util::writeLog('files_sharing', 'There were some problems upgrading the sharing of files', OCP\Util::ERROR);
|
||||
}
|
||||
// NOTE: Let's drop the table after more testing
|
||||
// $query = OCP\DB::prepare('DROP TABLE `*PREFIX*sharing`');
|
||||
|
|
|
@ -1,6 +1,8 @@
|
|||
<?php $TRANSLATIONS = array(
|
||||
"Password" => "Kodeord",
|
||||
"Submit" => "Send",
|
||||
"%s shared the folder %s with you" => "%s delte mappen %s med dig",
|
||||
"%s shared the file %s with you" => "%s delte filen %s med dig",
|
||||
"Download" => "Download",
|
||||
"No preview available for" => "Forhåndsvisning ikke tilgængelig for",
|
||||
"web services under your control" => "Webtjenester under din kontrol"
|
||||
|
|
|
@ -1,6 +1,8 @@
|
|||
<?php $TRANSLATIONS = array(
|
||||
"Password" => "Contraseña",
|
||||
"Submit" => "Enviar",
|
||||
"%s shared the folder %s with you" => "%s compartió la carpeta %s contigo",
|
||||
"%s shared the file %s with you" => "%s compartió el fichero %s contigo",
|
||||
"Download" => "Descargar",
|
||||
"No preview available for" => "No hay vista previa disponible para",
|
||||
"web services under your control" => "Servicios web bajo su control"
|
||||
|
|
9
apps/files_sharing/l10n/es_AR.php
Normal file
9
apps/files_sharing/l10n/es_AR.php
Normal file
|
@ -0,0 +1,9 @@
|
|||
<?php $TRANSLATIONS = array(
|
||||
"Password" => "Contraseña",
|
||||
"Submit" => "Enviar",
|
||||
"%s shared the folder %s with you" => "%s compartió la carpeta %s con vos",
|
||||
"%s shared the file %s with you" => "%s compartió el archivo %s con vos",
|
||||
"Download" => "Descargar",
|
||||
"No preview available for" => "La vista preliminar no está disponible para",
|
||||
"web services under your control" => "servicios web controlados por vos"
|
||||
);
|
|
@ -1,6 +1,8 @@
|
|||
<?php $TRANSLATIONS = array(
|
||||
"Password" => "Pasahitza",
|
||||
"Submit" => "Bidali",
|
||||
"%s shared the folder %s with you" => "%sk zurekin %s karpeta elkarbanatu du",
|
||||
"%s shared the file %s with you" => "%sk zurekin %s fitxategia elkarbanatu du",
|
||||
"Download" => "Deskargatu",
|
||||
"No preview available for" => "Ez dago aurrebista eskuragarririk hauentzat ",
|
||||
"web services under your control" => "web zerbitzuak zure kontrolpean"
|
||||
|
|
|
@ -1,6 +1,8 @@
|
|||
<?php $TRANSLATIONS = array(
|
||||
"Password" => "Mot de passe",
|
||||
"Submit" => "Envoyer",
|
||||
"%s shared the folder %s with you" => "%s a partagé le répertoire %s avec vous",
|
||||
"%s shared the file %s with you" => "%s a partagé le fichier %s avec vous",
|
||||
"Download" => "Télécharger",
|
||||
"No preview available for" => "Pas d'aperçu disponible pour",
|
||||
"web services under your control" => "services web sous votre contrôle"
|
||||
|
|
|
@ -1,6 +1,8 @@
|
|||
<?php $TRANSLATIONS = array(
|
||||
"Password" => "Wachtwoord",
|
||||
"Submit" => "Verzenden",
|
||||
"%s shared the folder %s with you" => "%s deelt de map %s met u",
|
||||
"%s shared the file %s with you" => "%s deelt het bestand %s met u",
|
||||
"Download" => "Downloaden",
|
||||
"No preview available for" => "Geen voorbeeldweergave beschikbaar voor",
|
||||
"web services under your control" => "Webdiensten in eigen beheer"
|
||||
|
|
|
@ -1,6 +1,8 @@
|
|||
<?php $TRANSLATIONS = array(
|
||||
"Password" => "Hasło",
|
||||
"Submit" => "Wyślij",
|
||||
"%s shared the folder %s with you" => "%s współdzieli folder z tobą %s",
|
||||
"%s shared the file %s with you" => "%s współdzieli z tobą plik %s",
|
||||
"Download" => "Pobierz",
|
||||
"No preview available for" => "Podgląd nie jest dostępny dla",
|
||||
"web services under your control" => "Kontrolowane serwisy"
|
||||
|
|
9
apps/files_sharing/l10n/pt_BR.php
Normal file
9
apps/files_sharing/l10n/pt_BR.php
Normal file
|
@ -0,0 +1,9 @@
|
|||
<?php $TRANSLATIONS = array(
|
||||
"Password" => "Senha",
|
||||
"Submit" => "Submeter",
|
||||
"%s shared the folder %s with you" => "%s compartilhou a pasta %s com você",
|
||||
"%s shared the file %s with you" => "%s compartilhou o arquivo %s com você",
|
||||
"Download" => "Baixar",
|
||||
"No preview available for" => "Nenhuma visualização disponível para",
|
||||
"web services under your control" => "web services sob seu controle"
|
||||
);
|
|
@ -1,6 +1,8 @@
|
|||
<?php $TRANSLATIONS = array(
|
||||
"Password" => "Geslo",
|
||||
"Submit" => "Pošlji",
|
||||
"%s shared the folder %s with you" => "%s je dal v souporabo z vami mapo %s",
|
||||
"%s shared the file %s with you" => "%s je dal v souporabo z vami datoteko %s",
|
||||
"Download" => "Prenesi",
|
||||
"No preview available for" => "Predogled ni na voljo za",
|
||||
"web services under your control" => "spletne storitve pod vašim nadzorom"
|
||||
|
|
|
@ -1,6 +1,8 @@
|
|||
<?php $TRANSLATIONS = array(
|
||||
"Password" => "Lösenord",
|
||||
"Submit" => "Skicka",
|
||||
"%s shared the folder %s with you" => "%s delade mappen %s med dig",
|
||||
"%s shared the file %s with you" => "%s delade filen %s med dig",
|
||||
"Download" => "Ladda ner",
|
||||
"No preview available for" => "Ingen förhandsgranskning tillgänglig för",
|
||||
"web services under your control" => "webbtjänster under din kontroll"
|
||||
|
|
|
@ -1,5 +1,8 @@
|
|||
<?php $TRANSLATIONS = array(
|
||||
"Expire all versions" => "Lad alle versioner udløbe",
|
||||
"History" => "Historik",
|
||||
"Versions" => "Versioner",
|
||||
"This will delete all existing backup versions of your files" => "Dette vil slette alle eksisterende backupversioner af dine filer"
|
||||
"This will delete all existing backup versions of your files" => "Dette vil slette alle eksisterende backupversioner af dine filer",
|
||||
"Files Versioning" => "Versionering af filer",
|
||||
"Enable" => "Aktiver"
|
||||
);
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
<?php $TRANSLATIONS = array(
|
||||
"Expire all versions" => "Expirar todas las versiones",
|
||||
"History" => "Historial",
|
||||
"Versions" => "Versiones",
|
||||
"This will delete all existing backup versions of your files" => "Esto eliminará todas las versiones guardadas como copia de seguridad de tus archivos",
|
||||
"Files Versioning" => "Versionado de archivos",
|
||||
|
|
8
apps/files_versions/l10n/es_AR.php
Normal file
8
apps/files_versions/l10n/es_AR.php
Normal file
|
@ -0,0 +1,8 @@
|
|||
<?php $TRANSLATIONS = array(
|
||||
"Expire all versions" => "Expirar todas las versiones",
|
||||
"History" => "Historia",
|
||||
"Versions" => "Versiones",
|
||||
"This will delete all existing backup versions of your files" => "Hacer estom borrará todas las versiones guardadas como copia de seguridad de tus archivos",
|
||||
"Files Versioning" => "Versionado de archivos",
|
||||
"Enable" => "Activar"
|
||||
);
|
|
@ -1,5 +1,6 @@
|
|||
<?php $TRANSLATIONS = array(
|
||||
"Expire all versions" => "Iraungi bertsio guztiak",
|
||||
"History" => "Historia",
|
||||
"Versions" => "Bertsioak",
|
||||
"This will delete all existing backup versions of your files" => "Honek zure fitxategien bertsio guztiak ezabatuko ditu",
|
||||
"Files Versioning" => "Fitxategien Bertsioak",
|
||||
|
|
|
@ -1,5 +1,8 @@
|
|||
<?php $TRANSLATIONS = array(
|
||||
"Expire all versions" => "Supprimer les versions intermédiaires",
|
||||
"History" => "Historique",
|
||||
"Versions" => "Versions",
|
||||
"This will delete all existing backup versions of your files" => "Cette opération va effacer toutes les versions intermédiaires de vos fichiers (et ne garder que la dernière version en date)."
|
||||
"This will delete all existing backup versions of your files" => "Cette opération va effacer toutes les versions intermédiaires de vos fichiers (et ne garder que la dernière version en date).",
|
||||
"Files Versioning" => "Versionnage des fichiers",
|
||||
"Enable" => "Activer"
|
||||
);
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
<?php $TRANSLATIONS = array(
|
||||
"Expire all versions" => "Alle versies laten verlopen",
|
||||
"History" => "Geschiedenis",
|
||||
"Versions" => "Versies",
|
||||
"This will delete all existing backup versions of your files" => "Dit zal alle bestaande backup versies van uw bestanden verwijderen",
|
||||
"Files Versioning" => "Bestand versies",
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
<?php $TRANSLATIONS = array(
|
||||
"Expire all versions" => "Wygasają wszystkie wersje",
|
||||
"History" => "Historia",
|
||||
"Versions" => "Wersje",
|
||||
"This will delete all existing backup versions of your files" => "Spowoduje to usunięcie wszystkich istniejących wersji kopii zapasowych plików",
|
||||
"Files Versioning" => "Wersjonowanie plików",
|
||||
|
|
|
@ -1,3 +1,8 @@
|
|||
<?php $TRANSLATIONS = array(
|
||||
"Expire all versions" => "Expirar todas as versões"
|
||||
"Expire all versions" => "Expirar todas as versões",
|
||||
"History" => "Histórico",
|
||||
"Versions" => "Versões",
|
||||
"This will delete all existing backup versions of your files" => "Isso removerá todas as versões de backup existentes dos seus arquivos",
|
||||
"Files Versioning" => "Versionamento de Arquivos",
|
||||
"Enable" => "Habilitar"
|
||||
);
|
||||
|
|
8
apps/files_versions/l10n/sk_SK.php
Normal file
8
apps/files_versions/l10n/sk_SK.php
Normal file
|
@ -0,0 +1,8 @@
|
|||
<?php $TRANSLATIONS = array(
|
||||
"Expire all versions" => "Expirovať všetky verzie",
|
||||
"History" => "História",
|
||||
"Versions" => "Verzie",
|
||||
"This will delete all existing backup versions of your files" => "Budú zmazané všetky zálohované verzie vašich súborov",
|
||||
"Files Versioning" => "Vytváranie verzií súborov",
|
||||
"Enable" => "Zapnúť"
|
||||
);
|
|
@ -1,5 +1,6 @@
|
|||
<?php $TRANSLATIONS = array(
|
||||
"Expire all versions" => "Zastaraj vse različice",
|
||||
"History" => "Zgodovina",
|
||||
"Versions" => "Različice",
|
||||
"This will delete all existing backup versions of your files" => "To bo izbrisalo vse obstoječe različice varnostnih kopij vaših datotek",
|
||||
"Files Versioning" => "Sledenje različicam",
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
<?php $TRANSLATIONS = array(
|
||||
"Expire all versions" => "Upphör alla versioner",
|
||||
"History" => "Historik",
|
||||
"Versions" => "Versioner",
|
||||
"This will delete all existing backup versions of your files" => "Detta kommer att radera alla befintliga säkerhetskopior av dina filer",
|
||||
"Files Versioning" => "Versionshantering av filer",
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
<?php $TRANSLATIONS = array(
|
||||
"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",
|
||||
"Password" => "Kodeord",
|
||||
"Port" => "Port",
|
||||
|
|
37
apps/user_ldap/l10n/es_AR.php
Normal file
37
apps/user_ldap/l10n/es_AR.php
Normal file
|
@ -0,0 +1,37 @@
|
|||
<?php $TRANSLATIONS = array(
|
||||
"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",
|
||||
"You can specify Base DN for users and groups in the Advanced tab" => "Podés especificar el DN base para usuarios y grupos en la pestaña \"Avanzado\"",
|
||||
"User DN" => "DN 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." => "El DN del usuario cliente con el que se hará la asociación, p.ej. uid=agente,dc=ejemplo,dc=com. Para acceso anónimo, dejá DN y contraseña vacíos.",
|
||||
"Password" => "Contraseña",
|
||||
"For anonymous access, leave DN and Password empty." => "Para acceso anónimo, dejá DN y contraseña vacíos.",
|
||||
"User Login Filter" => "Filtro de inicio de sesión de usuario",
|
||||
"Defines the filter to apply, when login is attempted. %%uid replaces the username in the login action." => "Define el filtro a aplicar cuando se ha realizado un login. %%uid remplazará el nombre de usuario en el proceso de inicio de sesión.",
|
||||
"use %%uid placeholder, e.g. \"uid=%%uid\"" => "usar %%uid como plantilla, p. ej.: \"uid=%%uid\"",
|
||||
"User List Filter" => "Lista de filtros de usuario",
|
||||
"Defines the filter to apply, when retrieving users." => "Define el filtro a aplicar, cuando se obtienen usuarios.",
|
||||
"without any placeholder, e.g. \"objectClass=person\"." => "Sin plantilla, p. ej.: \"objectClass=person\".",
|
||||
"Group Filter" => "Filtro de grupo",
|
||||
"Defines the filter to apply, when retrieving groups." => "Define el filtro a aplicar cuando se obtienen grupos.",
|
||||
"without any placeholder, e.g. \"objectClass=posixGroup\"." => "Sin ninguna plantilla, p. ej.: \"objectClass=posixGroup\".",
|
||||
"Port" => "Puerto",
|
||||
"Base User Tree" => "Árbol base de usuario",
|
||||
"Base Group Tree" => "Árbol base de grupo",
|
||||
"Group-Member association" => "Asociación Grupo-Miembro",
|
||||
"Use TLS" => "Usar TLS",
|
||||
"Do not use it for SSL connections, it will fail." => "No usarlo para SSL, dará error.",
|
||||
"Case insensitve LDAP server (Windows)" => "Servidor de LDAP sensible a mayúsculas/minúsculas (Windows)",
|
||||
"Turn off SSL certificate validation." => "Desactivar la validación por certificado SSL.",
|
||||
"If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Si la conexión sólo funciona con esta opción, importá el certificado SSL del servidor LDAP en tu servidor ownCloud.",
|
||||
"Not recommended, use for testing only." => "No recomendado, sólo para pruebas.",
|
||||
"User Display Name Field" => "Campo de nombre de usuario a mostrar",
|
||||
"The LDAP attribute to use to generate the user`s ownCloud name." => "El atributo LDAP a usar para generar el nombre de usuario de ownCloud.",
|
||||
"Group Display Name Field" => "Campo de nombre de grupo a mostrar",
|
||||
"The LDAP attribute to use to generate the groups`s ownCloud name." => "El atributo LDAP a usar para generar el nombre de los grupos de ownCloud.",
|
||||
"in bytes" => "en bytes",
|
||||
"in seconds. A change empties the cache." => "en segundos. Cambiarlo vacía la cache.",
|
||||
"Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Vacío para el nombre de usuario (por defecto). En otro caso, especificá un atributo LDAP/AD.",
|
||||
"Help" => "Ayuda"
|
||||
);
|
37
apps/user_ldap/l10n/pt_BR.php
Normal file
37
apps/user_ldap/l10n/pt_BR.php
Normal file
|
@ -0,0 +1,37 @@
|
|||
<?php $TRANSLATIONS = array(
|
||||
"Host" => "Host",
|
||||
"You can omit the protocol, except you require SSL. Then start with ldaps://" => "Você pode omitir o protocolo, exceto quando requerer SSL. Então inicie com ldaps://",
|
||||
"Base DN" => "DN Base",
|
||||
"You can specify Base DN for users and groups in the Advanced tab" => "Você pode especificar DN Base para usuários e grupos na guia Avançada",
|
||||
"User DN" => "DN Usuário",
|
||||
"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 usuário com qual a ligação deverá ser feita, ex. uid=agent,dc=example,dc=com. Para acesso anônimo, deixe DN e Senha vazios.",
|
||||
"Password" => "Senha",
|
||||
"For anonymous access, leave DN and Password empty." => "Para acesso anônimo, deixe DN e Senha vazios.",
|
||||
"User Login Filter" => "Filtro de Login de Usuário",
|
||||
"Defines the filter to apply, when login is attempted. %%uid replaces the username in the login action." => "Define o filtro pra aplicar ao efetuar uma tentativa de login. %%uuid substitui o nome de usuário na ação de login.",
|
||||
"use %%uid placeholder, e.g. \"uid=%%uid\"" => "use %%uid placeholder, ex. \"uid=%%uid\"",
|
||||
"User List Filter" => "Filtro de Lista de Usuário",
|
||||
"Defines the filter to apply, when retrieving users." => "Define filtro a aplicar ao obter usuários.",
|
||||
"without any placeholder, e.g. \"objectClass=person\"." => "sem nenhum espaço reservado, ex. \"objectClass=person\".",
|
||||
"Group Filter" => "Filtro de Grupo",
|
||||
"Defines the filter to apply, when retrieving groups." => "Define o filtro a aplicar ao obter grupos.",
|
||||
"without any placeholder, e.g. \"objectClass=posixGroup\"." => "sem nenhum espaço reservado, ex. \"objectClass=posixGroup\"",
|
||||
"Port" => "Porta",
|
||||
"Base User Tree" => "Árvore de Usuário Base",
|
||||
"Base Group Tree" => "Árvore de Grupo Base",
|
||||
"Group-Member association" => "Associação Grupo-Membro",
|
||||
"Use TLS" => "Usar TLS",
|
||||
"Do not use it for SSL connections, it will fail." => "Não use-o para conexões SSL, pois falhará.",
|
||||
"Case insensitve LDAP server (Windows)" => "Servidor LDAP sensível à caixa alta (Windows)",
|
||||
"Turn off SSL certificate validation." => "Desligar validação de certificado SSL.",
|
||||
"If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Se a conexão só funciona com essa opção, importe o certificado SSL do servidor LDAP no seu servidor ownCloud.",
|
||||
"Not recommended, use for testing only." => "Não recomendado, use somente para testes.",
|
||||
"User Display Name Field" => "Campo Nome de Exibição de Usuário",
|
||||
"The LDAP attribute to use to generate the user`s ownCloud name." => "O atributo LDAP para usar para gerar nome ownCloud do usuário.",
|
||||
"Group Display Name Field" => "Campo Nome de Exibição de Grupo",
|
||||
"The LDAP attribute to use to generate the groups`s ownCloud name." => "O atributo LDAP para usar para gerar nome ownCloud do grupo.",
|
||||
"in bytes" => "em bytes",
|
||||
"in seconds. A change empties the cache." => "em segundos. Uma mudança esvaziará o cache.",
|
||||
"Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Deixe vazio para nome de usuário (padrão). Caso contrário, especifique um atributo LDAP/AD.",
|
||||
"Help" => "Ajuda"
|
||||
);
|
|
@ -3,25 +3,25 @@
|
|||
define("DEBUG", true);
|
||||
|
||||
$CONFIG = array(
|
||||
/* Flag to indicate OwnCloud is successfully installed (true = installed) */
|
||||
/* Flag to indicate ownCloud is successfully installed (true = installed) */
|
||||
"installed" => false,
|
||||
|
||||
/* Type of database, can be sqlite, mysql or pgsql */
|
||||
"dbtype" => "sqlite",
|
||||
|
||||
/* Name of the OwnCloud database */
|
||||
/* Name of the ownCloud database */
|
||||
"dbname" => "owncloud",
|
||||
|
||||
/* User to access the OwnCloud database */
|
||||
/* User to access the ownCloud database */
|
||||
"dbuser" => "",
|
||||
|
||||
/* Password to access the OwnCloud database */
|
||||
/* Password to access the ownCloud database */
|
||||
"dbpassword" => "",
|
||||
|
||||
/* Host running the OwnCloud database */
|
||||
/* Host running the ownCloud database */
|
||||
"dbhost" => "",
|
||||
|
||||
/* Prefix for the OwnCloud tables in the database */
|
||||
/* Prefix for the ownCloud tables in the database */
|
||||
"dbtableprefix" => "",
|
||||
|
||||
/* Define the salt used to hash the user passwords. All your user passwords are lost if you lose this string. */
|
||||
|
@ -30,7 +30,7 @@ $CONFIG = array(
|
|||
/* Force use of HTTPS connection (true = use HTTPS) */
|
||||
"forcessl" => false,
|
||||
|
||||
/* Theme to use for OwnCloud */
|
||||
/* Theme to use for ownCloud */
|
||||
"theme" => "",
|
||||
|
||||
/* Path to the 3rdparty directory */
|
||||
|
@ -94,7 +94,7 @@ $CONFIG = array(
|
|||
"apps_paths" => array(
|
||||
|
||||
/* Set an array of path for your apps directories
|
||||
key 'path' is for the fs path an the key 'url' is for the http path to your
|
||||
key 'path' is for the fs path and the key 'url' is for the http path to your
|
||||
applications paths. 'writable' indicate if the user can install apps in this folder.
|
||||
You must have at least 1 app folder writable or you must set the parameter : appstoreenabled to false
|
||||
*/
|
||||
|
@ -104,5 +104,4 @@ $CONFIG = array(
|
|||
'writable' => true,
|
||||
),
|
||||
),
|
||||
);
|
||||
|
||||
);
|
|
@ -166,6 +166,9 @@ OC.Share={
|
|||
OC.Share.addShareWith(share.share_type, share.share_with, share.permissions, possiblePermissions, false);
|
||||
}
|
||||
}
|
||||
if (share.expiration.length > 0) {
|
||||
OC.Share.showExpirationDate(share.expiration);
|
||||
}
|
||||
});
|
||||
}
|
||||
$('#shareWith').autocomplete({minLength: 2, source: function(search, response) {
|
||||
|
@ -191,6 +194,7 @@ OC.Share={
|
|||
event.preventDefault();
|
||||
},
|
||||
select: function(event, selected) {
|
||||
event.stopPropagation();
|
||||
var itemType = $('#dropdown').data('item-type');
|
||||
var itemSource = $('#dropdown').data('item-source');
|
||||
var shareType = selected.item.value.shareType;
|
||||
|
@ -321,6 +325,15 @@ OC.Share={
|
|||
},
|
||||
dirname:function(path) {
|
||||
return path.replace(/\\/g,'/').replace(/\/[^\/]*$/, '');
|
||||
},
|
||||
showExpirationDate:function(date) {
|
||||
$('#expirationCheckbox').attr('checked', true);
|
||||
$('#expirationDate').before('<br />');
|
||||
$('#expirationDate').val(date);
|
||||
$('#expirationDate').show();
|
||||
$('#expirationDate').datepicker({
|
||||
dateFormat : 'dd-mm-yy'
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -467,13 +480,16 @@ $(document).ready(function() {
|
|||
|
||||
$('#expirationCheckbox').live('click', function() {
|
||||
if (this.checked) {
|
||||
$('#expirationDate').before('<br />');
|
||||
$('#expirationDate').show();
|
||||
$('#expirationDate').datepicker({
|
||||
dateFormat : 'dd-mm-yy'
|
||||
});
|
||||
OC.Share.showExpirationDate('');
|
||||
} else {
|
||||
$('#expirationDate').hide();
|
||||
var itemType = $('#dropdown').data('item-type');
|
||||
var itemSource = $('#dropdown').data('item-source');
|
||||
$.post(OC.filePath('core', 'ajax', 'share.php'), { action: 'setExpirationDate', itemType: itemType, itemSource: itemSource, date: '' }, function(result) {
|
||||
if (!result || result.status !== 'success') {
|
||||
OC.dialogs.alert(t('core', 'Error'), t('core', 'Error unsetting expiration date'));
|
||||
}
|
||||
$('#expirationDate').hide();
|
||||
});
|
||||
}
|
||||
});
|
||||
|
||||
|
|
|
@ -15,13 +15,37 @@
|
|||
"October" => "Oktober",
|
||||
"November" => "November",
|
||||
"December" => "December",
|
||||
"Choose" => "Vælg",
|
||||
"Cancel" => "Fortryd",
|
||||
"No" => "Nej",
|
||||
"Yes" => "Ja",
|
||||
"Ok" => "OK",
|
||||
"No categories selected for deletion." => "Ingen kategorier valgt",
|
||||
"Error" => "Fejl",
|
||||
"Error while sharing" => "Fejl under deling",
|
||||
"Error while unsharing" => "Fejl under annullering af deling",
|
||||
"Error while changing permissions" => "Fejl under justering af rettigheder",
|
||||
"Shared with you and the group %s by %s" => "Delt med dig og gruppen %s af %s",
|
||||
"Shared with you by %s" => "Delt med dig af %s",
|
||||
"Share with" => "Del med",
|
||||
"Share with link" => "Del med link",
|
||||
"Password protect" => "Beskyt med adgangskode",
|
||||
"Password" => "Kodeord",
|
||||
"Set expiration date" => "Vælg udløbsdato",
|
||||
"Expiration date" => "Udløbsdato",
|
||||
"Share via email: %s" => "Del over email: %s",
|
||||
"No people found" => "Ingen personer fundet",
|
||||
"Resharing is not allowed" => "Videredeling ikke tilladt",
|
||||
"Shared in %s with %s" => "Delt i %s med %s",
|
||||
"Unshare" => "Fjern deling",
|
||||
"can edit" => "kan redigere",
|
||||
"access control" => "Adgangskontrol",
|
||||
"create" => "opret",
|
||||
"update" => "opdater",
|
||||
"delete" => "slet",
|
||||
"share" => "del",
|
||||
"Password protected" => "Beskyttet med adgangskode",
|
||||
"Error setting expiration date" => "Fejl under sætning af udløbsdato",
|
||||
"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.",
|
||||
|
|
|
@ -23,8 +23,21 @@
|
|||
"No categories selected for deletion." => "Es wurde keine Kategorien zum Löschen ausgewählt.",
|
||||
"Error" => "Fehler",
|
||||
"Error while sharing" => "Fehler beim Teilen",
|
||||
"Error while unsharing" => "Fehler beim Aufheben der Freigabe",
|
||||
"Error while changing permissions" => "Fehler beim Ändern der Rechte",
|
||||
"Shared with you and the group %s by %s" => "%s hat dies für dich und die Gruppe %s freigegeben.",
|
||||
"Shared with you by %s" => "%s hat dies mit dir geteilt.",
|
||||
"Share with" => "Freigeben für",
|
||||
"Share with link" => "Über einen Link freigeben",
|
||||
"Password protect" => "Passwortschutz",
|
||||
"Password" => "Passwort",
|
||||
"Set expiration date" => "Setze ein Ablaufdatum",
|
||||
"Expiration date" => "Ablaufdatum",
|
||||
"Share via email: %s" => "Über eine E-Mail freigeben: %s",
|
||||
"No people found" => "Niemand gefunden",
|
||||
"Resharing is not allowed" => "Weiterverteilen ist nicht erlaubt",
|
||||
"Shared in %s with %s" => "In %s für %s freigegeben",
|
||||
"Unshare" => "Freigabe aufheben",
|
||||
"can edit" => "kann bearbeiten",
|
||||
"access control" => "Zugriffskontrolle",
|
||||
"create" => "erstellen",
|
||||
|
@ -32,6 +45,7 @@
|
|||
"delete" => "löschen",
|
||||
"share" => "teilen",
|
||||
"Password protected" => "Passwort geschützt",
|
||||
"Error setting expiration date" => "Fehler beim Setzen des Ablaufdatums",
|
||||
"ownCloud password reset" => "ownCloud-Passwort zurücksetzen",
|
||||
"Use the following link to reset your password: {link}" => "Nutzen Sie den nachfolgenden Link, um Ihr Passwort zurückzusetzen: {link}",
|
||||
"You will receive a link to reset your password via Email." => "Sie erhalten einen Link, um Ihr Passwort per E-Mail zurückzusetzen.",
|
||||
|
|
|
@ -15,13 +15,37 @@
|
|||
"October" => "Octubre",
|
||||
"November" => "Noviembre",
|
||||
"December" => "Diciembre",
|
||||
"Choose" => "Seleccionar",
|
||||
"Cancel" => "Cancelar",
|
||||
"No" => "No",
|
||||
"Yes" => "Sí",
|
||||
"Ok" => "Aceptar",
|
||||
"No categories selected for deletion." => "No hay categorías seleccionadas para borrar.",
|
||||
"Error" => "Fallo",
|
||||
"Error while sharing" => "Error compartiendo",
|
||||
"Error while unsharing" => "Error descompartiendo",
|
||||
"Error while changing permissions" => "Error cambiando permisos",
|
||||
"Shared with you and the group %s by %s" => "Compartido contigo y el grupo %s por %s",
|
||||
"Shared with you by %s" => "Compartido contigo por %s",
|
||||
"Share with" => "Compartir con",
|
||||
"Share with link" => "Enlace de compartir con ",
|
||||
"Password protect" => "Protegido por contraseña",
|
||||
"Password" => "Contraseña",
|
||||
"Set expiration date" => "Establecer fecha de caducidad",
|
||||
"Expiration date" => "Fecha de caducidad",
|
||||
"Share via email: %s" => "Compartir por email: %s",
|
||||
"No people found" => "No se encontró gente",
|
||||
"Resharing is not allowed" => "No se permite compartir de nuevo",
|
||||
"Shared in %s with %s" => "Compartido en %s con %s",
|
||||
"Unshare" => "No compartir",
|
||||
"can edit" => "puede editar",
|
||||
"access control" => "control de acceso",
|
||||
"create" => "crear",
|
||||
"update" => "modificar",
|
||||
"delete" => "eliminar",
|
||||
"share" => "compartir",
|
||||
"Password protected" => "Protegido por contraseña",
|
||||
"Error setting expiration date" => "Error estableciendo fecha de caducidad",
|
||||
"ownCloud password reset" => "Reiniciar contraseña de ownCloud",
|
||||
"Use the following link to reset your password: {link}" => "Utiliza el siguiente enlace para restablecer tu contraseña: {link}",
|
||||
"You will receive a link to reset your password via Email." => "Recibirás un enlace por correo electrónico para restablecer tu contraseña",
|
||||
|
|
88
core/l10n/es_AR.php
Normal file
88
core/l10n/es_AR.php
Normal file
|
@ -0,0 +1,88 @@
|
|||
<?php $TRANSLATIONS = array(
|
||||
"Application name not provided." => "Nombre de la aplicación no provisto.",
|
||||
"No category to add?" => "¿Ninguna categoría para añadir?",
|
||||
"This category already exists: " => "Esta categoría ya existe: ",
|
||||
"Settings" => "Ajustes",
|
||||
"January" => "Enero",
|
||||
"February" => "Febrero",
|
||||
"March" => "Marzo",
|
||||
"April" => "Abril",
|
||||
"May" => "Mayo",
|
||||
"June" => "Junio",
|
||||
"July" => "Julio",
|
||||
"August" => "Agosto",
|
||||
"September" => "Septiembre",
|
||||
"October" => "Octubre",
|
||||
"November" => "Noviembre",
|
||||
"December" => "Diciembre",
|
||||
"Choose" => "Elegir",
|
||||
"Cancel" => "Cancelar",
|
||||
"No" => "No",
|
||||
"Yes" => "Sí",
|
||||
"Ok" => "Aceptar",
|
||||
"No categories selected for deletion." => "No hay categorías seleccionadas para borrar.",
|
||||
"Error" => "Error",
|
||||
"Error while sharing" => "Error al compartir",
|
||||
"Error while unsharing" => "Error en el procedimiento de ",
|
||||
"Error while changing permissions" => "Error al cambiar permisos",
|
||||
"Shared with you and the group %s by %s" => "Compartido con vos y con el grupo %s por %s",
|
||||
"Shared with you by %s" => "Compartido con vos por %s",
|
||||
"Share with" => "Compartir con",
|
||||
"Share with link" => "Compartir con link",
|
||||
"Password protect" => "Proteger con contraseña ",
|
||||
"Password" => "Contraseña",
|
||||
"Set expiration date" => "Asignar fecha de vencimiento",
|
||||
"Expiration date" => "Fecha de vencimiento",
|
||||
"Share via email: %s" => "Compartir por e-mail: %s",
|
||||
"No people found" => "No se encontraron usuarios",
|
||||
"Resharing is not allowed" => "No se permite volver a compartir",
|
||||
"Shared in %s with %s" => "Compartido en %s con %s",
|
||||
"Unshare" => "Remover compartir",
|
||||
"can edit" => "puede editar",
|
||||
"access control" => "control de acceso",
|
||||
"create" => "crear",
|
||||
"update" => "actualizar",
|
||||
"delete" => "remover",
|
||||
"share" => "compartir",
|
||||
"Password protected" => "Protegido por contraseña",
|
||||
"Error setting expiration date" => "Error al asignar fecha de vencimiento",
|
||||
"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",
|
||||
"Requested" => "Pedido",
|
||||
"Login failed!" => "¡Fallo al iniciar sesión!",
|
||||
"Username" => "Nombre de usuario",
|
||||
"Request reset" => "Solicitar restablecimiento",
|
||||
"Your password was reset" => "Tu contraseña ha sido restablecida",
|
||||
"To login page" => "A la página de inicio de sesión",
|
||||
"New password" => "Nueva contraseña",
|
||||
"Reset password" => "Restablecer contraseña",
|
||||
"Personal" => "Personal",
|
||||
"Users" => "Usuarios",
|
||||
"Apps" => "Aplicaciones",
|
||||
"Admin" => "Administrador",
|
||||
"Help" => "Ayuda",
|
||||
"Access forbidden" => "Acceso denegado",
|
||||
"Cloud not found" => "No se encontró owncloud",
|
||||
"Edit categories" => "Editar categorías",
|
||||
"Add" => "Añadir",
|
||||
"Create an <strong>admin account</strong>" => "Creá una <strong>cuenta de administrador</strong>",
|
||||
"Advanced" => "Avanzado",
|
||||
"Data folder" => "Directorio de almacenamiento",
|
||||
"Configure the database" => "Configurar la base de datos",
|
||||
"will be used" => "se utilizarán",
|
||||
"Database user" => "Usuario de la base de datos",
|
||||
"Database password" => "Contraseña de la base de datos",
|
||||
"Database name" => "Nombre de la base de datos",
|
||||
"Database tablespace" => "Espacio de tablas de la base de datos",
|
||||
"Database host" => "Host de la base de datos",
|
||||
"Finish setup" => "Completar la instalación",
|
||||
"web services under your control" => "servicios web sobre los que tenés control",
|
||||
"Log out" => "Cerrar la sesión",
|
||||
"Lost your password?" => "¿Perdiste tu contraseña?",
|
||||
"remember" => "recordame",
|
||||
"Log in" => "Entrar",
|
||||
"You are logged out." => "Terminaste la sesión.",
|
||||
"prev" => "anterior",
|
||||
"next" => "siguiente"
|
||||
);
|
|
@ -15,13 +15,37 @@
|
|||
"October" => "Urria",
|
||||
"November" => "Azaroa",
|
||||
"December" => "Abendua",
|
||||
"Choose" => "Aukeratu",
|
||||
"Cancel" => "Ezeztatu",
|
||||
"No" => "Ez",
|
||||
"Yes" => "Bai",
|
||||
"Ok" => "Ados",
|
||||
"No categories selected for deletion." => "Ez da ezabatzeko kategoriarik hautatu.",
|
||||
"Error" => "Errorea",
|
||||
"Error while sharing" => "Errore bat egon da elkarbanatzean",
|
||||
"Error while unsharing" => "Errore bat egon da elkarbanaketa desegitean",
|
||||
"Error while changing permissions" => "Errore bat egon da baimenak aldatzean",
|
||||
"Shared with you and the group %s by %s" => "Zurekin eta %s taldearekin %sk elkarbanatuta",
|
||||
"Shared with you by %s" => "%sk zurekin elkarbanatuta",
|
||||
"Share with" => "Elkarbanatu honekin",
|
||||
"Share with link" => "Elkarbanatu lotura batekin",
|
||||
"Password protect" => "Babestu pasahitzarekin",
|
||||
"Password" => "Pasahitza",
|
||||
"Set expiration date" => "Ezarri muga data",
|
||||
"Expiration date" => "Muga data",
|
||||
"Share via email: %s" => "Elkarbanatu eposta bidez: %s",
|
||||
"No people found" => "Ez da inor aurkitu",
|
||||
"Resharing is not allowed" => "Berriz elkarbanatzea ez dago baimendua",
|
||||
"Shared in %s with %s" => "Elkarbanatuta hemen %s %srekin",
|
||||
"Unshare" => "Ez elkarbanatu",
|
||||
"can edit" => "editatu dezake",
|
||||
"access control" => "sarrera kontrola",
|
||||
"create" => "sortu",
|
||||
"update" => "eguneratu",
|
||||
"delete" => "ezabatu",
|
||||
"share" => "elkarbanatu",
|
||||
"Password protected" => "Pasahitzarekin babestuta",
|
||||
"Error setting expiration date" => "Errore bat egon da muga data ezartzean",
|
||||
"ownCloud password reset" => "ownCloud-en pasahitza berrezarri",
|
||||
"Use the following link to reset your password: {link}" => "Eribili hurrengo lotura zure pasahitza berrezartzeko: {link}",
|
||||
"You will receive a link to reset your password via Email." => "Zure pashitza berrezartzeko lotura bat jasoko duzu Epostaren bidez.",
|
||||
|
|
|
@ -15,13 +15,37 @@
|
|||
"October" => "octobre",
|
||||
"November" => "novembre",
|
||||
"December" => "décembre",
|
||||
"Choose" => "Choisir",
|
||||
"Cancel" => "Annuler",
|
||||
"No" => "Non",
|
||||
"Yes" => "Oui",
|
||||
"Ok" => "Ok",
|
||||
"No categories selected for deletion." => "Aucune catégorie sélectionnée pour suppression",
|
||||
"Error" => "Erreur",
|
||||
"Error while sharing" => "Erreur lors de la mise en partage",
|
||||
"Error while unsharing" => "Erreur lors de l'annulation du partage",
|
||||
"Error while changing permissions" => "Erreur lors du changement des permissions",
|
||||
"Shared with you and the group %s by %s" => "Partagé avec vous ainsi qu'avec le groupe %s par %s",
|
||||
"Shared with you by %s" => "Partagé avec vous par %s",
|
||||
"Share with" => "Partager avec",
|
||||
"Share with link" => "Partager via lien",
|
||||
"Password protect" => "Protéger par un mot de passe",
|
||||
"Password" => "Mot de passe",
|
||||
"Set expiration date" => "Spécifier la date d'expiration",
|
||||
"Expiration date" => "Date d'expiration",
|
||||
"Share via email: %s" => "Partager via email : %s",
|
||||
"No people found" => "Aucun utilisateur trouvé",
|
||||
"Resharing is not allowed" => "Le repartage n'est pas autorisé",
|
||||
"Shared in %s with %s" => "Partagé dans %s avec %s",
|
||||
"Unshare" => "Ne plus partager",
|
||||
"can edit" => "édition autorisée",
|
||||
"access control" => "contrôle des accès",
|
||||
"create" => "créer",
|
||||
"update" => "mettre à jour",
|
||||
"delete" => "supprimer",
|
||||
"share" => "partager",
|
||||
"Password protected" => "Protégé par un mot de passe",
|
||||
"Error setting expiration date" => "Erreur lors de la spécification de la date d'expiration",
|
||||
"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.",
|
||||
|
|
|
@ -27,12 +27,12 @@
|
|||
"Error while changing permissions" => "権限変更でエラー発生",
|
||||
"Shared with you and the group %s by %s" => "あなたと %s グループが %s で共有しています",
|
||||
"Shared with you by %s" => "あなたと %s で共有しています",
|
||||
"Share with" => "と共有",
|
||||
"Share with" => "共有者",
|
||||
"Share with link" => "URLリンクで共有",
|
||||
"Password protect" => "パスワード保護",
|
||||
"Password" => "パスワード",
|
||||
"Set expiration date" => "期限日設定",
|
||||
"Expiration date" => "期限日",
|
||||
"Set expiration date" => "有効期限を設定",
|
||||
"Expiration date" => "有効期限",
|
||||
"Share via email: %s" => "メール経由で共有: %s",
|
||||
"No people found" => "ユーザーが見つかりません",
|
||||
"Resharing is not allowed" => "再共有は許可されていません",
|
||||
|
@ -45,7 +45,7 @@
|
|||
"delete" => "削除",
|
||||
"share" => "共有",
|
||||
"Password protected" => "パスワード保護",
|
||||
"Error setting 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." => "メールでパスワードをリセットするリンクが届きます。",
|
||||
|
|
|
@ -15,13 +15,37 @@
|
|||
"October" => "Oktober",
|
||||
"November" => "November",
|
||||
"December" => "December",
|
||||
"Choose" => "Kies",
|
||||
"Cancel" => "Annuleren",
|
||||
"No" => "Nee",
|
||||
"Yes" => "Ja",
|
||||
"Ok" => "Ok",
|
||||
"No categories selected for deletion." => "Geen categorie geselecteerd voor verwijdering.",
|
||||
"Error" => "Fout",
|
||||
"Error while sharing" => "Fout tijdens het delen",
|
||||
"Error while unsharing" => "Fout tijdens het stoppen met delen",
|
||||
"Error while changing permissions" => "Fout tijdens het veranderen van permissies",
|
||||
"Shared with you and the group %s by %s" => "Gedeeld met u en de group %s door %s",
|
||||
"Shared with you by %s" => "Gedeeld met u door %s",
|
||||
"Share with" => "Deel met",
|
||||
"Share with link" => "Deel met link",
|
||||
"Password protect" => "Passeerwoord beveiliging",
|
||||
"Password" => "Wachtwoord",
|
||||
"Set expiration date" => "Zet vervaldatum",
|
||||
"Expiration date" => "Vervaldatum",
|
||||
"Share via email: %s" => "Deel via email: %s",
|
||||
"No people found" => "Geen mensen gevonden",
|
||||
"Resharing is not allowed" => "Verder delen is niet toegestaan",
|
||||
"Shared in %s with %s" => "Deel in %s met %s",
|
||||
"Unshare" => "Stop met delen",
|
||||
"can edit" => "kan wijzigen",
|
||||
"access control" => "toegangscontrole",
|
||||
"create" => "maak",
|
||||
"update" => "bijwerken",
|
||||
"delete" => "verwijderen",
|
||||
"share" => "deel",
|
||||
"Password protected" => "Passeerwoord beveiligd",
|
||||
"Error setting expiration date" => "Fout tijdens het configureren van de vervaldatum",
|
||||
"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 je wachtwoord opnieuw in te stellen via e-mail.",
|
||||
|
|
|
@ -15,13 +15,32 @@
|
|||
"October" => "Październik",
|
||||
"November" => "Listopad",
|
||||
"December" => "Grudzień",
|
||||
"Choose" => "Wybierz",
|
||||
"Cancel" => "Anuluj",
|
||||
"No" => "Nie",
|
||||
"Yes" => "Tak",
|
||||
"Ok" => "Ok",
|
||||
"No categories selected for deletion." => "Nie ma kategorii zaznaczonych do usunięcia.",
|
||||
"Error" => "Błąd",
|
||||
"Error while sharing" => "Błąd podczas współdzielenia",
|
||||
"Error while changing permissions" => "Błąd przy zmianie uprawnień",
|
||||
"Share with" => "Współdziel z",
|
||||
"Share with link" => "Współdziel z link",
|
||||
"Password protect" => "Zabezpieczone hasłem",
|
||||
"Password" => "Hasło",
|
||||
"Set expiration date" => "Ustaw datę wygaśnięcia",
|
||||
"Expiration date" => "Data wygaśnięcia",
|
||||
"Share via email: %s" => "Współdziel przez email: %s",
|
||||
"No people found" => "Nie znaleziono ludzi",
|
||||
"Resharing is not allowed" => "Współdzielenie nie jest możliwe",
|
||||
"can edit" => "można edytować",
|
||||
"access control" => "kontrola dostępu",
|
||||
"create" => "utwórz",
|
||||
"update" => "uaktualnij",
|
||||
"delete" => "usuń",
|
||||
"share" => "współdziel",
|
||||
"Password protected" => "Zabezpieczone hasłem",
|
||||
"Error setting expiration date" => "Błąd podczas ustawiania daty wygaśnięcia",
|
||||
"ownCloud password reset" => "restart hasła",
|
||||
"Use the following link to reset your password: {link}" => "Proszę użyć tego odnośnika do zresetowania hasła: {link}",
|
||||
"You will receive a link to reset your password via Email." => "Odnośnik służący do resetowania hasła zostanie wysłany na adres e-mail.",
|
||||
|
|
|
@ -15,13 +15,37 @@
|
|||
"October" => "Outubro",
|
||||
"November" => "Novembro",
|
||||
"December" => "Dezembro",
|
||||
"Choose" => "Escolha",
|
||||
"Cancel" => "Cancelar",
|
||||
"No" => "Não",
|
||||
"Yes" => "Sim",
|
||||
"Ok" => "Ok",
|
||||
"No categories selected for deletion." => "Nenhuma categoria selecionada para deletar.",
|
||||
"Error" => "Erro",
|
||||
"Error while sharing" => "Erro ao compartilhar",
|
||||
"Error while unsharing" => "Erro ao descompartilhar",
|
||||
"Error while changing permissions" => "Erro ao mudar permissões",
|
||||
"Shared with you and the group %s by %s" => "Compartilhado com você e o grupo %s por %s",
|
||||
"Shared with you by %s" => "Compartilhado com você por %s",
|
||||
"Share with" => "Compartilhar com",
|
||||
"Share with link" => "Compartilhar com link",
|
||||
"Password protect" => "Proteger com senha",
|
||||
"Password" => "Senha",
|
||||
"Set expiration date" => "Definir data de expiração",
|
||||
"Expiration date" => "Data de expiração",
|
||||
"Share via email: %s" => "Compartilhar via email: %s",
|
||||
"No people found" => "Nenhuma pessoa encontrada",
|
||||
"Resharing is not allowed" => "Não é permitido re-compartilhar",
|
||||
"Shared in %s with %s" => "Compartilhado em %s com %s",
|
||||
"Unshare" => "Descompartilhar",
|
||||
"can edit" => "pode editar",
|
||||
"access control" => "controle de acesso",
|
||||
"create" => "criar",
|
||||
"update" => "atualizar",
|
||||
"delete" => "remover",
|
||||
"share" => "compartilhar",
|
||||
"Password protected" => "Protegido com senha",
|
||||
"Error setting expiration date" => "Erro ao definir data de expiração",
|
||||
"ownCloud password reset" => "Redefinir senha ownCloud",
|
||||
"Use the following link to reset your password: {link}" => "Use o seguinte link para redefinir sua senha: {link}",
|
||||
"You will receive a link to reset your password via Email." => "Você receberá um link para redefinir sua senha via e-mail.",
|
||||
|
@ -50,6 +74,7 @@
|
|||
"Database user" => "Usuário de banco de dados",
|
||||
"Database password" => "Senha do banco de dados",
|
||||
"Database name" => "Nome do banco de dados",
|
||||
"Database tablespace" => "Espaço de tabela do banco de dados",
|
||||
"Database host" => "Banco de dados do host",
|
||||
"Finish setup" => "Concluir configuração",
|
||||
"web services under your control" => "web services sob seu controle",
|
||||
|
|
|
@ -15,13 +15,26 @@
|
|||
"October" => "Октябрь",
|
||||
"November" => "Ноябрь",
|
||||
"December" => "Декабрь",
|
||||
"Choose" => "Выбрать",
|
||||
"Cancel" => "Отмена",
|
||||
"No" => "Нет",
|
||||
"Yes" => "Да",
|
||||
"Ok" => "Да",
|
||||
"No categories selected for deletion." => "Нет категорий, выбранных для удаления.",
|
||||
"Error" => "Ошибка",
|
||||
"Error while sharing" => "Ошибка создания общего доступа",
|
||||
"Error while unsharing" => "Ошибка отключения общего доступа",
|
||||
"Error while changing permissions" => "Ошибка при изменении прав доступа",
|
||||
"Shared with you and the group %s by %s" => "Общий доступ для Вас и группы %s к %s",
|
||||
"Password protect" => "Защитить паролем",
|
||||
"Password" => "Пароль",
|
||||
"No people found" => "Не найдено людей",
|
||||
"Unshare" => "Отключить общий доступ",
|
||||
"access control" => "контроль доступа",
|
||||
"create" => "создать",
|
||||
"update" => "обновить",
|
||||
"delete" => "удалить",
|
||||
"share" => "сделать общим",
|
||||
"ownCloud password reset" => "Переназначение пароля",
|
||||
"Use the following link to reset your password: {link}" => "Воспользуйтесь следующей ссылкой для переназначения пароля: {link}",
|
||||
"You will receive a link to reset your password via Email." => "Вы получите ссылку для восстановления пароля по электронной почте.",
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue