Merge branch 'master' of github.com:owncloud/core into vcategories_db

This commit is contained in:
Thomas Tanghus 2012-09-30 06:51:40 +02:00
commit 241862756e
668 changed files with 22540 additions and 7744 deletions

View File

@ -12,6 +12,12 @@ ownCloud is written by:
Marvin Thomas Rabe Marvin Thomas Rabe
Florian Pritz Florian Pritz
Bartek Przybylski Bartek Przybylski
Thomas Müller
Klaas Freitag
Sam Tuke
Simon Birnbach
Lukas Reschke
Christian Reiner
With help from many libraries and frameworks including: With help from many libraries and frameworks including:

View File

@ -1 +0,0 @@

View File

@ -7,15 +7,15 @@ OCP\JSON::checkLoggedIn();
OCP\JSON::callCheck(); OCP\JSON::callCheck();
// Get data // Get data
$dir = stripslashes($_GET["dir"]); $dir = stripslashes($_POST["dir"]);
$files = isset($_GET["file"]) ? stripslashes($_GET["file"]) : stripslashes($_GET["files"]); $files = isset($_POST["file"]) ? stripslashes($_POST["file"]) : stripslashes($_POST["files"]);
$files = explode(';', $files); $files = explode(';', $files);
$filesWithError = ''; $filesWithError = '';
$success = true; $success = true;
//Now delete //Now delete
foreach($files as $file) { foreach($files as $file) {
if( !OC_Files::delete( $dir, $file )) { if( !OC_Files::delete( $dir, $file )) {
$filesWithError .= $file . "\n"; $filesWithError .= $file . "\n";
$success = false; $success = false;
} }

View File

@ -66,8 +66,10 @@ if($source) {
$target=$dir.'/'.$filename; $target=$dir.'/'.$filename;
$result=OC_Filesystem::file_put_contents($target, $sourceStream); $result=OC_Filesystem::file_put_contents($target, $sourceStream);
if($result) { if($result) {
$mime=OC_Filesystem::getMimetype($target); $meta = OC_FileCache::get($target);
$eventSource->send('success', array('mime'=>$mime, 'size'=>OC_Filesystem::filesize($target))); $mime=$meta['mimetype'];
$id = OC_FileCache::getId($target);
$eventSource->send('success', array('mime'=>$mime, 'size'=>OC_Filesystem::filesize($target), 'id' => $id));
} else { } else {
$eventSource->send('error', "Error while downloading ".$source. ' to '.$target); $eventSource->send('error', "Error while downloading ".$source. ' to '.$target);
} }
@ -76,11 +78,15 @@ if($source) {
} else { } else {
if($content) { if($content) {
if(OC_Filesystem::file_put_contents($dir.'/'.$filename, $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(); exit();
} }
}elseif(OC_Files::newFile($dir, $filename, 'file')) { }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(); exit();
} }
} }

View File

@ -50,7 +50,8 @@ if(strpos($dir, '..') === false) {
$target = OCP\Files::buildNotExistingFileName(stripslashes($dir), $files['name'][$i]); $target = OCP\Files::buildNotExistingFileName(stripslashes($dir), $files['name'][$i]);
if(is_uploaded_file($files['tmp_name'][$i]) and OC_Filesystem::fromTmpFile($files['tmp_name'][$i], $target)) { if(is_uploaded_file($files['tmp_name'][$i]) and OC_Filesystem::fromTmpFile($files['tmp_name'][$i], $target)) {
$meta = OC_FileCache::get($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); OCP\JSON::encodedPrint($result);

View File

@ -1,14 +1,16 @@
<?php <?php
// fix webdav properties, remove namespace information between curly bracket (update from OC4 to OC5) // fix webdav properties,add namespace in front of the property, update for OC4.5
$installedVersion=OCP\Config::getAppValue('files', 'installed_version'); $installedVersion=OCP\Config::getAppValue('files', 'installed_version');
if (version_compare($installedVersion, '1.1.4', '<')) { if (version_compare($installedVersion, '1.1.6', '<')) {
$query = OC_DB::prepare( "SELECT `propertyname`, `propertypath`, `userid` FROM `*PREFIX*properties`" ); $query = OC_DB::prepare( "SELECT propertyname, propertypath, userid FROM `*PREFIX*properties`" );
$result = $query->execute(); $result = $query->execute();
while( $row = $result->fetchRow()) { while( $row = $result->fetchRow()){
$query = OC_DB::prepare( 'UPDATE `*PREFIX*properties` SET `propertyname` = ? WHERE `userid` = ? AND `propertypath` = ?' ); if ( $row["propertyname"][0] != '{' ) {
$query->execute( array( preg_replace("/^{.*}/", "", $row["propertyname"]),$row["userid"], $row["propertypath"] )); $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 //update from OC 3

View File

@ -1 +1 @@
1.1.5 1.1.6

View File

@ -3,7 +3,7 @@
See the COPYING-README file. */ See the COPYING-README file. */
/* FILE MENU */ /* 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; } .actions input, .actions button, .actions .button { margin:0; }
#file_menu { right:0; position:absolute; top:0; } #file_menu { right:0; position:absolute; top:0; }
#file_menu a { display:block; float:left; background-image:none; text-decoration:none; } #file_menu a { display:block; float:left; background-image:none; text-decoration:none; }
@ -12,14 +12,15 @@
.file_upload_wrapper, #file_newfolder_name { background-repeat:no-repeat; background-position:.5em .5em; padding-left:2em; } .file_upload_wrapper, #file_newfolder_name { background-repeat:no-repeat; background-position:.5em .5em; padding-left:2em; }
.file_upload_wrapper { font-weight:bold; display:-moz-inline-box; /* fallback for older firefox versions*/ display:inline-block; padding-left:0; overflow:hidden; position:relative; margin:0;} .file_upload_wrapper { font-weight:bold; display:-moz-inline-box; /* fallback for older firefox versions*/ display:inline-block; padding-left:0; overflow:hidden; position:relative; margin:0;}
.file_upload_wrapper .file_upload_button_wrapper { position:absolute; top:0; left:0; width:100%; height:100%; cursor:pointer; z-index:1000; } .file_upload_wrapper .file_upload_button_wrapper { position:absolute; top:0; left:0; width:100%; height:100%; cursor:pointer; z-index:1000; }
#new { float:left; border-top-right-radius:0; border-bottom-right-radius:0; margin:0 0 0 1em; border-right:none; z-index:1010; height:1.3em; } #new { background-color:#5bb75b; float:left; border-top-right-radius:0; border-bottom-right-radius:0; margin:0 0 0 1em; border-right:none; z-index:1010; height:1.3em; }
#new:hover, a.file_upload_button_wrapper:hover + button.file_upload_filename { background-color:#4b964b; }
#new.active { border-bottom-left-radius:0; border-bottom:none; } #new.active { border-bottom-left-radius:0; border-bottom:none; }
#new>a { padding:.5em 1.2em .3em; color:#fff; text-shadow:0 1px 0 #51a351; } #new>a { padding:.5em 1.2em .3em; color:#fff; text-shadow:0 1px 0 #51a351; }
#new>ul { display:none; position:fixed; text-align:left; padding:.5em; background:#f8f8f8; margin-top:0.075em; border:1px solid #ddd; min-width:7em; margin-left:-.5em; z-index:-1; } #new>ul { display:none; position:fixed; text-align:left; padding:.5em; background:#f8f8f8; margin-top:0.075em; border:1px solid #ddd; min-width:7em; margin-left:-.5em; z-index:-1; }
#new>ul>li { margin:.3em; padding-left:2em; background-repeat:no-repeat; cursor:pointer; padding-bottom:0.1em } #new>ul>li { margin:.3em; padding-left:2em; background-repeat:no-repeat; cursor:pointer; padding-bottom:0.1em }
#new>ul>li>p { cursor:pointer; } #new>ul>li>p { cursor:pointer; }
#new>ul>li>input { padding:0.3em; margin:-0.3em; } #new>ul>li>input { padding:0.3em; margin:-0.3em; }
#new, .file_upload_filename { background:#5bb75b; border:1px solid; border-color:#51a351 #419341 #387038; -moz-box-shadow:0 1px 1px #f8f8f8, 1px 1px 1px #ada inset; -webkit-box-shadow:0 1px 1px #f8f8f8, 1px 1px 1px #ada inset; box-shadow:0 1px 1px #f8f8f8, 1px 1px 1px #ada inset; } #new, .file_upload_filename { border:1px solid; border-color:#51a351 #419341 #387038; -moz-box-shadow:0 1px 1px #f8f8f8, 1px 1px 1px #ada inset; -webkit-box-shadow:0 1px 1px #f8f8f8, 1px 1px 1px #ada inset; box-shadow:0 1px 1px #f8f8f8, 1px 1px 1px #ada inset; }
#new .popup { border-top-left-radius:0; } #new .popup { border-top-left-radius:0; }
#file_newfolder_name { background-image:url('%webroot%/core/img/places/folder.svg'); font-weight:normal; width:7em; } #file_newfolder_name { background-image:url('%webroot%/core/img/places/folder.svg'); font-weight:normal; width:7em; }
@ -29,8 +30,7 @@
.file_upload_start { -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; filter:alpha(opacity=0); opacity:0; z-index:1; position:absolute; left:0; top:0; width:100%; cursor:pointer;} .file_upload_start { -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; filter:alpha(opacity=0); opacity:0; z-index:1; position:absolute; left:0; top:0; width:100%; cursor:pointer;}
.file_upload_filename.active { border-bottom-right-radius:0 } .file_upload_filename.active { border-bottom-right-radius:0 }
.file_upload_filename { z-index:100; padding-left: 0.8em; padding-right: 0.8em; cursor:pointer; border-top-left-radius:0; border-bottom-left-radius:0; } .file_upload_filename { background-color:#5bb75b; z-index:100; cursor:pointer; border-top-left-radius:0; border-bottom-left-radius:0; background-image: url('%webroot%/core/img/actions/upload-white.svg'); background-repeat: no-repeat; background-position: center; height: 2.29em; width: 2.5em; }
.file_upload_filename img { position: absolute; top: 0.4em; left: 0.4em; -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; filter:alpha(opacity=100); opacity:1; }
#upload { position:absolute; right:13.5em; top:0em; } #upload { position:absolute; right:13.5em; top:0em; }
#upload #uploadprogressbar { position:relative; display:inline-block; width:10em; height:1.5em; top:.4em; } #upload #uploadprogressbar { position:relative; display:inline-block; width:10em; height:1.5em; top:.4em; }
@ -87,3 +87,6 @@ a.action>img { max-height:16px; max-width:16px; vertical-align:text-bottom; }
#navigation>ul>li:first-child+li { padding-top:2.9em; } #navigation>ul>li:first-child+li { padding-top:2.9em; }
#scanning-message{ top:40%; left:40%; position:absolute; display:none; } #scanning-message{ top:40%; left:40%; position:absolute; display:none; }
div.crumb a{ padding: 0.9em 0 0.7em 0; }

View File

@ -157,7 +157,7 @@ $(document).ready(function(){
var downloadScope = 'file'; var downloadScope = 'file';
} }
FileActions.register(downloadScope,'Download', OC.PERMISSION_READ, function(){return OC.imagePath('core','actions/download');},function(filename){ FileActions.register(downloadScope,'Download', OC.PERMISSION_READ, function(){return OC.imagePath('core','actions/download');},function(filename){
window.location=OC.filePath('files', 'ajax', 'download.php') + encodeURIComponent('?files='+encodeURIComponent(filename)+'&dir='+encodeURIComponent($('#dir').val())); window.location=OC.filePath('files', 'ajax', 'download.php') + '&files='+encodeURIComponent(filename)+'&dir='+encodeURIComponent($('#dir').val());
}); });
}); });
@ -179,6 +179,7 @@ FileActions.register('all','Delete', OC.PERMISSION_DELETE, function(){return OC.
$('.tipsy').remove(); $('.tipsy').remove();
}); });
// t('files', 'Rename')
FileActions.register('all','Rename', OC.PERMISSION_UPDATE, function(){return OC.imagePath('core','actions/rename');},function(filename){ FileActions.register('all','Rename', OC.PERMISSION_UPDATE, function(){return OC.imagePath('core','actions/rename');},function(filename){
FileList.rename(filename); FileList.rename(filename);
}); });

View File

@ -4,14 +4,15 @@ var FileList={
$('#fileList').empty().html(fileListHtml); $('#fileList').empty().html(fileListHtml);
}, },
addFile:function(name,size,lastModified,loading,hidden){ addFile:function(name,size,lastModified,loading,hidden){
var img=(loading)?OC.imagePath('core', 'loading.gif'):OC.imagePath('core', 'filetypes/file.png'); var basename, extension, simpleSize, sizeColor, lastModifiedTime, modifiedColor,
var html='<tr data-type="file" data-size="'+size+'" data-permissions="'+$('#permissions').val()+'">'; img=(loading)?OC.imagePath('core', 'loading.gif'):OC.imagePath('core', 'filetypes/file.png'),
html='<tr data-type="file" data-size="'+size+'" data-permissions="'+$('#permissions').val()+'">';
if(name.indexOf('.')!=-1){ if(name.indexOf('.')!=-1){
var basename=name.substr(0,name.lastIndexOf('.')); basename=name.substr(0,name.lastIndexOf('.'));
var extension=name.substr(name.lastIndexOf('.')); extension=name.substr(name.lastIndexOf('.'));
}else{ }else{
var basename=name; basename=name;
var extension=false; extension=false;
} }
html+='<td class="filename" style="background-image:url('+img+')"><input type="checkbox" />'; html+='<td class="filename" style="background-image:url('+img+')"><input type="checkbox" />';
html+='<a class="name" href="download.php?file='+$('#dir').val().replace(/</, '&lt;').replace(/>/, '&gt;')+'/'+name+'"><span class="nametext">'+basename; html+='<a class="name" href="download.php?file='+$('#dir').val().replace(/</, '&lt;').replace(/>/, '&gt;')+'/'+name+'"><span class="nametext">'+basename;
@ -41,10 +42,11 @@ var FileList={
} }
}, },
addDir:function(name,size,lastModified,hidden){ addDir:function(name,size,lastModified,hidden){
var html, td, link_elem, sizeColor, lastModifiedTime, modifiedColor;
html = $('<tr></tr>').attr({ "data-type": "dir", "data-size": size, "data-file": name, "data-permissions": $('#permissions').val()}); html = $('<tr></tr>').attr({ "data-type": "dir", "data-size": size, "data-file": name, "data-permissions": $('#permissions').val()});
td = $('<td></td>').attr({"class": "filename", "style": 'background-image:url('+OC.imagePath('core', 'filetypes/folder.png')+')' }); td = $('<td></td>').attr({"class": "filename", "style": 'background-image:url('+OC.imagePath('core', 'filetypes/folder.png')+')' });
td.append('<input type="checkbox" />'); td.append('<input type="checkbox" />');
var link_elem = $('<a></a>').attr({ "class": "name", "href": OC.linkTo('files', 'index.php')+"&dir="+ encodeURIComponent($('#dir').val()+'/'+name).replace(/%2F/g, '/') }); link_elem = $('<a></a>').attr({ "class": "name", "href": OC.linkTo('files', 'index.php')+"&dir="+ encodeURIComponent($('#dir').val()+'/'+name).replace(/%2F/g, '/') });
link_elem.append($('<span></span>').addClass('nametext').text(name)); link_elem.append($('<span></span>').addClass('nametext').text(name));
link_elem.append($('<span></span>').attr({'class': 'uploadtext', 'currentUploads': 0})); link_elem.append($('<span></span>').attr({'class': 'uploadtext', 'currentUploads': 0}));
td.append(link_elem); td.append(link_elem);
@ -71,7 +73,7 @@ var FileList={
} }
}, },
refresh:function(data) { refresh:function(data) {
result = jQuery.parseJSON(data.responseText); var result = jQuery.parseJSON(data.responseText);
if(typeof(result.data.breadcrumb) != 'undefined'){ if(typeof(result.data.breadcrumb) != 'undefined'){
updateBreadcrumb(result.data.breadcrumb); updateBreadcrumb(result.data.breadcrumb);
} }
@ -88,14 +90,13 @@ var FileList={
}, },
insertElement:function(name,type,element){ insertElement:function(name,type,element){
//find the correct spot to insert the file or folder //find the correct spot to insert the file or folder
var fileElements=$('tr[data-file][data-type="'+type+'"]:visible'); var pos, fileElements=$('tr[data-file][data-type="'+type+'"]:visible');
var pos;
if(name.localeCompare($(fileElements[0]).attr('data-file'))<0){ if(name.localeCompare($(fileElements[0]).attr('data-file'))<0){
pos=-1; pos=-1;
}else if(name.localeCompare($(fileElements[fileElements.length-1]).attr('data-file'))>0){ }else if(name.localeCompare($(fileElements[fileElements.length-1]).attr('data-file'))>0){
pos=fileElements.length-1; pos=fileElements.length-1;
}else{ }else{
for(var pos=0;pos<fileElements.length-1;pos++){ for(pos=0;pos<fileElements.length-1;pos++){
if(name.localeCompare($(fileElements[pos]).attr('data-file'))>0 && name.localeCompare($(fileElements[pos+1]).attr('data-file'))<0){ if(name.localeCompare($(fileElements[pos]).attr('data-file'))>0 && name.localeCompare($(fileElements[pos+1]).attr('data-file'))<0){
break; break;
} }
@ -116,9 +117,9 @@ var FileList={
$('.file_upload_filename').removeClass('highlight'); $('.file_upload_filename').removeClass('highlight');
}, },
loadingDone:function(name){ loadingDone:function(name){
var tr=$('tr').filterAttr('data-file',name); var mime, tr=$('tr').filterAttr('data-file',name);
tr.data('loading',false); tr.data('loading',false);
var mime=tr.data('mime'); mime=tr.data('mime');
tr.attr('data-mime',mime); tr.attr('data-mime',mime);
getMimeIcon(mime,function(path){ getMimeIcon(mime,function(path){
tr.find('td.filename').attr('style','background-image:url('+path+')'); tr.find('td.filename').attr('style','background-image:url('+path+')');
@ -129,14 +130,15 @@ var FileList={
return $('tr').filterAttr('data-file',name).data('loading'); return $('tr').filterAttr('data-file',name).data('loading');
}, },
rename:function(name){ rename:function(name){
var tr=$('tr').filterAttr('data-file',name); var tr, td, input, form;
tr=$('tr').filterAttr('data-file',name);
tr.data('renaming',true); tr.data('renaming',true);
var td=tr.children('td.filename'); td=tr.children('td.filename');
var input=$('<input class="filename"></input>').val(name); input=$('<input class="filename"></input>').val(name);
var form=$('<form></form>') form=$('<form></form>');
form.append(input); form.append(input);
td.children('a.name').text(''); td.children('a.name').text('');
td.children('a.name').append(form) td.children('a.name').append(form);
input.focus(); input.focus();
form.submit(function(event){ form.submit(function(event){
event.stopPropagation(); event.stopPropagation();
@ -145,31 +147,33 @@ var FileList={
if (newname != name) { if (newname != name) {
if (FileList.checkName(name, newname, false)) { if (FileList.checkName(name, newname, false)) {
newname = name; newname = name;
} else { } else {
$.get(OC.filePath('files','ajax','rename.php'), { dir : $('#dir').val(), newname: newname, file: name },function(result) { $.get(OC.filePath('files','ajax','rename.php'), { dir : $('#dir').val(), newname: newname, file: name },function(result) {
if (!result || result.status == 'error') { if (!result || result.status == 'error') {
OC.dialogs.alert(result.data.message, 'Error moving file'); OC.dialogs.alert(result.data.message, 'Error moving file');
newname = name; newname = name;
} }
tr.data('renaming',false);
}); });
}
tr.attr('data-file', newname);
var path = td.children('a.name').attr('href');
td.children('a.name').attr('href', path.replace(encodeURIComponent(name), encodeURIComponent(newname)));
if (newname.indexOf('.') > 0 && tr.data('type') != 'dir') {
var basename=newname.substr(0,newname.lastIndexOf('.'));
} else {
var basename=newname;
}
td.children('a.name').empty();
var span=$('<span class="nametext"></span>');
span.text(basename);
td.children('a.name').append(span);
if (newname.indexOf('.') > 0 && tr.data('type') != 'dir') {
span.append($('<span class="extension">'+newname.substr(newname.lastIndexOf('.'))+'</span>'));
} }
} }
tr.attr('data-file', newname);
var path = td.children('a.name').attr('href');
td.children('a.name').attr('href', path.replace(encodeURIComponent(name), encodeURIComponent(newname)));
if (newname.indexOf('.') > 0) {
var basename=newname.substr(0,newname.lastIndexOf('.'));
} else {
var basename=newname;
}
td.children('a.name').empty();
var span=$('<span class="nametext"></span>');
span.text(basename);
td.children('a.name').append(span);
if (newname.indexOf('.') > 0) {
span.append($('<span class="extension">'+newname.substr(newname.lastIndexOf('.'))+'</span>'));
}
tr.data('renaming',false);
return false; return false;
}); });
input.click(function(event){ input.click(function(event){
@ -255,21 +259,23 @@ var FileList={
}, },
do_delete:function(files){ do_delete:function(files){
// Finish any existing actions // Finish any existing actions
if (FileList.lastAction || !FileList.useUndo) { if (FileList.lastAction) {
if(!FileList.deleteFiles) {
FileList.prepareDeletion(files);
}
FileList.lastAction(); FileList.lastAction();
return;
} }
FileList.prepareDeletion(files); FileList.prepareDeletion(files);
// NOTE: Temporary fix to change the text to unshared for files in root of Shared folder
if ($('#dir').val() == '/Shared') { if (!FileList.useUndo) {
$('#notification').html(t('files', 'unshared')+' '+files+'<span class="undo">'+t('files', 'undo')+'</span>'); FileList.lastAction();
} else { } else {
$('#notification').html(t('files', 'deleted')+' '+files+'<span class="undo">'+t('files', 'undo')+'</span>'); // NOTE: Temporary fix to change the text to unshared for files in root of Shared folder
if ($('#dir').val() == '/Shared') {
$('#notification').html(t('files', 'unshared')+' '+files+'<span class="undo">'+t('files', 'undo')+'</span>');
} else {
$('#notification').html(t('files', 'deleted')+' '+files+'<span class="undo">'+t('files', 'undo')+'</span>');
}
$('#notification').fadeIn();
} }
$('#notification').fadeIn();
}, },
finishDelete:function(ready,sync){ finishDelete:function(ready,sync){
if(!FileList.deleteCanceled && FileList.deleteFiles){ if(!FileList.deleteCanceled && FileList.deleteFiles){
@ -277,6 +283,7 @@ var FileList={
$.ajax({ $.ajax({
url: OC.filePath('files', 'ajax', 'delete.php'), url: OC.filePath('files', 'ajax', 'delete.php'),
async:!sync, async:!sync,
type:'post',
data: {dir:$('#dir').val(),files:fileNames}, data: {dir:$('#dir').val(),files:fileNames},
complete: function(data){ complete: function(data){
boolOperationFinished(data, function(){ boolOperationFinished(data, function(){
@ -312,7 +319,7 @@ var FileList={
FileList.finishDelete(null, true); FileList.finishDelete(null, true);
}; };
} }
} };
$(document).ready(function(){ $(document).ready(function(){
$('#notification').hide(); $('#notification').hide();
@ -358,7 +365,7 @@ $(document).ready(function(){
FileList.finishDelete(null, true); FileList.finishDelete(null, true);
} }
}); });
FileList.useUndo=('onbeforeunload' in window) FileList.useUndo=(window.onbeforeunload)?true:false;
$(window).bind('beforeunload', function (){ $(window).bind('beforeunload', function (){
if (FileList.lastAction) { if (FileList.lastAction) {
FileList.lastAction(); FileList.lastAction();

View File

@ -336,7 +336,7 @@ $(document).ready(function() {
if(response[0] != undefined && response[0].status == 'success') { if(response[0] != undefined && response[0].status == 'success') {
var file=response[0]; var file=response[0];
delete uploadingFiles[file.name]; 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(); var size = $('tr').filterAttr('data-file',file.name).find('td.filesize').text();
if(size==t('files','Pending')){ if(size==t('files','Pending')){
$('tr').filterAttr('data-file',file.name).find('td.filesize').text(file.size); $('tr').filterAttr('data-file',file.name).find('td.filesize').text(file.size);
@ -356,16 +356,17 @@ $(document).ready(function() {
$('#notification').fadeIn(); $('#notification').fadeIn();
} }
}); });
uploadingFiles[files[i].name] = jqXHR; uploadingFiles[uniqueName] = jqXHR;
} }
} }
}else{ }else{
data.submit().success(function(data, status) { data.submit().success(function(data, status) {
response = jQuery.parseJSON(data[0].body.innerText); // in safari data is a string
response = jQuery.parseJSON(typeof data === 'string' ? data : data[0].body.innerText);
if(response[0] != undefined && response[0].status == 'success') { if(response[0] != undefined && response[0].status == 'success') {
var file=response[0]; var file=response[0];
delete uploadingFiles[file.name]; 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(); var size = $('tr').filterAttr('data-file',file.name).find('td.filesize').text();
if(size==t('files','Pending')){ if(size==t('files','Pending')){
$('tr').filterAttr('data-file',file.name).find('td.filesize').text(file.size); $('tr').filterAttr('data-file',file.name).find('td.filesize').text(file.size);
@ -511,7 +512,7 @@ $(document).ready(function() {
var date=new Date(); var date=new Date();
FileList.addFile(name,0,date,false,hidden); FileList.addFile(name,0,date,false,hidden);
var tr=$('tr').filterAttr('data-file',name); 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){ getMimeIcon('text/plain',function(path){
tr.find('td.filename').attr('style','background-image:url('+path+')'); tr.find('td.filename').attr('style','background-image:url('+path+')');
}); });
@ -559,11 +560,12 @@ $(document).ready(function() {
eventSource.listen('success',function(data){ eventSource.listen('success',function(data){
var mime=data.mime; var mime=data.mime;
var size=data.size; var size=data.size;
var id=data.id;
$('#uploadprogressbar').fadeOut(); $('#uploadprogressbar').fadeOut();
var date=new Date(); var date=new Date();
FileList.addFile(localName,size,date,false,hidden); FileList.addFile(localName,size,date,false,hidden);
var tr=$('tr').filterAttr('data-file',localName); var tr=$('tr').filterAttr('data-file',localName);
tr.data('mime',mime); tr.data('mime',mime).data('id',id);
getMimeIcon(mime,function(path){ getMimeIcon(mime,function(path){
tr.find('td.filename').attr('style','background-image:url('+path+')'); tr.find('td.filename').attr('style','background-image:url('+path+')');
}); });

View File

@ -7,6 +7,7 @@
"Missing a temporary folder" => "المجلد المؤقت غير موجود", "Missing a temporary folder" => "المجلد المؤقت غير موجود",
"Files" => "الملفات", "Files" => "الملفات",
"Delete" => "محذوف", "Delete" => "محذوف",
"Name" => "الاسم",
"Size" => "حجم", "Size" => "حجم",
"Modified" => "معدل", "Modified" => "معدل",
"Maximum upload size" => "الحد الأقصى لحجم الملفات التي يمكن رفعها", "Maximum upload size" => "الحد الأقصى لحجم الملفات التي يمكن رفعها",
@ -15,7 +16,6 @@
"Folder" => "مجلد", "Folder" => "مجلد",
"Upload" => "إرفع", "Upload" => "إرفع",
"Nothing in here. Upload something!" => "لا يوجد شيء هنا. إرفع بعض الملفات!", "Nothing in here. Upload something!" => "لا يوجد شيء هنا. إرفع بعض الملفات!",
"Name" => "الاسم",
"Download" => "تحميل", "Download" => "تحميل",
"Upload too large" => "حجم الترفيع أعلى من المسموح", "Upload too large" => "حجم الترفيع أعلى من المسموح",
"The files you are trying to upload exceed the maximum size for file uploads on this server." => "حجم الملفات التي تريد ترفيعها أعلى من المسموح على الخادم." "The files you are trying to upload exceed the maximum size for file uploads on this server." => "حجم الملفات التي تريد ترفيعها أعلى من المسموح على الخادم."

View File

@ -11,6 +11,7 @@
"Upload Error" => "Грешка при качване", "Upload Error" => "Грешка при качване",
"Upload cancelled." => "Качването е отменено.", "Upload cancelled." => "Качването е отменено.",
"Invalid name, '/' is not allowed." => "Неправилно име \"/\" не е позволено.", "Invalid name, '/' is not allowed." => "Неправилно име \"/\" не е позволено.",
"Name" => "Име",
"Size" => "Размер", "Size" => "Размер",
"Modified" => "Променено", "Modified" => "Променено",
"folder" => "папка", "folder" => "папка",
@ -25,7 +26,6 @@
"Upload" => "Качване", "Upload" => "Качване",
"Cancel upload" => "Отказване на качването", "Cancel upload" => "Отказване на качването",
"Nothing in here. Upload something!" => "Няма нищо, качете нещо!", "Nothing in here. Upload something!" => "Няма нищо, качете нещо!",
"Name" => "Име",
"Share" => "Споделяне", "Share" => "Споделяне",
"Download" => "Изтегляне", "Download" => "Изтегляне",
"Upload too large" => "Файлът е прекалено голям", "Upload too large" => "Файлът е прекалено голям",

View File

@ -25,6 +25,9 @@
"Upload cancelled." => "La pujada s'ha cancel·lat.", "Upload cancelled." => "La pujada s'ha cancel·lat.",
"File upload is in progress. Leaving the page now will cancel the upload." => "Hi ha una pujada en curs. Si abandoneu la pàgina la pujada es cancel·larà.", "File upload is in progress. Leaving the page now will cancel the upload." => "Hi ha una pujada en curs. Si abandoneu la pàgina la pujada es cancel·larà.",
"Invalid name, '/' is not allowed." => "El nom no és vàlid, no es permet '/'.", "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", "Size" => "Mida",
"Modified" => "Modificat", "Modified" => "Modificat",
"folder" => "carpeta", "folder" => "carpeta",
@ -46,7 +49,6 @@
"Upload" => "Puja", "Upload" => "Puja",
"Cancel upload" => "Cancel·la la pujada", "Cancel upload" => "Cancel·la la pujada",
"Nothing in here. Upload something!" => "Res per aquí. Pugeu alguna cosa!", "Nothing in here. Upload something!" => "Res per aquí. Pugeu alguna cosa!",
"Name" => "Nom",
"Share" => "Comparteix", "Share" => "Comparteix",
"Download" => "Baixa", "Download" => "Baixa",
"Upload too large" => "La pujada és massa gran", "Upload too large" => "La pujada és massa gran",

View File

@ -9,6 +9,7 @@
"Files" => "Soubory", "Files" => "Soubory",
"Unshare" => "Zrušit sdílení", "Unshare" => "Zrušit sdílení",
"Delete" => "Smazat", "Delete" => "Smazat",
"Rename" => "Přejmenovat",
"already exists" => "již existuje", "already exists" => "již existuje",
"replace" => "nahradit", "replace" => "nahradit",
"suggest name" => "navrhnout název", "suggest name" => "navrhnout název",
@ -22,15 +23,30 @@
"Unable to upload your file as it is a directory or has 0 bytes" => "Nelze odeslat Váš soubor, protože je to adresář nebo má velikost 0 bajtů", "Unable to upload your file as it is a directory or has 0 bytes" => "Nelze odeslat Váš soubor, protože je to adresář nebo má velikost 0 bajtů",
"Upload Error" => "Chyba odesílání", "Upload Error" => "Chyba odesílání",
"Pending" => "Čekající", "Pending" => "Čekající",
"1 file uploading" => "odesílá se 1 soubor",
"files uploading" => "souborů se odesílá",
"Upload cancelled." => "Odesílání zrušeno.", "Upload cancelled." => "Odesílání zrušeno.",
"File upload is in progress. Leaving the page now will cancel the upload." => "Probíhá odesílání souboru. Opuštění stránky vyústí ve zrušení nahrávání.", "File upload is in progress. Leaving the page now will cancel the upload." => "Probíhá odesílání souboru. Opuštění stránky vyústí ve zrušení nahrávání.",
"Invalid name, '/' is not allowed." => "Neplatný název, znak '/' není povolen", "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", "Size" => "Velikost",
"Modified" => "Změněno", "Modified" => "Změněno",
"folder" => "složka", "folder" => "složka",
"folders" => "složky", "folders" => "složky",
"file" => "soubor", "file" => "soubor",
"files" => "soubory", "files" => "soubory",
"seconds ago" => "před pár sekundami",
"minute ago" => "před minutou",
"minutes ago" => "před pár minutami",
"today" => "dnes",
"yesterday" => "včera",
"days ago" => "před pár dny",
"last month" => "minulý měsíc",
"months ago" => "před pár měsíci",
"last year" => "minulý rok",
"years ago" => "před pár lety",
"File handling" => "Zacházení se soubory", "File handling" => "Zacházení se soubory",
"Maximum upload size" => "Maximální velikost pro odesílání", "Maximum upload size" => "Maximální velikost pro odesílání",
"max. possible: " => "největší možná: ", "max. possible: " => "největší možná: ",
@ -46,7 +62,6 @@
"Upload" => "Odeslat", "Upload" => "Odeslat",
"Cancel upload" => "Zrušit odesílání", "Cancel upload" => "Zrušit odesílání",
"Nothing in here. Upload something!" => "Žádný obsah. Nahrajte něco.", "Nothing in here. Upload something!" => "Žádný obsah. Nahrajte něco.",
"Name" => "Název",
"Share" => "Sdílet", "Share" => "Sdílet",
"Download" => "Stáhnout", "Download" => "Stáhnout",
"Upload too large" => "Odeslaný soubor je příliš velký", "Upload too large" => "Odeslaný soubor je příliš velký",

View File

@ -9,6 +9,7 @@
"Files" => "Filer", "Files" => "Filer",
"Unshare" => "Fjern deling", "Unshare" => "Fjern deling",
"Delete" => "Slet", "Delete" => "Slet",
"Rename" => "Omdøb",
"already exists" => "findes allerede", "already exists" => "findes allerede",
"replace" => "erstat", "replace" => "erstat",
"suggest name" => "foreslå navn", "suggest name" => "foreslå navn",
@ -25,6 +26,9 @@
"Upload cancelled." => "Upload afbrudt.", "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.", "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.", "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", "Size" => "Størrelse",
"Modified" => "Ændret", "Modified" => "Ændret",
"folder" => "mappe", "folder" => "mappe",
@ -46,7 +50,6 @@
"Upload" => "Upload", "Upload" => "Upload",
"Cancel upload" => "Fortryd upload", "Cancel upload" => "Fortryd upload",
"Nothing in here. Upload something!" => "Her er tomt. Upload noget!", "Nothing in here. Upload something!" => "Her er tomt. Upload noget!",
"Name" => "Navn",
"Share" => "Del", "Share" => "Del",
"Download" => "Download", "Download" => "Download",
"Upload too large" => "Upload for stor", "Upload too large" => "Upload for stor",

View File

@ -7,8 +7,9 @@
"Missing a temporary folder" => "Temporärer Ordner fehlt.", "Missing a temporary folder" => "Temporärer Ordner fehlt.",
"Failed to write to disk" => "Fehler beim Schreiben auf die Festplatte", "Failed to write to disk" => "Fehler beim Schreiben auf die Festplatte",
"Files" => "Dateien", "Files" => "Dateien",
"Unshare" => "Nicht mehr teilen", "Unshare" => "Nicht mehr freigeben",
"Delete" => "Löschen", "Delete" => "Löschen",
"Rename" => "Umbenennen",
"already exists" => "ist bereits vorhanden", "already exists" => "ist bereits vorhanden",
"replace" => "ersetzen", "replace" => "ersetzen",
"suggest name" => "Name vorschlagen", "suggest name" => "Name vorschlagen",
@ -16,21 +17,36 @@
"replaced" => "ersetzt", "replaced" => "ersetzt",
"undo" => "rückgängig machen", "undo" => "rückgängig machen",
"with" => "mit", "with" => "mit",
"unshared" => "Nicht mehr teilen", "unshared" => "Nicht mehr freigegeben",
"deleted" => "gelöscht", "deleted" => "gelöscht",
"generating ZIP-file, it may take some time." => "Erstelle ZIP-Datei. Dies kann eine Weile dauern.", "generating ZIP-file, it may take some time." => "Erstelle ZIP-Datei. Dies kann eine Weile dauern.",
"Unable to upload your file as it is a directory or has 0 bytes" => "Ihre Datei kann nicht hochgeladen werden, da sie ein Verzeichnis ist oder 0 Bytes hat.", "Unable to upload your file as it is a directory or has 0 bytes" => "Ihre Datei kann nicht hochgeladen werden, da sie entweder ein Verzeichnis oder 0 Bytes groß ist.",
"Upload Error" => "Fehler beim Hochladen", "Upload Error" => "Fehler beim Upload",
"Pending" => "Ausstehend", "Pending" => "Ausstehend",
"Upload cancelled." => "Hochladen abgebrochen.", "1 file uploading" => "Eine Datei wird hoch geladen",
"files uploading" => "Dateien werden hoch geladen",
"Upload cancelled." => "Upload abgebrochen.",
"File upload is in progress. Leaving the page now will cancel the upload." => "Dateiupload läuft. Wenn Sie die Seite jetzt verlassen, wird der Upload abgebrochen.", "File upload is in progress. Leaving the page now will cancel the upload." => "Dateiupload läuft. Wenn Sie die Seite jetzt verlassen, wird der Upload abgebrochen.",
"Invalid name, '/' is not allowed." => "Ungültiger Name: \"/\" ist nicht erlaubt.", "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", "Size" => "Größe",
"Modified" => "Bearbeitet", "Modified" => "Bearbeitet",
"folder" => "Ordner", "folder" => "Ordner",
"folders" => "Ordner", "folders" => "Ordner",
"file" => "Datei", "file" => "Datei",
"files" => "Dateien", "files" => "Dateien",
"seconds ago" => "Sekunden her",
"minute ago" => "Minute her",
"minutes ago" => "Minuten her",
"today" => "Heute",
"yesterday" => "Gestern",
"days ago" => "Tage her",
"last month" => "Letzten Monat",
"months ago" => "Monate her",
"last year" => "Letztes Jahr",
"years ago" => "Jahre her",
"File handling" => "Dateibehandlung", "File handling" => "Dateibehandlung",
"Maximum upload size" => "Maximale Upload-Größe", "Maximum upload size" => "Maximale Upload-Größe",
"max. possible: " => "maximal möglich:", "max. possible: " => "maximal möglich:",
@ -42,11 +58,10 @@
"New" => "Neu", "New" => "Neu",
"Text file" => "Textdatei", "Text file" => "Textdatei",
"Folder" => "Ordner", "Folder" => "Ordner",
"From url" => "Von der URL", "From url" => "Von einer URL",
"Upload" => "Hochladen", "Upload" => "Hochladen",
"Cancel upload" => "Upload abbrechen", "Cancel upload" => "Upload abbrechen",
"Nothing in here. Upload something!" => "Alles leer. Lade etwas hoch!", "Nothing in here. Upload something!" => "Alles leer. Lade etwas hoch!",
"Name" => "Name",
"Share" => "Teilen", "Share" => "Teilen",
"Download" => "Herunterladen", "Download" => "Herunterladen",
"Upload too large" => "Upload zu groß", "Upload too large" => "Upload zu groß",

View File

@ -3,30 +3,50 @@
"The uploaded file exceeds the upload_max_filesize directive in php.ini" => "Το αρχείο που μεταφορτώθηκε υπερβαίνει την οδηγία μέγιστου επιτρεπτού μεγέθους \"upload_max_filesize\" του php.ini", "The uploaded file exceeds the upload_max_filesize directive in php.ini" => "Το αρχείο που μεταφορτώθηκε υπερβαίνει την οδηγία μέγιστου επιτρεπτού μεγέθους \"upload_max_filesize\" του php.ini",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Το αρχείο υπερβαίνει την οδηγία μέγιστου επιτρεπτού μεγέθους \"MAX_FILE_SIZE\" που έχει οριστεί στην HTML φόρμα", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Το αρχείο υπερβαίνει την οδηγία μέγιστου επιτρεπτού μεγέθους \"MAX_FILE_SIZE\" που έχει οριστεί στην HTML φόρμα",
"The uploaded file was only partially uploaded" => "Το αρχείο μεταφορώθηκε μόνο εν μέρει", "The uploaded file was only partially uploaded" => "Το αρχείο μεταφορώθηκε μόνο εν μέρει",
"No file was uploaded" => "Το αρχείο δεν μεταφορτώθηκε", "No file was uploaded" => "Κανένα αρχείο δεν μεταφορτώθηκε",
"Missing a temporary folder" => "Λείπει ένας προσωρινός φάκελος", "Missing a temporary folder" => "Λείπει ο προσωρινός φάκελος",
"Failed to write to disk" => "Η εγγραφή στο δίσκο απέτυχε", "Failed to write to disk" => "Αποτυχία εγγραφής στο δίσκο",
"Files" => "Αρχεία", "Files" => "Αρχεία",
"Unshare" => "Διακοπή κοινής χρήσης",
"Delete" => "Διαγραφή", "Delete" => "Διαγραφή",
"Rename" => "Μετονομασία",
"already exists" => "υπάρχει ήδη", "already exists" => "υπάρχει ήδη",
"replace" => "αντικατέστησε", "replace" => "αντικατέστησε",
"suggest name" => "συνιστώμενο όνομα",
"cancel" => "ακύρωση", "cancel" => "ακύρωση",
"replaced" => "αντικαταστάθηκε", "replaced" => "αντικαταστάθηκε",
"undo" => "αναίρεση", "undo" => "αναίρεση",
"with" => "με", "with" => "με",
"unshared" => "Διακόπηκε ο διαμοιρασμός",
"deleted" => "διαγράφηκε", "deleted" => "διαγράφηκε",
"generating ZIP-file, it may take some time." => "παραγωγή αρχείου ZIP, ίσως διαρκέσει αρκετά.", "generating ZIP-file, it may take some time." => "παραγωγή αρχείου ZIP, ίσως διαρκέσει αρκετά.",
"Unable to upload your file as it is a directory or has 0 bytes" => "Αδυναμία στην μεταφόρτωση του αρχείου σας αφού είναι φάκελος ή έχει 0 bytes", "Unable to upload your file as it is a directory or has 0 bytes" => "Αδυναμία στην μεταφόρτωση του αρχείου σας αφού είναι φάκελος ή έχει 0 bytes",
"Upload Error" => "Σφάλμα Μεταφόρτωσης", "Upload Error" => "Σφάλμα Μεταφόρτωσης",
"Pending" => "Εν αναμονή", "Pending" => "Εκκρεμεί",
"1 file uploading" => "1 αρχείο ανεβαίνει",
"files uploading" => "αρχεία ανεβαίνουν",
"Upload cancelled." => "Η μεταφόρτωση ακυρώθηκε.", "Upload cancelled." => "Η μεταφόρτωση ακυρώθηκε.",
"File upload is in progress. Leaving the page now will cancel the upload." => "Η μεταφόρτωση του αρχείου βρίσκεται σε εξέλιξη. Έξοδος από την σελίδα τώρα θα ακυρώσει την μεταφόρτωση.",
"Invalid name, '/' is not allowed." => "Μη έγκυρο όνομα, το '/' δεν επιτρέπεται.", "Invalid name, '/' is not allowed." => "Μη έγκυρο όνομα, το '/' δεν επιτρέπεται.",
"files scanned" => "αρχεία σαρώθηκαν",
"error while scanning" => "σφάλμα κατά την ανίχνευση",
"Name" => "Όνομα",
"Size" => "Μέγεθος", "Size" => "Μέγεθος",
"Modified" => "Τροποποιήθηκε", "Modified" => "Τροποποιήθηκε",
"folder" => "φάκελος", "folder" => "φάκελος",
"folders" => "φάκελοι", "folders" => "φάκελοι",
"file" => "αρχείο", "file" => "αρχείο",
"files" => "αρχεία", "files" => "αρχεία",
"seconds ago" => "δευτερόλεπτα πριν",
"minute ago" => "λεπτό πριν",
"minutes ago" => "λεπτά πριν",
"today" => "σήμερα",
"yesterday" => "χτες",
"days ago" => "μέρες πριν",
"last month" => "τελευταίο μήνα",
"months ago" => "μήνες πριν",
"last year" => "τελευταίο χρόνο",
"years ago" => "χρόνια πριν",
"File handling" => "Διαχείριση αρχείων", "File handling" => "Διαχείριση αρχείων",
"Maximum upload size" => "Μέγιστο μέγεθος μεταφόρτωσης", "Maximum upload size" => "Μέγιστο μέγεθος μεταφόρτωσης",
"max. possible: " => "μέγιστο δυνατό:", "max. possible: " => "μέγιστο δυνατό:",
@ -34,18 +54,18 @@
"Enable ZIP-download" => "Ενεργοποίηση κατεβάσματος ZIP", "Enable ZIP-download" => "Ενεργοποίηση κατεβάσματος ZIP",
"0 is unlimited" => "0 για απεριόριστο", "0 is unlimited" => "0 για απεριόριστο",
"Maximum input size for ZIP files" => "Μέγιστο μέγεθος για αρχεία ZIP", "Maximum input size for ZIP files" => "Μέγιστο μέγεθος για αρχεία ZIP",
"Save" => "Αποθήκευση",
"New" => "Νέο", "New" => "Νέο",
"Text file" => "Αρχείο κειμένου", "Text file" => "Αρχείο κειμένου",
"Folder" => "Φάκελος", "Folder" => "Φάκελος",
"From url" => "Από την διεύθυνση", "From url" => "Από την διεύθυνση",
"Upload" => "Μεταφόρτωση", "Upload" => "Μεταφόρτωση",
"Cancel upload" => "Ακύρωση ανεβάσματος", "Cancel upload" => "Ακύρωση μεταφόρτωσης",
"Nothing in here. Upload something!" => "Δεν υπάρχει τίποτα εδώ. Ανέβασε κάτι!", "Nothing in here. Upload something!" => "Δεν υπάρχει τίποτα εδώ. Ανέβασε κάτι!",
"Name" => "Όνομα", "Share" => "Διαμοιρασμός",
"Share" => "Διαμοίρασε",
"Download" => "Λήψη", "Download" => "Λήψη",
"Upload too large" => "Πολύ μεγάλο το αρχείο προς μεταφόρτωση", "Upload too large" => "Πολύ μεγάλο αρχείο προς μεταφόρτωση",
"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Τα αρχεία που προσπαθείτε να ανεβάσετε υπερβαίνουν το μέγιστο μέγεθος μεταφόρτωσης αρχείων σε αυτόν το διακομιστή.", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Τα αρχεία που προσπαθείτε να μεταφορτώσετε υπερβαίνουν το μέγιστο μέγεθος μεταφόρτωσης αρχείων σε αυτόν το διακομιστή.",
"Files are being scanned, please wait." => "Τα αρχεία ανιχνεύονται, παρακαλώ περιμένετε", "Files are being scanned, please wait." => "Τα αρχεία σαρώνονται, παρακαλώ περιμένετε",
"Current scanning" => "Τρέχουσα αναζήτηση " "Current scanning" => "Τρέχουσα αναζήτηση "
); );

View File

@ -25,6 +25,7 @@
"Upload cancelled." => "La alŝuto nuliĝis.", "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.", "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.", "Invalid name, '/' is not allowed." => "Nevalida nomo, “/” ne estas permesata.",
"Name" => "Nomo",
"Size" => "Grando", "Size" => "Grando",
"Modified" => "Modifita", "Modified" => "Modifita",
"folder" => "dosierujo", "folder" => "dosierujo",
@ -46,7 +47,6 @@
"Upload" => "Alŝuti", "Upload" => "Alŝuti",
"Cancel upload" => "Nuligi alŝuton", "Cancel upload" => "Nuligi alŝuton",
"Nothing in here. Upload something!" => "Nenio estas ĉi tie. Alŝutu ion!", "Nothing in here. Upload something!" => "Nenio estas ĉi tie. Alŝutu ion!",
"Name" => "Nomo",
"Share" => "Kunhavigi", "Share" => "Kunhavigi",
"Download" => "Elŝuti", "Download" => "Elŝuti",
"Upload too large" => "Elŝuto tro larĝa", "Upload too large" => "Elŝuto tro larĝa",

View File

@ -8,7 +8,8 @@
"Failed to write to disk" => "La escritura en disco ha fallado", "Failed to write to disk" => "La escritura en disco ha fallado",
"Files" => "Archivos", "Files" => "Archivos",
"Unshare" => "Dejar de compartir", "Unshare" => "Dejar de compartir",
"Delete" => "Eliminado", "Delete" => "Eliminar",
"Rename" => "Renombrar",
"already exists" => "ya existe", "already exists" => "ya existe",
"replace" => "reemplazar", "replace" => "reemplazar",
"suggest name" => "sugerir nombre", "suggest name" => "sugerir nombre",
@ -22,15 +23,30 @@
"Unable to upload your file as it is a directory or has 0 bytes" => "No ha sido posible subir tu archivo porque es un directorio o tiene 0 bytes", "Unable to upload your file as it is a directory or has 0 bytes" => "No ha sido posible subir tu archivo porque es un directorio o tiene 0 bytes",
"Upload Error" => "Error al subir el archivo", "Upload Error" => "Error al subir el archivo",
"Pending" => "Pendiente", "Pending" => "Pendiente",
"1 file uploading" => "subiendo 1 archivo",
"files uploading" => "archivos subiendo",
"Upload cancelled." => "Subida cancelada.", "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.", "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.", "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", "Size" => "Tamaño",
"Modified" => "Modificado", "Modified" => "Modificado",
"folder" => "carpeta", "folder" => "carpeta",
"folders" => "carpetas", "folders" => "carpetas",
"file" => "archivo", "file" => "archivo",
"files" => "archivos", "files" => "archivos",
"seconds ago" => "hace segundos",
"minute ago" => "minuto",
"minutes ago" => "hace minutos",
"today" => "hoy",
"yesterday" => "ayer",
"days ago" => "días",
"last month" => "mes pasado",
"months ago" => "hace meses",
"last year" => "año pasado",
"years ago" => "hace años",
"File handling" => "Tratamiento de archivos", "File handling" => "Tratamiento de archivos",
"Maximum upload size" => "Tamaño máximo de subida", "Maximum upload size" => "Tamaño máximo de subida",
"max. possible: " => "máx. posible:", "max. possible: " => "máx. posible:",
@ -46,11 +62,10 @@
"Upload" => "Subir", "Upload" => "Subir",
"Cancel upload" => "Cancelar subida", "Cancel upload" => "Cancelar subida",
"Nothing in here. Upload something!" => "Aquí no hay nada. ¡Sube algo!", "Nothing in here. Upload something!" => "Aquí no hay nada. ¡Sube algo!",
"Name" => "Nombre",
"Share" => "Compartir", "Share" => "Compartir",
"Download" => "Descargar", "Download" => "Descargar",
"Upload too large" => "El archivo es demasiado grande", "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.", "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.", "Files are being scanned, please wait." => "Se están escaneando los archivos, por favor espere.",
"Current scanning" => "Escaneo actual" "Current scanning" => "Ahora escaneando"
); );

71
apps/files/l10n/es_AR.php Normal file
View File

@ -0,0 +1,71 @@
<?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",
"1 file uploading" => "Subiendo 1 archivo",
"files uploading" => "Subiendo archivos",
"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",
"seconds ago" => "segundos atrás",
"minute ago" => "hace un minuto",
"minutes ago" => "minutos atrás",
"today" => "hoy",
"yesterday" => "ayer",
"days ago" => "días atrás",
"last month" => "el mes pasado",
"months ago" => "meses atrás",
"last year" => "el año pasado",
"years ago" => "años atrás",
"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"
);

View File

@ -25,6 +25,7 @@
"Upload cancelled." => "Üleslaadimine tühistati.", "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.", "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.", "Invalid name, '/' is not allowed." => "Vigane nimi, '/' pole lubatud.",
"Name" => "Nimi",
"Size" => "Suurus", "Size" => "Suurus",
"Modified" => "Muudetud", "Modified" => "Muudetud",
"folder" => "kaust", "folder" => "kaust",
@ -46,7 +47,6 @@
"Upload" => "Lae üles", "Upload" => "Lae üles",
"Cancel upload" => "Tühista üleslaadimine", "Cancel upload" => "Tühista üleslaadimine",
"Nothing in here. Upload something!" => "Siin pole midagi. Lae midagi üles!", "Nothing in here. Upload something!" => "Siin pole midagi. Lae midagi üles!",
"Name" => "Nimi",
"Share" => "Jaga", "Share" => "Jaga",
"Download" => "Lae alla", "Download" => "Lae alla",
"Upload too large" => "Üleslaadimine on liiga suur", "Upload too large" => "Üleslaadimine on liiga suur",

View File

@ -25,6 +25,9 @@
"Upload cancelled." => "Igoera ezeztatuta", "Upload cancelled." => "Igoera ezeztatuta",
"File upload is in progress. Leaving the page now will cancel the upload." => "Fitxategien igoera martxan da. Orria orain uzteak igoera ezeztatutko du.", "File upload is in progress. Leaving the page now will cancel the upload." => "Fitxategien igoera martxan da. Orria orain uzteak igoera ezeztatutko du.",
"Invalid name, '/' is not allowed." => "Baliogabeko izena, '/' ezin da erabili. ", "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", "Size" => "Tamaina",
"Modified" => "Aldatuta", "Modified" => "Aldatuta",
"folder" => "karpeta", "folder" => "karpeta",
@ -46,7 +49,6 @@
"Upload" => "Igo", "Upload" => "Igo",
"Cancel upload" => "Ezeztatu igoera", "Cancel upload" => "Ezeztatu igoera",
"Nothing in here. Upload something!" => "Ez dago ezer. Igo zerbait!", "Nothing in here. Upload something!" => "Ez dago ezer. Igo zerbait!",
"Name" => "Izena",
"Share" => "Elkarbanatu", "Share" => "Elkarbanatu",
"Download" => "Deskargatu", "Download" => "Deskargatu",
"Upload too large" => "Igotakoa handiegia da", "Upload too large" => "Igotakoa handiegia da",

View File

@ -21,6 +21,7 @@
"Pending" => "در انتظار", "Pending" => "در انتظار",
"Upload cancelled." => "بار گذاری لغو شد", "Upload cancelled." => "بار گذاری لغو شد",
"Invalid name, '/' is not allowed." => "نام نامناسب '/' غیرفعال است", "Invalid name, '/' is not allowed." => "نام نامناسب '/' غیرفعال است",
"Name" => "نام",
"Size" => "اندازه", "Size" => "اندازه",
"Modified" => "تغییر یافته", "Modified" => "تغییر یافته",
"folder" => "پوشه", "folder" => "پوشه",
@ -41,7 +42,6 @@
"Upload" => "بارگذاری", "Upload" => "بارگذاری",
"Cancel upload" => "متوقف کردن بار گذاری", "Cancel upload" => "متوقف کردن بار گذاری",
"Nothing in here. Upload something!" => "اینجا هیچ چیز نیست.", "Nothing in here. Upload something!" => "اینجا هیچ چیز نیست.",
"Name" => "نام",
"Share" => "به اشتراک گذاری", "Share" => "به اشتراک گذاری",
"Download" => "بارگیری", "Download" => "بارگیری",
"Upload too large" => "حجم بارگذاری بسیار زیاد است", "Upload too large" => "حجم بارگذاری بسیار زیاد است",

View File

@ -8,6 +8,7 @@
"Failed to write to disk" => "Levylle kirjoitus epäonnistui", "Failed to write to disk" => "Levylle kirjoitus epäonnistui",
"Files" => "Tiedostot", "Files" => "Tiedostot",
"Delete" => "Poista", "Delete" => "Poista",
"Rename" => "Nimeä uudelleen",
"already exists" => "on jo olemassa", "already exists" => "on jo olemassa",
"replace" => "korvaa", "replace" => "korvaa",
"suggest name" => "ehdota nimeä", "suggest name" => "ehdota nimeä",
@ -23,12 +24,23 @@
"Upload cancelled." => "Lähetys peruttu.", "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.", "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.", "Invalid name, '/' is not allowed." => "Virheellinen nimi, merkki '/' ei ole sallittu.",
"Name" => "Nimi",
"Size" => "Koko", "Size" => "Koko",
"Modified" => "Muutettu", "Modified" => "Muutettu",
"folder" => "kansio", "folder" => "kansio",
"folders" => "kansiota", "folders" => "kansiota",
"file" => "tiedosto", "file" => "tiedosto",
"files" => "tiedostoa", "files" => "tiedostoa",
"seconds ago" => "sekuntia sitten",
"minute ago" => "minuutti sitten",
"minutes ago" => "minuuttia sitten",
"today" => "tänään",
"yesterday" => "eilen",
"days ago" => "päivää sitten",
"last month" => "viime kuussa",
"months ago" => "kuukautta sitten",
"last year" => "viime vuonna",
"years ago" => "vuotta sitten",
"File handling" => "Tiedostonhallinta", "File handling" => "Tiedostonhallinta",
"Maximum upload size" => "Lähetettävän tiedoston suurin sallittu koko", "Maximum upload size" => "Lähetettävän tiedoston suurin sallittu koko",
"max. possible: " => "suurin mahdollinen:", "max. possible: " => "suurin mahdollinen:",
@ -44,7 +56,6 @@
"Upload" => "Lähetä", "Upload" => "Lähetä",
"Cancel upload" => "Peru lähetys", "Cancel upload" => "Peru lähetys",
"Nothing in here. Upload something!" => "Täällä ei ole mitään. Lähetä tänne jotakin!", "Nothing in here. Upload something!" => "Täällä ei ole mitään. Lähetä tänne jotakin!",
"Name" => "Nimi",
"Share" => "Jaa", "Share" => "Jaa",
"Download" => "Lataa", "Download" => "Lataa",
"Upload too large" => "Lähetettävä tiedosto on liian suuri", "Upload too large" => "Lähetettävä tiedosto on liian suuri",

View File

@ -9,6 +9,7 @@
"Files" => "Fichiers", "Files" => "Fichiers",
"Unshare" => "Ne plus partager", "Unshare" => "Ne plus partager",
"Delete" => "Supprimer", "Delete" => "Supprimer",
"Rename" => "Renommer",
"already exists" => "existe déjà", "already exists" => "existe déjà",
"replace" => "remplacer", "replace" => "remplacer",
"suggest name" => "Suggérer un nom", "suggest name" => "Suggérer un nom",
@ -22,15 +23,30 @@
"Unable to upload your file as it is a directory or has 0 bytes" => "Impossible de charger vos fichiers car il s'agit d'un dossier ou le fichier fait 0 octet.", "Unable to upload your file as it is a directory or has 0 bytes" => "Impossible de charger vos fichiers car il s'agit d'un dossier ou le fichier fait 0 octet.",
"Upload Error" => "Erreur de chargement", "Upload Error" => "Erreur de chargement",
"Pending" => "En cours", "Pending" => "En cours",
"1 file uploading" => "1 fichier en cours de téléchargement",
"files uploading" => "fichiers en cours de téléchargement",
"Upload cancelled." => "Chargement annulé.", "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.", "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é.", "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", "Size" => "Taille",
"Modified" => "Modifié", "Modified" => "Modifié",
"folder" => "dossier", "folder" => "dossier",
"folders" => "dossiers", "folders" => "dossiers",
"file" => "fichier", "file" => "fichier",
"files" => "fichiers", "files" => "fichiers",
"seconds ago" => "secondes passées",
"minute ago" => "minute passée",
"minutes ago" => "minutes passées",
"today" => "aujourd'hui",
"yesterday" => "hier",
"days ago" => "jours passés",
"last month" => "mois dernier",
"months ago" => "mois passés",
"last year" => "année dernière",
"years ago" => "années passées",
"File handling" => "Gestion des fichiers", "File handling" => "Gestion des fichiers",
"Maximum upload size" => "Taille max. d'envoi", "Maximum upload size" => "Taille max. d'envoi",
"max. possible: " => "Max. possible :", "max. possible: " => "Max. possible :",
@ -46,7 +62,6 @@
"Upload" => "Envoyer", "Upload" => "Envoyer",
"Cancel upload" => "Annuler l'envoi", "Cancel upload" => "Annuler l'envoi",
"Nothing in here. Upload something!" => "Il n'y a rien ici ! Envoyez donc quelque chose :)", "Nothing in here. Upload something!" => "Il n'y a rien ici ! Envoyez donc quelque chose :)",
"Name" => "Nom",
"Share" => "Partager", "Share" => "Partager",
"Download" => "Téléchargement", "Download" => "Téléchargement",
"Upload too large" => "Fichier trop volumineux", "Upload too large" => "Fichier trop volumineux",

View File

@ -7,20 +7,27 @@
"Missing a temporary folder" => "Falta un cartafol temporal", "Missing a temporary folder" => "Falta un cartafol temporal",
"Failed to write to disk" => "Erro ao escribir no disco", "Failed to write to disk" => "Erro ao escribir no disco",
"Files" => "Ficheiros", "Files" => "Ficheiros",
"Unshare" => "Deixar de compartir",
"Delete" => "Eliminar", "Delete" => "Eliminar",
"already exists" => "xa existe", "already exists" => "xa existe",
"replace" => "substituír", "replace" => "substituír",
"suggest name" => "suxira nome",
"cancel" => "cancelar", "cancel" => "cancelar",
"replaced" => "substituído", "replaced" => "substituído",
"undo" => "desfacer", "undo" => "desfacer",
"with" => "con", "with" => "con",
"unshared" => "non compartido",
"deleted" => "eliminado", "deleted" => "eliminado",
"generating ZIP-file, it may take some time." => "xerando ficheiro ZIP, pode levar un anaco.", "generating ZIP-file, it may take some time." => "xerando ficheiro ZIP, pode levar un anaco.",
"Unable to upload your file as it is a directory or has 0 bytes" => "Non se puido subir o ficheiro pois ou é un directorio ou ten 0 bytes", "Unable to upload your file as it is a directory or has 0 bytes" => "Non se puido subir o ficheiro pois ou é un directorio ou ten 0 bytes",
"Upload Error" => "Erro na subida", "Upload Error" => "Erro na subida",
"Pending" => "Pendentes", "Pending" => "Pendentes",
"Upload cancelled." => "Subida cancelada.", "Upload cancelled." => "Subida cancelada.",
"File upload is in progress. Leaving the page now will cancel the upload." => "A subida do ficheiro está en curso. Saír agora da páxina cancelará a subida.",
"Invalid name, '/' is not allowed." => "Nome non válido, '/' non está permitido.", "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", "Size" => "Tamaño",
"Modified" => "Modificado", "Modified" => "Modificado",
"folder" => "cartafol", "folder" => "cartafol",
@ -34,6 +41,7 @@
"Enable ZIP-download" => "Habilitar a descarga-ZIP", "Enable ZIP-download" => "Habilitar a descarga-ZIP",
"0 is unlimited" => "0 significa ilimitado", "0 is unlimited" => "0 significa ilimitado",
"Maximum input size for ZIP files" => "Tamaño máximo de descarga para os ZIP", "Maximum input size for ZIP files" => "Tamaño máximo de descarga para os ZIP",
"Save" => "Gardar",
"New" => "Novo", "New" => "Novo",
"Text file" => "Ficheiro de texto", "Text file" => "Ficheiro de texto",
"Folder" => "Cartafol", "Folder" => "Cartafol",
@ -41,7 +49,6 @@
"Upload" => "Enviar", "Upload" => "Enviar",
"Cancel upload" => "Cancelar subida", "Cancel upload" => "Cancelar subida",
"Nothing in here. Upload something!" => "Nada por aquí. Envíe algo.", "Nothing in here. Upload something!" => "Nada por aquí. Envíe algo.",
"Name" => "Nome",
"Share" => "Compartir", "Share" => "Compartir",
"Download" => "Descargar", "Download" => "Descargar",
"Upload too large" => "Envío demasiado grande", "Upload too large" => "Envío demasiado grande",

View File

@ -15,6 +15,7 @@
"Pending" => "ממתין", "Pending" => "ממתין",
"Upload cancelled." => "ההעלאה בוטלה.", "Upload cancelled." => "ההעלאה בוטלה.",
"Invalid name, '/' is not allowed." => "שם לא חוקי, '/' אסור לשימוש.", "Invalid name, '/' is not allowed." => "שם לא חוקי, '/' אסור לשימוש.",
"Name" => "שם",
"Size" => "גודל", "Size" => "גודל",
"Modified" => "זמן שינוי", "Modified" => "זמן שינוי",
"folder" => "תקיה", "folder" => "תקיה",
@ -35,7 +36,6 @@
"Upload" => "העלאה", "Upload" => "העלאה",
"Cancel upload" => "ביטול ההעלאה", "Cancel upload" => "ביטול ההעלאה",
"Nothing in here. Upload something!" => "אין כאן שום דבר. אולי ברצונך להעלות משהו?", "Nothing in here. Upload something!" => "אין כאן שום דבר. אולי ברצונך להעלות משהו?",
"Name" => "שם",
"Share" => "שיתוף", "Share" => "שיתוף",
"Download" => "הורדה", "Download" => "הורדה",
"Upload too large" => "העלאה גדולה מידי", "Upload too large" => "העלאה גדולה מידי",

View File

@ -21,6 +21,7 @@
"Pending" => "U tijeku", "Pending" => "U tijeku",
"Upload cancelled." => "Slanje poništeno.", "Upload cancelled." => "Slanje poništeno.",
"Invalid name, '/' is not allowed." => "Neispravan naziv, znak '/' nije dozvoljen.", "Invalid name, '/' is not allowed." => "Neispravan naziv, znak '/' nije dozvoljen.",
"Name" => "Naziv",
"Size" => "Veličina", "Size" => "Veličina",
"Modified" => "Zadnja promjena", "Modified" => "Zadnja promjena",
"folder" => "mapa", "folder" => "mapa",
@ -41,7 +42,6 @@
"Upload" => "Pošalji", "Upload" => "Pošalji",
"Cancel upload" => "Prekini upload", "Cancel upload" => "Prekini upload",
"Nothing in here. Upload something!" => "Nema ničega u ovoj mapi. Pošalji nešto!", "Nothing in here. Upload something!" => "Nema ničega u ovoj mapi. Pošalji nešto!",
"Name" => "Naziv",
"Share" => "podjeli", "Share" => "podjeli",
"Download" => "Preuzmi", "Download" => "Preuzmi",
"Upload too large" => "Prijenos je preobiman", "Upload too large" => "Prijenos je preobiman",

View File

@ -21,6 +21,7 @@
"Pending" => "Folyamatban", "Pending" => "Folyamatban",
"Upload cancelled." => "Feltöltés megszakítva", "Upload cancelled." => "Feltöltés megszakítva",
"Invalid name, '/' is not allowed." => "Érvénytelen név, a '/' nem megengedett", "Invalid name, '/' is not allowed." => "Érvénytelen név, a '/' nem megengedett",
"Name" => "Név",
"Size" => "Méret", "Size" => "Méret",
"Modified" => "Módosítva", "Modified" => "Módosítva",
"folder" => "mappa", "folder" => "mappa",
@ -41,7 +42,6 @@
"Upload" => "Feltöltés", "Upload" => "Feltöltés",
"Cancel upload" => "Feltöltés megszakítása", "Cancel upload" => "Feltöltés megszakítása",
"Nothing in here. Upload something!" => "Töltsön fel egy fájlt.", "Nothing in here. Upload something!" => "Töltsön fel egy fájlt.",
"Name" => "Név",
"Share" => "Megosztás", "Share" => "Megosztás",
"Download" => "Letöltés", "Download" => "Letöltés",
"Upload too large" => "Feltöltés túl nagy", "Upload too large" => "Feltöltés túl nagy",

View File

@ -3,6 +3,7 @@
"No file was uploaded" => "Nulle file esseva incargate", "No file was uploaded" => "Nulle file esseva incargate",
"Files" => "Files", "Files" => "Files",
"Delete" => "Deler", "Delete" => "Deler",
"Name" => "Nomine",
"Size" => "Dimension", "Size" => "Dimension",
"Modified" => "Modificate", "Modified" => "Modificate",
"Maximum upload size" => "Dimension maxime de incargamento", "Maximum upload size" => "Dimension maxime de incargamento",
@ -11,7 +12,6 @@
"Folder" => "Dossier", "Folder" => "Dossier",
"Upload" => "Incargar", "Upload" => "Incargar",
"Nothing in here. Upload something!" => "Nihil hic. Incarga alcun cosa!", "Nothing in here. Upload something!" => "Nihil hic. Incarga alcun cosa!",
"Name" => "Nomine",
"Download" => "Discargar", "Download" => "Discargar",
"Upload too large" => "Incargamento troppo longe" "Upload too large" => "Incargamento troppo longe"
); );

View File

@ -21,6 +21,7 @@
"Pending" => "Menunggu", "Pending" => "Menunggu",
"Upload cancelled." => "Pengunggahan dibatalkan.", "Upload cancelled." => "Pengunggahan dibatalkan.",
"Invalid name, '/' is not allowed." => "Kesalahan nama, '/' tidak diijinkan.", "Invalid name, '/' is not allowed." => "Kesalahan nama, '/' tidak diijinkan.",
"Name" => "Nama",
"Size" => "Ukuran", "Size" => "Ukuran",
"Modified" => "Dimodifikasi", "Modified" => "Dimodifikasi",
"folder" => "folder", "folder" => "folder",
@ -41,7 +42,6 @@
"Upload" => "Unggah", "Upload" => "Unggah",
"Cancel upload" => "Batal mengunggah", "Cancel upload" => "Batal mengunggah",
"Nothing in here. Upload something!" => "Tidak ada apa-apa di sini. Unggah sesuatu!", "Nothing in here. Upload something!" => "Tidak ada apa-apa di sini. Unggah sesuatu!",
"Name" => "Nama",
"Share" => "Bagikan", "Share" => "Bagikan",
"Download" => "Unduh", "Download" => "Unduh",
"Upload too large" => "Unggahan terlalu besar", "Upload too large" => "Unggahan terlalu besar",

View File

@ -9,6 +9,7 @@
"Files" => "File", "Files" => "File",
"Unshare" => "Rimuovi condivisione", "Unshare" => "Rimuovi condivisione",
"Delete" => "Elimina", "Delete" => "Elimina",
"Rename" => "Rinomina",
"already exists" => "esiste già", "already exists" => "esiste già",
"replace" => "sostituisci", "replace" => "sostituisci",
"suggest name" => "suggerisci nome", "suggest name" => "suggerisci nome",
@ -22,15 +23,30 @@
"Unable to upload your file as it is a directory or has 0 bytes" => "Impossibile inviare il file poiché è una cartella o ha dimensione 0 byte", "Unable to upload your file as it is a directory or has 0 bytes" => "Impossibile inviare il file poiché è una cartella o ha dimensione 0 byte",
"Upload Error" => "Errore di invio", "Upload Error" => "Errore di invio",
"Pending" => "In corso", "Pending" => "In corso",
"1 file uploading" => "1 file in fase di caricamento",
"files uploading" => "file in fase di caricamento",
"Upload cancelled." => "Invio annullato", "Upload cancelled." => "Invio annullato",
"File upload is in progress. Leaving the page now will cancel the upload." => "Caricamento del file in corso. La chiusura della pagina annullerà il caricamento.", "File upload is in progress. Leaving the page now will cancel the upload." => "Caricamento del file in corso. La chiusura della pagina annullerà il caricamento.",
"Invalid name, '/' is not allowed." => "Nome non valido", "Invalid name, '/' is not allowed." => "Nome non valido",
"files scanned" => "file analizzati",
"error while scanning" => "errore durante la scansione",
"Name" => "Nome",
"Size" => "Dimensione", "Size" => "Dimensione",
"Modified" => "Modificato", "Modified" => "Modificato",
"folder" => "cartella", "folder" => "cartella",
"folders" => "cartelle", "folders" => "cartelle",
"file" => "file", "file" => "file",
"files" => "file", "files" => "file",
"seconds ago" => "secondi fa",
"minute ago" => "minuto fa",
"minutes ago" => "minuti fa",
"today" => "oggi",
"yesterday" => "ieri",
"days ago" => "giorni fa",
"last month" => "mese scorso",
"months ago" => "mesi fa",
"last year" => "anno scorso",
"years ago" => "anni fa",
"File handling" => "Gestione file", "File handling" => "Gestione file",
"Maximum upload size" => "Dimensione massima upload", "Maximum upload size" => "Dimensione massima upload",
"max. possible: " => "numero mass.: ", "max. possible: " => "numero mass.: ",
@ -46,7 +62,6 @@
"Upload" => "Carica", "Upload" => "Carica",
"Cancel upload" => "Annulla invio", "Cancel upload" => "Annulla invio",
"Nothing in here. Upload something!" => "Non c'è niente qui. Carica qualcosa!", "Nothing in here. Upload something!" => "Non c'è niente qui. Carica qualcosa!",
"Name" => "Nome",
"Share" => "Condividi", "Share" => "Condividi",
"Download" => "Scarica", "Download" => "Scarica",
"Upload too large" => "Il file caricato è troppo grande", "Upload too large" => "Il file caricato è troppo grande",

View File

@ -9,6 +9,7 @@
"Files" => "ファイル", "Files" => "ファイル",
"Unshare" => "共有しない", "Unshare" => "共有しない",
"Delete" => "削除", "Delete" => "削除",
"Rename" => "名前の変更",
"already exists" => "既に存在します", "already exists" => "既に存在します",
"replace" => "置き換え", "replace" => "置き換え",
"suggest name" => "推奨名称", "suggest name" => "推奨名称",
@ -22,15 +23,30 @@
"Unable to upload your file as it is a directory or has 0 bytes" => "アップロード使用としているファイルがディレクトリ、もしくはサイズが0バイトのため、アップロードできません。", "Unable to upload your file as it is a directory or has 0 bytes" => "アップロード使用としているファイルがディレクトリ、もしくはサイズが0バイトのため、アップロードできません。",
"Upload Error" => "アップロードエラー", "Upload Error" => "アップロードエラー",
"Pending" => "保留", "Pending" => "保留",
"1 file uploading" => "ファイルを1つアップロード中",
"files uploading" => "ファイルをアップロード中",
"Upload cancelled." => "アップロードはキャンセルされました。", "Upload cancelled." => "アップロードはキャンセルされました。",
"File upload is in progress. Leaving the page now will cancel the upload." => "ファイル転送を実行中です。今このページから移動するとアップロードが中止されます。", "File upload is in progress. Leaving the page now will cancel the upload." => "ファイル転送を実行中です。今このページから移動するとアップロードが中止されます。",
"Invalid name, '/' is not allowed." => "無効な名前、'/' は使用できません。", "Invalid name, '/' is not allowed." => "無効な名前、'/' は使用できません。",
"files scanned" => "ファイルをスキャンしました",
"error while scanning" => "スキャン中のエラー",
"Name" => "名前",
"Size" => "サイズ", "Size" => "サイズ",
"Modified" => "更新日時", "Modified" => "更新日時",
"folder" => "フォルダ", "folder" => "フォルダ",
"folders" => "フォルダ", "folders" => "フォルダ",
"file" => "ファイル", "file" => "ファイル",
"files" => "ファイル", "files" => "ファイル",
"seconds ago" => "秒前",
"minute ago" => "分前",
"minutes ago" => "分前",
"today" => "今日",
"yesterday" => "昨日",
"days ago" => "日前",
"last month" => "一月前",
"months ago" => "月前",
"last year" => "一年前",
"years ago" => "年前",
"File handling" => "ファイル操作", "File handling" => "ファイル操作",
"Maximum upload size" => "最大アップロードサイズ", "Maximum upload size" => "最大アップロードサイズ",
"max. possible: " => "最大容量: ", "max. possible: " => "最大容量: ",
@ -46,7 +62,6 @@
"Upload" => "アップロード", "Upload" => "アップロード",
"Cancel upload" => "アップロードをキャンセル", "Cancel upload" => "アップロードをキャンセル",
"Nothing in here. Upload something!" => "ここには何もありません。何かアップロードしてください。", "Nothing in here. Upload something!" => "ここには何もありません。何かアップロードしてください。",
"Name" => "名前",
"Share" => "共有", "Share" => "共有",
"Download" => "ダウンロード", "Download" => "ダウンロード",
"Upload too large" => "ファイルサイズが大きすぎます", "Upload too large" => "ファイルサイズが大きすぎます",

View File

@ -21,6 +21,7 @@
"Pending" => "보류 중", "Pending" => "보류 중",
"Upload cancelled." => "업로드 취소.", "Upload cancelled." => "업로드 취소.",
"Invalid name, '/' is not allowed." => "잘못된 이름, '/' 은 허용이 되지 않습니다.", "Invalid name, '/' is not allowed." => "잘못된 이름, '/' 은 허용이 되지 않습니다.",
"Name" => "이름",
"Size" => "크기", "Size" => "크기",
"Modified" => "수정됨", "Modified" => "수정됨",
"folder" => "폴더", "folder" => "폴더",
@ -41,7 +42,6 @@
"Upload" => "업로드", "Upload" => "업로드",
"Cancel upload" => "업로드 취소", "Cancel upload" => "업로드 취소",
"Nothing in here. Upload something!" => "내용이 없습니다. 업로드할 수 있습니다!", "Nothing in here. Upload something!" => "내용이 없습니다. 업로드할 수 있습니다!",
"Name" => "이름",
"Share" => "공유", "Share" => "공유",
"Download" => "다운로드", "Download" => "다운로드",
"Upload too large" => "업로드 용량 초과", "Upload too large" => "업로드 용량 초과",

View File

@ -21,6 +21,7 @@
"Upload cancelled." => "Upload ofgebrach.", "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.", "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.", "Invalid name, '/' is not allowed." => "Ongültege Numm, '/' net erlaabt.",
"Name" => "Numm",
"Size" => "Gréisst", "Size" => "Gréisst",
"Modified" => "Geännert", "Modified" => "Geännert",
"folder" => "Dossier", "folder" => "Dossier",
@ -41,7 +42,6 @@
"Upload" => "Eroplueden", "Upload" => "Eroplueden",
"Cancel upload" => "Upload ofbriechen", "Cancel upload" => "Upload ofbriechen",
"Nothing in here. Upload something!" => "Hei ass näischt. Lued eppes rop!", "Nothing in here. Upload something!" => "Hei ass näischt. Lued eppes rop!",
"Name" => "Numm",
"Share" => "Share", "Share" => "Share",
"Download" => "Eroflueden", "Download" => "Eroflueden",
"Upload too large" => "Upload ze grouss", "Upload too large" => "Upload ze grouss",

View File

@ -15,6 +15,7 @@
"Pending" => "Laukiantis", "Pending" => "Laukiantis",
"Upload cancelled." => "Įkėlimas atšauktas.", "Upload cancelled." => "Įkėlimas atšauktas.",
"Invalid name, '/' is not allowed." => "Pavadinime negali būti naudojamas ženklas \"/\".", "Invalid name, '/' is not allowed." => "Pavadinime negali būti naudojamas ženklas \"/\".",
"Name" => "Pavadinimas",
"Size" => "Dydis", "Size" => "Dydis",
"Modified" => "Pakeista", "Modified" => "Pakeista",
"folder" => "katalogas", "folder" => "katalogas",
@ -33,7 +34,6 @@
"Upload" => "Įkelti", "Upload" => "Įkelti",
"Cancel upload" => "Atšaukti siuntimą", "Cancel upload" => "Atšaukti siuntimą",
"Nothing in here. Upload something!" => "Čia tuščia. Įkelkite ką nors!", "Nothing in here. Upload something!" => "Čia tuščia. Įkelkite ką nors!",
"Name" => "Pavadinimas",
"Share" => "Dalintis", "Share" => "Dalintis",
"Download" => "Atsisiųsti", "Download" => "Atsisiųsti",
"Upload too large" => "Įkėlimui failas per didelis", "Upload too large" => "Įkėlimui failas per didelis",

View File

@ -16,6 +16,7 @@
"Pending" => "Gaida savu kārtu", "Pending" => "Gaida savu kārtu",
"Upload cancelled." => "Augšuplāde ir atcelta", "Upload cancelled." => "Augšuplāde ir atcelta",
"Invalid name, '/' is not allowed." => "Šis simbols '/', nav atļauts.", "Invalid name, '/' is not allowed." => "Šis simbols '/', nav atļauts.",
"Name" => "Nosaukums",
"Size" => "Izmērs", "Size" => "Izmērs",
"Modified" => "Izmainīts", "Modified" => "Izmainīts",
"folder" => "mape", "folder" => "mape",
@ -33,7 +34,6 @@
"Upload" => "Augšuplādet", "Upload" => "Augšuplādet",
"Cancel upload" => "Atcelt augšuplādi", "Cancel upload" => "Atcelt augšuplādi",
"Nothing in here. Upload something!" => "Te vēl nekas nav. Rīkojies, sāc augšuplādēt", "Nothing in here. Upload something!" => "Te vēl nekas nav. Rīkojies, sāc augšuplādēt",
"Name" => "Nosaukums",
"Share" => "Līdzdalīt", "Share" => "Līdzdalīt",
"Download" => "Lejuplādēt", "Download" => "Lejuplādēt",
"Upload too large" => "Fails ir par lielu lai to augšuplādetu", "Upload too large" => "Fails ir par lielu lai to augšuplādetu",

View File

@ -14,6 +14,7 @@
"Pending" => "Чека", "Pending" => "Чека",
"Upload cancelled." => "Преземањето е прекинато.", "Upload cancelled." => "Преземањето е прекинато.",
"Invalid name, '/' is not allowed." => "неисправно име, '/' не е дозволено.", "Invalid name, '/' is not allowed." => "неисправно име, '/' не е дозволено.",
"Name" => "Име",
"Size" => "Големина", "Size" => "Големина",
"Modified" => "Променето", "Modified" => "Променето",
"folder" => "фолдер", "folder" => "фолдер",
@ -34,7 +35,6 @@
"Upload" => "Подигни", "Upload" => "Подигни",
"Cancel upload" => "Откажи прикачување", "Cancel upload" => "Откажи прикачување",
"Nothing in here. Upload something!" => "Тука нема ништо. Снимете нешто!", "Nothing in here. Upload something!" => "Тука нема ништо. Снимете нешто!",
"Name" => "Име",
"Share" => "Сподели", "Share" => "Сподели",
"Download" => "Преземи", "Download" => "Преземи",
"Upload too large" => "Датотеката е премногу голема", "Upload too large" => "Датотеката е премногу голема",

View File

@ -20,6 +20,7 @@
"Pending" => "Dalam proses", "Pending" => "Dalam proses",
"Upload cancelled." => "Muatnaik dibatalkan.", "Upload cancelled." => "Muatnaik dibatalkan.",
"Invalid name, '/' is not allowed." => "penggunaa nama tidak sah, '/' tidak dibenarkan.", "Invalid name, '/' is not allowed." => "penggunaa nama tidak sah, '/' tidak dibenarkan.",
"Name" => "Nama ",
"Size" => "Saiz", "Size" => "Saiz",
"Modified" => "Dimodifikasi", "Modified" => "Dimodifikasi",
"folder" => "direktori", "folder" => "direktori",
@ -40,7 +41,6 @@
"Upload" => "Muat naik", "Upload" => "Muat naik",
"Cancel upload" => "Batal muat naik", "Cancel upload" => "Batal muat naik",
"Nothing in here. Upload something!" => "Tiada apa-apa di sini. Muat naik sesuatu!", "Nothing in here. Upload something!" => "Tiada apa-apa di sini. Muat naik sesuatu!",
"Name" => "Nama ",
"Share" => "Kongsi", "Share" => "Kongsi",
"Download" => "Muat turun", "Download" => "Muat turun",
"Upload too large" => "Muat naik terlalu besar", "Upload too large" => "Muat naik terlalu besar",

View File

@ -21,6 +21,7 @@
"Pending" => "Ventende", "Pending" => "Ventende",
"Upload cancelled." => "Opplasting avbrutt.", "Upload cancelled." => "Opplasting avbrutt.",
"Invalid name, '/' is not allowed." => "Ugyldig navn, '/' er ikke tillatt. ", "Invalid name, '/' is not allowed." => "Ugyldig navn, '/' er ikke tillatt. ",
"Name" => "Navn",
"Size" => "Størrelse", "Size" => "Størrelse",
"Modified" => "Endret", "Modified" => "Endret",
"folder" => "mappe", "folder" => "mappe",
@ -42,7 +43,6 @@
"Upload" => "Last opp", "Upload" => "Last opp",
"Cancel upload" => "Avbryt opplasting", "Cancel upload" => "Avbryt opplasting",
"Nothing in here. Upload something!" => "Ingenting her. Last opp noe!", "Nothing in here. Upload something!" => "Ingenting her. Last opp noe!",
"Name" => "Navn",
"Share" => "Del", "Share" => "Del",
"Download" => "Last ned", "Download" => "Last ned",
"Upload too large" => "Opplasting for stor", "Upload too large" => "Opplasting for stor",

View File

@ -9,6 +9,7 @@
"Files" => "Bestanden", "Files" => "Bestanden",
"Unshare" => "Stop delen", "Unshare" => "Stop delen",
"Delete" => "Verwijder", "Delete" => "Verwijder",
"Rename" => "Hernoem",
"already exists" => "bestaat al", "already exists" => "bestaat al",
"replace" => "vervang", "replace" => "vervang",
"suggest name" => "Stel een naam voor", "suggest name" => "Stel een naam voor",
@ -25,6 +26,9 @@
"Upload cancelled." => "Uploaden geannuleerd.", "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.", "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.", "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", "Size" => "Bestandsgrootte",
"Modified" => "Laatst aangepast", "Modified" => "Laatst aangepast",
"folder" => "map", "folder" => "map",
@ -46,7 +50,6 @@
"Upload" => "Upload", "Upload" => "Upload",
"Cancel upload" => "Upload afbreken", "Cancel upload" => "Upload afbreken",
"Nothing in here. Upload something!" => "Er bevindt zich hier niets. Upload een bestand!", "Nothing in here. Upload something!" => "Er bevindt zich hier niets. Upload een bestand!",
"Name" => "Naam",
"Share" => "Delen", "Share" => "Delen",
"Download" => "Download", "Download" => "Download",
"Upload too large" => "Bestanden te groot", "Upload too large" => "Bestanden te groot",

View File

@ -7,6 +7,7 @@
"Missing a temporary folder" => "Manglar ei mellombels mappe", "Missing a temporary folder" => "Manglar ei mellombels mappe",
"Files" => "Filer", "Files" => "Filer",
"Delete" => "Slett", "Delete" => "Slett",
"Name" => "Namn",
"Size" => "Storleik", "Size" => "Storleik",
"Modified" => "Endra", "Modified" => "Endra",
"Maximum upload size" => "Maksimal opplastingsstorleik", "Maximum upload size" => "Maksimal opplastingsstorleik",
@ -15,7 +16,6 @@
"Folder" => "Mappe", "Folder" => "Mappe",
"Upload" => "Last opp", "Upload" => "Last opp",
"Nothing in here. Upload something!" => "Ingenting her. Last noko opp!", "Nothing in here. Upload something!" => "Ingenting her. Last noko opp!",
"Name" => "Namn",
"Download" => "Last ned", "Download" => "Last ned",
"Upload too large" => "For stor opplasting", "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." "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."

71
apps/files/l10n/oc.php Normal file
View File

@ -0,0 +1,71 @@
<?php $TRANSLATIONS = array(
"There is no error, the file uploaded with success" => "Amontcargament capitat, pas d'errors",
"The uploaded file exceeds the upload_max_filesize directive in php.ini" => "Lo fichièr amontcargat es tròp bèl per la directiva «upload_max_filesize » del php.ini",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Lo fichièr amontcargat es mai gròs que la directiva «MAX_FILE_SIZE» especifiada dins lo formulari HTML",
"The uploaded file was only partially uploaded" => "Lo fichièr foguèt pas completament amontcargat",
"No file was uploaded" => "Cap de fichièrs son estats amontcargats",
"Missing a temporary folder" => "Un dorsièr temporari manca",
"Failed to write to disk" => "L'escriptura sul disc a fracassat",
"Files" => "Fichièrs",
"Unshare" => "Non parteja",
"Delete" => "Escafa",
"Rename" => "Torna nomenar",
"already exists" => "existís jà",
"replace" => "remplaça",
"suggest name" => "nom prepausat",
"cancel" => "anulla",
"replaced" => "remplaçat",
"undo" => "defar",
"with" => "amb",
"unshared" => "Non partejat",
"deleted" => "escafat",
"generating ZIP-file, it may take some time." => "Fichièr ZIP a se far, aquò pòt trigar un briu.",
"Unable to upload your file as it is a directory or has 0 bytes" => "Impossible d'amontcargar lo teu fichièr qu'es un repertòri o que ten pas que 0 octet.",
"Upload Error" => "Error d'amontcargar",
"Pending" => "Al esperar",
"1 file uploading" => "1 fichièr al amontcargar",
"files uploading" => "fichièrs al amontcargar",
"Upload cancelled." => "Amontcargar anullat.",
"File upload is in progress. Leaving the page now will cancel the upload." => "Un amontcargar es a se far. Daissar aquesta pagina ara tamparà lo cargament. ",
"Invalid name, '/' is not allowed." => "Nom invalid, '/' es pas permis.",
"files scanned" => "Fichièr explorat",
"error while scanning" => "error pendant l'exploracion",
"Name" => "Nom",
"Size" => "Talha",
"Modified" => "Modificat",
"folder" => "Dorsièr",
"folders" => "Dorsièrs",
"file" => "fichièr",
"files" => "fichièrs",
"seconds ago" => "secondas",
"minute ago" => "minuta",
"minutes ago" => "minutas",
"today" => "uèi",
"yesterday" => "ièr",
"days ago" => "jorns",
"last month" => "mes passat",
"months ago" => "meses",
"last year" => "an passat",
"years ago" => "ans",
"File handling" => "Manejament de fichièr",
"Maximum upload size" => "Talha maximum d'amontcargament",
"max. possible: " => "max. possible: ",
"Needed for multi-file and folder downloads." => "Requesit per avalcargar gropat de fichièrs e dorsièr",
"Enable ZIP-download" => "Activa l'avalcargament de ZIP",
"0 is unlimited" => "0 es pas limitat",
"Maximum input size for ZIP files" => "Talha maximum de dintrada per fichièrs ZIP",
"Save" => "Enregistra",
"New" => "Nòu",
"Text file" => "Fichièr de tèxte",
"Folder" => "Dorsièr",
"From url" => "Dempuèi l'URL",
"Upload" => "Amontcarga",
"Cancel upload" => " Anulla l'amontcargar",
"Nothing in here. Upload something!" => "Pas res dedins. Amontcarga qualquaren",
"Share" => "Parteja",
"Download" => "Avalcarga",
"Upload too large" => "Amontcargament tròp gròs",
"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Los fichièrs que sias a amontcargar son tròp pesucs per la talha maxi pel servidor.",
"Files are being scanned, please wait." => "Los fiichièrs son a èsser explorats, ",
"Current scanning" => "Exploracion en cors"
);

View File

@ -9,6 +9,7 @@
"Files" => "Pliki", "Files" => "Pliki",
"Unshare" => "Nie udostępniaj", "Unshare" => "Nie udostępniaj",
"Delete" => "Usuwa element", "Delete" => "Usuwa element",
"Rename" => "Zmień nazwę",
"already exists" => "Już istnieje", "already exists" => "Już istnieje",
"replace" => "zastap", "replace" => "zastap",
"suggest name" => "zasugeruj nazwę", "suggest name" => "zasugeruj nazwę",
@ -25,6 +26,9 @@
"Upload cancelled." => "Wczytywanie anulowane.", "Upload cancelled." => "Wczytywanie anulowane.",
"File upload is in progress. Leaving the page now will cancel the upload." => "Wysyłanie pliku jest w toku. Teraz opuszczając stronę wysyłanie zostanie anulowane.", "File upload is in progress. Leaving the page now will cancel the upload." => "Wysyłanie pliku jest w toku. Teraz opuszczając stronę wysyłanie zostanie anulowane.",
"Invalid name, '/' is not allowed." => "Nieprawidłowa nazwa '/' jest niedozwolone.", "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", "Size" => "Rozmiar",
"Modified" => "Czas modyfikacji", "Modified" => "Czas modyfikacji",
"folder" => "folder", "folder" => "folder",
@ -46,7 +50,6 @@
"Upload" => "Prześlij", "Upload" => "Prześlij",
"Cancel upload" => "Przestań wysyłać", "Cancel upload" => "Przestań wysyłać",
"Nothing in here. Upload something!" => "Brak zawartości. Proszę wysłać pliki!", "Nothing in here. Upload something!" => "Brak zawartości. Proszę wysłać pliki!",
"Name" => "Nazwa",
"Share" => "Współdziel", "Share" => "Współdziel",
"Download" => "Pobiera element", "Download" => "Pobiera element",
"Upload too large" => "Wysyłany plik ma za duży rozmiar", "Upload too large" => "Wysyłany plik ma za duży rozmiar",

View File

@ -7,26 +7,46 @@
"Missing a temporary folder" => "Pasta temporária não encontrada", "Missing a temporary folder" => "Pasta temporária não encontrada",
"Failed to write to disk" => "Falha ao escrever no disco", "Failed to write to disk" => "Falha ao escrever no disco",
"Files" => "Arquivos", "Files" => "Arquivos",
"Unshare" => "Descompartilhar",
"Delete" => "Excluir", "Delete" => "Excluir",
"Rename" => "Renomear",
"already exists" => "já existe", "already exists" => "já existe",
"replace" => "substituir", "replace" => "substituir",
"suggest name" => "sugerir nome",
"cancel" => "cancelar", "cancel" => "cancelar",
"replaced" => "substituido ", "replaced" => "substituido ",
"undo" => "desfazer", "undo" => "desfazer",
"with" => "com", "with" => "com",
"unshared" => "descompartilhado",
"deleted" => "deletado", "deleted" => "deletado",
"generating ZIP-file, it may take some time." => "gerando arquivo ZIP, isso pode levar um tempo.", "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.", "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", "Upload Error" => "Erro de envio",
"Pending" => "Pendente", "Pending" => "Pendente",
"1 file uploading" => "enviando 1 arquivo",
"files uploading" => "enviando arquivos",
"Upload cancelled." => "Envio cancelado.", "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.", "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", "Size" => "Tamanho",
"Modified" => "Modificado", "Modified" => "Modificado",
"folder" => "pasta", "folder" => "pasta",
"folders" => "pastas", "folders" => "pastas",
"file" => "arquivo", "file" => "arquivo",
"files" => "arquivos", "files" => "arquivos",
"seconds ago" => "segundos atrás",
"minute ago" => "minuto atrás",
"minutes ago" => "minutos atrás",
"today" => "hoje",
"yesterday" => "ontem",
"days ago" => "dias atrás",
"last month" => "último mês",
"months ago" => "meses atrás",
"last year" => "último ano",
"years ago" => "anos atrás",
"File handling" => "Tratamento de Arquivo", "File handling" => "Tratamento de Arquivo",
"Maximum upload size" => "Tamanho máximo para carregar", "Maximum upload size" => "Tamanho máximo para carregar",
"max. possible: " => "max. possível:", "max. possible: " => "max. possível:",
@ -34,6 +54,7 @@
"Enable ZIP-download" => "Habilitar ZIP-download", "Enable ZIP-download" => "Habilitar ZIP-download",
"0 is unlimited" => "0 para ilimitado", "0 is unlimited" => "0 para ilimitado",
"Maximum input size for ZIP files" => "Tamanho máximo para arquivo ZIP", "Maximum input size for ZIP files" => "Tamanho máximo para arquivo ZIP",
"Save" => "Salvar",
"New" => "Novo", "New" => "Novo",
"Text file" => "Arquivo texto", "Text file" => "Arquivo texto",
"Folder" => "Pasta", "Folder" => "Pasta",
@ -41,7 +62,6 @@
"Upload" => "Carregar", "Upload" => "Carregar",
"Cancel upload" => "Cancelar upload", "Cancel upload" => "Cancelar upload",
"Nothing in here. Upload something!" => "Nada aqui.Carrege alguma coisa!", "Nothing in here. Upload something!" => "Nada aqui.Carrege alguma coisa!",
"Name" => "Nome",
"Share" => "Compartilhar", "Share" => "Compartilhar",
"Download" => "Baixar", "Download" => "Baixar",
"Upload too large" => "Arquivo muito grande", "Upload too large" => "Arquivo muito grande",

View File

@ -21,6 +21,7 @@
"Pending" => "Pendente", "Pending" => "Pendente",
"Upload cancelled." => "O upload foi cancelado.", "Upload cancelled." => "O upload foi cancelado.",
"Invalid name, '/' is not allowed." => "nome inválido, '/' não permitido.", "Invalid name, '/' is not allowed." => "nome inválido, '/' não permitido.",
"Name" => "Nome",
"Size" => "Tamanho", "Size" => "Tamanho",
"Modified" => "Modificado", "Modified" => "Modificado",
"folder" => "pasta", "folder" => "pasta",
@ -41,7 +42,6 @@
"Upload" => "Enviar", "Upload" => "Enviar",
"Cancel upload" => "Cancelar upload", "Cancel upload" => "Cancelar upload",
"Nothing in here. Upload something!" => "Vazio. Envia alguma coisa!", "Nothing in here. Upload something!" => "Vazio. Envia alguma coisa!",
"Name" => "Nome",
"Share" => "Partilhar", "Share" => "Partilhar",
"Download" => "Transferir", "Download" => "Transferir",
"Upload too large" => "Envio muito grande", "Upload too large" => "Envio muito grande",

View File

@ -7,9 +7,46 @@
"Missing a temporary folder" => "Lipsește un dosar temporar", "Missing a temporary folder" => "Lipsește un dosar temporar",
"Failed to write to disk" => "Eroare la scriere pe disc", "Failed to write to disk" => "Eroare la scriere pe disc",
"Files" => "Fișiere", "Files" => "Fișiere",
"Unshare" => "Anulează partajarea",
"Delete" => "Șterge", "Delete" => "Șterge",
"Rename" => "Redenumire",
"already exists" => "deja există",
"replace" => "înlocuire",
"suggest name" => "sugerează nume",
"cancel" => "anulare",
"replaced" => "înlocuit",
"undo" => "Anulează ultima acțiune",
"with" => "cu",
"unshared" => "nepartajat",
"deleted" => "șters",
"generating ZIP-file, it may take some time." => "se generază fișierul ZIP, va dura ceva timp.",
"Unable to upload your file as it is a directory or has 0 bytes" => "Nu s-a putut încărca fișierul tău deoarece pare să fie un director sau are 0 bytes.",
"Upload Error" => "Eroare la încărcare",
"Pending" => "În așteptare",
"1 file uploading" => "un fișier se încarcă",
"files uploading" => "fișiere se încarcă",
"Upload cancelled." => "Încărcare anulată.",
"File upload is in progress. Leaving the page now will cancel the upload." => "Fișierul este în curs de încărcare. Părăsirea paginii va întrerupe încărcarea.",
"Invalid name, '/' is not allowed." => "Nume invalid, '/' nu este permis.",
"files scanned" => "fișiere scanate",
"error while scanning" => "eroare la scanarea",
"Name" => "Nume",
"Size" => "Dimensiune", "Size" => "Dimensiune",
"Modified" => "Modificat", "Modified" => "Modificat",
"folder" => "director",
"folders" => "directoare",
"file" => "fișier",
"files" => "fișiere",
"seconds ago" => "secunde în urmă",
"minute ago" => "minut în urmă",
"minutes ago" => "minute în urmă",
"today" => "astăzi",
"yesterday" => "ieri",
"days ago" => "zile în urmă",
"last month" => "ultima lună",
"months ago" => "luni în urmă",
"last year" => "ultimul an",
"years ago" => "ani în urmă",
"File handling" => "Manipulare fișiere", "File handling" => "Manipulare fișiere",
"Maximum upload size" => "Dimensiune maximă admisă la încărcare", "Maximum upload size" => "Dimensiune maximă admisă la încărcare",
"max. possible: " => "max. posibil:", "max. possible: " => "max. posibil:",
@ -17,6 +54,7 @@
"Enable ZIP-download" => "Activează descărcare fișiere compresate", "Enable ZIP-download" => "Activează descărcare fișiere compresate",
"0 is unlimited" => "0 e nelimitat", "0 is unlimited" => "0 e nelimitat",
"Maximum input size for ZIP files" => "Dimensiunea maximă de intrare pentru fișiere compresate", "Maximum input size for ZIP files" => "Dimensiunea maximă de intrare pentru fișiere compresate",
"Save" => "Salvare",
"New" => "Nou", "New" => "Nou",
"Text file" => "Fișier text", "Text file" => "Fișier text",
"Folder" => "Dosar", "Folder" => "Dosar",
@ -24,7 +62,6 @@
"Upload" => "Încarcă", "Upload" => "Încarcă",
"Cancel upload" => "Anulează încărcarea", "Cancel upload" => "Anulează încărcarea",
"Nothing in here. Upload something!" => "Nimic aici. Încarcă ceva!", "Nothing in here. Upload something!" => "Nimic aici. Încarcă ceva!",
"Name" => "Nume",
"Share" => "Partajează", "Share" => "Partajează",
"Download" => "Descarcă", "Download" => "Descarcă",
"Upload too large" => "Fișierul încărcat este prea mare", "Upload too large" => "Fișierul încărcat este prea mare",

View File

@ -25,6 +25,7 @@
"Upload cancelled." => "Загрузка отменена.", "Upload cancelled." => "Загрузка отменена.",
"File upload is in progress. Leaving the page now will cancel the upload." => "Файл в процессе загрузки. Покинув страницу вы прервёте загрузку.", "File upload is in progress. Leaving the page now will cancel the upload." => "Файл в процессе загрузки. Покинув страницу вы прервёте загрузку.",
"Invalid name, '/' is not allowed." => "Неверное имя, '/' не допускается.", "Invalid name, '/' is not allowed." => "Неверное имя, '/' не допускается.",
"Name" => "Название",
"Size" => "Размер", "Size" => "Размер",
"Modified" => "Изменён", "Modified" => "Изменён",
"folder" => "папка", "folder" => "папка",
@ -46,7 +47,6 @@
"Upload" => "Загрузить", "Upload" => "Загрузить",
"Cancel upload" => "Отмена загрузки", "Cancel upload" => "Отмена загрузки",
"Nothing in here. Upload something!" => "Здесь ничего нет. Загрузите что-нибудь!", "Nothing in here. Upload something!" => "Здесь ничего нет. Загрузите что-нибудь!",
"Name" => "Название",
"Share" => "Опубликовать", "Share" => "Опубликовать",
"Download" => "Скачать", "Download" => "Скачать",
"Upload too large" => "Файл слишком большой", "Upload too large" => "Файл слишком большой",

View File

@ -25,6 +25,7 @@
"Upload cancelled." => "Загрузка отменена", "Upload cancelled." => "Загрузка отменена",
"File upload is in progress. Leaving the page now will cancel the upload." => "Процесс загрузки файла. Если покинуть страницу сейчас, загрузка будет отменена.", "File upload is in progress. Leaving the page now will cancel the upload." => "Процесс загрузки файла. Если покинуть страницу сейчас, загрузка будет отменена.",
"Invalid name, '/' is not allowed." => "Неправильное имя, '/' не допускается.", "Invalid name, '/' is not allowed." => "Неправильное имя, '/' не допускается.",
"Name" => "Имя",
"Size" => "Размер", "Size" => "Размер",
"Modified" => "Изменен", "Modified" => "Изменен",
"folder" => "папка", "folder" => "папка",
@ -46,7 +47,6 @@
"Upload" => "Загрузить ", "Upload" => "Загрузить ",
"Cancel upload" => "Отмена загрузки", "Cancel upload" => "Отмена загрузки",
"Nothing in here. Upload something!" => "Здесь ничего нет. Загрузите что-нибудь!", "Nothing in here. Upload something!" => "Здесь ничего нет. Загрузите что-нибудь!",
"Name" => "Имя",
"Share" => "Сделать общим", "Share" => "Сделать общим",
"Download" => "Загрузить", "Download" => "Загрузить",
"Upload too large" => "Загрузка слишком велика", "Upload too large" => "Загрузка слишком велика",

View File

@ -7,13 +7,27 @@
"Missing a temporary folder" => "Chýbajúci dočasný priečinok", "Missing a temporary folder" => "Chýbajúci dočasný priečinok",
"Failed to write to disk" => "Zápis na disk sa nepodaril", "Failed to write to disk" => "Zápis na disk sa nepodaril",
"Files" => "Súbory", "Files" => "Súbory",
"Unshare" => "Nezdielať",
"Delete" => "Odstrániť", "Delete" => "Odstrániť",
"already exists" => "už existuje",
"replace" => "nahradiť",
"suggest name" => "pomôcť s menom",
"cancel" => "zrušiť",
"replaced" => "zmenené",
"undo" => "vrátiť",
"with" => "s",
"unshared" => "zdielané",
"deleted" => "zmazané",
"generating ZIP-file, it may take some time." => "generujem ZIP-súbor, môže to chvíľu trvať.", "generating ZIP-file, it may take some time." => "generujem ZIP-súbor, môže to chvíľu trvať.",
"Unable to upload your file as it is a directory or has 0 bytes" => "Nemôžem nahrať súbor lebo je to priečinok alebo má 0 bajtov.", "Unable to upload your file as it is a directory or has 0 bytes" => "Nemôžem nahrať súbor lebo je to priečinok alebo má 0 bajtov.",
"Upload Error" => "Chyba nahrávania", "Upload Error" => "Chyba nahrávania",
"Pending" => "Čaká sa", "Pending" => "Čaká sa",
"Upload cancelled." => "Nahrávanie zrušené", "Upload cancelled." => "Nahrávanie zrušené",
"File upload is in progress. Leaving the page now will cancel the upload." => "Opustenie stránky zruší práve prebiehajúce odosielanie súboru.",
"Invalid name, '/' is not allowed." => "Chybný názov, \"/\" nie je povolené", "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ť", "Size" => "Veľkosť",
"Modified" => "Upravené", "Modified" => "Upravené",
"folder" => "priečinok", "folder" => "priečinok",
@ -21,23 +35,23 @@
"file" => "súbor", "file" => "súbor",
"files" => "súbory", "files" => "súbory",
"File handling" => "Nastavenie správanie k súborom", "File handling" => "Nastavenie správanie k súborom",
"Maximum upload size" => "Maximálna veľkosť nahratia", "Maximum upload size" => "Maximálna veľkosť odosielaného súboru",
"max. possible: " => "najväčšie možné:", "max. possible: " => "najväčšie možné:",
"Needed for multi-file and folder downloads." => "Vyžadované pre sťahovanie viacerých súborov a adresárov.", "Needed for multi-file and folder downloads." => "Vyžadované pre sťahovanie viacerých súborov a adresárov.",
"Enable ZIP-download" => "Povoliť sťahovanie ZIP súborov", "Enable ZIP-download" => "Povoliť sťahovanie ZIP súborov",
"0 is unlimited" => "0 znamená neobmedzené", "0 is unlimited" => "0 znamená neobmedzené",
"Maximum input size for ZIP files" => "Najväčšia veľkosť ZIP súborov", "Maximum input size for ZIP files" => "Najväčšia veľkosť ZIP súborov",
"Save" => "Uložiť",
"New" => "Nový", "New" => "Nový",
"Text file" => "Textový súbor", "Text file" => "Textový súbor",
"Folder" => "Priečinok", "Folder" => "Priečinok",
"From url" => "Z url", "From url" => "Z url",
"Upload" => "Nahrať", "Upload" => "Nahrať",
"Cancel upload" => "Zrušiť odosielanie", "Cancel upload" => "Zrušiť odosielanie",
"Nothing in here. Upload something!" => "Nič tu nie je. Nahrajte niečo!", "Nothing in here. Upload something!" => "Žiadny súbor. Nahrajte niečo!",
"Name" => "Meno",
"Share" => "Zdielať", "Share" => "Zdielať",
"Download" => "Stiahnuť", "Download" => "Stiahnuť",
"Upload too large" => "Nahrávanie príliš veľké", "Upload too large" => "Odosielaný súbor je príliš veľký",
"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Súbory ktoré sa snažíte nahrať presahujú maximálnu veľkosť pre nahratie súborov na tento server.", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Súbory ktoré sa snažíte nahrať presahujú maximálnu veľkosť pre nahratie súborov na tento server.",
"Files are being scanned, please wait." => "Súbory sa práve prehľadávajú, prosím čakajte.", "Files are being scanned, please wait." => "Súbory sa práve prehľadávajú, prosím čakajte.",
"Current scanning" => "Práve prehliadané" "Current scanning" => "Práve prehliadané"

View File

@ -9,6 +9,7 @@
"Files" => "Datoteke", "Files" => "Datoteke",
"Unshare" => "Odstrani iz souporabe", "Unshare" => "Odstrani iz souporabe",
"Delete" => "Izbriši", "Delete" => "Izbriši",
"Rename" => "Preimenuj",
"already exists" => "že obstaja", "already exists" => "že obstaja",
"replace" => "nadomesti", "replace" => "nadomesti",
"suggest name" => "predlagaj ime", "suggest name" => "predlagaj ime",
@ -25,6 +26,9 @@
"Upload cancelled." => "Nalaganje je bilo preklicano.", "Upload cancelled." => "Nalaganje je bilo preklicano.",
"File upload is in progress. Leaving the page now will cancel the upload." => "Nalaganje datoteke je v teku. Če zapustite to stran zdaj, boste nalaganje preklicali.", "File upload is in progress. Leaving the page now will cancel the upload." => "Nalaganje datoteke je v teku. Če zapustite to stran zdaj, boste nalaganje preklicali.",
"Invalid name, '/' is not allowed." => "Neveljavno ime. Znak '/' ni dovoljen.", "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", "Size" => "Velikost",
"Modified" => "Spremenjeno", "Modified" => "Spremenjeno",
"folder" => "mapa", "folder" => "mapa",
@ -46,7 +50,6 @@
"Upload" => "Naloži", "Upload" => "Naloži",
"Cancel upload" => "Prekliči nalaganje", "Cancel upload" => "Prekliči nalaganje",
"Nothing in here. Upload something!" => "Tukaj ni ničesar. Naložite kaj!", "Nothing in here. Upload something!" => "Tukaj ni ničesar. Naložite kaj!",
"Name" => "Ime",
"Share" => "Souporaba", "Share" => "Souporaba",
"Download" => "Prenesi", "Download" => "Prenesi",
"Upload too large" => "Nalaganje ni mogoče, ker je preveliko", "Upload too large" => "Nalaganje ni mogoče, ker je preveliko",

View File

@ -7,6 +7,7 @@
"Missing a temporary folder" => "Недостаје привремена фасцикла", "Missing a temporary folder" => "Недостаје привремена фасцикла",
"Files" => "Фајлови", "Files" => "Фајлови",
"Delete" => "Обриши", "Delete" => "Обриши",
"Name" => "Име",
"Size" => "Величина", "Size" => "Величина",
"Modified" => "Задња измена", "Modified" => "Задња измена",
"Maximum upload size" => "Максимална величина пошиљке", "Maximum upload size" => "Максимална величина пошиљке",
@ -15,7 +16,6 @@
"Folder" => "фасцикла", "Folder" => "фасцикла",
"Upload" => "Пошаљи", "Upload" => "Пошаљи",
"Nothing in here. Upload something!" => "Овде нема ничег. Пошаљите нешто!", "Nothing in here. Upload something!" => "Овде нема ничег. Пошаљите нешто!",
"Name" => "Име",
"Download" => "Преузми", "Download" => "Преузми",
"Upload too large" => "Пошиљка је превелика", "Upload too large" => "Пошиљка је превелика",
"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Фајлови које желите да пошаљете превазилазе ограничење максималне величине пошиљке на овом серверу." "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Фајлови које желите да пошаљете превазилазе ограничење максималне величине пошиљке на овом серверу."

View File

@ -7,12 +7,12 @@
"Missing a temporary folder" => "Nedostaje privremena fascikla", "Missing a temporary folder" => "Nedostaje privremena fascikla",
"Files" => "Fajlovi", "Files" => "Fajlovi",
"Delete" => "Obriši", "Delete" => "Obriši",
"Name" => "Ime",
"Size" => "Veličina", "Size" => "Veličina",
"Modified" => "Zadnja izmena", "Modified" => "Zadnja izmena",
"Maximum upload size" => "Maksimalna veličina pošiljke", "Maximum upload size" => "Maksimalna veličina pošiljke",
"Upload" => "Pošalji", "Upload" => "Pošalji",
"Nothing in here. Upload something!" => "Ovde nema ničeg. Pošaljite nešto!", "Nothing in here. Upload something!" => "Ovde nema ničeg. Pošaljite nešto!",
"Name" => "Ime",
"Download" => "Preuzmi", "Download" => "Preuzmi",
"Upload too large" => "Pošiljka je prevelika", "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." "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."

View File

@ -9,6 +9,7 @@
"Files" => "Filer", "Files" => "Filer",
"Unshare" => "Sluta dela", "Unshare" => "Sluta dela",
"Delete" => "Radera", "Delete" => "Radera",
"Rename" => "Byt namn",
"already exists" => "finns redan", "already exists" => "finns redan",
"replace" => "ersätt", "replace" => "ersätt",
"suggest name" => "föreslå namn", "suggest name" => "föreslå namn",
@ -22,15 +23,30 @@
"Unable to upload your file as it is a directory or has 0 bytes" => "Kunde inte ladda upp dina filer eftersom det antingen är en mapp eller har 0 bytes.", "Unable to upload your file as it is a directory or has 0 bytes" => "Kunde inte ladda upp dina filer eftersom det antingen är en mapp eller har 0 bytes.",
"Upload Error" => "Uppladdningsfel", "Upload Error" => "Uppladdningsfel",
"Pending" => "Väntar", "Pending" => "Väntar",
"1 file uploading" => "1 filuppladdning",
"files uploading" => "filer laddas upp",
"Upload cancelled." => "Uppladdning avbruten.", "Upload cancelled." => "Uppladdning avbruten.",
"File upload is in progress. Leaving the page now will cancel the upload." => "Filuppladdning pågår. Lämnar du sidan så avbryts uppladdningen.", "File upload is in progress. Leaving the page now will cancel the upload." => "Filuppladdning pågår. Lämnar du sidan så avbryts uppladdningen.",
"Invalid name, '/' is not allowed." => "Ogiltigt namn, '/' är inte tillåten.", "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", "Size" => "Storlek",
"Modified" => "Ändrad", "Modified" => "Ändrad",
"folder" => "mapp", "folder" => "mapp",
"folders" => "mappar", "folders" => "mappar",
"file" => "fil", "file" => "fil",
"files" => "filer", "files" => "filer",
"seconds ago" => "sekunder sedan",
"minute ago" => "minut sedan",
"minutes ago" => "minuter sedan",
"today" => "i dag",
"yesterday" => "i går",
"days ago" => "dagar sedan",
"last month" => "förra månaden",
"months ago" => "månader sedan",
"last year" => "förra året",
"years ago" => "år sedan",
"File handling" => "Filhantering", "File handling" => "Filhantering",
"Maximum upload size" => "Maximal storlek att ladda upp", "Maximum upload size" => "Maximal storlek att ladda upp",
"max. possible: " => "max. möjligt:", "max. possible: " => "max. möjligt:",
@ -46,7 +62,6 @@
"Upload" => "Ladda upp", "Upload" => "Ladda upp",
"Cancel upload" => "Avbryt uppladdning", "Cancel upload" => "Avbryt uppladdning",
"Nothing in here. Upload something!" => "Ingenting här. Ladda upp något!", "Nothing in here. Upload something!" => "Ingenting här. Ladda upp något!",
"Name" => "Namn",
"Share" => "Dela", "Share" => "Dela",
"Download" => "Ladda ner", "Download" => "Ladda ner",
"Upload too large" => "För stor uppladdning", "Upload too large" => "För stor uppladdning",

View File

@ -9,6 +9,7 @@
"Files" => "ไฟล์", "Files" => "ไฟล์",
"Unshare" => "ยกเลิกการแชร์ข้อมูล", "Unshare" => "ยกเลิกการแชร์ข้อมูล",
"Delete" => "ลบ", "Delete" => "ลบ",
"Rename" => "เปลี่ยนชื่อ",
"already exists" => "มีอยู่แล้ว", "already exists" => "มีอยู่แล้ว",
"replace" => "แทนที่", "replace" => "แทนที่",
"suggest name" => "แนะนำชื่อ", "suggest name" => "แนะนำชื่อ",
@ -22,15 +23,30 @@
"Unable to upload your file as it is a directory or has 0 bytes" => "ไม่สามารถอัพโหลดไฟล์ของคุณได้ เนื่องจากไฟล์ดังกล่าวเป็นไดเร็กทอรี่หรือมีขนาด 0 ไบต์", "Unable to upload your file as it is a directory or has 0 bytes" => "ไม่สามารถอัพโหลดไฟล์ของคุณได้ เนื่องจากไฟล์ดังกล่าวเป็นไดเร็กทอรี่หรือมีขนาด 0 ไบต์",
"Upload Error" => "เกิดข้อผิดพลาดในการอัพโหลด", "Upload Error" => "เกิดข้อผิดพลาดในการอัพโหลด",
"Pending" => "อยู่ระหว่างดำเนินการ", "Pending" => "อยู่ระหว่างดำเนินการ",
"1 file uploading" => "กำลังอัพโหลดไฟล์ 1 ไฟล์",
"files uploading" => "การอัพโหลดไฟล์",
"Upload cancelled." => "การอัพโหลดถูกยกเลิก", "Upload cancelled." => "การอัพโหลดถูกยกเลิก",
"File upload is in progress. Leaving the page now will cancel the upload." => "การอัพโหลดไฟล์กำลังอยู่ในระหว่างดำเนินการ การออกจากหน้าเว็บนี้จะทำให้การอัพโหลดถูกยกเลิก", "File upload is in progress. Leaving the page now will cancel the upload." => "การอัพโหลดไฟล์กำลังอยู่ในระหว่างดำเนินการ การออกจากหน้าเว็บนี้จะทำให้การอัพโหลดถูกยกเลิก",
"Invalid name, '/' is not allowed." => "ชื่อที่ใช้ไม่ถูกต้อง '/' ไม่อนุญาตให้ใช้งาน", "Invalid name, '/' is not allowed." => "ชื่อที่ใช้ไม่ถูกต้อง '/' ไม่อนุญาตให้ใช้งาน",
"files scanned" => "ไฟล์ต่างๆได้รับการสแกนแล้ว",
"error while scanning" => "พบข้อผิดพลาดในระหว่างการสแกนไฟล์",
"Name" => "ชื่อ",
"Size" => "ขนาด", "Size" => "ขนาด",
"Modified" => "ปรับปรุงล่าสุด", "Modified" => "ปรับปรุงล่าสุด",
"folder" => "โฟลเดอร์", "folder" => "โฟลเดอร์",
"folders" => "โฟลเดอร์", "folders" => "โฟลเดอร์",
"file" => "ไฟล์", "file" => "ไฟล์",
"files" => "ไฟล์", "files" => "ไฟล์",
"seconds ago" => "วินาที ก่อนหน้านี้",
"minute ago" => "นาที ที่ผ่านมา",
"minutes ago" => "นาที ที่ผ่านมา",
"today" => "วันนี้",
"yesterday" => "เมื่อวานนี้",
"days ago" => "วัน ที่ผ่านมา",
"last month" => "เดือนที่แล้ว",
"months ago" => "เดือน ที่ผ่านมา",
"last year" => "ปีที่แล้ว",
"years ago" => "ปี ที่ผ่านมา",
"File handling" => "การจัดกาไฟล์", "File handling" => "การจัดกาไฟล์",
"Maximum upload size" => "ขนาดไฟล์สูงสุดที่อัพโหลดได้", "Maximum upload size" => "ขนาดไฟล์สูงสุดที่อัพโหลดได้",
"max. possible: " => "จำนวนสูงสุดที่สามารถทำได้: ", "max. possible: " => "จำนวนสูงสุดที่สามารถทำได้: ",
@ -46,7 +62,6 @@
"Upload" => "อัพโหลด", "Upload" => "อัพโหลด",
"Cancel upload" => "ยกเลิกการอัพโหลด", "Cancel upload" => "ยกเลิกการอัพโหลด",
"Nothing in here. Upload something!" => "ยังไม่มีไฟล์ใดๆอยู่ที่นี่ กรุณาอัพโหลดไฟล์!", "Nothing in here. Upload something!" => "ยังไม่มีไฟล์ใดๆอยู่ที่นี่ กรุณาอัพโหลดไฟล์!",
"Name" => "ชื่อ",
"Share" => "แชร์", "Share" => "แชร์",
"Download" => "ดาวน์โหลด", "Download" => "ดาวน์โหลด",
"Upload too large" => "ไฟล์ที่อัพโหลดมีขนาดใหญ่เกินไป", "Upload too large" => "ไฟล์ที่อัพโหลดมีขนาดใหญ่เกินไป",

View File

@ -22,6 +22,7 @@
"Upload cancelled." => "Yükleme iptal edildi.", "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.", "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.", "Invalid name, '/' is not allowed." => "Geçersiz isim, '/' işaretine izin verilmiyor.",
"Name" => "Ad",
"Size" => "Boyut", "Size" => "Boyut",
"Modified" => "Değiştirilme", "Modified" => "Değiştirilme",
"folder" => "dizin", "folder" => "dizin",
@ -42,7 +43,6 @@
"Upload" => "Yükle", "Upload" => "Yükle",
"Cancel upload" => "Yüklemeyi iptal et", "Cancel upload" => "Yüklemeyi iptal et",
"Nothing in here. Upload something!" => "Burada hiçbir şey yok. Birşeyler yükleyin!", "Nothing in here. Upload something!" => "Burada hiçbir şey yok. Birşeyler yükleyin!",
"Name" => "Ad",
"Share" => "Paylaş", "Share" => "Paylaş",
"Download" => "İndir", "Download" => "İndir",
"Upload too large" => "Yüklemeniz çok büyük", "Upload too large" => "Yüklemeniz çok büyük",

View File

@ -15,6 +15,7 @@
"Pending" => "Очікування", "Pending" => "Очікування",
"Upload cancelled." => "Завантаження перервано.", "Upload cancelled." => "Завантаження перервано.",
"Invalid name, '/' is not allowed." => "Некоректне ім'я, '/' не дозволено.", "Invalid name, '/' is not allowed." => "Некоректне ім'я, '/' не дозволено.",
"Name" => "Ім'я",
"Size" => "Розмір", "Size" => "Розмір",
"Modified" => "Змінено", "Modified" => "Змінено",
"folder" => "тека", "folder" => "тека",
@ -31,7 +32,6 @@
"Upload" => "Відвантажити", "Upload" => "Відвантажити",
"Cancel upload" => "Перервати завантаження", "Cancel upload" => "Перервати завантаження",
"Nothing in here. Upload something!" => "Тут нічого немає. Відвантажте що-небудь!", "Nothing in here. Upload something!" => "Тут нічого немає. Відвантажте що-небудь!",
"Name" => "Ім'я",
"Share" => "Поділитися", "Share" => "Поділитися",
"Download" => "Завантажити", "Download" => "Завантажити",
"Upload too large" => "Файл занадто великий", "Upload too large" => "Файл занадто великий",

View File

@ -24,6 +24,7 @@
"Upload cancelled." => "Hủy tải lên", "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.", "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 '/'", "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ỡ", "Size" => "Kích cỡ",
"Modified" => "Thay đổi", "Modified" => "Thay đổi",
"folder" => "folder", "folder" => "folder",
@ -44,7 +45,6 @@
"Upload" => "Tải lên", "Upload" => "Tải lên",
"Cancel upload" => "Hủy upload", "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ì đó !", "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ẻ", "Share" => "Chia sẻ",
"Download" => "Tải xuống", "Download" => "Tải xuống",
"Upload too large" => "File tải lên quá lớn", "Upload too large" => "File tải lên quá lớn",

View File

@ -7,20 +7,27 @@
"Missing a temporary folder" => "丢失了一个临时文件夹", "Missing a temporary folder" => "丢失了一个临时文件夹",
"Failed to write to disk" => "写磁盘失败", "Failed to write to disk" => "写磁盘失败",
"Files" => "文件", "Files" => "文件",
"Unshare" => "取消共享",
"Delete" => "删除", "Delete" => "删除",
"already exists" => "已经存在了", "already exists" => "已经存在了",
"replace" => "替换", "replace" => "替换",
"suggest name" => "推荐名称",
"cancel" => "取消", "cancel" => "取消",
"replaced" => "替换过了", "replaced" => "替换过了",
"undo" => "撤销", "undo" => "撤销",
"with" => "随着", "with" => "随着",
"unshared" => "已取消共享",
"deleted" => "删除", "deleted" => "删除",
"generating ZIP-file, it may take some time." => "正在生成ZIP文件,这可能需要点时间", "generating ZIP-file, it may take some time." => "正在生成ZIP文件,这可能需要点时间",
"Unable to upload your file as it is a directory or has 0 bytes" => "不能上传你指定的文件,可能因为它是个文件夹或者大小为0", "Unable to upload your file as it is a directory or has 0 bytes" => "不能上传你指定的文件,可能因为它是个文件夹或者大小为0",
"Upload Error" => "上传错误", "Upload Error" => "上传错误",
"Pending" => "Pending", "Pending" => "Pending",
"Upload cancelled." => "上传取消了", "Upload cancelled." => "上传取消了",
"File upload is in progress. Leaving the page now will cancel the upload." => "文件正在上传。关闭页面会取消上传。",
"Invalid name, '/' is not allowed." => "非法文件名,\"/\"是不被许可的", "Invalid name, '/' is not allowed." => "非法文件名,\"/\"是不被许可的",
"files scanned" => "文件已扫描",
"error while scanning" => "扫描出错",
"Name" => "名字",
"Size" => "大小", "Size" => "大小",
"Modified" => "修改日期", "Modified" => "修改日期",
"folder" => "文件夹", "folder" => "文件夹",
@ -34,6 +41,7 @@
"Enable ZIP-download" => "支持ZIP下载", "Enable ZIP-download" => "支持ZIP下载",
"0 is unlimited" => "0是无限的", "0 is unlimited" => "0是无限的",
"Maximum input size for ZIP files" => "最大的ZIP文件输入大小", "Maximum input size for ZIP files" => "最大的ZIP文件输入大小",
"Save" => "保存",
"New" => "新建", "New" => "新建",
"Text file" => "文本文档", "Text file" => "文本文档",
"Folder" => "文件夹", "Folder" => "文件夹",
@ -41,7 +49,6 @@
"Upload" => "上传", "Upload" => "上传",
"Cancel upload" => "取消上传", "Cancel upload" => "取消上传",
"Nothing in here. Upload something!" => "这里没有东西.上传点什么!", "Nothing in here. Upload something!" => "这里没有东西.上传点什么!",
"Name" => "名字",
"Share" => "分享", "Share" => "分享",
"Download" => "下载", "Download" => "下载",
"Upload too large" => "上传的文件太大了", "Upload too large" => "上传的文件太大了",

View File

@ -9,6 +9,7 @@
"Files" => "文件", "Files" => "文件",
"Unshare" => "取消分享", "Unshare" => "取消分享",
"Delete" => "删除", "Delete" => "删除",
"Rename" => "重命名",
"already exists" => "已经存在", "already exists" => "已经存在",
"replace" => "替换", "replace" => "替换",
"suggest name" => "建议名称", "suggest name" => "建议名称",
@ -22,15 +23,30 @@
"Unable to upload your file as it is a directory or has 0 bytes" => "无法上传文件,因为它是一个目录或者大小为 0 字节", "Unable to upload your file as it is a directory or has 0 bytes" => "无法上传文件,因为它是一个目录或者大小为 0 字节",
"Upload Error" => "上传错误", "Upload Error" => "上传错误",
"Pending" => "操作等待中", "Pending" => "操作等待中",
"1 file uploading" => "1个文件上传中",
"files uploading" => "文件上传中",
"Upload cancelled." => "上传已取消", "Upload cancelled." => "上传已取消",
"File upload is in progress. Leaving the page now will cancel the upload." => "文件正在上传中。现在离开此页会导致上传动作被取消。", "File upload is in progress. Leaving the page now will cancel the upload." => "文件正在上传中。现在离开此页会导致上传动作被取消。",
"Invalid name, '/' is not allowed." => "非法的名称,不允许使用‘/’。", "Invalid name, '/' is not allowed." => "非法的名称,不允许使用‘/’。",
"files scanned" => "已扫描文件",
"error while scanning" => "扫描时出错",
"Name" => "名称",
"Size" => "大小", "Size" => "大小",
"Modified" => "修改日期", "Modified" => "修改日期",
"folder" => "文件夹", "folder" => "文件夹",
"folders" => "文件夹", "folders" => "文件夹",
"file" => "文件", "file" => "文件",
"files" => "文件", "files" => "文件",
"seconds ago" => "几秒前",
"minute ago" => "1分钟前",
"minutes ago" => "分钟前",
"today" => "今天",
"yesterday" => "昨天",
"days ago" => "%d 天前",
"last month" => "上月",
"months ago" => "月前",
"last year" => "上年",
"years ago" => "几年前",
"File handling" => "文件处理", "File handling" => "文件处理",
"Maximum upload size" => "最大上传大小", "Maximum upload size" => "最大上传大小",
"max. possible: " => "最大可能: ", "max. possible: " => "最大可能: ",
@ -46,7 +62,6 @@
"Upload" => "上传", "Upload" => "上传",
"Cancel upload" => "取消上传", "Cancel upload" => "取消上传",
"Nothing in here. Upload something!" => "这里还什么都没有。上传些东西吧!", "Nothing in here. Upload something!" => "这里还什么都没有。上传些东西吧!",
"Name" => "名称",
"Share" => "共享", "Share" => "共享",
"Download" => "下载", "Download" => "下载",
"Upload too large" => "上传文件过大", "Upload too large" => "上传文件过大",

View File

@ -17,6 +17,7 @@
"Upload cancelled." => "上傳取消", "Upload cancelled." => "上傳取消",
"File upload is in progress. Leaving the page now will cancel the upload." => "檔案上傳中. 離開此頁面將會取消上傳.", "File upload is in progress. Leaving the page now will cancel the upload." => "檔案上傳中. 離開此頁面將會取消上傳.",
"Invalid name, '/' is not allowed." => "無效的名稱, '/'是不被允許的", "Invalid name, '/' is not allowed." => "無效的名稱, '/'是不被允許的",
"Name" => "名稱",
"Size" => "大小", "Size" => "大小",
"Modified" => "修改", "Modified" => "修改",
"File handling" => "檔案處理", "File handling" => "檔案處理",
@ -33,7 +34,6 @@
"Upload" => "上傳", "Upload" => "上傳",
"Cancel upload" => "取消上傳", "Cancel upload" => "取消上傳",
"Nothing in here. Upload something!" => "沒有任何東西。請上傳內容!", "Nothing in here. Upload something!" => "沒有任何東西。請上傳內容!",
"Name" => "名稱",
"Share" => "分享", "Share" => "分享",
"Download" => "下載", "Download" => "下載",
"Upload too large" => "上傳過大", "Upload too large" => "上傳過大",

View File

@ -16,9 +16,9 @@
<input type="hidden" name="MAX_FILE_SIZE" value="<?php echo $_['uploadMaxFilesize'] ?>" id="max_upload"> <input type="hidden" name="MAX_FILE_SIZE" value="<?php echo $_['uploadMaxFilesize'] ?>" id="max_upload">
<input type="hidden" class="max_human_file_size" value="(max <?php echo $_['uploadMaxHumanFilesize']; ?>)"> <input type="hidden" class="max_human_file_size" value="(max <?php echo $_['uploadMaxHumanFilesize']; ?>)">
<input type="hidden" name="dir" value="<?php echo $_['dir'] ?>" id="dir"> <input type="hidden" name="dir" value="<?php echo $_['dir'] ?>" id="dir">
<button class="file_upload_filename">&nbsp;<img class='svg action' alt="Upload" src="<?php echo OCP\image_path("core", "actions/upload-white.svg"); ?>" /></button>
<input class="file_upload_start" type="file" name='files[]'/> <input class="file_upload_start" type="file" name='files[]'/>
<a href="#" class="file_upload_button_wrapper" onclick="return false;" title="<?php echo $l->t('Upload'); echo ' max. '.$_['uploadMaxHumanFilesize'] ?>"></a> <a href="#" class="file_upload_button_wrapper" onclick="return false;" title="<?php echo $l->t('Upload'); echo ' max. '.$_['uploadMaxHumanFilesize'] ?>"></a>
<button class="file_upload_filename"></button>
<iframe name="file_upload_target_1" class='file_upload_target' src=""></iframe> <iframe name="file_upload_target_1" class='file_upload_target' src=""></iframe>
</form> </form>
</div> </div>

View 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"
);

View File

@ -0,0 +1,6 @@
<?php $TRANSLATIONS = array(
"Encryption" => "Encriptado",
"Exclude the following file types from encryption" => "Excluír os seguintes tipos de ficheiro da encriptación",
"None" => "Nada",
"Enable Encryption" => "Habilitar encriptación"
);

View 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"
);

View File

@ -0,0 +1,6 @@
<?php $TRANSLATIONS = array(
"Encryption" => "Encriptação",
"Exclude the following file types from encryption" => "Excluir da encriptação os seguintes tipo de ficheiros",
"None" => "Nenhum",
"Enable Encryption" => "Activar Encriptação"
);

View File

@ -0,0 +1,6 @@
<?php $TRANSLATIONS = array(
"Encryption" => "Încriptare",
"Exclude the following file types from encryption" => "Exclude următoarele tipuri de fișiere de la încriptare",
"None" => "Niciuna",
"Enable Encryption" => "Activare încriptare"
);

View File

@ -0,0 +1,6 @@
<?php $TRANSLATIONS = array(
"Encryption" => "Шифрование",
"Exclude the following file types from encryption" => "Исключите следующие типы файлов из шифрования",
"None" => "Ни один",
"Enable Encryption" => "Включить шифрование"
);

View File

@ -0,0 +1,6 @@
<?php $TRANSLATIONS = array(
"Encryption" => "加密",
"Exclude the following file types from encryption" => "从加密中排除如下文件类型",
"None" => "",
"Enable Encryption" => "启用加密"
);

View File

@ -2,26 +2,35 @@
OCP\JSON::checkAppEnabled('files_external'); OCP\JSON::checkAppEnabled('files_external');
$view = \OCP\Files::getStorage("files_external"); if ( !($filename = $_FILES['rootcert_import']['name']) ) {
$from = $_FILES['rootcert_import']['tmp_name']; header("Location: settings/personal.php");
$path = \OCP\Config::getSystemValue('datadirectory').$view->getAbsolutePath("").'uploads/'; exit;
if(!file_exists($path)) mkdir($path,0700,true);
$to = $path.$_FILES['rootcert_import']['name'];
move_uploaded_file($from, $to);
//check if it is a PEM certificate, otherwise convert it if possible
$fh = fopen($to, 'r');
$data = fread($fh, filesize($to));
fclose($fh);
if (!strpos($data, 'BEGIN CERTIFICATE')) {
$pem = chunk_split(base64_encode($data), 64, "\n");
$pem = "-----BEGIN CERTIFICATE-----\n".$pem."-----END CERTIFICATE-----\n";
$fh = fopen($to, 'w');
fwrite($fh, $pem);
fclose($fh);
} }
OC_Mount_Config::createCertificateBundle(); $fh = fopen($_FILES['rootcert_import']['tmp_name'], 'r');
$data = fread($fh, filesize($_FILES['rootcert_import']['tmp_name']));
fclose($fh);
$filename = $_FILES['rootcert_import']['name'];
$view = new \OC_FilesystemView('/'.\OCP\User::getUser().'/files_external/uploads');
if (!$view->file_exists('')) $view->mkdir('');
$isValid = openssl_pkey_get_public($data);
//maybe it was just the wrong file format, try to convert it...
if ($isValid == false) {
$data = chunk_split(base64_encode($data), 64, "\n");
$data = "-----BEGIN CERTIFICATE-----\n".$data."-----END CERTIFICATE-----\n";
$isValid = openssl_pkey_get_public($data);
}
// add the certificate if it could be verified
if ( $isValid ) {
$view->file_put_contents($filename, $data);
OC_Mount_Config::createCertificateBundle();
} else {
OCP\Util::writeLog("files_external", "Couldn't import SSL root certificate ($filename), allowed formats: PEM and DER", OCP\Util::WARN);
}
header("Location: settings/personal.php"); header("Location: settings/personal.php");
exit; exit;

View File

@ -5,7 +5,10 @@ OCP\JSON::checkLoggedIn();
OCP\JSON::callCheck(); OCP\JSON::callCheck();
$view = \OCP\Files::getStorage("files_external"); $view = \OCP\Files::getStorage("files_external");
$cert = $_POST['cert']; $file = 'uploads/'.ltrim($_POST['cert'], "/\\.");
$file = \OCP\Config::getSystemValue('datadirectory').$view->getAbsolutePath("").'uploads/'.$cert;
unlink($file); if ( $view->file_exists($file) ) {
OC_Mount_Config::createCertificateBundle(); $view->unlink($file);
OC_Mount_Config::createCertificateBundle();
}

View 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"
);

View File

@ -1,10 +1,18 @@
<?php $TRANSLATIONS = array( <?php $TRANSLATIONS = array(
"External Storage" => "Εξωτερική αποθήκευση", "External Storage" => "Εξωτερικό Αποθηκευτικό Μέσο",
"Mount point" => "Σημείο προσάρτησης", "Mount point" => "Σημείο προσάρτησης",
"Backend" => "Σύστημα υποστήριξης",
"Configuration" => "Ρυθμίσεις", "Configuration" => "Ρυθμίσεις",
"Options" => "Επιλογές", "Options" => "Επιλογές",
"Applicable" => "Εφαρμόσιμο",
"Add mount point" => "Προσθήκη σημείου προσάρτησης",
"None set" => "Κανένα επιλεγμένο",
"All Users" => "Όλοι οι χρήστες", "All Users" => "Όλοι οι χρήστες",
"Groups" => "Ομάδες", "Groups" => "Ομάδες",
"Users" => "Χρήστες", "Users" => "Χρήστες",
"Delete" => "Διαγραφή" "Delete" => "Διαγραφή",
"SSL root certificates" => "Πιστοποιητικά SSL root",
"Import Root Certificate" => "Εισαγωγή Πιστοποιητικού Root",
"Enable User External Storage" => "Ενεργοποίηση Εξωτερικού Αποθηκευτικού Χώρου Χρήστη",
"Allow users to mount their own external storage" => "Να επιτρέπεται στους χρήστες να προσαρτούν δικό τους εξωτερικό αποθηκευτικό χώρο"
); );

View 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"
);

View File

@ -0,0 +1,18 @@
<?php $TRANSLATIONS = array(
"External Storage" => "Almacenamento externo",
"Mount point" => "Punto de montaxe",
"Backend" => "Almacén",
"Configuration" => "Configuración",
"Options" => "Opcións",
"Applicable" => "Aplicable",
"Add mount point" => "Engadir punto de montaxe",
"None set" => "Non establecido",
"All Users" => "Tódolos usuarios",
"Groups" => "Grupos",
"Users" => "Usuarios",
"Delete" => "Eliminar",
"SSL root certificates" => "Certificados raíz SSL",
"Import Root Certificate" => "Importar Certificado Raíz",
"Enable User External Storage" => "Habilitar almacenamento externo do usuario",
"Allow users to mount their own external storage" => "Permitir aos usuarios montar os seus propios almacenamentos externos"
);

View 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"
);

View File

@ -0,0 +1,10 @@
<?php $TRANSLATIONS = array(
"Configuration" => "Configuração",
"Options" => "Opções",
"Applicable" => "Aplicável",
"All Users" => "Todos os utilizadores",
"Groups" => "Grupos",
"Users" => "Utilizadores",
"Delete" => "Apagar",
"Import Root Certificate" => "Importar Certificado Root"
);

View File

@ -0,0 +1,18 @@
<?php $TRANSLATIONS = array(
"External Storage" => "Stocare externă",
"Mount point" => "Punctul de montare",
"Backend" => "Backend",
"Configuration" => "Configurație",
"Options" => "Opțiuni",
"Applicable" => "Aplicabil",
"Add mount point" => "Adaugă punct de montare",
"None set" => "Niciunul",
"All Users" => "Toți utilizatorii",
"Groups" => "Grupuri",
"Users" => "Utilizatori",
"Delete" => "Șterge",
"SSL root certificates" => "Certificate SSL root",
"Import Root Certificate" => "Importă certificat root",
"Enable User External Storage" => "Permite stocare externă pentru utilizatori",
"Allow users to mount their own external storage" => "Permite utilizatorilor să monteze stocare externă proprie"
);

View File

@ -0,0 +1,18 @@
<?php $TRANSLATIONS = array(
"External Storage" => "Внешние системы хранения данных",
"Mount point" => "Точка монтирования",
"Backend" => "Бэкэнд",
"Configuration" => "Конфигурация",
"Options" => "Опции",
"Applicable" => "Применимый",
"Add mount point" => "Добавить точку монтирования",
"None set" => "Не задан",
"All Users" => "Все пользователи",
"Groups" => "Группы",
"Users" => "Пользователи",
"Delete" => "Удалить",
"SSL root certificates" => "Корневые сертификаты SSL",
"Import Root Certificate" => "Импортировать корневые сертификаты",
"Enable User External Storage" => "Включить пользовательскую внешнюю систему хранения данных",
"Allow users to mount their own external storage" => "Разрешить пользователям монтировать их собственную внешнюю систему хранения данных"
);

View File

@ -0,0 +1,18 @@
<?php $TRANSLATIONS = array(
"External Storage" => "外部存储",
"Mount point" => "挂载点",
"Backend" => "后端",
"Configuration" => "配置",
"Options" => "选项",
"Applicable" => "可应用",
"Add mount point" => "添加挂载点",
"None set" => "未设置",
"All Users" => "所有用户",
"Groups" => "群组",
"Users" => "用户",
"Delete" => "删除",
"SSL root certificates" => "SSL 根证书",
"Import Root Certificate" => "导入根证书",
"Enable User External Storage" => "启用用户外部存储",
"Allow users to mount their own external storage" => "允许用户挂载他们的外部存储"
);

View File

@ -270,6 +270,7 @@ class OC_Mount_Config {
fclose($fh); fclose($fh);
if (strpos($data, 'BEGIN CERTIFICATE')) { if (strpos($data, 'BEGIN CERTIFICATE')) {
fwrite($fh_certs, $data); fwrite($fh_certs, $data);
fwrite($fh_certs, "\r\n");
} }
} }

View File

@ -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"> <fieldset class="personalblock">
<legend><strong><?php echo $l->t('External Storage'); ?></strong></legend> <legend><strong><?php echo $l->t('External Storage'); ?></strong></legend>
<table id="externalStorage" data-admin='<?php echo json_encode($_['isAdminPage']); ?>'> <table id="externalStorage" data-admin='<?php echo json_encode($_['isAdminPage']); ?>'>
@ -81,7 +81,18 @@
</table> </table>
<br /> <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']); ?>'> <table id="sslCertificate" data-admin='<?php echo json_encode($_['isAdminPage']); ?>'>
<thead> <thead>
<tr> <tr>
@ -101,12 +112,5 @@
<input type="file" id="rootcert_import" name="rootcert_import" style="width:230px;"> <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'); ?>" /> <input type="submit" name="cert_import" value="<?php echo $l->t('Import Root Certificate'); ?>" />
<?php endif; ?> <?php endif; ?>
</fieldset>
<?php if ($_['isAdminPage']): ?> </form>
<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>

View File

@ -1,9 +1,14 @@
<?php <?php
$installedVersion = OCP\Config::getAppValue('files_sharing', 'installed_version'); $installedVersion = OCP\Config::getAppValue('files_sharing', 'installed_version');
if (version_compare($installedVersion, '0.3', '<')) { if (version_compare($installedVersion, '0.3', '<')) {
$update_error = false;
$query = OCP\DB::prepare('SELECT * FROM `*PREFIX*sharing`'); $query = OCP\DB::prepare('SELECT * FROM `*PREFIX*sharing`');
$result = $query->execute(); $result = $query->execute();
$groupShares = array(); $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()) { while ($row = $result->fetchRow()) {
$itemSource = OC_FileCache::getId($row['source'], ''); $itemSource = OC_FileCache::getId($row['source'], '');
if ($itemSource != -1) { if ($itemSource != -1) {
@ -14,9 +19,9 @@ if (version_compare($installedVersion, '0.3', '<')) {
$itemType = 'file'; $itemType = 'file';
} }
if ($row['permissions'] == 0) { if ($row['permissions'] == 0) {
$permissions = OCP\Share::PERMISSION_READ; $permissions = OCP\Share::PERMISSION_READ | OCP\Share::PERMISSION_SHARE;
} else { } 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') { if ($itemType == 'folder') {
$permissions |= OCP\Share::PERMISSION_CREATE; $permissions |= OCP\Share::PERMISSION_CREATE;
} }
@ -38,10 +43,22 @@ if (version_compare($installedVersion, '0.3', '<')) {
$shareWith = $row['uid_shared_with']; $shareWith = $row['uid_shared_with'];
} }
OC_User::setUserId($row['uid_owner']); OC_User::setUserId($row['uid_owner']);
OCP\Share::shareItem($itemType, $itemSource, $shareType, $shareWith, $permissions); //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;
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) {
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 // NOTE: Let's drop the table after more testing
// $query = OCP\DB::prepare('DROP TABLE `*PREFIX*sharing`'); // $query = OCP\DB::prepare('DROP TABLE `*PREFIX*sharing`');
// $query->execute(); // $query->execute();
} }

View File

@ -1,8 +1,11 @@
body { background:#ddd; } body { background:#ddd; }
#header { position:fixed; top:0; left:0; right:0; z-index:100; height:2.5em; line-height:2.5em; padding:.5em; background:#1d2d44; -moz-box-shadow:0 0 10px rgba(0, 0, 0, .5), inset 0 -2px 10px #222; -webkit-box-shadow:0 0 10px rgba(0, 0, 0, .5), inset 0 -2px 10px #222; box-shadow:0 0 10px rgba(0, 0, 0, .5), inset 0 -2px 10px #222; } #header { position:fixed; top:0; left:0; right:0; z-index:100; height:2.5em; line-height:2.5em; padding:.5em; background:#1d2d44; -moz-box-shadow:0 0 10px rgba(0, 0, 0, .5), inset 0 -2px 10px #222; -webkit-box-shadow:0 0 10px rgba(0, 0, 0, .5), inset 0 -2px 10px #222; box-shadow:0 0 10px rgba(0, 0, 0, .5), inset 0 -2px 10px #222; }
#details { color:#fff; } #details { color:#fff; }
#header #download { margin-left:2em; font-weight:bold; color:#fff; } #header #download { margin-left:2em; font-weight:bold; }
#header #download img { padding-left: 0.1em; padding-right: 0.3em; vertical-align: text-bottom; }
#preview { min-height:30em; margin:50px auto; padding-top:2em; border-bottom:1px solid #f8f8f8; background:#eee; text-align:center; } #preview { min-height:30em; margin:50px auto; padding-top:2em; border-bottom:1px solid #f8f8f8; background:#eee; text-align:center; }
#noPreview { display:none; padding-top:5em; } #noPreview { display:none; padding-top:5em; }
p.info { width:22em; text-align: center; margin:2em auto; color:#777; text-shadow:#fff 0 1px 0; } p.info { width:22em; text-align: center; margin:2em auto; color:#777; text-shadow:#fff 0 1px 0; }
p.info a { font-weight:bold; color:#777; } p.info a { font-weight:bold; color:#777; }
#imgframe { width:80%; height: 75%; margin: 0 auto; padding-bottom:2em; }
#imgframe img { max-height:100%; max-width: 100%; }

View File

@ -1,6 +1,10 @@
// Override download path to files_sharing/public.php // Override download path to files_sharing/public.php
function fileDownloadPath(dir, file) { function fileDownloadPath(dir, file) {
return $('#downloadURL').val(); var url = $('#downloadURL').val();
if (url.indexOf('&path=') != -1) {
url += '/'+file;
}
return url;
} }
$(document).ready(function() { $(document).ready(function() {
@ -13,10 +17,21 @@ $(document).ready(function() {
var action = FileActions.getDefault(mimetype, 'file', OC.PERMISSION_READ); var action = FileActions.getDefault(mimetype, 'file', OC.PERMISSION_READ);
if (typeof action === 'undefined') { if (typeof action === 'undefined') {
$('#noPreview').show(); $('#noPreview').show();
if (mimetype != 'httpd/unix-directory') {
// NOTE: Remove when a better file previewer solution exists
$('#content').remove();
$('table').remove();
}
} else { } else {
action($('#filename').val()); action($('#filename').val());
} }
} }
FileActions.register('dir', 'Open', OC.PERMISSION_READ, '', function(filename) {
var tr = $('tr').filterAttr('data-file', filename)
if (tr.length > 0) {
window.location = $(tr).find('a.name').attr('href');
}
});
} }
}); });

View File

@ -39,10 +39,8 @@ $(document).ready(function() {
var tr = $('tr').filterAttr('data-file', filename); var tr = $('tr').filterAttr('data-file', filename);
if ($(tr).data('type') == 'dir') { if ($(tr).data('type') == 'dir') {
var itemType = 'folder'; var itemType = 'folder';
var link = false;
} else { } else {
var itemType = 'file'; var itemType = 'file';
var link = true;
} }
var possiblePermissions = $(tr).data('permissions'); var possiblePermissions = $(tr).data('permissions');
var appendTo = $(tr).find('td.filename'); var appendTo = $(tr).find('td.filename');
@ -51,14 +49,14 @@ $(document).ready(function() {
if (item != $('#dropdown').data('item')) { if (item != $('#dropdown').data('item')) {
OC.Share.hideDropDown(function () { OC.Share.hideDropDown(function () {
$(tr).addClass('mouseOver'); $(tr).addClass('mouseOver');
OC.Share.showDropDown(itemType, $(tr).data('id'), appendTo, link, possiblePermissions); OC.Share.showDropDown(itemType, $(tr).data('id'), appendTo, true, possiblePermissions);
}); });
} else { } else {
OC.Share.hideDropDown(); OC.Share.hideDropDown();
} }
} else { } else {
$(tr).addClass('mouseOver'); $(tr).addClass('mouseOver');
OC.Share.showDropDown(itemType, $(tr).data('id'), appendTo, link, possiblePermissions); OC.Share.showDropDown(itemType, $(tr).data('id'), appendTo, true, possiblePermissions);
} }
}); });
} }

View File

@ -1,6 +1,8 @@
<?php $TRANSLATIONS = array( <?php $TRANSLATIONS = array(
"Password" => "Heslo", "Password" => "Heslo",
"Submit" => "Odeslat", "Submit" => "Odeslat",
"%s shared the folder %s with you" => "%s s Vámi sdílí složku %s",
"%s shared the file %s with you" => "%s s Vámi sdílí soubor %s",
"Download" => "Stáhnout", "Download" => "Stáhnout",
"No preview available for" => "Náhled není dostupný pro", "No preview available for" => "Náhled není dostupný pro",
"web services under your control" => "služby webu pod Vaší kontrolou" "web services under your control" => "služby webu pod Vaší kontrolou"

View File

@ -1,6 +1,8 @@
<?php $TRANSLATIONS = array( <?php $TRANSLATIONS = array(
"Password" => "Kodeord", "Password" => "Kodeord",
"Submit" => "Send", "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", "Download" => "Download",
"No preview available for" => "Forhåndsvisning ikke tilgængelig for", "No preview available for" => "Forhåndsvisning ikke tilgængelig for",
"web services under your control" => "Webtjenester under din kontrol" "web services under your control" => "Webtjenester under din kontrol"

View File

@ -1,6 +1,8 @@
<?php $TRANSLATIONS = array( <?php $TRANSLATIONS = array(
"Password" => "Passwort", "Password" => "Passwort",
"Submit" => "Absenden", "Submit" => "Absenden",
"%s shared the folder %s with you" => "%s hat mit Ihnen den Ordner %s geteilt",
"%s shared the file %s with you" => "%s hat mit Ihnen die Datei %s geteilt",
"Download" => "Download", "Download" => "Download",
"No preview available for" => "Es ist keine Vorschau verfügbar für", "No preview available for" => "Es ist keine Vorschau verfügbar für",
"web services under your control" => "Web-Services unter Ihrer Kontrolle" "web services under your control" => "Web-Services unter Ihrer Kontrolle"

View File

@ -1,4 +1,9 @@
<?php $TRANSLATIONS = array( <?php $TRANSLATIONS = array(
"Password" => "Συνθηματικό", "Password" => "Συνθηματικό",
"Submit" => "Καταχώρηση" "Submit" => "Καταχώρηση",
"%s shared the folder %s with you" => "%s μοιράστηκε τον φάκελο %s μαζί σας",
"%s shared the file %s with you" => "%s μοιράστηκε το αρχείο %s μαζί σας",
"Download" => "Λήψη",
"No preview available for" => "Δεν υπάρχει διαθέσιμη προεπισκόπηση για",
"web services under your control" => "υπηρεσίες δικτύου υπό τον έλεγχό σας"
); );

View File

@ -1,6 +1,8 @@
<?php $TRANSLATIONS = array( <?php $TRANSLATIONS = array(
"Password" => "Contraseña", "Password" => "Contraseña",
"Submit" => "Enviar", "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", "Download" => "Descargar",
"No preview available for" => "No hay vista previa disponible para", "No preview available for" => "No hay vista previa disponible para",
"web services under your control" => "Servicios web bajo su control" "web services under your control" => "Servicios web bajo su control"

View 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"
);

View File

@ -1,6 +1,8 @@
<?php $TRANSLATIONS = array( <?php $TRANSLATIONS = array(
"Password" => "Pasahitza", "Password" => "Pasahitza",
"Submit" => "Bidali", "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", "Download" => "Deskargatu",
"No preview available for" => "Ez dago aurrebista eskuragarririk hauentzat ", "No preview available for" => "Ez dago aurrebista eskuragarririk hauentzat ",
"web services under your control" => "web zerbitzuak zure kontrolpean" "web services under your control" => "web zerbitzuak zure kontrolpean"

View File

@ -1,6 +1,8 @@
<?php $TRANSLATIONS = array( <?php $TRANSLATIONS = array(
"Password" => "Salasana", "Password" => "Salasana",
"Submit" => "Lähetä", "Submit" => "Lähetä",
"%s shared the folder %s with you" => "%s jakoi kansion %s kanssasi",
"%s shared the file %s with you" => "%s jakoi tiedoston %s kanssasi",
"Download" => "Lataa", "Download" => "Lataa",
"No preview available for" => "Ei esikatselua kohteelle", "No preview available for" => "Ei esikatselua kohteelle",
"web services under your control" => "verkkopalvelut hallinnassasi" "web services under your control" => "verkkopalvelut hallinnassasi"

View File

@ -1,6 +1,8 @@
<?php $TRANSLATIONS = array( <?php $TRANSLATIONS = array(
"Password" => "Mot de passe", "Password" => "Mot de passe",
"Submit" => "Envoyer", "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", "Download" => "Télécharger",
"No preview available for" => "Pas d'aperçu disponible pour", "No preview available for" => "Pas d'aperçu disponible pour",
"web services under your control" => "services web sous votre contrôle" "web services under your control" => "services web sous votre contrôle"

View File

@ -0,0 +1,7 @@
<?php $TRANSLATIONS = array(
"Password" => "Contrasinal",
"Submit" => "Enviar",
"Download" => "Baixar",
"No preview available for" => "Sen vista previa dispoñible para ",
"web services under your control" => "servizos web baixo o seu control"
);

View File

@ -1,6 +1,8 @@
<?php $TRANSLATIONS = array( <?php $TRANSLATIONS = array(
"Password" => "Password", "Password" => "Password",
"Submit" => "Invia", "Submit" => "Invia",
"%s shared the folder %s with you" => "%s ha condiviso la cartella %s con te",
"%s shared the file %s with you" => "%s ha condiviso il file %s con te",
"Download" => "Scarica", "Download" => "Scarica",
"No preview available for" => "Nessuna anteprima disponibile per", "No preview available for" => "Nessuna anteprima disponibile per",
"web services under your control" => "servizi web nelle tue mani" "web services under your control" => "servizi web nelle tue mani"

View File

@ -1,6 +1,8 @@
<?php $TRANSLATIONS = array( <?php $TRANSLATIONS = array(
"Password" => "パスワード", "Password" => "パスワード",
"Submit" => "送信", "Submit" => "送信",
"%s shared the folder %s with you" => "%s はフォルダー %s をあなたと共有",
"%s shared the file %s with you" => "%s はファイル %s をあなたと共有",
"Download" => "ダウンロード", "Download" => "ダウンロード",
"No preview available for" => "プレビューはありません", "No preview available for" => "プレビューはありません",
"web services under your control" => "管理下のウェブサービス" "web services under your control" => "管理下のウェブサービス"

View File

@ -1,6 +1,8 @@
<?php $TRANSLATIONS = array( <?php $TRANSLATIONS = array(
"Password" => "Wachtwoord", "Password" => "Wachtwoord",
"Submit" => "Verzenden", "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", "Download" => "Downloaden",
"No preview available for" => "Geen voorbeeldweergave beschikbaar voor", "No preview available for" => "Geen voorbeeldweergave beschikbaar voor",
"web services under your control" => "Webdiensten in eigen beheer" "web services under your control" => "Webdiensten in eigen beheer"

Some files were not shown because too many files have changed in this diff Show More