diff --git a/AUTHORS b/AUTHORS index f79733c250..2404174e32 100644 --- a/AUTHORS +++ b/AUTHORS @@ -12,6 +12,12 @@ ownCloud is written by: Marvin Thomas Rabe Florian Pritz Bartek Przybylski + Thomas Müller + Klaas Freitag + Sam Tuke + Simon Birnbach + Lukas Reschke + Christian Reiner … With help from many libraries and frameworks including: diff --git a/apps/.gitkeep b/apps/.gitkeep deleted file mode 100644 index 8d1c8b69c3..0000000000 --- a/apps/.gitkeep +++ /dev/null @@ -1 +0,0 @@ - diff --git a/apps/files/ajax/delete.php b/apps/files/ajax/delete.php index e9bcea1893..57c8c15c19 100644 --- a/apps/files/ajax/delete.php +++ b/apps/files/ajax/delete.php @@ -7,15 +7,15 @@ OCP\JSON::checkLoggedIn(); OCP\JSON::callCheck(); // Get data -$dir = stripslashes($_GET["dir"]); -$files = isset($_GET["file"]) ? stripslashes($_GET["file"]) : stripslashes($_GET["files"]); +$dir = stripslashes($_POST["dir"]); +$files = isset($_POST["file"]) ? stripslashes($_POST["file"]) : stripslashes($_POST["files"]); $files = explode(';', $files); $filesWithError = ''; $success = true; //Now delete foreach($files as $file) { - if( !OC_Files::delete( $dir, $file )) { + if( !OC_Files::delete( $dir, $file )) { $filesWithError .= $file . "\n"; $success = false; } diff --git a/apps/files/ajax/newfile.php b/apps/files/ajax/newfile.php index 495c821216..c2d65d718c 100644 --- a/apps/files/ajax/newfile.php +++ b/apps/files/ajax/newfile.php @@ -66,8 +66,10 @@ if($source) { $target=$dir.'/'.$filename; $result=OC_Filesystem::file_put_contents($target, $sourceStream); if($result) { - $mime=OC_Filesystem::getMimetype($target); - $eventSource->send('success', array('mime'=>$mime, 'size'=>OC_Filesystem::filesize($target))); + $meta = OC_FileCache::get($target); + $mime=$meta['mimetype']; + $id = OC_FileCache::getId($target); + $eventSource->send('success', array('mime'=>$mime, 'size'=>OC_Filesystem::filesize($target), 'id' => $id)); } else { $eventSource->send('error', "Error while downloading ".$source. ' to '.$target); } @@ -76,11 +78,15 @@ if($source) { } else { if($content) { if(OC_Filesystem::file_put_contents($dir.'/'.$filename, $content)) { - OCP\JSON::success(array("data" => array('content'=>$content))); + $meta = OC_FileCache::get($dir.'/'.$filename); + $id = OC_FileCache::getId($dir.'/'.$filename); + OCP\JSON::success(array("data" => array('content'=>$content, 'id' => $id))); exit(); } }elseif(OC_Files::newFile($dir, $filename, 'file')) { - OCP\JSON::success(array("data" => array('content'=>$content))); + $meta = OC_FileCache::get($dir.'/'.$filename); + $id = OC_FileCache::getId($dir.'/'.$filename); + OCP\JSON::success(array("data" => array('content'=>$content, 'id' => $id))); exit(); } } diff --git a/apps/files/ajax/upload.php b/apps/files/ajax/upload.php index fb3e277a21..a4dcd80a2e 100644 --- a/apps/files/ajax/upload.php +++ b/apps/files/ajax/upload.php @@ -50,7 +50,8 @@ if(strpos($dir, '..') === false) { $target = OCP\Files::buildNotExistingFileName(stripslashes($dir), $files['name'][$i]); if(is_uploaded_file($files['tmp_name'][$i]) and OC_Filesystem::fromTmpFile($files['tmp_name'][$i], $target)) { $meta = OC_FileCache::get($target); - $result[]=array( "status" => "success", 'mime'=>$meta['mimetype'],'size'=>$meta['size'],'name'=>basename($target)); + $id = OC_FileCache::getId($target); + $result[]=array( "status" => "success", 'mime'=>$meta['mimetype'],'size'=>$meta['size'], 'id'=>$id, 'name'=>basename($target)); } } OCP\JSON::encodedPrint($result); diff --git a/apps/files/appinfo/update.php b/apps/files/appinfo/update.php index 35008e345b..d963b75477 100644 --- a/apps/files/appinfo/update.php +++ b/apps/files/appinfo/update.php @@ -1,14 +1,16 @@ execute(); - while( $row = $result->fetchRow()) { - $query = OC_DB::prepare( 'UPDATE `*PREFIX*properties` SET `propertyname` = ? WHERE `userid` = ? AND `propertypath` = ?' ); - $query->execute( array( preg_replace("/^{.*}/", "", $row["propertyname"]),$row["userid"], $row["propertypath"] )); - } +// fix webdav properties,add namespace in front of the property, update for OC4.5 +$installedVersion=OCP\Config::getAppValue('files', 'installed_version'); +if (version_compare($installedVersion, '1.1.6', '<')) { + $query = OC_DB::prepare( "SELECT propertyname, propertypath, userid FROM `*PREFIX*properties`" ); + $result = $query->execute(); + while( $row = $result->fetchRow()){ + if ( $row["propertyname"][0] != '{' ) { + $query = OC_DB::prepare( 'UPDATE *PREFIX*properties SET propertyname = ? WHERE userid = ? AND propertypath = ?' ); + $query->execute( array( '{DAV:}' + $row["propertyname"], $row["userid"], $row["propertypath"] )); + } + } } //update from OC 3 diff --git a/apps/files/appinfo/version b/apps/files/appinfo/version index e25d8d9f35..0664a8fd29 100644 --- a/apps/files/appinfo/version +++ b/apps/files/appinfo/version @@ -1 +1 @@ -1.1.5 +1.1.6 diff --git a/apps/files/css/files.css b/apps/files/css/files.css index f35478ecc2..db8b8ff57b 100644 --- a/apps/files/css/files.css +++ b/apps/files/css/files.css @@ -3,7 +3,7 @@ See the COPYING-README file. */ /* FILE MENU */ -.actions { padding:.3em; float:left; height:2em; width:10em; } +.actions { padding:.3em; float:left; height:2em; } .actions input, .actions button, .actions .button { margin:0; } #file_menu { right:0; position:absolute; top:0; } #file_menu a { display:block; float:left; background-image:none; text-decoration:none; } @@ -12,14 +12,15 @@ .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 .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>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>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>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; } #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_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 img { position: absolute; top: 0.4em; left: 0.4em; -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; filter:alpha(opacity=100); opacity:1; } +.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; } #upload { position:absolute; right:13.5em; top:0em; } #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; } #scanning-message{ top:40%; left:40%; position:absolute; display:none; } + +div.crumb a{ padding: 0.9em 0 0.7em 0; } + diff --git a/apps/files/js/fileactions.js b/apps/files/js/fileactions.js index 1403d345e8..e184cbfa91 100644 --- a/apps/files/js/fileactions.js +++ b/apps/files/js/fileactions.js @@ -157,7 +157,7 @@ $(document).ready(function(){ var downloadScope = 'file'; } 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(); }); +// t('files', 'Rename') FileActions.register('all','Rename', OC.PERMISSION_UPDATE, function(){return OC.imagePath('core','actions/rename');},function(filename){ FileList.rename(filename); }); diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index 7ebfd4b68b..683f7db867 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -4,14 +4,15 @@ var FileList={ $('#fileList').empty().html(fileListHtml); }, addFile:function(name,size,lastModified,loading,hidden){ - var img=(loading)?OC.imagePath('core', 'loading.gif'):OC.imagePath('core', 'filetypes/file.png'); - var html=''; + var basename, extension, simpleSize, sizeColor, lastModifiedTime, modifiedColor, + img=(loading)?OC.imagePath('core', 'loading.gif'):OC.imagePath('core', 'filetypes/file.png'), + html=''; if(name.indexOf('.')!=-1){ - var basename=name.substr(0,name.lastIndexOf('.')); - var extension=name.substr(name.lastIndexOf('.')); + basename=name.substr(0,name.lastIndexOf('.')); + extension=name.substr(name.lastIndexOf('.')); }else{ - var basename=name; - var extension=false; + basename=name; + extension=false; } html+=''; html+=''+basename; @@ -41,10 +42,11 @@ var FileList={ } }, addDir:function(name,size,lastModified,hidden){ + var html, td, link_elem, sizeColor, lastModifiedTime, modifiedColor; html = $('').attr({ "data-type": "dir", "data-size": size, "data-file": name, "data-permissions": $('#permissions').val()}); td = $('').attr({"class": "filename", "style": 'background-image:url('+OC.imagePath('core', 'filetypes/folder.png')+')' }); td.append(''); - var link_elem = $('').attr({ "class": "name", "href": OC.linkTo('files', 'index.php')+"&dir="+ encodeURIComponent($('#dir').val()+'/'+name).replace(/%2F/g, '/') }); + link_elem = $('').attr({ "class": "name", "href": OC.linkTo('files', 'index.php')+"&dir="+ encodeURIComponent($('#dir').val()+'/'+name).replace(/%2F/g, '/') }); link_elem.append($('').addClass('nametext').text(name)); link_elem.append($('').attr({'class': 'uploadtext', 'currentUploads': 0})); td.append(link_elem); @@ -71,7 +73,7 @@ var FileList={ } }, refresh:function(data) { - result = jQuery.parseJSON(data.responseText); + var result = jQuery.parseJSON(data.responseText); if(typeof(result.data.breadcrumb) != 'undefined'){ updateBreadcrumb(result.data.breadcrumb); } @@ -88,14 +90,13 @@ var FileList={ }, insertElement:function(name,type,element){ //find the correct spot to insert the file or folder - var fileElements=$('tr[data-file][data-type="'+type+'"]:visible'); - var pos; + var pos, fileElements=$('tr[data-file][data-type="'+type+'"]:visible'); if(name.localeCompare($(fileElements[0]).attr('data-file'))<0){ pos=-1; }else if(name.localeCompare($(fileElements[fileElements.length-1]).attr('data-file'))>0){ pos=fileElements.length-1; }else{ - for(var pos=0;pos0 && name.localeCompare($(fileElements[pos+1]).attr('data-file'))<0){ break; } @@ -116,9 +117,9 @@ var FileList={ $('.file_upload_filename').removeClass('highlight'); }, loadingDone:function(name){ - var tr=$('tr').filterAttr('data-file',name); + var mime, tr=$('tr').filterAttr('data-file',name); tr.data('loading',false); - var mime=tr.data('mime'); + mime=tr.data('mime'); tr.attr('data-mime',mime); getMimeIcon(mime,function(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'); }, 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); - var td=tr.children('td.filename'); - var input=$('').val(name); - var form=$('
') + td=tr.children('td.filename'); + input=$('').val(name); + form=$('
'); form.append(input); td.children('a.name').text(''); - td.children('a.name').append(form) + td.children('a.name').append(form); input.focus(); form.submit(function(event){ event.stopPropagation(); @@ -145,31 +147,33 @@ var FileList={ if (newname != name) { if (FileList.checkName(name, newname, false)) { newname = name; - } else { + } else { $.get(OC.filePath('files','ajax','rename.php'), { dir : $('#dir').val(), newname: newname, file: name },function(result) { if (!result || result.status == 'error') { OC.dialogs.alert(result.data.message, 'Error moving file'); 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.text(basename); + td.children('a.name').append(span); + if (newname.indexOf('.') > 0 && tr.data('type') != 'dir') { + span.append($(''+newname.substr(newname.lastIndexOf('.'))+'')); } } - 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.text(basename); - td.children('a.name').append(span); - if (newname.indexOf('.') > 0) { - span.append($(''+newname.substr(newname.lastIndexOf('.'))+'')); - } - tr.data('renaming',false); return false; }); input.click(function(event){ @@ -255,21 +259,23 @@ var FileList={ }, do_delete:function(files){ // Finish any existing actions - if (FileList.lastAction || !FileList.useUndo) { - if(!FileList.deleteFiles) { - FileList.prepareDeletion(files); - } + if (FileList.lastAction) { FileList.lastAction(); - return; } + FileList.prepareDeletion(files); - // 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+''+t('files', 'undo')+''); + + if (!FileList.useUndo) { + FileList.lastAction(); } else { - $('#notification').html(t('files', 'deleted')+' '+files+''+t('files', 'undo')+''); + // 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+''+t('files', 'undo')+''); + } else { + $('#notification').html(t('files', 'deleted')+' '+files+''+t('files', 'undo')+''); + } + $('#notification').fadeIn(); } - $('#notification').fadeIn(); }, finishDelete:function(ready,sync){ if(!FileList.deleteCanceled && FileList.deleteFiles){ @@ -277,6 +283,7 @@ var FileList={ $.ajax({ url: OC.filePath('files', 'ajax', 'delete.php'), async:!sync, + type:'post', data: {dir:$('#dir').val(),files:fileNames}, complete: function(data){ boolOperationFinished(data, function(){ @@ -312,7 +319,7 @@ var FileList={ FileList.finishDelete(null, true); }; } -} +}; $(document).ready(function(){ $('#notification').hide(); @@ -358,7 +365,7 @@ $(document).ready(function(){ FileList.finishDelete(null, true); } }); - FileList.useUndo=('onbeforeunload' in window) + FileList.useUndo=(window.onbeforeunload)?true:false; $(window).bind('beforeunload', function (){ if (FileList.lastAction) { FileList.lastAction(); diff --git a/apps/files/js/files.js b/apps/files/js/files.js index aefd6f20be..0c00fe8c92 100644 --- a/apps/files/js/files.js +++ b/apps/files/js/files.js @@ -336,7 +336,7 @@ $(document).ready(function() { if(response[0] != undefined && response[0].status == 'success') { var file=response[0]; delete uploadingFiles[file.name]; - $('tr').filterAttr('data-file',file.name).data('mime',file.mime); + $('tr').filterAttr('data-file',file.name).data('mime',file.mime).data('id',file.id); var size = $('tr').filterAttr('data-file',file.name).find('td.filesize').text(); if(size==t('files','Pending')){ $('tr').filterAttr('data-file',file.name).find('td.filesize').text(file.size); @@ -356,16 +356,17 @@ $(document).ready(function() { $('#notification').fadeIn(); } }); - uploadingFiles[files[i].name] = jqXHR; + uploadingFiles[uniqueName] = jqXHR; } } }else{ 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') { var file=response[0]; delete uploadingFiles[file.name]; - $('tr').filterAttr('data-file',file.name).data('mime',file.mime); + $('tr').filterAttr('data-file',file.name).data('mime',file.mime).data('id',file.id); var size = $('tr').filterAttr('data-file',file.name).find('td.filesize').text(); if(size==t('files','Pending')){ $('tr').filterAttr('data-file',file.name).find('td.filesize').text(file.size); @@ -511,7 +512,7 @@ $(document).ready(function() { var date=new Date(); FileList.addFile(name,0,date,false,hidden); var tr=$('tr').filterAttr('data-file',name); - tr.data('mime','text/plain'); + tr.data('mime','text/plain').data('id',result.data.id); getMimeIcon('text/plain',function(path){ tr.find('td.filename').attr('style','background-image:url('+path+')'); }); @@ -559,11 +560,12 @@ $(document).ready(function() { eventSource.listen('success',function(data){ var mime=data.mime; var size=data.size; + var id=data.id; $('#uploadprogressbar').fadeOut(); var date=new Date(); FileList.addFile(localName,size,date,false,hidden); var tr=$('tr').filterAttr('data-file',localName); - tr.data('mime',mime); + tr.data('mime',mime).data('id',id); getMimeIcon(mime,function(path){ tr.find('td.filename').attr('style','background-image:url('+path+')'); }); diff --git a/apps/files/l10n/ar.php b/apps/files/l10n/ar.php index 52480ce7ff..a5530851d2 100644 --- a/apps/files/l10n/ar.php +++ b/apps/files/l10n/ar.php @@ -7,6 +7,7 @@ "Missing a temporary folder" => "المجلد المؤقت غير موجود", "Files" => "الملفات", "Delete" => "محذوف", +"Name" => "الاسم", "Size" => "حجم", "Modified" => "معدل", "Maximum upload size" => "الحد الأقصى لحجم الملفات التي يمكن رفعها", @@ -15,7 +16,6 @@ "Folder" => "مجلد", "Upload" => "إرفع", "Nothing in here. Upload something!" => "لا يوجد شيء هنا. إرفع بعض الملفات!", -"Name" => "الاسم", "Download" => "تحميل", "Upload too large" => "حجم الترفيع أعلى من المسموح", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "حجم الملفات التي تريد ترفيعها أعلى من المسموح على الخادم." diff --git a/apps/files/l10n/bg_BG.php b/apps/files/l10n/bg_BG.php index 624e08959f..86f26a1798 100644 --- a/apps/files/l10n/bg_BG.php +++ b/apps/files/l10n/bg_BG.php @@ -11,6 +11,7 @@ "Upload Error" => "Грешка при качване", "Upload cancelled." => "Качването е отменено.", "Invalid name, '/' is not allowed." => "Неправилно име – \"/\" не е позволено.", +"Name" => "Име", "Size" => "Размер", "Modified" => "Променено", "folder" => "папка", @@ -25,7 +26,6 @@ "Upload" => "Качване", "Cancel upload" => "Отказване на качването", "Nothing in here. Upload something!" => "Няма нищо, качете нещо!", -"Name" => "Име", "Share" => "Споделяне", "Download" => "Изтегляне", "Upload too large" => "Файлът е прекалено голям", diff --git a/apps/files/l10n/ca.php b/apps/files/l10n/ca.php index 26c6ad4de6..e86c196075 100644 --- a/apps/files/l10n/ca.php +++ b/apps/files/l10n/ca.php @@ -25,6 +25,9 @@ "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à.", "Invalid name, '/' is not allowed." => "El nom no és vàlid, no es permet '/'.", +"files scanned" => "arxius escanejats", +"error while scanning" => "error durant l'escaneig", +"Name" => "Nom", "Size" => "Mida", "Modified" => "Modificat", "folder" => "carpeta", @@ -46,7 +49,6 @@ "Upload" => "Puja", "Cancel upload" => "Cancel·la la pujada", "Nothing in here. Upload something!" => "Res per aquí. Pugeu alguna cosa!", -"Name" => "Nom", "Share" => "Comparteix", "Download" => "Baixa", "Upload too large" => "La pujada és massa gran", diff --git a/apps/files/l10n/cs_CZ.php b/apps/files/l10n/cs_CZ.php index 41ef4e7849..04db7316f9 100644 --- a/apps/files/l10n/cs_CZ.php +++ b/apps/files/l10n/cs_CZ.php @@ -9,6 +9,7 @@ "Files" => "Soubory", "Unshare" => "Zrušit sdílení", "Delete" => "Smazat", +"Rename" => "Přejmenovat", "already exists" => "již existuje", "replace" => "nahradit", "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ů", "Upload Error" => "Chyba odesílání", "Pending" => "Čekající", +"1 file uploading" => "odesílá se 1 soubor", +"files uploading" => "souborů se odesílá", "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í.", "Invalid name, '/' is not allowed." => "Neplatný název, znak '/' není povolen", +"files scanned" => "soubory prohledány", +"error while scanning" => "chyba při prohledávání", +"Name" => "Název", "Size" => "Velikost", "Modified" => "Změněno", "folder" => "složka", "folders" => "složky", "file" => "soubor", "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", "Maximum upload size" => "Maximální velikost pro odesílání", "max. possible: " => "největší možná: ", @@ -46,7 +62,6 @@ "Upload" => "Odeslat", "Cancel upload" => "Zrušit odesílání", "Nothing in here. Upload something!" => "Žádný obsah. Nahrajte něco.", -"Name" => "Název", "Share" => "Sdílet", "Download" => "Stáhnout", "Upload too large" => "Odeslaný soubor je příliš velký", diff --git a/apps/files/l10n/da.php b/apps/files/l10n/da.php index de0df6a26f..4a1372de52 100644 --- a/apps/files/l10n/da.php +++ b/apps/files/l10n/da.php @@ -9,6 +9,7 @@ "Files" => "Filer", "Unshare" => "Fjern deling", "Delete" => "Slet", +"Rename" => "Omdøb", "already exists" => "findes allerede", "replace" => "erstat", "suggest name" => "foreslå navn", @@ -25,6 +26,9 @@ "Upload cancelled." => "Upload afbrudt.", "File upload is in progress. Leaving the page now will cancel the upload." => "Fil upload kører. Hvis du forlader siden nu, vil uploadet blive annuleret.", "Invalid name, '/' is not allowed." => "Ugyldigt navn, '/' er ikke tilladt.", +"files scanned" => "filer scannet", +"error while scanning" => "fejl under scanning", +"Name" => "Navn", "Size" => "Størrelse", "Modified" => "Ændret", "folder" => "mappe", @@ -46,7 +50,6 @@ "Upload" => "Upload", "Cancel upload" => "Fortryd upload", "Nothing in here. Upload something!" => "Her er tomt. Upload noget!", -"Name" => "Navn", "Share" => "Del", "Download" => "Download", "Upload too large" => "Upload for stor", diff --git a/apps/files/l10n/de.php b/apps/files/l10n/de.php index 701c3e877a..fc07c9b911 100644 --- a/apps/files/l10n/de.php +++ b/apps/files/l10n/de.php @@ -7,8 +7,9 @@ "Missing a temporary folder" => "Temporärer Ordner fehlt.", "Failed to write to disk" => "Fehler beim Schreiben auf die Festplatte", "Files" => "Dateien", -"Unshare" => "Nicht mehr teilen", +"Unshare" => "Nicht mehr freigeben", "Delete" => "Löschen", +"Rename" => "Umbenennen", "already exists" => "ist bereits vorhanden", "replace" => "ersetzen", "suggest name" => "Name vorschlagen", @@ -16,21 +17,36 @@ "replaced" => "ersetzt", "undo" => "rückgängig machen", "with" => "mit", -"unshared" => "Nicht mehr teilen", +"unshared" => "Nicht mehr freigegeben", "deleted" => "gelöscht", "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.", -"Upload Error" => "Fehler beim Hochladen", +"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 Upload", "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.", "Invalid name, '/' is not allowed." => "Ungültiger Name: \"/\" ist nicht erlaubt.", +"files scanned" => "Dateien gescannt", +"error while scanning" => "Fehler beim Scannen", +"Name" => "Name", "Size" => "Größe", "Modified" => "Bearbeitet", "folder" => "Ordner", "folders" => "Ordner", "file" => "Datei", "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", "Maximum upload size" => "Maximale Upload-Größe", "max. possible: " => "maximal möglich:", @@ -42,11 +58,10 @@ "New" => "Neu", "Text file" => "Textdatei", "Folder" => "Ordner", -"From url" => "Von der URL", +"From url" => "Von einer URL", "Upload" => "Hochladen", "Cancel upload" => "Upload abbrechen", "Nothing in here. Upload something!" => "Alles leer. Lade etwas hoch!", -"Name" => "Name", "Share" => "Teilen", "Download" => "Herunterladen", "Upload too large" => "Upload zu groß", diff --git a/apps/files/l10n/el.php b/apps/files/l10n/el.php index 9f311c6b28..ef2e0bd283 100644 --- a/apps/files/l10n/el.php +++ b/apps/files/l10n/el.php @@ -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 MAX_FILE_SIZE directive that was specified in the HTML form" => "Το αρχείο υπερβαίνει την οδηγία μέγιστου επιτρεπτού μεγέθους \"MAX_FILE_SIZE\" που έχει οριστεί στην HTML φόρμα", "The uploaded file was only partially uploaded" => "Το αρχείο μεταφορώθηκε μόνο εν μέρει", -"No file was uploaded" => "Το αρχείο δεν μεταφορτώθηκε", -"Missing a temporary folder" => "Λείπει ένας προσωρινός φάκελος", -"Failed to write to disk" => "Η εγγραφή στο δίσκο απέτυχε", +"No file was uploaded" => "Κανένα αρχείο δεν μεταφορτώθηκε", +"Missing a temporary folder" => "Λείπει ο προσωρινός φάκελος", +"Failed to write to disk" => "Αποτυχία εγγραφής στο δίσκο", "Files" => "Αρχεία", +"Unshare" => "Διακοπή κοινής χρήσης", "Delete" => "Διαγραφή", +"Rename" => "Μετονομασία", "already exists" => "υπάρχει ήδη", "replace" => "αντικατέστησε", +"suggest name" => "συνιστώμενο όνομα", "cancel" => "ακύρωση", "replaced" => "αντικαταστάθηκε", "undo" => "αναίρεση", "with" => "με", +"unshared" => "Διακόπηκε ο διαμοιρασμός", "deleted" => "διαγράφηκε", "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", "Upload Error" => "Σφάλμα Μεταφόρτωσης", -"Pending" => "Εν αναμονή", +"Pending" => "Εκκρεμεί", +"1 file uploading" => "1 αρχείο ανεβαίνει", +"files uploading" => "αρχεία ανεβαίνουν", "Upload cancelled." => "Η μεταφόρτωση ακυρώθηκε.", +"File upload is in progress. Leaving the page now will cancel the upload." => "Η μεταφόρτωση του αρχείου βρίσκεται σε εξέλιξη. Έξοδος από την σελίδα τώρα θα ακυρώσει την μεταφόρτωση.", "Invalid name, '/' is not allowed." => "Μη έγκυρο όνομα, το '/' δεν επιτρέπεται.", +"files scanned" => "αρχεία σαρώθηκαν", +"error while scanning" => "σφάλμα κατά την ανίχνευση", +"Name" => "Όνομα", "Size" => "Μέγεθος", "Modified" => "Τροποποιήθηκε", "folder" => "φάκελος", "folders" => "φάκελοι", "file" => "αρχείο", "files" => "αρχεία", +"seconds ago" => "δευτερόλεπτα πριν", +"minute ago" => "λεπτό πριν", +"minutes ago" => "λεπτά πριν", +"today" => "σήμερα", +"yesterday" => "χτες", +"days ago" => "μέρες πριν", +"last month" => "τελευταίο μήνα", +"months ago" => "μήνες πριν", +"last year" => "τελευταίο χρόνο", +"years ago" => "χρόνια πριν", "File handling" => "Διαχείριση αρχείων", "Maximum upload size" => "Μέγιστο μέγεθος μεταφόρτωσης", "max. possible: " => "μέγιστο δυνατό:", @@ -34,18 +54,18 @@ "Enable ZIP-download" => "Ενεργοποίηση κατεβάσματος ZIP", "0 is unlimited" => "0 για απεριόριστο", "Maximum input size for ZIP files" => "Μέγιστο μέγεθος για αρχεία ZIP", +"Save" => "Αποθήκευση", "New" => "Νέο", "Text file" => "Αρχείο κειμένου", "Folder" => "Φάκελος", "From url" => "Από την διεύθυνση", "Upload" => "Μεταφόρτωση", -"Cancel upload" => "Ακύρωση ανεβάσματος", +"Cancel upload" => "Ακύρωση μεταφόρτωσης", "Nothing in here. Upload something!" => "Δεν υπάρχει τίποτα εδώ. Ανέβασε κάτι!", -"Name" => "Όνομα", -"Share" => "Διαμοίρασε", +"Share" => "Διαμοιρασμός", "Download" => "Λήψη", -"Upload too large" => "Πολύ μεγάλο το αρχείο προς μεταφόρτωση", -"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Τα αρχεία που προσπαθείτε να ανεβάσετε υπερβαίνουν το μέγιστο μέγεθος μεταφόρτωσης αρχείων σε αυτόν το διακομιστή.", -"Files are being scanned, please wait." => "Τα αρχεία ανιχνεύονται, παρακαλώ περιμένετε", +"Upload too large" => "Πολύ μεγάλο αρχείο προς μεταφόρτωση", +"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Τα αρχεία που προσπαθείτε να μεταφορτώσετε υπερβαίνουν το μέγιστο μέγεθος μεταφόρτωσης αρχείων σε αυτόν το διακομιστή.", +"Files are being scanned, please wait." => "Τα αρχεία σαρώνονται, παρακαλώ περιμένετε", "Current scanning" => "Τρέχουσα αναζήτηση " ); diff --git a/apps/files/l10n/eo.php b/apps/files/l10n/eo.php index 95df1363ff..03d4458744 100644 --- a/apps/files/l10n/eo.php +++ b/apps/files/l10n/eo.php @@ -25,6 +25,7 @@ "Upload cancelled." => "La alŝuto nuliĝis.", "File upload is in progress. Leaving the page now will cancel the upload." => "Dosieralŝuto plenumiĝas. Lasi la paĝon nun nuligus la alŝuton.", "Invalid name, '/' is not allowed." => "Nevalida nomo, “/” ne estas permesata.", +"Name" => "Nomo", "Size" => "Grando", "Modified" => "Modifita", "folder" => "dosierujo", @@ -46,7 +47,6 @@ "Upload" => "Alŝuti", "Cancel upload" => "Nuligi alŝuton", "Nothing in here. Upload something!" => "Nenio estas ĉi tie. Alŝutu ion!", -"Name" => "Nomo", "Share" => "Kunhavigi", "Download" => "Elŝuti", "Upload too large" => "Elŝuto tro larĝa", diff --git a/apps/files/l10n/es.php b/apps/files/l10n/es.php index d07149d859..3837cf49f9 100644 --- a/apps/files/l10n/es.php +++ b/apps/files/l10n/es.php @@ -8,7 +8,8 @@ "Failed to write to disk" => "La escritura en disco ha fallado", "Files" => "Archivos", "Unshare" => "Dejar de compartir", -"Delete" => "Eliminado", +"Delete" => "Eliminar", +"Rename" => "Renombrar", "already exists" => "ya existe", "replace" => "reemplazar", "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", "Upload Error" => "Error al subir el archivo", "Pending" => "Pendiente", +"1 file uploading" => "subiendo 1 archivo", +"files uploading" => "archivos subiendo", "Upload cancelled." => "Subida cancelada.", "File upload is in progress. Leaving the page now will cancel the upload." => "La subida del archivo está en proceso. Salir de la página ahora cancelará la subida.", "Invalid name, '/' is not allowed." => "Nombre no válido, '/' no está permitido.", +"files scanned" => "archivos escaneados", +"error while scanning" => "error escaneando", +"Name" => "Nombre", "Size" => "Tamaño", "Modified" => "Modificado", "folder" => "carpeta", "folders" => "carpetas", "file" => "archivo", "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", "Maximum upload size" => "Tamaño máximo de subida", "max. possible: " => "máx. posible:", @@ -46,11 +62,10 @@ "Upload" => "Subir", "Cancel upload" => "Cancelar subida", "Nothing in here. Upload something!" => "Aquí no hay nada. ¡Sube algo!", -"Name" => "Nombre", "Share" => "Compartir", "Download" => "Descargar", "Upload too large" => "El archivo es demasiado grande", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Los archivos que estás intentando subir sobrepasan el tamaño máximo permitido por este servidor.", "Files are being scanned, please wait." => "Se están escaneando los archivos, por favor espere.", -"Current scanning" => "Escaneo actual" +"Current scanning" => "Ahora escaneando" ); diff --git a/apps/files/l10n/es_AR.php b/apps/files/l10n/es_AR.php new file mode 100644 index 0000000000..e94a904327 --- /dev/null +++ b/apps/files/l10n/es_AR.php @@ -0,0 +1,71 @@ + "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" +); diff --git a/apps/files/l10n/et_EE.php b/apps/files/l10n/et_EE.php index 88e9171928..f2721b194e 100644 --- a/apps/files/l10n/et_EE.php +++ b/apps/files/l10n/et_EE.php @@ -25,6 +25,7 @@ "Upload cancelled." => "Üleslaadimine tühistati.", "File upload is in progress. Leaving the page now will cancel the upload." => "Faili üleslaadimine on töös. Lehelt lahkumine katkestab selle üleslaadimise.", "Invalid name, '/' is not allowed." => "Vigane nimi, '/' pole lubatud.", +"Name" => "Nimi", "Size" => "Suurus", "Modified" => "Muudetud", "folder" => "kaust", @@ -46,7 +47,6 @@ "Upload" => "Lae üles", "Cancel upload" => "Tühista üleslaadimine", "Nothing in here. Upload something!" => "Siin pole midagi. Lae midagi üles!", -"Name" => "Nimi", "Share" => "Jaga", "Download" => "Lae alla", "Upload too large" => "Üleslaadimine on liiga suur", diff --git a/apps/files/l10n/eu.php b/apps/files/l10n/eu.php index d72e73adf0..9c50488000 100644 --- a/apps/files/l10n/eu.php +++ b/apps/files/l10n/eu.php @@ -25,6 +25,9 @@ "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.", "Invalid name, '/' is not allowed." => "Baliogabeko izena, '/' ezin da erabili. ", +"files scanned" => "fitxategiak eskaneatuta", +"error while scanning" => "errore bat egon da eskaneatzen zen bitartean", +"Name" => "Izena", "Size" => "Tamaina", "Modified" => "Aldatuta", "folder" => "karpeta", @@ -46,7 +49,6 @@ "Upload" => "Igo", "Cancel upload" => "Ezeztatu igoera", "Nothing in here. Upload something!" => "Ez dago ezer. Igo zerbait!", -"Name" => "Izena", "Share" => "Elkarbanatu", "Download" => "Deskargatu", "Upload too large" => "Igotakoa handiegia da", diff --git a/apps/files/l10n/fa.php b/apps/files/l10n/fa.php index e6ddd50f91..979e58c557 100644 --- a/apps/files/l10n/fa.php +++ b/apps/files/l10n/fa.php @@ -21,6 +21,7 @@ "Pending" => "در انتظار", "Upload cancelled." => "بار گذاری لغو شد", "Invalid name, '/' is not allowed." => "نام نامناسب '/' غیرفعال است", +"Name" => "نام", "Size" => "اندازه", "Modified" => "تغییر یافته", "folder" => "پوشه", @@ -41,7 +42,6 @@ "Upload" => "بارگذاری", "Cancel upload" => "متوقف کردن بار گذاری", "Nothing in here. Upload something!" => "اینجا هیچ چیز نیست.", -"Name" => "نام", "Share" => "به اشتراک گذاری", "Download" => "بارگیری", "Upload too large" => "حجم بارگذاری بسیار زیاد است", diff --git a/apps/files/l10n/fi_FI.php b/apps/files/l10n/fi_FI.php index 757d0594d3..8e874ad4d9 100644 --- a/apps/files/l10n/fi_FI.php +++ b/apps/files/l10n/fi_FI.php @@ -8,6 +8,7 @@ "Failed to write to disk" => "Levylle kirjoitus epäonnistui", "Files" => "Tiedostot", "Delete" => "Poista", +"Rename" => "Nimeä uudelleen", "already exists" => "on jo olemassa", "replace" => "korvaa", "suggest name" => "ehdota nimeä", @@ -23,12 +24,23 @@ "Upload cancelled." => "Lähetys peruttu.", "File upload is in progress. Leaving the page now will cancel the upload." => "Tiedoston lähetys on meneillään. Sivulta poistuminen nyt peruu tiedoston lähetyksen.", "Invalid name, '/' is not allowed." => "Virheellinen nimi, merkki '/' ei ole sallittu.", +"Name" => "Nimi", "Size" => "Koko", "Modified" => "Muutettu", "folder" => "kansio", "folders" => "kansiota", "file" => "tiedosto", "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", "Maximum upload size" => "Lähetettävän tiedoston suurin sallittu koko", "max. possible: " => "suurin mahdollinen:", @@ -44,7 +56,6 @@ "Upload" => "Lähetä", "Cancel upload" => "Peru lähetys", "Nothing in here. Upload something!" => "Täällä ei ole mitään. Lähetä tänne jotakin!", -"Name" => "Nimi", "Share" => "Jaa", "Download" => "Lataa", "Upload too large" => "Lähetettävä tiedosto on liian suuri", diff --git a/apps/files/l10n/fr.php b/apps/files/l10n/fr.php index c0f08b118d..f58bfa5cc5 100644 --- a/apps/files/l10n/fr.php +++ b/apps/files/l10n/fr.php @@ -9,6 +9,7 @@ "Files" => "Fichiers", "Unshare" => "Ne plus partager", "Delete" => "Supprimer", +"Rename" => "Renommer", "already exists" => "existe déjà", "replace" => "remplacer", "suggest name" => "Suggérer un nom", @@ -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.", "Upload Error" => "Erreur de chargement", "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é.", "File upload is in progress. Leaving the page now will cancel the upload." => "L'envoi du fichier est en cours. Quitter cette page maintenant annulera l'envoi du fichier.", "Invalid name, '/' is not allowed." => "Nom invalide, '/' n'est pas autorisé.", +"files scanned" => "fichiers indexés", +"error while scanning" => "erreur lors de l'indexation", +"Name" => "Nom", "Size" => "Taille", "Modified" => "Modifié", "folder" => "dossier", "folders" => "dossiers", "file" => "fichier", "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", "Maximum upload size" => "Taille max. d'envoi", "max. possible: " => "Max. possible :", @@ -46,7 +62,6 @@ "Upload" => "Envoyer", "Cancel upload" => "Annuler l'envoi", "Nothing in here. Upload something!" => "Il n'y a rien ici ! Envoyez donc quelque chose :)", -"Name" => "Nom", "Share" => "Partager", "Download" => "Téléchargement", "Upload too large" => "Fichier trop volumineux", diff --git a/apps/files/l10n/gl.php b/apps/files/l10n/gl.php index 67293de5cb..77e87ee282 100644 --- a/apps/files/l10n/gl.php +++ b/apps/files/l10n/gl.php @@ -7,20 +7,27 @@ "Missing a temporary folder" => "Falta un cartafol temporal", "Failed to write to disk" => "Erro ao escribir no disco", "Files" => "Ficheiros", +"Unshare" => "Deixar de compartir", "Delete" => "Eliminar", "already exists" => "xa existe", "replace" => "substituír", +"suggest name" => "suxira nome", "cancel" => "cancelar", "replaced" => "substituído", "undo" => "desfacer", "with" => "con", +"unshared" => "non compartido", "deleted" => "eliminado", "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", "Upload Error" => "Erro na subida", "Pending" => "Pendentes", "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.", +"files scanned" => "ficheiros analizados", +"error while scanning" => "erro mentras analizaba", +"Name" => "Nome", "Size" => "Tamaño", "Modified" => "Modificado", "folder" => "cartafol", @@ -34,6 +41,7 @@ "Enable ZIP-download" => "Habilitar a descarga-ZIP", "0 is unlimited" => "0 significa ilimitado", "Maximum input size for ZIP files" => "Tamaño máximo de descarga para os ZIP", +"Save" => "Gardar", "New" => "Novo", "Text file" => "Ficheiro de texto", "Folder" => "Cartafol", @@ -41,7 +49,6 @@ "Upload" => "Enviar", "Cancel upload" => "Cancelar subida", "Nothing in here. Upload something!" => "Nada por aquí. Envíe algo.", -"Name" => "Nome", "Share" => "Compartir", "Download" => "Descargar", "Upload too large" => "Envío demasiado grande", diff --git a/apps/files/l10n/he.php b/apps/files/l10n/he.php index e7ab4a524b..84c669cba3 100644 --- a/apps/files/l10n/he.php +++ b/apps/files/l10n/he.php @@ -15,6 +15,7 @@ "Pending" => "ממתין", "Upload cancelled." => "ההעלאה בוטלה.", "Invalid name, '/' is not allowed." => "שם לא חוקי, '/' אסור לשימוש.", +"Name" => "שם", "Size" => "גודל", "Modified" => "זמן שינוי", "folder" => "תקיה", @@ -35,7 +36,6 @@ "Upload" => "העלאה", "Cancel upload" => "ביטול ההעלאה", "Nothing in here. Upload something!" => "אין כאן שום דבר. אולי ברצונך להעלות משהו?", -"Name" => "שם", "Share" => "שיתוף", "Download" => "הורדה", "Upload too large" => "העלאה גדולה מידי", diff --git a/apps/files/l10n/hr.php b/apps/files/l10n/hr.php index b05b7c568b..f3b26999e8 100644 --- a/apps/files/l10n/hr.php +++ b/apps/files/l10n/hr.php @@ -21,6 +21,7 @@ "Pending" => "U tijeku", "Upload cancelled." => "Slanje poništeno.", "Invalid name, '/' is not allowed." => "Neispravan naziv, znak '/' nije dozvoljen.", +"Name" => "Naziv", "Size" => "Veličina", "Modified" => "Zadnja promjena", "folder" => "mapa", @@ -41,7 +42,6 @@ "Upload" => "Pošalji", "Cancel upload" => "Prekini upload", "Nothing in here. Upload something!" => "Nema ničega u ovoj mapi. Pošalji nešto!", -"Name" => "Naziv", "Share" => "podjeli", "Download" => "Preuzmi", "Upload too large" => "Prijenos je preobiman", diff --git a/apps/files/l10n/hu_HU.php b/apps/files/l10n/hu_HU.php index 95b3c57ce1..0d44e6e157 100644 --- a/apps/files/l10n/hu_HU.php +++ b/apps/files/l10n/hu_HU.php @@ -21,6 +21,7 @@ "Pending" => "Folyamatban", "Upload cancelled." => "Feltöltés megszakítva", "Invalid name, '/' is not allowed." => "Érvénytelen név, a '/' nem megengedett", +"Name" => "Név", "Size" => "Méret", "Modified" => "Módosítva", "folder" => "mappa", @@ -41,7 +42,6 @@ "Upload" => "Feltöltés", "Cancel upload" => "Feltöltés megszakítása", "Nothing in here. Upload something!" => "Töltsön fel egy fájlt.", -"Name" => "Név", "Share" => "Megosztás", "Download" => "Letöltés", "Upload too large" => "Feltöltés túl nagy", diff --git a/apps/files/l10n/ia.php b/apps/files/l10n/ia.php index f9205cb5f6..21a0bb5237 100644 --- a/apps/files/l10n/ia.php +++ b/apps/files/l10n/ia.php @@ -3,6 +3,7 @@ "No file was uploaded" => "Nulle file esseva incargate", "Files" => "Files", "Delete" => "Deler", +"Name" => "Nomine", "Size" => "Dimension", "Modified" => "Modificate", "Maximum upload size" => "Dimension maxime de incargamento", @@ -11,7 +12,6 @@ "Folder" => "Dossier", "Upload" => "Incargar", "Nothing in here. Upload something!" => "Nihil hic. Incarga alcun cosa!", -"Name" => "Nomine", "Download" => "Discargar", "Upload too large" => "Incargamento troppo longe" ); diff --git a/apps/files/l10n/id.php b/apps/files/l10n/id.php index 351d064138..07bccdc597 100644 --- a/apps/files/l10n/id.php +++ b/apps/files/l10n/id.php @@ -21,6 +21,7 @@ "Pending" => "Menunggu", "Upload cancelled." => "Pengunggahan dibatalkan.", "Invalid name, '/' is not allowed." => "Kesalahan nama, '/' tidak diijinkan.", +"Name" => "Nama", "Size" => "Ukuran", "Modified" => "Dimodifikasi", "folder" => "folder", @@ -41,7 +42,6 @@ "Upload" => "Unggah", "Cancel upload" => "Batal mengunggah", "Nothing in here. Upload something!" => "Tidak ada apa-apa di sini. Unggah sesuatu!", -"Name" => "Nama", "Share" => "Bagikan", "Download" => "Unduh", "Upload too large" => "Unggahan terlalu besar", diff --git a/apps/files/l10n/it.php b/apps/files/l10n/it.php index c7046118a3..86f2ff84fc 100644 --- a/apps/files/l10n/it.php +++ b/apps/files/l10n/it.php @@ -9,6 +9,7 @@ "Files" => "File", "Unshare" => "Rimuovi condivisione", "Delete" => "Elimina", +"Rename" => "Rinomina", "already exists" => "esiste già", "replace" => "sostituisci", "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", "Upload Error" => "Errore di invio", "Pending" => "In corso", +"1 file uploading" => "1 file in fase di caricamento", +"files uploading" => "file in fase di caricamento", "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.", "Invalid name, '/' is not allowed." => "Nome non valido", +"files scanned" => "file analizzati", +"error while scanning" => "errore durante la scansione", +"Name" => "Nome", "Size" => "Dimensione", "Modified" => "Modificato", "folder" => "cartella", "folders" => "cartelle", "file" => "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", "Maximum upload size" => "Dimensione massima upload", "max. possible: " => "numero mass.: ", @@ -46,7 +62,6 @@ "Upload" => "Carica", "Cancel upload" => "Annulla invio", "Nothing in here. Upload something!" => "Non c'è niente qui. Carica qualcosa!", -"Name" => "Nome", "Share" => "Condividi", "Download" => "Scarica", "Upload too large" => "Il file caricato è troppo grande", diff --git a/apps/files/l10n/ja_JP.php b/apps/files/l10n/ja_JP.php index 6d278c3f0f..7aa246f964 100644 --- a/apps/files/l10n/ja_JP.php +++ b/apps/files/l10n/ja_JP.php @@ -9,6 +9,7 @@ "Files" => "ファイル", "Unshare" => "共有しない", "Delete" => "削除", +"Rename" => "名前の変更", "already exists" => "既に存在します", "replace" => "置き換え", "suggest name" => "推奨名称", @@ -22,15 +23,30 @@ "Unable to upload your file as it is a directory or has 0 bytes" => "アップロード使用としているファイルがディレクトリ、もしくはサイズが0バイトのため、アップロードできません。", "Upload Error" => "アップロードエラー", "Pending" => "保留", +"1 file uploading" => "ファイルを1つアップロード中", +"files uploading" => "ファイルをアップロード中", "Upload cancelled." => "アップロードはキャンセルされました。", "File upload is in progress. Leaving the page now will cancel the upload." => "ファイル転送を実行中です。今このページから移動するとアップロードが中止されます。", "Invalid name, '/' is not allowed." => "無効な名前、'/' は使用できません。", +"files scanned" => "ファイルをスキャンしました", +"error while scanning" => "スキャン中のエラー", +"Name" => "名前", "Size" => "サイズ", "Modified" => "更新日時", "folder" => "フォルダ", "folders" => "フォルダ", "file" => "ファイル", "files" => "ファイル", +"seconds ago" => "秒前", +"minute ago" => "分前", +"minutes ago" => "分前", +"today" => "今日", +"yesterday" => "昨日", +"days ago" => "日前", +"last month" => "一月前", +"months ago" => "月前", +"last year" => "一年前", +"years ago" => "年前", "File handling" => "ファイル操作", "Maximum upload size" => "最大アップロードサイズ", "max. possible: " => "最大容量: ", @@ -46,7 +62,6 @@ "Upload" => "アップロード", "Cancel upload" => "アップロードをキャンセル", "Nothing in here. Upload something!" => "ここには何もありません。何かアップロードしてください。", -"Name" => "名前", "Share" => "共有", "Download" => "ダウンロード", "Upload too large" => "ファイルサイズが大きすぎます", diff --git a/apps/files/l10n/ko.php b/apps/files/l10n/ko.php index 121be7d1ab..e54d696c34 100644 --- a/apps/files/l10n/ko.php +++ b/apps/files/l10n/ko.php @@ -21,6 +21,7 @@ "Pending" => "보류 중", "Upload cancelled." => "업로드 취소.", "Invalid name, '/' is not allowed." => "잘못된 이름, '/' 은 허용이 되지 않습니다.", +"Name" => "이름", "Size" => "크기", "Modified" => "수정됨", "folder" => "폴더", @@ -41,7 +42,6 @@ "Upload" => "업로드", "Cancel upload" => "업로드 취소", "Nothing in here. Upload something!" => "내용이 없습니다. 업로드할 수 있습니다!", -"Name" => "이름", "Share" => "공유", "Download" => "다운로드", "Upload too large" => "업로드 용량 초과", diff --git a/apps/files/l10n/lb.php b/apps/files/l10n/lb.php index 92acea1d11..a51980348c 100644 --- a/apps/files/l10n/lb.php +++ b/apps/files/l10n/lb.php @@ -21,6 +21,7 @@ "Upload cancelled." => "Upload ofgebrach.", "File upload is in progress. Leaving the page now will cancel the upload." => "File Upload am gaang. Wann's de des Säit verléiss gëtt den Upload ofgebrach.", "Invalid name, '/' is not allowed." => "Ongültege Numm, '/' net erlaabt.", +"Name" => "Numm", "Size" => "Gréisst", "Modified" => "Geännert", "folder" => "Dossier", @@ -41,7 +42,6 @@ "Upload" => "Eroplueden", "Cancel upload" => "Upload ofbriechen", "Nothing in here. Upload something!" => "Hei ass näischt. Lued eppes rop!", -"Name" => "Numm", "Share" => "Share", "Download" => "Eroflueden", "Upload too large" => "Upload ze grouss", diff --git a/apps/files/l10n/lt_LT.php b/apps/files/l10n/lt_LT.php index 90b0314307..47a79c4a5a 100644 --- a/apps/files/l10n/lt_LT.php +++ b/apps/files/l10n/lt_LT.php @@ -15,6 +15,7 @@ "Pending" => "Laukiantis", "Upload cancelled." => "Įkėlimas atšauktas.", "Invalid name, '/' is not allowed." => "Pavadinime negali būti naudojamas ženklas \"/\".", +"Name" => "Pavadinimas", "Size" => "Dydis", "Modified" => "Pakeista", "folder" => "katalogas", @@ -33,7 +34,6 @@ "Upload" => "Įkelti", "Cancel upload" => "Atšaukti siuntimą", "Nothing in here. Upload something!" => "Čia tuščia. Įkelkite ką nors!", -"Name" => "Pavadinimas", "Share" => "Dalintis", "Download" => "Atsisiųsti", "Upload too large" => "Įkėlimui failas per didelis", diff --git a/apps/files/l10n/lv.php b/apps/files/l10n/lv.php index eedab2546c..813d693f94 100644 --- a/apps/files/l10n/lv.php +++ b/apps/files/l10n/lv.php @@ -16,6 +16,7 @@ "Pending" => "Gaida savu kārtu", "Upload cancelled." => "Augšuplāde ir atcelta", "Invalid name, '/' is not allowed." => "Šis simbols '/', nav atļauts.", +"Name" => "Nosaukums", "Size" => "Izmērs", "Modified" => "Izmainīts", "folder" => "mape", @@ -33,7 +34,6 @@ "Upload" => "Augšuplādet", "Cancel upload" => "Atcelt augšuplādi", "Nothing in here. Upload something!" => "Te vēl nekas nav. Rīkojies, sāc augšuplādēt", -"Name" => "Nosaukums", "Share" => "Līdzdalīt", "Download" => "Lejuplādēt", "Upload too large" => "Fails ir par lielu lai to augšuplādetu", diff --git a/apps/files/l10n/mk.php b/apps/files/l10n/mk.php index 4e1eccff25..f4aee5ba17 100644 --- a/apps/files/l10n/mk.php +++ b/apps/files/l10n/mk.php @@ -14,6 +14,7 @@ "Pending" => "Чека", "Upload cancelled." => "Преземањето е прекинато.", "Invalid name, '/' is not allowed." => "неисправно име, '/' не е дозволено.", +"Name" => "Име", "Size" => "Големина", "Modified" => "Променето", "folder" => "фолдер", @@ -34,7 +35,6 @@ "Upload" => "Подигни", "Cancel upload" => "Откажи прикачување", "Nothing in here. Upload something!" => "Тука нема ништо. Снимете нешто!", -"Name" => "Име", "Share" => "Сподели", "Download" => "Преземи", "Upload too large" => "Датотеката е премногу голема", diff --git a/apps/files/l10n/ms_MY.php b/apps/files/l10n/ms_MY.php index de472a7c65..bfa47969b3 100644 --- a/apps/files/l10n/ms_MY.php +++ b/apps/files/l10n/ms_MY.php @@ -20,6 +20,7 @@ "Pending" => "Dalam proses", "Upload cancelled." => "Muatnaik dibatalkan.", "Invalid name, '/' is not allowed." => "penggunaa nama tidak sah, '/' tidak dibenarkan.", +"Name" => "Nama ", "Size" => "Saiz", "Modified" => "Dimodifikasi", "folder" => "direktori", @@ -40,7 +41,6 @@ "Upload" => "Muat naik", "Cancel upload" => "Batal muat naik", "Nothing in here. Upload something!" => "Tiada apa-apa di sini. Muat naik sesuatu!", -"Name" => "Nama ", "Share" => "Kongsi", "Download" => "Muat turun", "Upload too large" => "Muat naik terlalu besar", diff --git a/apps/files/l10n/nb_NO.php b/apps/files/l10n/nb_NO.php index 6331de6d45..cda1d51ed2 100644 --- a/apps/files/l10n/nb_NO.php +++ b/apps/files/l10n/nb_NO.php @@ -21,6 +21,7 @@ "Pending" => "Ventende", "Upload cancelled." => "Opplasting avbrutt.", "Invalid name, '/' is not allowed." => "Ugyldig navn, '/' er ikke tillatt. ", +"Name" => "Navn", "Size" => "Størrelse", "Modified" => "Endret", "folder" => "mappe", @@ -42,7 +43,6 @@ "Upload" => "Last opp", "Cancel upload" => "Avbryt opplasting", "Nothing in here. Upload something!" => "Ingenting her. Last opp noe!", -"Name" => "Navn", "Share" => "Del", "Download" => "Last ned", "Upload too large" => "Opplasting for stor", diff --git a/apps/files/l10n/nl.php b/apps/files/l10n/nl.php index b54c96bd9a..016f7341ab 100644 --- a/apps/files/l10n/nl.php +++ b/apps/files/l10n/nl.php @@ -9,6 +9,7 @@ "Files" => "Bestanden", "Unshare" => "Stop delen", "Delete" => "Verwijder", +"Rename" => "Hernoem", "already exists" => "bestaat al", "replace" => "vervang", "suggest name" => "Stel een naam voor", @@ -25,6 +26,9 @@ "Upload cancelled." => "Uploaden geannuleerd.", "File upload is in progress. Leaving the page now will cancel the upload." => "Bestands upload is bezig. Wanneer de pagina nu verlaten wordt, stopt de upload.", "Invalid name, '/' is not allowed." => "Ongeldige naam, '/' is niet toegestaan.", +"files scanned" => "Gescande bestanden", +"error while scanning" => "Fout tijdens het scannen", +"Name" => "Naam", "Size" => "Bestandsgrootte", "Modified" => "Laatst aangepast", "folder" => "map", @@ -46,7 +50,6 @@ "Upload" => "Upload", "Cancel upload" => "Upload afbreken", "Nothing in here. Upload something!" => "Er bevindt zich hier niets. Upload een bestand!", -"Name" => "Naam", "Share" => "Delen", "Download" => "Download", "Upload too large" => "Bestanden te groot", diff --git a/apps/files/l10n/nn_NO.php b/apps/files/l10n/nn_NO.php index d6af730249..7af37057ce 100644 --- a/apps/files/l10n/nn_NO.php +++ b/apps/files/l10n/nn_NO.php @@ -7,6 +7,7 @@ "Missing a temporary folder" => "Manglar ei mellombels mappe", "Files" => "Filer", "Delete" => "Slett", +"Name" => "Namn", "Size" => "Storleik", "Modified" => "Endra", "Maximum upload size" => "Maksimal opplastingsstorleik", @@ -15,7 +16,6 @@ "Folder" => "Mappe", "Upload" => "Last opp", "Nothing in here. Upload something!" => "Ingenting her. Last noko opp!", -"Name" => "Namn", "Download" => "Last ned", "Upload too large" => "For stor opplasting", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Filene du prøver å laste opp er større enn maksgrensa til denne tenaren." diff --git a/apps/files/l10n/oc.php b/apps/files/l10n/oc.php new file mode 100644 index 0000000000..3f70761e90 --- /dev/null +++ b/apps/files/l10n/oc.php @@ -0,0 +1,71 @@ + "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" +); diff --git a/apps/files/l10n/pl.php b/apps/files/l10n/pl.php index 289a613915..1f823d0bb5 100644 --- a/apps/files/l10n/pl.php +++ b/apps/files/l10n/pl.php @@ -9,6 +9,7 @@ "Files" => "Pliki", "Unshare" => "Nie udostępniaj", "Delete" => "Usuwa element", +"Rename" => "Zmień nazwę", "already exists" => "Już istnieje", "replace" => "zastap", "suggest name" => "zasugeruj nazwę", @@ -25,6 +26,9 @@ "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.", "Invalid name, '/' is not allowed." => "Nieprawidłowa nazwa '/' jest niedozwolone.", +"files scanned" => "Pliki skanowane", +"error while scanning" => "Wystąpił błąd podczas skanowania", +"Name" => "Nazwa", "Size" => "Rozmiar", "Modified" => "Czas modyfikacji", "folder" => "folder", @@ -46,7 +50,6 @@ "Upload" => "Prześlij", "Cancel upload" => "Przestań wysyłać", "Nothing in here. Upload something!" => "Brak zawartości. Proszę wysłać pliki!", -"Name" => "Nazwa", "Share" => "Współdziel", "Download" => "Pobiera element", "Upload too large" => "Wysyłany plik ma za duży rozmiar", diff --git a/apps/files/l10n/pt_BR.php b/apps/files/l10n/pt_BR.php index e9fe7747c1..59ec8a8a01 100644 --- a/apps/files/l10n/pt_BR.php +++ b/apps/files/l10n/pt_BR.php @@ -7,26 +7,46 @@ "Missing a temporary folder" => "Pasta temporária não encontrada", "Failed to write to disk" => "Falha ao escrever no disco", "Files" => "Arquivos", +"Unshare" => "Descompartilhar", "Delete" => "Excluir", +"Rename" => "Renomear", "already exists" => "já existe", "replace" => "substituir", +"suggest name" => "sugerir nome", "cancel" => "cancelar", "replaced" => "substituido ", "undo" => "desfazer", "with" => "com", +"unshared" => "descompartilhado", "deleted" => "deletado", "generating ZIP-file, it may take some time." => "gerando arquivo ZIP, isso pode levar um tempo.", "Unable to upload your file as it is a directory or has 0 bytes" => "Impossível enviar seus arquivo como diretório ou ele tem 0 bytes.", "Upload Error" => "Erro de envio", "Pending" => "Pendente", +"1 file uploading" => "enviando 1 arquivo", +"files uploading" => "enviando arquivos", "Upload cancelled." => "Envio cancelado.", +"File upload is in progress. Leaving the page now will cancel the upload." => "Upload em andamento. Sair da página agora resultará no cancelamento do envio.", "Invalid name, '/' is not allowed." => "Nome inválido, '/' não é permitido.", +"files scanned" => "arquivos verificados", +"error while scanning" => "erro durante verificação", +"Name" => "Nome", "Size" => "Tamanho", "Modified" => "Modificado", "folder" => "pasta", "folders" => "pastas", "file" => "arquivo", "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", "Maximum upload size" => "Tamanho máximo para carregar", "max. possible: " => "max. possível:", @@ -34,6 +54,7 @@ "Enable ZIP-download" => "Habilitar ZIP-download", "0 is unlimited" => "0 para ilimitado", "Maximum input size for ZIP files" => "Tamanho máximo para arquivo ZIP", +"Save" => "Salvar", "New" => "Novo", "Text file" => "Arquivo texto", "Folder" => "Pasta", @@ -41,7 +62,6 @@ "Upload" => "Carregar", "Cancel upload" => "Cancelar upload", "Nothing in here. Upload something!" => "Nada aqui.Carrege alguma coisa!", -"Name" => "Nome", "Share" => "Compartilhar", "Download" => "Baixar", "Upload too large" => "Arquivo muito grande", diff --git a/apps/files/l10n/pt_PT.php b/apps/files/l10n/pt_PT.php index 998c494a69..ffd15ae1d0 100644 --- a/apps/files/l10n/pt_PT.php +++ b/apps/files/l10n/pt_PT.php @@ -21,6 +21,7 @@ "Pending" => "Pendente", "Upload cancelled." => "O upload foi cancelado.", "Invalid name, '/' is not allowed." => "nome inválido, '/' não permitido.", +"Name" => "Nome", "Size" => "Tamanho", "Modified" => "Modificado", "folder" => "pasta", @@ -41,7 +42,6 @@ "Upload" => "Enviar", "Cancel upload" => "Cancelar upload", "Nothing in here. Upload something!" => "Vazio. Envia alguma coisa!", -"Name" => "Nome", "Share" => "Partilhar", "Download" => "Transferir", "Upload too large" => "Envio muito grande", diff --git a/apps/files/l10n/ro.php b/apps/files/l10n/ro.php index 58a6d2454f..8d651e2382 100644 --- a/apps/files/l10n/ro.php +++ b/apps/files/l10n/ro.php @@ -7,9 +7,46 @@ "Missing a temporary folder" => "Lipsește un dosar temporar", "Failed to write to disk" => "Eroare la scriere pe disc", "Files" => "Fișiere", +"Unshare" => "Anulează partajarea", "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", "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", "Maximum upload size" => "Dimensiune maximă admisă la încărcare", "max. possible: " => "max. posibil:", @@ -17,6 +54,7 @@ "Enable ZIP-download" => "Activează descărcare fișiere compresate", "0 is unlimited" => "0 e nelimitat", "Maximum input size for ZIP files" => "Dimensiunea maximă de intrare pentru fișiere compresate", +"Save" => "Salvare", "New" => "Nou", "Text file" => "Fișier text", "Folder" => "Dosar", @@ -24,7 +62,6 @@ "Upload" => "Încarcă", "Cancel upload" => "Anulează încărcarea", "Nothing in here. Upload something!" => "Nimic aici. Încarcă ceva!", -"Name" => "Nume", "Share" => "Partajează", "Download" => "Descarcă", "Upload too large" => "Fișierul încărcat este prea mare", diff --git a/apps/files/l10n/ru.php b/apps/files/l10n/ru.php index 61091790af..d21d6e3a6d 100644 --- a/apps/files/l10n/ru.php +++ b/apps/files/l10n/ru.php @@ -25,6 +25,7 @@ "Upload cancelled." => "Загрузка отменена.", "File upload is in progress. Leaving the page now will cancel the upload." => "Файл в процессе загрузки. Покинув страницу вы прервёте загрузку.", "Invalid name, '/' is not allowed." => "Неверное имя, '/' не допускается.", +"Name" => "Название", "Size" => "Размер", "Modified" => "Изменён", "folder" => "папка", @@ -46,7 +47,6 @@ "Upload" => "Загрузить", "Cancel upload" => "Отмена загрузки", "Nothing in here. Upload something!" => "Здесь ничего нет. Загрузите что-нибудь!", -"Name" => "Название", "Share" => "Опубликовать", "Download" => "Скачать", "Upload too large" => "Файл слишком большой", diff --git a/apps/files/l10n/ru_RU.php b/apps/files/l10n/ru_RU.php index f43959d4e9..0574e2dfcd 100644 --- a/apps/files/l10n/ru_RU.php +++ b/apps/files/l10n/ru_RU.php @@ -25,6 +25,7 @@ "Upload cancelled." => "Загрузка отменена", "File upload is in progress. Leaving the page now will cancel the upload." => "Процесс загрузки файла. Если покинуть страницу сейчас, загрузка будет отменена.", "Invalid name, '/' is not allowed." => "Неправильное имя, '/' не допускается.", +"Name" => "Имя", "Size" => "Размер", "Modified" => "Изменен", "folder" => "папка", @@ -46,7 +47,6 @@ "Upload" => "Загрузить ", "Cancel upload" => "Отмена загрузки", "Nothing in here. Upload something!" => "Здесь ничего нет. Загрузите что-нибудь!", -"Name" => "Имя", "Share" => "Сделать общим", "Download" => "Загрузить", "Upload too large" => "Загрузка слишком велика", diff --git a/apps/files/l10n/sk_SK.php b/apps/files/l10n/sk_SK.php index 8a31c55032..f25e6bb9bb 100644 --- a/apps/files/l10n/sk_SK.php +++ b/apps/files/l10n/sk_SK.php @@ -7,13 +7,27 @@ "Missing a temporary folder" => "Chýbajúci dočasný priečinok", "Failed to write to disk" => "Zápis na disk sa nepodaril", "Files" => "Súbory", +"Unshare" => "Nezdielať", "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ť.", "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", "Pending" => "Čaká sa", "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é", +"files scanned" => "skontrolovaných súborov", +"error while scanning" => "chyba počas kontroly", +"Name" => "Meno", "Size" => "Veľkosť", "Modified" => "Upravené", "folder" => "priečinok", @@ -21,23 +35,23 @@ "file" => "súbor", "files" => "súbory", "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é:", "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", "0 is unlimited" => "0 znamená neobmedzené", "Maximum input size for ZIP files" => "Najväčšia veľkosť ZIP súborov", +"Save" => "Uložiť", "New" => "Nový", "Text file" => "Textový súbor", "Folder" => "Priečinok", "From url" => "Z url", "Upload" => "Nahrať", "Cancel upload" => "Zrušiť odosielanie", -"Nothing in here. Upload something!" => "Nič tu nie je. Nahrajte niečo!", -"Name" => "Meno", +"Nothing in here. Upload something!" => "Žiadny súbor. Nahrajte niečo!", "Share" => "Zdielať", "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.", "Files are being scanned, please wait." => "Súbory sa práve prehľadávajú, prosím čakajte.", "Current scanning" => "Práve prehliadané" diff --git a/apps/files/l10n/sl.php b/apps/files/l10n/sl.php index 1a7ae8c0b1..2a733d2c26 100644 --- a/apps/files/l10n/sl.php +++ b/apps/files/l10n/sl.php @@ -9,6 +9,7 @@ "Files" => "Datoteke", "Unshare" => "Odstrani iz souporabe", "Delete" => "Izbriši", +"Rename" => "Preimenuj", "already exists" => "že obstaja", "replace" => "nadomesti", "suggest name" => "predlagaj ime", @@ -25,6 +26,9 @@ "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.", "Invalid name, '/' is not allowed." => "Neveljavno ime. Znak '/' ni dovoljen.", +"files scanned" => "pregledanih datotek", +"error while scanning" => "napaka med pregledovanjem datotek", +"Name" => "Ime", "Size" => "Velikost", "Modified" => "Spremenjeno", "folder" => "mapa", @@ -46,7 +50,6 @@ "Upload" => "Naloži", "Cancel upload" => "Prekliči nalaganje", "Nothing in here. Upload something!" => "Tukaj ni ničesar. Naložite kaj!", -"Name" => "Ime", "Share" => "Souporaba", "Download" => "Prenesi", "Upload too large" => "Nalaganje ni mogoče, ker je preveliko", diff --git a/apps/files/l10n/sr.php b/apps/files/l10n/sr.php index 84164e25c6..99e4b12697 100644 --- a/apps/files/l10n/sr.php +++ b/apps/files/l10n/sr.php @@ -7,6 +7,7 @@ "Missing a temporary folder" => "Недостаје привремена фасцикла", "Files" => "Фајлови", "Delete" => "Обриши", +"Name" => "Име", "Size" => "Величина", "Modified" => "Задња измена", "Maximum upload size" => "Максимална величина пошиљке", @@ -15,7 +16,6 @@ "Folder" => "фасцикла", "Upload" => "Пошаљи", "Nothing in here. Upload something!" => "Овде нема ничег. Пошаљите нешто!", -"Name" => "Име", "Download" => "Преузми", "Upload too large" => "Пошиљка је превелика", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Фајлови које желите да пошаљете превазилазе ограничење максималне величине пошиљке на овом серверу." diff --git a/apps/files/l10n/sr@latin.php b/apps/files/l10n/sr@latin.php index 96c567aec4..d8c7ef1898 100644 --- a/apps/files/l10n/sr@latin.php +++ b/apps/files/l10n/sr@latin.php @@ -7,12 +7,12 @@ "Missing a temporary folder" => "Nedostaje privremena fascikla", "Files" => "Fajlovi", "Delete" => "Obriši", +"Name" => "Ime", "Size" => "Veličina", "Modified" => "Zadnja izmena", "Maximum upload size" => "Maksimalna veličina pošiljke", "Upload" => "Pošalji", "Nothing in here. Upload something!" => "Ovde nema ničeg. Pošaljite nešto!", -"Name" => "Ime", "Download" => "Preuzmi", "Upload too large" => "Pošiljka je prevelika", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Fajlovi koje želite da pošaljete prevazilaze ograničenje maksimalne veličine pošiljke na ovom serveru." diff --git a/apps/files/l10n/sv.php b/apps/files/l10n/sv.php index 06d988d451..d5dcf1ad2e 100644 --- a/apps/files/l10n/sv.php +++ b/apps/files/l10n/sv.php @@ -9,6 +9,7 @@ "Files" => "Filer", "Unshare" => "Sluta dela", "Delete" => "Radera", +"Rename" => "Byt namn", "already exists" => "finns redan", "replace" => "ersätt", "suggest name" => "föreslå namn", @@ -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.", "Upload Error" => "Uppladdningsfel", "Pending" => "Väntar", +"1 file uploading" => "1 filuppladdning", +"files uploading" => "filer laddas upp", "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.", "Invalid name, '/' is not allowed." => "Ogiltigt namn, '/' är inte tillåten.", +"files scanned" => "filer skannade", +"error while scanning" => "fel vid skanning", +"Name" => "Namn", "Size" => "Storlek", "Modified" => "Ändrad", "folder" => "mapp", "folders" => "mappar", "file" => "fil", "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", "Maximum upload size" => "Maximal storlek att ladda upp", "max. possible: " => "max. möjligt:", @@ -46,7 +62,6 @@ "Upload" => "Ladda upp", "Cancel upload" => "Avbryt uppladdning", "Nothing in here. Upload something!" => "Ingenting här. Ladda upp något!", -"Name" => "Namn", "Share" => "Dela", "Download" => "Ladda ner", "Upload too large" => "För stor uppladdning", diff --git a/apps/files/l10n/th_TH.php b/apps/files/l10n/th_TH.php index 2208051236..dc94ddc7de 100644 --- a/apps/files/l10n/th_TH.php +++ b/apps/files/l10n/th_TH.php @@ -9,6 +9,7 @@ "Files" => "ไฟล์", "Unshare" => "ยกเลิกการแชร์ข้อมูล", "Delete" => "ลบ", +"Rename" => "เปลี่ยนชื่อ", "already exists" => "มีอยู่แล้ว", "replace" => "แทนที่", "suggest name" => "แนะนำชื่อ", @@ -22,15 +23,30 @@ "Unable to upload your file as it is a directory or has 0 bytes" => "ไม่สามารถอัพโหลดไฟล์ของคุณได้ เนื่องจากไฟล์ดังกล่าวเป็นไดเร็กทอรี่หรือมีขนาด 0 ไบต์", "Upload Error" => "เกิดข้อผิดพลาดในการอัพโหลด", "Pending" => "อยู่ระหว่างดำเนินการ", +"1 file uploading" => "กำลังอัพโหลดไฟล์ 1 ไฟล์", +"files uploading" => "การอัพโหลดไฟล์", "Upload cancelled." => "การอัพโหลดถูกยกเลิก", "File upload is in progress. Leaving the page now will cancel the upload." => "การอัพโหลดไฟล์กำลังอยู่ในระหว่างดำเนินการ การออกจากหน้าเว็บนี้จะทำให้การอัพโหลดถูกยกเลิก", "Invalid name, '/' is not allowed." => "ชื่อที่ใช้ไม่ถูกต้อง '/' ไม่อนุญาตให้ใช้งาน", +"files scanned" => "ไฟล์ต่างๆได้รับการสแกนแล้ว", +"error while scanning" => "พบข้อผิดพลาดในระหว่างการสแกนไฟล์", +"Name" => "ชื่อ", "Size" => "ขนาด", "Modified" => "ปรับปรุงล่าสุด", "folder" => "โฟลเดอร์", "folders" => "โฟลเดอร์", "file" => "ไฟล์", "files" => "ไฟล์", +"seconds ago" => "วินาที ก่อนหน้านี้", +"minute ago" => "นาที ที่ผ่านมา", +"minutes ago" => "นาที ที่ผ่านมา", +"today" => "วันนี้", +"yesterday" => "เมื่อวานนี้", +"days ago" => "วัน ที่ผ่านมา", +"last month" => "เดือนที่แล้ว", +"months ago" => "เดือน ที่ผ่านมา", +"last year" => "ปีที่แล้ว", +"years ago" => "ปี ที่ผ่านมา", "File handling" => "การจัดกาไฟล์", "Maximum upload size" => "ขนาดไฟล์สูงสุดที่อัพโหลดได้", "max. possible: " => "จำนวนสูงสุดที่สามารถทำได้: ", @@ -46,7 +62,6 @@ "Upload" => "อัพโหลด", "Cancel upload" => "ยกเลิกการอัพโหลด", "Nothing in here. Upload something!" => "ยังไม่มีไฟล์ใดๆอยู่ที่นี่ กรุณาอัพโหลดไฟล์!", -"Name" => "ชื่อ", "Share" => "แชร์", "Download" => "ดาวน์โหลด", "Upload too large" => "ไฟล์ที่อัพโหลดมีขนาดใหญ่เกินไป", diff --git a/apps/files/l10n/tr.php b/apps/files/l10n/tr.php index 72e0e1427d..bcbee7c5ac 100644 --- a/apps/files/l10n/tr.php +++ b/apps/files/l10n/tr.php @@ -22,6 +22,7 @@ "Upload cancelled." => "Yükleme iptal edildi.", "File upload is in progress. Leaving the page now will cancel the upload." => "Dosya yükleme işlemi sürüyor. Şimdi sayfadan ayrılırsanız işleminiz iptal olur.", "Invalid name, '/' is not allowed." => "Geçersiz isim, '/' işaretine izin verilmiyor.", +"Name" => "Ad", "Size" => "Boyut", "Modified" => "Değiştirilme", "folder" => "dizin", @@ -42,7 +43,6 @@ "Upload" => "Yükle", "Cancel upload" => "Yüklemeyi iptal et", "Nothing in here. Upload something!" => "Burada hiçbir şey yok. Birşeyler yükleyin!", -"Name" => "Ad", "Share" => "Paylaş", "Download" => "İndir", "Upload too large" => "Yüklemeniz çok büyük", diff --git a/apps/files/l10n/uk.php b/apps/files/l10n/uk.php index dc7e9d18b7..7e72683b8b 100644 --- a/apps/files/l10n/uk.php +++ b/apps/files/l10n/uk.php @@ -15,6 +15,7 @@ "Pending" => "Очікування", "Upload cancelled." => "Завантаження перервано.", "Invalid name, '/' is not allowed." => "Некоректне ім'я, '/' не дозволено.", +"Name" => "Ім'я", "Size" => "Розмір", "Modified" => "Змінено", "folder" => "тека", @@ -31,7 +32,6 @@ "Upload" => "Відвантажити", "Cancel upload" => "Перервати завантаження", "Nothing in here. Upload something!" => "Тут нічого немає. Відвантажте що-небудь!", -"Name" => "Ім'я", "Share" => "Поділитися", "Download" => "Завантажити", "Upload too large" => "Файл занадто великий", diff --git a/apps/files/l10n/vi.php b/apps/files/l10n/vi.php index ce7e0c219a..d6593022d8 100644 --- a/apps/files/l10n/vi.php +++ b/apps/files/l10n/vi.php @@ -24,6 +24,7 @@ "Upload cancelled." => "Hủy tải lên", "File upload is in progress. Leaving the page now will cancel the upload." => "Tập tin tải lên đang được xử lý. Nếu bạn rời khỏi trang bây giờ sẽ hủy quá trình này.", "Invalid name, '/' is not allowed." => "Tên không hợp lệ ,không được phép dùng '/'", +"Name" => "Tên", "Size" => "Kích cỡ", "Modified" => "Thay đổi", "folder" => "folder", @@ -44,7 +45,6 @@ "Upload" => "Tải lên", "Cancel upload" => "Hủy upload", "Nothing in here. Upload something!" => "Không có gì ở đây .Hãy tải lên một cái gì đó !", -"Name" => "Tên", "Share" => "Chia sẻ", "Download" => "Tải xuống", "Upload too large" => "File tải lên quá lớn", diff --git a/apps/files/l10n/zh_CN.GB2312.php b/apps/files/l10n/zh_CN.GB2312.php index 42063712ea..b60ad3d4cd 100644 --- a/apps/files/l10n/zh_CN.GB2312.php +++ b/apps/files/l10n/zh_CN.GB2312.php @@ -7,20 +7,27 @@ "Missing a temporary folder" => "丢失了一个临时文件夹", "Failed to write to disk" => "写磁盘失败", "Files" => "文件", +"Unshare" => "取消共享", "Delete" => "删除", "already exists" => "已经存在了", "replace" => "替换", +"suggest name" => "推荐名称", "cancel" => "取消", "replaced" => "替换过了", "undo" => "撤销", "with" => "随着", +"unshared" => "已取消共享", "deleted" => "删除", "generating ZIP-file, it may take some time." => "正在生成ZIP文件,这可能需要点时间", "Unable to upload your file as it is a directory or has 0 bytes" => "不能上传你指定的文件,可能因为它是个文件夹或者大小为0", "Upload Error" => "上传错误", "Pending" => "Pending", "Upload cancelled." => "上传取消了", +"File upload is in progress. Leaving the page now will cancel the upload." => "文件正在上传。关闭页面会取消上传。", "Invalid name, '/' is not allowed." => "非法文件名,\"/\"是不被许可的", +"files scanned" => "文件已扫描", +"error while scanning" => "扫描出错", +"Name" => "名字", "Size" => "大小", "Modified" => "修改日期", "folder" => "文件夹", @@ -34,6 +41,7 @@ "Enable ZIP-download" => "支持ZIP下载", "0 is unlimited" => "0是无限的", "Maximum input size for ZIP files" => "最大的ZIP文件输入大小", +"Save" => "保存", "New" => "新建", "Text file" => "文本文档", "Folder" => "文件夹", @@ -41,7 +49,6 @@ "Upload" => "上传", "Cancel upload" => "取消上传", "Nothing in here. Upload something!" => "这里没有东西.上传点什么!", -"Name" => "名字", "Share" => "分享", "Download" => "下载", "Upload too large" => "上传的文件太大了", diff --git a/apps/files/l10n/zh_CN.php b/apps/files/l10n/zh_CN.php index cd8dbe406a..f2ea43ae81 100644 --- a/apps/files/l10n/zh_CN.php +++ b/apps/files/l10n/zh_CN.php @@ -9,6 +9,7 @@ "Files" => "文件", "Unshare" => "取消分享", "Delete" => "删除", +"Rename" => "重命名", "already exists" => "已经存在", "replace" => "替换", "suggest name" => "建议名称", @@ -22,15 +23,30 @@ "Unable to upload your file as it is a directory or has 0 bytes" => "无法上传文件,因为它是一个目录或者大小为 0 字节", "Upload Error" => "上传错误", "Pending" => "操作等待中", +"1 file uploading" => "1个文件上传中", +"files uploading" => "文件上传中", "Upload cancelled." => "上传已取消", "File upload is in progress. Leaving the page now will cancel the upload." => "文件正在上传中。现在离开此页会导致上传动作被取消。", "Invalid name, '/' is not allowed." => "非法的名称,不允许使用‘/’。", +"files scanned" => "已扫描文件", +"error while scanning" => "扫描时出错", +"Name" => "名称", "Size" => "大小", "Modified" => "修改日期", "folder" => "文件夹", "folders" => "文件夹", "file" => "文件", "files" => "文件", +"seconds ago" => "几秒前", +"minute ago" => "1分钟前", +"minutes ago" => "分钟前", +"today" => "今天", +"yesterday" => "昨天", +"days ago" => "%d 天前", +"last month" => "上月", +"months ago" => "月前", +"last year" => "上年", +"years ago" => "几年前", "File handling" => "文件处理", "Maximum upload size" => "最大上传大小", "max. possible: " => "最大可能: ", @@ -46,7 +62,6 @@ "Upload" => "上传", "Cancel upload" => "取消上传", "Nothing in here. Upload something!" => "这里还什么都没有。上传些东西吧!", -"Name" => "名称", "Share" => "共享", "Download" => "下载", "Upload too large" => "上传文件过大", diff --git a/apps/files/l10n/zh_TW.php b/apps/files/l10n/zh_TW.php index 9652fb5a07..30ab1901a2 100644 --- a/apps/files/l10n/zh_TW.php +++ b/apps/files/l10n/zh_TW.php @@ -17,6 +17,7 @@ "Upload cancelled." => "上傳取消", "File upload is in progress. Leaving the page now will cancel the upload." => "檔案上傳中. 離開此頁面將會取消上傳.", "Invalid name, '/' is not allowed." => "無效的名稱, '/'是不被允許的", +"Name" => "名稱", "Size" => "大小", "Modified" => "修改", "File handling" => "檔案處理", @@ -33,7 +34,6 @@ "Upload" => "上傳", "Cancel upload" => "取消上傳", "Nothing in here. Upload something!" => "沒有任何東西。請上傳內容!", -"Name" => "名稱", "Share" => "分享", "Download" => "下載", "Upload too large" => "上傳過大", diff --git a/apps/files/templates/index.php b/apps/files/templates/index.php index 911a312fb9..aff484f0a7 100644 --- a/apps/files/templates/index.php +++ b/apps/files/templates/index.php @@ -16,9 +16,9 @@ - - + + diff --git a/apps/files_encryption/l10n/es_AR.php b/apps/files_encryption/l10n/es_AR.php new file mode 100644 index 0000000000..a15c37e730 --- /dev/null +++ b/apps/files_encryption/l10n/es_AR.php @@ -0,0 +1,6 @@ + "Encriptación", +"Exclude the following file types from encryption" => "Exceptuar de la encriptación los siguientes tipos de archivo", +"None" => "Ninguno", +"Enable Encryption" => "Habilitar encriptación" +); diff --git a/apps/files_encryption/l10n/gl.php b/apps/files_encryption/l10n/gl.php new file mode 100644 index 0000000000..1434ff48aa --- /dev/null +++ b/apps/files_encryption/l10n/gl.php @@ -0,0 +1,6 @@ + "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" +); diff --git a/apps/files_encryption/l10n/pt_BR.php b/apps/files_encryption/l10n/pt_BR.php new file mode 100644 index 0000000000..5c02f52217 --- /dev/null +++ b/apps/files_encryption/l10n/pt_BR.php @@ -0,0 +1,6 @@ + "Criptografia", +"Exclude the following file types from encryption" => "Excluir os seguintes tipos de arquivo da criptografia", +"None" => "Nenhuma", +"Enable Encryption" => "Habilitar Criptografia" +); diff --git a/apps/files_encryption/l10n/pt_PT.php b/apps/files_encryption/l10n/pt_PT.php new file mode 100644 index 0000000000..570462b414 --- /dev/null +++ b/apps/files_encryption/l10n/pt_PT.php @@ -0,0 +1,6 @@ + "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" +); diff --git a/apps/files_encryption/l10n/ro.php b/apps/files_encryption/l10n/ro.php new file mode 100644 index 0000000000..97f3f262d7 --- /dev/null +++ b/apps/files_encryption/l10n/ro.php @@ -0,0 +1,6 @@ + "Încriptare", +"Exclude the following file types from encryption" => "Exclude următoarele tipuri de fișiere de la încriptare", +"None" => "Niciuna", +"Enable Encryption" => "Activare încriptare" +); diff --git a/apps/files_encryption/l10n/ru_RU.php b/apps/files_encryption/l10n/ru_RU.php new file mode 100644 index 0000000000..1328b0d035 --- /dev/null +++ b/apps/files_encryption/l10n/ru_RU.php @@ -0,0 +1,6 @@ + "Шифрование", +"Exclude the following file types from encryption" => "Исключите следующие типы файлов из шифрования", +"None" => "Ни один", +"Enable Encryption" => "Включить шифрование" +); diff --git a/apps/files_encryption/l10n/zh_CN.GB2312.php b/apps/files_encryption/l10n/zh_CN.GB2312.php new file mode 100644 index 0000000000..297444fcf5 --- /dev/null +++ b/apps/files_encryption/l10n/zh_CN.GB2312.php @@ -0,0 +1,6 @@ + "加密", +"Exclude the following file types from encryption" => "从加密中排除如下文件类型", +"None" => "无", +"Enable Encryption" => "启用加密" +); diff --git a/apps/files_external/ajax/addRootCertificate.php b/apps/files_external/ajax/addRootCertificate.php index a8719fc7a3..e0a0239c95 100644 --- a/apps/files_external/ajax/addRootCertificate.php +++ b/apps/files_external/ajax/addRootCertificate.php @@ -2,26 +2,35 @@ OCP\JSON::checkAppEnabled('files_external'); -$view = \OCP\Files::getStorage("files_external"); -$from = $_FILES['rootcert_import']['tmp_name']; -$path = \OCP\Config::getSystemValue('datadirectory').$view->getAbsolutePath("").'uploads/'; -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); +if ( !($filename = $_FILES['rootcert_import']['name']) ) { + header("Location: settings/personal.php"); + exit; } -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"); exit; diff --git a/apps/files_external/ajax/removeRootCertificate.php b/apps/files_external/ajax/removeRootCertificate.php index 9b78e180d9..6871b0fd1d 100644 --- a/apps/files_external/ajax/removeRootCertificate.php +++ b/apps/files_external/ajax/removeRootCertificate.php @@ -5,7 +5,10 @@ OCP\JSON::checkLoggedIn(); OCP\JSON::callCheck(); $view = \OCP\Files::getStorage("files_external"); -$cert = $_POST['cert']; -$file = \OCP\Config::getSystemValue('datadirectory').$view->getAbsolutePath("").'uploads/'.$cert; -unlink($file); -OC_Mount_Config::createCertificateBundle(); +$file = 'uploads/'.ltrim($_POST['cert'], "/\\."); + +if ( $view->file_exists($file) ) { + $view->unlink($file); + OC_Mount_Config::createCertificateBundle(); +} + diff --git a/apps/files_external/l10n/da.php b/apps/files_external/l10n/da.php new file mode 100644 index 0000000000..e4f1b9bb5e --- /dev/null +++ b/apps/files_external/l10n/da.php @@ -0,0 +1,18 @@ + "Ekstern opbevaring", +"Mount point" => "Monteringspunkt", +"Backend" => "Backend", +"Configuration" => "Opsætning", +"Options" => "Valgmuligheder", +"Applicable" => "Kan anvendes", +"Add mount point" => "Tilføj monteringspunkt", +"None set" => "Ingen sat", +"All Users" => "Alle brugere", +"Groups" => "Grupper", +"Users" => "Brugere", +"Delete" => "Slet", +"Enable User External Storage" => "Aktiver ekstern opbevaring for brugere", +"Allow users to mount their own external storage" => "Tillad brugere at montere deres egne eksterne opbevaring", +"SSL root certificates" => "SSL-rodcertifikater", +"Import Root Certificate" => "Importer rodcertifikat" +); diff --git a/apps/files_external/l10n/el.php b/apps/files_external/l10n/el.php index 7dcf13b397..3de151eb75 100644 --- a/apps/files_external/l10n/el.php +++ b/apps/files_external/l10n/el.php @@ -1,10 +1,18 @@ "Εξωτερική αποθήκευση", +"External Storage" => "Εξωτερικό Αποθηκευτικό Μέσο", "Mount point" => "Σημείο προσάρτησης", +"Backend" => "Σύστημα υποστήριξης", "Configuration" => "Ρυθμίσεις", "Options" => "Επιλογές", +"Applicable" => "Εφαρμόσιμο", +"Add mount point" => "Προσθήκη σημείου προσάρτησης", +"None set" => "Κανένα επιλεγμένο", "All Users" => "Όλοι οι χρήστες", "Groups" => "Ομάδες", "Users" => "Χρήστες", -"Delete" => "Διαγραφή" +"Delete" => "Διαγραφή", +"SSL root certificates" => "Πιστοποιητικά SSL root", +"Import Root Certificate" => "Εισαγωγή Πιστοποιητικού Root", +"Enable User External Storage" => "Ενεργοποίηση Εξωτερικού Αποθηκευτικού Χώρου Χρήστη", +"Allow users to mount their own external storage" => "Να επιτρέπεται στους χρήστες να προσαρτούν δικό τους εξωτερικό αποθηκευτικό χώρο" ); diff --git a/apps/files_external/l10n/es_AR.php b/apps/files_external/l10n/es_AR.php new file mode 100644 index 0000000000..52ed44556a --- /dev/null +++ b/apps/files_external/l10n/es_AR.php @@ -0,0 +1,18 @@ + "Almacenamiento externo", +"Mount point" => "Punto de montaje", +"Backend" => "Motor", +"Configuration" => "Configuración", +"Options" => "Opciones", +"Applicable" => "Aplicable", +"Add mount point" => "Añadir punto de montaje", +"None set" => "No fue configurado", +"All Users" => "Todos los usuarios", +"Groups" => "Grupos", +"Users" => "Usuarios", +"Delete" => "Borrar", +"SSL root certificates" => "certificados SSL raíz", +"Import Root Certificate" => "Importar certificado raíz", +"Enable User External Storage" => "Habilitar almacenamiento de usuario externo", +"Allow users to mount their own external storage" => "Permitir a los usuarios montar su propio almacenamiento externo" +); diff --git a/apps/files_external/l10n/gl.php b/apps/files_external/l10n/gl.php new file mode 100644 index 0000000000..c6de7b837a --- /dev/null +++ b/apps/files_external/l10n/gl.php @@ -0,0 +1,18 @@ + "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" +); diff --git a/apps/files_external/l10n/pt_BR.php b/apps/files_external/l10n/pt_BR.php new file mode 100644 index 0000000000..3251e4561a --- /dev/null +++ b/apps/files_external/l10n/pt_BR.php @@ -0,0 +1,18 @@ + "Armazenamento Externo", +"Mount point" => "Ponto de montagem", +"Backend" => "Backend", +"Configuration" => "Configuração", +"Options" => "Opções", +"Applicable" => "Aplicável", +"Add mount point" => "Adicionar ponto de montagem", +"None set" => "Nenhum definido", +"All Users" => "Todos os Usuários", +"Groups" => "Grupos", +"Users" => "Usuários", +"Delete" => "Remover", +"SSL root certificates" => "Certificados SSL raíz", +"Import Root Certificate" => "Importar Certificado Raíz", +"Enable User External Storage" => "Habilitar Armazenamento Externo do Usuário", +"Allow users to mount their own external storage" => "Permitir usuários a montar seus próprios armazenamentos externos" +); diff --git a/apps/files_external/l10n/pt_PT.php b/apps/files_external/l10n/pt_PT.php new file mode 100644 index 0000000000..8b4680b371 --- /dev/null +++ b/apps/files_external/l10n/pt_PT.php @@ -0,0 +1,10 @@ + "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" +); diff --git a/apps/files_external/l10n/ro.php b/apps/files_external/l10n/ro.php new file mode 100644 index 0000000000..f5114f6179 --- /dev/null +++ b/apps/files_external/l10n/ro.php @@ -0,0 +1,18 @@ + "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" +); diff --git a/apps/files_external/l10n/ru_RU.php b/apps/files_external/l10n/ru_RU.php new file mode 100644 index 0000000000..5b0cf1b6aa --- /dev/null +++ b/apps/files_external/l10n/ru_RU.php @@ -0,0 +1,18 @@ + "Внешние системы хранения данных", +"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" => "Разрешить пользователям монтировать их собственную внешнюю систему хранения данных" +); diff --git a/apps/files_external/l10n/zh_CN.GB2312.php b/apps/files_external/l10n/zh_CN.GB2312.php new file mode 100644 index 0000000000..6a6d1c6d12 --- /dev/null +++ b/apps/files_external/l10n/zh_CN.GB2312.php @@ -0,0 +1,18 @@ + "外部存储", +"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" => "允许用户挂载他们的外部存储" +); diff --git a/apps/files_external/lib/config.php b/apps/files_external/lib/config.php index eec31ec2ef..f87a042b38 100755 --- a/apps/files_external/lib/config.php +++ b/apps/files_external/lib/config.php @@ -270,6 +270,7 @@ class OC_Mount_Config { fclose($fh); if (strpos($data, 'BEGIN CERTIFICATE')) { fwrite($fh_certs, $data); + fwrite($fh_certs, "\r\n"); } } diff --git a/apps/files_external/templates/settings.php b/apps/files_external/templates/settings.php index c44b09b180..367ce2bc03 100644 --- a/apps/files_external/templates/settings.php +++ b/apps/files_external/templates/settings.php @@ -1,4 +1,4 @@ -
+
t('External Storage'); ?> '> @@ -81,7 +81,18 @@

- + +
+ /> +
+ t('Allow users to mount their own external storage'); ?> + +
+
+ +
+
+ '> @@ -101,12 +112,5 @@ - - -
- /> -
- t('Allow users to mount their own external storage'); ?> - - - + + \ No newline at end of file diff --git a/apps/files_sharing/appinfo/update.php b/apps/files_sharing/appinfo/update.php index eabd1167c9..2beeb6316b 100644 --- a/apps/files_sharing/appinfo/update.php +++ b/apps/files_sharing/appinfo/update.php @@ -1,9 +1,14 @@ execute(); $groupShares = array(); + //we need to set up user backends, otherwise creating the shares will fail with "because user does not exist" + OC_User::useBackend(new OC_User_Database()); + OC_Group::useBackend(new OC_Group_Database()); + OC_App::loadApps(array('authentication')); while ($row = $result->fetchRow()) { $itemSource = OC_FileCache::getId($row['source'], ''); if ($itemSource != -1) { @@ -14,9 +19,9 @@ if (version_compare($installedVersion, '0.3', '<')) { $itemType = 'file'; } if ($row['permissions'] == 0) { - $permissions = OCP\Share::PERMISSION_READ; + $permissions = OCP\Share::PERMISSION_READ | OCP\Share::PERMISSION_SHARE; } else { - $permissions = OCP\Share::PERMISSION_READ | OCP\Share::PERMISSION_UPDATE; + $permissions = OCP\Share::PERMISSION_READ | OCP\Share::PERMISSION_UPDATE | OCP\Share::PERMISSION_SHARE; if ($itemType == 'folder') { $permissions |= OCP\Share::PERMISSION_CREATE; } @@ -38,10 +43,22 @@ if (version_compare($installedVersion, '0.3', '<')) { $shareWith = $row['uid_shared_with']; } 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 // $query = OCP\DB::prepare('DROP TABLE `*PREFIX*sharing`'); // $query->execute(); -} \ No newline at end of file +} diff --git a/apps/files_sharing/css/public.css b/apps/files_sharing/css/public.css index a700cc2169..fb4794e047 100644 --- a/apps/files_sharing/css/public.css +++ b/apps/files_sharing/css/public.css @@ -1,8 +1,11 @@ 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; } #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; } #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 a { font-weight:bold; color:#777; } \ No newline at end of file +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%; } \ No newline at end of file diff --git a/apps/files_sharing/js/public.js b/apps/files_sharing/js/public.js index 92b626bba1..def0237480 100644 --- a/apps/files_sharing/js/public.js +++ b/apps/files_sharing/js/public.js @@ -1,6 +1,10 @@ // Override download path to files_sharing/public.php function fileDownloadPath(dir, file) { - return $('#downloadURL').val(); + var url = $('#downloadURL').val(); + if (url.indexOf('&path=') != -1) { + url += '/'+file; + } + return url; } $(document).ready(function() { @@ -13,10 +17,21 @@ $(document).ready(function() { var action = FileActions.getDefault(mimetype, 'file', OC.PERMISSION_READ); if (typeof action === 'undefined') { $('#noPreview').show(); + if (mimetype != 'httpd/unix-directory') { + // NOTE: Remove when a better file previewer solution exists + $('#content').remove(); + $('table').remove(); + } } else { 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'); + } + }); } }); \ No newline at end of file diff --git a/apps/files_sharing/js/share.js b/apps/files_sharing/js/share.js index 9d0e2c90f8..a171751589 100644 --- a/apps/files_sharing/js/share.js +++ b/apps/files_sharing/js/share.js @@ -39,10 +39,8 @@ $(document).ready(function() { var tr = $('tr').filterAttr('data-file', filename); if ($(tr).data('type') == 'dir') { var itemType = 'folder'; - var link = false; } else { var itemType = 'file'; - var link = true; } var possiblePermissions = $(tr).data('permissions'); var appendTo = $(tr).find('td.filename'); @@ -51,14 +49,14 @@ $(document).ready(function() { if (item != $('#dropdown').data('item')) { OC.Share.hideDropDown(function () { $(tr).addClass('mouseOver'); - OC.Share.showDropDown(itemType, $(tr).data('id'), appendTo, link, possiblePermissions); + OC.Share.showDropDown(itemType, $(tr).data('id'), appendTo, true, possiblePermissions); }); } else { OC.Share.hideDropDown(); } } else { $(tr).addClass('mouseOver'); - OC.Share.showDropDown(itemType, $(tr).data('id'), appendTo, link, possiblePermissions); + OC.Share.showDropDown(itemType, $(tr).data('id'), appendTo, true, possiblePermissions); } }); } diff --git a/apps/files_sharing/l10n/cs_CZ.php b/apps/files_sharing/l10n/cs_CZ.php index e9185e979c..9889fae488 100644 --- a/apps/files_sharing/l10n/cs_CZ.php +++ b/apps/files_sharing/l10n/cs_CZ.php @@ -1,6 +1,8 @@ "Heslo", "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", "No preview available for" => "Náhled není dostupný pro", "web services under your control" => "služby webu pod Vaší kontrolou" diff --git a/apps/files_sharing/l10n/da.php b/apps/files_sharing/l10n/da.php index 1fd9f774a9..75fbdabe16 100644 --- a/apps/files_sharing/l10n/da.php +++ b/apps/files_sharing/l10n/da.php @@ -1,6 +1,8 @@ "Kodeord", "Submit" => "Send", +"%s shared the folder %s with you" => "%s delte mappen %s med dig", +"%s shared the file %s with you" => "%s delte filen %s med dig", "Download" => "Download", "No preview available for" => "Forhåndsvisning ikke tilgængelig for", "web services under your control" => "Webtjenester under din kontrol" diff --git a/apps/files_sharing/l10n/de.php b/apps/files_sharing/l10n/de.php index 90dce8ec62..b9a50387aa 100644 --- a/apps/files_sharing/l10n/de.php +++ b/apps/files_sharing/l10n/de.php @@ -1,6 +1,8 @@ "Passwort", "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", "No preview available for" => "Es ist keine Vorschau verfügbar für", "web services under your control" => "Web-Services unter Ihrer Kontrolle" diff --git a/apps/files_sharing/l10n/el.php b/apps/files_sharing/l10n/el.php index 123a008e55..5305eedd48 100644 --- a/apps/files_sharing/l10n/el.php +++ b/apps/files_sharing/l10n/el.php @@ -1,4 +1,9 @@ "Συνθηματικό", -"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" => "υπηρεσίες δικτύου υπό τον έλεγχό σας" ); diff --git a/apps/files_sharing/l10n/es.php b/apps/files_sharing/l10n/es.php index b1d44e5485..2023d35903 100644 --- a/apps/files_sharing/l10n/es.php +++ b/apps/files_sharing/l10n/es.php @@ -1,6 +1,8 @@ "Contraseña", "Submit" => "Enviar", +"%s shared the folder %s with you" => "%s compartió la carpeta %s contigo", +"%s shared the file %s with you" => "%s compartió el fichero %s contigo", "Download" => "Descargar", "No preview available for" => "No hay vista previa disponible para", "web services under your control" => "Servicios web bajo su control" diff --git a/apps/files_sharing/l10n/es_AR.php b/apps/files_sharing/l10n/es_AR.php new file mode 100644 index 0000000000..a2d6e232f2 --- /dev/null +++ b/apps/files_sharing/l10n/es_AR.php @@ -0,0 +1,9 @@ + "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" +); diff --git a/apps/files_sharing/l10n/eu.php b/apps/files_sharing/l10n/eu.php index 70ff2e8876..ebef0f445e 100644 --- a/apps/files_sharing/l10n/eu.php +++ b/apps/files_sharing/l10n/eu.php @@ -1,6 +1,8 @@ "Pasahitza", "Submit" => "Bidali", +"%s shared the folder %s with you" => "%sk zurekin %s karpeta elkarbanatu du", +"%s shared the file %s with you" => "%sk zurekin %s fitxategia elkarbanatu du", "Download" => "Deskargatu", "No preview available for" => "Ez dago aurrebista eskuragarririk hauentzat ", "web services under your control" => "web zerbitzuak zure kontrolpean" diff --git a/apps/files_sharing/l10n/fi_FI.php b/apps/files_sharing/l10n/fi_FI.php index 85c6c7a713..6c44134213 100644 --- a/apps/files_sharing/l10n/fi_FI.php +++ b/apps/files_sharing/l10n/fi_FI.php @@ -1,6 +1,8 @@ "Salasana", "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", "No preview available for" => "Ei esikatselua kohteelle", "web services under your control" => "verkkopalvelut hallinnassasi" diff --git a/apps/files_sharing/l10n/fr.php b/apps/files_sharing/l10n/fr.php index 54d9e9ec56..1038d81933 100644 --- a/apps/files_sharing/l10n/fr.php +++ b/apps/files_sharing/l10n/fr.php @@ -1,6 +1,8 @@ "Mot de passe", "Submit" => "Envoyer", +"%s shared the folder %s with you" => "%s a partagé le répertoire %s avec vous", +"%s shared the file %s with you" => "%s a partagé le fichier %s avec vous", "Download" => "Télécharger", "No preview available for" => "Pas d'aperçu disponible pour", "web services under your control" => "services web sous votre contrôle" diff --git a/apps/files_sharing/l10n/gl.php b/apps/files_sharing/l10n/gl.php new file mode 100644 index 0000000000..c9644d720e --- /dev/null +++ b/apps/files_sharing/l10n/gl.php @@ -0,0 +1,7 @@ + "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" +); diff --git a/apps/files_sharing/l10n/it.php b/apps/files_sharing/l10n/it.php index 5bedabde9b..f83ca1446d 100644 --- a/apps/files_sharing/l10n/it.php +++ b/apps/files_sharing/l10n/it.php @@ -1,6 +1,8 @@ "Password", "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", "No preview available for" => "Nessuna anteprima disponibile per", "web services under your control" => "servizi web nelle tue mani" diff --git a/apps/files_sharing/l10n/ja_JP.php b/apps/files_sharing/l10n/ja_JP.php index 5d63f371d5..058e4f2cd7 100644 --- a/apps/files_sharing/l10n/ja_JP.php +++ b/apps/files_sharing/l10n/ja_JP.php @@ -1,6 +1,8 @@ "パスワード", "Submit" => "送信", +"%s shared the folder %s with you" => "%s はフォルダー %s をあなたと共有", +"%s shared the file %s with you" => "%s はファイル %s をあなたと共有", "Download" => "ダウンロード", "No preview available for" => "プレビューはありません", "web services under your control" => "管理下のウェブサービス" diff --git a/apps/files_sharing/l10n/nl.php b/apps/files_sharing/l10n/nl.php index 2f732ed662..2cef025439 100644 --- a/apps/files_sharing/l10n/nl.php +++ b/apps/files_sharing/l10n/nl.php @@ -1,6 +1,8 @@ "Wachtwoord", "Submit" => "Verzenden", +"%s shared the folder %s with you" => "%s deelt de map %s met u", +"%s shared the file %s with you" => "%s deelt het bestand %s met u", "Download" => "Downloaden", "No preview available for" => "Geen voorbeeldweergave beschikbaar voor", "web services under your control" => "Webdiensten in eigen beheer" diff --git a/apps/files_sharing/l10n/pl.php b/apps/files_sharing/l10n/pl.php index 1d5e6261ef..9db5e87c9b 100644 --- a/apps/files_sharing/l10n/pl.php +++ b/apps/files_sharing/l10n/pl.php @@ -1,6 +1,8 @@ "Hasło", "Submit" => "Wyślij", +"%s shared the folder %s with you" => "%s współdzieli folder z tobą %s", +"%s shared the file %s with you" => "%s współdzieli z tobą plik %s", "Download" => "Pobierz", "No preview available for" => "Podgląd nie jest dostępny dla", "web services under your control" => "Kontrolowane serwisy" diff --git a/apps/files_sharing/l10n/pt_BR.php b/apps/files_sharing/l10n/pt_BR.php new file mode 100644 index 0000000000..4dde4bb5ad --- /dev/null +++ b/apps/files_sharing/l10n/pt_BR.php @@ -0,0 +1,9 @@ + "Senha", +"Submit" => "Submeter", +"%s shared the folder %s with you" => "%s compartilhou a pasta %s com você", +"%s shared the file %s with you" => "%s compartilhou o arquivo %s com você", +"Download" => "Baixar", +"No preview available for" => "Nenhuma visualização disponível para", +"web services under your control" => "web services sob seu controle" +); diff --git a/apps/files_sharing/l10n/ro.php b/apps/files_sharing/l10n/ro.php new file mode 100644 index 0000000000..eb9977dc58 --- /dev/null +++ b/apps/files_sharing/l10n/ro.php @@ -0,0 +1,9 @@ + "Parolă", +"Submit" => "Trimite", +"%s shared the folder %s with you" => "%s a partajat directorul %s cu tine", +"%s shared the file %s with you" => "%s a partajat fișierul %s cu tine", +"Download" => "Descarcă", +"No preview available for" => "Nici o previzualizare disponibilă pentru ", +"web services under your control" => "servicii web controlate de tine" +); diff --git a/apps/files_sharing/l10n/ru_RU.php b/apps/files_sharing/l10n/ru_RU.php new file mode 100644 index 0000000000..a1579efc8f --- /dev/null +++ b/apps/files_sharing/l10n/ru_RU.php @@ -0,0 +1,7 @@ + "Пароль", +"Submit" => "Передать", +"Download" => "Загрузка", +"No preview available for" => "Предварительный просмотр недоступен", +"web services under your control" => "веб-сервисы под Вашим контролем" +); diff --git a/apps/files_sharing/l10n/sl.php b/apps/files_sharing/l10n/sl.php index 5e7d2d5004..6d5556ea4b 100644 --- a/apps/files_sharing/l10n/sl.php +++ b/apps/files_sharing/l10n/sl.php @@ -1,6 +1,8 @@ "Geslo", "Submit" => "Pošlji", +"%s shared the folder %s with you" => "%s je dal v souporabo z vami mapo %s", +"%s shared the file %s with you" => "%s je dal v souporabo z vami datoteko %s", "Download" => "Prenesi", "No preview available for" => "Predogled ni na voljo za", "web services under your control" => "spletne storitve pod vašim nadzorom" diff --git a/apps/files_sharing/l10n/sv.php b/apps/files_sharing/l10n/sv.php index 78b1983649..d1c9afff07 100644 --- a/apps/files_sharing/l10n/sv.php +++ b/apps/files_sharing/l10n/sv.php @@ -1,6 +1,8 @@ "Lösenord", "Submit" => "Skicka", +"%s shared the folder %s with you" => "%s delade mappen %s med dig", +"%s shared the file %s with you" => "%s delade filen %s med dig", "Download" => "Ladda ner", "No preview available for" => "Ingen förhandsgranskning tillgänglig för", "web services under your control" => "webbtjänster under din kontroll" diff --git a/apps/files_sharing/l10n/th_TH.php b/apps/files_sharing/l10n/th_TH.php index 8a3f1207db..9d53d65f8a 100644 --- a/apps/files_sharing/l10n/th_TH.php +++ b/apps/files_sharing/l10n/th_TH.php @@ -1,6 +1,8 @@ "รหัสผ่าน", "Submit" => "ส่ง", +"%s shared the folder %s with you" => "%s ได้แชร์โฟลเดอร์ %s ให้กับคุณ", +"%s shared the file %s with you" => "%s ได้แชร์ไฟล์ %s ให้กับคุณ", "Download" => "ดาวน์โหลด", "No preview available for" => "ไม่สามารถดูตัวอย่างได้สำหรับ", "web services under your control" => "เว็บเซอร์วิสที่คุณควบคุมการใช้งานได้" diff --git a/apps/files_sharing/l10n/zh_CN.GB2312.php b/apps/files_sharing/l10n/zh_CN.GB2312.php new file mode 100644 index 0000000000..fdde2c641f --- /dev/null +++ b/apps/files_sharing/l10n/zh_CN.GB2312.php @@ -0,0 +1,7 @@ + "密码", +"Submit" => "提交", +"Download" => "下载", +"No preview available for" => "没有预览可用于", +"web services under your control" => "您控制的网络服务" +); diff --git a/apps/files_sharing/l10n/zh_CN.php b/apps/files_sharing/l10n/zh_CN.php new file mode 100644 index 0000000000..64e7af3e0c --- /dev/null +++ b/apps/files_sharing/l10n/zh_CN.php @@ -0,0 +1,9 @@ + "密码", +"Submit" => "提交", +"%s shared the folder %s with you" => "%s与您共享了%s文件夹", +"%s shared the file %s with you" => "%s与您共享了%s文件", +"Download" => "下载", +"No preview available for" => "没有预览", +"web services under your control" => "您控制的web服务" +); diff --git a/apps/files_sharing/lib/share/file.php b/apps/files_sharing/lib/share/file.php index 2149da1d73..074ca9928d 100644 --- a/apps/files_sharing/lib/share/file.php +++ b/apps/files_sharing/lib/share/file.php @@ -47,7 +47,7 @@ class OC_Share_Backend_File implements OCP\Share_Backend_File_Dependent { } public function generateTarget($filePath, $shareWith, $exclude = null) { - $target = $filePath; + $target = '/'.basename($filePath); if (isset($exclude)) { if ($pos = strrpos($target, '.')) { $name = substr($target, 0, $pos); @@ -72,8 +72,16 @@ class OC_Share_Backend_File implements OCP\Share_Backend_File_Dependent { // Only 1 item should come through for this format call return array('path' => $items[key($items)]['path'], 'permissions' => $items[key($items)]['permissions']); } else if ($format == self::FORMAT_FILE_APP) { + if (isset($parameters['mimetype_filter']) && $parameters['mimetype_filter']) { + $mimetype_filter = $parameters['mimetype_filter']; + } $files = array(); foreach ($items as $item) { + if (isset($mimetype_filter) + && strpos($item['mimetype'], $mimetype_filter) !== 0 + && $item['mimetype'] != 'httpd/unix-directory') { + continue; + } $file = array(); $file['id'] = $item['file_source']; $file['path'] = $item['file_target']; @@ -116,4 +124,4 @@ class OC_Share_Backend_File implements OCP\Share_Backend_File_Dependent { return array(); } -} \ No newline at end of file +} diff --git a/apps/files_sharing/public.php b/apps/files_sharing/public.php index 010f6b9de1..525ffa8357 100644 --- a/apps/files_sharing/public.php +++ b/apps/files_sharing/public.php @@ -1,13 +1,21 @@ printPage(); + exit(); + } + } // Download the file if (isset($_GET['download'])) { $mimetype = OC_Filesystem::getMimeType($path); @@ -50,18 +68,84 @@ if (isset($_GET['file'])) { OCP\Util::addScript('files_sharing', 'public'); OCP\Util::addScript('files', 'fileactions'); $tmpl = new OCP\Template('files_sharing', 'public', 'base'); - $tmpl->assign('details', $uidOwner.' shared the file '.basename($path).' with you'); $tmpl->assign('owner', $uidOwner); - $tmpl->assign('name', basename($path)); // Show file list if (OC_Filesystem::is_dir($path)) { - // TODO + OCP\Util::addStyle('files', 'files'); + OCP\Util::addScript('files', 'files'); + OCP\Util::addScript('files', 'filelist'); + $files = array(); + $rootLength = strlen($baseDir) + 1; + foreach (OC_Files::getDirectoryContent($path) as $i) { + $i['date'] = OCP\Util::formatDate($i['mtime']); + if ($i['type'] == 'file') { + $fileinfo = pathinfo($i['name']); + $i['basename'] = $fileinfo['filename']; + $i['extension'] = isset($fileinfo['extension']) ? ('.'.$fileinfo['extension']) : ''; + } + $i['directory'] = substr($i['directory'], $rootLength); + if ($i['directory'] == '/') { + $i['directory'] = ''; + } + $i['permissions'] = OCP\Share::PERMISSION_READ; + $files[] = $i; + } + // Make breadcrumb + $breadcrumb = array(); + $pathtohere = ''; + foreach (explode('/', $dir) as $i) { + if ($i != '') { + if ($i != $baseDir) { + $pathtohere .= '/'.$i; + } + $breadcrumb[] = array('dir' => $pathtohere, 'name' => $i); + } + } + $list = new OCP\Template('files', 'part.list', ''); + $list->assign('files', $files, false); + $list->assign('baseURL', OCP\Util::linkToPublic('files').'&dir='.$_GET['dir'].'&path=', false); + $list->assign('downloadURL', OCP\Util::linkToPublic('files').'&download&dir='.$_GET['dir'].'&path=', false); + $breadcrumbNav = new OCP\Template('files', 'part.breadcrumb', '' ); + $breadcrumbNav->assign('breadcrumb', $breadcrumb, false); + $breadcrumbNav->assign('baseURL', OCP\Util::linkToPublic('files').'&dir='.$_GET['dir'].'&path=', false); + $folder = new OCP\Template('files', 'index', ''); + $folder->assign('fileList', $list->fetchPage(), false); + $folder->assign('breadcrumb', $breadcrumbNav->fetchPage(), false); + $folder->assign('dir', basename($dir)); + $folder->assign('isCreatable', false); + $folder->assign('permissions', 0); + $folder->assign('files', $files); + $folder->assign('uploadMaxFilesize', 0); + $folder->assign('uploadMaxHumanFilesize', 0); + $folder->assign('allowZipDownload', intval(OCP\Config::getSystemValue('allowZipDownload', true))); + $tmpl->assign('folder', $folder->fetchPage(), false); + $tmpl->assign('uidOwner', $uidOwner); + $tmpl->assign('dir', basename($dir)); + $tmpl->assign('filename', basename($path)); + $tmpl->assign('mimetype', OC_Filesystem::getMimeType($path)); + $tmpl->assign('allowZipDownload', intval(OCP\Config::getSystemValue('allowZipDownload', true))); + if (isset($_GET['path'])) { + $getPath = $_GET['path']; + } else { + $getPath = ''; + } + $tmpl->assign('downloadURL', OCP\Util::linkToPublic('files').'&download&dir='.$_GET['dir'].'&path='.$getPath); } else { // Show file preview if viewer is available + $tmpl->assign('uidOwner', $uidOwner); $tmpl->assign('dir', dirname($path)); $tmpl->assign('filename', basename($path)); $tmpl->assign('mimetype', OC_Filesystem::getMimeType($path)); - $tmpl->assign('downloadURL', OCP\Util::linkToPublic('files').'&file='.$_GET['file'].'&download'); + if ($type == 'file') { + $tmpl->assign('downloadURL', OCP\Util::linkToPublic('files').'&file='.$_GET['file'].'&download'); + } else { + if (isset($_GET['path'])) { + $getPath = $_GET['path']; + } else { + $getPath = ''; + } + $tmpl->assign('downloadURL', OCP\Util::linkToPublic('files').'&download&dir='.$_GET['dir'].'&path='.$getPath); + } } $tmpl->printPage(); } diff --git a/apps/files_sharing/templates/public.php b/apps/files_sharing/templates/public.php old mode 100755 new mode 100644 index ca48a35575..fd9b79e6f1 --- a/apps/files_sharing/templates/public.php +++ b/apps/files_sharing/templates/public.php @@ -5,21 +5,33 @@
- - + + + + +
+ +
+ + -
-

ownCloudt('web services under your control'); ?>

\ No newline at end of file +

ownCloudt('web services under your control'); ?>

diff --git a/apps/files_versions/js/versions.js b/apps/files_versions/js/versions.js index 495848b822..9075095d28 100644 --- a/apps/files_versions/js/versions.js +++ b/apps/files_versions/js/versions.js @@ -10,10 +10,10 @@ $(document).ready(function() { $(document).ready(function(){ if (typeof FileActions !== 'undefined') { - // Add history button to files/index.php + // Add history button to 'files/index.php' FileActions.register( 'file' - ,'History' + , t('files_versions', 'History') , OC.PERMISSION_UPDATE , function() { // Specify icon for hitory button @@ -147,4 +147,4 @@ $(this).click( } -); \ No newline at end of file +); diff --git a/apps/files_versions/l10n/ca.php b/apps/files_versions/l10n/ca.php index 51ff7aba1d..d9d966fc7a 100644 --- a/apps/files_versions/l10n/ca.php +++ b/apps/files_versions/l10n/ca.php @@ -1,5 +1,7 @@ "Expira totes les versions", "Versions" => "Versions", -"This will delete all existing backup versions of your files" => "Això eliminarà totes les versions de còpia de seguretat dels vostres fitxers" +"This will delete all existing backup versions of your files" => "Això eliminarà totes les versions de còpia de seguretat dels vostres fitxers", +"Files Versioning" => "Fitxers de Versions", +"Enable" => "Permetre" ); diff --git a/apps/files_versions/l10n/cs_CZ.php b/apps/files_versions/l10n/cs_CZ.php index 5d19f59d70..3995334d9e 100644 --- a/apps/files_versions/l10n/cs_CZ.php +++ b/apps/files_versions/l10n/cs_CZ.php @@ -1,5 +1,8 @@ "Vypršet všechny verze", +"History" => "Historie", "Versions" => "Verze", -"This will delete all existing backup versions of your files" => "Odstraní všechny existující zálohované verze Vašich souborů" +"This will delete all existing backup versions of your files" => "Odstraní všechny existující zálohované verze Vašich souborů", +"Files Versioning" => "Verzování souborů", +"Enable" => "Povolit" ); diff --git a/apps/files_versions/l10n/da.php b/apps/files_versions/l10n/da.php index 6a69fdbe4c..bc02b47f2a 100644 --- a/apps/files_versions/l10n/da.php +++ b/apps/files_versions/l10n/da.php @@ -1,5 +1,8 @@ "Lad alle versioner udløbe", +"History" => "Historik", "Versions" => "Versioner", -"This will delete all existing backup versions of your files" => "Dette vil slette alle eksisterende backupversioner af dine filer" +"This will delete all existing backup versions of your files" => "Dette vil slette alle eksisterende backupversioner af dine filer", +"Files Versioning" => "Versionering af filer", +"Enable" => "Aktiver" ); diff --git a/apps/files_versions/l10n/de.php b/apps/files_versions/l10n/de.php index 079d96e679..a568112d02 100644 --- a/apps/files_versions/l10n/de.php +++ b/apps/files_versions/l10n/de.php @@ -1,5 +1,8 @@ "Alle Versionen löschen", +"History" => "Historie", "Versions" => "Versionen", -"This will delete all existing backup versions of your files" => "Dies löscht alle vorhandenen Sicherungsversionen Ihrer Dateien." +"This will delete all existing backup versions of your files" => "Dies löscht alle vorhandenen Sicherungsversionen Ihrer Dateien.", +"Files Versioning" => "Dateiversionierung", +"Enable" => "Aktivieren" ); diff --git a/apps/files_versions/l10n/el.php b/apps/files_versions/l10n/el.php index c26ad806bb..f6b9a5b299 100644 --- a/apps/files_versions/l10n/el.php +++ b/apps/files_versions/l10n/el.php @@ -1,3 +1,8 @@ "Λήξη όλων των εκδόσεων" +"Expire all versions" => "Λήξη όλων των εκδόσεων", +"History" => "Ιστορικό", +"Versions" => "Εκδόσεις", +"This will delete all existing backup versions of your files" => "Αυτό θα διαγράψει όλες τις υπάρχουσες εκδόσεις των αντιγράφων ασφαλείας των αρχείων σας", +"Files Versioning" => "Εκδόσεις Αρχείων", +"Enable" => "Ενεργοποίηση" ); diff --git a/apps/files_versions/l10n/es.php b/apps/files_versions/l10n/es.php index 1acab15299..f6b63df7c2 100644 --- a/apps/files_versions/l10n/es.php +++ b/apps/files_versions/l10n/es.php @@ -1,5 +1,8 @@ "Expirar todas las versiones", +"History" => "Historial", "Versions" => "Versiones", -"This will delete all existing backup versions of your files" => "Esto eliminará todas las versiones guardadas como copia de seguridad de tus archivos" +"This will delete all existing backup versions of your files" => "Esto eliminará todas las versiones guardadas como copia de seguridad de tus archivos", +"Files Versioning" => "Versionado de archivos", +"Enable" => "Habilitar" ); diff --git a/apps/files_versions/l10n/es_AR.php b/apps/files_versions/l10n/es_AR.php new file mode 100644 index 0000000000..a78264de03 --- /dev/null +++ b/apps/files_versions/l10n/es_AR.php @@ -0,0 +1,8 @@ + "Expirar todas las versiones", +"History" => "Historia", +"Versions" => "Versiones", +"This will delete all existing backup versions of your files" => "Hacer estom borrará todas las versiones guardadas como copia de seguridad de tus archivos", +"Files Versioning" => "Versionado de archivos", +"Enable" => "Activar" +); diff --git a/apps/files_versions/l10n/eu.php b/apps/files_versions/l10n/eu.php index 889e762c6b..d84d901170 100644 --- a/apps/files_versions/l10n/eu.php +++ b/apps/files_versions/l10n/eu.php @@ -1,5 +1,8 @@ "Iraungi bertsio guztiak", +"History" => "Historia", "Versions" => "Bertsioak", -"This will delete all existing backup versions of your files" => "Honek zure fitxategien bertsio guztiak ezabatuko ditu" +"This will delete all existing backup versions of your files" => "Honek zure fitxategien bertsio guztiak ezabatuko ditu", +"Files Versioning" => "Fitxategien Bertsioak", +"Enable" => "Gaitu" ); diff --git a/apps/files_versions/l10n/fi_FI.php b/apps/files_versions/l10n/fi_FI.php index bc8aa67dc7..3cec4c04bf 100644 --- a/apps/files_versions/l10n/fi_FI.php +++ b/apps/files_versions/l10n/fi_FI.php @@ -1,5 +1,8 @@ "Vanhenna kaikki versiot", +"History" => "Historia", "Versions" => "Versiot", -"This will delete all existing backup versions of your files" => "Tämä poistaa kaikki tiedostojesi olemassa olevat varmuuskopioversiot" +"This will delete all existing backup versions of your files" => "Tämä poistaa kaikki tiedostojesi olemassa olevat varmuuskopioversiot", +"Files Versioning" => "Tiedostojen versiointi", +"Enable" => "Käytä" ); diff --git a/apps/files_versions/l10n/fr.php b/apps/files_versions/l10n/fr.php index b0e658e8df..e6dbc27445 100644 --- a/apps/files_versions/l10n/fr.php +++ b/apps/files_versions/l10n/fr.php @@ -1,5 +1,8 @@ "Supprimer les versions intermédiaires", +"History" => "Historique", "Versions" => "Versions", -"This will delete all existing backup versions of your files" => "Cette opération va effacer toutes les versions intermédiaires de vos fichiers (et ne garder que la dernière version en date)." +"This will delete all existing backup versions of your files" => "Cette opération va effacer toutes les versions intermédiaires de vos fichiers (et ne garder que la dernière version en date).", +"Files Versioning" => "Versionnage des fichiers", +"Enable" => "Activer" ); diff --git a/apps/files_versions/l10n/gl.php b/apps/files_versions/l10n/gl.php new file mode 100644 index 0000000000..c0d5937e1b --- /dev/null +++ b/apps/files_versions/l10n/gl.php @@ -0,0 +1,7 @@ + "Caducar todas as versións", +"Versions" => "Versións", +"This will delete all existing backup versions of your files" => "Esto eliminará todas as copias de respaldo existentes dos seus ficheiros", +"Files Versioning" => "Versionado de ficheiros", +"Enable" => "Habilitar" +); diff --git a/apps/files_versions/l10n/it.php b/apps/files_versions/l10n/it.php index 2b7d2b5c13..0b1e70823d 100644 --- a/apps/files_versions/l10n/it.php +++ b/apps/files_versions/l10n/it.php @@ -1,5 +1,8 @@ "Scadenza di tutte le versioni", +"History" => "Cronologia", "Versions" => "Versioni", -"This will delete all existing backup versions of your files" => "Ciò eliminerà tutte le versioni esistenti dei tuoi file" +"This will delete all existing backup versions of your files" => "Ciò eliminerà tutte le versioni esistenti dei tuoi file", +"Files Versioning" => "Controllo di versione dei file", +"Enable" => "Abilita" ); diff --git a/apps/files_versions/l10n/ja_JP.php b/apps/files_versions/l10n/ja_JP.php index 7a00d0b4da..367152c074 100644 --- a/apps/files_versions/l10n/ja_JP.php +++ b/apps/files_versions/l10n/ja_JP.php @@ -1,5 +1,8 @@ "すべてのバージョンを削除する", +"History" => "履歴", "Versions" => "バージョン", -"This will delete all existing backup versions of your files" => "これは、あなたのファイルのすべてのバックアップバージョンを削除します" +"This will delete all existing backup versions of your files" => "これは、あなたのファイルのすべてのバックアップバージョンを削除します", +"Files Versioning" => "ファイルのバージョン管理", +"Enable" => "有効化" ); diff --git a/apps/files_versions/l10n/nl.php b/apps/files_versions/l10n/nl.php index 486b4ed45c..1cf875048d 100644 --- a/apps/files_versions/l10n/nl.php +++ b/apps/files_versions/l10n/nl.php @@ -1,5 +1,8 @@ "Alle versies laten verlopen", +"History" => "Geschiedenis", "Versions" => "Versies", -"This will delete all existing backup versions of your files" => "Dit zal alle bestaande backup versies van uw bestanden verwijderen" +"This will delete all existing backup versions of your files" => "Dit zal alle bestaande backup versies van uw bestanden verwijderen", +"Files Versioning" => "Bestand versies", +"Enable" => "Zet aan" ); diff --git a/apps/files_versions/l10n/pl.php b/apps/files_versions/l10n/pl.php index a198792a5b..46c28d4590 100644 --- a/apps/files_versions/l10n/pl.php +++ b/apps/files_versions/l10n/pl.php @@ -1,5 +1,8 @@ "Wygasają wszystkie wersje", +"History" => "Historia", "Versions" => "Wersje", -"This will delete all existing backup versions of your files" => "Spowoduje to usunięcie wszystkich istniejących wersji kopii zapasowych plików" +"This will delete all existing backup versions of your files" => "Spowoduje to usunięcie wszystkich istniejących wersji kopii zapasowych plików", +"Files Versioning" => "Wersjonowanie plików", +"Enable" => "Włącz" ); diff --git a/apps/files_versions/l10n/pt_BR.php b/apps/files_versions/l10n/pt_BR.php index 102b6d6274..3d39a533d6 100644 --- a/apps/files_versions/l10n/pt_BR.php +++ b/apps/files_versions/l10n/pt_BR.php @@ -1,3 +1,8 @@ "Expirar todas as versões" +"Expire all versions" => "Expirar todas as versões", +"History" => "Histórico", +"Versions" => "Versões", +"This will delete all existing backup versions of your files" => "Isso removerá todas as versões de backup existentes dos seus arquivos", +"Files Versioning" => "Versionamento de Arquivos", +"Enable" => "Habilitar" ); diff --git a/apps/files_versions/l10n/pt_PT.php b/apps/files_versions/l10n/pt_PT.php new file mode 100644 index 0000000000..eb80eec6ed --- /dev/null +++ b/apps/files_versions/l10n/pt_PT.php @@ -0,0 +1,7 @@ + "Expirar todas as versões", +"History" => "Histórico", +"Versions" => "Versões", +"This will delete all existing backup versions of your files" => "Isto irá apagar todas as versões de backup do seus ficheiros", +"Enable" => "Activar" +); diff --git a/apps/files_versions/l10n/ro.php b/apps/files_versions/l10n/ro.php new file mode 100644 index 0000000000..e23e771e39 --- /dev/null +++ b/apps/files_versions/l10n/ro.php @@ -0,0 +1,8 @@ + "Expiră toate versiunile", +"History" => "Istoric", +"Versions" => "Versiuni", +"This will delete all existing backup versions of your files" => "Această acțiune va șterge toate versiunile salvate ale fișierelor tale", +"Files Versioning" => "Versionare fișiere", +"Enable" => "Activare" +); diff --git a/apps/files_versions/l10n/ru_RU.php b/apps/files_versions/l10n/ru_RU.php new file mode 100644 index 0000000000..2563c318bc --- /dev/null +++ b/apps/files_versions/l10n/ru_RU.php @@ -0,0 +1,6 @@ + "Версии", +"This will delete all existing backup versions of your files" => "Это приведет к удалению всех существующих версий резервной копии ваших файлов", +"Files Versioning" => "Файлы управления версиями", +"Enable" => "Включить" +); diff --git a/apps/files_versions/l10n/sk_SK.php b/apps/files_versions/l10n/sk_SK.php new file mode 100644 index 0000000000..132c6c0968 --- /dev/null +++ b/apps/files_versions/l10n/sk_SK.php @@ -0,0 +1,8 @@ + "Expirovať všetky verzie", +"History" => "História", +"Versions" => "Verzie", +"This will delete all existing backup versions of your files" => "Budú zmazané všetky zálohované verzie vašich súborov", +"Files Versioning" => "Vytváranie verzií súborov", +"Enable" => "Zapnúť" +); diff --git a/apps/files_versions/l10n/sl.php b/apps/files_versions/l10n/sl.php index 8c67b56883..056a17decf 100644 --- a/apps/files_versions/l10n/sl.php +++ b/apps/files_versions/l10n/sl.php @@ -1,5 +1,8 @@ "Zastaraj vse različice", +"History" => "Zgodovina", "Versions" => "Različice", -"This will delete all existing backup versions of your files" => "To bo izbrisalo vse obstoječe različice varnostnih kopij vaših datotek" +"This will delete all existing backup versions of your files" => "To bo izbrisalo vse obstoječe različice varnostnih kopij vaših datotek", +"Files Versioning" => "Sledenje različicam", +"Enable" => "Omogoči" ); diff --git a/apps/files_versions/l10n/sv.php b/apps/files_versions/l10n/sv.php index 16fd9890bf..e36164e30a 100644 --- a/apps/files_versions/l10n/sv.php +++ b/apps/files_versions/l10n/sv.php @@ -1,5 +1,8 @@ "Upphör alla versioner", +"History" => "Historik", "Versions" => "Versioner", -"This will delete all existing backup versions of your files" => "Detta kommer att radera alla befintliga säkerhetskopior av dina filer" +"This will delete all existing backup versions of your files" => "Detta kommer att radera alla befintliga säkerhetskopior av dina filer", +"Files Versioning" => "Versionshantering av filer", +"Enable" => "Aktivera" ); diff --git a/apps/files_versions/l10n/th_TH.php b/apps/files_versions/l10n/th_TH.php index 5e075d54a7..89b9f62691 100644 --- a/apps/files_versions/l10n/th_TH.php +++ b/apps/files_versions/l10n/th_TH.php @@ -1,5 +1,8 @@ "หมดอายุทุกรุ่น", +"History" => "ประวัติ", "Versions" => "รุ่น", -"This will delete all existing backup versions of your files" => "นี่จะเป็นลบทิ้งไฟล์รุ่นที่ทำการสำรองข้อมูลทั้งหมดที่มีอยู่ของคุณทิ้งไป" +"This will delete all existing backup versions of your files" => "นี่จะเป็นลบทิ้งไฟล์รุ่นที่ทำการสำรองข้อมูลทั้งหมดที่มีอยู่ของคุณทิ้งไป", +"Files Versioning" => "การกำหนดเวอร์ชั่นของไฟล์", +"Enable" => "เปิดใช้งาน" ); diff --git a/apps/files_versions/l10n/zh_CN.GB2312.php b/apps/files_versions/l10n/zh_CN.GB2312.php new file mode 100644 index 0000000000..43af097a21 --- /dev/null +++ b/apps/files_versions/l10n/zh_CN.GB2312.php @@ -0,0 +1,7 @@ + "作废所有版本", +"Versions" => "版本", +"This will delete all existing backup versions of your files" => "这将删除所有您现有文件的备份版本", +"Files Versioning" => "文件版本", +"Enable" => "启用" +); diff --git a/apps/files_versions/l10n/zh_CN.php b/apps/files_versions/l10n/zh_CN.php index ba2ea40df9..48e7157c98 100644 --- a/apps/files_versions/l10n/zh_CN.php +++ b/apps/files_versions/l10n/zh_CN.php @@ -1,5 +1,8 @@ "过期所有版本", +"History" => "历史", "Versions" => "版本", -"This will delete all existing backup versions of your files" => "将会删除您的文件的所有备份版本" +"This will delete all existing backup versions of your files" => "将会删除您的文件的所有备份版本", +"Files Versioning" => "文件版本", +"Enable" => "开启" ); diff --git a/apps/files_versions/lib/versions.php b/apps/files_versions/lib/versions.php index e429782aed..7d12e58f94 100644 --- a/apps/files_versions/lib/versions.php +++ b/apps/files_versions/lib/versions.php @@ -35,48 +35,34 @@ class Storage { const DEFAULTMININTERVAL=60; // 1 min const DEFAULTMAXVERSIONS=50; - private $view; - - function __construct() { - - $this->view = \OCP\Files::getStorage('files_versions'); - - } - - /** - * listen to write event. - */ - public static function write_hook($params) { - if(\OCP\Config::getSystemValue('files_versions', Storage::DEFAULTENABLED)=='true') { - $path = $params[\OC_Filesystem::signal_param_path]; - if($path<>'') $this->store($path); + private static function getUidAndFilename($filename) + { + if (\OCP\App::isEnabled('files_sharing') + && substr($filename, 0, 7) == '/Shared' + && $source = \OCP\Share::getItemSharedWith('file', + substr($filename, 7), + \OC_Share_Backend_File::FORMAT_SHARED_STORAGE)) { + $filename = $source['path']; + $pos = strpos($filename, '/files', 1); + $uid = substr($filename, 1, $pos - 1); + $filename = substr($filename, $pos + 6); + } else { + $uid = \OCP\User::getUser(); } + return array($uid, $filename); } - - /** * store a new version of a file. */ public function store($filename) { if(\OCP\Config::getSystemValue('files_versions', Storage::DEFAULTENABLED)=='true') { - - $files_view = \OCP\Files::getStorage("files"); - $users_view = \OCP\Files::getStorage("files_versions"); - $users_view->chroot(\OCP\User::getUser().'/'); - - //FIXME OC_Share no longer exists - //if (\OCP\App::isEnabled('files_sharing') && $source = \OC_Share::getSource('/'.\OCP\User::getUser().'/files'.$filename)) { - // $pos = strpos($source, '/files', 1); - // $uid = substr($source, 1, $pos - 1); - // $filename = substr($source, $pos + 6); - //} else { - $uid = \OCP\User::getUser(); - //} - - $versionsFolderName=\OCP\Config::getSystemValue('datadirectory') . $this->view->getAbsolutePath(''); + list($uid, $filename) = self::getUidAndFilename($filename); + $files_view = new \OC_FilesystemView('/'.$uid.'/files'); + $users_view = new \OC_FilesystemView('/'.$uid); //check if source file already exist as version to avoid recursions. + // todo does this check work? if ($users_view->file_exists($filename)) { return false; } @@ -95,6 +81,10 @@ class Storage { return false; } } + // we should have a source file to work with + if (!$files_view->file_exists($filename)) { + return false; + } // check filesize if($files_view->filesize($filename)>\OCP\Config::getSystemValue('files_versionsmaxfilesize', Storage::DEFAULTMAXFILESIZE)) { @@ -104,6 +94,8 @@ class Storage { // check mininterval if the file is being modified by the owner (all shared files should be versioned despite mininterval) if ($uid == \OCP\User::getUser()) { + $versions_fileview = new \OC_FilesystemView('/'.$uid.'/files_versions'); + $versionsFolderName=\OCP\Config::getSystemValue('datadirectory'). $versions_fileview->getAbsolutePath(''); $matches=glob($versionsFolderName.'/'.$filename.'.v*'); sort($matches); $parts=explode('.v',end($matches)); @@ -114,8 +106,10 @@ class Storage { // create all parent folders - $info=pathinfo($filename); - if(!file_exists($versionsFolderName.'/'.$info['dirname'])) mkdir($versionsFolderName.'/'.$info['dirname'],0700,true); + $dirname = dirname($filename); + if(!$users_view->file_exists('/files_versions/'.$dirname)) { + $users_view->mkdir('/files_versions/'.$dirname,0700,true); + } // store a new version of a file $users_view->copy('files'.$filename, 'files_versions'.$filename.'.v'.time()); @@ -132,17 +126,8 @@ class Storage { public static function rollback($filename,$revision) { if(\OCP\Config::getSystemValue('files_versions', Storage::DEFAULTENABLED)=='true') { - $users_view = \OCP\Files::getStorage("files_versions"); - $users_view->chroot(\OCP\User::getUser().'/'); - - //FIXME OC_Share no longer exists - //if (\OCP\App::isEnabled('files_sharing') && $source = \OC_Share::getSource('/'.\OCP\User::getUser().'/files'.$filename)) { - // $pos = strpos($source, '/files', 1); - // $uid = substr($source, 1, $pos - 1); - // $filename = substr($source, $pos + 6); - //} else { - $uid = \OCP\User::getUser(); - //} + list($uid, $filename) = self::getUidAndFilename($filename); + $users_view = new \OC_FilesystemView('/'.$uid); // rollback if( @$users_view->copy('files_versions'.$filename.'.v'.$revision, 'files'.$filename) ) { @@ -164,12 +149,8 @@ class Storage { */ public static function isversioned($filename) { if(\OCP\Config::getSystemValue('files_versions', Storage::DEFAULTENABLED)=='true') { - $versions_fileview = \OCP\Files::getStorage("files_versions"); - //FIXME OC_Share no longer exists - //if (\OCP\App::isEnabled('files_sharing') && $source = \OC_Share::getSource('/'.\OCP\User::getUser().'/files'.$filename)) { - // $pos = strpos($source, '/files', 1); - // $filename = substr($source, $pos + 6); - //} + list($uid, $filename) = self::getUidAndFilename($filename); + $versions_fileview = new \OC_FilesystemView('/'.$uid.'/files_versions'); $versionsFolderName=\OCP\Config::getSystemValue('datadirectory'). $versions_fileview->getAbsolutePath(''); @@ -196,16 +177,9 @@ class Storage { public static function getVersions( $filename, $count = 0 ) { if( \OCP\Config::getSystemValue('files_versions', Storage::DEFAULTENABLED)=='true' ) { + list($uid, $filename) = self::getUidAndFilename($filename); + $versions_fileview = new \OC_FilesystemView('/'.$uid.'/files_versions'); - //FIXME OC_Share no longer exists - //if (\OCP\App::isEnabled('files_sharing') && $source = \OC_Share::getSource('/'.\OCP\User::getUser().'/files'.$filename)) { - // $pos = strpos($source, '/files', 1); - // $uid = substr($source, 1, $pos - 1); - // $filename = substr($source, $pos + 6); - //} else { - $uid = \OCP\User::getUser(); - //} - $versions_fileview = \OCP\Files::getStorage('files_versions'); $versionsFolderName = \OCP\Config::getSystemValue('datadirectory'). $versions_fileview->getAbsolutePath(''); $versions = array(); @@ -216,7 +190,7 @@ class Storage { $i = 0; - $files_view = \OCP\Files::getStorage('files'); + $files_view = new \OC_FilesystemView('/'.$uid.'/files'); $local_file = $files_view->getLocalFile($filename); foreach( $matches as $ma ) { @@ -270,16 +244,9 @@ class Storage { */ public static function expire($filename) { if(\OCP\Config::getSystemValue('files_versions', Storage::DEFAULTENABLED)=='true') { + list($uid, $filename) = self::getUidAndFilename($filename); + $versions_fileview = new \OC_FilesystemView('/'.$uid.'/files_versions'); - //FIXME OC_Share no longer exists - //if (\OCP\App::isEnabled('files_sharing') && $source = \OC_Share::getSource('/'.\OCP\User::getUser().'/files'.$filename)) { - // $pos = strpos($source, '/files', 1); - // $uid = substr($source, 1, $pos - 1); - // $filename = substr($source, $pos + 6); - //} else { - $uid = \OCP\User::getUser(); - //} - $versions_fileview = \OCP\Files::getStorage("files_versions"); $versionsFolderName=\OCP\Config::getSystemValue('datadirectory'). $versions_fileview->getAbsolutePath(''); // check for old versions @@ -287,7 +254,7 @@ class Storage { if( count( $matches ) > \OCP\Config::getSystemValue( 'files_versionmaxversions', Storage::DEFAULTMAXVERSIONS ) ) { - $numberToDelete = count( $matches-\OCP\Config::getSystemValue( 'files_versionmaxversions', Storage::DEFAULTMAXVERSIONS ) ); + $numberToDelete = count($matches) - \OCP\Config::getSystemValue( 'files_versionmaxversions', Storage::DEFAULTMAXVERSIONS ); // delete old versions of a file $deleteItems = array_slice( $matches, 0, $numberToDelete ); @@ -306,6 +273,7 @@ class Storage { * @return true/false */ public function expireAll() { - return $this->view->deleteAll('', true); + $view = \OCP\Files::getStorage('files_versions'); + return $view->deleteAll('', true); } } diff --git a/apps/files_versions/templates/history.php b/apps/files_versions/templates/history.php index 99bc153a81..854d032da6 100644 --- a/apps/files_versions/templates/history.php +++ b/apps/files_versions/templates/history.php @@ -22,7 +22,7 @@ if( isset( $_['message'] ) ) { foreach ( $_['versions'] as $v ) { echo ' '; echo OCP\Util::formatDate( doubleval($v['version']) ); - echo ' Revert

'; + echo ' Revert

'; if ( $v['cur'] ) { echo ' (Current)'; } echo '

'; } diff --git a/apps/user_ldap/group_ldap.php b/apps/user_ldap/group_ldap.php index 5ec259f6c4..389679b80b 100644 --- a/apps/user_ldap/group_ldap.php +++ b/apps/user_ldap/group_ldap.php @@ -143,7 +143,7 @@ class GROUP_LDAP extends lib\Access implements \OCP\GroupInterface { if(!empty($this->groupSearch)) { $groupUsers = array_filter($groupUsers, array($this, 'groupMatchesFilter')); } - if($limit = -1) { + if($limit == -1) { $limit = null; } return array_slice($groupUsers, $offset, $limit); @@ -187,7 +187,7 @@ class GROUP_LDAP extends lib\Access implements \OCP\GroupInterface { if(!empty($this->groupSearch)) { $groupUsers = array_filter($groupUsers, array($this, 'groupMatchesFilter')); } - if($limit = -1) { + if($limit == -1) { $limit = null; } return array_slice($groupUsers, $offset, $limit); diff --git a/apps/user_ldap/l10n/da.php b/apps/user_ldap/l10n/da.php index f01c7b7110..f0589b33a9 100644 --- a/apps/user_ldap/l10n/da.php +++ b/apps/user_ldap/l10n/da.php @@ -1,5 +1,6 @@ "Host", +"You can omit the protocol, except you require SSL. Then start with ldaps://" => "Du kan udelade protokollen, medmindre du skal bruge SSL. Start i så fald med ldaps://", "Base DN" => "Base DN", "Password" => "Kodeord", "Port" => "Port", diff --git a/apps/user_ldap/l10n/de.php b/apps/user_ldap/l10n/de.php index 2c178d0b4f..df67671179 100644 --- a/apps/user_ldap/l10n/de.php +++ b/apps/user_ldap/l10n/de.php @@ -24,7 +24,7 @@ "Do not use it for SSL connections, it will fail." => "Verwenden Sie es nicht für SSL-Verbindungen, es wird fehlschlagen.", "Case insensitve LDAP server (Windows)" => "LDAP-Server (Windows: Groß- und Kleinschreibung bleibt unbeachtet)", "Turn off SSL certificate validation." => "Schalte die SSL-Zertifikatsprüfung aus.", -"If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Falls die Verbindung es erfordert, wird das SSL-Zertifikat des LDAP-Server importiert werden.", +"If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Falls die Verbindung es erfordert, muss das SSL-Zertifikat des LDAP-Server importiert werden.", "Not recommended, use for testing only." => "Nicht empfohlen, nur zu Testzwecken.", "User Display Name Field" => "Feld für den Anzeigenamen des Benutzers", "The LDAP attribute to use to generate the user`s ownCloud name." => "Das LDAP-Attribut für die Generierung des Benutzernamens in ownCloud. ", diff --git a/apps/user_ldap/l10n/el.php b/apps/user_ldap/l10n/el.php index 1bb72f163a..4ed7ab1f08 100644 --- a/apps/user_ldap/l10n/el.php +++ b/apps/user_ldap/l10n/el.php @@ -10,6 +10,7 @@ "Base Group Tree" => "Base Group Tree", "Group-Member association" => "Group-Member association", "Use TLS" => "Χρήση TLS", +"Not recommended, use for testing only." => "Δεν προτείνεται, χρήση μόνο για δοκιμές.", "User Display Name Field" => "User Display Name Field", "Group Display Name Field" => "Group Display Name Field", "in bytes" => "σε bytes", diff --git a/apps/user_ldap/l10n/es_AR.php b/apps/user_ldap/l10n/es_AR.php new file mode 100644 index 0000000000..6bd452e9d9 --- /dev/null +++ b/apps/user_ldap/l10n/es_AR.php @@ -0,0 +1,37 @@ + "Servidor", +"You can omit the protocol, except you require SSL. Then start with ldaps://" => "Podés omitir el protocolo, excepto si SSL es requerido. En ese caso, empezá con ldaps://", +"Base DN" => "DN base", +"You can specify Base DN for users and groups in the Advanced tab" => "Podés especificar el DN base para usuarios y grupos en la pestaña \"Avanzado\"", +"User DN" => "DN usuario", +"The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." => "El DN del usuario cliente con el que se hará la asociación, p.ej. uid=agente,dc=ejemplo,dc=com. Para acceso anónimo, dejá DN y contraseña vacíos.", +"Password" => "Contraseña", +"For anonymous access, leave DN and Password empty." => "Para acceso anónimo, dejá DN y contraseña vacíos.", +"User Login Filter" => "Filtro de inicio de sesión de usuario", +"Defines the filter to apply, when login is attempted. %%uid replaces the username in the login action." => "Define el filtro a aplicar cuando se ha realizado un login. %%uid remplazará el nombre de usuario en el proceso de inicio de sesión.", +"use %%uid placeholder, e.g. \"uid=%%uid\"" => "usar %%uid como plantilla, p. ej.: \"uid=%%uid\"", +"User List Filter" => "Lista de filtros de usuario", +"Defines the filter to apply, when retrieving users." => "Define el filtro a aplicar, cuando se obtienen usuarios.", +"without any placeholder, e.g. \"objectClass=person\"." => "Sin plantilla, p. ej.: \"objectClass=person\".", +"Group Filter" => "Filtro de grupo", +"Defines the filter to apply, when retrieving groups." => "Define el filtro a aplicar cuando se obtienen grupos.", +"without any placeholder, e.g. \"objectClass=posixGroup\"." => "Sin ninguna plantilla, p. ej.: \"objectClass=posixGroup\".", +"Port" => "Puerto", +"Base User Tree" => "Árbol base de usuario", +"Base Group Tree" => "Árbol base de grupo", +"Group-Member association" => "Asociación Grupo-Miembro", +"Use TLS" => "Usar TLS", +"Do not use it for SSL connections, it will fail." => "No usarlo para SSL, dará error.", +"Case insensitve LDAP server (Windows)" => "Servidor de LDAP sensible a mayúsculas/minúsculas (Windows)", +"Turn off SSL certificate validation." => "Desactivar la validación por certificado SSL.", +"If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Si la conexión sólo funciona con esta opción, importá el certificado SSL del servidor LDAP en tu servidor ownCloud.", +"Not recommended, use for testing only." => "No recomendado, sólo para pruebas.", +"User Display Name Field" => "Campo de nombre de usuario a mostrar", +"The LDAP attribute to use to generate the user`s ownCloud name." => "El atributo LDAP a usar para generar el nombre de usuario de ownCloud.", +"Group Display Name Field" => "Campo de nombre de grupo a mostrar", +"The LDAP attribute to use to generate the groups`s ownCloud name." => "El atributo LDAP a usar para generar el nombre de los grupos de ownCloud.", +"in bytes" => "en bytes", +"in seconds. A change empties the cache." => "en segundos. Cambiarlo vacía la cache.", +"Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Vacío para el nombre de usuario (por defecto). En otro caso, especificá un atributo LDAP/AD.", +"Help" => "Ayuda" +); diff --git a/apps/user_ldap/l10n/pt_BR.php b/apps/user_ldap/l10n/pt_BR.php new file mode 100644 index 0000000000..18eed6d014 --- /dev/null +++ b/apps/user_ldap/l10n/pt_BR.php @@ -0,0 +1,37 @@ + "Host", +"You can omit the protocol, except you require SSL. Then start with ldaps://" => "Você pode omitir o protocolo, exceto quando requerer SSL. Então inicie com ldaps://", +"Base DN" => "DN Base", +"You can specify Base DN for users and groups in the Advanced tab" => "Você pode especificar DN Base para usuários e grupos na guia Avançada", +"User DN" => "DN Usuário", +"The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." => "O DN do cliente usuário com qual a ligação deverá ser feita, ex. uid=agent,dc=example,dc=com. Para acesso anônimo, deixe DN e Senha vazios.", +"Password" => "Senha", +"For anonymous access, leave DN and Password empty." => "Para acesso anônimo, deixe DN e Senha vazios.", +"User Login Filter" => "Filtro de Login de Usuário", +"Defines the filter to apply, when login is attempted. %%uid replaces the username in the login action." => "Define o filtro pra aplicar ao efetuar uma tentativa de login. %%uuid substitui o nome de usuário na ação de login.", +"use %%uid placeholder, e.g. \"uid=%%uid\"" => "use %%uid placeholder, ex. \"uid=%%uid\"", +"User List Filter" => "Filtro de Lista de Usuário", +"Defines the filter to apply, when retrieving users." => "Define filtro a aplicar ao obter usuários.", +"without any placeholder, e.g. \"objectClass=person\"." => "sem nenhum espaço reservado, ex. \"objectClass=person\".", +"Group Filter" => "Filtro de Grupo", +"Defines the filter to apply, when retrieving groups." => "Define o filtro a aplicar ao obter grupos.", +"without any placeholder, e.g. \"objectClass=posixGroup\"." => "sem nenhum espaço reservado, ex. \"objectClass=posixGroup\"", +"Port" => "Porta", +"Base User Tree" => "Árvore de Usuário Base", +"Base Group Tree" => "Árvore de Grupo Base", +"Group-Member association" => "Associação Grupo-Membro", +"Use TLS" => "Usar TLS", +"Do not use it for SSL connections, it will fail." => "Não use-o para conexões SSL, pois falhará.", +"Case insensitve LDAP server (Windows)" => "Servidor LDAP sensível à caixa alta (Windows)", +"Turn off SSL certificate validation." => "Desligar validação de certificado SSL.", +"If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Se a conexão só funciona com essa opção, importe o certificado SSL do servidor LDAP no seu servidor ownCloud.", +"Not recommended, use for testing only." => "Não recomendado, use somente para testes.", +"User Display Name Field" => "Campo Nome de Exibição de Usuário", +"The LDAP attribute to use to generate the user`s ownCloud name." => "O atributo LDAP para usar para gerar nome ownCloud do usuário.", +"Group Display Name Field" => "Campo Nome de Exibição de Grupo", +"The LDAP attribute to use to generate the groups`s ownCloud name." => "O atributo LDAP para usar para gerar nome ownCloud do grupo.", +"in bytes" => "em bytes", +"in seconds. A change empties the cache." => "em segundos. Uma mudança esvaziará o cache.", +"Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Deixe vazio para nome de usuário (padrão). Caso contrário, especifique um atributo LDAP/AD.", +"Help" => "Ajuda" +); diff --git a/apps/user_ldap/l10n/ru_RU.php b/apps/user_ldap/l10n/ru_RU.php new file mode 100644 index 0000000000..68f385358d --- /dev/null +++ b/apps/user_ldap/l10n/ru_RU.php @@ -0,0 +1,22 @@ + "Хост", +"You can omit the protocol, except you require SSL. Then start with ldaps://" => "Вы можете пропустить протокол, если Вам не требуется SSL. Затем начните с ldaps://", +"Base DN" => "База DN", +"User DN" => "DN пользователя", +"Password" => "Пароль", +"For anonymous access, leave DN and Password empty." => "Для анонимного доступа оставьте поля DN и пароль пустыми.", +"use %%uid placeholder, e.g. \"uid=%%uid\"" => "используйте %%uid заполнитель, например, \"uid=%%uid\"", +"without any placeholder, e.g. \"objectClass=person\"." => "без каких-либо заполнителей, например, \"objectClass=person\".", +"Group Filter" => "Групповой фильтр", +"without any placeholder, e.g. \"objectClass=posixGroup\"." => "без каких-либо заполнителей, например, \"objectClass=posixGroup\".", +"Port" => "Порт", +"Use TLS" => "Использовать TLS", +"Do not use it for SSL connections, it will fail." => "Не используйте это SSL-соединений, это не будет выполнено.", +"Turn off SSL certificate validation." => "Выключить проверку сертификата SSL.", +"Not recommended, use for testing only." => "Не рекомендовано, используйте только для тестирования.", +"The LDAP attribute to use to generate the user`s ownCloud name." => "Атрибут LDAP, используемый для создания имени пользователя в ownCloud.", +"The LDAP attribute to use to generate the groups`s ownCloud name." => "Атрибут LDAP, используемый для создания группового имени в ownCloud.", +"in bytes" => "в байтах", +"Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Оставьте пустым под имя пользователя (по умолчанию). В противном случае задайте LDAP/AD атрибут.", +"Help" => "Помощь" +); diff --git a/apps/user_ldap/l10n/zh_CN.GB2312.php b/apps/user_ldap/l10n/zh_CN.GB2312.php new file mode 100644 index 0000000000..8b906aea5c --- /dev/null +++ b/apps/user_ldap/l10n/zh_CN.GB2312.php @@ -0,0 +1,37 @@ + "主机", +"You can omit the protocol, except you require SSL. Then start with ldaps://" => "您可以忽略协议,除非您需要 SSL。然后用 ldaps:// 开头", +"Base DN" => "基本判别名", +"You can specify Base DN for users and groups in the Advanced tab" => "您可以在高级选项卡中为用户和群组指定基本判别名", +"User DN" => "用户判别名", +"The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." => "客户机用户的判别名,将用于绑定,例如 uid=agent, dc=example, dc=com。匿名访问请留空判别名和密码。", +"Password" => "密码", +"For anonymous access, leave DN and Password empty." => "匿名访问请留空判别名和密码。", +"User Login Filter" => "用户登录过滤器", +"Defines the filter to apply, when login is attempted. %%uid replaces the username in the login action." => "定义尝试登录时要应用的过滤器。用 %%uid 替换登录操作中使用的用户名。", +"use %%uid placeholder, e.g. \"uid=%%uid\"" => "使用 %%uid 占位符,例如 \"uid=%%uid\"", +"User List Filter" => "用户列表过滤器", +"Defines the filter to apply, when retrieving users." => "定义撷取用户时要应用的过滤器。", +"without any placeholder, e.g. \"objectClass=person\"." => "不能使用占位符,例如 \"objectClass=person\"。", +"Group Filter" => "群组过滤器", +"Defines the filter to apply, when retrieving groups." => "定义撷取群组时要应用的过滤器", +"without any placeholder, e.g. \"objectClass=posixGroup\"." => "不能使用占位符,例如 \"objectClass=posixGroup\"。", +"Port" => "端口", +"Base User Tree" => "基本用户树", +"Base Group Tree" => "基本群组树", +"Group-Member association" => "群组-成员组合", +"Use TLS" => "使用 TLS", +"Do not use it for SSL connections, it will fail." => "不要使用它进行 SSL 连接,会失败的。", +"Case insensitve LDAP server (Windows)" => "大小写不敏感的 LDAP 服务器 (Windows)", +"Turn off SSL certificate validation." => "关闭 SSL 证书校验。", +"If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "如果只有使用此选项才能连接,请导入 LDAP 服务器的 SSL 证书到您的 ownCloud 服务器。", +"Not recommended, use for testing only." => "不推荐,仅供测试", +"User Display Name Field" => "用户显示名称字段", +"The LDAP attribute to use to generate the user`s ownCloud name." => "用于生成用户的 ownCloud 名称的 LDAP 属性。", +"Group Display Name Field" => "群组显示名称字段", +"The LDAP attribute to use to generate the groups`s ownCloud name." => "用于生成群组的 ownCloud 名称的 LDAP 属性。", +"in bytes" => "以字节计", +"in seconds. A change empties the cache." => "以秒计。修改会清空缓存。", +"Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "用户名请留空 (默认)。否则,请指定一个 LDAP/AD 属性。", +"Help" => "帮助" +); diff --git a/apps/user_ldap/l10n/zh_CN.php b/apps/user_ldap/l10n/zh_CN.php new file mode 100644 index 0000000000..5f6200db40 --- /dev/null +++ b/apps/user_ldap/l10n/zh_CN.php @@ -0,0 +1,9 @@ + "主机", +"Base DN" => "Base DN", +"You can specify Base DN for users and groups in the Advanced tab" => "您可以在高级选项卡里为用户和组指定Base DN", +"User DN" => "User DN", +"Password" => "密码", +"Port" => "端口", +"Help" => "帮助" +); diff --git a/apps/user_ldap/lib/access.php b/apps/user_ldap/lib/access.php index 089548a69b..d855ae2a16 100644 --- a/apps/user_ldap/lib/access.php +++ b/apps/user_ldap/lib/access.php @@ -206,21 +206,17 @@ abstract class Access { $dn = $this->sanitizeDN($dn); $table = $this->getMapTable($isUser); if($isUser) { + $fncFindMappedName = 'findMappedUser'; $nameAttribute = $this->connection->ldapUserDisplayName; } else { + $fncFindMappedName = 'findMappedGroup'; $nameAttribute = $this->connection->ldapGroupDisplayName; } - $query = \OCP\DB::prepare(' - SELECT `owncloud_name` - FROM `'.$table.'` - WHERE `ldap_dn` = ? - '); - //let's try to retrieve the ownCloud name from the mappings table - $component = $query->execute(array($dn))->fetchOne(); - if($component) { - return $component; + $ocname = $this->$fncFindMappedName($dn); + if($ocname) { + return $ocname; } //second try: get the UUID and check if it is known. Then, update the DN and return the name. @@ -295,25 +291,48 @@ abstract class Access { return $this->ldap2ownCloudNames($ldapGroups, false); } + private function findMappedUser($dn) { + static $query = null; + if(is_null($query)) { + $query = \OCP\DB::prepare(' + SELECT `owncloud_name` + FROM `'.$this->getMapTable(true).'` + WHERE `ldap_dn` = ?' + ); + } + $res = $query->execute(array($dn))->fetchOne(); + if($res) { + return $res; + } + return false; + } + + private function findMappedGroup($dn) { + static $query = null; + if(is_null($query)) { + $query = \OCP\DB::prepare(' + SELECT `owncloud_name` + FROM `'.$this->getMapTable(false).'` + WHERE `ldap_dn` = ?' + ); + } + $res = $query->execute(array($dn))->fetchOne(); + if($res) { + return $res; + } + return false; + } + + private function ldap2ownCloudNames($ldapObjects, $isUsers) { if($isUsers) { - $knownObjects = $this->mappedUsers(); $nameAttribute = $this->connection->ldapUserDisplayName; } else { - $knownObjects = $this->mappedGroups(); $nameAttribute = $this->connection->ldapGroupDisplayName; } $ownCloudNames = array(); foreach($ldapObjects as $ldapObject) { - $key = \OCP\Util::recursiveArraySearch($knownObjects, $ldapObject['dn']); - - //everything is fine when we know the group - if($key !== false) { - $ownCloudNames[] = $knownObjects[$key]['owncloud_name']; - continue; - } - $ocname = $this->dn2ocname($ldapObject['dn'], $ldapObject[$nameAttribute], $isUsers); if($ocname) { $ownCloudNames[] = $ocname; @@ -385,7 +404,7 @@ abstract class Access { $sqlAdjustment = ''; $dbtype = \OCP\Config::getSystemValue('dbtype'); if($dbtype == 'mysql') { - $sqlAdjustment = 'FROM `dual`'; + $sqlAdjustment = 'FROM DUAL'; } $insert = \OCP\DB::prepare(' diff --git a/apps/user_ldap/lib/connection.php b/apps/user_ldap/lib/connection.php index 1922e7ff1f..bf65d9ad91 100644 --- a/apps/user_ldap/lib/connection.php +++ b/apps/user_ldap/lib/connection.php @@ -258,7 +258,7 @@ class Connection { if(empty($this->config['ldapGroupFilter']) && empty($this->config['ldapGroupMemberAssocAttr'])) { \OCP\Util::writeLog('user_ldap', 'No group filter is specified, LDAP group feature will not be used.', \OCP\Util::INFO); } - if(!in_array($this->config['ldapUuidAttribute'], array('auto','entryuuid', 'nsuniqueid', 'objectguid'))) { + if(!in_array($this->config['ldapUuidAttribute'], array('auto','entryuuid', 'nsuniqueid', 'objectguid')) && (!is_null($this->configID))) { \OCP\Config::setAppValue($this->configID, 'ldap_uuid_attribute', 'auto'); \OCP\Util::writeLog('user_ldap', 'Illegal value for the UUID Attribute, reset to autodetect.', \OCP\Util::INFO); } @@ -357,4 +357,4 @@ class Connection { return true; } -} \ No newline at end of file +} diff --git a/apps/user_ldap/lib/jobs.php b/apps/user_ldap/lib/jobs.php index aff519226c..b265a8339e 100644 --- a/apps/user_ldap/lib/jobs.php +++ b/apps/user_ldap/lib/jobs.php @@ -43,7 +43,7 @@ class Jobs { if(empty($actualGroups) && empty($knownGroups)) { \OCP\Util::writeLog('user_ldap', 'bgJ "updateGroups" – groups do not seem to be configured properly, aborting.', \OCP\Util::INFO); - \OCP\setAppValue('user_ldap', 'bgjUpdateGroupsLastRun', time()); + \OCP\Config::setAppValue('user_ldap', 'bgjUpdateGroupsLastRun', time()); return; } diff --git a/apps/user_ldap/user_ldap.php b/apps/user_ldap/user_ldap.php index bacdb8b9ae..53a6512910 100644 --- a/apps/user_ldap/user_ldap.php +++ b/apps/user_ldap/user_ldap.php @@ -111,7 +111,7 @@ class USER_LDAP extends lib\Access implements \OCP\UserInterface { if(!empty($this->userSearch)) { $ldap_users = array_filter($ldap_users, array($this, 'userMatchesFilter')); } - if($limit = -1) { + if($limit == -1) { $limit = null; } return array_slice($ldap_users, $offset, $limit); diff --git a/config/config.sample.php b/config/config.sample.php index c4cb719796..09eb6053c2 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -3,25 +3,25 @@ define("DEBUG", true); $CONFIG = array( -/* Flag to indicate OwnCloud is successfully installed (true = installed) */ +/* Flag to indicate ownCloud is successfully installed (true = installed) */ "installed" => false, /* Type of database, can be sqlite, mysql or pgsql */ "dbtype" => "sqlite", -/* Name of the OwnCloud database */ +/* Name of the ownCloud database */ "dbname" => "owncloud", -/* User to access the OwnCloud database */ +/* User to access the ownCloud database */ "dbuser" => "", -/* Password to access the OwnCloud database */ +/* Password to access the ownCloud database */ "dbpassword" => "", -/* Host running the OwnCloud database */ +/* Host running the ownCloud database */ "dbhost" => "", -/* Prefix for the OwnCloud tables in the database */ +/* Prefix for the ownCloud tables in the database */ "dbtableprefix" => "", /* Define the salt used to hash the user passwords. All your user passwords are lost if you lose this string. */ @@ -30,7 +30,7 @@ $CONFIG = array( /* Force use of HTTPS connection (true = use HTTPS) */ "forcessl" => false, -/* Theme to use for OwnCloud */ +/* Theme to use for ownCloud */ "theme" => "", /* Path to the 3rdparty directory */ @@ -94,7 +94,7 @@ $CONFIG = array( "apps_paths" => array( /* Set an array of path for your apps directories - key 'path' is for the fs path an the key 'url' is for the http path to your + key 'path' is for the fs path and the key 'url' is for the http path to your applications paths. 'writable' indicate if the user can install apps in this folder. You must have at least 1 app folder writable or you must set the parameter : appstoreenabled to false */ @@ -104,5 +104,4 @@ $CONFIG = array( 'writable' => true, ), ), -); - +); \ No newline at end of file diff --git a/core/ajax/requesttoken.php b/core/ajax/requesttoken.php new file mode 100644 index 0000000000..96d5402e62 --- /dev/null +++ b/core/ajax/requesttoken.php @@ -0,0 +1,41 @@ + +* +* This library is free software; you can redistribute it and/or +* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE +* License as published by the Free Software Foundation; either +* version 3 of the license, or any later version. +* +* This library is distributed in the hope that it will be useful, +* but WITHOUT ANY WARRANTY; without even the implied warranty of +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +* GNU AFFERO GENERAL PUBLIC LICENSE for more details. +* +* You should have received a copy of the GNU Affero General Public +* License along with this library. +* If not, see . +* +*/ + +/** + * @file core/ajax/requesttoken.php + * @brief Ajax method to retrieve a fresh request protection token for ajax calls + * @return json: success/error state indicator including a fresh request token + * @author Christian Reiner + */ +require_once '../../lib/base.php'; + +// don't load apps or filesystem for this task +$RUNTIME_NOAPPS = TRUE; +$RUNTIME_NOSETUPFS = TRUE; + +// Sanity checks +// using OCP\JSON::callCheck() below protects the token refreshing itself. +//OCP\JSON::callCheck ( ); +OCP\JSON::checkLoggedIn ( ); +// hand out a fresh token +OCP\JSON::success ( array ( 'token' => OCP\Util::callRegister() ) ); +?> diff --git a/core/ajax/share.php b/core/ajax/share.php index b615cfd354..446d4cc32e 100644 --- a/core/ajax/share.php +++ b/core/ajax/share.php @@ -21,6 +21,8 @@ require_once '../../lib/base.php'; OC_JSON::checkLoggedIn(); +OCP\JSON::callCheck(); + if (isset($_POST['action']) && isset($_POST['itemType']) && isset($_POST['itemSource'])) { switch ($_POST['action']) { case 'share': diff --git a/core/css/share.css b/core/css/share.css index cccc3585a4..c2fa051b12 100644 --- a/core/css/share.css +++ b/core/css/share.css @@ -17,4 +17,6 @@ a.unshare { float:right; display:inline; padding:.3em 0 0 .3em !important; opaci a.unshare:hover { opacity:1; } #link { border-top:1px solid #ddd; padding-top:0.5em; } #dropdown input[type="text"], #dropdown input[type="password"] { width:90%; } -#linkText, #linkPass { display:none; } +#linkText, #linkPass, #expiration { display:none; } +#link #showPassword img { width:12px; padding-left: 0.3em; } +#link label, #expiration label{ padding-left: 0.5em; } \ No newline at end of file diff --git a/core/css/styles.css b/core/css/styles.css index 6bf3757df2..7d855556c8 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -143,6 +143,10 @@ a.bookmarklet { background-color: #ddd; border:1px solid #ccc; padding: 5px;padd .exception{color: #000000;} .exception textarea{width:95%;height: 200px;background:#ffe;border:0;} +.ui-icon-circle-triangle-e{ background-image: url('../img/actions/play-next.svg'); } +.ui-icon-circle-triangle-w{ background-image: url('../img/actions/play-previous.svg'); } +.ui-datepicker-prev,.ui-datepicker-next{ border: 1px solid #ddd; background: #ffffff; } + /* ---- DIALOGS ---- */ #dirtree {width: 100%;} #filelist {height: 270px; overflow:scroll; background-color: white; width: 100%;} diff --git a/core/js/eventsource.js b/core/js/eventsource.js index e3ad7e3a67..45c63715a7 100644 --- a/core/js/eventsource.js +++ b/core/js/eventsource.js @@ -40,7 +40,7 @@ OC.EventSource=function(src,data){ dataStr+=name+'='+encodeURIComponent(data[name])+'&'; } } - dataStr+='requesttoken='+OC.EventSource.requesttoken; + dataStr+='requesttoken='+OC.Request.Token; if(!this.useFallBack && typeof EventSource !='undefined'){ this.source=new EventSource(src+'?'+dataStr); this.source.onmessage=function(e){ diff --git a/core/js/js.js b/core/js/js.js index e3c3716e05..657dd6d6f8 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -4,21 +4,20 @@ * @param text the string to translate * @return string */ -var OC; function t(app,text){ - if( !( app in t.cache )){ + if( !( t.cache[app] )){ $.ajax(OC.filePath('core','ajax','translations.php'),{ async:false,//todo a proper sollution for this without sync ajax calls data:{'app': app}, type:'POST', success:function(jsondata){ t.cache[app] = jsondata.data; - }, + } }); // Bad answer ... - if( !( app in t.cache )){ + if( !( t.cache[app] )){ t.cache[app] = []; } } @@ -38,10 +37,10 @@ t.cache={}; * @return string */ function fileDownloadPath(dir, file) { - return OC.filePath('files', 'ajax', 'download.php')+encodeURIComponent('?files='+encodeURIComponent(file)+'&dir='+encodeURIComponent(dir)); + return OC.filePath('files', 'ajax', 'download.php')+'&files='+encodeURIComponent(file)+'&dir='+encodeURIComponent(dir); } -OC={ +var OC={ PERMISSION_CREATE:4, PERMISSION_READ:1, PERMISSION_UPDATE:2, @@ -68,9 +67,9 @@ OC={ * @return string */ filePath:function(app,type,file){ - var isCore=OC.coreApps.indexOf(app)!=-1; - var link=OC.webroot; - if((file.substring(file.length-3) == 'php' || file.substring(file.length-3) == 'css') && !isCore){ + var isCore=OC.coreApps.indexOf(app)!==-1, + link=OC.webroot; + if((file.substring(file.length-3) === 'php' || file.substring(file.length-3) === 'css') && !isCore){ link+='/?app=' + app; if (file != 'index.php') { link+='&getfile='; @@ -79,20 +78,21 @@ OC={ } link+= file; } - }else if(file.substring(file.length-3) != 'php' && !isCore){ + }else if(file.substring(file.length-3) !== 'php' && !isCore){ link=OC.appswebroots[app]; if(type){ link+= '/'+type+'/'; } - if(link.substring(link.length-1) != '/') + if(link.substring(link.length-1) !== '/'){ link+='/'; + } link+=file; }else{ link+='/'; if(!isCore){ link+='apps/'; } - if (app != '') { + if (app !== '') { app+='/'; link+=app; } @@ -126,12 +126,12 @@ OC={ * if the script is already loaded, the event handeler will be called directly */ addScript:function(app,script,ready){ - var path=OC.filePath(app,'js',script+'.js'); + var deferred, path=OC.filePath(app,'js',script+'.js'); if(!OC.addScript.loaded[path]){ if(ready){ - var deferred=$.getScript(path,ready); + deferred=$.getScript(path,ready); }else{ - var deferred=$.getScript(path); + deferred=$.getScript(path); } OC.addScript.loaded[path]=deferred; }else{ @@ -148,9 +148,9 @@ OC={ */ addStyle:function(app,style){ var path=OC.filePath(app,'css',style+'.css'); - if(OC.addStyle.loaded.indexOf(path)==-1){ + if(OC.addStyle.loaded.indexOf(path)===-1){ OC.addStyle.loaded.push(path); - var style=$(''); + style=$(''); $('head').append(style); } }, @@ -158,7 +158,7 @@ OC={ return path.replace(/\\/g,'/').replace( /.*\//, '' ); }, dirname: function(path) { - return path.replace(/\\/g,'/').replace(/\/[^\/]*$/, '');; + return path.replace(/\\/g,'/').replace(/\/[^\/]*$/, ''); }, /** * do a search query and display the results @@ -175,10 +175,9 @@ OC={ }, dialogs:OCdialogs, mtime2date:function(mtime) { - mtime = parseInt(mtime); + mtime = parseInt(mtime,10); var date = new Date(1000*mtime); - var ret = date.getDate()+'.'+(date.getMonth()+1)+'.'+date.getFullYear()+', '+date.getHours()+':'+date.getMinutes(); - return ret; + return date.getDate()+'.'+(date.getMonth()+1)+'.'+date.getFullYear()+', '+date.getHours()+':'+date.getMinutes(); }, /** * Opens a popup with the setting for an app. @@ -285,33 +284,33 @@ OC.Breadcrumb={ OC.Breadcrumb.container.find('div.crumb').remove(); OC.Breadcrumb.crumbs=[]; } -} +}; -if(typeof localStorage !='undefined' && localStorage != null){ - //user and instance awere localstorage +if(typeof localStorage !=='undefined' && localStorage !== null){ + //user and instance aware localstorage OC.localStorage={ namespace:'oc_'+OC.currentUser+'_'+OC.webroot+'_', hasItem:function(name){ - return OC.localStorage.getItem(name)!=null; + return OC.localStorage.getItem(name)!==null; }, setItem:function(name,item){ return localStorage.setItem(OC.localStorage.namespace+name,JSON.stringify(item)); }, getItem:function(name){ - if(localStorage.getItem(OC.localStorage.namespace+name)==null){return null;} + if(localStorage.getItem(OC.localStorage.namespace+name)===null){return null;} return JSON.parse(localStorage.getItem(OC.localStorage.namespace+name)); } }; }else{ //dummy localstorage OC.localStorage={ - hasItem:function(name){ + hasItem:function(){ return false; }, - setItem:function(name,item){ + setItem:function(){ return false; }, - getItem:function(name){ + getItem:function(){ return null; } }; @@ -323,8 +322,9 @@ if(typeof localStorage !='undefined' && localStorage != null){ if (!Array.prototype.filter) { Array.prototype.filter = function(fun /*, thisp*/) { var len = this.length >>> 0; - if (typeof fun != "function") + if (typeof fun !== "function"){ throw new TypeError(); + } var res = []; var thisp = arguments[1]; @@ -347,17 +347,16 @@ if (!Array.prototype.indexOf){ var len = this.length; var from = Number(arguments[1]) || 0; - from = (from < 0) - ? Math.ceil(from) - : Math.floor(from); - if (from < 0) + from = (from < 0) ? Math.ceil(from) : Math.floor(from); + if (from < 0){ from += len; + } for (; from < len; from++) { - if (from in this && - this[from] === elt) + if (from in this && this[from] === elt){ return from; + } } return -1; }; @@ -378,16 +377,16 @@ SVGSupport.checkMimeType=function(){ $.each(headerParts,function(i,text){ if(text){ var parts=text.split(':',2); - if(parts.length==2){ + if(parts.length===2){ var value=parts[1].trim(); - if(value[0]=='"'){ + if(value[0]==='"'){ value=value.substr(1,value.length-2); } headers[parts[0]]=value; } } }); - if(headers["Content-Type"]!='image/svg+xml'){ + if(headers["Content-Type"]!=='image/svg+xml'){ replaceSVG(); SVGSupport.checkMimeType.correct=false; } @@ -444,27 +443,29 @@ function object(o) { * Fills height of window. (more precise than height: 100%;) */ function fillHeight(selector) { - if (selector.length == 0) { + if (selector.length === 0) { return; } var height = parseFloat($(window).height())-selector.offset().top; selector.css('height', height + 'px'); - if(selector.outerHeight() > selector.height()) + if(selector.outerHeight() > selector.height()){ selector.css('height', height-(selector.outerHeight()-selector.height()) + 'px'); + } } /** * Fills height and width of window. (more precise than height: 100%; or width: 100%;) */ function fillWindow(selector) { - if (selector.length == 0) { + if (selector.length === 0) { return; } fillHeight(selector); var width = parseFloat($(window).width())-selector.offset().left; selector.css('width', width + 'px'); - if(selector.outerWidth() > selector.width()) + if(selector.outerWidth() > selector.width()){ selector.css('width', width-(selector.outerWidth()-selector.width()) + 'px'); + } } $(document).ready(function(){ @@ -485,26 +486,26 @@ $(document).ready(function(){ event.preventDefault(); }); $('#searchbox').keyup(function(event){ - if(event.keyCode==13){//enter + if(event.keyCode===13){//enter if(OC.search.currentResult>-1){ var result=$('#searchresults tr.result a')[OC.search.currentResult]; window.location = $(result).attr('href'); } - }else if(event.keyCode==38){//up + }else if(event.keyCode===38){//up if(OC.search.currentResult>0){ OC.search.currentResult--; OC.search.renderCurrent(); } - }else if(event.keyCode==40){//down + }else if(event.keyCode===40){//down if(OC.search.lastResults.length>OC.search.currentResult+1){ OC.search.currentResult++; OC.search.renderCurrent(); } - }else if(event.keyCode==27){//esc + }else if(event.keyCode===27){//esc OC.search.hide(); }else{ var query=$('#searchbox').val(); - if(OC.search.lastQuery!=query){ + if(OC.search.lastQuery!==query){ OC.search.lastQuery=query; OC.search.currentResult=-1; if(query.length>2){ @@ -524,10 +525,10 @@ $(document).ready(function(){ //use infield labels $("label.infield").inFieldLabels(); - checkShowCredentials = function() { + var checkShowCredentials = function() { var empty = false; $('input#user, input#password').each(function() { - if ($(this).val() == '') { + if ($(this).val() === '') { empty = true; } }); @@ -540,14 +541,14 @@ $(document).ready(function(){ $('#remember_login').show(); $('#remember_login+label').fadeIn(); } - } + }; // hide log in button etc. when form fields not filled // commented out due to some browsers having issues with it // checkShowCredentials(); // $('input#user, input#password').keyup(checkShowCredentials); $('#settings #expand').keydown(function(event) { - if (event.which == 13 || event.which == 32) { + if (event.which === 13 || event.which === 32) { $('#expand').click() } }); @@ -558,8 +559,8 @@ $(document).ready(function(){ $('#settings #expanddiv').click(function(event){ event.stopPropagation(); }); - $(window).click(function(){//hide the settings menu when clicking oustide it - if($('body').attr("id")=="body-user"){ + $(window).click(function(){//hide the settings menu when clicking outside it + if($('body').attr("id")==="body-user"){ $('#settings #expanddiv').slideUp(); } }); @@ -586,13 +587,15 @@ if (!Array.prototype.map){ Array.prototype.map = function(fun /*, thisp */){ "use strict"; - if (this === void 0 || this === null) + if (this === void 0 || this === null){ throw new TypeError(); + } var t = Object(this); var len = t.length >>> 0; - if (typeof fun !== "function") + if (typeof fun !== "function"){ throw new TypeError(); + } var res = new Array(len); var thisp = arguments[1]; @@ -614,13 +617,13 @@ $.fn.filterAttr = function(attr_name, attr_value) { }; function humanFileSize(size) { - humanList = ['B', 'kB', 'MB', 'GB', 'TB']; + var humanList = ['B', 'kB', 'MB', 'GB', 'TB']; // Calculate Log with base 1024: size = 1024 ** order - order = Math.floor(Math.log(size) / Math.log(1024)); + var order = Math.floor(Math.log(size) / Math.log(1024)); // Stay in range of the byte sizes that are defined order = Math.min(humanList.length - 1, order); - readableFormat = humanList[order]; - relativeSize = (size / Math.pow(1024, order)).toFixed(1); + var readableFormat = humanList[order]; + var relativeSize = (size / Math.pow(1024, order)).toFixed(1); if(relativeSize.substr(relativeSize.length-2,2)=='.0'){ relativeSize=relativeSize.substr(0,relativeSize.length-2); } @@ -628,7 +631,7 @@ function humanFileSize(size) { } function simpleFileSize(bytes) { - mbytes = Math.round(bytes/(1024*1024/10))/10; + var mbytes = Math.round(bytes/(1024*1024/10))/10; if(bytes == 0) { return '0'; } else if(mbytes < 0.1) { return '< 0.1'; } else if(mbytes > 1000) { return '> 1000'; } @@ -660,7 +663,7 @@ OC.get=function(name) { } } return context[tail]; -} +}; /** * set a variable by name @@ -679,4 +682,4 @@ OC.set=function(name, value) { context = context[namespaces[i]]; } context[tail]=value; -} +}; diff --git a/core/js/oc-dialogs.js b/core/js/oc-dialogs.js index 4dd3c89c14..2467af6112 100644 --- a/core/js/oc-dialogs.js +++ b/core/js/oc-dialogs.js @@ -106,7 +106,7 @@ var OCdialogs = { var c_name = 'oc-dialog-'+OCdialogs.dialogs_counter+'-content'; var c_id = '#'+c_name; var d = '
'; - if (!modal) modal = false; // Huh..? + if (!modal) modal = false; // Huh.. if (!multiselect) multiselect = false; $('body').append(d); $(c_id + ' #dirtree').focus(function() { @@ -120,7 +120,7 @@ var OCdialogs = { }).data('multiselect', multiselect).data('mimetype',mimetype_filter); // build buttons var b = [{ - text: t('dialogs', 'Choose'), + text: t('core', 'Choose'), click: function(){ if (callback != undefined) { var p; @@ -140,7 +140,7 @@ var OCdialogs = { } }, { - text: t('dialogs', 'Cancel'), + text: t('core', 'Cancel'), click: function(){$(c_id).dialog('close'); }} ]; $(c_id).dialog({width: ((4*$('body').width())/9), height: 400, modal: modal, buttons: b}); @@ -156,11 +156,11 @@ var OCdialogs = { var b = []; switch (buttons) { case OCdialogs.YES_NO_BUTTONS: - b[1] = {text: t('dialogs', 'No'), click: function(){ if (callback != undefined) callback(false); $(c_id).dialog('close'); }}; - b[0] = {text: t('dialogs', 'Yes'), click: function(){ if (callback != undefined) callback(true); $(c_id).dialog('close');}}; + b[1] = {text: t('core', 'No'), click: function(){ if (callback != undefined) callback(false); $(c_id).dialog('close'); }}; + b[0] = {text: t('core', 'Yes'), click: function(){ if (callback != undefined) callback(true); $(c_id).dialog('close');}}; break; case OCdialogs.OK_CANCEL_BUTTONS: - b[1] = {text: t('dialogs', 'Cancel'), click: function(){$(c_id).dialog('close'); }}; + b[1] = {text: t('core', 'Cancel'), click: function(){$(c_id).dialog('close'); }}; case OCdialogs.OK_BUTTON: // fallthrough var f; switch(dialog_type) { @@ -174,7 +174,7 @@ var OCdialogs = { f = function(){OCdialogs.form_ok_handler(callback, c_id)}; break; } - b[0] = {text: t('dialogs', 'Ok'), click: f}; + b[0] = {text: t('core', 'Ok'), click: f}; break; } var possible_height = ($('tr', d).size()+1)*30; diff --git a/core/js/requesttoken.js b/core/js/requesttoken.js new file mode 100644 index 0000000000..0d78cd7e93 --- /dev/null +++ b/core/js/requesttoken.js @@ -0,0 +1,55 @@ +/** + * ownCloud + * + * @file core/js/requesttoken.js + * @brief Routine to refresh the Request protection request token periodically + * @author Christian Reiner (arkascha) + * @copyright 2011-2012 Christian Reiner + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE + * License as published by the Free Software Foundation; either + * version 3 of the license, or any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU AFFERO GENERAL PUBLIC LICENSE for more details. + * + * You should have received a copy of the GNU Affero General Public + * License along with this library. + * If not, see . + * + */ + +OC.Request = { + // the request token + Token: {}, + // the lifespan span (in secs) + Lifespan: {}, + // method to refresh the local request token periodically + Refresh: function(){ + // just a client side console log to preserve efficiency + console.log("refreshing request token (lifebeat)"); + var dfd=new $.Deferred(); + $.ajax({ + type: 'POST', + url: OC.filePath('core','ajax','requesttoken.php'), + cache: false, + data: { }, + dataType: 'json' + }).done(function(response){ + // store refreshed token inside this class + OC.Request.Token=response.token; + dfd.resolve(); + }).fail(dfd.reject); + return dfd; + } +} +// accept requesttoken and lifespan into the OC namespace +OC.Request.Token = oc_requesttoken; +OC.Request.Lifespan = oc_requestlifespan; +// refresh the request token periodically shortly before it becomes invalid on the server side +setInterval(OC.Request.Refresh,Math.floor(1000*OC.Request.Lifespan*0.93)), // 93% of lifespan value, close to when the token expires +// early bind token as additional ajax argument for every single request +$(document).bind('ajaxSend', function(elm, xhr, s){xhr.setRequestHeader('requesttoken', OC.Request.Token);}); diff --git a/core/js/share.js b/core/js/share.js index 8a00587b77..6c26fed18b 100644 --- a/core/js/share.js +++ b/core/js/share.js @@ -35,21 +35,29 @@ OC.Share={ } } var shares = false; + var link = false; + var image = OC.imagePath('core', 'actions/share'); $.each(OC.Share.itemShares, function(index) { - if (OC.Share.itemShares[index].length > 0) { - shares = true; - return; + if (OC.Share.itemShares[index]) { + if (index == OC.Share.SHARE_TYPE_LINK) { + if (OC.Share.itemShares[index] == true) { + shares = true; + image = OC.imagePath('core', 'actions/public'); + link = true; + return; + } + } else if (OC.Share.itemShares[index].length > 0) { + shares = true; + image = OC.imagePath('core', 'actions/shared'); + } } }); + if (itemType != 'file' && itemType != 'folder') { + $('a.share[data-item="'+itemSource+'"]').css('background', 'url('+image+') no-repeat center'); + } if (shares) { - $('a.share[data-item="'+itemSource+'"]').css('background', 'url('+OC.imagePath('core', 'actions/shared')+') no-repeat center'); - if (typeof OC.Share.statuses[itemSource] === 'undefined') { - OC.Share.statuses[itemSource] = false; - } + OC.Share.statuses[itemSource] = link; } else { - if (itemType != 'file' && itemType != 'folder') { - $('a.share[data-item="'+itemSource+'"]').css('background', 'url('+OC.imagePath('core', 'actions/share')+') no-repeat center'); - } delete OC.Share.statuses[itemSource]; } }, @@ -71,7 +79,7 @@ OC.Share={ var item = itemSource; } if (typeof OC.Share.statuses[item] === 'undefined') { - // NOTE: Check doesn't always work and misses some shares, fix later + // NOTE: Check does not always work and misses some shares, fix later checkShares = true; } else { checkShares = true; @@ -92,7 +100,7 @@ OC.Share={ callback(result.data); } } else { - OC.dialogs.alert(result.data.message, 'Error while sharing'); + OC.dialogs.alert(result.data.message, t('core', 'Error while sharing')); } }); }, @@ -103,14 +111,14 @@ OC.Share={ callback(); } } else { - OC.dialogs.alert('Error', 'Error while unsharing'); + OC.dialogs.alert(t('core', 'Error'), t('core', 'Error while unsharing')); } }); }, setPermissions:function(itemType, itemSource, shareType, shareWith, permissions) { $.post(OC.filePath('core', 'ajax', 'share.php'), { action: 'setPermissions', itemType: itemType, itemSource: itemSource, shareType: shareType, shareWith: shareWith, permissions: permissions }, function(result) { if (!result || result.status !== 'success') { - OC.dialogs.alert('Error', 'Error while changing permissions'); + OC.dialogs.alert(t('core', 'Error'), t('core', 'Error while changing permissions')); } }); }, @@ -119,30 +127,30 @@ OC.Share={ var html = ''; $(html).appendTo(appendTo); } @@ -235,7 +247,7 @@ OC.Share={ if (collectionList.length > 0) { $(collectionList).append(', '+shareWith); } else { - var html = '
  • Shared in '+item+' with '+shareWith+'
  • '; + var html = '
  • '+t('core', 'Shared in')+' '+item+' '+t('core', 'with')+' '+shareWith+'
  • '; $('#shareWithList').prepend(html); } } else { @@ -256,6 +268,7 @@ OC.Share={ shareChecked = 'checked="checked"'; } var html = '
  • '; + html += ''; html += shareWith; if (possiblePermissions & OC.PERMISSION_CREATE || possiblePermissions & OC.PERMISSION_UPDATE || possiblePermissions & OC.PERMISSION_DELETE) { if (editChecked == '') { @@ -263,29 +276,30 @@ OC.Share={ } else { html += ''; + html += ''+t('core', 'can edit')+''; } - html += ''; - html += ''; + html += ''; html += ''; html += '
  • '; $(html).appendTo('#shareWithList'); + $('#expiration').show(); } }, showLink:function(itemSource, password) { + OC.Share.itemShares[OC.Share.SHARE_TYPE_LINK] = true; $('#linkCheckbox').attr('checked', true); var filename = $('tr').filterAttr('data-id', String(itemSource)).data('file'); if ($('#dir').val() == '/') { @@ -300,8 +314,9 @@ OC.Share={ $('#showPassword').show(); if (password != null) { $('#linkPass').show('blind'); - $('#linkPassText').attr('placeholder', 'Password protected'); + $('#linkPassText').attr('placeholder', t('core', 'Password protected')); } + $('#expiration').show(); }, hideLink:function() { $('#linkText').hide('blind'); @@ -310,6 +325,15 @@ OC.Share={ }, dirname:function(path) { return path.replace(/\\/g,'/').replace(/\/[^\/]*$/, ''); + }, + showExpirationDate:function(date) { + $('#expirationCheckbox').attr('checked', true); + $('#expirationDate').before('
    '); + $('#expirationDate').val(date); + $('#expirationDate').show(); + $('#expirationDate').datepicker({ + dateFormat : 'dd-mm-yy' + }); } } @@ -379,6 +403,9 @@ $(document).ready(function() { var index = OC.Share.itemShares[shareType].indexOf(shareWith); OC.Share.itemShares[shareType].splice(index, 1); OC.Share.updateIcon(itemType, itemSource); + if (typeof OC.Share.statuses[itemSource] === 'undefined') { + $('#expiration').hide(); + } }); }); @@ -416,12 +443,17 @@ $(document).ready(function() { // Create a link OC.Share.share(itemType, itemSource, OC.Share.SHARE_TYPE_LINK, '', OC.PERMISSION_READ, function() { OC.Share.showLink(itemSource); - // TODO Change icon + OC.Share.updateIcon(itemType, itemSource); }); } else { // Delete private link OC.Share.unshare(itemType, itemSource, OC.Share.SHARE_TYPE_LINK, '', function() { OC.Share.hideLink(); + OC.Share.itemShares[OC.Share.SHARE_TYPE_LINK] = false; + OC.Share.updateIcon(itemType, itemSource); + if (typeof OC.Share.statuses[itemSource] === 'undefined') { + $('#expiration').hide(); + } }); } }); @@ -441,20 +473,23 @@ $(document).ready(function() { var itemSource = $('#dropdown').data('item-source'); OC.Share.share(itemType, itemSource, OC.Share.SHARE_TYPE_LINK, $(this).val(), OC.PERMISSION_READ, function() { $('#linkPassText').val(''); - $('#linkPassText').attr('placeholder', 'Password protected'); + $('#linkPassText').attr('placeholder', t('core', 'Password protected')); }); } }); $('#expirationCheckbox').live('click', function() { if (this.checked) { - $('#expirationDate').before('
    '); - $('#expirationDate').show(); - $('#expirationDate').datepicker({ - dateFormat : 'dd-mm-yy' - }); + OC.Share.showExpirationDate(''); } else { - $('#expirationDate').hide(); + var itemType = $('#dropdown').data('item-type'); + var itemSource = $('#dropdown').data('item-source'); + $.post(OC.filePath('core', 'ajax', 'share.php'), { action: 'setExpirationDate', itemType: itemType, itemSource: itemSource, date: '' }, function(result) { + if (!result || result.status !== 'success') { + OC.dialogs.alert(t('core', 'Error'), t('core', 'Error unsetting expiration date')); + } + $('#expirationDate').hide(); + }); } }); @@ -463,7 +498,7 @@ $(document).ready(function() { var itemSource = $('#dropdown').data('item-source'); $.post(OC.filePath('core', 'ajax', 'share.php'), { action: 'setExpirationDate', itemType: itemType, itemSource: itemSource, date: $(this).val() }, function(result) { if (!result || result.status !== 'success') { - OC.dialogs.alert('Error', 'Error setting expiration date'); + OC.dialogs.alert(t('core', 'Error'), t('core', 'Error setting expiration date')); } }); }); diff --git a/core/l10n/ar.php b/core/l10n/ar.php index 4b694f33bd..6efe63cc2a 100644 --- a/core/l10n/ar.php +++ b/core/l10n/ar.php @@ -1,5 +1,6 @@ "تعديلات", +"Password" => "كلمة السر", "Use the following link to reset your password: {link}" => "استخدم هذه الوصلة لاسترجاع كلمة السر: {link}", "You will receive a link to reset your password via Email." => "سوف نرسل لك بريد يحتوي على وصلة لتجديد كلمة السر.", "Requested" => "تم طلب", @@ -17,7 +18,6 @@ "Help" => "المساعدة", "Cloud not found" => "لم يتم إيجاد", "Create an admin account" => "أضف مستخدم رئيسي ", -"Password" => "كلمة السر", "Advanced" => "خيارات متقدمة", "Data folder" => "مجلد المعلومات", "Configure the database" => "أسس قاعدة البيانات", diff --git a/core/l10n/bg_BG.php b/core/l10n/bg_BG.php index 19b32a700b..779abe075a 100644 --- a/core/l10n/bg_BG.php +++ b/core/l10n/bg_BG.php @@ -19,6 +19,7 @@ "Ok" => "Добре", "No categories selected for deletion." => "Няма избрани категории за изтриване", "Error" => "Грешка", +"Password" => "Парола", "You will receive a link to reset your password via Email." => "Ще получите връзка за нулиране на паролата Ви.", "Requested" => "Заявено", "Login failed!" => "Входа пропадна!", @@ -37,7 +38,6 @@ "Edit categories" => "Редактиране на категориите", "Add" => "Добавяне", "Create an admin account" => "Създаване на админ профил", -"Password" => "Парола", "Advanced" => "Разширено", "Data folder" => "Директория за данни", "Configure the database" => "Конфигуриране на базата", diff --git a/core/l10n/ca.php b/core/l10n/ca.php index 6c70c29e6c..11f93d5fbb 100644 --- a/core/l10n/ca.php +++ b/core/l10n/ca.php @@ -21,6 +21,7 @@ "Ok" => "D'acord", "No categories selected for deletion." => "No hi ha categories per eliminar.", "Error" => "Error", +"Password" => "Contrasenya", "ownCloud password reset" => "estableix de nou la contrasenya Owncloud", "Use the following link to reset your password: {link}" => "Useu l'enllaç següent per restablir la contrasenya: {link}", "You will receive a link to reset your password via Email." => "Rebreu un enllaç al correu electrònic per reiniciar la contrasenya.", @@ -42,7 +43,6 @@ "Edit categories" => "Edita les categories", "Add" => "Afegeix", "Create an admin account" => "Crea un compte d'administrador", -"Password" => "Contrasenya", "Advanced" => "Avançat", "Data folder" => "Carpeta de dades", "Configure the database" => "Configura la base de dades", diff --git a/core/l10n/cs_CZ.php b/core/l10n/cs_CZ.php index 6a4dad08cb..461bed9933 100644 --- a/core/l10n/cs_CZ.php +++ b/core/l10n/cs_CZ.php @@ -15,12 +15,40 @@ "October" => "Říjen", "November" => "Listopad", "December" => "Prosinec", +"Choose" => "Vybrat", "Cancel" => "Zrušit", "No" => "Ne", "Yes" => "Ano", "Ok" => "Ok", "No categories selected for deletion." => "Žádné kategorie nebyly vybrány ke smazání.", "Error" => "Chyba", +"Error while sharing" => "Chyba při sdílení", +"Error while unsharing" => "Chyba při rušení sdílení", +"Error while changing permissions" => "Chyba při změně oprávnění", +"Shared with you and the group" => "S Vámi a skupinou", +"by" => "sdílí", +"Shared with you by" => "S Vámi sdílí", +"Share with" => "Sdílet s", +"Share with link" => "Sdílet s odkazem", +"Password protect" => "Chránit heslem", +"Password" => "Heslo", +"Set expiration date" => "Nastavit datum vypršení platnosti", +"Expiration date" => "Datum vypršení platnosti", +"Share via email:" => "Sdílet e-mailem:", +"No people found" => "Žádní lidé nenalezeni", +"Resharing is not allowed" => "Sdílení již sdílené položky není povoleno", +"Shared in" => "Sdíleno v", +"with" => "s", +"Unshare" => "Zrušit sdílení", +"can edit" => "lze upravovat", +"access control" => "řízení přístupu", +"create" => "vytvořit", +"update" => "aktualizovat", +"delete" => "smazat", +"share" => "sdílet", +"Password protected" => "Chráněno heslem", +"Error unsetting expiration date" => "Chyba při odstraňování data vypršení platnosti", +"Error setting expiration date" => "Chyba při nastavení data vypršení platnosti", "ownCloud password reset" => "Obnovení hesla pro ownCloud", "Use the following link to reset your password: {link}" => "Heslo obnovíte použitím následujícího odkazu: {link}", "You will receive a link to reset your password via Email." => "Bude Vám e-mailem zaslán odkaz pro obnovu hesla.", @@ -42,7 +70,6 @@ "Edit categories" => "Upravit kategorie", "Add" => "Přidat", "Create an admin account" => "Vytvořit účet správce", -"Password" => "Heslo", "Advanced" => "Pokročilé", "Data folder" => "Složka s daty", "Configure the database" => "Nastavit databázi", diff --git a/core/l10n/da.php b/core/l10n/da.php index 4bb953a4c5..dbc99e237c 100644 --- a/core/l10n/da.php +++ b/core/l10n/da.php @@ -15,12 +15,33 @@ "October" => "Oktober", "November" => "November", "December" => "December", +"Choose" => "Vælg", "Cancel" => "Fortryd", "No" => "Nej", "Yes" => "Ja", "Ok" => "OK", "No categories selected for deletion." => "Ingen kategorier valgt", "Error" => "Fejl", +"Error while sharing" => "Fejl under deling", +"Error while unsharing" => "Fejl under annullering af deling", +"Error while changing permissions" => "Fejl under justering af rettigheder", +"Share with" => "Del med", +"Share with link" => "Del med link", +"Password protect" => "Beskyt med adgangskode", +"Password" => "Kodeord", +"Set expiration date" => "Vælg udløbsdato", +"Expiration date" => "Udløbsdato", +"No people found" => "Ingen personer fundet", +"Resharing is not allowed" => "Videredeling ikke tilladt", +"Unshare" => "Fjern deling", +"can edit" => "kan redigere", +"access control" => "Adgangskontrol", +"create" => "opret", +"update" => "opdater", +"delete" => "slet", +"share" => "del", +"Password protected" => "Beskyttet med adgangskode", +"Error setting expiration date" => "Fejl under sætning af udløbsdato", "ownCloud password reset" => "Nulstil ownCloud kodeord", "Use the following link to reset your password: {link}" => "Anvend følgende link til at nulstille din adgangskode: {link}", "You will receive a link to reset your password via Email." => "Du vil modtage et link til at nulstille dit kodeord via email.", @@ -42,7 +63,6 @@ "Edit categories" => "Rediger kategorier", "Add" => "Tilføj", "Create an admin account" => "Opret en administratorkonto", -"Password" => "Kodeord", "Advanced" => "Avanceret", "Data folder" => "Datamappe", "Configure the database" => "Konfigurer databasen", diff --git a/core/l10n/de.php b/core/l10n/de.php index 611c208fe4..8697967274 100644 --- a/core/l10n/de.php +++ b/core/l10n/de.php @@ -1,5 +1,5 @@ "Applikationsname nicht angegeben", +"Application name not provided." => "Der Anwendungsname wurde nicht angegeben.", "No category to add?" => "Keine Kategorie hinzuzufügen?", "This category already exists: " => "Kategorie existiert bereits:", "Settings" => "Einstellungen", @@ -15,19 +15,47 @@ "October" => "Oktober", "November" => "November", "December" => "Dezember", +"Choose" => "Auswählen", "Cancel" => "Abbrechen", "No" => "Nein", "Yes" => "Ja", "Ok" => "OK", "No categories selected for deletion." => "Es wurde keine Kategorien zum Löschen ausgewählt.", "Error" => "Fehler", +"Error while sharing" => "Fehler beim Freigeben", +"Error while unsharing" => "Fehler beim Aufheben der Freigabe", +"Error while changing permissions" => "Fehler beim Ändern der Rechte", +"Shared with you and the group" => "Mit Dir und der Gruppe geteilt", +"by" => "mit", +"Shared with you by" => "Dies wurde mit dir geteilt von", +"Share with" => "Freigeben für", +"Share with link" => "Über einen Link freigeben", +"Password protect" => "Passwortschutz", +"Password" => "Passwort", +"Set expiration date" => "Setze ein Ablaufdatum", +"Expiration date" => "Ablaufdatum", +"Share via email:" => "Über eine E-Mail freigeben:", +"No people found" => "Niemand gefunden", +"Resharing is not allowed" => "Weiterverteilen ist nicht erlaubt", +"Shared in" => "Geteilt mit", +"with" => "mit", +"Unshare" => "Freigabe aufheben", +"can edit" => "kann bearbeiten", +"access control" => "Zugriffskontrolle", +"create" => "erstellen", +"update" => "aktualisieren", +"delete" => "löschen", +"share" => "teilen", +"Password protected" => "Durch ein Passwort geschützt", +"Error unsetting expiration date" => "Fehler beim entfernen des Ablaufdatums", +"Error setting expiration date" => "Fehler beim Setzen des Ablaufdatums", "ownCloud password reset" => "ownCloud-Passwort zurücksetzen", "Use the following link to reset your password: {link}" => "Nutzen Sie den nachfolgenden Link, um Ihr Passwort zurückzusetzen: {link}", -"You will receive a link to reset your password via Email." => "Sie erhalten einen Link, um Ihr Passwort per E-Mail zurückzusetzen.", +"You will receive a link to reset your password via Email." => "Du erhälst einen Link per E-Mail, um Dein Passwort zurückzusetzen.", "Requested" => "Angefragt", "Login failed!" => "Login fehlgeschlagen!", "Username" => "Benutzername", -"Request reset" => "Anfrage zurückgesetzt", +"Request reset" => "Beantrage Zurücksetzung", "Your password was reset" => "Ihr Passwort wurde zurückgesetzt.", "To login page" => "Zur Login-Seite", "New password" => "Neues Passwort", @@ -42,11 +70,10 @@ "Edit categories" => "Kategorien bearbeiten", "Add" => "Hinzufügen", "Create an admin account" => "Administrator-Konto anlegen", -"Password" => "Passwort", -"Advanced" => "Erweitert", +"Advanced" => "Fortgeschritten", "Data folder" => "Datenverzeichnis", "Configure the database" => "Datenbank einrichten", -"will be used" => "wird genutzt", +"will be used" => "wird verwendet", "Database user" => "Datenbank-Benutzer", "Database password" => "Datenbank-Passwort", "Database name" => "Datenbank-Name", @@ -58,7 +85,7 @@ "Lost your password?" => "Passwort vergessen?", "remember" => "merken", "Log in" => "Einloggen", -"You are logged out." => "Sie wurden abgemeldet.", +"You are logged out." => "Du wurdest abgemeldet.", "prev" => "Zurück", "next" => "Weiter" ); diff --git a/core/l10n/el.php b/core/l10n/el.php index 18a26f892c..0b7feb160c 100644 --- a/core/l10n/el.php +++ b/core/l10n/el.php @@ -15,12 +15,38 @@ "October" => "Οκτώβριος", "November" => "Νοέμβριος", "December" => "Δεκέμβριος", +"Choose" => "Επιλέξτε", "Cancel" => "Ακύρωση", "No" => "Όχι", "Yes" => "Ναι", "Ok" => "Οκ", "No categories selected for deletion." => "Δεν επιλέχτηκαν κατηγορίες για διαγραφή", "Error" => "Σφάλμα", +"Error while sharing" => "Σφάλμα κατά τον διαμοιρασμό", +"Error while unsharing" => "Σφάλμα κατά το σταμάτημα του διαμοιρασμού", +"Error while changing permissions" => "Σφάλμα κατά την αλλαγή των δικαιωμάτων", +"Shared with you and the group" => "Διαμοιρασμένο με εσένα και την ομάδα", +"by" => "από", +"Share with" => "Διαμοιρασμός με", +"Share with link" => "Διαμοιρασμός με σύνδεσμο", +"Password protect" => "Προστασία κωδικού", +"Password" => "Κωδικός", +"Set expiration date" => "Ορισμός ημ. λήξης", +"Expiration date" => "Ημερομηνία λήξης", +"Share via email:" => "Διαμοιρασμός μέσω email:", +"No people found" => "Δεν βρέθηκε άνθρωπος", +"Resharing is not allowed" => "Ξαναμοιρασμός δεν επιτρέπεται", +"with" => "με", +"Unshare" => "Σταμάτημα μοιράσματος", +"can edit" => "δυνατότητα αλλαγής", +"access control" => "έλεγχος πρόσβασης", +"create" => "δημιουργία", +"update" => "ανανέωση", +"delete" => "διαγραφή", +"share" => "διαμοιρασμός", +"Password protected" => "Προστασία με κωδικό", +"Error unsetting expiration date" => "Σφάλμα κατά την διαγραφή της ημ. λήξης", +"Error setting expiration date" => "Σφάλμα κατά τον ορισμό ημ. λήξης", "ownCloud password reset" => "Επαναφορά κωδικού ownCloud", "Use the following link to reset your password: {link}" => "Χρησιμοποιήστε τον ακόλουθο σύνδεσμο για να επανεκδόσετε τον κωδικό: {link}", "You will receive a link to reset your password via Email." => "Θα λάβετε ένα σύνδεσμο για να επαναφέρετε τον κωδικό πρόσβασής σας μέσω ηλεκτρονικού ταχυδρομείου.", @@ -42,7 +68,6 @@ "Edit categories" => "Επεξεργασία κατηγορίας", "Add" => "Προσθήκη", "Create an admin account" => "Δημιουργήστε έναν λογαριασμό διαχειριστή", -"Password" => "Κωδικός", "Advanced" => "Για προχωρημένους", "Data folder" => "Φάκελος δεδομένων", "Configure the database" => "Διαμόρφωση της βάσης δεδομένων", @@ -50,6 +75,7 @@ "Database user" => "Χρήστης της βάσης δεδομένων", "Database password" => "Κωδικός πρόσβασης βάσης δεδομένων", "Database name" => "Όνομα βάσης δεδομένων", +"Database tablespace" => "Κενά Πινάκων Βάσης Δεδομένων", "Database host" => "Διακομιστής βάσης δεδομένων", "Finish setup" => "Ολοκλήρωση εγκατάστασης", "web services under your control" => "Υπηρεσίες web υπό τον έλεγχό σας", diff --git a/core/l10n/eo.php b/core/l10n/eo.php index f1deaf3c9d..9e03abfdc2 100644 --- a/core/l10n/eo.php +++ b/core/l10n/eo.php @@ -21,6 +21,7 @@ "Ok" => "Akcepti", "No categories selected for deletion." => "Neniu kategorio elektiĝis por forigo.", "Error" => "Eraro", +"Password" => "Pasvorto", "ownCloud password reset" => "La pasvorto de ownCloud restariĝis.", "Use the following link to reset your password: {link}" => "Uzu la jenan ligilon por restarigi vian pasvorton: {link}", "You will receive a link to reset your password via Email." => "Vi ricevos ligilon retpoŝte por rekomencigi vian pasvorton.", @@ -42,7 +43,6 @@ "Edit categories" => "Redakti kategoriojn", "Add" => "Aldoni", "Create an admin account" => "Krei administran konton", -"Password" => "Pasvorto", "Advanced" => "Progresinta", "Data folder" => "Datuma dosierujo", "Configure the database" => "Agordi la datumbazon", diff --git a/core/l10n/es.php b/core/l10n/es.php index 21866d2ed6..204760720a 100644 --- a/core/l10n/es.php +++ b/core/l10n/es.php @@ -15,12 +15,40 @@ "October" => "Octubre", "November" => "Noviembre", "December" => "Diciembre", +"Choose" => "Seleccionar", "Cancel" => "Cancelar", "No" => "No", "Yes" => "Sí", "Ok" => "Aceptar", "No categories selected for deletion." => "No hay categorías seleccionadas para borrar.", "Error" => "Fallo", +"Error while sharing" => "Error compartiendo", +"Error while unsharing" => "Error descompartiendo", +"Error while changing permissions" => "Error cambiando permisos", +"Shared with you and the group" => "Comprtido contigo y con el grupo", +"by" => "por", +"Shared with you by" => "Compartido contigo por", +"Share with" => "Compartir con", +"Share with link" => "Enlace de compartir con ", +"Password protect" => "Protegido por contraseña", +"Password" => "Contraseña", +"Set expiration date" => "Establecer fecha de caducidad", +"Expiration date" => "Fecha de caducidad", +"Share via email:" => "compartido via e-mail:", +"No people found" => "No se encontró gente", +"Resharing is not allowed" => "No se permite compartir de nuevo", +"Shared in" => "Compartido en", +"with" => "con", +"Unshare" => "No compartir", +"can edit" => "puede editar", +"access control" => "control de acceso", +"create" => "crear", +"update" => "modificar", +"delete" => "eliminar", +"share" => "compartir", +"Password protected" => "Protegido por contraseña", +"Error unsetting expiration date" => "Error al eliminar la fecha de caducidad", +"Error setting expiration date" => "Error estableciendo fecha de caducidad", "ownCloud password reset" => "Reiniciar contraseña de ownCloud", "Use the following link to reset your password: {link}" => "Utiliza el siguiente enlace para restablecer tu contraseña: {link}", "You will receive a link to reset your password via Email." => "Recibirás un enlace por correo electrónico para restablecer tu contraseña", @@ -42,7 +70,6 @@ "Edit categories" => "Editar categorías", "Add" => "Añadir", "Create an admin account" => "Crea una cuenta de administrador", -"Password" => "Contraseña", "Advanced" => "Avanzado", "Data folder" => "Directorio de almacenamiento", "Configure the database" => "Configurar la base de datos", diff --git a/core/l10n/es_AR.php b/core/l10n/es_AR.php new file mode 100644 index 0000000000..ea8b2aae78 --- /dev/null +++ b/core/l10n/es_AR.php @@ -0,0 +1,85 @@ + "Nombre de la aplicación no provisto.", +"No category to add?" => "¿Ninguna categoría para añadir?", +"This category already exists: " => "Esta categoría ya existe: ", +"Settings" => "Ajustes", +"January" => "Enero", +"February" => "Febrero", +"March" => "Marzo", +"April" => "Abril", +"May" => "Mayo", +"June" => "Junio", +"July" => "Julio", +"August" => "Agosto", +"September" => "Septiembre", +"October" => "Octubre", +"November" => "Noviembre", +"December" => "Diciembre", +"Choose" => "Elegir", +"Cancel" => "Cancelar", +"No" => "No", +"Yes" => "Sí", +"Ok" => "Aceptar", +"No categories selected for deletion." => "No hay categorías seleccionadas para borrar.", +"Error" => "Error", +"Error while sharing" => "Error al compartir", +"Error while unsharing" => "Error en el procedimiento de ", +"Error while changing permissions" => "Error al cambiar permisos", +"Share with" => "Compartir con", +"Share with link" => "Compartir con link", +"Password protect" => "Proteger con contraseña ", +"Password" => "Contraseña", +"Set expiration date" => "Asignar fecha de vencimiento", +"Expiration date" => "Fecha de vencimiento", +"No people found" => "No se encontraron usuarios", +"Resharing is not allowed" => "No se permite volver a compartir", +"Unshare" => "Remover compartir", +"can edit" => "puede editar", +"access control" => "control de acceso", +"create" => "crear", +"update" => "actualizar", +"delete" => "remover", +"share" => "compartir", +"Password protected" => "Protegido por contraseña", +"Error unsetting expiration date" => "Error al remover la fecha de caducidad", +"Error setting expiration date" => "Error al asignar fecha de vencimiento", +"ownCloud password reset" => "Restablecer contraseña de ownCloud", +"Use the following link to reset your password: {link}" => "Usá este enlace para restablecer tu contraseña: {link}", +"You will receive a link to reset your password via Email." => "Vas a recibir un enlace por e-mail para restablecer tu contraseña", +"Requested" => "Pedido", +"Login failed!" => "¡Fallo al iniciar sesión!", +"Username" => "Nombre de usuario", +"Request reset" => "Solicitar restablecimiento", +"Your password was reset" => "Tu contraseña ha sido restablecida", +"To login page" => "A la página de inicio de sesión", +"New password" => "Nueva contraseña", +"Reset password" => "Restablecer contraseña", +"Personal" => "Personal", +"Users" => "Usuarios", +"Apps" => "Aplicaciones", +"Admin" => "Administrador", +"Help" => "Ayuda", +"Access forbidden" => "Acceso denegado", +"Cloud not found" => "No se encontró owncloud", +"Edit categories" => "Editar categorías", +"Add" => "Añadir", +"Create an admin account" => "Creá una cuenta de administrador", +"Advanced" => "Avanzado", +"Data folder" => "Directorio de almacenamiento", +"Configure the database" => "Configurar la base de datos", +"will be used" => "se utilizarán", +"Database user" => "Usuario de la base de datos", +"Database password" => "Contraseña de la base de datos", +"Database name" => "Nombre de la base de datos", +"Database tablespace" => "Espacio de tablas de la base de datos", +"Database host" => "Host de la base de datos", +"Finish setup" => "Completar la instalación", +"web services under your control" => "servicios web sobre los que tenés control", +"Log out" => "Cerrar la sesión", +"Lost your password?" => "¿Perdiste tu contraseña?", +"remember" => "recordame", +"Log in" => "Entrar", +"You are logged out." => "Terminaste la sesión.", +"prev" => "anterior", +"next" => "siguiente" +); diff --git a/core/l10n/et_EE.php b/core/l10n/et_EE.php index 871cc25fee..bc97cd0403 100644 --- a/core/l10n/et_EE.php +++ b/core/l10n/et_EE.php @@ -21,6 +21,7 @@ "Ok" => "Ok", "No categories selected for deletion." => "Kustutamiseks pole kategooriat valitud.", "Error" => "Viga", +"Password" => "Parool", "ownCloud password reset" => "ownCloud parooli taastamine", "Use the following link to reset your password: {link}" => "Kasuta järgnevat linki oma parooli taastamiseks: {link}", "You will receive a link to reset your password via Email." => "Sinu parooli taastamise link saadetakse sulle e-postile.", @@ -42,7 +43,6 @@ "Edit categories" => "Muuda kategooriaid", "Add" => "Lisa", "Create an admin account" => "Loo admini konto", -"Password" => "Parool", "Advanced" => "Lisavalikud", "Data folder" => "Andmete kaust", "Configure the database" => "Seadista andmebaasi", diff --git a/core/l10n/eu.php b/core/l10n/eu.php index 58a63b6e68..a5f5d3a621 100644 --- a/core/l10n/eu.php +++ b/core/l10n/eu.php @@ -15,12 +15,33 @@ "October" => "Urria", "November" => "Azaroa", "December" => "Abendua", +"Choose" => "Aukeratu", "Cancel" => "Ezeztatu", "No" => "Ez", "Yes" => "Bai", "Ok" => "Ados", "No categories selected for deletion." => "Ez da ezabatzeko kategoriarik hautatu.", "Error" => "Errorea", +"Error while sharing" => "Errore bat egon da elkarbanatzean", +"Error while unsharing" => "Errore bat egon da elkarbanaketa desegitean", +"Error while changing permissions" => "Errore bat egon da baimenak aldatzean", +"Share with" => "Elkarbanatu honekin", +"Share with link" => "Elkarbanatu lotura batekin", +"Password protect" => "Babestu pasahitzarekin", +"Password" => "Pasahitza", +"Set expiration date" => "Ezarri muga data", +"Expiration date" => "Muga data", +"No people found" => "Ez da inor aurkitu", +"Resharing is not allowed" => "Berriz elkarbanatzea ez dago baimendua", +"Unshare" => "Ez elkarbanatu", +"can edit" => "editatu dezake", +"access control" => "sarrera kontrola", +"create" => "sortu", +"update" => "eguneratu", +"delete" => "ezabatu", +"share" => "elkarbanatu", +"Password protected" => "Pasahitzarekin babestuta", +"Error setting expiration date" => "Errore bat egon da muga data ezartzean", "ownCloud password reset" => "ownCloud-en pasahitza berrezarri", "Use the following link to reset your password: {link}" => "Eribili hurrengo lotura zure pasahitza berrezartzeko: {link}", "You will receive a link to reset your password via Email." => "Zure pashitza berrezartzeko lotura bat jasoko duzu Epostaren bidez.", @@ -42,7 +63,6 @@ "Edit categories" => "Editatu kategoriak", "Add" => "Gehitu", "Create an admin account" => "Sortu kudeatzaile kontu bat", -"Password" => "Pasahitza", "Advanced" => "Aurreratua", "Data folder" => "Datuen karpeta", "Configure the database" => "Konfiguratu datu basea", diff --git a/core/l10n/fa.php b/core/l10n/fa.php index 7b7af3937b..2b96162c0c 100644 --- a/core/l10n/fa.php +++ b/core/l10n/fa.php @@ -21,6 +21,7 @@ "Ok" => "قبول", "No categories selected for deletion." => "هیج دسته ای برای پاک شدن انتخاب نشده است", "Error" => "خطا", +"Password" => "گذرواژه", "ownCloud password reset" => "پسورد ابرهای شما تغییرکرد", "Use the following link to reset your password: {link}" => "از لینک زیر جهت دوباره سازی پسورد استفاده کنید :\n{link}", "You will receive a link to reset your password via Email." => "شما یک نامه الکترونیکی حاوی یک لینک جهت بازسازی گذرواژه دریافت خواهید کرد.", @@ -42,7 +43,6 @@ "Edit categories" => "ویرایش گروه ها", "Add" => "افزودن", "Create an admin account" => "لطفا یک شناسه برای مدیر بسازید", -"Password" => "گذرواژه", "Advanced" => "حرفه ای", "Data folder" => "پوشه اطلاعاتی", "Configure the database" => "پایگاه داده برنامه ریزی شدند", diff --git a/core/l10n/fi_FI.php b/core/l10n/fi_FI.php index d253ee9433..a11ec5033c 100644 --- a/core/l10n/fi_FI.php +++ b/core/l10n/fi_FI.php @@ -15,12 +15,26 @@ "October" => "Lokakuu", "November" => "Marraskuu", "December" => "Joulukuu", +"Choose" => "Valitse", "Cancel" => "Peru", "No" => "Ei", "Yes" => "Kyllä", "Ok" => "Ok", "No categories selected for deletion." => "Luokkia ei valittu poistettavaksi.", "Error" => "Virhe", +"Error while changing permissions" => "Virhe oikeuksia muuttaessa", +"Password protect" => "Suojaa salasanalla", +"Password" => "Salasana", +"Set expiration date" => "Aseta päättymispäivä", +"Expiration date" => "Päättymispäivä", +"Resharing is not allowed" => "Jakaminen uudelleen ei ole salittu", +"can edit" => "voi muokata", +"create" => "luo", +"update" => "päivitä", +"delete" => "poista", +"share" => "jaa", +"Password protected" => "Salasanasuojattu", +"Error setting expiration date" => "Virhe päättymispäivää asettaessa", "ownCloud password reset" => "ownCloud-salasanan nollaus", "Use the following link to reset your password: {link}" => "Voit palauttaa salasanasi seuraavassa osoitteessa: {link}", "You will receive a link to reset your password via Email." => "Saat sähköpostitse linkin nollataksesi salasanan.", @@ -42,7 +56,6 @@ "Edit categories" => "Muokkaa luokkia", "Add" => "Lisää", "Create an admin account" => "Luo ylläpitäjän tunnus", -"Password" => "Salasana", "Advanced" => "Lisäasetukset", "Data folder" => "Datakansio", "Configure the database" => "Muokkaa tietokantaa", diff --git a/core/l10n/fr.php b/core/l10n/fr.php index 2904ebf48b..71ab04e8c4 100644 --- a/core/l10n/fr.php +++ b/core/l10n/fr.php @@ -15,12 +15,34 @@ "October" => "octobre", "November" => "novembre", "December" => "décembre", +"Choose" => "Choisir", "Cancel" => "Annuler", "No" => "Non", "Yes" => "Oui", "Ok" => "Ok", "No categories selected for deletion." => "Aucune catégorie sélectionnée pour suppression", "Error" => "Erreur", +"Error while sharing" => "Erreur lors de la mise en partage", +"Error while unsharing" => "Erreur lors de l'annulation du partage", +"Error while changing permissions" => "Erreur lors du changement des permissions", +"Share with" => "Partager avec", +"Share with link" => "Partager via lien", +"Password protect" => "Protéger par un mot de passe", +"Password" => "Mot de passe", +"Set expiration date" => "Spécifier la date d'expiration", +"Expiration date" => "Date d'expiration", +"No people found" => "Aucun utilisateur trouvé", +"Resharing is not allowed" => "Le repartage n'est pas autorisé", +"Unshare" => "Ne plus partager", +"can edit" => "édition autorisée", +"access control" => "contrôle des accès", +"create" => "créer", +"update" => "mettre à jour", +"delete" => "supprimer", +"share" => "partager", +"Password protected" => "Protégé par un mot de passe", +"Error unsetting expiration date" => "Un erreur est survenue pendant la suppression de la date d'expiration", +"Error setting expiration date" => "Erreur lors de la spécification de la date d'expiration", "ownCloud password reset" => "Réinitialisation de votre mot de passe Owncloud", "Use the following link to reset your password: {link}" => "Utilisez le lien suivant pour réinitialiser votre mot de passe : {link}", "You will receive a link to reset your password via Email." => "Vous allez recevoir un e-mail contenant un lien pour réinitialiser votre mot de passe.", @@ -42,7 +64,6 @@ "Edit categories" => "Modifier les catégories", "Add" => "Ajouter", "Create an admin account" => "Créer un compte administrateur", -"Password" => "Mot de passe", "Advanced" => "Avancé", "Data folder" => "Répertoire des données", "Configure the database" => "Configurer la base de données", diff --git a/core/l10n/gl.php b/core/l10n/gl.php index af84971219..61c113c591 100644 --- a/core/l10n/gl.php +++ b/core/l10n/gl.php @@ -21,6 +21,7 @@ "Ok" => "Ok", "No categories selected for deletion." => "Non hai categorías seleccionadas para eliminar.", "Error" => "Erro", +"Password" => "Contrasinal", "ownCloud password reset" => "Restablecer contrasinal de ownCloud", "Use the following link to reset your password: {link}" => "Use a seguinte ligazón para restablecer o contrasinal: {link}", "You will receive a link to reset your password via Email." => "Recibirá unha ligazón por correo electrónico para restablecer o contrasinal", @@ -42,7 +43,6 @@ "Edit categories" => "Editar categorias", "Add" => "Engadir", "Create an admin account" => "Crear unha contra de administrador", -"Password" => "Contrasinal", "Advanced" => "Avanzado", "Data folder" => "Cartafol de datos", "Configure the database" => "Configurar a base de datos", diff --git a/core/l10n/he.php b/core/l10n/he.php index 74b6fe7aa4..0be59b8bae 100644 --- a/core/l10n/he.php +++ b/core/l10n/he.php @@ -21,6 +21,7 @@ "Ok" => "בסדר", "No categories selected for deletion." => "לא נבחרו קטגוריות למחיקה", "Error" => "שגיאה", +"Password" => "ססמה", "ownCloud password reset" => "איפוס הססמה של ownCloud", "Use the following link to reset your password: {link}" => "יש להשתמש בקישור הבא כדי לאפס את הססמה שלך: {link}", "You will receive a link to reset your password via Email." => "יישלח לתיבת הדוא״ל שלך קישור לאיפוס הססמה.", @@ -42,7 +43,6 @@ "Edit categories" => "עריכת הקטגוריות", "Add" => "הוספה", "Create an admin account" => "יצירת חשבון מנהל", -"Password" => "ססמה", "Advanced" => "מתקדם", "Data folder" => "תיקיית נתונים", "Configure the database" => "הגדרת מסד הנתונים", diff --git a/core/l10n/hi.php b/core/l10n/hi.php index cc9cbdb22f..c84f76c4e4 100644 --- a/core/l10n/hi.php +++ b/core/l10n/hi.php @@ -1,8 +1,8 @@ "पासवर्ड", "Username" => "प्रयोक्ता का नाम", "Cloud not found" => "क्लौड नहीं मिला ", "Create an admin account" => "व्यवस्थापक खाता बनाएँ", -"Password" => "पासवर्ड", "Advanced" => "उन्नत", "Configure the database" => "डेटाबेस कॉन्फ़िगर करें ", "Database user" => "डेटाबेस उपयोगकर्ता", diff --git a/core/l10n/hr.php b/core/l10n/hr.php index 723cceb4d0..c8f683d827 100644 --- a/core/l10n/hr.php +++ b/core/l10n/hr.php @@ -21,6 +21,7 @@ "Ok" => "U redu", "No categories selected for deletion." => "Nema odabranih kategorija za brisanje.", "Error" => "Pogreška", +"Password" => "Lozinka", "ownCloud password reset" => "ownCloud resetiranje lozinke", "Use the following link to reset your password: {link}" => "Koristite ovaj link da biste poništili lozinku: {link}", "You will receive a link to reset your password via Email." => "Primit ćete link kako biste poništili zaporku putem e-maila.", @@ -42,7 +43,6 @@ "Edit categories" => "Uredi kategorije", "Add" => "Dodaj", "Create an admin account" => "Stvori administratorski račun", -"Password" => "Lozinka", "Advanced" => "Dodatno", "Data folder" => "Mapa baze podataka", "Configure the database" => "Konfiguriraj bazu podataka", diff --git a/core/l10n/hu_HU.php b/core/l10n/hu_HU.php index a97c4cb886..9a1f3a1abf 100644 --- a/core/l10n/hu_HU.php +++ b/core/l10n/hu_HU.php @@ -21,6 +21,7 @@ "Ok" => "Ok", "No categories selected for deletion." => "Nincs törlésre jelölt kategória", "Error" => "Hiba", +"Password" => "Jelszó", "ownCloud password reset" => "ownCloud jelszó-visszaállítás", "Use the following link to reset your password: {link}" => "Használja az alábbi linket a jelszó-visszaállításhoz: {link}", "You will receive a link to reset your password via Email." => "Egy e-mailben kap értesítést a jelszóváltoztatás módjáról.", @@ -42,7 +43,6 @@ "Edit categories" => "Kategóriák szerkesztése", "Add" => "Hozzáadás", "Create an admin account" => "Rendszergazdafiók létrehozása", -"Password" => "Jelszó", "Advanced" => "Haladó", "Data folder" => "Adatkönyvtár", "Configure the database" => "Adatbázis konfigurálása", diff --git a/core/l10n/ia.php b/core/l10n/ia.php index e202daafa3..862c5eb0a2 100644 --- a/core/l10n/ia.php +++ b/core/l10n/ia.php @@ -1,6 +1,7 @@ "Iste categoria jam existe:", "Settings" => "Configurationes", +"Password" => "Contrasigno", "ownCloud password reset" => "Reinitialisation del contrasigno de ownCLoud", "Requested" => "Requestate", "Login failed!" => "Initio de session fallite!", @@ -20,7 +21,6 @@ "Edit categories" => "Modificar categorias", "Add" => "Adder", "Create an admin account" => "Crear un conto de administration", -"Password" => "Contrasigno", "Advanced" => "Avantiate", "Data folder" => "Dossier de datos", "Configure the database" => "Configurar le base de datos", diff --git a/core/l10n/id.php b/core/l10n/id.php index 47758f8861..c71d767dbf 100644 --- a/core/l10n/id.php +++ b/core/l10n/id.php @@ -20,6 +20,7 @@ "Yes" => "Ya", "Ok" => "Oke", "No categories selected for deletion." => "Tidak ada kategori terpilih untuk penghapusan.", +"Password" => "Password", "ownCloud password reset" => "reset password ownCloud", "Use the following link to reset your password: {link}" => "Gunakan tautan berikut untuk mereset password anda: {link}", "You will receive a link to reset your password via Email." => "Anda akan mendapatkan link untuk mereset password anda lewat Email.", @@ -41,7 +42,6 @@ "Edit categories" => "Edit kategori", "Add" => "Tambahkan", "Create an admin account" => "Buat sebuah akun admin", -"Password" => "Password", "Advanced" => "Tingkat Lanjut", "Data folder" => "Folder data", "Configure the database" => "Konfigurasi database", diff --git a/core/l10n/it.php b/core/l10n/it.php index 8d9ac21cd4..c586171275 100644 --- a/core/l10n/it.php +++ b/core/l10n/it.php @@ -15,12 +15,40 @@ "October" => "Ottobre", "November" => "Novembre", "December" => "Dicembre", +"Choose" => "Scegli", "Cancel" => "Annulla", "No" => "No", "Yes" => "Sì", "Ok" => "Ok", "No categories selected for deletion." => "Nessuna categoria selezionata per l'eliminazione.", "Error" => "Errore", +"Error while sharing" => "Errore durante la condivisione", +"Error while unsharing" => "Errore durante la rimozione della condivisione", +"Error while changing permissions" => "Errore durante la modifica dei permessi", +"Shared with you and the group" => "Condiviso con te e con il gruppo", +"by" => "da", +"Shared with you by" => "Condiviso con te da", +"Share with" => "Condividi con", +"Share with link" => "Condividi con collegamento", +"Password protect" => "Proteggi con password", +"Password" => "Password", +"Set expiration date" => "Imposta data di scadenza", +"Expiration date" => "Data di scadenza", +"Share via email:" => "Condividi tramite email:", +"No people found" => "Non sono state trovate altre persone", +"Resharing is not allowed" => "La ri-condivisione non è consentita", +"Shared in" => "Condiviso in", +"with" => "con", +"Unshare" => "Rimuovi condivisione", +"can edit" => "può modificare", +"access control" => "controllo d'accesso", +"create" => "creare", +"update" => "aggiornare", +"delete" => "eliminare", +"share" => "condividere", +"Password protected" => "Protetta da password", +"Error unsetting expiration date" => "Errore durante la rimozione della data di scadenza", +"Error setting expiration date" => "Errore durante l'impostazione della data di scadenza", "ownCloud password reset" => "Ripristino password di ownCloud", "Use the following link to reset your password: {link}" => "Usa il collegamento seguente per ripristinare la password: {link}", "You will receive a link to reset your password via Email." => "Riceverai un collegamento per ripristinare la tua password via email", @@ -42,7 +70,6 @@ "Edit categories" => "Modifica le categorie", "Add" => "Aggiungi", "Create an admin account" => "Crea un account amministratore", -"Password" => "Password", "Advanced" => "Avanzate", "Data folder" => "Cartella dati", "Configure the database" => "Configura il database", diff --git a/core/l10n/ja_JP.php b/core/l10n/ja_JP.php index 62f5e16f3c..36f986f616 100644 --- a/core/l10n/ja_JP.php +++ b/core/l10n/ja_JP.php @@ -15,12 +15,34 @@ "October" => "10月", "November" => "11月", "December" => "12月", +"Choose" => "選択", "Cancel" => "キャンセル", "No" => "いいえ", "Yes" => "はい", "Ok" => "OK", "No categories selected for deletion." => "削除するカテゴリが選択されていません。", "Error" => "エラー", +"Error while sharing" => "共有でエラー発生", +"Error while unsharing" => "共有解除でエラー発生", +"Error while changing permissions" => "権限変更でエラー発生", +"Share with" => "共有者", +"Share with link" => "URLリンクで共有", +"Password protect" => "パスワード保護", +"Password" => "パスワード", +"Set expiration date" => "有効期限を設定", +"Expiration date" => "有効期限", +"No people found" => "ユーザーが見つかりません", +"Resharing is not allowed" => "再共有は許可されていません", +"Unshare" => "共有解除", +"can edit" => "編集可能", +"access control" => "アクセス権限", +"create" => "作成", +"update" => "更新", +"delete" => "削除", +"share" => "共有", +"Password protected" => "パスワード保護", +"Error unsetting expiration date" => "有効期限の未設定エラー", +"Error setting expiration date" => "有効期限の設定でエラー発生", "ownCloud password reset" => "ownCloudのパスワードをリセットします", "Use the following link to reset your password: {link}" => "パスワードをリセットするには次のリンクをクリックして下さい: {link}", "You will receive a link to reset your password via Email." => "メールでパスワードをリセットするリンクが届きます。", @@ -42,7 +64,6 @@ "Edit categories" => "カテゴリを編集", "Add" => "追加", "Create an admin account" => "管理者アカウントを作成してください", -"Password" => "パスワード", "Advanced" => "詳細設定", "Data folder" => "データフォルダ", "Configure the database" => "データベースを設定してください", diff --git a/core/l10n/ko.php b/core/l10n/ko.php index 9f82a79c43..0430495861 100644 --- a/core/l10n/ko.php +++ b/core/l10n/ko.php @@ -21,6 +21,7 @@ "Ok" => "승락", "No categories selected for deletion." => "삭제 카테고리를 선택하지 않았습니다.", "Error" => "에러", +"Password" => "암호", "ownCloud password reset" => "ownCloud 비밀번호 재설정", "Use the following link to reset your password: {link}" => "다음 링크를 사용하여 암호를 초기화할 수 있습니다: {link}", "You will receive a link to reset your password via Email." => "전자 우편으로 암호 재설정 링크를 보냈습니다.", @@ -42,7 +43,6 @@ "Edit categories" => "카테고리 편집", "Add" => "추가", "Create an admin account" => "관리자 계정을 만드십시오", -"Password" => "암호", "Advanced" => "고급", "Data folder" => "자료 폴더", "Configure the database" => "데이터베이스 구성", diff --git a/core/l10n/lb.php b/core/l10n/lb.php index 0959e0ed25..de8ab50272 100644 --- a/core/l10n/lb.php +++ b/core/l10n/lb.php @@ -21,6 +21,7 @@ "Ok" => "OK", "No categories selected for deletion." => "Keng Kategorien ausgewielt fir ze läschen.", "Error" => "Fehler", +"Password" => "Passwuert", "ownCloud password reset" => "ownCloud Passwuert reset", "Use the following link to reset your password: {link}" => "Benotz folgende Link fir däi Passwuert ze reseten: {link}", "You will receive a link to reset your password via Email." => "Du kriss en Link fir däin Passwuert nei ze setzen via Email geschéckt.", @@ -42,7 +43,6 @@ "Edit categories" => "Kategorien editéieren", "Add" => "Bäisetzen", "Create an admin account" => "En Admin Account uleeën", -"Password" => "Passwuert", "Advanced" => "Advanced", "Data folder" => "Daten Dossier", "Configure the database" => "Datebank konfiguréieren", diff --git a/core/l10n/lt_LT.php b/core/l10n/lt_LT.php index 0a3320351c..4839c66771 100644 --- a/core/l10n/lt_LT.php +++ b/core/l10n/lt_LT.php @@ -21,6 +21,7 @@ "Ok" => "Gerai", "No categories selected for deletion." => "Trynimui nepasirinkta jokia kategorija.", "Error" => "Klaida", +"Password" => "Slaptažodis", "ownCloud password reset" => "ownCloud slaptažodžio atkūrimas", "Use the following link to reset your password: {link}" => "Slaptažodio atkūrimui naudokite šią nuorodą: {link}", "You will receive a link to reset your password via Email." => "Elektroniniu paštu gausite nuorodą, su kuria galėsite iš naujo nustatyti slaptažodį.", @@ -42,7 +43,6 @@ "Edit categories" => "Redaguoti kategorijas", "Add" => "Pridėti", "Create an admin account" => "Sukurti administratoriaus paskyrą", -"Password" => "Slaptažodis", "Advanced" => "Išplėstiniai", "Data folder" => "Duomenų katalogas", "Configure the database" => "Nustatyti duomenų bazę", diff --git a/core/l10n/lv.php b/core/l10n/lv.php index 6435c50158..7825d5aec1 100644 --- a/core/l10n/lv.php +++ b/core/l10n/lv.php @@ -1,5 +1,6 @@ "Iestatījumi", +"Password" => "Parole", "Use the following link to reset your password: {link}" => "Izmantojiet šo linku lai mainītu paroli", "You will receive a link to reset your password via Email." => "Jūs savā epastā saņemsiet interneta saiti, caur kuru varēsiet atjaunot paroli.", "Requested" => "Obligāts", @@ -16,7 +17,6 @@ "Admin" => "Administrators", "Help" => "Palīdzība", "Cloud not found" => "Mākonis netika atrasts", -"Password" => "Parole", "Data folder" => "Datu mape", "Configure the database" => "Nokonfigurēt datubāzi", "will be used" => "tiks izmantots", diff --git a/core/l10n/mk.php b/core/l10n/mk.php index 3eea6cd58d..149dd4a5b4 100644 --- a/core/l10n/mk.php +++ b/core/l10n/mk.php @@ -21,6 +21,7 @@ "Ok" => "Во ред", "No categories selected for deletion." => "Не е одбрана категорија за бришење.", "Error" => "Грешка", +"Password" => "Лозинка", "ownCloud password reset" => "ресетирање на лозинка за ownCloud", "Use the following link to reset your password: {link}" => "Користете ја следната врска да ја ресетирате Вашата лозинка: {link}", "You will receive a link to reset your password via Email." => "Ќе добиете врска по е-пошта за да може да ја ресетирате Вашата лозинка.", @@ -42,7 +43,6 @@ "Edit categories" => "Уреди категории", "Add" => "Додади", "Create an admin account" => "Направете администраторска сметка", -"Password" => "Лозинка", "Advanced" => "Напредно", "Data folder" => "Фолдер со податоци", "Configure the database" => "Конфигурирај ја базата", diff --git a/core/l10n/ms_MY.php b/core/l10n/ms_MY.php index c99c510be6..8a271660e4 100644 --- a/core/l10n/ms_MY.php +++ b/core/l10n/ms_MY.php @@ -21,6 +21,7 @@ "Ok" => "Ok", "No categories selected for deletion." => "tiada kategori dipilih untuk penghapusan", "Error" => "Ralat", +"Password" => "Kata laluan", "ownCloud password reset" => "Set semula kata lalaun ownCloud", "Use the following link to reset your password: {link}" => "Guna pautan berikut untuk menetapkan semula kata laluan anda: {link}", "You will receive a link to reset your password via Email." => "Anda akan menerima pautan untuk menetapkan semula kata laluan anda melalui emel", @@ -42,7 +43,6 @@ "Edit categories" => "Edit kategori", "Add" => "Tambah", "Create an admin account" => "buat akaun admin", -"Password" => "Kata laluan", "Advanced" => "Maju", "Data folder" => "Fail data", "Configure the database" => "Konfigurasi pangkalan data", diff --git a/core/l10n/nb_NO.php b/core/l10n/nb_NO.php index a8bfebb8a5..e8e76bad4c 100644 --- a/core/l10n/nb_NO.php +++ b/core/l10n/nb_NO.php @@ -21,6 +21,7 @@ "Ok" => "Ok", "No categories selected for deletion." => "Ingen kategorier merket for sletting.", "Error" => "Feil", +"Password" => "Passord", "ownCloud password reset" => "Tilbakestill ownCloud passord", "Use the following link to reset your password: {link}" => "Bruk følgende lenke for å tilbakestille passordet ditt: {link}", "You will receive a link to reset your password via Email." => "Du burde motta detaljer om å tilbakestille passordet ditt via epost.", @@ -42,7 +43,6 @@ "Edit categories" => "Rediger kategorier", "Add" => "Legg til", "Create an admin account" => "opprett en administrator-konto", -"Password" => "Passord", "Advanced" => "Avansert", "Data folder" => "Datamappe", "Configure the database" => "Konfigurer databasen", diff --git a/core/l10n/nl.php b/core/l10n/nl.php index 3497381f74..e4051fc5c5 100644 --- a/core/l10n/nl.php +++ b/core/l10n/nl.php @@ -15,12 +15,33 @@ "October" => "Oktober", "November" => "November", "December" => "December", +"Choose" => "Kies", "Cancel" => "Annuleren", "No" => "Nee", "Yes" => "Ja", "Ok" => "Ok", "No categories selected for deletion." => "Geen categorie geselecteerd voor verwijdering.", "Error" => "Fout", +"Error while sharing" => "Fout tijdens het delen", +"Error while unsharing" => "Fout tijdens het stoppen met delen", +"Error while changing permissions" => "Fout tijdens het veranderen van permissies", +"Share with" => "Deel met", +"Share with link" => "Deel met link", +"Password protect" => "Passeerwoord beveiliging", +"Password" => "Wachtwoord", +"Set expiration date" => "Zet vervaldatum", +"Expiration date" => "Vervaldatum", +"No people found" => "Geen mensen gevonden", +"Resharing is not allowed" => "Verder delen is niet toegestaan", +"Unshare" => "Stop met delen", +"can edit" => "kan wijzigen", +"access control" => "toegangscontrole", +"create" => "maak", +"update" => "bijwerken", +"delete" => "verwijderen", +"share" => "deel", +"Password protected" => "Passeerwoord beveiligd", +"Error setting expiration date" => "Fout tijdens het configureren van de vervaldatum", "ownCloud password reset" => "ownCloud wachtwoord herstellen", "Use the following link to reset your password: {link}" => "Gebruik de volgende link om je wachtwoord te resetten: {link}", "You will receive a link to reset your password via Email." => "U ontvangt een link om je wachtwoord opnieuw in te stellen via e-mail.", @@ -42,7 +63,6 @@ "Edit categories" => "Wijzigen categorieën", "Add" => "Toevoegen", "Create an admin account" => "Maak een beheerdersaccount aan", -"Password" => "Wachtwoord", "Advanced" => "Geavanceerd", "Data folder" => "Gegevensmap", "Configure the database" => "Configureer de databank", diff --git a/core/l10n/nn_NO.php b/core/l10n/nn_NO.php index 9dfce36049..147afb35fb 100644 --- a/core/l10n/nn_NO.php +++ b/core/l10n/nn_NO.php @@ -1,5 +1,6 @@ "Innstillingar", +"Password" => "Passord", "Use the following link to reset your password: {link}" => "Bruk føljane link til å tilbakestille passordet ditt: {link}", "You will receive a link to reset your password via Email." => "Du vil få ei lenkje for å nullstilla passordet via epost.", "Requested" => "Førespurt", @@ -17,7 +18,6 @@ "Help" => "Hjelp", "Cloud not found" => "Fann ikkje skyen", "Create an admin account" => "Lag ein admin-konto", -"Password" => "Passord", "Advanced" => "Avansert", "Data folder" => "Datamappe", "Configure the database" => "Konfigurer databasen", diff --git a/core/l10n/oc.php b/core/l10n/oc.php new file mode 100644 index 0000000000..328cc0b60b --- /dev/null +++ b/core/l10n/oc.php @@ -0,0 +1,91 @@ + "Nom d'applicacion pas donat.", +"No category to add?" => "Pas de categoria d'ajustar ?", +"This category already exists: " => "La categoria exista ja :", +"Settings" => "Configuracion", +"January" => "Genièr", +"February" => "Febrièr", +"March" => "Març", +"April" => "Abril", +"May" => "Mai", +"June" => "Junh", +"July" => "Julhet", +"August" => "Agost", +"September" => "Septembre", +"October" => "Octobre", +"November" => "Novembre", +"December" => "Decembre", +"Choose" => "Causís", +"Cancel" => "Anulla", +"No" => "Non", +"Yes" => "Òc", +"Ok" => "D'accòrdi", +"No categories selected for deletion." => "Pas de categorias seleccionadas per escafar.", +"Error" => "Error", +"Error while sharing" => "Error al partejar", +"Error while unsharing" => "Error al non partejar", +"Error while changing permissions" => "Error al cambiar permissions", +"Shared with you and the group" => "Partejat amb tu e lo grop", +"by" => "per", +"Shared with you by" => "Partejat amb tu per", +"Share with" => "Parteja amb", +"Share with link" => "Parteja amb lo ligam", +"Password protect" => "Parat per senhal", +"Password" => "Senhal", +"Set expiration date" => "Met la data d'expiracion", +"Expiration date" => "Data d'expiracion", +"Share via email:" => "Parteja tras corrièl :", +"No people found" => "Deguns trobat", +"Resharing is not allowed" => "Tornar partejar es pas permis", +"Shared in" => "Partejat dins", +"with" => "amb", +"Unshare" => "Non parteje", +"can edit" => "pòt modificar", +"access control" => "Contraròtle d'acces", +"create" => "crea", +"update" => "met a jorn", +"delete" => "escafa", +"share" => "parteja", +"Password protected" => "Parat per senhal", +"Error unsetting expiration date" => "Error al metre de la data d'expiracion", +"Error setting expiration date" => "Error setting expiration date", +"ownCloud password reset" => "senhal d'ownCloud tornat botar", +"Use the following link to reset your password: {link}" => "Utiliza lo ligam seguent per tornar botar lo senhal : {link}", +"You will receive a link to reset your password via Email." => "Reçaupràs un ligam per tornar botar ton senhal via corrièl.", +"Requested" => "Requesit", +"Login failed!" => "Fracàs de login", +"Username" => "Nom d'usancièr", +"Request reset" => "Tornar botar requesit", +"Your password was reset" => "Ton senhal es estat tornat botar", +"To login page" => "Pagina cap al login", +"New password" => "Senhal nòu", +"Reset password" => "Senhal tornat botar", +"Personal" => "Personal", +"Users" => "Usancièrs", +"Apps" => "Apps", +"Admin" => "Admin", +"Help" => "Ajuda", +"Access forbidden" => "Acces enebit", +"Cloud not found" => "Nívol pas trobada", +"Edit categories" => "Edita categorias", +"Add" => "Ajusta", +"Create an admin account" => "Crea un compte admin", +"Advanced" => "Avançat", +"Data folder" => "Dorsièr de donadas", +"Configure the database" => "Configura la basa de donadas", +"will be used" => "serà utilizat", +"Database user" => "Usancièr de la basa de donadas", +"Database password" => "Senhal de la basa de donadas", +"Database name" => "Nom de la basa de donadas", +"Database tablespace" => "Espandi de taula de basa de donadas", +"Database host" => "Òste de basa de donadas", +"Finish setup" => "Configuracion acabada", +"web services under your control" => "Services web jos ton contraròtle", +"Log out" => "Sortida", +"Lost your password?" => "L'as perdut lo senhal ?", +"remember" => "bremba-te", +"Log in" => "Dintrada", +"You are logged out." => "Sias pas dintra (t/ada)", +"prev" => "dariièr", +"next" => "venent" +); diff --git a/core/l10n/pl.php b/core/l10n/pl.php index 5f8752b69b..cc734802cc 100644 --- a/core/l10n/pl.php +++ b/core/l10n/pl.php @@ -15,12 +15,31 @@ "October" => "Październik", "November" => "Listopad", "December" => "Grudzień", +"Choose" => "Wybierz", "Cancel" => "Anuluj", "No" => "Nie", "Yes" => "Tak", "Ok" => "Ok", "No categories selected for deletion." => "Nie ma kategorii zaznaczonych do usunięcia.", "Error" => "Błąd", +"Error while sharing" => "Błąd podczas współdzielenia", +"Error while changing permissions" => "Błąd przy zmianie uprawnień", +"Share with" => "Współdziel z", +"Share with link" => "Współdziel z link", +"Password protect" => "Zabezpieczone hasłem", +"Password" => "Hasło", +"Set expiration date" => "Ustaw datę wygaśnięcia", +"Expiration date" => "Data wygaśnięcia", +"No people found" => "Nie znaleziono ludzi", +"Resharing is not allowed" => "Współdzielenie nie jest możliwe", +"can edit" => "można edytować", +"access control" => "kontrola dostępu", +"create" => "utwórz", +"update" => "uaktualnij", +"delete" => "usuń", +"share" => "współdziel", +"Password protected" => "Zabezpieczone hasłem", +"Error setting expiration date" => "Błąd podczas ustawiania daty wygaśnięcia", "ownCloud password reset" => "restart hasła", "Use the following link to reset your password: {link}" => "Proszę użyć tego odnośnika do zresetowania hasła: {link}", "You will receive a link to reset your password via Email." => "Odnośnik służący do resetowania hasła zostanie wysłany na adres e-mail.", @@ -42,7 +61,6 @@ "Edit categories" => "Edytuj kategorię", "Add" => "Dodaj", "Create an admin account" => "Tworzenie konta administratora", -"Password" => "Hasło", "Advanced" => "Zaawansowane", "Data folder" => "Katalog danych", "Configure the database" => "Konfiguracja bazy danych", diff --git a/core/l10n/pt_BR.php b/core/l10n/pt_BR.php index 9ad2f3de53..37e411ec07 100644 --- a/core/l10n/pt_BR.php +++ b/core/l10n/pt_BR.php @@ -15,12 +15,34 @@ "October" => "Outubro", "November" => "Novembro", "December" => "Dezembro", +"Choose" => "Escolha", "Cancel" => "Cancelar", "No" => "Não", "Yes" => "Sim", "Ok" => "Ok", "No categories selected for deletion." => "Nenhuma categoria selecionada para deletar.", "Error" => "Erro", +"Error while sharing" => "Erro ao compartilhar", +"Error while unsharing" => "Erro ao descompartilhar", +"Error while changing permissions" => "Erro ao mudar permissões", +"Share with" => "Compartilhar com", +"Share with link" => "Compartilhar com link", +"Password protect" => "Proteger com senha", +"Password" => "Senha", +"Set expiration date" => "Definir data de expiração", +"Expiration date" => "Data de expiração", +"No people found" => "Nenhuma pessoa encontrada", +"Resharing is not allowed" => "Não é permitido re-compartilhar", +"Unshare" => "Descompartilhar", +"can edit" => "pode editar", +"access control" => "controle de acesso", +"create" => "criar", +"update" => "atualizar", +"delete" => "remover", +"share" => "compartilhar", +"Password protected" => "Protegido com senha", +"Error unsetting expiration date" => "Erro ao remover data de expiração", +"Error setting expiration date" => "Erro ao definir data de expiração", "ownCloud password reset" => "Redefinir senha ownCloud", "Use the following link to reset your password: {link}" => "Use o seguinte link para redefinir sua senha: {link}", "You will receive a link to reset your password via Email." => "Você receberá um link para redefinir sua senha via e-mail.", @@ -42,7 +64,6 @@ "Edit categories" => "Editar categorias", "Add" => "Adicionar", "Create an admin account" => "Criar uma conta de administrador", -"Password" => "Senha", "Advanced" => "Avançado", "Data folder" => "Pasta de dados", "Configure the database" => "Configurar o banco de dados", @@ -50,6 +71,7 @@ "Database user" => "Usuário de banco de dados", "Database password" => "Senha do banco de dados", "Database name" => "Nome do banco de dados", +"Database tablespace" => "Espaço de tabela do banco de dados", "Database host" => "Banco de dados do host", "Finish setup" => "Concluir configuração", "web services under your control" => "web services sob seu controle", diff --git a/core/l10n/pt_PT.php b/core/l10n/pt_PT.php index 4da513c1ae..4ab9958f43 100644 --- a/core/l10n/pt_PT.php +++ b/core/l10n/pt_PT.php @@ -21,6 +21,7 @@ "Ok" => "Ok", "No categories selected for deletion." => "Nenhuma categoria seleccionar para eliminar", "Error" => "Erro", +"Password" => "Palavra chave", "ownCloud password reset" => "Reposição da password ownCloud", "Use the following link to reset your password: {link}" => "Use o seguinte endereço para repor a sua password: {link}", "You will receive a link to reset your password via Email." => "Vai receber um endereço para repor a sua password", @@ -42,7 +43,6 @@ "Edit categories" => "Editar categorias", "Add" => "Adicionar", "Create an admin account" => "Criar uma conta administrativa", -"Password" => "Palavra chave", "Advanced" => "Avançado", "Data folder" => "Pasta de dados", "Configure the database" => "Configure a base de dados", diff --git a/core/l10n/ro.php b/core/l10n/ro.php index 484a47727d..75e88e2cc1 100644 --- a/core/l10n/ro.php +++ b/core/l10n/ro.php @@ -3,6 +3,46 @@ "No category to add?" => "Nici o categorie de adăugat?", "This category already exists: " => "Această categorie deja există:", "Settings" => "Configurări", +"January" => "Ianuarie", +"February" => "Februarie", +"March" => "Martie", +"April" => "Aprilie", +"May" => "Mai", +"June" => "Iunie", +"July" => "Iulie", +"August" => "August", +"September" => "Septembrie", +"October" => "Octombrie", +"November" => "Noiembrie", +"December" => "Decembrie", +"Choose" => "Alege", +"Cancel" => "Anulare", +"No" => "Nu", +"Yes" => "Da", +"Ok" => "Ok", +"No categories selected for deletion." => "Nici o categorie selectată pentru ștergere.", +"Error" => "Eroare", +"Error while sharing" => "Eroare la partajare", +"Error while unsharing" => "Eroare la anularea partajării", +"Error while changing permissions" => "Eroare la modificarea permisiunilor", +"Share with" => "Partajat cu", +"Share with link" => "Partajare cu legătură", +"Password protect" => "Protejare cu parolă", +"Password" => "Parola", +"Set expiration date" => "Specifică data expirării", +"Expiration date" => "Data expirării", +"No people found" => "Nici o persoană găsită", +"Resharing is not allowed" => "Repartajarea nu este permisă", +"Unshare" => "Anulare partajare", +"can edit" => "poate edita", +"access control" => "control acces", +"create" => "creare", +"update" => "actualizare", +"delete" => "ștergere", +"share" => "partajare", +"Password protected" => "Protejare cu parolă", +"Error unsetting expiration date" => "Eroare la anularea datei de expirare", +"Error setting expiration date" => "Eroare la specificarea datei de expirare", "ownCloud password reset" => "Resetarea parolei ownCloud ", "Use the following link to reset your password: {link}" => "Folosește următorul link pentru a reseta parola: {link}", "You will receive a link to reset your password via Email." => "Vei primi un mesaj prin care vei putea reseta parola via email", @@ -24,7 +64,6 @@ "Edit categories" => "Editează categoriile", "Add" => "Adaugă", "Create an admin account" => "Crează un cont de administrator", -"Password" => "Parola", "Advanced" => "Avansat", "Data folder" => "Director date", "Configure the database" => "Configurează baza de date", @@ -32,6 +71,7 @@ "Database user" => "Utilizatorul bazei de date", "Database password" => "Parola bazei de date", "Database name" => "Numele bazei de date", +"Database tablespace" => "Tabela de spațiu a bazei de date", "Database host" => "Bază date", "Finish setup" => "Finalizează instalarea", "web services under your control" => "servicii web controlate de tine", diff --git a/core/l10n/ru.php b/core/l10n/ru.php index c7ce381c05..4aec059d40 100644 --- a/core/l10n/ru.php +++ b/core/l10n/ru.php @@ -21,6 +21,7 @@ "Ok" => "Ок", "No categories selected for deletion." => "Нет категорий для удаления.", "Error" => "Ошибка", +"Password" => "Пароль", "ownCloud password reset" => "Сброс пароля ", "Use the following link to reset your password: {link}" => "Используйте следующую ссылку чтобы сбросить пароль: {link}", "You will receive a link to reset your password via Email." => "На ваш адрес Email выслана ссылка для сброса пароля.", @@ -42,7 +43,6 @@ "Edit categories" => "Редактировать категории", "Add" => "Добавить", "Create an admin account" => "Создать учётную запись администратора", -"Password" => "Пароль", "Advanced" => "Дополнительно", "Data folder" => "Директория с данными", "Configure the database" => "Настройка базы данных", diff --git a/core/l10n/ru_RU.php b/core/l10n/ru_RU.php index 190ecda9eb..00a46c0424 100644 --- a/core/l10n/ru_RU.php +++ b/core/l10n/ru_RU.php @@ -15,12 +15,25 @@ "October" => "Октябрь", "November" => "Ноябрь", "December" => "Декабрь", +"Choose" => "Выбрать", "Cancel" => "Отмена", "No" => "Нет", "Yes" => "Да", "Ok" => "Да", "No categories selected for deletion." => "Нет категорий, выбранных для удаления.", "Error" => "Ошибка", +"Error while sharing" => "Ошибка создания общего доступа", +"Error while unsharing" => "Ошибка отключения общего доступа", +"Error while changing permissions" => "Ошибка при изменении прав доступа", +"Password protect" => "Защитить паролем", +"Password" => "Пароль", +"No people found" => "Не найдено людей", +"Unshare" => "Отключить общий доступ", +"access control" => "контроль доступа", +"create" => "создать", +"update" => "обновить", +"delete" => "удалить", +"share" => "сделать общим", "ownCloud password reset" => "Переназначение пароля", "Use the following link to reset your password: {link}" => "Воспользуйтесь следующей ссылкой для переназначения пароля: {link}", "You will receive a link to reset your password via Email." => "Вы получите ссылку для восстановления пароля по электронной почте.", @@ -42,7 +55,6 @@ "Edit categories" => "Редактирование категорий", "Add" => "Добавить", "Create an admin account" => "Создать admin account", -"Password" => "Пароль", "Advanced" => "Расширенный", "Data folder" => "Папка данных", "Configure the database" => "Настроить базу данных", diff --git a/core/l10n/sk_SK.php b/core/l10n/sk_SK.php index 8c3339170d..069a169b5d 100644 --- a/core/l10n/sk_SK.php +++ b/core/l10n/sk_SK.php @@ -21,6 +21,7 @@ "Ok" => "Ok", "No categories selected for deletion." => "Neboli vybrané žiadne kategórie pre odstránenie.", "Error" => "Chyba", +"Password" => "Heslo", "ownCloud password reset" => "Obnovenie hesla pre ownCloud", "Use the following link to reset your password: {link}" => "Použite nasledujúci odkaz pre obnovenie vášho hesla: {link}", "You will receive a link to reset your password via Email." => "Odkaz pre obnovenie hesla obdržíte E-mailom.", @@ -38,11 +39,10 @@ "Admin" => "Administrácia", "Help" => "Pomoc", "Access forbidden" => "Prístup odmietnutý", -"Cloud not found" => "Nedokážem nájsť", +"Cloud not found" => "Nenájdené", "Edit categories" => "Úprava kategórií", "Add" => "Pridať", "Create an admin account" => "Vytvoriť administrátorský účet", -"Password" => "Heslo", "Advanced" => "Pokročilé", "Data folder" => "Priečinok dát", "Configure the database" => "Nastaviť databázu", diff --git a/core/l10n/sl.php b/core/l10n/sl.php index b7850c2861..2c8ff34e63 100644 --- a/core/l10n/sl.php +++ b/core/l10n/sl.php @@ -21,6 +21,8 @@ "Ok" => "V redu", "No categories selected for deletion." => "Za izbris ni bila izbrana nobena kategorija.", "Error" => "Napaka", +"Password" => "Geslo", +"Password protected" => "Zaščiteno z geslom", "ownCloud password reset" => "Ponastavitev gesla ownCloud", "Use the following link to reset your password: {link}" => "Uporabite sledečo povezavo za ponastavitev gesla: {link}", "You will receive a link to reset your password via Email." => "Na e-pošto boste prejeli povezavo s katero lahko ponastavite vaše geslo.", @@ -42,7 +44,6 @@ "Edit categories" => "Uredi kategorije", "Add" => "Dodaj", "Create an admin account" => "Ustvari skrbniški račun", -"Password" => "Geslo", "Advanced" => "Napredne možnosti", "Data folder" => "Mapa s podatki", "Configure the database" => "Nastavi podatkovno zbirko", diff --git a/core/l10n/sr.php b/core/l10n/sr.php index c2f2f07640..dca207441f 100644 --- a/core/l10n/sr.php +++ b/core/l10n/sr.php @@ -1,5 +1,6 @@ "Подешавања", +"Password" => "Лозинка", "Use the following link to reset your password: {link}" => "Овом везом ресетујте своју лозинку: {link}", "You will receive a link to reset your password via Email." => "Добићете везу за ресетовање лозинке путем е-поште.", "Requested" => "Захтевано", @@ -17,7 +18,6 @@ "Help" => "Помоћ", "Cloud not found" => "Облак није нађен", "Create an admin account" => "Направи административни налог", -"Password" => "Лозинка", "Advanced" => "Напредно", "Data folder" => "Фацикла података", "Configure the database" => "Подешавање базе", diff --git a/core/l10n/sr@latin.php b/core/l10n/sr@latin.php index 8bc20cf1a6..c1d8a96073 100644 --- a/core/l10n/sr@latin.php +++ b/core/l10n/sr@latin.php @@ -1,5 +1,6 @@ "Podešavanja", +"Password" => "Lozinka", "You will receive a link to reset your password via Email." => "Dobićete vezu za resetovanje lozinke putem e-pošte.", "Requested" => "Zahtevano", "Login failed!" => "Nesupela prijava!", @@ -15,7 +16,6 @@ "Help" => "Pomoć", "Cloud not found" => "Oblak nije nađen", "Create an admin account" => "Napravi administrativni nalog", -"Password" => "Lozinka", "Advanced" => "Napredno", "Data folder" => "Facikla podataka", "Configure the database" => "Podešavanje baze", diff --git a/core/l10n/sv.php b/core/l10n/sv.php index 6b075f0aaf..90e416fc73 100644 --- a/core/l10n/sv.php +++ b/core/l10n/sv.php @@ -15,12 +15,40 @@ "October" => "Oktober", "November" => "November", "December" => "December", +"Choose" => "Välj", "Cancel" => "Avbryt", "No" => "Nej", "Yes" => "Ja", "Ok" => "Ok", "No categories selected for deletion." => "Inga kategorier valda för radering.", "Error" => "Fel", +"Error while sharing" => "Fel vid delning", +"Error while unsharing" => "Fel när delning skulle avslutas", +"Error while changing permissions" => "Fel vid ändring av rättigheter", +"Shared with you and the group" => "Delas med dig och gruppen", +"by" => "av", +"Shared with you by" => "Delas med dig av", +"Share with" => "Delad med", +"Share with link" => "Delad med länk", +"Password protect" => "Lösenordsskydda", +"Password" => "Lösenord", +"Set expiration date" => "Sätt utgångsdatum", +"Expiration date" => "Utgångsdatum", +"Share via email:" => "Dela via e-post:", +"No people found" => "Hittar inga användare", +"Resharing is not allowed" => "Dela vidare är inte tillåtet", +"Shared in" => "Delas i", +"with" => "med", +"Unshare" => "Sluta dela", +"can edit" => "kan redigera", +"access control" => "åtkomstkontroll", +"create" => "skapa", +"update" => "uppdatera", +"delete" => "radera", +"share" => "dela", +"Password protected" => "Lösenordsskyddad", +"Error unsetting expiration date" => "Fel vid borttagning av utgångsdatum", +"Error setting expiration date" => "Fel vid sättning av utgångsdatum", "ownCloud password reset" => "ownCloud lösenordsåterställning", "Use the following link to reset your password: {link}" => "Använd följande länk för att återställa lösenordet: {link}", "You will receive a link to reset your password via Email." => "Du får en länk att återställa ditt lösenord via e-post.", @@ -42,7 +70,6 @@ "Edit categories" => "Redigera kategorier", "Add" => "Lägg till", "Create an admin account" => "Skapa ett administratörskonto", -"Password" => "Lösenord", "Advanced" => "Avancerat", "Data folder" => "Datamapp", "Configure the database" => "Konfigurera databasen", diff --git a/core/l10n/th_TH.php b/core/l10n/th_TH.php index fd25105f15..f5a1775f6a 100644 --- a/core/l10n/th_TH.php +++ b/core/l10n/th_TH.php @@ -15,12 +15,34 @@ "October" => "ตุลาคม", "November" => "พฤศจิกายน", "December" => "ธันวาคม", +"Choose" => "เลือก", "Cancel" => "ยกเลิก", "No" => "ไม่ตกลง", "Yes" => "ตกลง", "Ok" => "ตกลง", "No categories selected for deletion." => "ยังไม่ได้เลือกหมวดหมู่ที่ต้องการลบ", "Error" => "พบข้อผิดพลาด", +"Error while sharing" => "เกิดข้อผิดพลาดในระหว่างการแชร์ข้อมูล", +"Error while unsharing" => "เกิดข้อผิดพลาดในการยกเลิกการแชร์ข้อมูล", +"Error while changing permissions" => "เกิดข้อผิดพลาดในการเปลี่ยนสิทธิ์การเข้าใช้งาน", +"Share with" => "แชร์ให้กับ", +"Share with link" => "แชร์ด้วยลิงก์", +"Password protect" => "ใส่รหัสผ่านไว้", +"Password" => "รหัสผ่าน", +"Set expiration date" => "กำหนดวันที่หมดอายุ", +"Expiration date" => "วันที่หมดอายุ", +"No people found" => "ไม่พบบุคคลที่ต้องการ", +"Resharing is not allowed" => "ไม่อนุญาตให้แชร์ข้อมูลซ้ำได้", +"Unshare" => "ยกเลิกการแชร์", +"can edit" => "สามารถแก้ไข", +"access control" => "ระดับควบคุมการเข้าใช้งาน", +"create" => "สร้าง", +"update" => "อัพเดท", +"delete" => "ลบ", +"share" => "แชร์", +"Password protected" => "ใส่รหัสผ่านไว้", +"Error unsetting expiration date" => "เกิดข้อผิดพลาดในการยกเลิกการตั้งค่าวันที่หมดอายุ", +"Error setting expiration date" => "เกิดข้อผิดพลาดในการตั้งค่าวันที่หมดอายุ", "ownCloud password reset" => "รีเซ็ตรหัสผ่าน ownCloud", "Use the following link to reset your password: {link}" => "ใช้ลิงค์ต่อไปนี้เพื่อเปลี่ยนรหัสผ่านของคุณใหม่: {link}", "You will receive a link to reset your password via Email." => "คุณจะได้รับลิงค์เพื่อกำหนดรหัสผ่านใหม่ทางอีเมล์", @@ -42,7 +64,6 @@ "Edit categories" => "แก้ไขหมวดหมู่", "Add" => "เพิ่ม", "Create an admin account" => "สร้าง บัญชีผู้ดูแลระบบ", -"Password" => "รหัสผ่าน", "Advanced" => "ขั้นสูง", "Data folder" => "โฟลเดอร์เก็บข้อมูล", "Configure the database" => "กำหนดค่าฐานข้อมูล", diff --git a/core/l10n/tr.php b/core/l10n/tr.php index 7d6d4a33a6..4e86f9493f 100644 --- a/core/l10n/tr.php +++ b/core/l10n/tr.php @@ -21,6 +21,7 @@ "Ok" => "Tamam", "No categories selected for deletion." => "Silmek için bir kategori seçilmedi", "Error" => "Hata", +"Password" => "Parola", "ownCloud password reset" => "ownCloud parola sıfırlama", "Use the following link to reset your password: {link}" => "Bu bağlantıyı kullanarak parolanızı sıfırlayın: {link}", "You will receive a link to reset your password via Email." => "Parolanızı sıfırlamak için bir bağlantı Eposta olarak gönderilecek.", @@ -42,7 +43,6 @@ "Edit categories" => "Kategorileri düzenle", "Add" => "Ekle", "Create an admin account" => "Bir yönetici hesabı oluşturun", -"Password" => "Parola", "Advanced" => "Gelişmiş", "Data folder" => "Veri klasörü", "Configure the database" => "Veritabanını ayarla", diff --git a/core/l10n/uk.php b/core/l10n/uk.php index e84ec8f883..73ad3f3dfb 100644 --- a/core/l10n/uk.php +++ b/core/l10n/uk.php @@ -16,6 +16,7 @@ "No" => "Ні", "Yes" => "Так", "Error" => "Помилка", +"Password" => "Пароль", "You will receive a link to reset your password via Email." => "Ви отримаєте посилання для скидання вашого паролю на e-mail.", "Username" => "Ім'я користувача", "Your password was reset" => "Ваш пароль був скинутий", @@ -27,7 +28,6 @@ "Admin" => "Адміністратор", "Help" => "Допомога", "Add" => "Додати", -"Password" => "Пароль", "Configure the database" => "Налаштування бази даних", "will be used" => "буде використано", "Database user" => "Користувач бази даних", diff --git a/core/l10n/vi.php b/core/l10n/vi.php index de4764c3a5..26155a1866 100644 --- a/core/l10n/vi.php +++ b/core/l10n/vi.php @@ -21,6 +21,7 @@ "Ok" => "Ok", "No categories selected for deletion." => "Không có thể loại nào được chọn để xóa.", "Error" => "Lỗi", +"Password" => "Mật khẩu", "ownCloud password reset" => "Khôi phục mật khẩu Owncloud ", "Use the following link to reset your password: {link}" => "Dùng đường dẫn sau để khôi phục lại mật khẩu : {link}", "You will receive a link to reset your password via Email." => "Vui lòng kiểm tra Email để khôi phục lại mật khẩu.", @@ -42,7 +43,6 @@ "Edit categories" => "Sửa thể loại", "Add" => "Thêm", "Create an admin account" => "Tạo một tài khoản quản trị", -"Password" => "Mật khẩu", "Advanced" => "Nâng cao", "Data folder" => "Thư mục dữ liệu", "Configure the database" => "Cấu hình Cơ Sở Dữ Liệu", diff --git a/core/l10n/zh_CN.GB2312.php b/core/l10n/zh_CN.GB2312.php index 58104df399..de437cf2e4 100644 --- a/core/l10n/zh_CN.GB2312.php +++ b/core/l10n/zh_CN.GB2312.php @@ -21,6 +21,7 @@ "Ok" => "好的", "No categories selected for deletion." => "没有选者要删除的分类.", "Error" => "错误", +"Password" => "密码", "ownCloud password reset" => "私有云密码重置", "Use the following link to reset your password: {link}" => "使用下面的链接来重置你的密码:{link}", "You will receive a link to reset your password via Email." => "你将会收到一个重置密码的链接", @@ -42,7 +43,6 @@ "Edit categories" => "编辑分类", "Add" => "添加", "Create an admin account" => "建立一个 管理帐户", -"Password" => "密码", "Advanced" => "进阶", "Data folder" => "数据存放文件夹", "Configure the database" => "配置数据库", @@ -50,6 +50,7 @@ "Database user" => "数据库用户", "Database password" => "数据库密码", "Database name" => "数据库用户名", +"Database tablespace" => "数据库表格空间", "Database host" => "数据库主机", "Finish setup" => "完成安装", "web services under your control" => "你控制下的网络服务", diff --git a/core/l10n/zh_CN.php b/core/l10n/zh_CN.php index 4e0a37a877..6ddc41ffeb 100644 --- a/core/l10n/zh_CN.php +++ b/core/l10n/zh_CN.php @@ -15,12 +15,34 @@ "October" => "十月", "November" => "十一月", "December" => "十二月", +"Choose" => "选择(&C)...", "Cancel" => "取消", "No" => "否", "Yes" => "是", "Ok" => "好", "No categories selected for deletion." => "没有选择要删除的类别", "Error" => "错误", +"Error while sharing" => "共享时出错", +"Error while unsharing" => "取消共享时出错", +"Error while changing permissions" => "修改权限时出错", +"Share with" => "共享", +"Share with link" => "共享链接", +"Password protect" => "密码保护", +"Password" => "密码", +"Set expiration date" => "设置过期日期", +"Expiration date" => "过期日期", +"No people found" => "未找到此人", +"Resharing is not allowed" => "不允许二次共享", +"Unshare" => "取消共享", +"can edit" => "可以修改", +"access control" => "访问控制", +"create" => "创建", +"update" => "更新", +"delete" => "删除", +"share" => "共享", +"Password protected" => "密码已受保护", +"Error unsetting expiration date" => "取消设置过期日期时出错", +"Error setting expiration date" => "设置过期日期时出错", "ownCloud password reset" => "重置 ownCloud 密码", "Use the following link to reset your password: {link}" => "使用以下链接重置您的密码:{link}", "You will receive a link to reset your password via Email." => "您将会收到包含可以重置密码链接的邮件。", @@ -42,7 +64,6 @@ "Edit categories" => "编辑分类", "Add" => "添加", "Create an admin account" => "创建管理员账号", -"Password" => "密码", "Advanced" => "高级", "Data folder" => "数据目录", "Configure the database" => "配置数据库", diff --git a/core/l10n/zh_TW.php b/core/l10n/zh_TW.php index 57a087fae9..ccaa6b95ee 100644 --- a/core/l10n/zh_TW.php +++ b/core/l10n/zh_TW.php @@ -21,6 +21,7 @@ "Ok" => "Ok", "No categories selected for deletion." => "沒選擇要刪除的分類", "Error" => "錯誤", +"Password" => "密碼", "ownCloud password reset" => "ownCloud 密碼重設", "Use the following link to reset your password: {link}" => "請循以下聯結重設你的密碼: (聯結) ", "You will receive a link to reset your password via Email." => "重設密碼的連結將會寄到你的電子郵件信箱", @@ -42,7 +43,6 @@ "Edit categories" => "編輯分類", "Add" => "添加", "Create an admin account" => "建立一個管理者帳號", -"Password" => "密碼", "Advanced" => "進階", "Data folder" => "資料夾", "Configure the database" => "設定資料庫", diff --git a/core/lostpassword/index.php b/core/lostpassword/index.php index 3f58b03c98..4cd8b9079f 100644 --- a/core/lostpassword/index.php +++ b/core/lostpassword/index.php @@ -13,11 +13,11 @@ require_once '../../lib/base.php'; // Someone lost their password: if (isset($_POST['user'])) { if (OC_User::userExists($_POST['user'])) { - $token = sha1($_POST['user'].md5(uniqid(rand(), true))); + $token = hash("sha256", $_POST['user'].OC_Util::generate_random_bytes(10)); OC_Preferences::setValue($_POST['user'], 'owncloud', 'lostpassword', $token); $email = OC_Preferences::getValue($_POST['user'], 'settings', 'email', ''); - if (!empty($email) and isset($_POST['sectoken']) and isset($_SESSION['sectoken']) and ($_POST['sectoken']==$_SESSION['sectoken']) ) { - $link = OC_Helper::linkToAbsolute('core/lostpassword', 'resetpassword.php', array('user' => urlencode($_POST['user']), 'token' => $token)); + if (!empty($email)) { + $link = OC_Helper::linkToAbsolute('core/lostpassword', 'resetpassword.php', array('user' => $_POST['user'], 'token' => $token)); $tmpl = new OC_Template('core/lostpassword', 'email'); $tmpl->assign('link', $link, false); $msg = $tmpl->fetchPage(); @@ -25,18 +25,11 @@ if (isset($_POST['user'])) { $from = 'lostpassword-noreply@' . OCP\Util::getServerHost(); OC_MAIL::send($email, $_POST['user'], $l->t('ownCloud password reset'), $msg, $from, 'ownCloud'); echo('sent'); - } - $sectoken=rand(1000000, 9999999); - $_SESSION['sectoken']=$sectoken; - OC_Template::printGuestPage('core/lostpassword', 'lostpassword', array('error' => false, 'requested' => true, 'sectoken' => $sectoken)); + OC_Template::printGuestPage('core/lostpassword', 'lostpassword', array('error' => false, 'requested' => true)); } else { - $sectoken=rand(1000000, 9999999); - $_SESSION['sectoken']=$sectoken; - OC_Template::printGuestPage('core/lostpassword', 'lostpassword', array('error' => true, 'requested' => false, 'sectoken' => $sectoken)); + OC_Template::printGuestPage('core/lostpassword', 'lostpassword', array('error' => true, 'requested' => false)); } } else { - $sectoken=rand(1000000, 9999999); - $_SESSION['sectoken']=$sectoken; - OC_Template::printGuestPage('core/lostpassword', 'lostpassword', array('error' => false, 'requested' => false, 'sectoken' => $sectoken)); + OC_Template::printGuestPage('core/lostpassword', 'lostpassword', array('error' => false, 'requested' => false)); } diff --git a/core/lostpassword/templates/lostpassword.php b/core/lostpassword/templates/lostpassword.php index 754eabdad6..4b871963b8 100644 --- a/core/lostpassword/templates/lostpassword.php +++ b/core/lostpassword/templates/lostpassword.php @@ -10,7 +10,6 @@

    -

    diff --git a/core/templates/layout.user.php b/core/templates/layout.user.php index 679be2657d..b6d8a7604a 100644 --- a/core/templates/layout.user.php +++ b/core/templates/layout.user.php @@ -11,6 +11,8 @@ var oc_webroot = ''; var oc_appswebroots = ; var oc_current_user = ''; + var oc_requesttoken = ''; + var oc_requestlifespan = ''; @@ -24,13 +26,6 @@ echo '/>'; ?> - diff --git a/core/templates/login.php b/core/templates/login.php index 2c9b766aa4..bb7a833752 100644 --- a/core/templates/login.php +++ b/core/templates/login.php @@ -1,5 +1,5 @@ -
    +
    '; } ?> @@ -12,7 +12,6 @@

    /> -

    diff --git a/db_structure.xml b/db_structure.xml index 5576db1ab8..64abdff368 100644 --- a/db_structure.xml +++ b/db_structure.xml @@ -1,665 +1,675 @@ - *dbname* - true - false - - utf8 - - - - *dbprefix*appconfig - - - - - appid - text - - true - 255 - - - - configkey - text - - true - 255 - - - - configvalue - text - true - 255 - - - - - - -
    - - - - *dbprefix*fscache - - - - - id - 1 - integer - 0 - true - 4 - - - - path - text - - true - 512 - - - - path_hash - text - - true - 32 - - - - parent - integer - - - true - 8 - - - - name - text - - - true - 300 - - - - user - text - - - true - 64 - - - - size - integer - - true - 8 - - - - ctime - integer - - - true - 8 - - - - mtime - integer - - - true - 8 - - - - mimetype - text - - - true - 96 - - - - mimepart - text - - - true - 32 - - - - encrypted - integer - 0 - true - 1 - - - - versioned - integer - 0 - true - 1 - - - - writable - integer - 0 - true - 1 - - - - fscache_path_hash_index - - path_hash - ascending - - - - - parent_index - - parent - ascending - - - - - name_index - - name - ascending - - - - - parent_name_index - - parent - ascending - - - name - ascending - - - - - -
    - - - - *dbprefix*group_user - - - - - gid - text - - true - 64 - - - - uid - text - - true - 64 - - - - -
    - - - - *dbprefix*group_admin - - - - - gid - text - - true - 64 - - - - uid - text - - true - 64 - - - - -
    - - - - *dbprefix*groups - - - - - gid - text - - true - 64 - - - - groups_pKey - true - - gid - ascending - - - - - -
    - - - - *dbprefix*locks - - - - - id - integer - 0 - true - 1 - true - 4 - - - - userid - text - - false - 200 - - - - owner - text - - false - 100 - - - - timeout - integer - - false - true - 4 - - - - created - integer - - false - 8 - - - - token - text - - false - 100 - - - - scope - integer - - false - 1 - - - - depth - integer - - false - 1 - - - - uri - clob - false - - - - -
    - - - - *dbprefix*preferences - - - - - userid - text - - true - 255 - - - - appid - text - - true - 255 - - - - configkey - text - - true - 255 - - - - configvalue - clob - false - - - - -
    - - - - *dbprefix*properties - - - - - userid - text - - true - 200 - - - - propertypath - text - - true - 255 - - - - propertyname - text - - true - 255 - - - - propertyvalue - text - true - 255 - - - - -
    - - - - *dbprefix*share - - - - - id - 1 - integer - 0 - true - 4 - - - - share_type - integer - - true - 1 - - - - share_with - text - - false - 255 - - - - uid_owner - text - - true - 255 - - - - parent - integer - - false - 4 - - - - item_type - text - - true - 64 - - - - item_source - text - - false - 255 - - - - item_target - text - - false - 255 - - - - file_source - integer - - false - 4 - - - - file_target - text - - false - 512 - - - - permissions - integer - - true - 1 - - - - stime - integer - - true - 8 - - - - accepted - integer - 0 - true - 1 - - - - expiration - timestamp - - false - - - - -
    - - - - *dbprefix*queuedtasks - - - - - id - integer - 0 - true - 1 - true - 4 - - - - app - text - - true - 255 - - - - klass - text - - true - 255 - - - - method - text - - true - 255 - - - - parameters - text - true - 255 - - - - - - -
    - - - - *dbprefix*users - - - - - uid - text - - true - 64 - - - - password - text - - true - 255 - - - - users_pKey - true - - uid - ascending - - - - - -
    + *dbname* + true + false + + utf8 + + + + *dbprefix*appconfig + + + + + appid + text + + true + 32 + + + + configkey + text + + true + 64 + + + + configvalue + clob + true + + + + appconfig_appid_key_index + + appid + ascending + + + configkey + ascending + + + + + +
    + + + + *dbprefix*fscache + + + + + id + 1 + integer + 0 + true + 4 + + + + path + text + + true + 512 + + + + path_hash + text + + true + 32 + + + + parent + integer + 0 + true + 8 + + + + name + text + + true + 300 + + + + user + text + + true + 64 + + + + size + integer + 0 + true + 8 + + + + ctime + integer + 0 + true + 8 + + + + mtime + integer + 0 + true + 8 + + + + mimetype + text + + true + 96 + + + + mimepart + text + + true + 32 + + + + encrypted + integer + 0 + true + 1 + + + + versioned + integer + 0 + true + 1 + + + + writable + integer + 0 + true + 1 + + + + fscache_path_hash_index + + path_hash + ascending + + + + + parent_index + + parent + ascending + + + + + name_index + + name + ascending + + + + + parent_name_index + + parent + ascending + + + name + ascending + + + + + +
    + + + + *dbprefix*group_user + + + + + gid + text + + true + 64 + + + + uid + text + + true + 64 + + + + +
    + + + + *dbprefix*group_admin + + + + + gid + text + + true + 64 + + + + uid + text + + true + 64 + + + + +
    + + + + *dbprefix*groups + + + + + gid + text + + true + 64 + + + + groups_pKey + true + + gid + ascending + + + + + +
    + + + + *dbprefix*locks + + + + + id + integer + 0 + true + 1 + true + 4 + + + + userid + text + + false + 64 + + + + owner + text + + false + 100 + + + + timeout + integer + false + true + 4 + + + + created + integer + false + 8 + + + + token + text + + false + 100 + + + + scope + integer + false + 1 + + + + depth + integer + false + 1 + + + + uri + clob + false + + + + +
    + + + + *dbprefix*preferences + + + + + userid + text + + true + 64 + + + + appid + text + + true + 32 + + + + configkey + text + + true + 64 + + + + configvalue + clob + false + + + + pref_userid_appid_key_index + + userid + ascending + + + appid + ascending + + + configkey + ascending + + + + + +
    + + + + *dbprefix*properties + + + + + userid + text + + true + 64 + + + + propertypath + text + + true + 255 + + + + propertyname + text + + true + 255 + + + + propertyvalue + text + true + 255 + + + + +
    + + + + *dbprefix*share + + + + + id + 1 + integer + 0 + true + 4 + + + + share_type + integer + 0 + true + 1 + + + + share_with + text + + false + 255 + + + + uid_owner + text + + true + 255 + + + + parent + integer + false + 4 + + + + item_type + text + + true + 64 + + + + item_source + text + + false + 255 + + + + item_target + text + + false + 255 + + + + file_source + integer + false + 4 + + + + file_target + text + + false + 512 + + + + permissions + integer + 0 + true + 1 + + + + stime + integer + 0 + true + 8 + + + + accepted + integer + 0 + true + 1 + + + + expiration + timestamp + + false + + + + +
    + + + + *dbprefix*queuedtasks + + + + + id + integer + 0 + true + 1 + true + 4 + + + + app + text + + true + 255 + + + + klass + text + + true + 255 + + + + method + text + + true + 255 + + + + parameters + text + true + 255 + + + + +
    + + + + *dbprefix*users + + + + + uid + text + + true + 64 + + + + password + text + + true + 255 + + + + users_pKey + true + + uid + ascending + + + + + +
    diff --git a/l10n/af/core.po b/l10n/af/core.po index 437c1e2695..b341411ef2 100644 --- a/l10n/af/core.po +++ b/l10n/af/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (http://www.transifex.com/projects/p/owncloud/language/af/)\n" "MIME-Version: 1.0\n" @@ -29,58 +29,62 @@ msgstr "" msgid "This category already exists: " msgstr "" -#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "" -#: js/js.js:593 +#: js/js.js:645 msgid "January" msgstr "" -#: js/js.js:593 +#: js/js.js:645 msgid "February" msgstr "" -#: js/js.js:593 +#: js/js.js:645 msgid "March" msgstr "" -#: js/js.js:593 +#: js/js.js:645 msgid "April" msgstr "" -#: js/js.js:593 +#: js/js.js:645 msgid "May" msgstr "" -#: js/js.js:593 +#: js/js.js:645 msgid "June" msgstr "" -#: js/js.js:594 +#: js/js.js:646 msgid "July" msgstr "" -#: js/js.js:594 +#: js/js.js:646 msgid "August" msgstr "" -#: js/js.js:594 +#: js/js.js:646 msgid "September" msgstr "" -#: js/js.js:594 +#: js/js.js:646 msgid "October" msgstr "" -#: js/js.js:594 +#: js/js.js:646 msgid "November" msgstr "" -#: js/js.js:594 +#: js/js.js:646 msgid "December" msgstr "" +#: js/oc-dialogs.js:123 +msgid "Choose" +msgstr "" + #: js/oc-dialogs.js:143 js/oc-dialogs.js:163 msgid "Cancel" msgstr "" @@ -101,10 +105,119 @@ msgstr "" msgid "No categories selected for deletion." msgstr "" -#: js/oc-vcategories.js:68 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 +#: js/share.js:501 msgid "Error" msgstr "" +#: js/share.js:103 +msgid "Error while sharing" +msgstr "" + +#: js/share.js:114 +msgid "Error while unsharing" +msgstr "" + +#: js/share.js:121 +msgid "Error while changing permissions" +msgstr "" + +#: js/share.js:130 +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" +msgstr "" + +#: js/share.js:132 +msgid "Shared with you by" +msgstr "" + +#: js/share.js:137 +msgid "Share with" +msgstr "" + +#: js/share.js:142 +msgid "Share with link" +msgstr "" + +#: js/share.js:143 +msgid "Password protect" +msgstr "" + +#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +msgid "Password" +msgstr "" + +#: js/share.js:152 +msgid "Set expiration date" +msgstr "" + +#: js/share.js:153 +msgid "Expiration date" +msgstr "" + +#: js/share.js:185 +msgid "Share via email:" +msgstr "" + +#: js/share.js:187 +msgid "No people found" +msgstr "" + +#: js/share.js:214 +msgid "Resharing is not allowed" +msgstr "" + +#: js/share.js:250 +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" +msgstr "" + +#: js/share.js:271 +msgid "Unshare" +msgstr "" + +#: js/share.js:279 +msgid "can edit" +msgstr "" + +#: js/share.js:281 +msgid "access control" +msgstr "" + +#: js/share.js:284 +msgid "create" +msgstr "" + +#: js/share.js:287 +msgid "update" +msgstr "" + +#: js/share.js:290 +msgid "delete" +msgstr "" + +#: js/share.js:293 +msgid "share" +msgstr "" + +#: js/share.js:317 js/share.js:476 +msgid "Password protected" +msgstr "" + +#: js/share.js:489 +msgid "Error unsetting expiration date" +msgstr "" + +#: js/share.js:501 +msgid "Error setting expiration date" +msgstr "" + #: lostpassword/index.php:26 msgid "ownCloud password reset" msgstr "" @@ -190,10 +303,6 @@ msgstr "" msgid "Create an admin account" msgstr "" -#: templates/installation.php:30 templates/login.php:13 -msgid "Password" -msgstr "" - #: templates/installation.php:36 msgid "Advanced" msgstr "" @@ -235,11 +344,11 @@ msgstr "" msgid "Finish setup" msgstr "" -#: templates/layout.guest.php:42 +#: templates/layout.guest.php:36 msgid "web services under your control" msgstr "" -#: templates/layout.user.php:45 +#: templates/layout.user.php:34 msgid "Log out" msgstr "" diff --git a/l10n/af/files.po b/l10n/af/files.po index 6cd6b21cef..b7a6a22ae8 100644 --- a/l10n/af/files.po +++ b/l10n/af/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-26 13:19+0200\n" +"PO-Revision-Date: 2012-09-26 11:20+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (http://www.transifex.com/projects/p/owncloud/language/af/)\n" "MIME-Version: 1.0\n" @@ -59,39 +59,43 @@ msgstr "" msgid "Delete" msgstr "" -#: js/filelist.js:186 js/filelist.js:188 +#: js/fileactions.js:182 +msgid "Rename" +msgstr "" + +#: js/filelist.js:190 js/filelist.js:192 msgid "already exists" msgstr "" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "replace" msgstr "" -#: js/filelist.js:186 +#: js/filelist.js:190 msgid "suggest name" msgstr "" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "cancel" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 +#: js/filelist.js:239 js/filelist.js:241 msgid "replaced" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:239 js/filelist.js:241 js/filelist.js:273 js/filelist.js:275 msgid "undo" msgstr "" -#: js/filelist.js:237 +#: js/filelist.js:241 msgid "with" msgstr "" -#: js/filelist.js:268 +#: js/filelist.js:273 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:275 msgid "deleted" msgstr "" @@ -107,47 +111,107 @@ msgstr "" msgid "Upload Error" msgstr "" -#: js/files.js:236 js/files.js:341 js/files.js:370 +#: js/files.js:236 js/files.js:341 js/files.js:371 msgid "Pending" msgstr "" -#: js/files.js:355 +#: js/files.js:256 +msgid "1 file uploading" +msgstr "" + +#: js/files.js:259 js/files.js:304 js/files.js:319 +msgid "files uploading" +msgstr "" + +#: js/files.js:322 js/files.js:355 msgid "Upload cancelled." msgstr "" -#: js/files.js:423 +#: js/files.js:424 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:493 +#: js/files.js:494 msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:667 +msgid "files scanned" +msgstr "" + +#: js/files.js:675 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:48 +msgid "Name" +msgstr "" + +#: js/files.js:749 templates/index.php:56 msgid "Size" msgstr "" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:750 templates/index.php:58 msgid "Modified" msgstr "" -#: js/files.js:774 +#: js/files.js:777 msgid "folder" msgstr "" -#: js/files.js:776 +#: js/files.js:779 msgid "folders" msgstr "" -#: js/files.js:784 +#: js/files.js:787 msgid "file" msgstr "" -#: js/files.js:786 +#: js/files.js:789 msgid "files" msgstr "" +#: js/files.js:833 +msgid "seconds ago" +msgstr "" + +#: js/files.js:834 +msgid "minute ago" +msgstr "" + +#: js/files.js:835 +msgid "minutes ago" +msgstr "" + +#: js/files.js:838 +msgid "today" +msgstr "" + +#: js/files.js:839 +msgid "yesterday" +msgstr "" + +#: js/files.js:840 +msgid "days ago" +msgstr "" + +#: js/files.js:841 +msgid "last month" +msgstr "" + +#: js/files.js:843 +msgid "months ago" +msgstr "" + +#: js/files.js:844 +msgid "last year" +msgstr "" + +#: js/files.js:845 +msgid "years ago" +msgstr "" + #: templates/admin.php:5 msgid "File handling" msgstr "" @@ -196,7 +260,7 @@ msgstr "" msgid "From url" msgstr "" -#: templates/index.php:21 +#: templates/index.php:20 msgid "Upload" msgstr "" @@ -208,10 +272,6 @@ msgstr "" msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:48 -msgid "Name" -msgstr "" - #: templates/index.php:50 msgid "Share" msgstr "" diff --git a/l10n/af/files_sharing.po b/l10n/af/files_sharing.po index 4e3ab5ee47..8bf34f8b16 100644 --- a/l10n/af/files_sharing.po +++ b/l10n/af/files_sharing.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-22 01:14+0200\n" +"PO-Revision-Date: 2012-09-21 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (http://www.transifex.com/projects/p/owncloud/language/af/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: af\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 msgid "Password" @@ -25,14 +25,24 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 templates/public.php:19 +#: templates/public.php:9 +#, php-format +msgid "%s shared the folder %s with you" +msgstr "" + +#: templates/public.php:11 +#, php-format +msgid "%s shared the file %s with you" +msgstr "" + +#: templates/public.php:14 templates/public.php:30 msgid "Download" msgstr "" -#: templates/public.php:18 +#: templates/public.php:29 msgid "No preview available for" msgstr "" -#: templates/public.php:23 +#: templates/public.php:37 msgid "web services under your control" msgstr "" diff --git a/l10n/af/files_versions.po b/l10n/af/files_versions.po index feda4351a8..27b0fa3652 100644 --- a/l10n/af/files_versions.po +++ b/l10n/af/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" -"PO-Revision-Date: 2012-09-17 00:04+0000\n" +"POT-Creation-Date: 2012-09-22 01:14+0200\n" +"PO-Revision-Date: 2012-09-21 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (http://www.transifex.com/projects/p/owncloud/language/af/)\n" "MIME-Version: 1.0\n" @@ -21,6 +21,10 @@ msgstr "" msgid "Expire all versions" msgstr "" +#: js/versions.js:16 +msgid "History" +msgstr "" + #: templates/settings-personal.php:4 msgid "Versions" msgstr "" diff --git a/l10n/af/settings.po b/l10n/af/settings.po index 2110490f32..f4b3878108 100644 --- a/l10n/af/settings.po +++ b/l10n/af/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:03+0200\n" -"PO-Revision-Date: 2012-09-17 00:03+0000\n" +"POT-Creation-Date: 2012-09-19 02:02+0200\n" +"PO-Revision-Date: 2012-09-19 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (http://www.transifex.com/projects/p/owncloud/language/af/)\n" "MIME-Version: 1.0\n" @@ -34,7 +34,7 @@ msgstr "" msgid "Unable to add group" msgstr "" -#: ajax/enableapp.php:13 +#: ajax/enableapp.php:14 msgid "Could not enable app. " msgstr "" @@ -76,15 +76,11 @@ msgstr "" msgid "Unable to remove user from group %s" msgstr "" -#: js/apps.js:18 -msgid "Error" -msgstr "" - -#: js/apps.js:39 js/apps.js:73 +#: js/apps.js:27 js/apps.js:61 msgid "Disable" msgstr "" -#: js/apps.js:39 js/apps.js:62 +#: js/apps.js:27 js/apps.js:50 msgid "Enable" msgstr "" @@ -224,11 +220,8 @@ msgid "Answer" msgstr "" #: templates/personal.php:8 -msgid "You use" -msgstr "" - -#: templates/personal.php:8 -msgid "of the available" +#, php-format +msgid "You have used %s of the available %s" msgstr "" #: templates/personal.php:12 @@ -240,7 +233,7 @@ msgid "Download" msgstr "" #: templates/personal.php:19 -msgid "Your password got changed" +msgid "Your password was changed" msgstr "" #: templates/personal.php:20 diff --git a/l10n/ar/core.po b/l10n/ar/core.po index febb0d7a63..d15bbe4a7c 100644 --- a/l10n/ar/core.po +++ b/l10n/ar/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -30,58 +30,62 @@ msgstr "" msgid "This category already exists: " msgstr "" -#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "تعديلات" -#: js/js.js:593 +#: js/js.js:645 msgid "January" msgstr "" -#: js/js.js:593 +#: js/js.js:645 msgid "February" msgstr "" -#: js/js.js:593 +#: js/js.js:645 msgid "March" msgstr "" -#: js/js.js:593 +#: js/js.js:645 msgid "April" msgstr "" -#: js/js.js:593 +#: js/js.js:645 msgid "May" msgstr "" -#: js/js.js:593 +#: js/js.js:645 msgid "June" msgstr "" -#: js/js.js:594 +#: js/js.js:646 msgid "July" msgstr "" -#: js/js.js:594 +#: js/js.js:646 msgid "August" msgstr "" -#: js/js.js:594 +#: js/js.js:646 msgid "September" msgstr "" -#: js/js.js:594 +#: js/js.js:646 msgid "October" msgstr "" -#: js/js.js:594 +#: js/js.js:646 msgid "November" msgstr "" -#: js/js.js:594 +#: js/js.js:646 msgid "December" msgstr "" +#: js/oc-dialogs.js:123 +msgid "Choose" +msgstr "" + #: js/oc-dialogs.js:143 js/oc-dialogs.js:163 msgid "Cancel" msgstr "" @@ -102,10 +106,119 @@ msgstr "" msgid "No categories selected for deletion." msgstr "" -#: js/oc-vcategories.js:68 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 +#: js/share.js:501 msgid "Error" msgstr "" +#: js/share.js:103 +msgid "Error while sharing" +msgstr "" + +#: js/share.js:114 +msgid "Error while unsharing" +msgstr "" + +#: js/share.js:121 +msgid "Error while changing permissions" +msgstr "" + +#: js/share.js:130 +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" +msgstr "" + +#: js/share.js:132 +msgid "Shared with you by" +msgstr "" + +#: js/share.js:137 +msgid "Share with" +msgstr "" + +#: js/share.js:142 +msgid "Share with link" +msgstr "" + +#: js/share.js:143 +msgid "Password protect" +msgstr "" + +#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +msgid "Password" +msgstr "كلمة السر" + +#: js/share.js:152 +msgid "Set expiration date" +msgstr "" + +#: js/share.js:153 +msgid "Expiration date" +msgstr "" + +#: js/share.js:185 +msgid "Share via email:" +msgstr "" + +#: js/share.js:187 +msgid "No people found" +msgstr "" + +#: js/share.js:214 +msgid "Resharing is not allowed" +msgstr "" + +#: js/share.js:250 +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" +msgstr "" + +#: js/share.js:271 +msgid "Unshare" +msgstr "" + +#: js/share.js:279 +msgid "can edit" +msgstr "" + +#: js/share.js:281 +msgid "access control" +msgstr "" + +#: js/share.js:284 +msgid "create" +msgstr "" + +#: js/share.js:287 +msgid "update" +msgstr "" + +#: js/share.js:290 +msgid "delete" +msgstr "" + +#: js/share.js:293 +msgid "share" +msgstr "" + +#: js/share.js:317 js/share.js:476 +msgid "Password protected" +msgstr "" + +#: js/share.js:489 +msgid "Error unsetting expiration date" +msgstr "" + +#: js/share.js:501 +msgid "Error setting expiration date" +msgstr "" + #: lostpassword/index.php:26 msgid "ownCloud password reset" msgstr "" @@ -191,10 +304,6 @@ msgstr "" msgid "Create an admin account" msgstr "أضف مستخدم رئيسي " -#: templates/installation.php:30 templates/login.php:13 -msgid "Password" -msgstr "كلمة السر" - #: templates/installation.php:36 msgid "Advanced" msgstr "خيارات متقدمة" @@ -236,11 +345,11 @@ msgstr "خادم قاعدة البيانات" msgid "Finish setup" msgstr "انهاء التعديلات" -#: templates/layout.guest.php:42 +#: templates/layout.guest.php:36 msgid "web services under your control" msgstr "خدمات الوب تحت تصرفك" -#: templates/layout.user.php:45 +#: templates/layout.user.php:34 msgid "Log out" msgstr "الخروج" diff --git a/l10n/ar/files.po b/l10n/ar/files.po index 7221caf070..34c24504f7 100644 --- a/l10n/ar/files.po +++ b/l10n/ar/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-26 13:19+0200\n" +"PO-Revision-Date: 2012-09-26 11:20+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -60,39 +60,43 @@ msgstr "" msgid "Delete" msgstr "محذوف" -#: js/filelist.js:186 js/filelist.js:188 +#: js/fileactions.js:182 +msgid "Rename" +msgstr "" + +#: js/filelist.js:190 js/filelist.js:192 msgid "already exists" msgstr "" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "replace" msgstr "" -#: js/filelist.js:186 +#: js/filelist.js:190 msgid "suggest name" msgstr "" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "cancel" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 +#: js/filelist.js:239 js/filelist.js:241 msgid "replaced" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:239 js/filelist.js:241 js/filelist.js:273 js/filelist.js:275 msgid "undo" msgstr "" -#: js/filelist.js:237 +#: js/filelist.js:241 msgid "with" msgstr "" -#: js/filelist.js:268 +#: js/filelist.js:273 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:275 msgid "deleted" msgstr "" @@ -108,47 +112,107 @@ msgstr "" msgid "Upload Error" msgstr "" -#: js/files.js:236 js/files.js:341 js/files.js:370 +#: js/files.js:236 js/files.js:341 js/files.js:371 msgid "Pending" msgstr "" -#: js/files.js:355 +#: js/files.js:256 +msgid "1 file uploading" +msgstr "" + +#: js/files.js:259 js/files.js:304 js/files.js:319 +msgid "files uploading" +msgstr "" + +#: js/files.js:322 js/files.js:355 msgid "Upload cancelled." msgstr "" -#: js/files.js:423 +#: js/files.js:424 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:493 +#: js/files.js:494 msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:667 +msgid "files scanned" +msgstr "" + +#: js/files.js:675 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:48 +msgid "Name" +msgstr "الاسم" + +#: js/files.js:749 templates/index.php:56 msgid "Size" msgstr "حجم" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:750 templates/index.php:58 msgid "Modified" msgstr "معدل" -#: js/files.js:774 +#: js/files.js:777 msgid "folder" msgstr "" -#: js/files.js:776 +#: js/files.js:779 msgid "folders" msgstr "" -#: js/files.js:784 +#: js/files.js:787 msgid "file" msgstr "" -#: js/files.js:786 +#: js/files.js:789 msgid "files" msgstr "" +#: js/files.js:833 +msgid "seconds ago" +msgstr "" + +#: js/files.js:834 +msgid "minute ago" +msgstr "" + +#: js/files.js:835 +msgid "minutes ago" +msgstr "" + +#: js/files.js:838 +msgid "today" +msgstr "" + +#: js/files.js:839 +msgid "yesterday" +msgstr "" + +#: js/files.js:840 +msgid "days ago" +msgstr "" + +#: js/files.js:841 +msgid "last month" +msgstr "" + +#: js/files.js:843 +msgid "months ago" +msgstr "" + +#: js/files.js:844 +msgid "last year" +msgstr "" + +#: js/files.js:845 +msgid "years ago" +msgstr "" + #: templates/admin.php:5 msgid "File handling" msgstr "" @@ -197,7 +261,7 @@ msgstr "مجلد" msgid "From url" msgstr "" -#: templates/index.php:21 +#: templates/index.php:20 msgid "Upload" msgstr "إرفع" @@ -209,10 +273,6 @@ msgstr "" msgid "Nothing in here. Upload something!" msgstr "لا يوجد شيء هنا. إرفع بعض الملفات!" -#: templates/index.php:48 -msgid "Name" -msgstr "الاسم" - #: templates/index.php:50 msgid "Share" msgstr "" diff --git a/l10n/ar/files_sharing.po b/l10n/ar/files_sharing.po index 6aeb9ddf0e..4c6c7c4482 100644 --- a/l10n/ar/files_sharing.po +++ b/l10n/ar/files_sharing.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-22 01:14+0200\n" +"PO-Revision-Date: 2012-09-21 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: templates/authenticate.php:4 msgid "Password" @@ -25,14 +25,24 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 templates/public.php:19 +#: templates/public.php:9 +#, php-format +msgid "%s shared the folder %s with you" +msgstr "" + +#: templates/public.php:11 +#, php-format +msgid "%s shared the file %s with you" +msgstr "" + +#: templates/public.php:14 templates/public.php:30 msgid "Download" msgstr "" -#: templates/public.php:18 +#: templates/public.php:29 msgid "No preview available for" msgstr "" -#: templates/public.php:23 +#: templates/public.php:37 msgid "web services under your control" msgstr "" diff --git a/l10n/ar/files_versions.po b/l10n/ar/files_versions.po index d39b59268e..850b57a008 100644 --- a/l10n/ar/files_versions.po +++ b/l10n/ar/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" -"PO-Revision-Date: 2012-09-17 00:04+0000\n" +"POT-Creation-Date: 2012-09-22 01:14+0200\n" +"PO-Revision-Date: 2012-09-21 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -21,6 +21,10 @@ msgstr "" msgid "Expire all versions" msgstr "" +#: js/versions.js:16 +msgid "History" +msgstr "" + #: templates/settings-personal.php:4 msgid "Versions" msgstr "" diff --git a/l10n/ar/settings.po b/l10n/ar/settings.po index 47d059f279..7a46fd4db2 100644 --- a/l10n/ar/settings.po +++ b/l10n/ar/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:03+0200\n" -"PO-Revision-Date: 2012-09-17 00:03+0000\n" +"POT-Creation-Date: 2012-09-19 02:02+0200\n" +"PO-Revision-Date: 2012-09-19 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -36,7 +36,7 @@ msgstr "" msgid "Unable to add group" msgstr "" -#: ajax/enableapp.php:13 +#: ajax/enableapp.php:14 msgid "Could not enable app. " msgstr "" @@ -78,15 +78,11 @@ msgstr "" msgid "Unable to remove user from group %s" msgstr "" -#: js/apps.js:18 -msgid "Error" -msgstr "" - -#: js/apps.js:39 js/apps.js:73 +#: js/apps.js:27 js/apps.js:61 msgid "Disable" msgstr "" -#: js/apps.js:39 js/apps.js:62 +#: js/apps.js:27 js/apps.js:50 msgid "Enable" msgstr "" @@ -226,12 +222,9 @@ msgid "Answer" msgstr "الجواب" #: templates/personal.php:8 -msgid "You use" -msgstr "أنت تستخدم" - -#: templates/personal.php:8 -msgid "of the available" -msgstr "من الموجود" +#, php-format +msgid "You have used %s of the available %s" +msgstr "" #: templates/personal.php:12 msgid "Desktop and Mobile Syncing Clients" @@ -242,8 +235,8 @@ msgid "Download" msgstr "" #: templates/personal.php:19 -msgid "Your password got changed" -msgstr "لقد تم تغيير كلمات السر" +msgid "Your password was changed" +msgstr "" #: templates/personal.php:20 msgid "Unable to change your password" diff --git a/l10n/ar_SA/core.po b/l10n/ar_SA/core.po index c251db4e53..e63e571d91 100644 --- a/l10n/ar_SA/core.po +++ b/l10n/ar_SA/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (Saudi Arabia) (http://www.transifex.com/projects/p/owncloud/language/ar_SA/)\n" "MIME-Version: 1.0\n" @@ -29,58 +29,62 @@ msgstr "" msgid "This category already exists: " msgstr "" -#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "" -#: js/js.js:593 +#: js/js.js:645 msgid "January" msgstr "" -#: js/js.js:593 +#: js/js.js:645 msgid "February" msgstr "" -#: js/js.js:593 +#: js/js.js:645 msgid "March" msgstr "" -#: js/js.js:593 +#: js/js.js:645 msgid "April" msgstr "" -#: js/js.js:593 +#: js/js.js:645 msgid "May" msgstr "" -#: js/js.js:593 +#: js/js.js:645 msgid "June" msgstr "" -#: js/js.js:594 +#: js/js.js:646 msgid "July" msgstr "" -#: js/js.js:594 +#: js/js.js:646 msgid "August" msgstr "" -#: js/js.js:594 +#: js/js.js:646 msgid "September" msgstr "" -#: js/js.js:594 +#: js/js.js:646 msgid "October" msgstr "" -#: js/js.js:594 +#: js/js.js:646 msgid "November" msgstr "" -#: js/js.js:594 +#: js/js.js:646 msgid "December" msgstr "" +#: js/oc-dialogs.js:123 +msgid "Choose" +msgstr "" + #: js/oc-dialogs.js:143 js/oc-dialogs.js:163 msgid "Cancel" msgstr "" @@ -101,10 +105,119 @@ msgstr "" msgid "No categories selected for deletion." msgstr "" -#: js/oc-vcategories.js:68 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 +#: js/share.js:501 msgid "Error" msgstr "" +#: js/share.js:103 +msgid "Error while sharing" +msgstr "" + +#: js/share.js:114 +msgid "Error while unsharing" +msgstr "" + +#: js/share.js:121 +msgid "Error while changing permissions" +msgstr "" + +#: js/share.js:130 +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" +msgstr "" + +#: js/share.js:132 +msgid "Shared with you by" +msgstr "" + +#: js/share.js:137 +msgid "Share with" +msgstr "" + +#: js/share.js:142 +msgid "Share with link" +msgstr "" + +#: js/share.js:143 +msgid "Password protect" +msgstr "" + +#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +msgid "Password" +msgstr "" + +#: js/share.js:152 +msgid "Set expiration date" +msgstr "" + +#: js/share.js:153 +msgid "Expiration date" +msgstr "" + +#: js/share.js:185 +msgid "Share via email:" +msgstr "" + +#: js/share.js:187 +msgid "No people found" +msgstr "" + +#: js/share.js:214 +msgid "Resharing is not allowed" +msgstr "" + +#: js/share.js:250 +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" +msgstr "" + +#: js/share.js:271 +msgid "Unshare" +msgstr "" + +#: js/share.js:279 +msgid "can edit" +msgstr "" + +#: js/share.js:281 +msgid "access control" +msgstr "" + +#: js/share.js:284 +msgid "create" +msgstr "" + +#: js/share.js:287 +msgid "update" +msgstr "" + +#: js/share.js:290 +msgid "delete" +msgstr "" + +#: js/share.js:293 +msgid "share" +msgstr "" + +#: js/share.js:317 js/share.js:476 +msgid "Password protected" +msgstr "" + +#: js/share.js:489 +msgid "Error unsetting expiration date" +msgstr "" + +#: js/share.js:501 +msgid "Error setting expiration date" +msgstr "" + #: lostpassword/index.php:26 msgid "ownCloud password reset" msgstr "" @@ -190,10 +303,6 @@ msgstr "" msgid "Create an admin account" msgstr "" -#: templates/installation.php:30 templates/login.php:13 -msgid "Password" -msgstr "" - #: templates/installation.php:36 msgid "Advanced" msgstr "" @@ -235,11 +344,11 @@ msgstr "" msgid "Finish setup" msgstr "" -#: templates/layout.guest.php:42 +#: templates/layout.guest.php:36 msgid "web services under your control" msgstr "" -#: templates/layout.user.php:45 +#: templates/layout.user.php:34 msgid "Log out" msgstr "" diff --git a/l10n/ar_SA/files.po b/l10n/ar_SA/files.po index 8651ddd072..dd926c4363 100644 --- a/l10n/ar_SA/files.po +++ b/l10n/ar_SA/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-26 13:19+0200\n" +"PO-Revision-Date: 2012-09-26 11:20+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (Saudi Arabia) (http://www.transifex.com/projects/p/owncloud/language/ar_SA/)\n" "MIME-Version: 1.0\n" @@ -59,39 +59,43 @@ msgstr "" msgid "Delete" msgstr "" -#: js/filelist.js:186 js/filelist.js:188 +#: js/fileactions.js:182 +msgid "Rename" +msgstr "" + +#: js/filelist.js:190 js/filelist.js:192 msgid "already exists" msgstr "" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "replace" msgstr "" -#: js/filelist.js:186 +#: js/filelist.js:190 msgid "suggest name" msgstr "" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "cancel" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 +#: js/filelist.js:239 js/filelist.js:241 msgid "replaced" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:239 js/filelist.js:241 js/filelist.js:273 js/filelist.js:275 msgid "undo" msgstr "" -#: js/filelist.js:237 +#: js/filelist.js:241 msgid "with" msgstr "" -#: js/filelist.js:268 +#: js/filelist.js:273 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:275 msgid "deleted" msgstr "" @@ -107,47 +111,107 @@ msgstr "" msgid "Upload Error" msgstr "" -#: js/files.js:236 js/files.js:341 js/files.js:370 +#: js/files.js:236 js/files.js:341 js/files.js:371 msgid "Pending" msgstr "" -#: js/files.js:355 +#: js/files.js:256 +msgid "1 file uploading" +msgstr "" + +#: js/files.js:259 js/files.js:304 js/files.js:319 +msgid "files uploading" +msgstr "" + +#: js/files.js:322 js/files.js:355 msgid "Upload cancelled." msgstr "" -#: js/files.js:423 +#: js/files.js:424 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:493 +#: js/files.js:494 msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:667 +msgid "files scanned" +msgstr "" + +#: js/files.js:675 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:48 +msgid "Name" +msgstr "" + +#: js/files.js:749 templates/index.php:56 msgid "Size" msgstr "" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:750 templates/index.php:58 msgid "Modified" msgstr "" -#: js/files.js:774 +#: js/files.js:777 msgid "folder" msgstr "" -#: js/files.js:776 +#: js/files.js:779 msgid "folders" msgstr "" -#: js/files.js:784 +#: js/files.js:787 msgid "file" msgstr "" -#: js/files.js:786 +#: js/files.js:789 msgid "files" msgstr "" +#: js/files.js:833 +msgid "seconds ago" +msgstr "" + +#: js/files.js:834 +msgid "minute ago" +msgstr "" + +#: js/files.js:835 +msgid "minutes ago" +msgstr "" + +#: js/files.js:838 +msgid "today" +msgstr "" + +#: js/files.js:839 +msgid "yesterday" +msgstr "" + +#: js/files.js:840 +msgid "days ago" +msgstr "" + +#: js/files.js:841 +msgid "last month" +msgstr "" + +#: js/files.js:843 +msgid "months ago" +msgstr "" + +#: js/files.js:844 +msgid "last year" +msgstr "" + +#: js/files.js:845 +msgid "years ago" +msgstr "" + #: templates/admin.php:5 msgid "File handling" msgstr "" @@ -196,7 +260,7 @@ msgstr "" msgid "From url" msgstr "" -#: templates/index.php:21 +#: templates/index.php:20 msgid "Upload" msgstr "" @@ -208,10 +272,6 @@ msgstr "" msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:48 -msgid "Name" -msgstr "" - #: templates/index.php:50 msgid "Share" msgstr "" diff --git a/l10n/ar_SA/files_sharing.po b/l10n/ar_SA/files_sharing.po index b0c8fb706a..66b122bea8 100644 --- a/l10n/ar_SA/files_sharing.po +++ b/l10n/ar_SA/files_sharing.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-22 01:14+0200\n" +"PO-Revision-Date: 2012-09-21 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (Saudi Arabia) (http://www.transifex.com/projects/p/owncloud/language/ar_SA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ar_SA\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 msgid "Password" @@ -25,14 +25,24 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 templates/public.php:19 +#: templates/public.php:9 +#, php-format +msgid "%s shared the folder %s with you" +msgstr "" + +#: templates/public.php:11 +#, php-format +msgid "%s shared the file %s with you" +msgstr "" + +#: templates/public.php:14 templates/public.php:30 msgid "Download" msgstr "" -#: templates/public.php:18 +#: templates/public.php:29 msgid "No preview available for" msgstr "" -#: templates/public.php:23 +#: templates/public.php:37 msgid "web services under your control" msgstr "" diff --git a/l10n/ar_SA/files_versions.po b/l10n/ar_SA/files_versions.po index c20b1ea16c..448d3b5b61 100644 --- a/l10n/ar_SA/files_versions.po +++ b/l10n/ar_SA/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" -"PO-Revision-Date: 2012-09-17 00:04+0000\n" +"POT-Creation-Date: 2012-09-22 01:14+0200\n" +"PO-Revision-Date: 2012-09-21 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (Saudi Arabia) (http://www.transifex.com/projects/p/owncloud/language/ar_SA/)\n" "MIME-Version: 1.0\n" @@ -21,6 +21,10 @@ msgstr "" msgid "Expire all versions" msgstr "" +#: js/versions.js:16 +msgid "History" +msgstr "" + #: templates/settings-personal.php:4 msgid "Versions" msgstr "" diff --git a/l10n/ar_SA/settings.po b/l10n/ar_SA/settings.po index 884941c4a5..a16336b7d7 100644 --- a/l10n/ar_SA/settings.po +++ b/l10n/ar_SA/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:03+0200\n" -"PO-Revision-Date: 2012-09-17 00:03+0000\n" +"POT-Creation-Date: 2012-09-19 02:02+0200\n" +"PO-Revision-Date: 2012-09-19 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (Saudi Arabia) (http://www.transifex.com/projects/p/owncloud/language/ar_SA/)\n" "MIME-Version: 1.0\n" @@ -34,7 +34,7 @@ msgstr "" msgid "Unable to add group" msgstr "" -#: ajax/enableapp.php:13 +#: ajax/enableapp.php:14 msgid "Could not enable app. " msgstr "" @@ -76,15 +76,11 @@ msgstr "" msgid "Unable to remove user from group %s" msgstr "" -#: js/apps.js:18 -msgid "Error" -msgstr "" - -#: js/apps.js:39 js/apps.js:73 +#: js/apps.js:27 js/apps.js:61 msgid "Disable" msgstr "" -#: js/apps.js:39 js/apps.js:62 +#: js/apps.js:27 js/apps.js:50 msgid "Enable" msgstr "" @@ -224,11 +220,8 @@ msgid "Answer" msgstr "" #: templates/personal.php:8 -msgid "You use" -msgstr "" - -#: templates/personal.php:8 -msgid "of the available" +#, php-format +msgid "You have used %s of the available %s" msgstr "" #: templates/personal.php:12 @@ -240,7 +233,7 @@ msgid "Download" msgstr "" #: templates/personal.php:19 -msgid "Your password got changed" +msgid "Your password was changed" msgstr "" #: templates/personal.php:20 diff --git a/l10n/bg_BG/core.po b/l10n/bg_BG/core.po index 681b5dd14b..ff661733f9 100644 --- a/l10n/bg_BG/core.po +++ b/l10n/bg_BG/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -33,58 +33,62 @@ msgstr "" msgid "This category already exists: " msgstr "Категорията вече съществува:" -#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Настройки" -#: js/js.js:593 +#: js/js.js:645 msgid "January" msgstr "Януари" -#: js/js.js:593 +#: js/js.js:645 msgid "February" msgstr "Февруари" -#: js/js.js:593 +#: js/js.js:645 msgid "March" msgstr "Март" -#: js/js.js:593 +#: js/js.js:645 msgid "April" msgstr "Април" -#: js/js.js:593 +#: js/js.js:645 msgid "May" msgstr "Май" -#: js/js.js:593 +#: js/js.js:645 msgid "June" msgstr "Юни" -#: js/js.js:594 +#: js/js.js:646 msgid "July" msgstr "Юли" -#: js/js.js:594 +#: js/js.js:646 msgid "August" msgstr "Август" -#: js/js.js:594 +#: js/js.js:646 msgid "September" msgstr "Септември" -#: js/js.js:594 +#: js/js.js:646 msgid "October" msgstr "Октомври" -#: js/js.js:594 +#: js/js.js:646 msgid "November" msgstr "Ноември" -#: js/js.js:594 +#: js/js.js:646 msgid "December" msgstr "Декември" +#: js/oc-dialogs.js:123 +msgid "Choose" +msgstr "" + #: js/oc-dialogs.js:143 js/oc-dialogs.js:163 msgid "Cancel" msgstr "Отказ" @@ -105,10 +109,119 @@ msgstr "Добре" msgid "No categories selected for deletion." msgstr "Няма избрани категории за изтриване" -#: js/oc-vcategories.js:68 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 +#: js/share.js:501 msgid "Error" msgstr "Грешка" +#: js/share.js:103 +msgid "Error while sharing" +msgstr "" + +#: js/share.js:114 +msgid "Error while unsharing" +msgstr "" + +#: js/share.js:121 +msgid "Error while changing permissions" +msgstr "" + +#: js/share.js:130 +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" +msgstr "" + +#: js/share.js:132 +msgid "Shared with you by" +msgstr "" + +#: js/share.js:137 +msgid "Share with" +msgstr "" + +#: js/share.js:142 +msgid "Share with link" +msgstr "" + +#: js/share.js:143 +msgid "Password protect" +msgstr "" + +#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +msgid "Password" +msgstr "Парола" + +#: js/share.js:152 +msgid "Set expiration date" +msgstr "" + +#: js/share.js:153 +msgid "Expiration date" +msgstr "" + +#: js/share.js:185 +msgid "Share via email:" +msgstr "" + +#: js/share.js:187 +msgid "No people found" +msgstr "" + +#: js/share.js:214 +msgid "Resharing is not allowed" +msgstr "" + +#: js/share.js:250 +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" +msgstr "" + +#: js/share.js:271 +msgid "Unshare" +msgstr "" + +#: js/share.js:279 +msgid "can edit" +msgstr "" + +#: js/share.js:281 +msgid "access control" +msgstr "" + +#: js/share.js:284 +msgid "create" +msgstr "" + +#: js/share.js:287 +msgid "update" +msgstr "" + +#: js/share.js:290 +msgid "delete" +msgstr "" + +#: js/share.js:293 +msgid "share" +msgstr "" + +#: js/share.js:317 js/share.js:476 +msgid "Password protected" +msgstr "" + +#: js/share.js:489 +msgid "Error unsetting expiration date" +msgstr "" + +#: js/share.js:501 +msgid "Error setting expiration date" +msgstr "" + #: lostpassword/index.php:26 msgid "ownCloud password reset" msgstr "" @@ -194,10 +307,6 @@ msgstr "Добавяне" msgid "Create an admin account" msgstr "Създаване на админ профил" -#: templates/installation.php:30 templates/login.php:13 -msgid "Password" -msgstr "Парола" - #: templates/installation.php:36 msgid "Advanced" msgstr "Разширено" @@ -239,11 +348,11 @@ msgstr "Хост за базата" msgid "Finish setup" msgstr "Завършване на настройките" -#: templates/layout.guest.php:42 +#: templates/layout.guest.php:36 msgid "web services under your control" msgstr "" -#: templates/layout.user.php:45 +#: templates/layout.user.php:34 msgid "Log out" msgstr "Изход" diff --git a/l10n/bg_BG/files.po b/l10n/bg_BG/files.po index f1667a2327..a084c7d44a 100644 --- a/l10n/bg_BG/files.po +++ b/l10n/bg_BG/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-26 13:19+0200\n" +"PO-Revision-Date: 2012-09-26 11:20+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -61,39 +61,43 @@ msgstr "" msgid "Delete" msgstr "Изтриване" -#: js/filelist.js:186 js/filelist.js:188 +#: js/fileactions.js:182 +msgid "Rename" +msgstr "" + +#: js/filelist.js:190 js/filelist.js:192 msgid "already exists" msgstr "" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "replace" msgstr "" -#: js/filelist.js:186 +#: js/filelist.js:190 msgid "suggest name" msgstr "" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "cancel" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 +#: js/filelist.js:239 js/filelist.js:241 msgid "replaced" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:239 js/filelist.js:241 js/filelist.js:273 js/filelist.js:275 msgid "undo" msgstr "" -#: js/filelist.js:237 +#: js/filelist.js:241 msgid "with" msgstr "" -#: js/filelist.js:268 +#: js/filelist.js:273 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:275 msgid "deleted" msgstr "" @@ -109,47 +113,107 @@ msgstr "" msgid "Upload Error" msgstr "Грешка при качване" -#: js/files.js:236 js/files.js:341 js/files.js:370 +#: js/files.js:236 js/files.js:341 js/files.js:371 msgid "Pending" msgstr "" -#: js/files.js:355 +#: js/files.js:256 +msgid "1 file uploading" +msgstr "" + +#: js/files.js:259 js/files.js:304 js/files.js:319 +msgid "files uploading" +msgstr "" + +#: js/files.js:322 js/files.js:355 msgid "Upload cancelled." msgstr "Качването е отменено." -#: js/files.js:423 +#: js/files.js:424 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:493 +#: js/files.js:494 msgid "Invalid name, '/' is not allowed." msgstr "Неправилно име – \"/\" не е позволено." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:667 +msgid "files scanned" +msgstr "" + +#: js/files.js:675 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:48 +msgid "Name" +msgstr "Име" + +#: js/files.js:749 templates/index.php:56 msgid "Size" msgstr "Размер" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:750 templates/index.php:58 msgid "Modified" msgstr "Променено" -#: js/files.js:774 +#: js/files.js:777 msgid "folder" msgstr "папка" -#: js/files.js:776 +#: js/files.js:779 msgid "folders" msgstr "папки" -#: js/files.js:784 +#: js/files.js:787 msgid "file" msgstr "файл" -#: js/files.js:786 +#: js/files.js:789 msgid "files" msgstr "" +#: js/files.js:833 +msgid "seconds ago" +msgstr "" + +#: js/files.js:834 +msgid "minute ago" +msgstr "" + +#: js/files.js:835 +msgid "minutes ago" +msgstr "" + +#: js/files.js:838 +msgid "today" +msgstr "" + +#: js/files.js:839 +msgid "yesterday" +msgstr "" + +#: js/files.js:840 +msgid "days ago" +msgstr "" + +#: js/files.js:841 +msgid "last month" +msgstr "" + +#: js/files.js:843 +msgid "months ago" +msgstr "" + +#: js/files.js:844 +msgid "last year" +msgstr "" + +#: js/files.js:845 +msgid "years ago" +msgstr "" + #: templates/admin.php:5 msgid "File handling" msgstr "" @@ -198,7 +262,7 @@ msgstr "Папка" msgid "From url" msgstr "От url-адрес" -#: templates/index.php:21 +#: templates/index.php:20 msgid "Upload" msgstr "Качване" @@ -210,10 +274,6 @@ msgstr "Отказване на качването" msgid "Nothing in here. Upload something!" msgstr "Няма нищо, качете нещо!" -#: templates/index.php:48 -msgid "Name" -msgstr "Име" - #: templates/index.php:50 msgid "Share" msgstr "Споделяне" diff --git a/l10n/bg_BG/files_sharing.po b/l10n/bg_BG/files_sharing.po index fa2d7899a7..3e75975fb6 100644 --- a/l10n/bg_BG/files_sharing.po +++ b/l10n/bg_BG/files_sharing.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-22 01:14+0200\n" +"PO-Revision-Date: 2012-09-21 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: bg_BG\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 msgid "Password" @@ -25,14 +25,24 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 templates/public.php:19 +#: templates/public.php:9 +#, php-format +msgid "%s shared the folder %s with you" +msgstr "" + +#: templates/public.php:11 +#, php-format +msgid "%s shared the file %s with you" +msgstr "" + +#: templates/public.php:14 templates/public.php:30 msgid "Download" msgstr "" -#: templates/public.php:18 +#: templates/public.php:29 msgid "No preview available for" msgstr "" -#: templates/public.php:23 +#: templates/public.php:37 msgid "web services under your control" msgstr "" diff --git a/l10n/bg_BG/files_versions.po b/l10n/bg_BG/files_versions.po index f28061ea72..df3fc29945 100644 --- a/l10n/bg_BG/files_versions.po +++ b/l10n/bg_BG/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" -"PO-Revision-Date: 2012-09-17 00:04+0000\n" +"POT-Creation-Date: 2012-09-22 01:14+0200\n" +"PO-Revision-Date: 2012-09-21 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -21,6 +21,10 @@ msgstr "" msgid "Expire all versions" msgstr "" +#: js/versions.js:16 +msgid "History" +msgstr "" + #: templates/settings-personal.php:4 msgid "Versions" msgstr "" diff --git a/l10n/bg_BG/settings.po b/l10n/bg_BG/settings.po index efd8be694d..52bb83794b 100644 --- a/l10n/bg_BG/settings.po +++ b/l10n/bg_BG/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:03+0200\n" -"PO-Revision-Date: 2012-09-17 00:03+0000\n" +"POT-Creation-Date: 2012-09-19 02:02+0200\n" +"PO-Revision-Date: 2012-09-19 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -37,7 +37,7 @@ msgstr "" msgid "Unable to add group" msgstr "" -#: ajax/enableapp.php:13 +#: ajax/enableapp.php:14 msgid "Could not enable app. " msgstr "" @@ -79,15 +79,11 @@ msgstr "" msgid "Unable to remove user from group %s" msgstr "" -#: js/apps.js:18 -msgid "Error" -msgstr "" - -#: js/apps.js:39 js/apps.js:73 +#: js/apps.js:27 js/apps.js:61 msgid "Disable" msgstr "Изключване" -#: js/apps.js:39 js/apps.js:62 +#: js/apps.js:27 js/apps.js:50 msgid "Enable" msgstr "Включване" @@ -227,12 +223,9 @@ msgid "Answer" msgstr "Отговор" #: templates/personal.php:8 -msgid "You use" -msgstr "Вие ползвате" - -#: templates/personal.php:8 -msgid "of the available" -msgstr "от наличните" +#, php-format +msgid "You have used %s of the available %s" +msgstr "" #: templates/personal.php:12 msgid "Desktop and Mobile Syncing Clients" @@ -243,8 +236,8 @@ msgid "Download" msgstr "Изтегляне" #: templates/personal.php:19 -msgid "Your password got changed" -msgstr "Вашата парола е сменена" +msgid "Your password was changed" +msgstr "" #: templates/personal.php:20 msgid "Unable to change your password" diff --git a/l10n/ca/core.po b/l10n/ca/core.po index 6366450bdd..30b391463b 100644 --- a/l10n/ca/core.po +++ b/l10n/ca/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -31,58 +31,62 @@ msgstr "No voleu afegir cap categoria?" msgid "This category already exists: " msgstr "Aquesta categoria ja existeix:" -#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Arranjament" -#: js/js.js:593 +#: js/js.js:645 msgid "January" msgstr "Gener" -#: js/js.js:593 +#: js/js.js:645 msgid "February" msgstr "Febrer" -#: js/js.js:593 +#: js/js.js:645 msgid "March" msgstr "Març" -#: js/js.js:593 +#: js/js.js:645 msgid "April" msgstr "Abril" -#: js/js.js:593 +#: js/js.js:645 msgid "May" msgstr "Maig" -#: js/js.js:593 +#: js/js.js:645 msgid "June" msgstr "Juny" -#: js/js.js:594 +#: js/js.js:646 msgid "July" msgstr "Juliol" -#: js/js.js:594 +#: js/js.js:646 msgid "August" msgstr "Agost" -#: js/js.js:594 +#: js/js.js:646 msgid "September" msgstr "Setembre" -#: js/js.js:594 +#: js/js.js:646 msgid "October" msgstr "Octubre" -#: js/js.js:594 +#: js/js.js:646 msgid "November" msgstr "Novembre" -#: js/js.js:594 +#: js/js.js:646 msgid "December" msgstr "Desembre" +#: js/oc-dialogs.js:123 +msgid "Choose" +msgstr "" + #: js/oc-dialogs.js:143 js/oc-dialogs.js:163 msgid "Cancel" msgstr "Cancel·la" @@ -103,10 +107,119 @@ msgstr "D'acord" msgid "No categories selected for deletion." msgstr "No hi ha categories per eliminar." -#: js/oc-vcategories.js:68 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 +#: js/share.js:501 msgid "Error" msgstr "Error" +#: js/share.js:103 +msgid "Error while sharing" +msgstr "" + +#: js/share.js:114 +msgid "Error while unsharing" +msgstr "" + +#: js/share.js:121 +msgid "Error while changing permissions" +msgstr "" + +#: js/share.js:130 +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" +msgstr "" + +#: js/share.js:132 +msgid "Shared with you by" +msgstr "" + +#: js/share.js:137 +msgid "Share with" +msgstr "" + +#: js/share.js:142 +msgid "Share with link" +msgstr "" + +#: js/share.js:143 +msgid "Password protect" +msgstr "" + +#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +msgid "Password" +msgstr "Contrasenya" + +#: js/share.js:152 +msgid "Set expiration date" +msgstr "" + +#: js/share.js:153 +msgid "Expiration date" +msgstr "" + +#: js/share.js:185 +msgid "Share via email:" +msgstr "" + +#: js/share.js:187 +msgid "No people found" +msgstr "" + +#: js/share.js:214 +msgid "Resharing is not allowed" +msgstr "" + +#: js/share.js:250 +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" +msgstr "" + +#: js/share.js:271 +msgid "Unshare" +msgstr "" + +#: js/share.js:279 +msgid "can edit" +msgstr "" + +#: js/share.js:281 +msgid "access control" +msgstr "" + +#: js/share.js:284 +msgid "create" +msgstr "" + +#: js/share.js:287 +msgid "update" +msgstr "" + +#: js/share.js:290 +msgid "delete" +msgstr "" + +#: js/share.js:293 +msgid "share" +msgstr "" + +#: js/share.js:317 js/share.js:476 +msgid "Password protected" +msgstr "" + +#: js/share.js:489 +msgid "Error unsetting expiration date" +msgstr "" + +#: js/share.js:501 +msgid "Error setting expiration date" +msgstr "" + #: lostpassword/index.php:26 msgid "ownCloud password reset" msgstr "estableix de nou la contrasenya Owncloud" @@ -192,10 +305,6 @@ msgstr "Afegeix" msgid "Create an admin account" msgstr "Crea un compte d'administrador" -#: templates/installation.php:30 templates/login.php:13 -msgid "Password" -msgstr "Contrasenya" - #: templates/installation.php:36 msgid "Advanced" msgstr "Avançat" @@ -237,11 +346,11 @@ msgstr "Ordinador central de la base de dades" msgid "Finish setup" msgstr "Acaba la configuració" -#: templates/layout.guest.php:42 +#: templates/layout.guest.php:36 msgid "web services under your control" msgstr "controleu els vostres serveis web" -#: templates/layout.user.php:45 +#: templates/layout.user.php:34 msgid "Log out" msgstr "Surt" diff --git a/l10n/ca/files.po b/l10n/ca/files.po index 09799489c8..b98f8b4ffe 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/files.po @@ -5,14 +5,15 @@ # Translators: # , 2012. # , 2012. +# , 2012. # , 2011-2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-11 02:02+0200\n" -"PO-Revision-Date: 2012-09-10 07:25+0000\n" -"Last-Translator: rogerc \n" +"POT-Creation-Date: 2012-09-26 13:19+0200\n" +"PO-Revision-Date: 2012-09-26 11:20+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -62,39 +63,43 @@ msgstr "Deixa de compartir" msgid "Delete" msgstr "Suprimeix" -#: js/filelist.js:186 js/filelist.js:188 +#: js/fileactions.js:182 +msgid "Rename" +msgstr "" + +#: js/filelist.js:190 js/filelist.js:192 msgid "already exists" msgstr "ja existeix" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "replace" msgstr "substitueix" -#: js/filelist.js:186 +#: js/filelist.js:190 msgid "suggest name" msgstr "sugereix un nom" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "cancel" msgstr "cancel·la" -#: js/filelist.js:235 js/filelist.js:237 +#: js/filelist.js:239 js/filelist.js:241 msgid "replaced" msgstr "substituït" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:239 js/filelist.js:241 js/filelist.js:273 js/filelist.js:275 msgid "undo" msgstr "desfés" -#: js/filelist.js:237 +#: js/filelist.js:241 msgid "with" msgstr "per" -#: js/filelist.js:268 +#: js/filelist.js:273 msgid "unshared" msgstr "No compartits" -#: js/filelist.js:270 +#: js/filelist.js:275 msgid "deleted" msgstr "esborrat" @@ -110,47 +115,107 @@ msgstr "No es pot pujar el fitxer perquè és una carpeta o té 0 bytes" msgid "Upload Error" msgstr "Error en la pujada" -#: js/files.js:236 js/files.js:341 js/files.js:370 +#: js/files.js:236 js/files.js:341 js/files.js:371 msgid "Pending" msgstr "Pendents" -#: js/files.js:355 +#: js/files.js:256 +msgid "1 file uploading" +msgstr "" + +#: js/files.js:259 js/files.js:304 js/files.js:319 +msgid "files uploading" +msgstr "" + +#: js/files.js:322 js/files.js:355 msgid "Upload cancelled." msgstr "La pujada s'ha cancel·lat." -#: js/files.js:423 +#: js/files.js:424 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Hi ha una pujada en curs. Si abandoneu la pàgina la pujada es cancel·larà." -#: js/files.js:493 +#: js/files.js:494 msgid "Invalid name, '/' is not allowed." msgstr "El nom no és vàlid, no es permet '/'." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:667 +msgid "files scanned" +msgstr "arxius escanejats" + +#: js/files.js:675 +msgid "error while scanning" +msgstr "error durant l'escaneig" + +#: js/files.js:748 templates/index.php:48 +msgid "Name" +msgstr "Nom" + +#: js/files.js:749 templates/index.php:56 msgid "Size" msgstr "Mida" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:750 templates/index.php:58 msgid "Modified" msgstr "Modificat" -#: js/files.js:774 +#: js/files.js:777 msgid "folder" msgstr "carpeta" -#: js/files.js:776 +#: js/files.js:779 msgid "folders" msgstr "carpetes" -#: js/files.js:784 +#: js/files.js:787 msgid "file" msgstr "fitxer" -#: js/files.js:786 +#: js/files.js:789 msgid "files" msgstr "fitxers" +#: js/files.js:833 +msgid "seconds ago" +msgstr "" + +#: js/files.js:834 +msgid "minute ago" +msgstr "" + +#: js/files.js:835 +msgid "minutes ago" +msgstr "" + +#: js/files.js:838 +msgid "today" +msgstr "" + +#: js/files.js:839 +msgid "yesterday" +msgstr "" + +#: js/files.js:840 +msgid "days ago" +msgstr "" + +#: js/files.js:841 +msgid "last month" +msgstr "" + +#: js/files.js:843 +msgid "months ago" +msgstr "" + +#: js/files.js:844 +msgid "last year" +msgstr "" + +#: js/files.js:845 +msgid "years ago" +msgstr "" + #: templates/admin.php:5 msgid "File handling" msgstr "Gestió de fitxers" @@ -199,7 +264,7 @@ msgstr "Carpeta" msgid "From url" msgstr "Des de la url" -#: templates/index.php:21 +#: templates/index.php:20 msgid "Upload" msgstr "Puja" @@ -211,10 +276,6 @@ msgstr "Cancel·la la pujada" msgid "Nothing in here. Upload something!" msgstr "Res per aquí. Pugeu alguna cosa!" -#: templates/index.php:48 -msgid "Name" -msgstr "Nom" - #: templates/index.php:50 msgid "Share" msgstr "Comparteix" diff --git a/l10n/ca/files_sharing.po b/l10n/ca/files_sharing.po index 2424e26a3c..1bf9e7771c 100644 --- a/l10n/ca/files_sharing.po +++ b/l10n/ca/files_sharing.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-08-31 11:34+0000\n" -"Last-Translator: rogerc \n" +"POT-Creation-Date: 2012-09-22 01:14+0200\n" +"PO-Revision-Date: 2012-09-21 23:15+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ca\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 msgid "Password" @@ -26,14 +26,24 @@ msgstr "Contrasenya" msgid "Submit" msgstr "Envia" -#: templates/public.php:9 templates/public.php:19 +#: templates/public.php:9 +#, php-format +msgid "%s shared the folder %s with you" +msgstr "" + +#: templates/public.php:11 +#, php-format +msgid "%s shared the file %s with you" +msgstr "" + +#: templates/public.php:14 templates/public.php:30 msgid "Download" msgstr "Baixa" -#: templates/public.php:18 +#: templates/public.php:29 msgid "No preview available for" msgstr "No hi ha vista prèvia disponible per a" -#: templates/public.php:23 +#: templates/public.php:37 msgid "web services under your control" msgstr "controleu els vostres serveis web" diff --git a/l10n/ca/files_versions.po b/l10n/ca/files_versions.po index 8ac9add87a..5a70c6947c 100644 --- a/l10n/ca/files_versions.po +++ b/l10n/ca/files_versions.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. # , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" -"PO-Revision-Date: 2012-09-17 00:04+0000\n" +"POT-Creation-Date: 2012-09-22 01:14+0200\n" +"PO-Revision-Date: 2012-09-21 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -22,6 +23,10 @@ msgstr "" msgid "Expire all versions" msgstr "Expira totes les versions" +#: js/versions.js:16 +msgid "History" +msgstr "" + #: templates/settings-personal.php:4 msgid "Versions" msgstr "Versions" @@ -32,8 +37,8 @@ msgstr "Això eliminarà totes les versions de còpia de seguretat dels vostres #: templates/settings.php:3 msgid "Files Versioning" -msgstr "" +msgstr "Fitxers de Versions" #: templates/settings.php:4 msgid "Enable" -msgstr "" +msgstr "Permetre" diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index a71b4c0e4a..bcfdd5a31c 100644 --- a/l10n/ca/settings.po +++ b/l10n/ca/settings.po @@ -5,14 +5,15 @@ # Translators: # , 2012. # , 2012. +# , 2012. # , 2011-2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:03+0200\n" -"PO-Revision-Date: 2012-09-17 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-22 01:14+0200\n" +"PO-Revision-Date: 2012-09-21 22:01+0000\n" +"Last-Translator: Josep Tomàs \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -37,7 +38,7 @@ msgstr "El grup ja existeix" msgid "Unable to add group" msgstr "No es pot afegir el grup" -#: ajax/enableapp.php:13 +#: ajax/enableapp.php:14 msgid "Could not enable app. " msgstr "No s'ha pogut activar l'apliació" @@ -79,15 +80,11 @@ msgstr "No es pot afegir l'usuari al grup %s" msgid "Unable to remove user from group %s" msgstr "No es pot eliminar l'usuari del grup %s" -#: js/apps.js:18 -msgid "Error" -msgstr "Error" - -#: js/apps.js:39 js/apps.js:73 +#: js/apps.js:27 js/apps.js:61 msgid "Disable" msgstr "Desactiva" -#: js/apps.js:39 js/apps.js:62 +#: js/apps.js:27 js/apps.js:50 msgid "Enable" msgstr "Activa" @@ -118,7 +115,7 @@ msgstr "Cron" #: templates/admin.php:37 msgid "Execute one task with each page loaded" -msgstr "" +msgstr "Executar una tasca de cada pàgina carregada" #: templates/admin.php:43 msgid "" @@ -130,11 +127,11 @@ msgstr "cron.php està registrat en un servei webcron. Feu una crida a la pàgin msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "" +msgstr "Utilitzeu el sistema de servei cron. Cridar el arxiu cron.php de la carpeta owncloud cada minut utilitzant el sistema de tasques cron." #: templates/admin.php:56 msgid "Sharing" -msgstr "" +msgstr "Compartir" #: templates/admin.php:61 msgid "Enable Share API" @@ -227,12 +224,9 @@ msgid "Answer" msgstr "Resposta" #: templates/personal.php:8 -msgid "You use" -msgstr "Esteu usant" - -#: templates/personal.php:8 -msgid "of the available" -msgstr "d'un total disponible de" +#, php-format +msgid "You have used %s of the available %s" +msgstr "Ha utilitzat %s de la %s disponible" #: templates/personal.php:12 msgid "Desktop and Mobile Syncing Clients" @@ -243,8 +237,8 @@ msgid "Download" msgstr "Baixada" #: templates/personal.php:19 -msgid "Your password got changed" -msgstr "La contrasenya ha canviat" +msgid "Your password was changed" +msgstr "La seva contrasenya s'ha canviat" #: templates/personal.php:20 msgid "Unable to change your password" diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po index c1d1ba2da0..b589fce4cd 100644 --- a/l10n/cs_CZ/core.po +++ b/l10n/cs_CZ/core.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-30 02:02+0200\n" +"PO-Revision-Date: 2012-09-29 08:16+0000\n" +"Last-Translator: Tomáš Chvátal \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -33,58 +33,62 @@ msgstr "Žádná kategorie k přidání?" msgid "This category already exists: " msgstr "Tato kategorie již existuje: " -#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Nastavení" -#: js/js.js:593 +#: js/js.js:645 msgid "January" msgstr "Leden" -#: js/js.js:593 +#: js/js.js:645 msgid "February" msgstr "Únor" -#: js/js.js:593 +#: js/js.js:645 msgid "March" msgstr "Březen" -#: js/js.js:593 +#: js/js.js:645 msgid "April" msgstr "Duben" -#: js/js.js:593 +#: js/js.js:645 msgid "May" msgstr "Květen" -#: js/js.js:593 +#: js/js.js:645 msgid "June" msgstr "Červen" -#: js/js.js:594 +#: js/js.js:646 msgid "July" msgstr "Červenec" -#: js/js.js:594 +#: js/js.js:646 msgid "August" msgstr "Srpen" -#: js/js.js:594 +#: js/js.js:646 msgid "September" msgstr "Září" -#: js/js.js:594 +#: js/js.js:646 msgid "October" msgstr "Říjen" -#: js/js.js:594 +#: js/js.js:646 msgid "November" msgstr "Listopad" -#: js/js.js:594 +#: js/js.js:646 msgid "December" msgstr "Prosinec" +#: js/oc-dialogs.js:123 +msgid "Choose" +msgstr "Vybrat" + #: js/oc-dialogs.js:143 js/oc-dialogs.js:163 msgid "Cancel" msgstr "Zrušit" @@ -105,10 +109,119 @@ msgstr "Ok" msgid "No categories selected for deletion." msgstr "Žádné kategorie nebyly vybrány ke smazání." -#: js/oc-vcategories.js:68 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 +#: js/share.js:501 msgid "Error" msgstr "Chyba" +#: js/share.js:103 +msgid "Error while sharing" +msgstr "Chyba při sdílení" + +#: js/share.js:114 +msgid "Error while unsharing" +msgstr "Chyba při rušení sdílení" + +#: js/share.js:121 +msgid "Error while changing permissions" +msgstr "Chyba při změně oprávnění" + +#: js/share.js:130 +msgid "Shared with you and the group" +msgstr "S Vámi a skupinou" + +#: js/share.js:130 +msgid "by" +msgstr "sdílí" + +#: js/share.js:132 +msgid "Shared with you by" +msgstr "S Vámi sdílí" + +#: js/share.js:137 +msgid "Share with" +msgstr "Sdílet s" + +#: js/share.js:142 +msgid "Share with link" +msgstr "Sdílet s odkazem" + +#: js/share.js:143 +msgid "Password protect" +msgstr "Chránit heslem" + +#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +msgid "Password" +msgstr "Heslo" + +#: js/share.js:152 +msgid "Set expiration date" +msgstr "Nastavit datum vypršení platnosti" + +#: js/share.js:153 +msgid "Expiration date" +msgstr "Datum vypršení platnosti" + +#: js/share.js:185 +msgid "Share via email:" +msgstr "Sdílet e-mailem:" + +#: js/share.js:187 +msgid "No people found" +msgstr "Žádní lidé nenalezeni" + +#: js/share.js:214 +msgid "Resharing is not allowed" +msgstr "Sdílení již sdílené položky není povoleno" + +#: js/share.js:250 +msgid "Shared in" +msgstr "Sdíleno v" + +#: js/share.js:250 +msgid "with" +msgstr "s" + +#: js/share.js:271 +msgid "Unshare" +msgstr "Zrušit sdílení" + +#: js/share.js:279 +msgid "can edit" +msgstr "lze upravovat" + +#: js/share.js:281 +msgid "access control" +msgstr "řízení přístupu" + +#: js/share.js:284 +msgid "create" +msgstr "vytvořit" + +#: js/share.js:287 +msgid "update" +msgstr "aktualizovat" + +#: js/share.js:290 +msgid "delete" +msgstr "smazat" + +#: js/share.js:293 +msgid "share" +msgstr "sdílet" + +#: js/share.js:317 js/share.js:476 +msgid "Password protected" +msgstr "Chráněno heslem" + +#: js/share.js:489 +msgid "Error unsetting expiration date" +msgstr "Chyba při odstraňování data vypršení platnosti" + +#: js/share.js:501 +msgid "Error setting expiration date" +msgstr "Chyba při nastavení data vypršení platnosti" + #: lostpassword/index.php:26 msgid "ownCloud password reset" msgstr "Obnovení hesla pro ownCloud" @@ -134,7 +247,7 @@ msgstr "Přihlášení selhalo." msgid "Username" msgstr "Uživatelské jméno" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:14 msgid "Request reset" msgstr "Vyžádat obnovu" @@ -194,10 +307,6 @@ msgstr "Přidat" msgid "Create an admin account" msgstr "Vytvořit účet správce" -#: templates/installation.php:30 templates/login.php:13 -msgid "Password" -msgstr "Heslo" - #: templates/installation.php:36 msgid "Advanced" msgstr "Pokročilé" @@ -239,11 +348,11 @@ msgstr "Hostitel databáze" msgid "Finish setup" msgstr "Dokončit nastavení" -#: templates/layout.guest.php:42 +#: templates/layout.guest.php:36 msgid "web services under your control" msgstr "webové služby pod Vaší kontrolou" -#: templates/layout.user.php:45 +#: templates/layout.user.php:34 msgid "Log out" msgstr "Odhlásit se" @@ -251,11 +360,11 @@ msgstr "Odhlásit se" msgid "Lost your password?" msgstr "Ztratili jste své heslo?" -#: templates/login.php:17 +#: templates/login.php:16 msgid "remember" msgstr "zapamatovat si" -#: templates/login.php:18 +#: templates/login.php:17 msgid "Log in" msgstr "Přihlásit" diff --git a/l10n/cs_CZ/files.po b/l10n/cs_CZ/files.po index 8da1d5687e..423a5045da 100644 --- a/l10n/cs_CZ/files.po +++ b/l10n/cs_CZ/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-10 02:02+0200\n" -"PO-Revision-Date: 2012-09-09 10:25+0000\n" +"POT-Creation-Date: 2012-09-27 02:01+0200\n" +"PO-Revision-Date: 2012-09-26 12:01+0000\n" "Last-Translator: Tomáš Chvátal \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -62,39 +62,43 @@ msgstr "Zrušit sdílení" msgid "Delete" msgstr "Smazat" -#: js/filelist.js:186 js/filelist.js:188 +#: js/fileactions.js:182 +msgid "Rename" +msgstr "Přejmenovat" + +#: js/filelist.js:190 js/filelist.js:192 msgid "already exists" msgstr "již existuje" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "replace" msgstr "nahradit" -#: js/filelist.js:186 +#: js/filelist.js:190 msgid "suggest name" msgstr "navrhnout název" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "cancel" msgstr "zrušit" -#: js/filelist.js:235 js/filelist.js:237 +#: js/filelist.js:239 js/filelist.js:241 msgid "replaced" msgstr "nahrazeno" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:239 js/filelist.js:241 js/filelist.js:273 js/filelist.js:275 msgid "undo" msgstr "zpět" -#: js/filelist.js:237 +#: js/filelist.js:241 msgid "with" msgstr "s" -#: js/filelist.js:268 +#: js/filelist.js:273 msgid "unshared" msgstr "sdílení zrušeno" -#: js/filelist.js:270 +#: js/filelist.js:275 msgid "deleted" msgstr "smazáno" @@ -110,47 +114,107 @@ msgstr "Nelze odeslat Váš soubor, protože je to adresář nebo má velikost 0 msgid "Upload Error" msgstr "Chyba odesílání" -#: js/files.js:236 js/files.js:341 js/files.js:370 +#: js/files.js:236 js/files.js:341 js/files.js:371 msgid "Pending" msgstr "Čekající" -#: js/files.js:355 +#: js/files.js:256 +msgid "1 file uploading" +msgstr "odesílá se 1 soubor" + +#: js/files.js:259 js/files.js:304 js/files.js:319 +msgid "files uploading" +msgstr "souborů se odesílá" + +#: js/files.js:322 js/files.js:355 msgid "Upload cancelled." msgstr "Odesílání zrušeno." -#: js/files.js:423 +#: js/files.js:424 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Probíhá odesílání souboru. Opuštění stránky vyústí ve zrušení nahrávání." -#: js/files.js:493 +#: js/files.js:494 msgid "Invalid name, '/' is not allowed." msgstr "Neplatný název, znak '/' není povolen" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:668 +msgid "files scanned" +msgstr "soubory prohledány" + +#: js/files.js:676 +msgid "error while scanning" +msgstr "chyba při prohledávání" + +#: js/files.js:749 templates/index.php:48 +msgid "Name" +msgstr "Název" + +#: js/files.js:750 templates/index.php:56 msgid "Size" msgstr "Velikost" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:751 templates/index.php:58 msgid "Modified" msgstr "Změněno" -#: js/files.js:774 +#: js/files.js:778 msgid "folder" msgstr "složka" -#: js/files.js:776 +#: js/files.js:780 msgid "folders" msgstr "složky" -#: js/files.js:784 +#: js/files.js:788 msgid "file" msgstr "soubor" -#: js/files.js:786 +#: js/files.js:790 msgid "files" msgstr "soubory" +#: js/files.js:834 +msgid "seconds ago" +msgstr "před pár sekundami" + +#: js/files.js:835 +msgid "minute ago" +msgstr "před minutou" + +#: js/files.js:836 +msgid "minutes ago" +msgstr "před pár minutami" + +#: js/files.js:839 +msgid "today" +msgstr "dnes" + +#: js/files.js:840 +msgid "yesterday" +msgstr "včera" + +#: js/files.js:841 +msgid "days ago" +msgstr "před pár dny" + +#: js/files.js:842 +msgid "last month" +msgstr "minulý měsíc" + +#: js/files.js:844 +msgid "months ago" +msgstr "před pár měsíci" + +#: js/files.js:845 +msgid "last year" +msgstr "minulý rok" + +#: js/files.js:846 +msgid "years ago" +msgstr "před pár lety" + #: templates/admin.php:5 msgid "File handling" msgstr "Zacházení se soubory" @@ -199,7 +263,7 @@ msgstr "Složka" msgid "From url" msgstr "Z url" -#: templates/index.php:21 +#: templates/index.php:20 msgid "Upload" msgstr "Odeslat" @@ -211,10 +275,6 @@ msgstr "Zrušit odesílání" msgid "Nothing in here. Upload something!" msgstr "Žádný obsah. Nahrajte něco." -#: templates/index.php:48 -msgid "Name" -msgstr "Název" - #: templates/index.php:50 msgid "Share" msgstr "Sdílet" diff --git a/l10n/cs_CZ/files_sharing.po b/l10n/cs_CZ/files_sharing.po index d4c56e7635..bf14914d76 100644 --- a/l10n/cs_CZ/files_sharing.po +++ b/l10n/cs_CZ/files_sharing.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 13:37+0000\n" +"POT-Creation-Date: 2012-09-23 02:01+0200\n" +"PO-Revision-Date: 2012-09-22 11:59+0000\n" "Last-Translator: Tomáš Chvátal \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -28,14 +28,24 @@ msgstr "Heslo" msgid "Submit" msgstr "Odeslat" -#: templates/public.php:9 templates/public.php:19 +#: templates/public.php:9 +#, php-format +msgid "%s shared the folder %s with you" +msgstr "%s s Vámi sdílí složku %s" + +#: templates/public.php:11 +#, php-format +msgid "%s shared the file %s with you" +msgstr "%s s Vámi sdílí soubor %s" + +#: templates/public.php:14 templates/public.php:30 msgid "Download" msgstr "Stáhnout" -#: templates/public.php:18 +#: templates/public.php:29 msgid "No preview available for" msgstr "Náhled není dostupný pro" -#: templates/public.php:25 +#: templates/public.php:37 msgid "web services under your control" msgstr "služby webu pod Vaší kontrolou" diff --git a/l10n/cs_CZ/files_versions.po b/l10n/cs_CZ/files_versions.po index 62610aa876..2f10904407 100644 --- a/l10n/cs_CZ/files_versions.po +++ b/l10n/cs_CZ/files_versions.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" -"PO-Revision-Date: 2012-09-17 00:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-23 02:01+0200\n" +"PO-Revision-Date: 2012-09-22 11:58+0000\n" +"Last-Translator: Tomáš Chvátal \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -23,6 +23,10 @@ msgstr "" msgid "Expire all versions" msgstr "Vypršet všechny verze" +#: js/versions.js:16 +msgid "History" +msgstr "Historie" + #: templates/settings-personal.php:4 msgid "Versions" msgstr "Verze" @@ -33,8 +37,8 @@ msgstr "Odstraní všechny existující zálohované verze Vašich souborů" #: templates/settings.php:3 msgid "Files Versioning" -msgstr "" +msgstr "Verzování souborů" #: templates/settings.php:4 msgid "Enable" -msgstr "" +msgstr "Povolit" diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po index 4e8e8e7dca..420e26a8b3 100644 --- a/l10n/cs_CZ/settings.po +++ b/l10n/cs_CZ/settings.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:03+0200\n" -"PO-Revision-Date: 2012-09-17 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-20 02:05+0200\n" +"PO-Revision-Date: 2012-09-19 17:40+0000\n" +"Last-Translator: Tomáš Chvátal \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -40,7 +40,7 @@ msgstr "Skupina již existuje" msgid "Unable to add group" msgstr "Nelze přidat skupinu" -#: ajax/enableapp.php:13 +#: ajax/enableapp.php:14 msgid "Could not enable app. " msgstr "Nelze povolit aplikaci." @@ -82,15 +82,11 @@ msgstr "Nelze přidat uživatele do skupiny %s" msgid "Unable to remove user from group %s" msgstr "Nelze odstranit uživatele ze skupiny %s" -#: js/apps.js:18 -msgid "Error" -msgstr "Chyba" - -#: js/apps.js:39 js/apps.js:73 +#: js/apps.js:27 js/apps.js:61 msgid "Disable" msgstr "Zakázat" -#: js/apps.js:39 js/apps.js:62 +#: js/apps.js:27 js/apps.js:50 msgid "Enable" msgstr "Povolit" @@ -121,7 +117,7 @@ msgstr "Cron" #: templates/admin.php:37 msgid "Execute one task with each page loaded" -msgstr "" +msgstr "Spustit jednu úlohu s každou načtenou stránkou" #: templates/admin.php:43 msgid "" @@ -133,11 +129,11 @@ msgstr "cron.php je registrován u služby webcron. Zavolá stránku cron.php v msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "" +msgstr "Použít systémovou službu cron. Zavolat soubor cron.php ze složky owncloud pomocí systémové úlohy cron každou minutu." #: templates/admin.php:56 msgid "Sharing" -msgstr "" +msgstr "Sdílení" #: templates/admin.php:61 msgid "Enable Share API" @@ -230,12 +226,9 @@ msgid "Answer" msgstr "Odpověď" #: templates/personal.php:8 -msgid "You use" -msgstr "Využíváte" - -#: templates/personal.php:8 -msgid "of the available" -msgstr "z dostupných" +#, php-format +msgid "You have used %s of the available %s" +msgstr "Použili jste %s z dostupných %s" #: templates/personal.php:12 msgid "Desktop and Mobile Syncing Clients" @@ -246,7 +239,7 @@ msgid "Download" msgstr "Stáhnout" #: templates/personal.php:19 -msgid "Your password got changed" +msgid "Your password was changed" msgstr "Vaše heslo bylo změněno" #: templates/personal.php:20 diff --git a/l10n/da/core.po b/l10n/da/core.po index bbb688dca5..3ef84754e3 100644 --- a/l10n/da/core.po +++ b/l10n/da/core.po @@ -4,7 +4,7 @@ # # Translators: # , 2011, 2012. -# Morten Juhl-Johansen Zölde-Fejér , 2011, 2012. +# Morten Juhl-Johansen Zölde-Fejér , 2011-2012. # Pascal d'Hermilly , 2011. # , 2012. # Thomas Tanghus <>, 2012. @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -35,58 +35,62 @@ msgstr "Ingen kategori at tilføje?" msgid "This category already exists: " msgstr "Denne kategori eksisterer allerede: " -#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Indstillinger" -#: js/js.js:593 +#: js/js.js:645 msgid "January" msgstr "Januar" -#: js/js.js:593 +#: js/js.js:645 msgid "February" msgstr "Februar" -#: js/js.js:593 +#: js/js.js:645 msgid "March" msgstr "Marts" -#: js/js.js:593 +#: js/js.js:645 msgid "April" msgstr "April" -#: js/js.js:593 +#: js/js.js:645 msgid "May" msgstr "Maj" -#: js/js.js:593 +#: js/js.js:645 msgid "June" msgstr "Juni" -#: js/js.js:594 +#: js/js.js:646 msgid "July" msgstr "Juli" -#: js/js.js:594 +#: js/js.js:646 msgid "August" msgstr "August" -#: js/js.js:594 +#: js/js.js:646 msgid "September" msgstr "September" -#: js/js.js:594 +#: js/js.js:646 msgid "October" msgstr "Oktober" -#: js/js.js:594 +#: js/js.js:646 msgid "November" msgstr "November" -#: js/js.js:594 +#: js/js.js:646 msgid "December" msgstr "December" +#: js/oc-dialogs.js:123 +msgid "Choose" +msgstr "Vælg" + #: js/oc-dialogs.js:143 js/oc-dialogs.js:163 msgid "Cancel" msgstr "Fortryd" @@ -107,10 +111,119 @@ msgstr "OK" msgid "No categories selected for deletion." msgstr "Ingen kategorier valgt" -#: js/oc-vcategories.js:68 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 +#: js/share.js:501 msgid "Error" msgstr "Fejl" +#: js/share.js:103 +msgid "Error while sharing" +msgstr "Fejl under deling" + +#: js/share.js:114 +msgid "Error while unsharing" +msgstr "Fejl under annullering af deling" + +#: js/share.js:121 +msgid "Error while changing permissions" +msgstr "Fejl under justering af rettigheder" + +#: js/share.js:130 +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" +msgstr "" + +#: js/share.js:132 +msgid "Shared with you by" +msgstr "" + +#: js/share.js:137 +msgid "Share with" +msgstr "Del med" + +#: js/share.js:142 +msgid "Share with link" +msgstr "Del med link" + +#: js/share.js:143 +msgid "Password protect" +msgstr "Beskyt med adgangskode" + +#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +msgid "Password" +msgstr "Kodeord" + +#: js/share.js:152 +msgid "Set expiration date" +msgstr "Vælg udløbsdato" + +#: js/share.js:153 +msgid "Expiration date" +msgstr "Udløbsdato" + +#: js/share.js:185 +msgid "Share via email:" +msgstr "" + +#: js/share.js:187 +msgid "No people found" +msgstr "Ingen personer fundet" + +#: js/share.js:214 +msgid "Resharing is not allowed" +msgstr "Videredeling ikke tilladt" + +#: js/share.js:250 +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" +msgstr "" + +#: js/share.js:271 +msgid "Unshare" +msgstr "Fjern deling" + +#: js/share.js:279 +msgid "can edit" +msgstr "kan redigere" + +#: js/share.js:281 +msgid "access control" +msgstr "Adgangskontrol" + +#: js/share.js:284 +msgid "create" +msgstr "opret" + +#: js/share.js:287 +msgid "update" +msgstr "opdater" + +#: js/share.js:290 +msgid "delete" +msgstr "slet" + +#: js/share.js:293 +msgid "share" +msgstr "del" + +#: js/share.js:317 js/share.js:476 +msgid "Password protected" +msgstr "Beskyttet med adgangskode" + +#: js/share.js:489 +msgid "Error unsetting expiration date" +msgstr "" + +#: js/share.js:501 +msgid "Error setting expiration date" +msgstr "Fejl under sætning af udløbsdato" + #: lostpassword/index.php:26 msgid "ownCloud password reset" msgstr "Nulstil ownCloud kodeord" @@ -196,10 +309,6 @@ msgstr "Tilføj" msgid "Create an admin account" msgstr "Opret en administratorkonto" -#: templates/installation.php:30 templates/login.php:13 -msgid "Password" -msgstr "Kodeord" - #: templates/installation.php:36 msgid "Advanced" msgstr "Avanceret" @@ -241,11 +350,11 @@ msgstr "Databasehost" msgid "Finish setup" msgstr "Afslut opsætning" -#: templates/layout.guest.php:42 +#: templates/layout.guest.php:36 msgid "web services under your control" msgstr "Webtjenester under din kontrol" -#: templates/layout.user.php:45 +#: templates/layout.user.php:34 msgid "Log out" msgstr "Log ud" diff --git a/l10n/da/files.po b/l10n/da/files.po index 98943475b5..a6077390cd 100644 --- a/l10n/da/files.po +++ b/l10n/da/files.po @@ -3,7 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Morten Juhl-Johansen Zölde-Fejér , 2011, 2012. +# Morten Juhl-Johansen Zölde-Fejér , 2011-2012. # , 2012. # Pascal d'Hermilly , 2011. # , 2012. @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-14 02:01+0200\n" -"PO-Revision-Date: 2012-09-13 09:23+0000\n" -"Last-Translator: osos \n" +"POT-Creation-Date: 2012-09-26 13:19+0200\n" +"PO-Revision-Date: 2012-09-26 11:20+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -65,39 +65,43 @@ msgstr "Fjern deling" msgid "Delete" msgstr "Slet" -#: js/filelist.js:186 js/filelist.js:188 +#: js/fileactions.js:182 +msgid "Rename" +msgstr "Omdøb" + +#: js/filelist.js:190 js/filelist.js:192 msgid "already exists" msgstr "findes allerede" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "replace" msgstr "erstat" -#: js/filelist.js:186 +#: js/filelist.js:190 msgid "suggest name" msgstr "foreslå navn" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "cancel" msgstr "fortryd" -#: js/filelist.js:235 js/filelist.js:237 +#: js/filelist.js:239 js/filelist.js:241 msgid "replaced" msgstr "erstattet" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:239 js/filelist.js:241 js/filelist.js:273 js/filelist.js:275 msgid "undo" msgstr "fortryd" -#: js/filelist.js:237 +#: js/filelist.js:241 msgid "with" msgstr "med" -#: js/filelist.js:268 +#: js/filelist.js:273 msgid "unshared" msgstr "udelt" -#: js/filelist.js:270 +#: js/filelist.js:275 msgid "deleted" msgstr "Slettet" @@ -113,47 +117,107 @@ msgstr "Kunne ikke uploade din fil, da det enten er en mappe eller er tom" msgid "Upload Error" msgstr "Fejl ved upload" -#: js/files.js:236 js/files.js:341 js/files.js:370 +#: js/files.js:236 js/files.js:341 js/files.js:371 msgid "Pending" msgstr "Afventer" -#: js/files.js:355 +#: js/files.js:256 +msgid "1 file uploading" +msgstr "" + +#: js/files.js:259 js/files.js:304 js/files.js:319 +msgid "files uploading" +msgstr "" + +#: js/files.js:322 js/files.js:355 msgid "Upload cancelled." msgstr "Upload afbrudt." -#: js/files.js:423 +#: js/files.js:424 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Fil upload kører. Hvis du forlader siden nu, vil uploadet blive annuleret." -#: js/files.js:493 +#: js/files.js:494 msgid "Invalid name, '/' is not allowed." msgstr "Ugyldigt navn, '/' er ikke tilladt." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:667 +msgid "files scanned" +msgstr "filer scannet" + +#: js/files.js:675 +msgid "error while scanning" +msgstr "fejl under scanning" + +#: js/files.js:748 templates/index.php:48 +msgid "Name" +msgstr "Navn" + +#: js/files.js:749 templates/index.php:56 msgid "Size" msgstr "Størrelse" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:750 templates/index.php:58 msgid "Modified" msgstr "Ændret" -#: js/files.js:774 +#: js/files.js:777 msgid "folder" msgstr "mappe" -#: js/files.js:776 +#: js/files.js:779 msgid "folders" msgstr "mapper" -#: js/files.js:784 +#: js/files.js:787 msgid "file" msgstr "fil" -#: js/files.js:786 +#: js/files.js:789 msgid "files" msgstr "filer" +#: js/files.js:833 +msgid "seconds ago" +msgstr "" + +#: js/files.js:834 +msgid "minute ago" +msgstr "" + +#: js/files.js:835 +msgid "minutes ago" +msgstr "" + +#: js/files.js:838 +msgid "today" +msgstr "" + +#: js/files.js:839 +msgid "yesterday" +msgstr "" + +#: js/files.js:840 +msgid "days ago" +msgstr "" + +#: js/files.js:841 +msgid "last month" +msgstr "" + +#: js/files.js:843 +msgid "months ago" +msgstr "" + +#: js/files.js:844 +msgid "last year" +msgstr "" + +#: js/files.js:845 +msgid "years ago" +msgstr "" + #: templates/admin.php:5 msgid "File handling" msgstr "Filhåndtering" @@ -202,7 +266,7 @@ msgstr "Mappe" msgid "From url" msgstr "Fra URL" -#: templates/index.php:21 +#: templates/index.php:20 msgid "Upload" msgstr "Upload" @@ -214,10 +278,6 @@ msgstr "Fortryd upload" msgid "Nothing in here. Upload something!" msgstr "Her er tomt. Upload noget!" -#: templates/index.php:48 -msgid "Name" -msgstr "Navn" - #: templates/index.php:50 msgid "Share" msgstr "Del" diff --git a/l10n/da/files_external.po b/l10n/da/files_external.po index d602714dba..a37fa55a6f 100644 --- a/l10n/da/files_external.po +++ b/l10n/da/files_external.po @@ -3,80 +3,81 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Morten Juhl-Johansen Zölde-Fejér , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:34+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-26 02:02+0200\n" +"PO-Revision-Date: 2012-09-25 14:09+0000\n" +"Last-Translator: Morten Juhl-Johansen Zölde-Fejér \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: da\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/settings.php:3 msgid "External Storage" -msgstr "" +msgstr "Ekstern opbevaring" #: templates/settings.php:7 templates/settings.php:19 msgid "Mount point" -msgstr "" +msgstr "Monteringspunkt" #: templates/settings.php:8 msgid "Backend" -msgstr "" +msgstr "Backend" #: templates/settings.php:9 msgid "Configuration" -msgstr "" +msgstr "Opsætning" #: templates/settings.php:10 msgid "Options" -msgstr "" +msgstr "Valgmuligheder" #: templates/settings.php:11 msgid "Applicable" -msgstr "" +msgstr "Kan anvendes" #: templates/settings.php:23 msgid "Add mount point" -msgstr "" +msgstr "Tilføj monteringspunkt" #: templates/settings.php:54 templates/settings.php:62 msgid "None set" -msgstr "" +msgstr "Ingen sat" #: templates/settings.php:63 msgid "All Users" -msgstr "" +msgstr "Alle brugere" #: templates/settings.php:64 msgid "Groups" -msgstr "" +msgstr "Grupper" #: templates/settings.php:69 msgid "Users" -msgstr "" +msgstr "Brugere" -#: templates/settings.php:77 templates/settings.php:96 +#: templates/settings.php:77 templates/settings.php:107 msgid "Delete" -msgstr "" +msgstr "Slet" + +#: templates/settings.php:87 +msgid "Enable User External Storage" +msgstr "Aktiver ekstern opbevaring for brugere" #: templates/settings.php:88 -msgid "SSL root certificates" -msgstr "" - -#: templates/settings.php:102 -msgid "Import Root Certificate" -msgstr "" - -#: templates/settings.php:108 -msgid "Enable User External Storage" -msgstr "" - -#: templates/settings.php:109 msgid "Allow users to mount their own external storage" -msgstr "" +msgstr "Tillad brugere at montere deres egne eksterne opbevaring" + +#: templates/settings.php:99 +msgid "SSL root certificates" +msgstr "SSL-rodcertifikater" + +#: templates/settings.php:113 +msgid "Import Root Certificate" +msgstr "Importer rodcertifikat" diff --git a/l10n/da/files_sharing.po b/l10n/da/files_sharing.po index d67a3ef190..99b2cdf8e9 100644 --- a/l10n/da/files_sharing.po +++ b/l10n/da/files_sharing.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Morten Juhl-Johansen Zölde-Fejér , 2012. # , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-14 02:01+0200\n" -"PO-Revision-Date: 2012-09-13 09:35+0000\n" -"Last-Translator: osos \n" +"POT-Creation-Date: 2012-09-24 02:01+0200\n" +"PO-Revision-Date: 2012-09-23 08:48+0000\n" +"Last-Translator: Morten Juhl-Johansen Zölde-Fejér \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,14 +27,24 @@ msgstr "Kodeord" msgid "Submit" msgstr "Send" -#: templates/public.php:9 templates/public.php:19 +#: templates/public.php:9 +#, php-format +msgid "%s shared the folder %s with you" +msgstr "%s delte mappen %s med dig" + +#: templates/public.php:11 +#, php-format +msgid "%s shared the file %s with you" +msgstr "%s delte filen %s med dig" + +#: templates/public.php:14 templates/public.php:30 msgid "Download" msgstr "Download" -#: templates/public.php:18 +#: templates/public.php:29 msgid "No preview available for" msgstr "Forhåndsvisning ikke tilgængelig for" -#: templates/public.php:25 +#: templates/public.php:37 msgid "web services under your control" msgstr "Webtjenester under din kontrol" diff --git a/l10n/da/files_versions.po b/l10n/da/files_versions.po index b0e8abb06f..3e6898ddd4 100644 --- a/l10n/da/files_versions.po +++ b/l10n/da/files_versions.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Morten Juhl-Johansen Zölde-Fejér , 2012. # , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" -"PO-Revision-Date: 2012-09-17 00:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-26 02:02+0200\n" +"PO-Revision-Date: 2012-09-25 14:07+0000\n" +"Last-Translator: Morten Juhl-Johansen Zölde-Fejér \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,6 +23,10 @@ msgstr "" msgid "Expire all versions" msgstr "Lad alle versioner udløbe" +#: js/versions.js:16 +msgid "History" +msgstr "Historik" + #: templates/settings-personal.php:4 msgid "Versions" msgstr "Versioner" @@ -32,8 +37,8 @@ msgstr "Dette vil slette alle eksisterende backupversioner af dine filer" #: templates/settings.php:3 msgid "Files Versioning" -msgstr "" +msgstr "Versionering af filer" #: templates/settings.php:4 msgid "Enable" -msgstr "" +msgstr "Aktiver" diff --git a/l10n/da/lib.po b/l10n/da/lib.po index e9b14de3e5..04ff6d5807 100644 --- a/l10n/da/lib.po +++ b/l10n/da/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-14 02:01+0200\n" -"PO-Revision-Date: 2012-09-13 09:43+0000\n" -"Last-Translator: osos \n" +"POT-Creation-Date: 2012-09-24 02:02+0200\n" +"PO-Revision-Date: 2012-09-23 06:51+0000\n" +"Last-Translator: Morten Juhl-Johansen Zölde-Fejér \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -43,19 +43,19 @@ msgstr "Apps" msgid "Admin" msgstr "Admin" -#: files.php:280 +#: files.php:309 msgid "ZIP download is turned off." msgstr "ZIP-download er slået fra." -#: files.php:281 +#: files.php:310 msgid "Files need to be downloaded one by one." msgstr "Filer skal downloades en for en." -#: files.php:281 files.php:306 +#: files.php:310 files.php:335 msgid "Back to Files" msgstr "Tilbage til Filer" -#: files.php:305 +#: files.php:334 msgid "Selected files too large to generate zip file." msgstr "De markerede filer er for store til at generere en ZIP-fil." @@ -124,4 +124,4 @@ msgstr "opdateret" #: updater.php:71 msgid "updates check is disabled" -msgstr "" +msgstr "Check for opdateringer er deaktiveret" diff --git a/l10n/da/settings.po b/l10n/da/settings.po index d9cace9217..4d59eb30b5 100644 --- a/l10n/da/settings.po +++ b/l10n/da/settings.po @@ -5,7 +5,7 @@ # Translators: # , 2012. # , 2011. -# Morten Juhl-Johansen Zölde-Fejér , 2011, 2012. +# Morten Juhl-Johansen Zölde-Fejér , 2011-2012. # Pascal d'Hermilly , 2011. # , 2012. # , 2012. @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:03+0200\n" -"PO-Revision-Date: 2012-09-17 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-26 02:03+0200\n" +"PO-Revision-Date: 2012-09-25 14:04+0000\n" +"Last-Translator: Morten Juhl-Johansen Zölde-Fejér \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -36,15 +36,15 @@ msgstr "Adgangsfejl" #: ajax/creategroup.php:19 msgid "Group already exists" -msgstr "" +msgstr "Gruppen findes allerede" #: ajax/creategroup.php:28 msgid "Unable to add group" -msgstr "" +msgstr "Gruppen kan ikke oprettes" -#: ajax/enableapp.php:13 +#: ajax/enableapp.php:14 msgid "Could not enable app. " -msgstr "" +msgstr "Applikationen kunne ikke aktiveres." #: ajax/lostpassword.php:14 msgid "Email saved" @@ -64,11 +64,11 @@ msgstr "Ugyldig forespørgsel" #: ajax/removegroup.php:16 msgid "Unable to delete group" -msgstr "" +msgstr "Gruppen kan ikke slettes" #: ajax/removeuser.php:22 msgid "Unable to delete user" -msgstr "" +msgstr "Bruger kan ikke slettes" #: ajax/setlanguage.php:18 msgid "Language changed" @@ -77,22 +77,18 @@ msgstr "Sprog ændret" #: ajax/togglegroups.php:25 #, php-format msgid "Unable to add user to group %s" -msgstr "" +msgstr "Brugeren kan ikke tilføjes til gruppen %s" #: ajax/togglegroups.php:31 #, php-format msgid "Unable to remove user from group %s" -msgstr "" +msgstr "Brugeren kan ikke fjernes fra gruppen %s" -#: js/apps.js:18 -msgid "Error" -msgstr "Fejl" - -#: js/apps.js:39 js/apps.js:73 +#: js/apps.js:27 js/apps.js:61 msgid "Disable" msgstr "Deaktiver" -#: js/apps.js:39 js/apps.js:62 +#: js/apps.js:27 js/apps.js:50 msgid "Enable" msgstr "Aktiver" @@ -115,7 +111,7 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "" +msgstr "Din datamappe og dine filer er formentligt tilgængelige fra internettet.\n.htaccess-filen, som ownCloud leverer, fungerer ikke. Vi anbefaler stærkt, at du opsætter din server på en måde, så datamappen ikke længere er direkte tilgængelig, eller at du flytter datamappen udenfor serverens tilgængelige rodfilsystem." #: templates/admin.php:31 msgid "Cron" @@ -123,23 +119,23 @@ msgstr "Cron" #: templates/admin.php:37 msgid "Execute one task with each page loaded" -msgstr "" +msgstr "Udfør en opgave med hver side indlæst" #: templates/admin.php:43 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." -msgstr "" +msgstr "cron.php er registreret hos en webcron-tjeneste. Kald cron.php-siden i ownClouds rodmappe en gang i minuttet over http." #: templates/admin.php:49 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "" +msgstr "vend systemets cron-tjeneste. Kald cron.php-filen i ownCloud-mappen ved hjælp af systemets cronjob en gang i minuttet." #: templates/admin.php:56 msgid "Sharing" -msgstr "" +msgstr "Deling" #: templates/admin.php:61 msgid "Enable Share API" @@ -163,7 +159,7 @@ msgstr "Tillad gendeling" #: templates/admin.php:74 msgid "Allow users to share items shared with them again" -msgstr "" +msgstr "Tillad brugere at dele elementer, som er blevet delt med dem, videre til andre" #: templates/admin.php:79 msgid "Allow users to share with anyone" @@ -189,7 +185,7 @@ msgid "" "licensed under the AGPL." -msgstr "" +msgstr "Udviklet af ownClouds community, og kildekoden er underlagt licensen AGPL." #: templates/apps.php:10 msgid "Add your App" @@ -205,7 +201,7 @@ msgstr "Se applikationens side på apps.owncloud.com" #: templates/apps.php:30 msgid "-licensed by " -msgstr "" +msgstr "-licenseret af " #: templates/help.php:9 msgid "Documentation" @@ -232,12 +228,9 @@ msgid "Answer" msgstr "Svar" #: templates/personal.php:8 -msgid "You use" -msgstr "Du benytter" - -#: templates/personal.php:8 -msgid "of the available" -msgstr "af det tilgængelige" +#, php-format +msgid "You have used %s of the available %s" +msgstr "Du har brugt %s af de tilgængelige %s" #: templates/personal.php:12 msgid "Desktop and Mobile Syncing Clients" @@ -248,8 +241,8 @@ msgid "Download" msgstr "Download" #: templates/personal.php:19 -msgid "Your password got changed" -msgstr "Din adgangskode er blevet ændret" +msgid "Your password was changed" +msgstr "Din adgangskode blev ændret" #: templates/personal.php:20 msgid "Unable to change your password" diff --git a/l10n/da/user_ldap.po b/l10n/da/user_ldap.po index 1d87e55405..1d331efa3c 100644 --- a/l10n/da/user_ldap.po +++ b/l10n/da/user_ldap.po @@ -3,20 +3,21 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Morten Juhl-Johansen Zölde-Fejér , 2012. # , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-29 02:01+0200\n" -"PO-Revision-Date: 2012-08-29 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-26 02:02+0200\n" +"PO-Revision-Date: 2012-09-25 14:13+0000\n" +"Last-Translator: Morten Juhl-Johansen Zölde-Fejér \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: da\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/settings.php:8 msgid "Host" @@ -25,7 +26,7 @@ msgstr "Host" #: templates/settings.php:8 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" -msgstr "" +msgstr "Du kan udelade protokollen, medmindre du skal bruge SSL. Start i så fald med ldaps://" #: templates/settings.php:9 msgid "Base DN" diff --git a/l10n/de/core.po b/l10n/de/core.po index ee93387e05..66450ff692 100644 --- a/l10n/de/core.po +++ b/l10n/de/core.po @@ -5,9 +5,11 @@ # Translators: # , 2011, 2012. # , 2011. +# , 2012. # , 2011. # I Robot , 2012. # Jan-Christoph Borchardt , 2011. +# , 2012. # Marcel Kühlhorn , 2012. # , 2012. # , 2012. @@ -18,9 +20,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" -"PO-Revision-Date: 2012-09-16 18:13+0000\n" -"Last-Translator: traductor \n" +"POT-Creation-Date: 2012-09-29 02:02+0200\n" +"PO-Revision-Date: 2012-09-28 21:40+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,7 +32,7 @@ msgstr "" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." -msgstr "Applikationsname nicht angegeben" +msgstr "Der Anwendungsname wurde nicht angegeben." #: ajax/vcategories/add.php:29 msgid "No category to add?" @@ -40,58 +42,62 @@ msgstr "Keine Kategorie hinzuzufügen?" msgid "This category already exists: " msgstr "Kategorie existiert bereits:" -#: js/js.js:214 templates/layout.user.php:54 templates/layout.user.php:55 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Einstellungen" -#: js/js.js:642 +#: js/js.js:645 msgid "January" msgstr "Januar" -#: js/js.js:642 +#: js/js.js:645 msgid "February" msgstr "Februar" -#: js/js.js:642 +#: js/js.js:645 msgid "March" msgstr "März" -#: js/js.js:642 +#: js/js.js:645 msgid "April" msgstr "April" -#: js/js.js:642 +#: js/js.js:645 msgid "May" msgstr "Mai" -#: js/js.js:642 +#: js/js.js:645 msgid "June" msgstr "Juni" -#: js/js.js:643 +#: js/js.js:646 msgid "July" msgstr "Juli" -#: js/js.js:643 +#: js/js.js:646 msgid "August" msgstr "August" -#: js/js.js:643 +#: js/js.js:646 msgid "September" msgstr "September" -#: js/js.js:643 +#: js/js.js:646 msgid "October" msgstr "Oktober" -#: js/js.js:643 +#: js/js.js:646 msgid "November" msgstr "November" -#: js/js.js:643 +#: js/js.js:646 msgid "December" msgstr "Dezember" +#: js/oc-dialogs.js:123 +msgid "Choose" +msgstr "Auswählen" + #: js/oc-dialogs.js:143 js/oc-dialogs.js:163 msgid "Cancel" msgstr "Abbrechen" @@ -112,10 +118,119 @@ msgstr "OK" msgid "No categories selected for deletion." msgstr "Es wurde keine Kategorien zum Löschen ausgewählt." -#: js/oc-vcategories.js:68 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 +#: js/share.js:501 msgid "Error" msgstr "Fehler" +#: js/share.js:103 +msgid "Error while sharing" +msgstr "Fehler beim Freigeben" + +#: js/share.js:114 +msgid "Error while unsharing" +msgstr "Fehler beim Aufheben der Freigabe" + +#: js/share.js:121 +msgid "Error while changing permissions" +msgstr "Fehler beim Ändern der Rechte" + +#: js/share.js:130 +msgid "Shared with you and the group" +msgstr "Mit Dir und der Gruppe geteilt" + +#: js/share.js:130 +msgid "by" +msgstr "mit" + +#: js/share.js:132 +msgid "Shared with you by" +msgstr "Dies wurde mit dir geteilt von" + +#: js/share.js:137 +msgid "Share with" +msgstr "Freigeben für" + +#: js/share.js:142 +msgid "Share with link" +msgstr "Über einen Link freigeben" + +#: js/share.js:143 +msgid "Password protect" +msgstr "Passwortschutz" + +#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +msgid "Password" +msgstr "Passwort" + +#: js/share.js:152 +msgid "Set expiration date" +msgstr "Setze ein Ablaufdatum" + +#: js/share.js:153 +msgid "Expiration date" +msgstr "Ablaufdatum" + +#: js/share.js:185 +msgid "Share via email:" +msgstr "Über eine E-Mail freigeben:" + +#: js/share.js:187 +msgid "No people found" +msgstr "Niemand gefunden" + +#: js/share.js:214 +msgid "Resharing is not allowed" +msgstr "Weiterverteilen ist nicht erlaubt" + +#: js/share.js:250 +msgid "Shared in" +msgstr "Geteilt mit" + +#: js/share.js:250 +msgid "with" +msgstr "mit" + +#: js/share.js:271 +msgid "Unshare" +msgstr "Freigabe aufheben" + +#: js/share.js:279 +msgid "can edit" +msgstr "kann bearbeiten" + +#: js/share.js:281 +msgid "access control" +msgstr "Zugriffskontrolle" + +#: js/share.js:284 +msgid "create" +msgstr "erstellen" + +#: js/share.js:287 +msgid "update" +msgstr "aktualisieren" + +#: js/share.js:290 +msgid "delete" +msgstr "löschen" + +#: js/share.js:293 +msgid "share" +msgstr "teilen" + +#: js/share.js:317 js/share.js:476 +msgid "Password protected" +msgstr "Durch ein Passwort geschützt" + +#: js/share.js:489 +msgid "Error unsetting expiration date" +msgstr "Fehler beim entfernen des Ablaufdatums" + +#: js/share.js:501 +msgid "Error setting expiration date" +msgstr "Fehler beim Setzen des Ablaufdatums" + #: lostpassword/index.php:26 msgid "ownCloud password reset" msgstr "ownCloud-Passwort zurücksetzen" @@ -126,7 +241,7 @@ msgstr "Nutzen Sie den nachfolgenden Link, um Ihr Passwort zurückzusetzen: {lin #: lostpassword/templates/lostpassword.php:3 msgid "You will receive a link to reset your password via Email." -msgstr "Sie erhalten einen Link, um Ihr Passwort per E-Mail zurückzusetzen." +msgstr "Du erhälst einen Link per E-Mail, um Dein Passwort zurückzusetzen." #: lostpassword/templates/lostpassword.php:5 msgid "Requested" @@ -143,7 +258,7 @@ msgstr "Benutzername" #: lostpassword/templates/lostpassword.php:15 msgid "Request reset" -msgstr "Anfrage zurückgesetzt" +msgstr "Beantrage Zurücksetzung" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" @@ -201,13 +316,9 @@ msgstr "Hinzufügen" msgid "Create an admin account" msgstr "Administrator-Konto anlegen" -#: templates/installation.php:30 templates/login.php:13 -msgid "Password" -msgstr "Passwort" - #: templates/installation.php:36 msgid "Advanced" -msgstr "Erweitert" +msgstr "Fortgeschritten" #: templates/installation.php:38 msgid "Data folder" @@ -220,7 +331,7 @@ msgstr "Datenbank einrichten" #: templates/installation.php:50 templates/installation.php:61 #: templates/installation.php:71 templates/installation.php:81 msgid "will be used" -msgstr "wird genutzt" +msgstr "wird verwendet" #: templates/installation.php:93 msgid "Database user" @@ -250,7 +361,7 @@ msgstr "Installation abschließen" msgid "web services under your control" msgstr "Web-Services unter Ihrer Kontrolle" -#: templates/layout.user.php:39 +#: templates/layout.user.php:34 msgid "Log out" msgstr "Abmelden" @@ -268,7 +379,7 @@ msgstr "Einloggen" #: templates/logout.php:1 msgid "You are logged out." -msgstr "Sie wurden abgemeldet." +msgstr "Du wurdest abgemeldet." #: templates/part.pagenavi.php:3 msgid "prev" diff --git a/l10n/de/files.po b/l10n/de/files.po index 5a9037efcd..e2635a4a0b 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.po @@ -4,9 +4,11 @@ # # Translators: # , 2012. +# , 2012. # I Robot , 2012. # Jan-Christoph Borchardt , 2011. # Jan-Christoph Borchardt , 2011. +# , 2012. # , 2012. # Marcel Kühlhorn , 2012. # Michael Krell , 2012. @@ -20,9 +22,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" -"PO-Revision-Date: 2012-09-16 23:04+0000\n" -"Last-Translator: fmms \n" +"POT-Creation-Date: 2012-09-28 02:02+0200\n" +"PO-Revision-Date: 2012-09-27 22:31+0000\n" +"Last-Translator: Mirodin \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -66,45 +68,49 @@ msgstr "Dateien" #: js/fileactions.js:108 templates/index.php:62 msgid "Unshare" -msgstr "Nicht mehr teilen" +msgstr "Nicht mehr freigeben" #: js/fileactions.js:110 templates/index.php:64 msgid "Delete" msgstr "Löschen" -#: js/filelist.js:186 js/filelist.js:188 +#: js/fileactions.js:182 +msgid "Rename" +msgstr "Umbenennen" + +#: js/filelist.js:190 js/filelist.js:192 msgid "already exists" msgstr "ist bereits vorhanden" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "replace" msgstr "ersetzen" -#: js/filelist.js:186 +#: js/filelist.js:190 msgid "suggest name" msgstr "Name vorschlagen" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "cancel" msgstr "abbrechen" -#: js/filelist.js:235 js/filelist.js:237 +#: js/filelist.js:239 js/filelist.js:241 msgid "replaced" msgstr "ersetzt" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:239 js/filelist.js:241 js/filelist.js:273 js/filelist.js:275 msgid "undo" msgstr "rückgängig machen" -#: js/filelist.js:237 +#: js/filelist.js:241 msgid "with" msgstr "mit" -#: js/filelist.js:268 +#: js/filelist.js:273 msgid "unshared" -msgstr "Nicht mehr teilen" +msgstr "Nicht mehr freigegeben" -#: js/filelist.js:270 +#: js/filelist.js:275 msgid "deleted" msgstr "gelöscht" @@ -114,53 +120,113 @@ msgstr "Erstelle ZIP-Datei. Dies kann eine Weile dauern." #: js/files.js:208 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "Ihre Datei kann nicht hochgeladen werden, da sie ein Verzeichnis ist oder 0 Bytes hat." +msgstr "Ihre Datei kann nicht hochgeladen werden, da sie entweder ein Verzeichnis oder 0 Bytes groß ist." #: js/files.js:208 msgid "Upload Error" -msgstr "Fehler beim Hochladen" +msgstr "Fehler beim Upload" -#: js/files.js:236 js/files.js:341 js/files.js:370 +#: js/files.js:236 js/files.js:341 js/files.js:371 msgid "Pending" msgstr "Ausstehend" -#: js/files.js:355 -msgid "Upload cancelled." -msgstr "Hochladen abgebrochen." +#: js/files.js:256 +msgid "1 file uploading" +msgstr "Eine Datei wird hoch geladen" -#: js/files.js:423 +#: js/files.js:259 js/files.js:304 js/files.js:319 +msgid "files uploading" +msgstr "Dateien werden hoch geladen" + +#: js/files.js:322 js/files.js:355 +msgid "Upload cancelled." +msgstr "Upload abgebrochen." + +#: js/files.js:424 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Dateiupload läuft. Wenn Sie die Seite jetzt verlassen, wird der Upload abgebrochen." -#: js/files.js:493 +#: js/files.js:494 msgid "Invalid name, '/' is not allowed." msgstr "Ungültiger Name: \"/\" ist nicht erlaubt." -#: js/files.js:748 templates/index.php:56 +#: js/files.js:668 +msgid "files scanned" +msgstr "Dateien gescannt" + +#: js/files.js:676 +msgid "error while scanning" +msgstr "Fehler beim Scannen" + +#: js/files.js:749 templates/index.php:48 +msgid "Name" +msgstr "Name" + +#: js/files.js:750 templates/index.php:56 msgid "Size" msgstr "Größe" -#: js/files.js:749 templates/index.php:58 +#: js/files.js:751 templates/index.php:58 msgid "Modified" msgstr "Bearbeitet" -#: js/files.js:776 +#: js/files.js:778 msgid "folder" msgstr "Ordner" -#: js/files.js:778 +#: js/files.js:780 msgid "folders" msgstr "Ordner" -#: js/files.js:786 +#: js/files.js:788 msgid "file" msgstr "Datei" -#: js/files.js:788 +#: js/files.js:790 msgid "files" msgstr "Dateien" +#: js/files.js:834 +msgid "seconds ago" +msgstr "Sekunden her" + +#: js/files.js:835 +msgid "minute ago" +msgstr "Minute her" + +#: js/files.js:836 +msgid "minutes ago" +msgstr "Minuten her" + +#: js/files.js:839 +msgid "today" +msgstr "Heute" + +#: js/files.js:840 +msgid "yesterday" +msgstr "Gestern" + +#: js/files.js:841 +msgid "days ago" +msgstr "Tage her" + +#: js/files.js:842 +msgid "last month" +msgstr "Letzten Monat" + +#: js/files.js:844 +msgid "months ago" +msgstr "Monate her" + +#: js/files.js:845 +msgid "last year" +msgstr "Letztes Jahr" + +#: js/files.js:846 +msgid "years ago" +msgstr "Jahre her" + #: templates/admin.php:5 msgid "File handling" msgstr "Dateibehandlung" @@ -207,9 +273,9 @@ msgstr "Ordner" #: templates/index.php:11 msgid "From url" -msgstr "Von der URL" +msgstr "Von einer URL" -#: templates/index.php:21 +#: templates/index.php:20 msgid "Upload" msgstr "Hochladen" @@ -221,10 +287,6 @@ msgstr "Upload abbrechen" msgid "Nothing in here. Upload something!" msgstr "Alles leer. Lade etwas hoch!" -#: templates/index.php:48 -msgid "Name" -msgstr "Name" - #: templates/index.php:50 msgid "Share" msgstr "Teilen" diff --git a/l10n/de/files_sharing.po b/l10n/de/files_sharing.po index 7d11d39369..6499041639 100644 --- a/l10n/de/files_sharing.po +++ b/l10n/de/files_sharing.po @@ -11,15 +11,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-08-31 09:46+0000\n" -"Last-Translator: traductor \n" +"POT-Creation-Date: 2012-09-22 02:00+0200\n" +"PO-Revision-Date: 2012-09-21 23:22+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: de\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 msgid "Password" @@ -29,14 +29,24 @@ msgstr "Passwort" msgid "Submit" msgstr "Absenden" -#: templates/public.php:9 templates/public.php:19 +#: templates/public.php:9 +#, php-format +msgid "%s shared the folder %s with you" +msgstr "%s hat mit Ihnen den Ordner %s geteilt" + +#: templates/public.php:11 +#, php-format +msgid "%s shared the file %s with you" +msgstr "%s hat mit Ihnen die Datei %s geteilt" + +#: templates/public.php:14 templates/public.php:30 msgid "Download" msgstr "Download" -#: templates/public.php:18 +#: templates/public.php:29 msgid "No preview available for" msgstr "Es ist keine Vorschau verfügbar für" -#: templates/public.php:23 +#: templates/public.php:37 msgid "web services under your control" msgstr "Web-Services unter Ihrer Kontrolle" diff --git a/l10n/de/files_versions.po b/l10n/de/files_versions.po index 2cfa07980b..d6e541868d 100644 --- a/l10n/de/files_versions.po +++ b/l10n/de/files_versions.po @@ -4,14 +4,15 @@ # # Translators: # I Robot , 2012. +# , 2012. # , 2012. # , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" -"PO-Revision-Date: 2012-09-17 00:04+0000\n" +"POT-Creation-Date: 2012-09-22 02:00+0200\n" +"PO-Revision-Date: 2012-09-21 23:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" @@ -24,6 +25,10 @@ msgstr "" msgid "Expire all versions" msgstr "Alle Versionen löschen" +#: js/versions.js:16 +msgid "History" +msgstr "Historie" + #: templates/settings-personal.php:4 msgid "Versions" msgstr "Versionen" @@ -34,8 +39,8 @@ msgstr "Dies löscht alle vorhandenen Sicherungsversionen Ihrer Dateien." #: templates/settings.php:3 msgid "Files Versioning" -msgstr "" +msgstr "Dateiversionierung" #: templates/settings.php:4 msgid "Enable" -msgstr "" +msgstr "Aktivieren" diff --git a/l10n/de/lib.po b/l10n/de/lib.po index b43e2799fd..d1d17eec25 100644 --- a/l10n/de/lib.po +++ b/l10n/de/lib.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. # Phi Lieb <>, 2012. # , 2012. # , 2012. @@ -10,53 +11,53 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 08:07+0000\n" -"Last-Translator: traductor \n" +"POT-Creation-Date: 2012-09-28 02:03+0200\n" +"PO-Revision-Date: 2012-09-27 22:40+0000\n" +"Last-Translator: Mirodin \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: de\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:288 +#: app.php:285 msgid "Help" msgstr "Hilfe" -#: app.php:295 +#: app.php:292 msgid "Personal" msgstr "Persönlich" -#: app.php:300 +#: app.php:297 msgid "Settings" msgstr "Einstellungen" -#: app.php:305 +#: app.php:302 msgid "Users" msgstr "Benutzer" -#: app.php:312 +#: app.php:309 msgid "Apps" msgstr "Apps" -#: app.php:314 +#: app.php:311 msgid "Admin" msgstr "Administrator" -#: files.php:280 +#: files.php:327 msgid "ZIP download is turned off." msgstr "Der ZIP-Download ist deaktiviert." -#: files.php:281 +#: files.php:328 msgid "Files need to be downloaded one by one." msgstr "Die Dateien müssen einzeln heruntergeladen werden." -#: files.php:281 files.php:306 +#: files.php:328 files.php:353 msgid "Back to Files" msgstr "Zurück zu \"Dateien\"" -#: files.php:305 +#: files.php:352 msgid "Selected files too large to generate zip file." msgstr "Die gewählten Dateien sind zu groß, um eine ZIP-Datei zu erstellen." @@ -70,47 +71,47 @@ msgstr "Authentifizierungs-Fehler" #: json.php:51 msgid "Token expired. Please reload page." -msgstr "Token abgelaufen. Bitte laden Sie die Seite neu." +msgstr "Token abgelaufen. Bitte lade die Seite neu." -#: template.php:86 +#: template.php:87 msgid "seconds ago" msgstr "Vor wenigen Sekunden" -#: template.php:87 +#: template.php:88 msgid "1 minute ago" msgstr "Vor einer Minute" -#: template.php:88 +#: template.php:89 #, php-format msgid "%d minutes ago" msgstr "Vor %d Minuten" -#: template.php:91 +#: template.php:92 msgid "today" msgstr "Heute" -#: template.php:92 +#: template.php:93 msgid "yesterday" msgstr "Gestern" -#: template.php:93 +#: template.php:94 #, php-format msgid "%d days ago" -msgstr "Vor %d Tagen" +msgstr "Vor %d Tag(en)" -#: template.php:94 +#: template.php:95 msgid "last month" msgstr "Letzten Monat" -#: template.php:95 +#: template.php:96 msgid "months ago" msgstr "Vor Monaten" -#: template.php:96 +#: template.php:97 msgid "last year" msgstr "Letztes Jahr" -#: template.php:97 +#: template.php:98 msgid "years ago" msgstr "Vor Jahren" diff --git a/l10n/de/settings.po b/l10n/de/settings.po index 9aefe033b0..ca3901fa0c 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -4,10 +4,12 @@ # # Translators: # , 2011, 2012. +# , 2012. # , 2012. # I Robot , 2012. # Jan-Christoph Borchardt , 2011. # Jan T , 2012. +# , 2012. # , 2012. # Marcel Kühlhorn , 2012. # , 2012. @@ -19,9 +21,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:03+0200\n" -"PO-Revision-Date: 2012-09-17 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-28 02:03+0200\n" +"PO-Revision-Date: 2012-09-27 22:24+0000\n" +"Last-Translator: Mirodin \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -31,12 +33,12 @@ msgstr "" #: ajax/apps/ocs.php:23 msgid "Unable to load list from App Store" -msgstr "Die Liste der Apps im Store konnte nicht geladen werden." +msgstr "Die Liste der Anwendungen im Store konnte nicht geladen werden." #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 #: ajax/togglegroups.php:15 msgid "Authentication error" -msgstr "Anmeldungsfehler" +msgstr "Fehler bei der Anmeldung" #: ajax/creategroup.php:19 msgid "Group already exists" @@ -46,17 +48,17 @@ msgstr "Gruppe existiert bereits" msgid "Unable to add group" msgstr "Gruppe konnte nicht angelegt werden" -#: ajax/enableapp.php:13 +#: ajax/enableapp.php:14 msgid "Could not enable app. " msgstr "App konnte nicht aktiviert werden." #: ajax/lostpassword.php:14 msgid "Email saved" -msgstr "E-Mail gespeichert" +msgstr "E-Mail Adresse gespeichert" #: ajax/lostpassword.php:16 msgid "Invalid email" -msgstr "Ungültige E-Mail" +msgstr "Ungültige E-Mail Adresse" #: ajax/openid.php:16 msgid "OpenID Changed" @@ -88,15 +90,11 @@ msgstr "Der Benutzer konnte nicht zur Gruppe %s hinzugefügt werden" msgid "Unable to remove user from group %s" msgstr "Der Benutzer konnte nicht aus der Gruppe %s entfernt werden" -#: js/apps.js:18 -msgid "Error" -msgstr "Fehler" - -#: js/apps.js:39 js/apps.js:73 +#: js/apps.js:27 js/apps.js:61 msgid "Disable" msgstr "Deaktivieren" -#: js/apps.js:39 js/apps.js:62 +#: js/apps.js:27 js/apps.js:50 msgid "Enable" msgstr "Aktivieren" @@ -119,39 +117,39 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "Ihr Datenverzeichnis ist möglicher Weise aus dem Internet erreichbar. Die .htaccess-Datei von OwnCloud funktioniert nicht. Wir raten Ihnen dringend, dass Sie Ihren Webserver dahingehend konfigurieren, dass Ihr Datenverzeichnis nicht länger aus dem Internet erreichbar ist, oder Sie verschieben das Datenverzeichnis außerhalb des Wurzelverzeichnisses des Webservers." +msgstr "Ihr Datenverzeichnis ist möglicher Weise aus dem Internet erreichbar. Die .htaccess-Datei von ownCloud funktioniert nicht. Wir raten Ihnen dringend, dass Sie Ihren Webserver dahingehend konfigurieren, dass Ihr Datenverzeichnis nicht länger aus dem Internet erreichbar ist, oder Sie verschieben das Datenverzeichnis außerhalb des Wurzelverzeichnisses des Webservers." #: templates/admin.php:31 msgid "Cron" -msgstr "Cron" +msgstr "Cron-Jobs" #: templates/admin.php:37 msgid "Execute one task with each page loaded" -msgstr "" +msgstr "Führe eine Aufgabe bei jeder geladenen Seite aus." #: templates/admin.php:43 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." -msgstr "cron.php ist bei einem Webcron-Dienst registriert. Rufen Sie die Seite cron.php im owncloud Root minütlich per HTTP auf." +msgstr "cron.php ist bei einem Webcron-Dienst registriert. Ruf die Seite cron.php im ownCloud-Root minütlich per HTTP auf." #: templates/admin.php:49 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "" +msgstr "Benutze den System-Crondienst. Bitte ruf die cron.php im ownCloud-Ordner über einen System-Cronjob minütlich auf." #: templates/admin.php:56 msgid "Sharing" -msgstr "" +msgstr "Freigabe" #: templates/admin.php:61 msgid "Enable Share API" -msgstr "Teilungs-API aktivieren" +msgstr "Freigabe-API aktivieren" #: templates/admin.php:62 msgid "Allow apps to use the Share API" -msgstr "Erlaubt Nutzern, die Teilungs-API zu nutzen" +msgstr "Erlaubt Anwendungen, die Freigabe-API zu nutzen" #: templates/admin.php:67 msgid "Allow links" @@ -159,7 +157,7 @@ msgstr "Links erlauben" #: templates/admin.php:68 msgid "Allow users to share items to the public with links" -msgstr "Erlaube Nutzern, Dateien mithilfe von Links mit der Öffentlichkeit zu teilen" +msgstr "Erlaube Nutzern, Dateien mithilfe von Links öffentlich zu teilen" #: templates/admin.php:73 msgid "Allow resharing" @@ -171,11 +169,11 @@ msgstr "Erlaubt Nutzern, Dateien die mit ihnen geteilt wurden, erneut zu teilen" #: templates/admin.php:79 msgid "Allow users to share with anyone" -msgstr "Erlaube Nutzern mit jedem zu Teilen" +msgstr "Erlaubet Nutzern mit jedem zu Teilen" #: templates/admin.php:81 msgid "Allow users to only share with users in their groups" -msgstr "Erlaube Nutzern nur das Teilen in ihrer Gruppe" +msgstr "Erlaubet Nutzern nur das Teilen in ihrer Gruppe" #: templates/admin.php:88 msgid "Log" @@ -197,15 +195,15 @@ msgstr "Entwickelt von der -licensed by " @@ -221,7 +219,7 @@ msgstr "Große Dateien verwalten" #: templates/help.php:11 msgid "Ask a question" -msgstr "Stellen Sie eine Frage" +msgstr "Stelle eine Frage" #: templates/help.php:23 msgid "Problems connecting to help database." @@ -236,24 +234,21 @@ msgid "Answer" msgstr "Antwort" #: templates/personal.php:8 -msgid "You use" -msgstr "Sie nutzen" - -#: templates/personal.php:8 -msgid "of the available" -msgstr "der verfügbaren" +#, php-format +msgid "You have used %s of the available %s" +msgstr "Du verwendest %s der verfügbaren %s" #: templates/personal.php:12 msgid "Desktop and Mobile Syncing Clients" -msgstr "Desktop- und mobile Synchronierungs-Clients" +msgstr "Desktop- und mobile Clients für die Synchronisation" #: templates/personal.php:13 msgid "Download" msgstr "Download" #: templates/personal.php:19 -msgid "Your password got changed" -msgstr "Ihr Passwort wurde geändert." +msgid "Your password was changed" +msgstr "Dein Passwort wurde geändert." #: templates/personal.php:20 msgid "Unable to change your password" @@ -281,11 +276,11 @@ msgstr "E-Mail" #: templates/personal.php:31 msgid "Your email address" -msgstr "Ihre E-Mail-Adresse" +msgstr "Deine E-Mail-Adresse" #: templates/personal.php:32 msgid "Fill in an email address to enable password recovery" -msgstr "Tragen Sie eine E-Mail-Adresse ein, um die Passwort-Wiederherstellung zu aktivieren." +msgstr "Trage eine E-Mail-Adresse ein, um die Passwort-Wiederherstellung zu aktivieren." #: templates/personal.php:38 templates/personal.php:39 msgid "Language" @@ -293,7 +288,7 @@ msgstr "Sprache" #: templates/personal.php:44 msgid "Help translate" -msgstr "Helfen Sie bei der Übersetzung" +msgstr "Hilf bei der Übersetzung" #: templates/personal.php:51 msgid "use this address to connect to your ownCloud in your file manager" diff --git a/l10n/de/user_ldap.po b/l10n/de/user_ldap.po index c8b3a60d6a..951faf6839 100644 --- a/l10n/de/user_ldap.po +++ b/l10n/de/user_ldap.po @@ -12,15 +12,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-08-31 15:48+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 20:49+0000\n" "Last-Translator: traductor \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: de\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/settings.php:8 msgid "Host" @@ -134,7 +134,7 @@ msgstr "Schalte die SSL-Zertifikatsprüfung aus." msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." -msgstr "Falls die Verbindung es erfordert, wird das SSL-Zertifikat des LDAP-Server importiert werden." +msgstr "Falls die Verbindung es erfordert, muss das SSL-Zertifikat des LDAP-Server importiert werden." #: templates/settings.php:23 msgid "Not recommended, use for testing only." diff --git a/l10n/el/core.po b/l10n/el/core.po index 0a9a6e0388..8d7cc4b1d8 100644 --- a/l10n/el/core.po +++ b/l10n/el/core.po @@ -4,6 +4,7 @@ # # Translators: # Dimitris M. , 2012. +# Efstathios Iosifidis , 2012. # Marios Bekatoros <>, 2012. # , 2011. # Petros Kyladitis , 2011, 2012. @@ -11,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-30 02:02+0200\n" +"PO-Revision-Date: 2012-09-29 19:12+0000\n" +"Last-Translator: Efstathios Iosifidis \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -33,58 +34,62 @@ msgstr "Δεν έχετε να προστέσθέσεται μια κα" msgid "This category already exists: " msgstr "Αυτή η κατηγορία υπάρχει ήδη" -#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Ρυθμίσεις" -#: js/js.js:593 +#: js/js.js:645 msgid "January" msgstr "Ιανουάριος" -#: js/js.js:593 +#: js/js.js:645 msgid "February" msgstr "Φεβρουάριος" -#: js/js.js:593 +#: js/js.js:645 msgid "March" msgstr "Μάρτιος" -#: js/js.js:593 +#: js/js.js:645 msgid "April" msgstr "Απρίλιος" -#: js/js.js:593 +#: js/js.js:645 msgid "May" msgstr "Μάϊος" -#: js/js.js:593 +#: js/js.js:645 msgid "June" msgstr "Ιούνιος" -#: js/js.js:594 +#: js/js.js:646 msgid "July" msgstr "Ιούλιος" -#: js/js.js:594 +#: js/js.js:646 msgid "August" msgstr "Αύγουστος" -#: js/js.js:594 +#: js/js.js:646 msgid "September" msgstr "Σεπτέμβριος" -#: js/js.js:594 +#: js/js.js:646 msgid "October" msgstr "Οκτώβριος" -#: js/js.js:594 +#: js/js.js:646 msgid "November" msgstr "Νοέμβριος" -#: js/js.js:594 +#: js/js.js:646 msgid "December" msgstr "Δεκέμβριος" +#: js/oc-dialogs.js:123 +msgid "Choose" +msgstr "Επιλέξτε" + #: js/oc-dialogs.js:143 js/oc-dialogs.js:163 msgid "Cancel" msgstr "Ακύρωση" @@ -105,10 +110,119 @@ msgstr "Οκ" msgid "No categories selected for deletion." msgstr "Δεν επιλέχτηκαν κατηγορίες για διαγραφή" -#: js/oc-vcategories.js:68 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 +#: js/share.js:501 msgid "Error" msgstr "Σφάλμα" +#: js/share.js:103 +msgid "Error while sharing" +msgstr "Σφάλμα κατά τον διαμοιρασμό" + +#: js/share.js:114 +msgid "Error while unsharing" +msgstr "Σφάλμα κατά το σταμάτημα του διαμοιρασμού" + +#: js/share.js:121 +msgid "Error while changing permissions" +msgstr "Σφάλμα κατά την αλλαγή των δικαιωμάτων" + +#: js/share.js:130 +msgid "Shared with you and the group" +msgstr "Διαμοιρασμένο με εσένα και την ομάδα" + +#: js/share.js:130 +msgid "by" +msgstr "από" + +#: js/share.js:132 +msgid "Shared with you by" +msgstr "" + +#: js/share.js:137 +msgid "Share with" +msgstr "Διαμοιρασμός με" + +#: js/share.js:142 +msgid "Share with link" +msgstr "Διαμοιρασμός με σύνδεσμο" + +#: js/share.js:143 +msgid "Password protect" +msgstr "Προστασία κωδικού" + +#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +msgid "Password" +msgstr "Κωδικός" + +#: js/share.js:152 +msgid "Set expiration date" +msgstr "Ορισμός ημ. λήξης" + +#: js/share.js:153 +msgid "Expiration date" +msgstr "Ημερομηνία λήξης" + +#: js/share.js:185 +msgid "Share via email:" +msgstr "Διαμοιρασμός μέσω email:" + +#: js/share.js:187 +msgid "No people found" +msgstr "Δεν βρέθηκε άνθρωπος" + +#: js/share.js:214 +msgid "Resharing is not allowed" +msgstr "Ξαναμοιρασμός δεν επιτρέπεται" + +#: js/share.js:250 +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" +msgstr "με" + +#: js/share.js:271 +msgid "Unshare" +msgstr "Σταμάτημα μοιράσματος" + +#: js/share.js:279 +msgid "can edit" +msgstr "δυνατότητα αλλαγής" + +#: js/share.js:281 +msgid "access control" +msgstr "έλεγχος πρόσβασης" + +#: js/share.js:284 +msgid "create" +msgstr "δημιουργία" + +#: js/share.js:287 +msgid "update" +msgstr "ανανέωση" + +#: js/share.js:290 +msgid "delete" +msgstr "διαγραφή" + +#: js/share.js:293 +msgid "share" +msgstr "διαμοιρασμός" + +#: js/share.js:317 js/share.js:476 +msgid "Password protected" +msgstr "Προστασία με κωδικό" + +#: js/share.js:489 +msgid "Error unsetting expiration date" +msgstr "Σφάλμα κατά την διαγραφή της ημ. λήξης" + +#: js/share.js:501 +msgid "Error setting expiration date" +msgstr "Σφάλμα κατά τον ορισμό ημ. λήξης" + #: lostpassword/index.php:26 msgid "ownCloud password reset" msgstr "Επαναφορά κωδικού ownCloud" @@ -134,7 +248,7 @@ msgstr "Η σύνδεση απέτυχε!" msgid "Username" msgstr "Όνομα Χρήστη" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:14 msgid "Request reset" msgstr "Επαναφορά αίτησης" @@ -194,10 +308,6 @@ msgstr "Προσθήκη" msgid "Create an admin account" msgstr "Δημιουργήστε έναν λογαριασμό διαχειριστή" -#: templates/installation.php:30 templates/login.php:13 -msgid "Password" -msgstr "Κωδικός" - #: templates/installation.php:36 msgid "Advanced" msgstr "Για προχωρημένους" @@ -229,7 +339,7 @@ msgstr "Όνομα βάσης δεδομένων" #: templates/installation.php:109 msgid "Database tablespace" -msgstr "" +msgstr "Κενά Πινάκων Βάσης Δεδομένων" #: templates/installation.php:115 msgid "Database host" @@ -239,11 +349,11 @@ msgstr "Διακομιστής βάσης δεδομένων" msgid "Finish setup" msgstr "Ολοκλήρωση εγκατάστασης" -#: templates/layout.guest.php:42 +#: templates/layout.guest.php:36 msgid "web services under your control" msgstr "Υπηρεσίες web υπό τον έλεγχό σας" -#: templates/layout.user.php:45 +#: templates/layout.user.php:34 msgid "Log out" msgstr "Αποσύνδεση" @@ -251,11 +361,11 @@ msgstr "Αποσύνδεση" msgid "Lost your password?" msgstr "Ξεχάσατε τον κωδικό σας;" -#: templates/login.php:17 +#: templates/login.php:16 msgid "remember" msgstr "να με θυμάσαι" -#: templates/login.php:18 +#: templates/login.php:17 msgid "Log in" msgstr "Είσοδος" diff --git a/l10n/el/files.po b/l10n/el/files.po index 0daee77ea7..1d6375014d 100644 --- a/l10n/el/files.po +++ b/l10n/el/files.po @@ -4,15 +4,17 @@ # # Translators: # Dimitris M. , 2012. +# Efstathios Iosifidis , 2012. +# Efstathios Iosifidis , 2012. # Marios Bekatoros <>, 2012. -# Petros Kyladitis , 2011, 2012. +# Petros Kyladitis , 2011-2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 01:41+0000\n" +"Last-Translator: Dimitris M. \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -40,15 +42,15 @@ msgstr "Το αρχείο μεταφορώθηκε μόνο εν μέρει" #: ajax/upload.php:24 msgid "No file was uploaded" -msgstr "Το αρχείο δεν μεταφορτώθηκε" +msgstr "Κανένα αρχείο δεν μεταφορτώθηκε" #: ajax/upload.php:25 msgid "Missing a temporary folder" -msgstr "Λείπει ένας προσωρινός φάκελος" +msgstr "Λείπει ο προσωρινός φάκελος" #: ajax/upload.php:26 msgid "Failed to write to disk" -msgstr "Η εγγραφή στο δίσκο απέτυχε" +msgstr "Αποτυχία εγγραφής στο δίσκο" #: appinfo/app.php:6 msgid "Files" @@ -56,45 +58,49 @@ msgstr "Αρχεία" #: js/fileactions.js:108 templates/index.php:62 msgid "Unshare" -msgstr "" +msgstr "Διακοπή κοινής χρήσης" #: js/fileactions.js:110 templates/index.php:64 msgid "Delete" msgstr "Διαγραφή" -#: js/filelist.js:186 js/filelist.js:188 +#: js/fileactions.js:182 +msgid "Rename" +msgstr "Μετονομασία" + +#: js/filelist.js:190 js/filelist.js:192 msgid "already exists" msgstr "υπάρχει ήδη" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "replace" msgstr "αντικατέστησε" -#: js/filelist.js:186 +#: js/filelist.js:190 msgid "suggest name" -msgstr "" +msgstr "συνιστώμενο όνομα" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "cancel" msgstr "ακύρωση" -#: js/filelist.js:235 js/filelist.js:237 +#: js/filelist.js:239 js/filelist.js:241 msgid "replaced" msgstr "αντικαταστάθηκε" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:239 js/filelist.js:241 js/filelist.js:273 js/filelist.js:275 msgid "undo" msgstr "αναίρεση" -#: js/filelist.js:237 +#: js/filelist.js:241 msgid "with" msgstr "με" -#: js/filelist.js:268 +#: js/filelist.js:273 msgid "unshared" -msgstr "" +msgstr "Διακόπηκε ο διαμοιρασμός" -#: js/filelist.js:270 +#: js/filelist.js:275 msgid "deleted" msgstr "διαγράφηκε" @@ -110,47 +116,107 @@ msgstr "Αδυναμία στην μεταφόρτωση του αρχείου msgid "Upload Error" msgstr "Σφάλμα Μεταφόρτωσης" -#: js/files.js:236 js/files.js:341 js/files.js:370 +#: js/files.js:236 js/files.js:341 js/files.js:371 msgid "Pending" -msgstr "Εν αναμονή" +msgstr "Εκκρεμεί" -#: js/files.js:355 +#: js/files.js:256 +msgid "1 file uploading" +msgstr "1 αρχείο ανεβαίνει" + +#: js/files.js:259 js/files.js:304 js/files.js:319 +msgid "files uploading" +msgstr "αρχεία ανεβαίνουν" + +#: js/files.js:322 js/files.js:355 msgid "Upload cancelled." msgstr "Η μεταφόρτωση ακυρώθηκε." -#: js/files.js:423 +#: js/files.js:424 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "" +msgstr "Η μεταφόρτωση του αρχείου βρίσκεται σε εξέλιξη. Έξοδος από την σελίδα τώρα θα ακυρώσει την μεταφόρτωση." -#: js/files.js:493 +#: js/files.js:494 msgid "Invalid name, '/' is not allowed." msgstr "Μη έγκυρο όνομα, το '/' δεν επιτρέπεται." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:668 +msgid "files scanned" +msgstr "αρχεία σαρώθηκαν" + +#: js/files.js:676 +msgid "error while scanning" +msgstr "σφάλμα κατά την ανίχνευση" + +#: js/files.js:749 templates/index.php:48 +msgid "Name" +msgstr "Όνομα" + +#: js/files.js:750 templates/index.php:56 msgid "Size" msgstr "Μέγεθος" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:751 templates/index.php:58 msgid "Modified" msgstr "Τροποποιήθηκε" -#: js/files.js:774 +#: js/files.js:778 msgid "folder" msgstr "φάκελος" -#: js/files.js:776 +#: js/files.js:780 msgid "folders" msgstr "φάκελοι" -#: js/files.js:784 +#: js/files.js:788 msgid "file" msgstr "αρχείο" -#: js/files.js:786 +#: js/files.js:790 msgid "files" msgstr "αρχεία" +#: js/files.js:834 +msgid "seconds ago" +msgstr "δευτερόλεπτα πριν" + +#: js/files.js:835 +msgid "minute ago" +msgstr "λεπτό πριν" + +#: js/files.js:836 +msgid "minutes ago" +msgstr "λεπτά πριν" + +#: js/files.js:839 +msgid "today" +msgstr "σήμερα" + +#: js/files.js:840 +msgid "yesterday" +msgstr "χτες" + +#: js/files.js:841 +msgid "days ago" +msgstr "μέρες πριν" + +#: js/files.js:842 +msgid "last month" +msgstr "τελευταίο μήνα" + +#: js/files.js:844 +msgid "months ago" +msgstr "μήνες πριν" + +#: js/files.js:845 +msgid "last year" +msgstr "τελευταίο χρόνο" + +#: js/files.js:846 +msgid "years ago" +msgstr "χρόνια πριν" + #: templates/admin.php:5 msgid "File handling" msgstr "Διαχείριση αρχείων" @@ -181,7 +247,7 @@ msgstr "Μέγιστο μέγεθος για αρχεία ZIP" #: templates/admin.php:14 msgid "Save" -msgstr "" +msgstr "Αποθήκευση" #: templates/index.php:7 msgid "New" @@ -199,25 +265,21 @@ msgstr "Φάκελος" msgid "From url" msgstr "Από την διεύθυνση" -#: templates/index.php:21 +#: templates/index.php:20 msgid "Upload" msgstr "Μεταφόρτωση" #: templates/index.php:27 msgid "Cancel upload" -msgstr "Ακύρωση ανεβάσματος" +msgstr "Ακύρωση μεταφόρτωσης" #: templates/index.php:40 msgid "Nothing in here. Upload something!" msgstr "Δεν υπάρχει τίποτα εδώ. Ανέβασε κάτι!" -#: templates/index.php:48 -msgid "Name" -msgstr "Όνομα" - #: templates/index.php:50 msgid "Share" -msgstr "Διαμοίρασε" +msgstr "Διαμοιρασμός" #: templates/index.php:52 msgid "Download" @@ -225,17 +287,17 @@ msgstr "Λήψη" #: templates/index.php:75 msgid "Upload too large" -msgstr "Πολύ μεγάλο το αρχείο προς μεταφόρτωση" +msgstr "Πολύ μεγάλο αρχείο προς μεταφόρτωση" #: templates/index.php:77 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." -msgstr "Τα αρχεία που προσπαθείτε να ανεβάσετε υπερβαίνουν το μέγιστο μέγεθος μεταφόρτωσης αρχείων σε αυτόν το διακομιστή." +msgstr "Τα αρχεία που προσπαθείτε να μεταφορτώσετε υπερβαίνουν το μέγιστο μέγεθος μεταφόρτωσης αρχείων σε αυτόν το διακομιστή." #: templates/index.php:82 msgid "Files are being scanned, please wait." -msgstr "Τα αρχεία ανιχνεύονται, παρακαλώ περιμένετε" +msgstr "Τα αρχεία σαρώνονται, παρακαλώ περιμένετε" #: templates/index.php:85 msgid "Current scanning" diff --git a/l10n/el/files_external.po b/l10n/el/files_external.po index d11daf7f32..26acbf9da9 100644 --- a/l10n/el/files_external.po +++ b/l10n/el/files_external.po @@ -3,25 +3,26 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Efstathios Iosifidis , 2012. # Nisok Kosin , 2012. # Petros Kyladitis , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-27 02:01+0200\n" -"PO-Revision-Date: 2012-08-26 21:45+0000\n" -"Last-Translator: Petros Kyladitis \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 20:07+0000\n" +"Last-Translator: Efstathios Iosifidis \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: el\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/settings.php:3 msgid "External Storage" -msgstr "Εξωτερική αποθήκευση" +msgstr "Εξωτερικό Αποθηκευτικό Μέσο" #: templates/settings.php:7 templates/settings.php:19 msgid "Mount point" @@ -29,7 +30,7 @@ msgstr "Σημείο προσάρτησης" #: templates/settings.php:8 msgid "Backend" -msgstr "" +msgstr "Σύστημα υποστήριξης" #: templates/settings.php:9 msgid "Configuration" @@ -41,15 +42,15 @@ msgstr "Επιλογές" #: templates/settings.php:11 msgid "Applicable" -msgstr "" +msgstr "Εφαρμόσιμο" #: templates/settings.php:23 msgid "Add mount point" -msgstr "" +msgstr "Προσθήκη σημείου προσάρτησης" #: templates/settings.php:54 templates/settings.php:62 msgid "None set" -msgstr "" +msgstr "Κανένα επιλεγμένο" #: templates/settings.php:63 msgid "All Users" @@ -69,16 +70,16 @@ msgstr "Διαγραφή" #: templates/settings.php:88 msgid "SSL root certificates" -msgstr "" +msgstr "Πιστοποιητικά SSL root" #: templates/settings.php:102 msgid "Import Root Certificate" -msgstr "" +msgstr "Εισαγωγή Πιστοποιητικού Root" #: templates/settings.php:108 msgid "Enable User External Storage" -msgstr "" +msgstr "Ενεργοποίηση Εξωτερικού Αποθηκευτικού Χώρου Χρήστη" #: templates/settings.php:109 msgid "Allow users to mount their own external storage" -msgstr "" +msgstr "Να επιτρέπεται στους χρήστες να προσαρτούν δικό τους εξωτερικό αποθηκευτικό χώρο" diff --git a/l10n/el/files_sharing.po b/l10n/el/files_sharing.po index fafebf4944..d5a761b6f7 100644 --- a/l10n/el/files_sharing.po +++ b/l10n/el/files_sharing.po @@ -4,20 +4,21 @@ # # Translators: # Dimitris M. , 2012. +# Efstathios Iosifidis , 2012. # Nisok Kosin , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 01:07+0000\n" +"Last-Translator: Dimitris M. \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: el\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 msgid "Password" @@ -27,14 +28,24 @@ msgstr "Συνθηματικό" msgid "Submit" msgstr "Καταχώρηση" -#: templates/public.php:9 templates/public.php:19 +#: templates/public.php:9 +#, php-format +msgid "%s shared the folder %s with you" +msgstr "%s μοιράστηκε τον φάκελο %s μαζί σας" + +#: templates/public.php:11 +#, php-format +msgid "%s shared the file %s with you" +msgstr "%s μοιράστηκε το αρχείο %s μαζί σας" + +#: templates/public.php:14 templates/public.php:30 msgid "Download" -msgstr "" +msgstr "Λήψη" -#: templates/public.php:18 +#: templates/public.php:29 msgid "No preview available for" -msgstr "" +msgstr "Δεν υπάρχει διαθέσιμη προεπισκόπηση για" -#: templates/public.php:23 +#: templates/public.php:37 msgid "web services under your control" -msgstr "" +msgstr "υπηρεσίες δικτύου υπό τον έλεγχό σας" diff --git a/l10n/el/files_versions.po b/l10n/el/files_versions.po index a68447d08c..a79674e946 100644 --- a/l10n/el/files_versions.po +++ b/l10n/el/files_versions.po @@ -3,14 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Dimitris M. , 2012. +# Efstathios Iosifidis , 2012. # Nisok Kosin , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" -"PO-Revision-Date: 2012-09-17 00:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 01:26+0000\n" +"Last-Translator: Dimitris M. \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,18 +24,22 @@ msgstr "" msgid "Expire all versions" msgstr "Λήξη όλων των εκδόσεων" +#: js/versions.js:16 +msgid "History" +msgstr "Ιστορικό" + #: templates/settings-personal.php:4 msgid "Versions" -msgstr "" +msgstr "Εκδόσεις" #: templates/settings-personal.php:7 msgid "This will delete all existing backup versions of your files" -msgstr "" +msgstr "Αυτό θα διαγράψει όλες τις υπάρχουσες εκδόσεις των αντιγράφων ασφαλείας των αρχείων σας" #: templates/settings.php:3 msgid "Files Versioning" -msgstr "" +msgstr "Εκδόσεις Αρχείων" #: templates/settings.php:4 msgid "Enable" -msgstr "" +msgstr "Ενεργοποίηση" diff --git a/l10n/el/lib.po b/l10n/el/lib.po index 2a3ab249c2..754ee2ab0d 100644 --- a/l10n/el/lib.po +++ b/l10n/el/lib.po @@ -8,37 +8,37 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-09-01 00:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-20 02:05+0200\n" +"PO-Revision-Date: 2012-09-19 23:21+0000\n" +"Last-Translator: Efstathios Iosifidis \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: el\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:288 +#: app.php:285 msgid "Help" msgstr "Βοήθεια" -#: app.php:295 +#: app.php:292 msgid "Personal" msgstr "Προσωπικά" -#: app.php:300 +#: app.php:297 msgid "Settings" msgstr "Ρυθμίσεις" -#: app.php:305 +#: app.php:302 msgid "Users" msgstr "Χρήστες" -#: app.php:312 +#: app.php:309 msgid "Apps" msgstr "Εφαρμογές" -#: app.php:314 +#: app.php:311 msgid "Admin" msgstr "Διαχειριστής" @@ -68,59 +68,59 @@ msgstr "Σφάλμα πιστοποίησης" #: json.php:51 msgid "Token expired. Please reload page." -msgstr "Το αναγνωριστικό έληξε. Παρακαλώ επανα-φορτώστε την σελίδα." +msgstr "Το αναγνωριστικό έληξε. Παρακαλώ φορτώστε ξανά την σελίδα." -#: template.php:86 +#: template.php:87 msgid "seconds ago" msgstr "δευτερόλεπτα πριν" -#: template.php:87 +#: template.php:88 msgid "1 minute ago" msgstr "1 λεπτό πριν" -#: template.php:88 +#: template.php:89 #, php-format msgid "%d minutes ago" msgstr "%d λεπτά πριν" -#: template.php:91 +#: template.php:92 msgid "today" msgstr "σήμερα" -#: template.php:92 +#: template.php:93 msgid "yesterday" msgstr "χθές" -#: template.php:93 +#: template.php:94 #, php-format msgid "%d days ago" msgstr "%d ημέρες πριν" -#: template.php:94 +#: template.php:95 msgid "last month" msgstr "τον προηγούμενο μήνα" -#: template.php:95 +#: template.php:96 msgid "months ago" msgstr "μήνες πριν" -#: template.php:96 +#: template.php:97 msgid "last year" msgstr "τον προηγούμενο χρόνο" -#: template.php:97 +#: template.php:98 msgid "years ago" msgstr "χρόνια πριν" #: updater.php:66 #, php-format msgid "%s is available. Get more information" -msgstr "" +msgstr "%s είναι διαθέσιμα. Δείτε περισσότερες πληροφορίες" #: updater.php:68 msgid "up to date" -msgstr "" +msgstr "ενημερωμένο" #: updater.php:71 msgid "updates check is disabled" -msgstr "" +msgstr "ο έλεγχος ενημερώσεων είναι απενεργοποιημένος" diff --git a/l10n/el/settings.po b/l10n/el/settings.po index fe7b0300c4..6ae56f0270 100644 --- a/l10n/el/settings.po +++ b/l10n/el/settings.po @@ -4,19 +4,20 @@ # # Translators: # Dimitris M. , 2012. +# Efstathios Iosifidis , 2012. # Efstathios Iosifidis , 2012. # , 2012. # Marios Bekatoros <>, 2012. # Nisok Kosin , 2012. # , 2011. -# Petros Kyladitis , 2011, 2012. +# Petros Kyladitis , 2011-2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:03+0200\n" -"PO-Revision-Date: 2012-09-17 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-20 02:05+0200\n" +"PO-Revision-Date: 2012-09-19 22:58+0000\n" +"Last-Translator: Efstathios Iosifidis \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -35,15 +36,15 @@ msgstr "Σφάλμα πιστοποίησης" #: ajax/creategroup.php:19 msgid "Group already exists" -msgstr "" +msgstr "Η ομάδα υπάρχει ήδη" #: ajax/creategroup.php:28 msgid "Unable to add group" -msgstr "" +msgstr "Αδυναμία προσθήκης ομάδας" -#: ajax/enableapp.php:13 +#: ajax/enableapp.php:14 msgid "Could not enable app. " -msgstr "" +msgstr "Αδυναμία ενεργοποίησης εφαρμογής " #: ajax/lostpassword.php:14 msgid "Email saved" @@ -63,11 +64,11 @@ msgstr "Μη έγκυρο αίτημα" #: ajax/removegroup.php:16 msgid "Unable to delete group" -msgstr "" +msgstr "Αδυναμία διαγραφής ομάδας" #: ajax/removeuser.php:22 msgid "Unable to delete user" -msgstr "" +msgstr "Αδυναμία διαγραφής χρήστη" #: ajax/setlanguage.php:18 msgid "Language changed" @@ -76,22 +77,18 @@ msgstr "Η γλώσσα άλλαξε" #: ajax/togglegroups.php:25 #, php-format msgid "Unable to add user to group %s" -msgstr "" +msgstr "Αδυναμία προσθήκη χρήστη στην ομάδα %s" #: ajax/togglegroups.php:31 #, php-format msgid "Unable to remove user from group %s" -msgstr "" +msgstr "Αδυναμία αφαίρεσης χρήστη από την ομάδα %s" -#: js/apps.js:18 -msgid "Error" -msgstr "Σφάλμα" - -#: js/apps.js:39 js/apps.js:73 +#: js/apps.js:27 js/apps.js:61 msgid "Disable" msgstr "Απενεργοποίηση" -#: js/apps.js:39 js/apps.js:62 +#: js/apps.js:27 js/apps.js:50 msgid "Enable" msgstr "Ενεργοποίηση" @@ -114,7 +111,7 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "" +msgstr "Ο κατάλογος δεδομένων και τα αρχεία σας είναι πιθανότατα προσβάσιμα από το διαδίκτυο. Το αρχείο .htaccess που παρέχει το owncloud, δεν λειτουργεί. Σας συνιστούμε να ρυθμίσετε τον εξυπηρετητή σας έτσι ώστε ο κατάλογος δεδομένων να μην είναι πλεον προσβάσιμος ή μετακινήστε τον κατάλογο δεδομένων εκτός του καταλόγου document του εξυπηρετητή σας." #: templates/admin.php:31 msgid "Cron" @@ -122,55 +119,55 @@ msgstr "Cron" #: templates/admin.php:37 msgid "Execute one task with each page loaded" -msgstr "" +msgstr "Εκτέλεση μιας εργασίας με κάθε σελίδα που φορτώνεται" #: templates/admin.php:43 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." -msgstr "" +msgstr "Το cron.php είναι καταχωρημένο στην υπηρεσία webcron. Να καλείται μια φορά το λεπτό η σελίδα cron.php από τον root του owncloud μέσω http" #: templates/admin.php:49 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "" +msgstr "Χρήση υπηρεσίας συστήματος cron. Να καλείται μια φορά το λεπτό, το αρχείο cron.php από τον φάκελο του owncloud μέσω του cronjob του συστήματος." #: templates/admin.php:56 msgid "Sharing" -msgstr "" +msgstr "Διαμοιρασμός" #: templates/admin.php:61 msgid "Enable Share API" -msgstr "" +msgstr "Ενεργοποίηση API Διαμοιρασμού" #: templates/admin.php:62 msgid "Allow apps to use the Share API" -msgstr "" +msgstr "Να επιτρέπεται στις εφαρμογές να χρησιμοποιούν το API Διαμοιρασμού" #: templates/admin.php:67 msgid "Allow links" -msgstr "" +msgstr "Να επιτρέπονται σύνδεσμοι" #: templates/admin.php:68 msgid "Allow users to share items to the public with links" -msgstr "" +msgstr "Να επιτρέπεται στους χρήστες να διαμοιράζονται δημόσια με συνδέσμους" #: templates/admin.php:73 msgid "Allow resharing" -msgstr "" +msgstr "Να επιτρέπεται ο επαναδιαμοιρασμός" #: templates/admin.php:74 msgid "Allow users to share items shared with them again" -msgstr "" +msgstr "Να επιτρέπεται στους χρήστες να διαμοιράζουν ότι τους έχει διαμοιραστεί" #: templates/admin.php:79 msgid "Allow users to share with anyone" -msgstr "" +msgstr "Να επιτρέπεται ο διαμοιρασμός με οποιονδήποτε" #: templates/admin.php:81 msgid "Allow users to only share with users in their groups" -msgstr "" +msgstr "Να επιτρέπεται ο διαμοιρασμός μόνο με χρήστες της ίδιας ομάδας" #: templates/admin.php:88 msgid "Log" @@ -188,7 +185,7 @@ msgid "" "licensed under the AGPL." -msgstr "" +msgstr "Αναπτύχθηκε από την κοινότητα ownCloud, ο πηγαίος κώδικας είναι υπό άδεια χρήσης AGPL." #: templates/apps.php:10 msgid "Add your App" @@ -204,7 +201,7 @@ msgstr "Η σελίδα εφαρμογών στο apps.owncloud.com" #: templates/apps.php:30 msgid "-licensed by " -msgstr "" +msgstr "-άδεια από " #: templates/help.php:9 msgid "Documentation" @@ -231,12 +228,9 @@ msgid "Answer" msgstr "Απάντηση" #: templates/personal.php:8 -msgid "You use" -msgstr "Χρησιμοποιείτε" - -#: templates/personal.php:8 -msgid "of the available" -msgstr "από τα διαθέσιμα" +#, php-format +msgid "You have used %s of the available %s" +msgstr "Έχετε χρησιμοποιήσει %s από τα διαθέσιμα %s" #: templates/personal.php:12 msgid "Desktop and Mobile Syncing Clients" @@ -244,11 +238,11 @@ msgstr "Πελάτες συγχρονισμού για Desktop και Mobile" #: templates/personal.php:13 msgid "Download" -msgstr "Κατέβασε" +msgstr "Λήψη" #: templates/personal.php:19 -msgid "Your password got changed" -msgstr "Ο κωδικός πρόσβασής σας άλλαξε" +msgid "Your password was changed" +msgstr "Το συνθηματικό σας έχει αλλάξει" #: templates/personal.php:20 msgid "Unable to change your password" @@ -256,11 +250,11 @@ msgstr "Δεν ήταν δυνατή η αλλαγή του κωδικού πρ #: templates/personal.php:21 msgid "Current password" -msgstr "Τρέχων κωδικός πρόσβασης" +msgstr "Τρέχων συνθηματικό" #: templates/personal.php:22 msgid "New password" -msgstr "Νέος κωδικός" +msgstr "Νέο συνθηματικό" #: templates/personal.php:23 msgid "show" @@ -268,7 +262,7 @@ msgstr "εμφάνιση" #: templates/personal.php:24 msgid "Change password" -msgstr "Αλλαγή κωδικού πρόσβασης" +msgstr "Αλλαγή συνθηματικού" #: templates/personal.php:30 msgid "Email" @@ -280,7 +274,7 @@ msgstr "Διεύθυνση ηλεκτρονικού ταχυδρομείου σ #: templates/personal.php:32 msgid "Fill in an email address to enable password recovery" -msgstr "Συμπληρώστε μια διεύθυνση ηλεκτρονικού ταχυδρομείου για να ενεργοποιηθεί η ανάκτηση κωδικού πρόσβασης" +msgstr "Συμπληρώστε μια διεύθυνση ηλεκτρονικού ταχυδρομείου για να ενεργοποιηθεί η ανάκτηση συνθηματικού" #: templates/personal.php:38 templates/personal.php:39 msgid "Language" @@ -300,7 +294,7 @@ msgstr "Όνομα" #: templates/users.php:23 templates/users.php:77 msgid "Password" -msgstr "Κωδικός" +msgstr "Συνθηματικό" #: templates/users.php:26 templates/users.php:78 templates/users.php:98 msgid "Groups" @@ -320,7 +314,7 @@ msgstr "Άλλα" #: templates/users.php:80 templates/users.php:112 msgid "Group Admin" -msgstr "Διαχειρηστής ομάδας" +msgstr "Ομάδα Διαχειριστών" #: templates/users.php:82 msgid "Quota" diff --git a/l10n/el/user_ldap.po b/l10n/el/user_ldap.po index 0509e10da4..86f0cd1881 100644 --- a/l10n/el/user_ldap.po +++ b/l10n/el/user_ldap.po @@ -3,15 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Dimitris M. , 2012. # Efstathios Iosifidis , 2012. # Marios Bekatoros <>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-08 02:02+0200\n" -"PO-Revision-Date: 2012-09-07 07:17+0000\n" -"Last-Translator: Marios Bekatoros <>\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 01:27+0000\n" +"Last-Translator: Dimitris M. \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -135,7 +136,7 @@ msgstr "" #: templates/settings.php:23 msgid "Not recommended, use for testing only." -msgstr "" +msgstr "Δεν προτείνεται, χρήση μόνο για δοκιμές." #: templates/settings.php:24 msgid "User Display Name Field" diff --git a/l10n/eo/core.po b/l10n/eo/core.po index 5af54675c7..1d81d9fb2a 100644 --- a/l10n/eo/core.po +++ b/l10n/eo/core.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-09 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 21:41+0000\n" -"Last-Translator: Mariano \n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -32,58 +32,62 @@ msgstr "Ĉu neniu kategorio estas aldonota?" msgid "This category already exists: " msgstr "Ĉi tiu kategorio jam ekzistas: " -#: js/js.js:214 templates/layout.user.php:54 templates/layout.user.php:55 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Agordo" -#: js/js.js:599 +#: js/js.js:645 msgid "January" msgstr "Januaro" -#: js/js.js:599 +#: js/js.js:645 msgid "February" msgstr "Februaro" -#: js/js.js:599 +#: js/js.js:645 msgid "March" msgstr "Marto" -#: js/js.js:599 +#: js/js.js:645 msgid "April" msgstr "Aprilo" -#: js/js.js:599 +#: js/js.js:645 msgid "May" msgstr "Majo" -#: js/js.js:599 +#: js/js.js:645 msgid "June" msgstr "Junio" -#: js/js.js:600 +#: js/js.js:646 msgid "July" msgstr "Julio" -#: js/js.js:600 +#: js/js.js:646 msgid "August" msgstr "Aŭgusto" -#: js/js.js:600 +#: js/js.js:646 msgid "September" msgstr "Septembro" -#: js/js.js:600 +#: js/js.js:646 msgid "October" msgstr "Oktobro" -#: js/js.js:600 +#: js/js.js:646 msgid "November" msgstr "Novembro" -#: js/js.js:600 +#: js/js.js:646 msgid "December" msgstr "Decembro" +#: js/oc-dialogs.js:123 +msgid "Choose" +msgstr "" + #: js/oc-dialogs.js:143 js/oc-dialogs.js:163 msgid "Cancel" msgstr "Nuligi" @@ -104,10 +108,119 @@ msgstr "Akcepti" msgid "No categories selected for deletion." msgstr "Neniu kategorio elektiĝis por forigo." -#: js/oc-vcategories.js:68 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 +#: js/share.js:501 msgid "Error" msgstr "Eraro" +#: js/share.js:103 +msgid "Error while sharing" +msgstr "" + +#: js/share.js:114 +msgid "Error while unsharing" +msgstr "" + +#: js/share.js:121 +msgid "Error while changing permissions" +msgstr "" + +#: js/share.js:130 +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" +msgstr "" + +#: js/share.js:132 +msgid "Shared with you by" +msgstr "" + +#: js/share.js:137 +msgid "Share with" +msgstr "" + +#: js/share.js:142 +msgid "Share with link" +msgstr "" + +#: js/share.js:143 +msgid "Password protect" +msgstr "" + +#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +msgid "Password" +msgstr "Pasvorto" + +#: js/share.js:152 +msgid "Set expiration date" +msgstr "" + +#: js/share.js:153 +msgid "Expiration date" +msgstr "" + +#: js/share.js:185 +msgid "Share via email:" +msgstr "" + +#: js/share.js:187 +msgid "No people found" +msgstr "" + +#: js/share.js:214 +msgid "Resharing is not allowed" +msgstr "" + +#: js/share.js:250 +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" +msgstr "" + +#: js/share.js:271 +msgid "Unshare" +msgstr "" + +#: js/share.js:279 +msgid "can edit" +msgstr "" + +#: js/share.js:281 +msgid "access control" +msgstr "" + +#: js/share.js:284 +msgid "create" +msgstr "" + +#: js/share.js:287 +msgid "update" +msgstr "" + +#: js/share.js:290 +msgid "delete" +msgstr "" + +#: js/share.js:293 +msgid "share" +msgstr "" + +#: js/share.js:317 js/share.js:476 +msgid "Password protected" +msgstr "" + +#: js/share.js:489 +msgid "Error unsetting expiration date" +msgstr "" + +#: js/share.js:501 +msgid "Error setting expiration date" +msgstr "" + #: lostpassword/index.php:26 msgid "ownCloud password reset" msgstr "La pasvorto de ownCloud restariĝis." @@ -193,10 +306,6 @@ msgstr "Aldoni" msgid "Create an admin account" msgstr "Krei administran konton" -#: templates/installation.php:30 templates/login.php:13 -msgid "Password" -msgstr "Pasvorto" - #: templates/installation.php:36 msgid "Advanced" msgstr "Progresinta" @@ -242,7 +351,7 @@ msgstr "Fini la instalon" msgid "web services under your control" msgstr "TTT-servoj sub via kontrolo" -#: templates/layout.user.php:39 +#: templates/layout.user.php:34 msgid "Log out" msgstr "Elsaluti" diff --git a/l10n/eo/files.po b/l10n/eo/files.po index d62532d142..11d070fa23 100644 --- a/l10n/eo/files.po +++ b/l10n/eo/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-09 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 21:57+0000\n" -"Last-Translator: Mariano \n" +"POT-Creation-Date: 2012-09-26 13:19+0200\n" +"PO-Revision-Date: 2012-09-26 11:20+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -61,39 +61,43 @@ msgstr "Malkunhavigi" msgid "Delete" msgstr "Forigi" -#: js/filelist.js:186 js/filelist.js:188 +#: js/fileactions.js:182 +msgid "Rename" +msgstr "" + +#: js/filelist.js:190 js/filelist.js:192 msgid "already exists" msgstr "jam ekzistas" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "replace" msgstr "anstataŭigi" -#: js/filelist.js:186 +#: js/filelist.js:190 msgid "suggest name" msgstr "sugesti nomon" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "cancel" msgstr "nuligi" -#: js/filelist.js:235 js/filelist.js:237 +#: js/filelist.js:239 js/filelist.js:241 msgid "replaced" msgstr "anstataŭigita" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:239 js/filelist.js:241 js/filelist.js:273 js/filelist.js:275 msgid "undo" msgstr "malfari" -#: js/filelist.js:237 +#: js/filelist.js:241 msgid "with" msgstr "kun" -#: js/filelist.js:268 +#: js/filelist.js:273 msgid "unshared" msgstr "malkunhavigita" -#: js/filelist.js:270 +#: js/filelist.js:275 msgid "deleted" msgstr "forigita" @@ -109,47 +113,107 @@ msgstr "Ne eblis alŝuti vian dosieron ĉar ĝi estas dosierujo aŭ havas 0 duum msgid "Upload Error" msgstr "Alŝuta eraro" -#: js/files.js:236 js/files.js:341 js/files.js:370 +#: js/files.js:236 js/files.js:341 js/files.js:371 msgid "Pending" msgstr "Traktotaj" -#: js/files.js:355 +#: js/files.js:256 +msgid "1 file uploading" +msgstr "" + +#: js/files.js:259 js/files.js:304 js/files.js:319 +msgid "files uploading" +msgstr "" + +#: js/files.js:322 js/files.js:355 msgid "Upload cancelled." msgstr "La alŝuto nuliĝis." -#: js/files.js:423 +#: js/files.js:424 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Dosieralŝuto plenumiĝas. Lasi la paĝon nun nuligus la alŝuton." -#: js/files.js:493 +#: js/files.js:494 msgid "Invalid name, '/' is not allowed." msgstr "Nevalida nomo, “/” ne estas permesata." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:667 +msgid "files scanned" +msgstr "" + +#: js/files.js:675 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:48 +msgid "Name" +msgstr "Nomo" + +#: js/files.js:749 templates/index.php:56 msgid "Size" msgstr "Grando" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:750 templates/index.php:58 msgid "Modified" msgstr "Modifita" -#: js/files.js:774 +#: js/files.js:777 msgid "folder" msgstr "dosierujo" -#: js/files.js:776 +#: js/files.js:779 msgid "folders" msgstr "dosierujoj" -#: js/files.js:784 +#: js/files.js:787 msgid "file" msgstr "dosiero" -#: js/files.js:786 +#: js/files.js:789 msgid "files" msgstr "dosieroj" +#: js/files.js:833 +msgid "seconds ago" +msgstr "" + +#: js/files.js:834 +msgid "minute ago" +msgstr "" + +#: js/files.js:835 +msgid "minutes ago" +msgstr "" + +#: js/files.js:838 +msgid "today" +msgstr "" + +#: js/files.js:839 +msgid "yesterday" +msgstr "" + +#: js/files.js:840 +msgid "days ago" +msgstr "" + +#: js/files.js:841 +msgid "last month" +msgstr "" + +#: js/files.js:843 +msgid "months ago" +msgstr "" + +#: js/files.js:844 +msgid "last year" +msgstr "" + +#: js/files.js:845 +msgid "years ago" +msgstr "" + #: templates/admin.php:5 msgid "File handling" msgstr "Dosieradministro" @@ -198,7 +262,7 @@ msgstr "Dosierujo" msgid "From url" msgstr "El URL" -#: templates/index.php:21 +#: templates/index.php:20 msgid "Upload" msgstr "Alŝuti" @@ -210,10 +274,6 @@ msgstr "Nuligi alŝuton" msgid "Nothing in here. Upload something!" msgstr "Nenio estas ĉi tie. Alŝutu ion!" -#: templates/index.php:48 -msgid "Name" -msgstr "Nomo" - #: templates/index.php:50 msgid "Share" msgstr "Kunhavigi" diff --git a/l10n/eo/files_sharing.po b/l10n/eo/files_sharing.po index 633cd4eca8..dc0d47ec89 100644 --- a/l10n/eo/files_sharing.po +++ b/l10n/eo/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-09 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 21:35+0000\n" -"Last-Translator: Mariano \n" +"POT-Creation-Date: 2012-09-22 01:14+0200\n" +"PO-Revision-Date: 2012-09-21 23:15+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,14 +26,24 @@ msgstr "Pasvorto" msgid "Submit" msgstr "Sendi" -#: templates/public.php:9 templates/public.php:19 +#: templates/public.php:9 +#, php-format +msgid "%s shared the folder %s with you" +msgstr "" + +#: templates/public.php:11 +#, php-format +msgid "%s shared the file %s with you" +msgstr "" + +#: templates/public.php:14 templates/public.php:30 msgid "Download" msgstr "Elŝuti" -#: templates/public.php:18 +#: templates/public.php:29 msgid "No preview available for" msgstr "Ne haveblas antaŭvido por" -#: templates/public.php:25 +#: templates/public.php:37 msgid "web services under your control" msgstr "TTT-servoj regataj de vi" diff --git a/l10n/eo/files_versions.po b/l10n/eo/files_versions.po index dc9b94a1b3..ef4f6f190d 100644 --- a/l10n/eo/files_versions.po +++ b/l10n/eo/files_versions.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" -"PO-Revision-Date: 2012-09-17 00:04+0000\n" +"POT-Creation-Date: 2012-09-22 01:14+0200\n" +"PO-Revision-Date: 2012-09-21 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -22,6 +22,10 @@ msgstr "" msgid "Expire all versions" msgstr "Eksvalidigi ĉiujn eldonojn" +#: js/versions.js:16 +msgid "History" +msgstr "" + #: templates/settings-personal.php:4 msgid "Versions" msgstr "Eldonoj" diff --git a/l10n/eo/settings.po b/l10n/eo/settings.po index e8a18dc730..210466357e 100644 --- a/l10n/eo/settings.po +++ b/l10n/eo/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:03+0200\n" -"PO-Revision-Date: 2012-09-17 00:03+0000\n" +"POT-Creation-Date: 2012-09-19 02:02+0200\n" +"PO-Revision-Date: 2012-09-19 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -36,7 +36,7 @@ msgstr "" msgid "Unable to add group" msgstr "" -#: ajax/enableapp.php:13 +#: ajax/enableapp.php:14 msgid "Could not enable app. " msgstr "" @@ -78,15 +78,11 @@ msgstr "" msgid "Unable to remove user from group %s" msgstr "" -#: js/apps.js:18 -msgid "Error" -msgstr "Eraro" - -#: js/apps.js:39 js/apps.js:73 +#: js/apps.js:27 js/apps.js:61 msgid "Disable" msgstr "Malkapabligi" -#: js/apps.js:39 js/apps.js:62 +#: js/apps.js:27 js/apps.js:50 msgid "Enable" msgstr "Kapabligi" @@ -226,12 +222,9 @@ msgid "Answer" msgstr "Respondi" #: templates/personal.php:8 -msgid "You use" -msgstr "Vi uzas" - -#: templates/personal.php:8 -msgid "of the available" -msgstr "el la disponeblaj" +#, php-format +msgid "You have used %s of the available %s" +msgstr "" #: templates/personal.php:12 msgid "Desktop and Mobile Syncing Clients" @@ -242,8 +235,8 @@ msgid "Download" msgstr "Elŝuti" #: templates/personal.php:19 -msgid "Your password got changed" -msgstr "Via pasvorto ŝanĝiĝis" +msgid "Your password was changed" +msgstr "" #: templates/personal.php:20 msgid "Unable to change your password" diff --git a/l10n/es/core.po b/l10n/es/core.po index efe18cd7f0..98e33ab2a0 100644 --- a/l10n/es/core.po +++ b/l10n/es/core.po @@ -11,13 +11,14 @@ # , 2011. # Rubén Trujillo , 2012. # , 2011, 2012. +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-30 02:02+0200\n" +"PO-Revision-Date: 2012-09-29 20:46+0000\n" +"Last-Translator: Raul Fernandez Garcia \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -37,58 +38,62 @@ msgstr "¿Ninguna categoría para añadir?" msgid "This category already exists: " msgstr "Esta categoría ya existe: " -#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Ajustes" -#: js/js.js:593 +#: js/js.js:645 msgid "January" msgstr "Enero" -#: js/js.js:593 +#: js/js.js:645 msgid "February" msgstr "Febrero" -#: js/js.js:593 +#: js/js.js:645 msgid "March" msgstr "Marzo" -#: js/js.js:593 +#: js/js.js:645 msgid "April" msgstr "Abril" -#: js/js.js:593 +#: js/js.js:645 msgid "May" msgstr "Mayo" -#: js/js.js:593 +#: js/js.js:645 msgid "June" msgstr "Junio" -#: js/js.js:594 +#: js/js.js:646 msgid "July" msgstr "Julio" -#: js/js.js:594 +#: js/js.js:646 msgid "August" msgstr "Agosto" -#: js/js.js:594 +#: js/js.js:646 msgid "September" msgstr "Septiembre" -#: js/js.js:594 +#: js/js.js:646 msgid "October" msgstr "Octubre" -#: js/js.js:594 +#: js/js.js:646 msgid "November" msgstr "Noviembre" -#: js/js.js:594 +#: js/js.js:646 msgid "December" msgstr "Diciembre" +#: js/oc-dialogs.js:123 +msgid "Choose" +msgstr "Seleccionar" + #: js/oc-dialogs.js:143 js/oc-dialogs.js:163 msgid "Cancel" msgstr "Cancelar" @@ -109,10 +114,119 @@ msgstr "Aceptar" msgid "No categories selected for deletion." msgstr "No hay categorías seleccionadas para borrar." -#: js/oc-vcategories.js:68 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 +#: js/share.js:501 msgid "Error" msgstr "Fallo" +#: js/share.js:103 +msgid "Error while sharing" +msgstr "Error compartiendo" + +#: js/share.js:114 +msgid "Error while unsharing" +msgstr "Error descompartiendo" + +#: js/share.js:121 +msgid "Error while changing permissions" +msgstr "Error cambiando permisos" + +#: js/share.js:130 +msgid "Shared with you and the group" +msgstr "Comprtido contigo y con el grupo" + +#: js/share.js:130 +msgid "by" +msgstr "por" + +#: js/share.js:132 +msgid "Shared with you by" +msgstr "Compartido contigo por" + +#: js/share.js:137 +msgid "Share with" +msgstr "Compartir con" + +#: js/share.js:142 +msgid "Share with link" +msgstr "Enlace de compartir con " + +#: js/share.js:143 +msgid "Password protect" +msgstr "Protegido por contraseña" + +#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +msgid "Password" +msgstr "Contraseña" + +#: js/share.js:152 +msgid "Set expiration date" +msgstr "Establecer fecha de caducidad" + +#: js/share.js:153 +msgid "Expiration date" +msgstr "Fecha de caducidad" + +#: js/share.js:185 +msgid "Share via email:" +msgstr "compartido via e-mail:" + +#: js/share.js:187 +msgid "No people found" +msgstr "No se encontró gente" + +#: js/share.js:214 +msgid "Resharing is not allowed" +msgstr "No se permite compartir de nuevo" + +#: js/share.js:250 +msgid "Shared in" +msgstr "Compartido en" + +#: js/share.js:250 +msgid "with" +msgstr "con" + +#: js/share.js:271 +msgid "Unshare" +msgstr "No compartir" + +#: js/share.js:279 +msgid "can edit" +msgstr "puede editar" + +#: js/share.js:281 +msgid "access control" +msgstr "control de acceso" + +#: js/share.js:284 +msgid "create" +msgstr "crear" + +#: js/share.js:287 +msgid "update" +msgstr "modificar" + +#: js/share.js:290 +msgid "delete" +msgstr "eliminar" + +#: js/share.js:293 +msgid "share" +msgstr "compartir" + +#: js/share.js:317 js/share.js:476 +msgid "Password protected" +msgstr "Protegido por contraseña" + +#: js/share.js:489 +msgid "Error unsetting expiration date" +msgstr "Error al eliminar la fecha de caducidad" + +#: js/share.js:501 +msgid "Error setting expiration date" +msgstr "Error estableciendo fecha de caducidad" + #: lostpassword/index.php:26 msgid "ownCloud password reset" msgstr "Reiniciar contraseña de ownCloud" @@ -138,7 +252,7 @@ msgstr "¡Fallo al iniciar sesión!" msgid "Username" msgstr "Nombre de usuario" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:14 msgid "Request reset" msgstr "Solicitar restablecimiento" @@ -198,10 +312,6 @@ msgstr "Añadir" msgid "Create an admin account" msgstr "Crea una cuenta de administrador" -#: templates/installation.php:30 templates/login.php:13 -msgid "Password" -msgstr "Contraseña" - #: templates/installation.php:36 msgid "Advanced" msgstr "Avanzado" @@ -243,11 +353,11 @@ msgstr "Host de la base de datos" msgid "Finish setup" msgstr "Completar la instalación" -#: templates/layout.guest.php:42 +#: templates/layout.guest.php:36 msgid "web services under your control" msgstr "servicios web bajo tu control" -#: templates/layout.user.php:45 +#: templates/layout.user.php:34 msgid "Log out" msgstr "Salir" @@ -255,11 +365,11 @@ msgstr "Salir" msgid "Lost your password?" msgstr "¿Has perdido tu contraseña?" -#: templates/login.php:17 +#: templates/login.php:16 msgid "remember" msgstr "recuérdame" -#: templates/login.php:18 +#: templates/login.php:17 msgid "Log in" msgstr "Entrar" diff --git a/l10n/es/files.po b/l10n/es/files.po index a50f0e53fd..edab4fc136 100644 --- a/l10n/es/files.po +++ b/l10n/es/files.po @@ -7,13 +7,14 @@ # , 2012. # Rubén Trujillo , 2012. # , 2011, 2012. +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-10 02:02+0200\n" -"PO-Revision-Date: 2012-09-09 03:24+0000\n" -"Last-Translator: juanman \n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 18:08+0000\n" +"Last-Translator: scambra \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -61,41 +62,45 @@ msgstr "Dejar de compartir" #: js/fileactions.js:110 templates/index.php:64 msgid "Delete" -msgstr "Eliminado" +msgstr "Eliminar" -#: js/filelist.js:186 js/filelist.js:188 +#: js/fileactions.js:182 +msgid "Rename" +msgstr "Renombrar" + +#: js/filelist.js:190 js/filelist.js:192 msgid "already exists" msgstr "ya existe" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "replace" msgstr "reemplazar" -#: js/filelist.js:186 +#: js/filelist.js:190 msgid "suggest name" msgstr "sugerir nombre" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "cancel" msgstr "cancelar" -#: js/filelist.js:235 js/filelist.js:237 +#: js/filelist.js:239 js/filelist.js:241 msgid "replaced" msgstr "reemplazado" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:239 js/filelist.js:241 js/filelist.js:273 js/filelist.js:275 msgid "undo" msgstr "deshacer" -#: js/filelist.js:237 +#: js/filelist.js:241 msgid "with" msgstr "con" -#: js/filelist.js:268 +#: js/filelist.js:273 msgid "unshared" msgstr "no compartido" -#: js/filelist.js:270 +#: js/filelist.js:275 msgid "deleted" msgstr "borrado" @@ -111,47 +116,107 @@ msgstr "No ha sido posible subir tu archivo porque es un directorio o tiene 0 by msgid "Upload Error" msgstr "Error al subir el archivo" -#: js/files.js:236 js/files.js:341 js/files.js:370 +#: js/files.js:236 js/files.js:341 js/files.js:371 msgid "Pending" msgstr "Pendiente" -#: js/files.js:355 +#: js/files.js:256 +msgid "1 file uploading" +msgstr "subiendo 1 archivo" + +#: js/files.js:259 js/files.js:304 js/files.js:319 +msgid "files uploading" +msgstr "archivos subiendo" + +#: js/files.js:322 js/files.js:355 msgid "Upload cancelled." msgstr "Subida cancelada." -#: js/files.js:423 +#: js/files.js:424 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "La subida del archivo está en proceso. Salir de la página ahora cancelará la subida." -#: js/files.js:493 +#: js/files.js:494 msgid "Invalid name, '/' is not allowed." msgstr "Nombre no válido, '/' no está permitido." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:668 +msgid "files scanned" +msgstr "archivos escaneados" + +#: js/files.js:676 +msgid "error while scanning" +msgstr "error escaneando" + +#: js/files.js:749 templates/index.php:48 +msgid "Name" +msgstr "Nombre" + +#: js/files.js:750 templates/index.php:56 msgid "Size" msgstr "Tamaño" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:751 templates/index.php:58 msgid "Modified" msgstr "Modificado" -#: js/files.js:774 +#: js/files.js:778 msgid "folder" msgstr "carpeta" -#: js/files.js:776 +#: js/files.js:780 msgid "folders" msgstr "carpetas" -#: js/files.js:784 +#: js/files.js:788 msgid "file" msgstr "archivo" -#: js/files.js:786 +#: js/files.js:790 msgid "files" msgstr "archivos" +#: js/files.js:834 +msgid "seconds ago" +msgstr "hace segundos" + +#: js/files.js:835 +msgid "minute ago" +msgstr "minuto" + +#: js/files.js:836 +msgid "minutes ago" +msgstr "hace minutos" + +#: js/files.js:839 +msgid "today" +msgstr "hoy" + +#: js/files.js:840 +msgid "yesterday" +msgstr "ayer" + +#: js/files.js:841 +msgid "days ago" +msgstr "días" + +#: js/files.js:842 +msgid "last month" +msgstr "mes pasado" + +#: js/files.js:844 +msgid "months ago" +msgstr "hace meses" + +#: js/files.js:845 +msgid "last year" +msgstr "año pasado" + +#: js/files.js:846 +msgid "years ago" +msgstr "hace años" + #: templates/admin.php:5 msgid "File handling" msgstr "Tratamiento de archivos" @@ -200,7 +265,7 @@ msgstr "Carpeta" msgid "From url" msgstr "Desde la URL" -#: templates/index.php:21 +#: templates/index.php:20 msgid "Upload" msgstr "Subir" @@ -212,10 +277,6 @@ msgstr "Cancelar subida" msgid "Nothing in here. Upload something!" msgstr "Aquí no hay nada. ¡Sube algo!" -#: templates/index.php:48 -msgid "Name" -msgstr "Nombre" - #: templates/index.php:50 msgid "Share" msgstr "Compartir" @@ -240,4 +301,4 @@ msgstr "Se están escaneando los archivos, por favor espere." #: templates/index.php:85 msgid "Current scanning" -msgstr "Escaneo actual" +msgstr "Ahora escaneando" diff --git a/l10n/es/files_sharing.po b/l10n/es/files_sharing.po index d6c7ffea13..4b1847f27a 100644 --- a/l10n/es/files_sharing.po +++ b/l10n/es/files_sharing.po @@ -10,15 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-08-31 22:41+0000\n" +"POT-Creation-Date: 2012-09-24 02:01+0200\n" +"PO-Revision-Date: 2012-09-23 09:49+0000\n" "Last-Translator: Rubén Trujillo \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: es\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 msgid "Password" @@ -28,14 +28,24 @@ msgstr "Contraseña" msgid "Submit" msgstr "Enviar" -#: templates/public.php:9 templates/public.php:19 +#: templates/public.php:9 +#, php-format +msgid "%s shared the folder %s with you" +msgstr "%s compartió la carpeta %s contigo" + +#: templates/public.php:11 +#, php-format +msgid "%s shared the file %s with you" +msgstr "%s compartió el fichero %s contigo" + +#: templates/public.php:14 templates/public.php:30 msgid "Download" msgstr "Descargar" -#: templates/public.php:18 +#: templates/public.php:29 msgid "No preview available for" msgstr "No hay vista previa disponible para" -#: templates/public.php:23 +#: templates/public.php:37 msgid "web services under your control" msgstr "Servicios web bajo su control" diff --git a/l10n/es/files_versions.po b/l10n/es/files_versions.po index fa6563948b..b928098bf8 100644 --- a/l10n/es/files_versions.po +++ b/l10n/es/files_versions.po @@ -6,13 +6,14 @@ # Javier Llorente , 2012. # , 2012. # Rubén Trujillo , 2012. +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" -"PO-Revision-Date: 2012-09-17 00:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-26 13:19+0200\n" +"PO-Revision-Date: 2012-09-26 05:59+0000\n" +"Last-Translator: scambra \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,6 +25,10 @@ msgstr "" msgid "Expire all versions" msgstr "Expirar todas las versiones" +#: js/versions.js:16 +msgid "History" +msgstr "Historial" + #: templates/settings-personal.php:4 msgid "Versions" msgstr "Versiones" @@ -34,8 +39,8 @@ msgstr "Esto eliminará todas las versiones guardadas como copia de seguridad de #: templates/settings.php:3 msgid "Files Versioning" -msgstr "" +msgstr "Versionado de archivos" #: templates/settings.php:4 msgid "Enable" -msgstr "" +msgstr "Habilitar" diff --git a/l10n/es/settings.po b/l10n/es/settings.po index c8a6f5b67c..abcc1832f3 100644 --- a/l10n/es/settings.po +++ b/l10n/es/settings.po @@ -17,9 +17,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:03+0200\n" -"PO-Revision-Date: 2012-09-17 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-23 02:01+0200\n" +"PO-Revision-Date: 2012-09-22 10:45+0000\n" +"Last-Translator: Raul Fernandez Garcia \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -44,7 +44,7 @@ msgstr "El grupo ya existe" msgid "Unable to add group" msgstr "No se pudo añadir el grupo" -#: ajax/enableapp.php:13 +#: ajax/enableapp.php:14 msgid "Could not enable app. " msgstr "No puedo habilitar la app." @@ -86,15 +86,11 @@ msgstr "Imposible añadir el usuario al grupo %s" msgid "Unable to remove user from group %s" msgstr "Imposible eliminar al usuario del grupo %s" -#: js/apps.js:18 -msgid "Error" -msgstr "Error" - -#: js/apps.js:39 js/apps.js:73 +#: js/apps.js:27 js/apps.js:61 msgid "Disable" msgstr "Desactivar" -#: js/apps.js:39 js/apps.js:62 +#: js/apps.js:27 js/apps.js:50 msgid "Enable" msgstr "Activar" @@ -125,7 +121,7 @@ msgstr "Cron" #: templates/admin.php:37 msgid "Execute one task with each page loaded" -msgstr "" +msgstr "Ejecutar una tarea con cada página cargada" #: templates/admin.php:43 msgid "" @@ -137,11 +133,11 @@ msgstr "cron.php está registrado como un servicio del webcron. Llama a la pági msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "" +msgstr "Usar el servicio de cron del sitema. Llame al fichero cron.php en la carpeta de owncloud via servidor cronjob cada minuto." #: templates/admin.php:56 msgid "Sharing" -msgstr "" +msgstr "Compartir" #: templates/admin.php:61 msgid "Enable Share API" @@ -234,12 +230,9 @@ msgid "Answer" msgstr "Respuesta" #: templates/personal.php:8 -msgid "You use" -msgstr "Estás utilizando" - -#: templates/personal.php:8 -msgid "of the available" -msgstr "del total disponible de" +#, php-format +msgid "You have used %s of the available %s" +msgstr "Ha usado %s de %s disponible" #: templates/personal.php:12 msgid "Desktop and Mobile Syncing Clients" @@ -250,8 +243,8 @@ msgid "Download" msgstr "Descargar" #: templates/personal.php:19 -msgid "Your password got changed" -msgstr "Tu contraseña ha sido cambiada" +msgid "Your password was changed" +msgstr "Su contraseña ha sido cambiada" #: templates/personal.php:20 msgid "Unable to change your password" diff --git a/l10n/es_AR/core.po b/l10n/es_AR/core.po new file mode 100644 index 0000000000..ef8c5200cb --- /dev/null +++ b/l10n/es_AR/core.po @@ -0,0 +1,378 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# , 2012. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_AR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 +msgid "Application name not provided." +msgstr "Nombre de la aplicación no provisto." + +#: ajax/vcategories/add.php:29 +msgid "No category to add?" +msgstr "¿Ninguna categoría para añadir?" + +#: ajax/vcategories/add.php:36 +msgid "This category already exists: " +msgstr "Esta categoría ya existe: " + +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 +msgid "Settings" +msgstr "Ajustes" + +#: js/js.js:645 +msgid "January" +msgstr "Enero" + +#: js/js.js:645 +msgid "February" +msgstr "Febrero" + +#: js/js.js:645 +msgid "March" +msgstr "Marzo" + +#: js/js.js:645 +msgid "April" +msgstr "Abril" + +#: js/js.js:645 +msgid "May" +msgstr "Mayo" + +#: js/js.js:645 +msgid "June" +msgstr "Junio" + +#: js/js.js:646 +msgid "July" +msgstr "Julio" + +#: js/js.js:646 +msgid "August" +msgstr "Agosto" + +#: js/js.js:646 +msgid "September" +msgstr "Septiembre" + +#: js/js.js:646 +msgid "October" +msgstr "Octubre" + +#: js/js.js:646 +msgid "November" +msgstr "Noviembre" + +#: js/js.js:646 +msgid "December" +msgstr "Diciembre" + +#: js/oc-dialogs.js:123 +msgid "Choose" +msgstr "Elegir" + +#: js/oc-dialogs.js:143 js/oc-dialogs.js:163 +msgid "Cancel" +msgstr "Cancelar" + +#: js/oc-dialogs.js:159 +msgid "No" +msgstr "No" + +#: js/oc-dialogs.js:160 +msgid "Yes" +msgstr "Sí" + +#: js/oc-dialogs.js:177 +msgid "Ok" +msgstr "Aceptar" + +#: js/oc-vcategories.js:68 +msgid "No categories selected for deletion." +msgstr "No hay categorías seleccionadas para borrar." + +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 +#: js/share.js:501 +msgid "Error" +msgstr "Error" + +#: js/share.js:103 +msgid "Error while sharing" +msgstr "Error al compartir" + +#: js/share.js:114 +msgid "Error while unsharing" +msgstr "Error en el procedimiento de " + +#: js/share.js:121 +msgid "Error while changing permissions" +msgstr "Error al cambiar permisos" + +#: js/share.js:130 +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" +msgstr "" + +#: js/share.js:132 +msgid "Shared with you by" +msgstr "" + +#: js/share.js:137 +msgid "Share with" +msgstr "Compartir con" + +#: js/share.js:142 +msgid "Share with link" +msgstr "Compartir con link" + +#: js/share.js:143 +msgid "Password protect" +msgstr "Proteger con contraseña " + +#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +msgid "Password" +msgstr "Contraseña" + +#: js/share.js:152 +msgid "Set expiration date" +msgstr "Asignar fecha de vencimiento" + +#: js/share.js:153 +msgid "Expiration date" +msgstr "Fecha de vencimiento" + +#: js/share.js:185 +msgid "Share via email:" +msgstr "" + +#: js/share.js:187 +msgid "No people found" +msgstr "No se encontraron usuarios" + +#: js/share.js:214 +msgid "Resharing is not allowed" +msgstr "No se permite volver a compartir" + +#: js/share.js:250 +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" +msgstr "" + +#: js/share.js:271 +msgid "Unshare" +msgstr "Remover compartir" + +#: js/share.js:279 +msgid "can edit" +msgstr "puede editar" + +#: js/share.js:281 +msgid "access control" +msgstr "control de acceso" + +#: js/share.js:284 +msgid "create" +msgstr "crear" + +#: js/share.js:287 +msgid "update" +msgstr "actualizar" + +#: js/share.js:290 +msgid "delete" +msgstr "remover" + +#: js/share.js:293 +msgid "share" +msgstr "compartir" + +#: js/share.js:317 js/share.js:476 +msgid "Password protected" +msgstr "Protegido por contraseña" + +#: js/share.js:489 +msgid "Error unsetting expiration date" +msgstr "Error al remover la fecha de caducidad" + +#: js/share.js:501 +msgid "Error setting expiration date" +msgstr "Error al asignar fecha de vencimiento" + +#: lostpassword/index.php:26 +msgid "ownCloud password reset" +msgstr "Restablecer contraseña de ownCloud" + +#: lostpassword/templates/email.php:2 +msgid "Use the following link to reset your password: {link}" +msgstr "Usá este enlace para restablecer tu contraseña: {link}" + +#: lostpassword/templates/lostpassword.php:3 +msgid "You will receive a link to reset your password via Email." +msgstr "Vas a recibir un enlace por e-mail para restablecer tu contraseña" + +#: lostpassword/templates/lostpassword.php:5 +msgid "Requested" +msgstr "Pedido" + +#: lostpassword/templates/lostpassword.php:8 +msgid "Login failed!" +msgstr "¡Fallo al iniciar sesión!" + +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:26 +#: templates/login.php:9 +msgid "Username" +msgstr "Nombre de usuario" + +#: lostpassword/templates/lostpassword.php:15 +msgid "Request reset" +msgstr "Solicitar restablecimiento" + +#: lostpassword/templates/resetpassword.php:4 +msgid "Your password was reset" +msgstr "Tu contraseña ha sido restablecida" + +#: lostpassword/templates/resetpassword.php:5 +msgid "To login page" +msgstr "A la página de inicio de sesión" + +#: lostpassword/templates/resetpassword.php:8 +msgid "New password" +msgstr "Nueva contraseña" + +#: lostpassword/templates/resetpassword.php:11 +msgid "Reset password" +msgstr "Restablecer contraseña" + +#: strings.php:5 +msgid "Personal" +msgstr "Personal" + +#: strings.php:6 +msgid "Users" +msgstr "Usuarios" + +#: strings.php:7 +msgid "Apps" +msgstr "Aplicaciones" + +#: strings.php:8 +msgid "Admin" +msgstr "Administrador" + +#: strings.php:9 +msgid "Help" +msgstr "Ayuda" + +#: templates/403.php:12 +msgid "Access forbidden" +msgstr "Acceso denegado" + +#: templates/404.php:12 +msgid "Cloud not found" +msgstr "No se encontró owncloud" + +#: templates/edit_categories_dialog.php:4 +msgid "Edit categories" +msgstr "Editar categorías" + +#: templates/edit_categories_dialog.php:14 +msgid "Add" +msgstr "Añadir" + +#: templates/installation.php:24 +msgid "Create an admin account" +msgstr "Creá una cuenta de administrador" + +#: templates/installation.php:36 +msgid "Advanced" +msgstr "Avanzado" + +#: templates/installation.php:38 +msgid "Data folder" +msgstr "Directorio de almacenamiento" + +#: templates/installation.php:45 +msgid "Configure the database" +msgstr "Configurar la base de datos" + +#: templates/installation.php:50 templates/installation.php:61 +#: templates/installation.php:71 templates/installation.php:81 +msgid "will be used" +msgstr "se utilizarán" + +#: templates/installation.php:93 +msgid "Database user" +msgstr "Usuario de la base de datos" + +#: templates/installation.php:97 +msgid "Database password" +msgstr "Contraseña de la base de datos" + +#: templates/installation.php:101 +msgid "Database name" +msgstr "Nombre de la base de datos" + +#: templates/installation.php:109 +msgid "Database tablespace" +msgstr "Espacio de tablas de la base de datos" + +#: templates/installation.php:115 +msgid "Database host" +msgstr "Host de la base de datos" + +#: templates/installation.php:120 +msgid "Finish setup" +msgstr "Completar la instalación" + +#: templates/layout.guest.php:36 +msgid "web services under your control" +msgstr "servicios web sobre los que tenés control" + +#: templates/layout.user.php:34 +msgid "Log out" +msgstr "Cerrar la sesión" + +#: templates/login.php:6 +msgid "Lost your password?" +msgstr "¿Perdiste tu contraseña?" + +#: templates/login.php:17 +msgid "remember" +msgstr "recordame" + +#: templates/login.php:18 +msgid "Log in" +msgstr "Entrar" + +#: templates/logout.php:1 +msgid "You are logged out." +msgstr "Terminaste la sesión." + +#: templates/part.pagenavi.php:3 +msgid "prev" +msgstr "anterior" + +#: templates/part.pagenavi.php:20 +msgid "next" +msgstr "siguiente" diff --git a/l10n/es_AR/files.po b/l10n/es_AR/files.po new file mode 100644 index 0000000000..072de5c06f --- /dev/null +++ b/l10n/es_AR/files.po @@ -0,0 +1,300 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# , 2012. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 09:21+0000\n" +"Last-Translator: cjtess \n" +"Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_AR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/upload.php:20 +msgid "There is no error, the file uploaded with success" +msgstr "No se han producido errores, el archivo se ha subido con éxito" + +#: ajax/upload.php:21 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" +msgstr "El archivo que intentás subir sobrepasa el tamaño definido por la variable upload_max_filesize en php.ini" + +#: ajax/upload.php:22 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form" +msgstr "El archivo que intentás subir sobrepasa el tamaño definido por la variable MAX_FILE_SIZE especificada en el formulario HTML" + +#: ajax/upload.php:23 +msgid "The uploaded file was only partially uploaded" +msgstr "El archivo que intentás subir solo se subió parcialmente" + +#: ajax/upload.php:24 +msgid "No file was uploaded" +msgstr "El archivo no fue subido" + +#: ajax/upload.php:25 +msgid "Missing a temporary folder" +msgstr "Falta un directorio temporal" + +#: ajax/upload.php:26 +msgid "Failed to write to disk" +msgstr "La escritura en disco falló" + +#: appinfo/app.php:6 +msgid "Files" +msgstr "Archivos" + +#: js/fileactions.js:108 templates/index.php:62 +msgid "Unshare" +msgstr "Dejar de compartir" + +#: js/fileactions.js:110 templates/index.php:64 +msgid "Delete" +msgstr "Borrar" + +#: js/fileactions.js:182 +msgid "Rename" +msgstr "cambiar nombre" + +#: js/filelist.js:190 js/filelist.js:192 +msgid "already exists" +msgstr "ya existe" + +#: js/filelist.js:190 js/filelist.js:192 +msgid "replace" +msgstr "reemplazar" + +#: js/filelist.js:190 +msgid "suggest name" +msgstr "sugerir nombre" + +#: js/filelist.js:190 js/filelist.js:192 +msgid "cancel" +msgstr "cancelar" + +#: js/filelist.js:239 js/filelist.js:241 +msgid "replaced" +msgstr "reemplazado" + +#: js/filelist.js:239 js/filelist.js:241 js/filelist.js:273 js/filelist.js:275 +msgid "undo" +msgstr "deshacer" + +#: js/filelist.js:241 +msgid "with" +msgstr "con" + +#: js/filelist.js:273 +msgid "unshared" +msgstr "no compartido" + +#: js/filelist.js:275 +msgid "deleted" +msgstr "borrado" + +#: js/files.js:179 +msgid "generating ZIP-file, it may take some time." +msgstr "generando un archivo ZIP, puede llevar un tiempo." + +#: js/files.js:208 +msgid "Unable to upload your file as it is a directory or has 0 bytes" +msgstr "No fue posible subir tu archivo porque es un directorio o su tamaño es 0 bytes" + +#: js/files.js:208 +msgid "Upload Error" +msgstr "Error al subir el archivo" + +#: js/files.js:236 js/files.js:341 js/files.js:371 +msgid "Pending" +msgstr "Pendiente" + +#: js/files.js:256 +msgid "1 file uploading" +msgstr "Subiendo 1 archivo" + +#: js/files.js:259 js/files.js:304 js/files.js:319 +msgid "files uploading" +msgstr "Subiendo archivos" + +#: js/files.js:322 js/files.js:355 +msgid "Upload cancelled." +msgstr "La subida fue cancelada" + +#: js/files.js:424 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "La subida del archivo está en proceso. Si salís de la página ahora, la subida se cancelará." + +#: js/files.js:494 +msgid "Invalid name, '/' is not allowed." +msgstr "Nombre no válido, '/' no está permitido." + +#: js/files.js:668 +msgid "files scanned" +msgstr "archivos escaneados" + +#: js/files.js:676 +msgid "error while scanning" +msgstr "error mientras se escaneaba" + +#: js/files.js:749 templates/index.php:48 +msgid "Name" +msgstr "Nombre" + +#: js/files.js:750 templates/index.php:56 +msgid "Size" +msgstr "Tamaño" + +#: js/files.js:751 templates/index.php:58 +msgid "Modified" +msgstr "Modificado" + +#: js/files.js:778 +msgid "folder" +msgstr "carpeta" + +#: js/files.js:780 +msgid "folders" +msgstr "carpetas" + +#: js/files.js:788 +msgid "file" +msgstr "archivo" + +#: js/files.js:790 +msgid "files" +msgstr "archivos" + +#: js/files.js:834 +msgid "seconds ago" +msgstr "segundos atrás" + +#: js/files.js:835 +msgid "minute ago" +msgstr "hace un minuto" + +#: js/files.js:836 +msgid "minutes ago" +msgstr "minutos atrás" + +#: js/files.js:839 +msgid "today" +msgstr "hoy" + +#: js/files.js:840 +msgid "yesterday" +msgstr "ayer" + +#: js/files.js:841 +msgid "days ago" +msgstr "días atrás" + +#: js/files.js:842 +msgid "last month" +msgstr "el mes pasado" + +#: js/files.js:844 +msgid "months ago" +msgstr "meses atrás" + +#: js/files.js:845 +msgid "last year" +msgstr "el año pasado" + +#: js/files.js:846 +msgid "years ago" +msgstr "años atrás" + +#: templates/admin.php:5 +msgid "File handling" +msgstr "Tratamiento de archivos" + +#: templates/admin.php:7 +msgid "Maximum upload size" +msgstr "Tamaño máximo de subida" + +#: templates/admin.php:7 +msgid "max. possible: " +msgstr "máx. posible:" + +#: templates/admin.php:9 +msgid "Needed for multi-file and folder downloads." +msgstr "Se necesita para descargas multi-archivo y de carpetas" + +#: templates/admin.php:9 +msgid "Enable ZIP-download" +msgstr "Habilitar descarga en formato ZIP" + +#: templates/admin.php:11 +msgid "0 is unlimited" +msgstr "0 significa ilimitado" + +#: templates/admin.php:12 +msgid "Maximum input size for ZIP files" +msgstr "Tamaño máximo para archivos ZIP de entrada" + +#: templates/admin.php:14 +msgid "Save" +msgstr "Guardar" + +#: templates/index.php:7 +msgid "New" +msgstr "Nuevo" + +#: templates/index.php:9 +msgid "Text file" +msgstr "Archivo de texto" + +#: templates/index.php:10 +msgid "Folder" +msgstr "Carpeta" + +#: templates/index.php:11 +msgid "From url" +msgstr "Desde la URL" + +#: templates/index.php:20 +msgid "Upload" +msgstr "Subir" + +#: templates/index.php:27 +msgid "Cancel upload" +msgstr "Cancelar subida" + +#: templates/index.php:40 +msgid "Nothing in here. Upload something!" +msgstr "Aquí no hay nada. ¡Subí contenido!" + +#: templates/index.php:50 +msgid "Share" +msgstr "Compartir" + +#: templates/index.php:52 +msgid "Download" +msgstr "Descargar" + +#: templates/index.php:75 +msgid "Upload too large" +msgstr "El archivo es demasiado grande" + +#: templates/index.php:77 +msgid "" +"The files you are trying to upload exceed the maximum size for file uploads " +"on this server." +msgstr "Los archivos que intentás subir sobrepasan el tamaño máximo " + +#: templates/index.php:82 +msgid "Files are being scanned, please wait." +msgstr "Se están escaneando los archivos, por favor espere." + +#: templates/index.php:85 +msgid "Current scanning" +msgstr "Escaneo actual" diff --git a/l10n/es_AR/files_encryption.po b/l10n/es_AR/files_encryption.po new file mode 100644 index 0000000000..16b134f329 --- /dev/null +++ b/l10n/es_AR/files_encryption.po @@ -0,0 +1,35 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# , 2012. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2012-09-25 02:02+0200\n" +"PO-Revision-Date: 2012-09-24 04:41+0000\n" +"Last-Translator: cjtess \n" +"Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_AR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: templates/settings.php:3 +msgid "Encryption" +msgstr "Encriptación" + +#: templates/settings.php:4 +msgid "Exclude the following file types from encryption" +msgstr "Exceptuar de la encriptación los siguientes tipos de archivo" + +#: templates/settings.php:5 +msgid "None" +msgstr "Ninguno" + +#: templates/settings.php:10 +msgid "Enable Encryption" +msgstr "Habilitar encriptación" diff --git a/l10n/es_AR/files_external.po b/l10n/es_AR/files_external.po new file mode 100644 index 0000000000..d5d7f2b6fb --- /dev/null +++ b/l10n/es_AR/files_external.po @@ -0,0 +1,83 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# , 2012. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2012-09-25 02:02+0200\n" +"PO-Revision-Date: 2012-09-24 04:43+0000\n" +"Last-Translator: cjtess \n" +"Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_AR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: templates/settings.php:3 +msgid "External Storage" +msgstr "Almacenamiento externo" + +#: templates/settings.php:7 templates/settings.php:19 +msgid "Mount point" +msgstr "Punto de montaje" + +#: templates/settings.php:8 +msgid "Backend" +msgstr "Motor" + +#: templates/settings.php:9 +msgid "Configuration" +msgstr "Configuración" + +#: templates/settings.php:10 +msgid "Options" +msgstr "Opciones" + +#: templates/settings.php:11 +msgid "Applicable" +msgstr "Aplicable" + +#: templates/settings.php:23 +msgid "Add mount point" +msgstr "Añadir punto de montaje" + +#: templates/settings.php:54 templates/settings.php:62 +msgid "None set" +msgstr "No fue configurado" + +#: templates/settings.php:63 +msgid "All Users" +msgstr "Todos los usuarios" + +#: templates/settings.php:64 +msgid "Groups" +msgstr "Grupos" + +#: templates/settings.php:69 +msgid "Users" +msgstr "Usuarios" + +#: templates/settings.php:77 templates/settings.php:96 +msgid "Delete" +msgstr "Borrar" + +#: templates/settings.php:88 +msgid "SSL root certificates" +msgstr "certificados SSL raíz" + +#: templates/settings.php:102 +msgid "Import Root Certificate" +msgstr "Importar certificado raíz" + +#: templates/settings.php:108 +msgid "Enable User External Storage" +msgstr "Habilitar almacenamiento de usuario externo" + +#: templates/settings.php:109 +msgid "Allow users to mount their own external storage" +msgstr "Permitir a los usuarios montar su propio almacenamiento externo" diff --git a/l10n/es_AR/files_sharing.po b/l10n/es_AR/files_sharing.po new file mode 100644 index 0000000000..62233486fb --- /dev/null +++ b/l10n/es_AR/files_sharing.po @@ -0,0 +1,49 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# , 2012. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2012-09-25 02:02+0200\n" +"PO-Revision-Date: 2012-09-24 04:38+0000\n" +"Last-Translator: cjtess \n" +"Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_AR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: templates/authenticate.php:4 +msgid "Password" +msgstr "Contraseña" + +#: templates/authenticate.php:6 +msgid "Submit" +msgstr "Enviar" + +#: templates/public.php:9 +#, php-format +msgid "%s shared the folder %s with you" +msgstr "%s compartió la carpeta %s con vos" + +#: templates/public.php:11 +#, php-format +msgid "%s shared the file %s with you" +msgstr "%s compartió el archivo %s con vos" + +#: templates/public.php:14 templates/public.php:30 +msgid "Download" +msgstr "Descargar" + +#: templates/public.php:29 +msgid "No preview available for" +msgstr "La vista preliminar no está disponible para" + +#: templates/public.php:37 +msgid "web services under your control" +msgstr "servicios web controlados por vos" diff --git a/l10n/es_AR/files_versions.po b/l10n/es_AR/files_versions.po new file mode 100644 index 0000000000..51e4552b00 --- /dev/null +++ b/l10n/es_AR/files_versions.po @@ -0,0 +1,43 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# , 2012. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2012-09-25 02:02+0200\n" +"PO-Revision-Date: 2012-09-24 04:28+0000\n" +"Last-Translator: cjtess \n" +"Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_AR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: js/settings-personal.js:31 templates/settings-personal.php:10 +msgid "Expire all versions" +msgstr "Expirar todas las versiones" + +#: js/versions.js:16 +msgid "History" +msgstr "Historia" + +#: templates/settings-personal.php:4 +msgid "Versions" +msgstr "Versiones" + +#: templates/settings-personal.php:7 +msgid "This will delete all existing backup versions of your files" +msgstr "Hacer estom borrará todas las versiones guardadas como copia de seguridad de tus archivos" + +#: templates/settings.php:3 +msgid "Files Versioning" +msgstr "Versionado de archivos" + +#: templates/settings.php:4 +msgid "Enable" +msgstr "Activar" diff --git a/l10n/es_AR/lib.po b/l10n/es_AR/lib.po new file mode 100644 index 0000000000..07b048d92a --- /dev/null +++ b/l10n/es_AR/lib.po @@ -0,0 +1,126 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# , 2012. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2012-09-25 02:02+0200\n" +"PO-Revision-Date: 2012-09-24 04:22+0000\n" +"Last-Translator: cjtess \n" +"Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_AR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: app.php:285 +msgid "Help" +msgstr "Ayuda" + +#: app.php:292 +msgid "Personal" +msgstr "Personal" + +#: app.php:297 +msgid "Settings" +msgstr "Ajustes" + +#: app.php:302 +msgid "Users" +msgstr "Usuarios" + +#: app.php:309 +msgid "Apps" +msgstr "Aplicaciones" + +#: app.php:311 +msgid "Admin" +msgstr "Administración" + +#: files.php:310 +msgid "ZIP download is turned off." +msgstr "La descarga en ZIP está desactivada." + +#: files.php:311 +msgid "Files need to be downloaded one by one." +msgstr "Los archivos deben ser descargados de a uno." + +#: files.php:311 files.php:336 +msgid "Back to Files" +msgstr "Volver a archivos" + +#: files.php:335 +msgid "Selected files too large to generate zip file." +msgstr "Los archivos seleccionados son demasiado grandes para generar el archivo zip." + +#: json.php:28 +msgid "Application is not enabled" +msgstr "La aplicación no está habilitada" + +#: json.php:39 json.php:63 json.php:75 +msgid "Authentication error" +msgstr "Error de autenticación" + +#: json.php:51 +msgid "Token expired. Please reload page." +msgstr "Token expirado. Por favor, recargá la página." + +#: template.php:87 +msgid "seconds ago" +msgstr "hace unos segundos" + +#: template.php:88 +msgid "1 minute ago" +msgstr "hace 1 minuto" + +#: template.php:89 +#, php-format +msgid "%d minutes ago" +msgstr "hace %d minutos" + +#: template.php:92 +msgid "today" +msgstr "hoy" + +#: template.php:93 +msgid "yesterday" +msgstr "ayer" + +#: template.php:94 +#, php-format +msgid "%d days ago" +msgstr "hace %d días" + +#: template.php:95 +msgid "last month" +msgstr "este mes" + +#: template.php:96 +msgid "months ago" +msgstr "hace meses" + +#: template.php:97 +msgid "last year" +msgstr "este año" + +#: template.php:98 +msgid "years ago" +msgstr "hace años" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get more information" +msgstr "%s está disponible. Conseguí más información" + +#: updater.php:68 +msgid "up to date" +msgstr "actualizado" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "comprobar actualizaciones está desactivado" diff --git a/l10n/es_AR/settings.po b/l10n/es_AR/settings.po new file mode 100644 index 0000000000..fe21f0857e --- /dev/null +++ b/l10n/es_AR/settings.po @@ -0,0 +1,318 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# , 2012. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2012-09-25 02:03+0200\n" +"PO-Revision-Date: 2012-09-24 23:02+0000\n" +"Last-Translator: cjtess \n" +"Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_AR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/apps/ocs.php:23 +msgid "Unable to load list from App Store" +msgstr "Imposible cargar la lista desde el App Store" + +#: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 +#: ajax/togglegroups.php:15 +msgid "Authentication error" +msgstr "Error al autenticar" + +#: ajax/creategroup.php:19 +msgid "Group already exists" +msgstr "El grupo ya existe" + +#: ajax/creategroup.php:28 +msgid "Unable to add group" +msgstr "No fue posible añadir el grupo" + +#: ajax/enableapp.php:14 +msgid "Could not enable app. " +msgstr "No se puede habilitar la aplicación." + +#: ajax/lostpassword.php:14 +msgid "Email saved" +msgstr "e-mail guardado" + +#: ajax/lostpassword.php:16 +msgid "Invalid email" +msgstr "el e-mail no es válido " + +#: ajax/openid.php:16 +msgid "OpenID Changed" +msgstr "OpenID cambiado" + +#: ajax/openid.php:18 ajax/setlanguage.php:20 ajax/setlanguage.php:23 +msgid "Invalid request" +msgstr "Solicitud no válida" + +#: ajax/removegroup.php:16 +msgid "Unable to delete group" +msgstr "No fue posible eliminar el grupo" + +#: ajax/removeuser.php:22 +msgid "Unable to delete user" +msgstr "No fue posible eliminar el usuario" + +#: ajax/setlanguage.php:18 +msgid "Language changed" +msgstr "Idioma cambiado" + +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "No fue posible añadir el usuario al grupo %s" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "No es posible eliminar al usuario del grupo %s" + +#: js/apps.js:27 js/apps.js:61 +msgid "Disable" +msgstr "Desactivar" + +#: js/apps.js:27 js/apps.js:50 +msgid "Enable" +msgstr "Activar" + +#: js/personal.js:69 +msgid "Saving..." +msgstr "Guardando..." + +#: personal.php:46 personal.php:47 +msgid "__language_name__" +msgstr "Castellano (Argentina)" + +#: templates/admin.php:14 +msgid "Security Warning" +msgstr "Advertencia de seguridad" + +#: templates/admin.php:17 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file that ownCloud provides is not working. We " +"strongly suggest that you configure your webserver in a way that the data " +"directory is no longer accessible or you move the data directory outside the" +" webserver document root." +msgstr "El directorio de datos -data- y los archivos que contiene, probablemente son accesibles desde internet. El archivo .htaccess que provee ownCloud no está funcionando. Recomendamos fuertemente que configures su servidor web de forma que el directorio de datos ya no sea accesible o que muevas el directorio de datos fuera de la raíz de documentos del servidor web." + +#: templates/admin.php:31 +msgid "Cron" +msgstr "Cron" + +#: templates/admin.php:37 +msgid "Execute one task with each page loaded" +msgstr "Ejecutar una tarea con cada página cargada" + +#: templates/admin.php:43 +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." +msgstr "cron.php está registrado como un servicio del webcron. Llamá a la página de cron.php en la raíz de ownCloud cada minuto sobre http." + +#: templates/admin.php:49 +msgid "" +"Use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." +msgstr "Usar el servicio de cron del sistema. Llamá al archivo cron.php en la carpeta de ownCloud via servidor cronjob cada minuto." + +#: templates/admin.php:56 +msgid "Sharing" +msgstr "Compartir" + +#: templates/admin.php:61 +msgid "Enable Share API" +msgstr "Activar API de compartición" + +#: templates/admin.php:62 +msgid "Allow apps to use the Share API" +msgstr "Permitir a las aplicaciones usar la API de compartición" + +#: templates/admin.php:67 +msgid "Allow links" +msgstr "Permitir enlaces" + +#: templates/admin.php:68 +msgid "Allow users to share items to the public with links" +msgstr "Permitir a los usuarios compartir elementos públicamente con enlaces" + +#: templates/admin.php:73 +msgid "Allow resharing" +msgstr "Permitir re-compartir" + +#: templates/admin.php:74 +msgid "Allow users to share items shared with them again" +msgstr "Permitir a los usuarios compartir elementos ya compartidos" + +#: templates/admin.php:79 +msgid "Allow users to share with anyone" +msgstr "Permitir a los usuarios compartir con cualquiera" + +#: templates/admin.php:81 +msgid "Allow users to only share with users in their groups" +msgstr "Permitir a los usuarios compartir con usuarios en sus grupos" + +#: templates/admin.php:88 +msgid "Log" +msgstr "Registro" + +#: templates/admin.php:116 +msgid "More" +msgstr "Más" + +#: templates/admin.php:124 +msgid "" +"Developed by the ownCloud community, the source code is " +"licensed under the AGPL." +msgstr "Desarrollado por la comunidad ownCloud, el código fuente está bajo licencia AGPL." + +#: templates/apps.php:10 +msgid "Add your App" +msgstr "Añadí tu aplicación" + +#: templates/apps.php:26 +msgid "Select an App" +msgstr "Seleccionar una aplicación" + +#: templates/apps.php:29 +msgid "See application page at apps.owncloud.com" +msgstr "Mirá la web de aplicaciones apps.owncloud.com" + +#: templates/apps.php:30 +msgid "-licensed by " +msgstr "-licenciado por " + +#: templates/help.php:9 +msgid "Documentation" +msgstr "Documentación" + +#: templates/help.php:10 +msgid "Managing Big Files" +msgstr "Administrar archivos grandes" + +#: templates/help.php:11 +msgid "Ask a question" +msgstr "Hacer una pregunta" + +#: templates/help.php:23 +msgid "Problems connecting to help database." +msgstr "Problemas al conectar con la base de datos de ayuda." + +#: templates/help.php:24 +msgid "Go there manually." +msgstr "Ir de forma manual" + +#: templates/help.php:32 +msgid "Answer" +msgstr "Respuesta" + +#: templates/personal.php:8 +#, php-format +msgid "You have used %s of the available %s" +msgstr "Usaste %s de %s disponible" + +#: templates/personal.php:12 +msgid "Desktop and Mobile Syncing Clients" +msgstr "Clientes de sincronización para celulares, tablets y de escritorio" + +#: templates/personal.php:13 +msgid "Download" +msgstr "Descargar" + +#: templates/personal.php:19 +msgid "Your password was changed" +msgstr "Tu contraseña fue cambiada" + +#: templates/personal.php:20 +msgid "Unable to change your password" +msgstr "No fue posible cambiar tu contraseña" + +#: templates/personal.php:21 +msgid "Current password" +msgstr "Contraseña actual" + +#: templates/personal.php:22 +msgid "New password" +msgstr "Nueva contraseña:" + +#: templates/personal.php:23 +msgid "show" +msgstr "mostrar" + +#: templates/personal.php:24 +msgid "Change password" +msgstr "Cambiar contraseña" + +#: templates/personal.php:30 +msgid "Email" +msgstr "Correo electrónico" + +#: templates/personal.php:31 +msgid "Your email address" +msgstr "Tu dirección de e-mail" + +#: templates/personal.php:32 +msgid "Fill in an email address to enable password recovery" +msgstr "Escribí una dirección de correo electrónico para restablecer la contraseña" + +#: templates/personal.php:38 templates/personal.php:39 +msgid "Language" +msgstr "Idioma" + +#: templates/personal.php:44 +msgid "Help translate" +msgstr "Ayudanos a traducir" + +#: templates/personal.php:51 +msgid "use this address to connect to your ownCloud in your file manager" +msgstr "usá esta dirección para conectarte a tu ownCloud desde tu gestor de archivos" + +#: templates/users.php:21 templates/users.php:76 +msgid "Name" +msgstr "Nombre" + +#: templates/users.php:23 templates/users.php:77 +msgid "Password" +msgstr "Contraseña" + +#: templates/users.php:26 templates/users.php:78 templates/users.php:98 +msgid "Groups" +msgstr "Grupos" + +#: templates/users.php:32 +msgid "Create" +msgstr "Crear" + +#: templates/users.php:35 +msgid "Default Quota" +msgstr "Cuota predeterminada" + +#: templates/users.php:55 templates/users.php:138 +msgid "Other" +msgstr "Otro" + +#: templates/users.php:80 templates/users.php:112 +msgid "Group Admin" +msgstr "Grupo admin" + +#: templates/users.php:82 +msgid "Quota" +msgstr "Cuota" + +#: templates/users.php:146 +msgid "Delete" +msgstr "Borrar" diff --git a/l10n/es_AR/user_ldap.po b/l10n/es_AR/user_ldap.po new file mode 100644 index 0000000000..218284e3da --- /dev/null +++ b/l10n/es_AR/user_ldap.po @@ -0,0 +1,171 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# , 2012. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2012-09-25 02:02+0200\n" +"PO-Revision-Date: 2012-09-24 22:51+0000\n" +"Last-Translator: cjtess \n" +"Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_AR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: templates/settings.php:8 +msgid "Host" +msgstr "Servidor" + +#: templates/settings.php:8 +msgid "" +"You can omit the protocol, except you require SSL. Then start with ldaps://" +msgstr "Podés omitir el protocolo, excepto si SSL es requerido. En ese caso, empezá con ldaps://" + +#: templates/settings.php:9 +msgid "Base DN" +msgstr "DN base" + +#: templates/settings.php:9 +msgid "You can specify Base DN for users and groups in the Advanced tab" +msgstr "Podés especificar el DN base para usuarios y grupos en la pestaña \"Avanzado\"" + +#: templates/settings.php:10 +msgid "User DN" +msgstr "DN usuario" + +#: templates/settings.php:10 +msgid "" +"The DN of the client user with which the bind shall be done, e.g. " +"uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " +"empty." +msgstr "El DN del usuario cliente con el que se hará la asociación, p.ej. uid=agente,dc=ejemplo,dc=com. Para acceso anónimo, dejá DN y contraseña vacíos." + +#: templates/settings.php:11 +msgid "Password" +msgstr "Contraseña" + +#: templates/settings.php:11 +msgid "For anonymous access, leave DN and Password empty." +msgstr "Para acceso anónimo, dejá DN y contraseña vacíos." + +#: templates/settings.php:12 +msgid "User Login Filter" +msgstr "Filtro de inicio de sesión de usuario" + +#: templates/settings.php:12 +#, php-format +msgid "" +"Defines the filter to apply, when login is attempted. %%uid replaces the " +"username in the login action." +msgstr "Define el filtro a aplicar cuando se ha realizado un login. %%uid remplazará el nombre de usuario en el proceso de inicio de sesión." + +#: templates/settings.php:12 +#, php-format +msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" +msgstr "usar %%uid como plantilla, p. ej.: \"uid=%%uid\"" + +#: templates/settings.php:13 +msgid "User List Filter" +msgstr "Lista de filtros de usuario" + +#: templates/settings.php:13 +msgid "Defines the filter to apply, when retrieving users." +msgstr "Define el filtro a aplicar, cuando se obtienen usuarios." + +#: templates/settings.php:13 +msgid "without any placeholder, e.g. \"objectClass=person\"." +msgstr "Sin plantilla, p. ej.: \"objectClass=person\"." + +#: templates/settings.php:14 +msgid "Group Filter" +msgstr "Filtro de grupo" + +#: templates/settings.php:14 +msgid "Defines the filter to apply, when retrieving groups." +msgstr "Define el filtro a aplicar cuando se obtienen grupos." + +#: templates/settings.php:14 +msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." +msgstr "Sin ninguna plantilla, p. ej.: \"objectClass=posixGroup\"." + +#: templates/settings.php:17 +msgid "Port" +msgstr "Puerto" + +#: templates/settings.php:18 +msgid "Base User Tree" +msgstr "Árbol base de usuario" + +#: templates/settings.php:19 +msgid "Base Group Tree" +msgstr "Árbol base de grupo" + +#: templates/settings.php:20 +msgid "Group-Member association" +msgstr "Asociación Grupo-Miembro" + +#: templates/settings.php:21 +msgid "Use TLS" +msgstr "Usar TLS" + +#: templates/settings.php:21 +msgid "Do not use it for SSL connections, it will fail." +msgstr "No usarlo para SSL, dará error." + +#: templates/settings.php:22 +msgid "Case insensitve LDAP server (Windows)" +msgstr "Servidor de LDAP sensible a mayúsculas/minúsculas (Windows)" + +#: templates/settings.php:23 +msgid "Turn off SSL certificate validation." +msgstr "Desactivar la validación por certificado SSL." + +#: templates/settings.php:23 +msgid "" +"If connection only works with this option, import the LDAP server's SSL " +"certificate in your ownCloud server." +msgstr "Si la conexión sólo funciona con esta opción, importá el certificado SSL del servidor LDAP en tu servidor ownCloud." + +#: templates/settings.php:23 +msgid "Not recommended, use for testing only." +msgstr "No recomendado, sólo para pruebas." + +#: templates/settings.php:24 +msgid "User Display Name Field" +msgstr "Campo de nombre de usuario a mostrar" + +#: templates/settings.php:24 +msgid "The LDAP attribute to use to generate the user`s ownCloud name." +msgstr "El atributo LDAP a usar para generar el nombre de usuario de ownCloud." + +#: templates/settings.php:25 +msgid "Group Display Name Field" +msgstr "Campo de nombre de grupo a mostrar" + +#: templates/settings.php:25 +msgid "The LDAP attribute to use to generate the groups`s ownCloud name." +msgstr "El atributo LDAP a usar para generar el nombre de los grupos de ownCloud." + +#: templates/settings.php:27 +msgid "in bytes" +msgstr "en bytes" + +#: templates/settings.php:29 +msgid "in seconds. A change empties the cache." +msgstr "en segundos. Cambiarlo vacía la cache." + +#: templates/settings.php:30 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "Vacío para el nombre de usuario (por defecto). En otro caso, especificá un atributo LDAP/AD." + +#: templates/settings.php:32 +msgid "Help" +msgstr "Ayuda" diff --git a/l10n/et_EE/core.po b/l10n/et_EE/core.po index f8d3d18652..81a2ab9c72 100644 --- a/l10n/et_EE/core.po +++ b/l10n/et_EE/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -30,58 +30,62 @@ msgstr "Pole kategooriat, mida lisada?" msgid "This category already exists: " msgstr "See kategooria on juba olemas: " -#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Seaded" -#: js/js.js:593 +#: js/js.js:645 msgid "January" msgstr "Jaanuar" -#: js/js.js:593 +#: js/js.js:645 msgid "February" msgstr "Veebruar" -#: js/js.js:593 +#: js/js.js:645 msgid "March" msgstr "Märts" -#: js/js.js:593 +#: js/js.js:645 msgid "April" msgstr "Aprill" -#: js/js.js:593 +#: js/js.js:645 msgid "May" msgstr "Mai" -#: js/js.js:593 +#: js/js.js:645 msgid "June" msgstr "Juuni" -#: js/js.js:594 +#: js/js.js:646 msgid "July" msgstr "Juuli" -#: js/js.js:594 +#: js/js.js:646 msgid "August" msgstr "August" -#: js/js.js:594 +#: js/js.js:646 msgid "September" msgstr "September" -#: js/js.js:594 +#: js/js.js:646 msgid "October" msgstr "Oktoober" -#: js/js.js:594 +#: js/js.js:646 msgid "November" msgstr "November" -#: js/js.js:594 +#: js/js.js:646 msgid "December" msgstr "Detsember" +#: js/oc-dialogs.js:123 +msgid "Choose" +msgstr "" + #: js/oc-dialogs.js:143 js/oc-dialogs.js:163 msgid "Cancel" msgstr "Loobu" @@ -102,10 +106,119 @@ msgstr "Ok" msgid "No categories selected for deletion." msgstr "Kustutamiseks pole kategooriat valitud." -#: js/oc-vcategories.js:68 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 +#: js/share.js:501 msgid "Error" msgstr "Viga" +#: js/share.js:103 +msgid "Error while sharing" +msgstr "" + +#: js/share.js:114 +msgid "Error while unsharing" +msgstr "" + +#: js/share.js:121 +msgid "Error while changing permissions" +msgstr "" + +#: js/share.js:130 +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" +msgstr "" + +#: js/share.js:132 +msgid "Shared with you by" +msgstr "" + +#: js/share.js:137 +msgid "Share with" +msgstr "" + +#: js/share.js:142 +msgid "Share with link" +msgstr "" + +#: js/share.js:143 +msgid "Password protect" +msgstr "" + +#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +msgid "Password" +msgstr "Parool" + +#: js/share.js:152 +msgid "Set expiration date" +msgstr "" + +#: js/share.js:153 +msgid "Expiration date" +msgstr "" + +#: js/share.js:185 +msgid "Share via email:" +msgstr "" + +#: js/share.js:187 +msgid "No people found" +msgstr "" + +#: js/share.js:214 +msgid "Resharing is not allowed" +msgstr "" + +#: js/share.js:250 +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" +msgstr "" + +#: js/share.js:271 +msgid "Unshare" +msgstr "" + +#: js/share.js:279 +msgid "can edit" +msgstr "" + +#: js/share.js:281 +msgid "access control" +msgstr "" + +#: js/share.js:284 +msgid "create" +msgstr "" + +#: js/share.js:287 +msgid "update" +msgstr "" + +#: js/share.js:290 +msgid "delete" +msgstr "" + +#: js/share.js:293 +msgid "share" +msgstr "" + +#: js/share.js:317 js/share.js:476 +msgid "Password protected" +msgstr "" + +#: js/share.js:489 +msgid "Error unsetting expiration date" +msgstr "" + +#: js/share.js:501 +msgid "Error setting expiration date" +msgstr "" + #: lostpassword/index.php:26 msgid "ownCloud password reset" msgstr "ownCloud parooli taastamine" @@ -191,10 +304,6 @@ msgstr "Lisa" msgid "Create an admin account" msgstr "Loo admini konto" -#: templates/installation.php:30 templates/login.php:13 -msgid "Password" -msgstr "Parool" - #: templates/installation.php:36 msgid "Advanced" msgstr "Lisavalikud" @@ -236,11 +345,11 @@ msgstr "Andmebaasi host" msgid "Finish setup" msgstr "Lõpeta seadistamine" -#: templates/layout.guest.php:42 +#: templates/layout.guest.php:36 msgid "web services under your control" msgstr "veebiteenused sinu kontrolli all" -#: templates/layout.user.php:45 +#: templates/layout.user.php:34 msgid "Log out" msgstr "Logi välja" diff --git a/l10n/et_EE/files.po b/l10n/et_EE/files.po index a2e851dd2f..4aedcde54d 100644 --- a/l10n/et_EE/files.po +++ b/l10n/et_EE/files.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-12 02:01+0200\n" -"PO-Revision-Date: 2012-09-11 10:21+0000\n" -"Last-Translator: Rivo Zängov \n" +"POT-Creation-Date: 2012-09-26 13:19+0200\n" +"PO-Revision-Date: 2012-09-26 11:20+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -60,39 +60,43 @@ msgstr "Lõpeta jagamine" msgid "Delete" msgstr "Kustuta" -#: js/filelist.js:186 js/filelist.js:188 +#: js/fileactions.js:182 +msgid "Rename" +msgstr "" + +#: js/filelist.js:190 js/filelist.js:192 msgid "already exists" msgstr "on juba olemas" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "replace" msgstr "asenda" -#: js/filelist.js:186 +#: js/filelist.js:190 msgid "suggest name" msgstr "soovita nime" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "cancel" msgstr "loobu" -#: js/filelist.js:235 js/filelist.js:237 +#: js/filelist.js:239 js/filelist.js:241 msgid "replaced" msgstr "asendatud" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:239 js/filelist.js:241 js/filelist.js:273 js/filelist.js:275 msgid "undo" msgstr "tagasi" -#: js/filelist.js:237 +#: js/filelist.js:241 msgid "with" msgstr "millega" -#: js/filelist.js:268 +#: js/filelist.js:273 msgid "unshared" msgstr "jagamata" -#: js/filelist.js:270 +#: js/filelist.js:275 msgid "deleted" msgstr "kustutatud" @@ -108,47 +112,107 @@ msgstr "Sinu faili üleslaadimine ebaõnnestus, kuna see on kaust või selle suu msgid "Upload Error" msgstr "Üleslaadimise viga" -#: js/files.js:236 js/files.js:341 js/files.js:370 +#: js/files.js:236 js/files.js:341 js/files.js:371 msgid "Pending" msgstr "Ootel" -#: js/files.js:355 +#: js/files.js:256 +msgid "1 file uploading" +msgstr "" + +#: js/files.js:259 js/files.js:304 js/files.js:319 +msgid "files uploading" +msgstr "" + +#: js/files.js:322 js/files.js:355 msgid "Upload cancelled." msgstr "Üleslaadimine tühistati." -#: js/files.js:423 +#: js/files.js:424 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Faili üleslaadimine on töös. Lehelt lahkumine katkestab selle üleslaadimise." -#: js/files.js:493 +#: js/files.js:494 msgid "Invalid name, '/' is not allowed." msgstr "Vigane nimi, '/' pole lubatud." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:667 +msgid "files scanned" +msgstr "" + +#: js/files.js:675 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:48 +msgid "Name" +msgstr "Nimi" + +#: js/files.js:749 templates/index.php:56 msgid "Size" msgstr "Suurus" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:750 templates/index.php:58 msgid "Modified" msgstr "Muudetud" -#: js/files.js:774 +#: js/files.js:777 msgid "folder" msgstr "kaust" -#: js/files.js:776 +#: js/files.js:779 msgid "folders" msgstr "kausta" -#: js/files.js:784 +#: js/files.js:787 msgid "file" msgstr "fail" -#: js/files.js:786 +#: js/files.js:789 msgid "files" msgstr "faili" +#: js/files.js:833 +msgid "seconds ago" +msgstr "" + +#: js/files.js:834 +msgid "minute ago" +msgstr "" + +#: js/files.js:835 +msgid "minutes ago" +msgstr "" + +#: js/files.js:838 +msgid "today" +msgstr "" + +#: js/files.js:839 +msgid "yesterday" +msgstr "" + +#: js/files.js:840 +msgid "days ago" +msgstr "" + +#: js/files.js:841 +msgid "last month" +msgstr "" + +#: js/files.js:843 +msgid "months ago" +msgstr "" + +#: js/files.js:844 +msgid "last year" +msgstr "" + +#: js/files.js:845 +msgid "years ago" +msgstr "" + #: templates/admin.php:5 msgid "File handling" msgstr "Failide käsitlemine" @@ -197,7 +261,7 @@ msgstr "Kaust" msgid "From url" msgstr "URL-ilt" -#: templates/index.php:21 +#: templates/index.php:20 msgid "Upload" msgstr "Lae üles" @@ -209,10 +273,6 @@ msgstr "Tühista üleslaadimine" msgid "Nothing in here. Upload something!" msgstr "Siin pole midagi. Lae midagi üles!" -#: templates/index.php:48 -msgid "Name" -msgstr "Nimi" - #: templates/index.php:50 msgid "Share" msgstr "Jaga" diff --git a/l10n/et_EE/files_sharing.po b/l10n/et_EE/files_sharing.po index 44a935c9b7..e877c9e1c2 100644 --- a/l10n/et_EE/files_sharing.po +++ b/l10n/et_EE/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-09 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 13:31+0000\n" -"Last-Translator: Rivo Zängov \n" +"POT-Creation-Date: 2012-09-22 01:14+0200\n" +"PO-Revision-Date: 2012-09-21 23:15+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,14 +26,24 @@ msgstr "Parool" msgid "Submit" msgstr "Saada" -#: templates/public.php:9 templates/public.php:19 +#: templates/public.php:9 +#, php-format +msgid "%s shared the folder %s with you" +msgstr "" + +#: templates/public.php:11 +#, php-format +msgid "%s shared the file %s with you" +msgstr "" + +#: templates/public.php:14 templates/public.php:30 msgid "Download" msgstr "Lae alla" -#: templates/public.php:18 +#: templates/public.php:29 msgid "No preview available for" msgstr "Eelvaadet pole saadaval" -#: templates/public.php:25 +#: templates/public.php:37 msgid "web services under your control" msgstr "veebitenused sinu kontrolli all" diff --git a/l10n/et_EE/files_versions.po b/l10n/et_EE/files_versions.po index 0117bbd83e..33dc90ce2f 100644 --- a/l10n/et_EE/files_versions.po +++ b/l10n/et_EE/files_versions.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" -"PO-Revision-Date: 2012-09-17 00:04+0000\n" +"POT-Creation-Date: 2012-09-22 01:14+0200\n" +"PO-Revision-Date: 2012-09-21 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -22,6 +22,10 @@ msgstr "" msgid "Expire all versions" msgstr "Kõikide versioonide aegumine" +#: js/versions.js:16 +msgid "History" +msgstr "" + #: templates/settings-personal.php:4 msgid "Versions" msgstr "Versioonid" diff --git a/l10n/et_EE/settings.po b/l10n/et_EE/settings.po index d5cf241bde..dc320ccf4c 100644 --- a/l10n/et_EE/settings.po +++ b/l10n/et_EE/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:03+0200\n" -"PO-Revision-Date: 2012-09-17 00:03+0000\n" +"POT-Creation-Date: 2012-09-19 02:02+0200\n" +"PO-Revision-Date: 2012-09-19 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -36,7 +36,7 @@ msgstr "Grupp on juba olemas" msgid "Unable to add group" msgstr "Keela grupi lisamine" -#: ajax/enableapp.php:13 +#: ajax/enableapp.php:14 msgid "Could not enable app. " msgstr "" @@ -78,15 +78,11 @@ msgstr "Kasutajat ei saa lisada gruppi %s" msgid "Unable to remove user from group %s" msgstr "Kasutajat ei saa eemaldada grupist %s" -#: js/apps.js:18 -msgid "Error" -msgstr "Viga" - -#: js/apps.js:39 js/apps.js:73 +#: js/apps.js:27 js/apps.js:61 msgid "Disable" msgstr "Lülita välja" -#: js/apps.js:39 js/apps.js:62 +#: js/apps.js:27 js/apps.js:50 msgid "Enable" msgstr "Lülita sisse" @@ -226,12 +222,9 @@ msgid "Answer" msgstr "Vasta" #: templates/personal.php:8 -msgid "You use" -msgstr "Sa kasutad" - -#: templates/personal.php:8 -msgid "of the available" -msgstr "saadaolevast" +#, php-format +msgid "You have used %s of the available %s" +msgstr "" #: templates/personal.php:12 msgid "Desktop and Mobile Syncing Clients" @@ -242,8 +235,8 @@ msgid "Download" msgstr "Lae alla" #: templates/personal.php:19 -msgid "Your password got changed" -msgstr "Sinu parooli on muudetud" +msgid "Your password was changed" +msgstr "" #: templates/personal.php:20 msgid "Unable to change your password" diff --git a/l10n/eu/core.po b/l10n/eu/core.po index 610d3d95db..edfc25de83 100644 --- a/l10n/eu/core.po +++ b/l10n/eu/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-09 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 19:24+0000\n" -"Last-Translator: asieriko \n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -31,58 +31,62 @@ msgstr "Ez dago gehitzeko kategoriarik?" msgid "This category already exists: " msgstr "Kategoria hau dagoeneko existitzen da:" -#: js/js.js:214 templates/layout.user.php:54 templates/layout.user.php:55 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Ezarpenak" -#: js/js.js:599 +#: js/js.js:645 msgid "January" msgstr "Urtarrila" -#: js/js.js:599 +#: js/js.js:645 msgid "February" msgstr "Otsaila" -#: js/js.js:599 +#: js/js.js:645 msgid "March" msgstr "Martxoa" -#: js/js.js:599 +#: js/js.js:645 msgid "April" msgstr "Apirila" -#: js/js.js:599 +#: js/js.js:645 msgid "May" msgstr "Maiatza" -#: js/js.js:599 +#: js/js.js:645 msgid "June" msgstr "Ekaina" -#: js/js.js:600 +#: js/js.js:646 msgid "July" msgstr "Uztaila" -#: js/js.js:600 +#: js/js.js:646 msgid "August" msgstr "Abuztua" -#: js/js.js:600 +#: js/js.js:646 msgid "September" msgstr "Iraila" -#: js/js.js:600 +#: js/js.js:646 msgid "October" msgstr "Urria" -#: js/js.js:600 +#: js/js.js:646 msgid "November" msgstr "Azaroa" -#: js/js.js:600 +#: js/js.js:646 msgid "December" msgstr "Abendua" +#: js/oc-dialogs.js:123 +msgid "Choose" +msgstr "Aukeratu" + #: js/oc-dialogs.js:143 js/oc-dialogs.js:163 msgid "Cancel" msgstr "Ezeztatu" @@ -103,10 +107,119 @@ msgstr "Ados" msgid "No categories selected for deletion." msgstr "Ez da ezabatzeko kategoriarik hautatu." -#: js/oc-vcategories.js:68 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 +#: js/share.js:501 msgid "Error" msgstr "Errorea" +#: js/share.js:103 +msgid "Error while sharing" +msgstr "Errore bat egon da elkarbanatzean" + +#: js/share.js:114 +msgid "Error while unsharing" +msgstr "Errore bat egon da elkarbanaketa desegitean" + +#: js/share.js:121 +msgid "Error while changing permissions" +msgstr "Errore bat egon da baimenak aldatzean" + +#: js/share.js:130 +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" +msgstr "" + +#: js/share.js:132 +msgid "Shared with you by" +msgstr "" + +#: js/share.js:137 +msgid "Share with" +msgstr "Elkarbanatu honekin" + +#: js/share.js:142 +msgid "Share with link" +msgstr "Elkarbanatu lotura batekin" + +#: js/share.js:143 +msgid "Password protect" +msgstr "Babestu pasahitzarekin" + +#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +msgid "Password" +msgstr "Pasahitza" + +#: js/share.js:152 +msgid "Set expiration date" +msgstr "Ezarri muga data" + +#: js/share.js:153 +msgid "Expiration date" +msgstr "Muga data" + +#: js/share.js:185 +msgid "Share via email:" +msgstr "" + +#: js/share.js:187 +msgid "No people found" +msgstr "Ez da inor aurkitu" + +#: js/share.js:214 +msgid "Resharing is not allowed" +msgstr "Berriz elkarbanatzea ez dago baimendua" + +#: js/share.js:250 +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" +msgstr "" + +#: js/share.js:271 +msgid "Unshare" +msgstr "Ez elkarbanatu" + +#: js/share.js:279 +msgid "can edit" +msgstr "editatu dezake" + +#: js/share.js:281 +msgid "access control" +msgstr "sarrera kontrola" + +#: js/share.js:284 +msgid "create" +msgstr "sortu" + +#: js/share.js:287 +msgid "update" +msgstr "eguneratu" + +#: js/share.js:290 +msgid "delete" +msgstr "ezabatu" + +#: js/share.js:293 +msgid "share" +msgstr "elkarbanatu" + +#: js/share.js:317 js/share.js:476 +msgid "Password protected" +msgstr "Pasahitzarekin babestuta" + +#: js/share.js:489 +msgid "Error unsetting expiration date" +msgstr "" + +#: js/share.js:501 +msgid "Error setting expiration date" +msgstr "Errore bat egon da muga data ezartzean" + #: lostpassword/index.php:26 msgid "ownCloud password reset" msgstr "ownCloud-en pasahitza berrezarri" @@ -192,10 +305,6 @@ msgstr "Gehitu" msgid "Create an admin account" msgstr "Sortu kudeatzaile kontu bat" -#: templates/installation.php:30 templates/login.php:13 -msgid "Password" -msgstr "Pasahitza" - #: templates/installation.php:36 msgid "Advanced" msgstr "Aurreratua" @@ -241,7 +350,7 @@ msgstr "Bukatu konfigurazioa" msgid "web services under your control" msgstr "web zerbitzuak zure kontrolpean" -#: templates/layout.user.php:39 +#: templates/layout.user.php:34 msgid "Log out" msgstr "Saioa bukatu" diff --git a/l10n/eu/files.po b/l10n/eu/files.po index 2cd338beb7..b0f6fdddb2 100644 --- a/l10n/eu/files.po +++ b/l10n/eu/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-09 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 19:20+0000\n" -"Last-Translator: asieriko \n" +"POT-Creation-Date: 2012-09-26 13:19+0200\n" +"PO-Revision-Date: 2012-09-26 11:20+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -61,39 +61,43 @@ msgstr "Ez partekatu" msgid "Delete" msgstr "Ezabatu" -#: js/filelist.js:186 js/filelist.js:188 +#: js/fileactions.js:182 +msgid "Rename" +msgstr "" + +#: js/filelist.js:190 js/filelist.js:192 msgid "already exists" msgstr "dagoeneko existitzen da" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "replace" msgstr "ordeztu" -#: js/filelist.js:186 +#: js/filelist.js:190 msgid "suggest name" msgstr "aholkatu izena" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "cancel" msgstr "ezeztatu" -#: js/filelist.js:235 js/filelist.js:237 +#: js/filelist.js:239 js/filelist.js:241 msgid "replaced" msgstr "ordeztua" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:239 js/filelist.js:241 js/filelist.js:273 js/filelist.js:275 msgid "undo" msgstr "desegin" -#: js/filelist.js:237 +#: js/filelist.js:241 msgid "with" msgstr "honekin" -#: js/filelist.js:268 +#: js/filelist.js:273 msgid "unshared" msgstr "Ez partekatuta" -#: js/filelist.js:270 +#: js/filelist.js:275 msgid "deleted" msgstr "ezabatuta" @@ -109,47 +113,107 @@ msgstr "Ezin da zure fitxategia igo, karpeta bat da edo 0 byt ditu" msgid "Upload Error" msgstr "Igotzean errore bat suertatu da" -#: js/files.js:236 js/files.js:341 js/files.js:370 +#: js/files.js:236 js/files.js:341 js/files.js:371 msgid "Pending" msgstr "Zain" -#: js/files.js:355 +#: js/files.js:256 +msgid "1 file uploading" +msgstr "" + +#: js/files.js:259 js/files.js:304 js/files.js:319 +msgid "files uploading" +msgstr "" + +#: js/files.js:322 js/files.js:355 msgid "Upload cancelled." msgstr "Igoera ezeztatuta" -#: js/files.js:423 +#: js/files.js:424 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Fitxategien igoera martxan da. Orria orain uzteak igoera ezeztatutko du." -#: js/files.js:493 +#: js/files.js:494 msgid "Invalid name, '/' is not allowed." msgstr "Baliogabeko izena, '/' ezin da erabili. " -#: js/files.js:746 templates/index.php:56 +#: js/files.js:667 +msgid "files scanned" +msgstr "fitxategiak eskaneatuta" + +#: js/files.js:675 +msgid "error while scanning" +msgstr "errore bat egon da eskaneatzen zen bitartean" + +#: js/files.js:748 templates/index.php:48 +msgid "Name" +msgstr "Izena" + +#: js/files.js:749 templates/index.php:56 msgid "Size" msgstr "Tamaina" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:750 templates/index.php:58 msgid "Modified" msgstr "Aldatuta" -#: js/files.js:774 +#: js/files.js:777 msgid "folder" msgstr "karpeta" -#: js/files.js:776 +#: js/files.js:779 msgid "folders" msgstr "Karpetak" -#: js/files.js:784 +#: js/files.js:787 msgid "file" msgstr "fitxategia" -#: js/files.js:786 +#: js/files.js:789 msgid "files" msgstr "fitxategiak" +#: js/files.js:833 +msgid "seconds ago" +msgstr "" + +#: js/files.js:834 +msgid "minute ago" +msgstr "" + +#: js/files.js:835 +msgid "minutes ago" +msgstr "" + +#: js/files.js:838 +msgid "today" +msgstr "" + +#: js/files.js:839 +msgid "yesterday" +msgstr "" + +#: js/files.js:840 +msgid "days ago" +msgstr "" + +#: js/files.js:841 +msgid "last month" +msgstr "" + +#: js/files.js:843 +msgid "months ago" +msgstr "" + +#: js/files.js:844 +msgid "last year" +msgstr "" + +#: js/files.js:845 +msgid "years ago" +msgstr "" + #: templates/admin.php:5 msgid "File handling" msgstr "Fitxategien kudeaketa" @@ -198,7 +262,7 @@ msgstr "Karpeta" msgid "From url" msgstr "URLtik" -#: templates/index.php:21 +#: templates/index.php:20 msgid "Upload" msgstr "Igo" @@ -210,10 +274,6 @@ msgstr "Ezeztatu igoera" msgid "Nothing in here. Upload something!" msgstr "Ez dago ezer. Igo zerbait!" -#: templates/index.php:48 -msgid "Name" -msgstr "Izena" - #: templates/index.php:50 msgid "Share" msgstr "Elkarbanatu" diff --git a/l10n/eu/files_sharing.po b/l10n/eu/files_sharing.po index 162fca4372..1b97a4c57e 100644 --- a/l10n/eu/files_sharing.po +++ b/l10n/eu/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-04 02:01+0200\n" -"PO-Revision-Date: 2012-09-03 13:00+0000\n" +"POT-Creation-Date: 2012-09-25 02:02+0200\n" +"PO-Revision-Date: 2012-09-24 13:26+0000\n" "Last-Translator: asieriko \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -26,14 +26,24 @@ msgstr "Pasahitza" msgid "Submit" msgstr "Bidali" -#: templates/public.php:9 templates/public.php:19 +#: templates/public.php:9 +#, php-format +msgid "%s shared the folder %s with you" +msgstr "%sk zurekin %s karpeta elkarbanatu du" + +#: templates/public.php:11 +#, php-format +msgid "%s shared the file %s with you" +msgstr "%sk zurekin %s fitxategia elkarbanatu du" + +#: templates/public.php:14 templates/public.php:30 msgid "Download" msgstr "Deskargatu" -#: templates/public.php:18 +#: templates/public.php:29 msgid "No preview available for" msgstr "Ez dago aurrebista eskuragarririk hauentzat " -#: templates/public.php:25 +#: templates/public.php:37 msgid "web services under your control" msgstr "web zerbitzuak zure kontrolpean" diff --git a/l10n/eu/files_versions.po b/l10n/eu/files_versions.po index c77fa0cef9..471bd1ee58 100644 --- a/l10n/eu/files_versions.po +++ b/l10n/eu/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" -"PO-Revision-Date: 2012-09-17 00:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-25 02:02+0200\n" +"PO-Revision-Date: 2012-09-24 13:25+0000\n" +"Last-Translator: asieriko \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,6 +22,10 @@ msgstr "" msgid "Expire all versions" msgstr "Iraungi bertsio guztiak" +#: js/versions.js:16 +msgid "History" +msgstr "Historia" + #: templates/settings-personal.php:4 msgid "Versions" msgstr "Bertsioak" @@ -32,8 +36,8 @@ msgstr "Honek zure fitxategien bertsio guztiak ezabatuko ditu" #: templates/settings.php:3 msgid "Files Versioning" -msgstr "" +msgstr "Fitxategien Bertsioak" #: templates/settings.php:4 msgid "Enable" -msgstr "" +msgstr "Gaitu" diff --git a/l10n/eu/settings.po b/l10n/eu/settings.po index 7e6f4e8d9c..6b7e9ae2ff 100644 --- a/l10n/eu/settings.po +++ b/l10n/eu/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:03+0200\n" -"PO-Revision-Date: 2012-09-17 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-21 02:02+0200\n" +"PO-Revision-Date: 2012-09-20 09:46+0000\n" +"Last-Translator: asieriko \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -37,7 +37,7 @@ msgstr "Taldea dagoeneko existitzenda" msgid "Unable to add group" msgstr "Ezin izan da taldea gehitu" -#: ajax/enableapp.php:13 +#: ajax/enableapp.php:14 msgid "Could not enable app. " msgstr "Ezin izan da aplikazioa gaitu." @@ -79,15 +79,11 @@ msgstr "Ezin izan da erabiltzailea %s taldera gehitu" msgid "Unable to remove user from group %s" msgstr "Ezin izan da erabiltzailea %s taldetik ezabatu" -#: js/apps.js:18 -msgid "Error" -msgstr "Errorea" - -#: js/apps.js:39 js/apps.js:73 +#: js/apps.js:27 js/apps.js:61 msgid "Disable" msgstr "Ez-gaitu" -#: js/apps.js:39 js/apps.js:62 +#: js/apps.js:27 js/apps.js:50 msgid "Enable" msgstr "Gaitu" @@ -118,7 +114,7 @@ msgstr "Cron" #: templates/admin.php:37 msgid "Execute one task with each page loaded" -msgstr "" +msgstr "Exekutatu zeregin bat orri karga bakoitzean" #: templates/admin.php:43 msgid "" @@ -130,11 +126,11 @@ msgstr "cron.php webcron zerbitzu batean erregistratua dago. Deitu cron.php orri msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "" +msgstr "Erabili sistemaren cron zerbitzua. Deitu cron.php fitxategia owncloud karpetan minuturo sistemaren cron lan baten bidez." #: templates/admin.php:56 msgid "Sharing" -msgstr "" +msgstr "Partekatzea" #: templates/admin.php:61 msgid "Enable Share API" @@ -227,12 +223,9 @@ msgid "Answer" msgstr "Erantzun" #: templates/personal.php:8 -msgid "You use" -msgstr "Erabiltzen ari zara " - -#: templates/personal.php:8 -msgid "of the available" -msgstr "eta guztira erabil dezakezu " +#, php-format +msgid "You have used %s of the available %s" +msgstr "Eskuragarri dituzun %setik %s erabili duzu" #: templates/personal.php:12 msgid "Desktop and Mobile Syncing Clients" @@ -243,8 +236,8 @@ msgid "Download" msgstr "Deskargatu" #: templates/personal.php:19 -msgid "Your password got changed" -msgstr "Zure pasahitza aldatu da" +msgid "Your password was changed" +msgstr "Zere pasahitza aldatu da" #: templates/personal.php:20 msgid "Unable to change your password" diff --git a/l10n/eu_ES/core.po b/l10n/eu_ES/core.po index b3baf2cb39..96133924d3 100644 --- a/l10n/eu_ES/core.po +++ b/l10n/eu_ES/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" "MIME-Version: 1.0\n" @@ -29,58 +29,62 @@ msgstr "" msgid "This category already exists: " msgstr "" -#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "" -#: js/js.js:593 +#: js/js.js:645 msgid "January" msgstr "" -#: js/js.js:593 +#: js/js.js:645 msgid "February" msgstr "" -#: js/js.js:593 +#: js/js.js:645 msgid "March" msgstr "" -#: js/js.js:593 +#: js/js.js:645 msgid "April" msgstr "" -#: js/js.js:593 +#: js/js.js:645 msgid "May" msgstr "" -#: js/js.js:593 +#: js/js.js:645 msgid "June" msgstr "" -#: js/js.js:594 +#: js/js.js:646 msgid "July" msgstr "" -#: js/js.js:594 +#: js/js.js:646 msgid "August" msgstr "" -#: js/js.js:594 +#: js/js.js:646 msgid "September" msgstr "" -#: js/js.js:594 +#: js/js.js:646 msgid "October" msgstr "" -#: js/js.js:594 +#: js/js.js:646 msgid "November" msgstr "" -#: js/js.js:594 +#: js/js.js:646 msgid "December" msgstr "" +#: js/oc-dialogs.js:123 +msgid "Choose" +msgstr "" + #: js/oc-dialogs.js:143 js/oc-dialogs.js:163 msgid "Cancel" msgstr "" @@ -101,10 +105,119 @@ msgstr "" msgid "No categories selected for deletion." msgstr "" -#: js/oc-vcategories.js:68 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 +#: js/share.js:501 msgid "Error" msgstr "" +#: js/share.js:103 +msgid "Error while sharing" +msgstr "" + +#: js/share.js:114 +msgid "Error while unsharing" +msgstr "" + +#: js/share.js:121 +msgid "Error while changing permissions" +msgstr "" + +#: js/share.js:130 +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" +msgstr "" + +#: js/share.js:132 +msgid "Shared with you by" +msgstr "" + +#: js/share.js:137 +msgid "Share with" +msgstr "" + +#: js/share.js:142 +msgid "Share with link" +msgstr "" + +#: js/share.js:143 +msgid "Password protect" +msgstr "" + +#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +msgid "Password" +msgstr "" + +#: js/share.js:152 +msgid "Set expiration date" +msgstr "" + +#: js/share.js:153 +msgid "Expiration date" +msgstr "" + +#: js/share.js:185 +msgid "Share via email:" +msgstr "" + +#: js/share.js:187 +msgid "No people found" +msgstr "" + +#: js/share.js:214 +msgid "Resharing is not allowed" +msgstr "" + +#: js/share.js:250 +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" +msgstr "" + +#: js/share.js:271 +msgid "Unshare" +msgstr "" + +#: js/share.js:279 +msgid "can edit" +msgstr "" + +#: js/share.js:281 +msgid "access control" +msgstr "" + +#: js/share.js:284 +msgid "create" +msgstr "" + +#: js/share.js:287 +msgid "update" +msgstr "" + +#: js/share.js:290 +msgid "delete" +msgstr "" + +#: js/share.js:293 +msgid "share" +msgstr "" + +#: js/share.js:317 js/share.js:476 +msgid "Password protected" +msgstr "" + +#: js/share.js:489 +msgid "Error unsetting expiration date" +msgstr "" + +#: js/share.js:501 +msgid "Error setting expiration date" +msgstr "" + #: lostpassword/index.php:26 msgid "ownCloud password reset" msgstr "" @@ -190,10 +303,6 @@ msgstr "" msgid "Create an admin account" msgstr "" -#: templates/installation.php:30 templates/login.php:13 -msgid "Password" -msgstr "" - #: templates/installation.php:36 msgid "Advanced" msgstr "" @@ -235,11 +344,11 @@ msgstr "" msgid "Finish setup" msgstr "" -#: templates/layout.guest.php:42 +#: templates/layout.guest.php:36 msgid "web services under your control" msgstr "" -#: templates/layout.user.php:45 +#: templates/layout.user.php:34 msgid "Log out" msgstr "" diff --git a/l10n/eu_ES/files.po b/l10n/eu_ES/files.po index 0b6110c70d..e697b9cd62 100644 --- a/l10n/eu_ES/files.po +++ b/l10n/eu_ES/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-26 13:19+0200\n" +"PO-Revision-Date: 2012-09-26 11:20+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" "MIME-Version: 1.0\n" @@ -59,39 +59,43 @@ msgstr "" msgid "Delete" msgstr "" -#: js/filelist.js:186 js/filelist.js:188 +#: js/fileactions.js:182 +msgid "Rename" +msgstr "" + +#: js/filelist.js:190 js/filelist.js:192 msgid "already exists" msgstr "" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "replace" msgstr "" -#: js/filelist.js:186 +#: js/filelist.js:190 msgid "suggest name" msgstr "" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "cancel" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 +#: js/filelist.js:239 js/filelist.js:241 msgid "replaced" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:239 js/filelist.js:241 js/filelist.js:273 js/filelist.js:275 msgid "undo" msgstr "" -#: js/filelist.js:237 +#: js/filelist.js:241 msgid "with" msgstr "" -#: js/filelist.js:268 +#: js/filelist.js:273 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:275 msgid "deleted" msgstr "" @@ -107,47 +111,107 @@ msgstr "" msgid "Upload Error" msgstr "" -#: js/files.js:236 js/files.js:341 js/files.js:370 +#: js/files.js:236 js/files.js:341 js/files.js:371 msgid "Pending" msgstr "" -#: js/files.js:355 +#: js/files.js:256 +msgid "1 file uploading" +msgstr "" + +#: js/files.js:259 js/files.js:304 js/files.js:319 +msgid "files uploading" +msgstr "" + +#: js/files.js:322 js/files.js:355 msgid "Upload cancelled." msgstr "" -#: js/files.js:423 +#: js/files.js:424 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:493 +#: js/files.js:494 msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:667 +msgid "files scanned" +msgstr "" + +#: js/files.js:675 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:48 +msgid "Name" +msgstr "" + +#: js/files.js:749 templates/index.php:56 msgid "Size" msgstr "" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:750 templates/index.php:58 msgid "Modified" msgstr "" -#: js/files.js:774 +#: js/files.js:777 msgid "folder" msgstr "" -#: js/files.js:776 +#: js/files.js:779 msgid "folders" msgstr "" -#: js/files.js:784 +#: js/files.js:787 msgid "file" msgstr "" -#: js/files.js:786 +#: js/files.js:789 msgid "files" msgstr "" +#: js/files.js:833 +msgid "seconds ago" +msgstr "" + +#: js/files.js:834 +msgid "minute ago" +msgstr "" + +#: js/files.js:835 +msgid "minutes ago" +msgstr "" + +#: js/files.js:838 +msgid "today" +msgstr "" + +#: js/files.js:839 +msgid "yesterday" +msgstr "" + +#: js/files.js:840 +msgid "days ago" +msgstr "" + +#: js/files.js:841 +msgid "last month" +msgstr "" + +#: js/files.js:843 +msgid "months ago" +msgstr "" + +#: js/files.js:844 +msgid "last year" +msgstr "" + +#: js/files.js:845 +msgid "years ago" +msgstr "" + #: templates/admin.php:5 msgid "File handling" msgstr "" @@ -196,7 +260,7 @@ msgstr "" msgid "From url" msgstr "" -#: templates/index.php:21 +#: templates/index.php:20 msgid "Upload" msgstr "" @@ -208,10 +272,6 @@ msgstr "" msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:48 -msgid "Name" -msgstr "" - #: templates/index.php:50 msgid "Share" msgstr "" diff --git a/l10n/eu_ES/files_sharing.po b/l10n/eu_ES/files_sharing.po index da8e6d2366..73be8ca650 100644 --- a/l10n/eu_ES/files_sharing.po +++ b/l10n/eu_ES/files_sharing.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-22 01:14+0200\n" +"PO-Revision-Date: 2012-09-21 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: eu_ES\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 msgid "Password" @@ -25,14 +25,24 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 templates/public.php:19 +#: templates/public.php:9 +#, php-format +msgid "%s shared the folder %s with you" +msgstr "" + +#: templates/public.php:11 +#, php-format +msgid "%s shared the file %s with you" +msgstr "" + +#: templates/public.php:14 templates/public.php:30 msgid "Download" msgstr "" -#: templates/public.php:18 +#: templates/public.php:29 msgid "No preview available for" msgstr "" -#: templates/public.php:23 +#: templates/public.php:37 msgid "web services under your control" msgstr "" diff --git a/l10n/eu_ES/files_versions.po b/l10n/eu_ES/files_versions.po index b86d5a6e68..522299c7a2 100644 --- a/l10n/eu_ES/files_versions.po +++ b/l10n/eu_ES/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" -"PO-Revision-Date: 2012-09-17 00:04+0000\n" +"POT-Creation-Date: 2012-09-22 01:14+0200\n" +"PO-Revision-Date: 2012-09-21 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" "MIME-Version: 1.0\n" @@ -21,6 +21,10 @@ msgstr "" msgid "Expire all versions" msgstr "" +#: js/versions.js:16 +msgid "History" +msgstr "" + #: templates/settings-personal.php:4 msgid "Versions" msgstr "" diff --git a/l10n/eu_ES/settings.po b/l10n/eu_ES/settings.po index 1d02c170d7..237b2b7f9a 100644 --- a/l10n/eu_ES/settings.po +++ b/l10n/eu_ES/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:03+0200\n" -"PO-Revision-Date: 2012-09-17 00:03+0000\n" +"POT-Creation-Date: 2012-09-19 02:02+0200\n" +"PO-Revision-Date: 2012-09-19 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" "MIME-Version: 1.0\n" @@ -34,7 +34,7 @@ msgstr "" msgid "Unable to add group" msgstr "" -#: ajax/enableapp.php:13 +#: ajax/enableapp.php:14 msgid "Could not enable app. " msgstr "" @@ -76,15 +76,11 @@ msgstr "" msgid "Unable to remove user from group %s" msgstr "" -#: js/apps.js:18 -msgid "Error" -msgstr "" - -#: js/apps.js:39 js/apps.js:73 +#: js/apps.js:27 js/apps.js:61 msgid "Disable" msgstr "" -#: js/apps.js:39 js/apps.js:62 +#: js/apps.js:27 js/apps.js:50 msgid "Enable" msgstr "" @@ -224,11 +220,8 @@ msgid "Answer" msgstr "" #: templates/personal.php:8 -msgid "You use" -msgstr "" - -#: templates/personal.php:8 -msgid "of the available" +#, php-format +msgid "You have used %s of the available %s" msgstr "" #: templates/personal.php:12 @@ -240,7 +233,7 @@ msgid "Download" msgstr "" #: templates/personal.php:19 -msgid "Your password got changed" +msgid "Your password was changed" msgstr "" #: templates/personal.php:20 diff --git a/l10n/fa/core.po b/l10n/fa/core.po index df53177524..18c5c3f42c 100644 --- a/l10n/fa/core.po +++ b/l10n/fa/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -30,58 +30,62 @@ msgstr "آیا گروه دیگری برای افزودن ندارید" msgid "This category already exists: " msgstr "این گروه از قبل اضافه شده" -#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "تنظیمات" -#: js/js.js:593 +#: js/js.js:645 msgid "January" msgstr "ژانویه" -#: js/js.js:593 +#: js/js.js:645 msgid "February" msgstr "فبریه" -#: js/js.js:593 +#: js/js.js:645 msgid "March" msgstr "مارس" -#: js/js.js:593 +#: js/js.js:645 msgid "April" msgstr "آوریل" -#: js/js.js:593 +#: js/js.js:645 msgid "May" msgstr "می" -#: js/js.js:593 +#: js/js.js:645 msgid "June" msgstr "ژوئن" -#: js/js.js:594 +#: js/js.js:646 msgid "July" msgstr "جولای" -#: js/js.js:594 +#: js/js.js:646 msgid "August" msgstr "آگوست" -#: js/js.js:594 +#: js/js.js:646 msgid "September" msgstr "سپتامبر" -#: js/js.js:594 +#: js/js.js:646 msgid "October" msgstr "اکتبر" -#: js/js.js:594 +#: js/js.js:646 msgid "November" msgstr "نوامبر" -#: js/js.js:594 +#: js/js.js:646 msgid "December" msgstr "دسامبر" +#: js/oc-dialogs.js:123 +msgid "Choose" +msgstr "" + #: js/oc-dialogs.js:143 js/oc-dialogs.js:163 msgid "Cancel" msgstr "منصرف شدن" @@ -102,10 +106,119 @@ msgstr "قبول" msgid "No categories selected for deletion." msgstr "هیج دسته ای برای پاک شدن انتخاب نشده است" -#: js/oc-vcategories.js:68 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 +#: js/share.js:501 msgid "Error" msgstr "خطا" +#: js/share.js:103 +msgid "Error while sharing" +msgstr "" + +#: js/share.js:114 +msgid "Error while unsharing" +msgstr "" + +#: js/share.js:121 +msgid "Error while changing permissions" +msgstr "" + +#: js/share.js:130 +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" +msgstr "" + +#: js/share.js:132 +msgid "Shared with you by" +msgstr "" + +#: js/share.js:137 +msgid "Share with" +msgstr "" + +#: js/share.js:142 +msgid "Share with link" +msgstr "" + +#: js/share.js:143 +msgid "Password protect" +msgstr "" + +#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +msgid "Password" +msgstr "گذرواژه" + +#: js/share.js:152 +msgid "Set expiration date" +msgstr "" + +#: js/share.js:153 +msgid "Expiration date" +msgstr "" + +#: js/share.js:185 +msgid "Share via email:" +msgstr "" + +#: js/share.js:187 +msgid "No people found" +msgstr "" + +#: js/share.js:214 +msgid "Resharing is not allowed" +msgstr "" + +#: js/share.js:250 +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" +msgstr "" + +#: js/share.js:271 +msgid "Unshare" +msgstr "" + +#: js/share.js:279 +msgid "can edit" +msgstr "" + +#: js/share.js:281 +msgid "access control" +msgstr "" + +#: js/share.js:284 +msgid "create" +msgstr "" + +#: js/share.js:287 +msgid "update" +msgstr "" + +#: js/share.js:290 +msgid "delete" +msgstr "" + +#: js/share.js:293 +msgid "share" +msgstr "" + +#: js/share.js:317 js/share.js:476 +msgid "Password protected" +msgstr "" + +#: js/share.js:489 +msgid "Error unsetting expiration date" +msgstr "" + +#: js/share.js:501 +msgid "Error setting expiration date" +msgstr "" + #: lostpassword/index.php:26 msgid "ownCloud password reset" msgstr "پسورد ابرهای شما تغییرکرد" @@ -191,10 +304,6 @@ msgstr "افزودن" msgid "Create an admin account" msgstr "لطفا یک شناسه برای مدیر بسازید" -#: templates/installation.php:30 templates/login.php:13 -msgid "Password" -msgstr "گذرواژه" - #: templates/installation.php:36 msgid "Advanced" msgstr "حرفه ای" @@ -236,11 +345,11 @@ msgstr "هاست پایگاه داده" msgid "Finish setup" msgstr "اتمام نصب" -#: templates/layout.guest.php:42 +#: templates/layout.guest.php:36 msgid "web services under your control" msgstr "سرویس وب تحت کنترل شما" -#: templates/layout.user.php:45 +#: templates/layout.user.php:34 msgid "Log out" msgstr "خروج" diff --git a/l10n/fa/files.po b/l10n/fa/files.po index 37b2cc70c3..c5f1da76fe 100644 --- a/l10n/fa/files.po +++ b/l10n/fa/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-26 13:19+0200\n" +"PO-Revision-Date: 2012-09-26 11:20+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -62,39 +62,43 @@ msgstr "" msgid "Delete" msgstr "پاک کردن" -#: js/filelist.js:186 js/filelist.js:188 +#: js/fileactions.js:182 +msgid "Rename" +msgstr "" + +#: js/filelist.js:190 js/filelist.js:192 msgid "already exists" msgstr "وجود دارد" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "replace" msgstr "جایگزین" -#: js/filelist.js:186 +#: js/filelist.js:190 msgid "suggest name" msgstr "" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "cancel" msgstr "لغو" -#: js/filelist.js:235 js/filelist.js:237 +#: js/filelist.js:239 js/filelist.js:241 msgid "replaced" msgstr "جایگزین‌شده" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:239 js/filelist.js:241 js/filelist.js:273 js/filelist.js:275 msgid "undo" msgstr "بازگشت" -#: js/filelist.js:237 +#: js/filelist.js:241 msgid "with" msgstr "همراه" -#: js/filelist.js:268 +#: js/filelist.js:273 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:275 msgid "deleted" msgstr "حذف شده" @@ -110,47 +114,107 @@ msgstr "ناتوان در بارگذاری یا فایل یک پوشه است ی msgid "Upload Error" msgstr "خطا در بار گذاری" -#: js/files.js:236 js/files.js:341 js/files.js:370 +#: js/files.js:236 js/files.js:341 js/files.js:371 msgid "Pending" msgstr "در انتظار" -#: js/files.js:355 +#: js/files.js:256 +msgid "1 file uploading" +msgstr "" + +#: js/files.js:259 js/files.js:304 js/files.js:319 +msgid "files uploading" +msgstr "" + +#: js/files.js:322 js/files.js:355 msgid "Upload cancelled." msgstr "بار گذاری لغو شد" -#: js/files.js:423 +#: js/files.js:424 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:493 +#: js/files.js:494 msgid "Invalid name, '/' is not allowed." msgstr "نام نامناسب '/' غیرفعال است" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:667 +msgid "files scanned" +msgstr "" + +#: js/files.js:675 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:48 +msgid "Name" +msgstr "نام" + +#: js/files.js:749 templates/index.php:56 msgid "Size" msgstr "اندازه" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:750 templates/index.php:58 msgid "Modified" msgstr "تغییر یافته" -#: js/files.js:774 +#: js/files.js:777 msgid "folder" msgstr "پوشه" -#: js/files.js:776 +#: js/files.js:779 msgid "folders" msgstr "پوشه ها" -#: js/files.js:784 +#: js/files.js:787 msgid "file" msgstr "پرونده" -#: js/files.js:786 +#: js/files.js:789 msgid "files" msgstr "پرونده ها" +#: js/files.js:833 +msgid "seconds ago" +msgstr "" + +#: js/files.js:834 +msgid "minute ago" +msgstr "" + +#: js/files.js:835 +msgid "minutes ago" +msgstr "" + +#: js/files.js:838 +msgid "today" +msgstr "" + +#: js/files.js:839 +msgid "yesterday" +msgstr "" + +#: js/files.js:840 +msgid "days ago" +msgstr "" + +#: js/files.js:841 +msgid "last month" +msgstr "" + +#: js/files.js:843 +msgid "months ago" +msgstr "" + +#: js/files.js:844 +msgid "last year" +msgstr "" + +#: js/files.js:845 +msgid "years ago" +msgstr "" + #: templates/admin.php:5 msgid "File handling" msgstr "اداره پرونده ها" @@ -199,7 +263,7 @@ msgstr "پوشه" msgid "From url" msgstr "از نشانی" -#: templates/index.php:21 +#: templates/index.php:20 msgid "Upload" msgstr "بارگذاری" @@ -211,10 +275,6 @@ msgstr "متوقف کردن بار گذاری" msgid "Nothing in here. Upload something!" msgstr "اینجا هیچ چیز نیست." -#: templates/index.php:48 -msgid "Name" -msgstr "نام" - #: templates/index.php:50 msgid "Share" msgstr "به اشتراک گذاری" diff --git a/l10n/fa/files_sharing.po b/l10n/fa/files_sharing.po index 84f1a537d3..f7b3799df1 100644 --- a/l10n/fa/files_sharing.po +++ b/l10n/fa/files_sharing.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-22 01:14+0200\n" +"PO-Revision-Date: 2012-09-21 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: fa\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: templates/authenticate.php:4 msgid "Password" @@ -26,14 +26,24 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 templates/public.php:19 +#: templates/public.php:9 +#, php-format +msgid "%s shared the folder %s with you" +msgstr "" + +#: templates/public.php:11 +#, php-format +msgid "%s shared the file %s with you" +msgstr "" + +#: templates/public.php:14 templates/public.php:30 msgid "Download" msgstr "" -#: templates/public.php:18 +#: templates/public.php:29 msgid "No preview available for" msgstr "" -#: templates/public.php:23 +#: templates/public.php:37 msgid "web services under your control" msgstr "" diff --git a/l10n/fa/files_versions.po b/l10n/fa/files_versions.po index 21aa2b6701..b7da17a817 100644 --- a/l10n/fa/files_versions.po +++ b/l10n/fa/files_versions.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" -"PO-Revision-Date: 2012-09-17 00:04+0000\n" +"POT-Creation-Date: 2012-09-22 01:14+0200\n" +"PO-Revision-Date: 2012-09-21 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -22,6 +22,10 @@ msgstr "" msgid "Expire all versions" msgstr "انقضای تمامی نسخه‌ها" +#: js/versions.js:16 +msgid "History" +msgstr "" + #: templates/settings-personal.php:4 msgid "Versions" msgstr "" diff --git a/l10n/fa/settings.po b/l10n/fa/settings.po index 05cf00feb1..5a1fe1206a 100644 --- a/l10n/fa/settings.po +++ b/l10n/fa/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:03+0200\n" -"PO-Revision-Date: 2012-09-17 00:03+0000\n" +"POT-Creation-Date: 2012-09-19 02:02+0200\n" +"PO-Revision-Date: 2012-09-19 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -36,7 +36,7 @@ msgstr "" msgid "Unable to add group" msgstr "" -#: ajax/enableapp.php:13 +#: ajax/enableapp.php:14 msgid "Could not enable app. " msgstr "" @@ -78,15 +78,11 @@ msgstr "" msgid "Unable to remove user from group %s" msgstr "" -#: js/apps.js:18 -msgid "Error" -msgstr "خطا" - -#: js/apps.js:39 js/apps.js:73 +#: js/apps.js:27 js/apps.js:61 msgid "Disable" msgstr "غیرفعال" -#: js/apps.js:39 js/apps.js:62 +#: js/apps.js:27 js/apps.js:50 msgid "Enable" msgstr "فعال" @@ -226,12 +222,9 @@ msgid "Answer" msgstr "پاسخ" #: templates/personal.php:8 -msgid "You use" -msgstr "شما استفاده می کنید" - -#: templates/personal.php:8 -msgid "of the available" -msgstr "از فعال ها" +#, php-format +msgid "You have used %s of the available %s" +msgstr "" #: templates/personal.php:12 msgid "Desktop and Mobile Syncing Clients" @@ -242,8 +235,8 @@ msgid "Download" msgstr "بارگیری" #: templates/personal.php:19 -msgid "Your password got changed" -msgstr "گذرواژه شما تغییر یافته" +msgid "Your password was changed" +msgstr "" #: templates/personal.php:20 msgid "Unable to change your password" diff --git a/l10n/fi/core.po b/l10n/fi/core.po index 6b84b56072..f44a41d09a 100644 --- a/l10n/fi/core.po +++ b/l10n/fi/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (http://www.transifex.com/projects/p/owncloud/language/fi/)\n" "MIME-Version: 1.0\n" @@ -29,58 +29,62 @@ msgstr "" msgid "This category already exists: " msgstr "" -#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "" -#: js/js.js:593 +#: js/js.js:645 msgid "January" msgstr "" -#: js/js.js:593 +#: js/js.js:645 msgid "February" msgstr "" -#: js/js.js:593 +#: js/js.js:645 msgid "March" msgstr "" -#: js/js.js:593 +#: js/js.js:645 msgid "April" msgstr "" -#: js/js.js:593 +#: js/js.js:645 msgid "May" msgstr "" -#: js/js.js:593 +#: js/js.js:645 msgid "June" msgstr "" -#: js/js.js:594 +#: js/js.js:646 msgid "July" msgstr "" -#: js/js.js:594 +#: js/js.js:646 msgid "August" msgstr "" -#: js/js.js:594 +#: js/js.js:646 msgid "September" msgstr "" -#: js/js.js:594 +#: js/js.js:646 msgid "October" msgstr "" -#: js/js.js:594 +#: js/js.js:646 msgid "November" msgstr "" -#: js/js.js:594 +#: js/js.js:646 msgid "December" msgstr "" +#: js/oc-dialogs.js:123 +msgid "Choose" +msgstr "" + #: js/oc-dialogs.js:143 js/oc-dialogs.js:163 msgid "Cancel" msgstr "" @@ -101,10 +105,119 @@ msgstr "" msgid "No categories selected for deletion." msgstr "" -#: js/oc-vcategories.js:68 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 +#: js/share.js:501 msgid "Error" msgstr "" +#: js/share.js:103 +msgid "Error while sharing" +msgstr "" + +#: js/share.js:114 +msgid "Error while unsharing" +msgstr "" + +#: js/share.js:121 +msgid "Error while changing permissions" +msgstr "" + +#: js/share.js:130 +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" +msgstr "" + +#: js/share.js:132 +msgid "Shared with you by" +msgstr "" + +#: js/share.js:137 +msgid "Share with" +msgstr "" + +#: js/share.js:142 +msgid "Share with link" +msgstr "" + +#: js/share.js:143 +msgid "Password protect" +msgstr "" + +#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +msgid "Password" +msgstr "" + +#: js/share.js:152 +msgid "Set expiration date" +msgstr "" + +#: js/share.js:153 +msgid "Expiration date" +msgstr "" + +#: js/share.js:185 +msgid "Share via email:" +msgstr "" + +#: js/share.js:187 +msgid "No people found" +msgstr "" + +#: js/share.js:214 +msgid "Resharing is not allowed" +msgstr "" + +#: js/share.js:250 +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" +msgstr "" + +#: js/share.js:271 +msgid "Unshare" +msgstr "" + +#: js/share.js:279 +msgid "can edit" +msgstr "" + +#: js/share.js:281 +msgid "access control" +msgstr "" + +#: js/share.js:284 +msgid "create" +msgstr "" + +#: js/share.js:287 +msgid "update" +msgstr "" + +#: js/share.js:290 +msgid "delete" +msgstr "" + +#: js/share.js:293 +msgid "share" +msgstr "" + +#: js/share.js:317 js/share.js:476 +msgid "Password protected" +msgstr "" + +#: js/share.js:489 +msgid "Error unsetting expiration date" +msgstr "" + +#: js/share.js:501 +msgid "Error setting expiration date" +msgstr "" + #: lostpassword/index.php:26 msgid "ownCloud password reset" msgstr "" @@ -190,10 +303,6 @@ msgstr "" msgid "Create an admin account" msgstr "" -#: templates/installation.php:30 templates/login.php:13 -msgid "Password" -msgstr "" - #: templates/installation.php:36 msgid "Advanced" msgstr "" @@ -235,11 +344,11 @@ msgstr "" msgid "Finish setup" msgstr "" -#: templates/layout.guest.php:42 +#: templates/layout.guest.php:36 msgid "web services under your control" msgstr "" -#: templates/layout.user.php:45 +#: templates/layout.user.php:34 msgid "Log out" msgstr "" diff --git a/l10n/fi/files.po b/l10n/fi/files.po index 1d569839df..5f2a86b485 100644 --- a/l10n/fi/files.po +++ b/l10n/fi/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-26 13:19+0200\n" +"PO-Revision-Date: 2012-09-26 11:20+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (http://www.transifex.com/projects/p/owncloud/language/fi/)\n" "MIME-Version: 1.0\n" @@ -59,39 +59,43 @@ msgstr "" msgid "Delete" msgstr "" -#: js/filelist.js:186 js/filelist.js:188 +#: js/fileactions.js:182 +msgid "Rename" +msgstr "" + +#: js/filelist.js:190 js/filelist.js:192 msgid "already exists" msgstr "" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "replace" msgstr "" -#: js/filelist.js:186 +#: js/filelist.js:190 msgid "suggest name" msgstr "" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "cancel" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 +#: js/filelist.js:239 js/filelist.js:241 msgid "replaced" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:239 js/filelist.js:241 js/filelist.js:273 js/filelist.js:275 msgid "undo" msgstr "" -#: js/filelist.js:237 +#: js/filelist.js:241 msgid "with" msgstr "" -#: js/filelist.js:268 +#: js/filelist.js:273 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:275 msgid "deleted" msgstr "" @@ -107,47 +111,107 @@ msgstr "" msgid "Upload Error" msgstr "" -#: js/files.js:236 js/files.js:341 js/files.js:370 +#: js/files.js:236 js/files.js:341 js/files.js:371 msgid "Pending" msgstr "" -#: js/files.js:355 +#: js/files.js:256 +msgid "1 file uploading" +msgstr "" + +#: js/files.js:259 js/files.js:304 js/files.js:319 +msgid "files uploading" +msgstr "" + +#: js/files.js:322 js/files.js:355 msgid "Upload cancelled." msgstr "" -#: js/files.js:423 +#: js/files.js:424 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:493 +#: js/files.js:494 msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:667 +msgid "files scanned" +msgstr "" + +#: js/files.js:675 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:48 +msgid "Name" +msgstr "" + +#: js/files.js:749 templates/index.php:56 msgid "Size" msgstr "" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:750 templates/index.php:58 msgid "Modified" msgstr "" -#: js/files.js:774 +#: js/files.js:777 msgid "folder" msgstr "" -#: js/files.js:776 +#: js/files.js:779 msgid "folders" msgstr "" -#: js/files.js:784 +#: js/files.js:787 msgid "file" msgstr "" -#: js/files.js:786 +#: js/files.js:789 msgid "files" msgstr "" +#: js/files.js:833 +msgid "seconds ago" +msgstr "" + +#: js/files.js:834 +msgid "minute ago" +msgstr "" + +#: js/files.js:835 +msgid "minutes ago" +msgstr "" + +#: js/files.js:838 +msgid "today" +msgstr "" + +#: js/files.js:839 +msgid "yesterday" +msgstr "" + +#: js/files.js:840 +msgid "days ago" +msgstr "" + +#: js/files.js:841 +msgid "last month" +msgstr "" + +#: js/files.js:843 +msgid "months ago" +msgstr "" + +#: js/files.js:844 +msgid "last year" +msgstr "" + +#: js/files.js:845 +msgid "years ago" +msgstr "" + #: templates/admin.php:5 msgid "File handling" msgstr "" @@ -196,7 +260,7 @@ msgstr "" msgid "From url" msgstr "" -#: templates/index.php:21 +#: templates/index.php:20 msgid "Upload" msgstr "" @@ -208,10 +272,6 @@ msgstr "" msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:48 -msgid "Name" -msgstr "" - #: templates/index.php:50 msgid "Share" msgstr "" diff --git a/l10n/fi/files_sharing.po b/l10n/fi/files_sharing.po index 4cee2cd498..fcba73eea4 100644 --- a/l10n/fi/files_sharing.po +++ b/l10n/fi/files_sharing.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-22 01:14+0200\n" +"PO-Revision-Date: 2012-09-21 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (http://www.transifex.com/projects/p/owncloud/language/fi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: fi\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 msgid "Password" @@ -25,14 +25,24 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 templates/public.php:19 +#: templates/public.php:9 +#, php-format +msgid "%s shared the folder %s with you" +msgstr "" + +#: templates/public.php:11 +#, php-format +msgid "%s shared the file %s with you" +msgstr "" + +#: templates/public.php:14 templates/public.php:30 msgid "Download" msgstr "" -#: templates/public.php:18 +#: templates/public.php:29 msgid "No preview available for" msgstr "" -#: templates/public.php:23 +#: templates/public.php:37 msgid "web services under your control" msgstr "" diff --git a/l10n/fi/files_versions.po b/l10n/fi/files_versions.po index 684cdfa5e9..7317ba1f3e 100644 --- a/l10n/fi/files_versions.po +++ b/l10n/fi/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" -"PO-Revision-Date: 2012-09-17 00:04+0000\n" +"POT-Creation-Date: 2012-09-22 01:14+0200\n" +"PO-Revision-Date: 2012-09-21 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (http://www.transifex.com/projects/p/owncloud/language/fi/)\n" "MIME-Version: 1.0\n" @@ -21,6 +21,10 @@ msgstr "" msgid "Expire all versions" msgstr "" +#: js/versions.js:16 +msgid "History" +msgstr "" + #: templates/settings-personal.php:4 msgid "Versions" msgstr "" diff --git a/l10n/fi/settings.po b/l10n/fi/settings.po index 1343234a7d..369ba4da56 100644 --- a/l10n/fi/settings.po +++ b/l10n/fi/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:03+0200\n" -"PO-Revision-Date: 2012-09-17 00:03+0000\n" +"POT-Creation-Date: 2012-09-19 02:02+0200\n" +"PO-Revision-Date: 2012-09-19 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (http://www.transifex.com/projects/p/owncloud/language/fi/)\n" "MIME-Version: 1.0\n" @@ -34,7 +34,7 @@ msgstr "" msgid "Unable to add group" msgstr "" -#: ajax/enableapp.php:13 +#: ajax/enableapp.php:14 msgid "Could not enable app. " msgstr "" @@ -76,15 +76,11 @@ msgstr "" msgid "Unable to remove user from group %s" msgstr "" -#: js/apps.js:18 -msgid "Error" -msgstr "" - -#: js/apps.js:39 js/apps.js:73 +#: js/apps.js:27 js/apps.js:61 msgid "Disable" msgstr "" -#: js/apps.js:39 js/apps.js:62 +#: js/apps.js:27 js/apps.js:50 msgid "Enable" msgstr "" @@ -224,11 +220,8 @@ msgid "Answer" msgstr "" #: templates/personal.php:8 -msgid "You use" -msgstr "" - -#: templates/personal.php:8 -msgid "of the available" +#, php-format +msgid "You have used %s of the available %s" msgstr "" #: templates/personal.php:12 @@ -240,7 +233,7 @@ msgid "Download" msgstr "" #: templates/personal.php:19 -msgid "Your password got changed" +msgid "Your password was changed" msgstr "" #: templates/personal.php:20 diff --git a/l10n/fi_FI/core.po b/l10n/fi_FI/core.po index cbce731369..b7981285b1 100644 --- a/l10n/fi_FI/core.po +++ b/l10n/fi_FI/core.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -35,58 +35,62 @@ msgstr "Ei lisättävää luokkaa?" msgid "This category already exists: " msgstr "Tämä luokka on jo olemassa: " -#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Asetukset" -#: js/js.js:593 +#: js/js.js:645 msgid "January" msgstr "Tammikuu" -#: js/js.js:593 +#: js/js.js:645 msgid "February" msgstr "Helmikuu" -#: js/js.js:593 +#: js/js.js:645 msgid "March" msgstr "Maaliskuu" -#: js/js.js:593 +#: js/js.js:645 msgid "April" msgstr "Huhtikuu" -#: js/js.js:593 +#: js/js.js:645 msgid "May" msgstr "Toukokuu" -#: js/js.js:593 +#: js/js.js:645 msgid "June" msgstr "Kesäkuu" -#: js/js.js:594 +#: js/js.js:646 msgid "July" msgstr "Heinäkuu" -#: js/js.js:594 +#: js/js.js:646 msgid "August" msgstr "Elokuu" -#: js/js.js:594 +#: js/js.js:646 msgid "September" msgstr "Syyskuu" -#: js/js.js:594 +#: js/js.js:646 msgid "October" msgstr "Lokakuu" -#: js/js.js:594 +#: js/js.js:646 msgid "November" msgstr "Marraskuu" -#: js/js.js:594 +#: js/js.js:646 msgid "December" msgstr "Joulukuu" +#: js/oc-dialogs.js:123 +msgid "Choose" +msgstr "Valitse" + #: js/oc-dialogs.js:143 js/oc-dialogs.js:163 msgid "Cancel" msgstr "Peru" @@ -107,10 +111,119 @@ msgstr "Ok" msgid "No categories selected for deletion." msgstr "Luokkia ei valittu poistettavaksi." -#: js/oc-vcategories.js:68 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 +#: js/share.js:501 msgid "Error" msgstr "Virhe" +#: js/share.js:103 +msgid "Error while sharing" +msgstr "" + +#: js/share.js:114 +msgid "Error while unsharing" +msgstr "" + +#: js/share.js:121 +msgid "Error while changing permissions" +msgstr "Virhe oikeuksia muuttaessa" + +#: js/share.js:130 +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" +msgstr "" + +#: js/share.js:132 +msgid "Shared with you by" +msgstr "" + +#: js/share.js:137 +msgid "Share with" +msgstr "" + +#: js/share.js:142 +msgid "Share with link" +msgstr "" + +#: js/share.js:143 +msgid "Password protect" +msgstr "Suojaa salasanalla" + +#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +msgid "Password" +msgstr "Salasana" + +#: js/share.js:152 +msgid "Set expiration date" +msgstr "Aseta päättymispäivä" + +#: js/share.js:153 +msgid "Expiration date" +msgstr "Päättymispäivä" + +#: js/share.js:185 +msgid "Share via email:" +msgstr "" + +#: js/share.js:187 +msgid "No people found" +msgstr "" + +#: js/share.js:214 +msgid "Resharing is not allowed" +msgstr "Jakaminen uudelleen ei ole salittu" + +#: js/share.js:250 +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" +msgstr "" + +#: js/share.js:271 +msgid "Unshare" +msgstr "" + +#: js/share.js:279 +msgid "can edit" +msgstr "voi muokata" + +#: js/share.js:281 +msgid "access control" +msgstr "" + +#: js/share.js:284 +msgid "create" +msgstr "luo" + +#: js/share.js:287 +msgid "update" +msgstr "päivitä" + +#: js/share.js:290 +msgid "delete" +msgstr "poista" + +#: js/share.js:293 +msgid "share" +msgstr "jaa" + +#: js/share.js:317 js/share.js:476 +msgid "Password protected" +msgstr "Salasanasuojattu" + +#: js/share.js:489 +msgid "Error unsetting expiration date" +msgstr "" + +#: js/share.js:501 +msgid "Error setting expiration date" +msgstr "Virhe päättymispäivää asettaessa" + #: lostpassword/index.php:26 msgid "ownCloud password reset" msgstr "ownCloud-salasanan nollaus" @@ -196,10 +309,6 @@ msgstr "Lisää" msgid "Create an admin account" msgstr "Luo ylläpitäjän tunnus" -#: templates/installation.php:30 templates/login.php:13 -msgid "Password" -msgstr "Salasana" - #: templates/installation.php:36 msgid "Advanced" msgstr "Lisäasetukset" @@ -241,11 +350,11 @@ msgstr "Tietokantapalvelin" msgid "Finish setup" msgstr "Viimeistele asennus" -#: templates/layout.guest.php:42 +#: templates/layout.guest.php:36 msgid "web services under your control" msgstr "verkkopalvelut hallinnassasi" -#: templates/layout.user.php:45 +#: templates/layout.user.php:34 msgid "Log out" msgstr "Kirjaudu ulos" diff --git a/l10n/fi_FI/files.po b/l10n/fi_FI/files.po index c642c07ab8..361afe1ce0 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_FI/files.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-27 02:01+0200\n" +"PO-Revision-Date: 2012-09-26 12:21+0000\n" +"Last-Translator: Jiri Grönroos \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -64,39 +64,43 @@ msgstr "" msgid "Delete" msgstr "Poista" -#: js/filelist.js:186 js/filelist.js:188 +#: js/fileactions.js:182 +msgid "Rename" +msgstr "Nimeä uudelleen" + +#: js/filelist.js:190 js/filelist.js:192 msgid "already exists" msgstr "on jo olemassa" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "replace" msgstr "korvaa" -#: js/filelist.js:186 +#: js/filelist.js:190 msgid "suggest name" msgstr "ehdota nimeä" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "cancel" msgstr "peru" -#: js/filelist.js:235 js/filelist.js:237 +#: js/filelist.js:239 js/filelist.js:241 msgid "replaced" msgstr "korvattu" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:239 js/filelist.js:241 js/filelist.js:273 js/filelist.js:275 msgid "undo" msgstr "kumoa" -#: js/filelist.js:237 +#: js/filelist.js:241 msgid "with" msgstr "käyttäen" -#: js/filelist.js:268 +#: js/filelist.js:273 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:275 msgid "deleted" msgstr "poistettu" @@ -112,47 +116,107 @@ msgstr "Tiedoston lähetys epäonnistui, koska sen koko on 0 tavua tai kyseessä msgid "Upload Error" msgstr "Lähetysvirhe." -#: js/files.js:236 js/files.js:341 js/files.js:370 +#: js/files.js:236 js/files.js:341 js/files.js:371 msgid "Pending" msgstr "Odottaa" -#: js/files.js:355 +#: js/files.js:256 +msgid "1 file uploading" +msgstr "" + +#: js/files.js:259 js/files.js:304 js/files.js:319 +msgid "files uploading" +msgstr "" + +#: js/files.js:322 js/files.js:355 msgid "Upload cancelled." msgstr "Lähetys peruttu." -#: js/files.js:423 +#: js/files.js:424 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Tiedoston lähetys on meneillään. Sivulta poistuminen nyt peruu tiedoston lähetyksen." -#: js/files.js:493 +#: js/files.js:494 msgid "Invalid name, '/' is not allowed." msgstr "Virheellinen nimi, merkki '/' ei ole sallittu." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:668 +msgid "files scanned" +msgstr "" + +#: js/files.js:676 +msgid "error while scanning" +msgstr "" + +#: js/files.js:749 templates/index.php:48 +msgid "Name" +msgstr "Nimi" + +#: js/files.js:750 templates/index.php:56 msgid "Size" msgstr "Koko" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:751 templates/index.php:58 msgid "Modified" msgstr "Muutettu" -#: js/files.js:774 +#: js/files.js:778 msgid "folder" msgstr "kansio" -#: js/files.js:776 +#: js/files.js:780 msgid "folders" msgstr "kansiota" -#: js/files.js:784 +#: js/files.js:788 msgid "file" msgstr "tiedosto" -#: js/files.js:786 +#: js/files.js:790 msgid "files" msgstr "tiedostoa" +#: js/files.js:834 +msgid "seconds ago" +msgstr "sekuntia sitten" + +#: js/files.js:835 +msgid "minute ago" +msgstr "minuutti sitten" + +#: js/files.js:836 +msgid "minutes ago" +msgstr "minuuttia sitten" + +#: js/files.js:839 +msgid "today" +msgstr "tänään" + +#: js/files.js:840 +msgid "yesterday" +msgstr "eilen" + +#: js/files.js:841 +msgid "days ago" +msgstr "päivää sitten" + +#: js/files.js:842 +msgid "last month" +msgstr "viime kuussa" + +#: js/files.js:844 +msgid "months ago" +msgstr "kuukautta sitten" + +#: js/files.js:845 +msgid "last year" +msgstr "viime vuonna" + +#: js/files.js:846 +msgid "years ago" +msgstr "vuotta sitten" + #: templates/admin.php:5 msgid "File handling" msgstr "Tiedostonhallinta" @@ -201,7 +265,7 @@ msgstr "Kansio" msgid "From url" msgstr "Verkko-osoitteesta" -#: templates/index.php:21 +#: templates/index.php:20 msgid "Upload" msgstr "Lähetä" @@ -213,10 +277,6 @@ msgstr "Peru lähetys" msgid "Nothing in here. Upload something!" msgstr "Täällä ei ole mitään. Lähetä tänne jotakin!" -#: templates/index.php:48 -msgid "Name" -msgstr "Nimi" - #: templates/index.php:50 msgid "Share" msgstr "Jaa" diff --git a/l10n/fi_FI/files_sharing.po b/l10n/fi_FI/files_sharing.po index f55a452032..8bdb2b410f 100644 --- a/l10n/fi_FI/files_sharing.po +++ b/l10n/fi_FI/files_sharing.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-04 02:01+0200\n" -"PO-Revision-Date: 2012-09-03 15:46+0000\n" -"Last-Translator: teho \n" +"POT-Creation-Date: 2012-09-27 02:01+0200\n" +"PO-Revision-Date: 2012-09-26 12:20+0000\n" +"Last-Translator: Jiri Grönroos \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,14 +27,24 @@ msgstr "Salasana" msgid "Submit" msgstr "Lähetä" -#: templates/public.php:9 templates/public.php:19 +#: templates/public.php:9 +#, php-format +msgid "%s shared the folder %s with you" +msgstr "%s jakoi kansion %s kanssasi" + +#: templates/public.php:11 +#, php-format +msgid "%s shared the file %s with you" +msgstr "%s jakoi tiedoston %s kanssasi" + +#: templates/public.php:14 templates/public.php:30 msgid "Download" msgstr "Lataa" -#: templates/public.php:18 +#: templates/public.php:29 msgid "No preview available for" msgstr "Ei esikatselua kohteelle" -#: templates/public.php:25 +#: templates/public.php:37 msgid "web services under your control" msgstr "verkkopalvelut hallinnassasi" diff --git a/l10n/fi_FI/files_versions.po b/l10n/fi_FI/files_versions.po index 8be1e0f643..ab692d6056 100644 --- a/l10n/fi_FI/files_versions.po +++ b/l10n/fi_FI/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" -"PO-Revision-Date: 2012-09-17 00:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-27 02:01+0200\n" +"PO-Revision-Date: 2012-09-26 12:22+0000\n" +"Last-Translator: Jiri Grönroos \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,6 +22,10 @@ msgstr "" msgid "Expire all versions" msgstr "Vanhenna kaikki versiot" +#: js/versions.js:16 +msgid "History" +msgstr "Historia" + #: templates/settings-personal.php:4 msgid "Versions" msgstr "Versiot" @@ -32,8 +36,8 @@ msgstr "Tämä poistaa kaikki tiedostojesi olemassa olevat varmuuskopioversiot" #: templates/settings.php:3 msgid "Files Versioning" -msgstr "" +msgstr "Tiedostojen versiointi" #: templates/settings.php:4 msgid "Enable" -msgstr "" +msgstr "Käytä" diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po index 5b6f5d055c..32e588ad00 100644 --- a/l10n/fi_FI/settings.po +++ b/l10n/fi_FI/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:03+0200\n" -"PO-Revision-Date: 2012-09-17 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-21 02:02+0200\n" +"PO-Revision-Date: 2012-09-20 18:06+0000\n" +"Last-Translator: Jiri Grönroos \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -37,7 +37,7 @@ msgstr "Ryhmä on jo olemassa" msgid "Unable to add group" msgstr "Ryhmän lisäys epäonnistui" -#: ajax/enableapp.php:13 +#: ajax/enableapp.php:14 msgid "Could not enable app. " msgstr "Sovelluksen käyttöönotto epäonnistui." @@ -79,15 +79,11 @@ msgstr "Käyttäjän tai ryhmän %s lisääminen ei onnistu" msgid "Unable to remove user from group %s" msgstr "Käyttäjän poistaminen ryhmästä %s ei onnistu" -#: js/apps.js:18 -msgid "Error" -msgstr "Virhe" - -#: js/apps.js:39 js/apps.js:73 +#: js/apps.js:27 js/apps.js:61 msgid "Disable" msgstr "Poista käytöstä" -#: js/apps.js:39 js/apps.js:62 +#: js/apps.js:27 js/apps.js:50 msgid "Enable" msgstr "Käytä" @@ -134,7 +130,7 @@ msgstr "" #: templates/admin.php:56 msgid "Sharing" -msgstr "" +msgstr "Jakaminen" #: templates/admin.php:61 msgid "Enable Share API" @@ -227,12 +223,9 @@ msgid "Answer" msgstr "Vastaus" #: templates/personal.php:8 -msgid "You use" -msgstr "Olet käyttänyt" - -#: templates/personal.php:8 -msgid "of the available" -msgstr ", käytettävissäsi on yhteensä" +#, php-format +msgid "You have used %s of the available %s" +msgstr "Käytössäsi on %s/%s" #: templates/personal.php:12 msgid "Desktop and Mobile Syncing Clients" @@ -243,8 +236,8 @@ msgid "Download" msgstr "Lataa" #: templates/personal.php:19 -msgid "Your password got changed" -msgstr "Salasanasi on vaihdettu" +msgid "Your password was changed" +msgstr "Salasanasi vaihdettiin" #: templates/personal.php:20 msgid "Unable to change your password" diff --git a/l10n/fr/core.po b/l10n/fr/core.po index c6fd6a4041..1af28feae4 100644 --- a/l10n/fr/core.po +++ b/l10n/fr/core.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Christophe Lherieau , 2012. # , 2012. # Guillaume Paumier , 2012. # Nahir Mohamed , 2012. @@ -13,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" @@ -35,58 +36,62 @@ msgstr "Pas de catégorie à ajouter ?" msgid "This category already exists: " msgstr "Cette catégorie existe déjà : " -#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Paramètres" -#: js/js.js:593 +#: js/js.js:645 msgid "January" msgstr "janvier" -#: js/js.js:593 +#: js/js.js:645 msgid "February" msgstr "février" -#: js/js.js:593 +#: js/js.js:645 msgid "March" msgstr "mars" -#: js/js.js:593 +#: js/js.js:645 msgid "April" msgstr "avril" -#: js/js.js:593 +#: js/js.js:645 msgid "May" msgstr "mai" -#: js/js.js:593 +#: js/js.js:645 msgid "June" msgstr "juin" -#: js/js.js:594 +#: js/js.js:646 msgid "July" msgstr "juillet" -#: js/js.js:594 +#: js/js.js:646 msgid "August" msgstr "août" -#: js/js.js:594 +#: js/js.js:646 msgid "September" msgstr "septembre" -#: js/js.js:594 +#: js/js.js:646 msgid "October" msgstr "octobre" -#: js/js.js:594 +#: js/js.js:646 msgid "November" msgstr "novembre" -#: js/js.js:594 +#: js/js.js:646 msgid "December" msgstr "décembre" +#: js/oc-dialogs.js:123 +msgid "Choose" +msgstr "Choisir" + #: js/oc-dialogs.js:143 js/oc-dialogs.js:163 msgid "Cancel" msgstr "Annuler" @@ -107,10 +112,119 @@ msgstr "Ok" msgid "No categories selected for deletion." msgstr "Aucune catégorie sélectionnée pour suppression" -#: js/oc-vcategories.js:68 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 +#: js/share.js:501 msgid "Error" msgstr "Erreur" +#: js/share.js:103 +msgid "Error while sharing" +msgstr "Erreur lors de la mise en partage" + +#: js/share.js:114 +msgid "Error while unsharing" +msgstr "Erreur lors de l'annulation du partage" + +#: js/share.js:121 +msgid "Error while changing permissions" +msgstr "Erreur lors du changement des permissions" + +#: js/share.js:130 +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" +msgstr "" + +#: js/share.js:132 +msgid "Shared with you by" +msgstr "" + +#: js/share.js:137 +msgid "Share with" +msgstr "Partager avec" + +#: js/share.js:142 +msgid "Share with link" +msgstr "Partager via lien" + +#: js/share.js:143 +msgid "Password protect" +msgstr "Protéger par un mot de passe" + +#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +msgid "Password" +msgstr "Mot de passe" + +#: js/share.js:152 +msgid "Set expiration date" +msgstr "Spécifier la date d'expiration" + +#: js/share.js:153 +msgid "Expiration date" +msgstr "Date d'expiration" + +#: js/share.js:185 +msgid "Share via email:" +msgstr "" + +#: js/share.js:187 +msgid "No people found" +msgstr "Aucun utilisateur trouvé" + +#: js/share.js:214 +msgid "Resharing is not allowed" +msgstr "Le repartage n'est pas autorisé" + +#: js/share.js:250 +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" +msgstr "" + +#: js/share.js:271 +msgid "Unshare" +msgstr "Ne plus partager" + +#: js/share.js:279 +msgid "can edit" +msgstr "édition autorisée" + +#: js/share.js:281 +msgid "access control" +msgstr "contrôle des accès" + +#: js/share.js:284 +msgid "create" +msgstr "créer" + +#: js/share.js:287 +msgid "update" +msgstr "mettre à jour" + +#: js/share.js:290 +msgid "delete" +msgstr "supprimer" + +#: js/share.js:293 +msgid "share" +msgstr "partager" + +#: js/share.js:317 js/share.js:476 +msgid "Password protected" +msgstr "Protégé par un mot de passe" + +#: js/share.js:489 +msgid "Error unsetting expiration date" +msgstr "Un erreur est survenue pendant la suppression de la date d'expiration" + +#: js/share.js:501 +msgid "Error setting expiration date" +msgstr "Erreur lors de la spécification de la date d'expiration" + #: lostpassword/index.php:26 msgid "ownCloud password reset" msgstr "Réinitialisation de votre mot de passe Owncloud" @@ -196,10 +310,6 @@ msgstr "Ajouter" msgid "Create an admin account" msgstr "Créer un compte administrateur" -#: templates/installation.php:30 templates/login.php:13 -msgid "Password" -msgstr "Mot de passe" - #: templates/installation.php:36 msgid "Advanced" msgstr "Avancé" @@ -241,11 +351,11 @@ msgstr "Serveur de la base de données" msgid "Finish setup" msgstr "Terminer l'installation" -#: templates/layout.guest.php:42 +#: templates/layout.guest.php:36 msgid "web services under your control" msgstr "services web sous votre contrôle" -#: templates/layout.user.php:45 +#: templates/layout.user.php:34 msgid "Log out" msgstr "Se déconnecter" diff --git a/l10n/fr/files.po b/l10n/fr/files.po index 07b8735002..b4ed9df3a6 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/files.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Christophe Lherieau , 2012. # Cyril Glapa , 2012. # Geoffrey Guerrier , 2012. # , 2012. @@ -16,9 +17,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-13 02:01+0200\n" -"PO-Revision-Date: 2012-09-12 16:41+0000\n" -"Last-Translator: Romain DEP. \n" +"POT-Creation-Date: 2012-09-27 02:01+0200\n" +"PO-Revision-Date: 2012-09-26 12:42+0000\n" +"Last-Translator: Christophe Lherieau \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -68,39 +69,43 @@ msgstr "Ne plus partager" msgid "Delete" msgstr "Supprimer" -#: js/filelist.js:186 js/filelist.js:188 +#: js/fileactions.js:182 +msgid "Rename" +msgstr "Renommer" + +#: js/filelist.js:190 js/filelist.js:192 msgid "already exists" msgstr "existe déjà" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "replace" msgstr "remplacer" -#: js/filelist.js:186 +#: js/filelist.js:190 msgid "suggest name" msgstr "Suggérer un nom" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "cancel" msgstr "annuler" -#: js/filelist.js:235 js/filelist.js:237 +#: js/filelist.js:239 js/filelist.js:241 msgid "replaced" msgstr "remplacé" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:239 js/filelist.js:241 js/filelist.js:273 js/filelist.js:275 msgid "undo" msgstr "annuler" -#: js/filelist.js:237 +#: js/filelist.js:241 msgid "with" msgstr "avec" -#: js/filelist.js:268 +#: js/filelist.js:273 msgid "unshared" msgstr "non partagée" -#: js/filelist.js:270 +#: js/filelist.js:275 msgid "deleted" msgstr "supprimé" @@ -116,47 +121,107 @@ msgstr "Impossible de charger vos fichiers car il s'agit d'un dossier ou le fich msgid "Upload Error" msgstr "Erreur de chargement" -#: js/files.js:236 js/files.js:341 js/files.js:370 +#: js/files.js:236 js/files.js:341 js/files.js:371 msgid "Pending" msgstr "En cours" -#: js/files.js:355 +#: js/files.js:256 +msgid "1 file uploading" +msgstr "1 fichier en cours de téléchargement" + +#: js/files.js:259 js/files.js:304 js/files.js:319 +msgid "files uploading" +msgstr "fichiers en cours de téléchargement" + +#: js/files.js:322 js/files.js:355 msgid "Upload cancelled." msgstr "Chargement annulé." -#: js/files.js:423 +#: js/files.js:424 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "L'envoi du fichier est en cours. Quitter cette page maintenant annulera l'envoi du fichier." -#: js/files.js:493 +#: js/files.js:494 msgid "Invalid name, '/' is not allowed." msgstr "Nom invalide, '/' n'est pas autorisé." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:668 +msgid "files scanned" +msgstr "fichiers indexés" + +#: js/files.js:676 +msgid "error while scanning" +msgstr "erreur lors de l'indexation" + +#: js/files.js:749 templates/index.php:48 +msgid "Name" +msgstr "Nom" + +#: js/files.js:750 templates/index.php:56 msgid "Size" msgstr "Taille" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:751 templates/index.php:58 msgid "Modified" msgstr "Modifié" -#: js/files.js:774 +#: js/files.js:778 msgid "folder" msgstr "dossier" -#: js/files.js:776 +#: js/files.js:780 msgid "folders" msgstr "dossiers" -#: js/files.js:784 +#: js/files.js:788 msgid "file" msgstr "fichier" -#: js/files.js:786 +#: js/files.js:790 msgid "files" msgstr "fichiers" +#: js/files.js:834 +msgid "seconds ago" +msgstr "secondes passées" + +#: js/files.js:835 +msgid "minute ago" +msgstr "minute passée" + +#: js/files.js:836 +msgid "minutes ago" +msgstr "minutes passées" + +#: js/files.js:839 +msgid "today" +msgstr "aujourd'hui" + +#: js/files.js:840 +msgid "yesterday" +msgstr "hier" + +#: js/files.js:841 +msgid "days ago" +msgstr "jours passés" + +#: js/files.js:842 +msgid "last month" +msgstr "mois dernier" + +#: js/files.js:844 +msgid "months ago" +msgstr "mois passés" + +#: js/files.js:845 +msgid "last year" +msgstr "année dernière" + +#: js/files.js:846 +msgid "years ago" +msgstr "années passées" + #: templates/admin.php:5 msgid "File handling" msgstr "Gestion des fichiers" @@ -205,7 +270,7 @@ msgstr "Dossier" msgid "From url" msgstr "Depuis URL" -#: templates/index.php:21 +#: templates/index.php:20 msgid "Upload" msgstr "Envoyer" @@ -217,10 +282,6 @@ msgstr "Annuler l'envoi" msgid "Nothing in here. Upload something!" msgstr "Il n'y a rien ici ! Envoyez donc quelque chose :)" -#: templates/index.php:48 -msgid "Name" -msgstr "Nom" - #: templates/index.php:50 msgid "Share" msgstr "Partager" diff --git a/l10n/fr/files_sharing.po b/l10n/fr/files_sharing.po index 13fe8b5a46..36628ca4e7 100644 --- a/l10n/fr/files_sharing.po +++ b/l10n/fr/files_sharing.po @@ -12,15 +12,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-08-31 19:11+0000\n" -"Last-Translator: Florentin Le Moal \n" +"POT-Creation-Date: 2012-09-25 02:02+0200\n" +"PO-Revision-Date: 2012-09-24 14:21+0000\n" +"Last-Translator: Romain DEP. \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: fr\n" -"Plural-Forms: nplurals=2; plural=(n > 1)\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" #: templates/authenticate.php:4 msgid "Password" @@ -30,14 +30,24 @@ msgstr "Mot de passe" msgid "Submit" msgstr "Envoyer" -#: templates/public.php:9 templates/public.php:19 +#: templates/public.php:9 +#, php-format +msgid "%s shared the folder %s with you" +msgstr "%s a partagé le répertoire %s avec vous" + +#: templates/public.php:11 +#, php-format +msgid "%s shared the file %s with you" +msgstr "%s a partagé le fichier %s avec vous" + +#: templates/public.php:14 templates/public.php:30 msgid "Download" msgstr "Télécharger" -#: templates/public.php:18 +#: templates/public.php:29 msgid "No preview available for" msgstr "Pas d'aperçu disponible pour" -#: templates/public.php:23 +#: templates/public.php:37 msgid "web services under your control" msgstr "services web sous votre contrôle" diff --git a/l10n/fr/files_versions.po b/l10n/fr/files_versions.po index ac58bbea0b..a88cc9a369 100644 --- a/l10n/fr/files_versions.po +++ b/l10n/fr/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" -"PO-Revision-Date: 2012-09-17 00:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-25 02:02+0200\n" +"PO-Revision-Date: 2012-09-24 14:20+0000\n" +"Last-Translator: Romain DEP. \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,6 +22,10 @@ msgstr "" msgid "Expire all versions" msgstr "Supprimer les versions intermédiaires" +#: js/versions.js:16 +msgid "History" +msgstr "Historique" + #: templates/settings-personal.php:4 msgid "Versions" msgstr "Versions" @@ -32,8 +36,8 @@ msgstr "Cette opération va effacer toutes les versions intermédiaires de vos f #: templates/settings.php:3 msgid "Files Versioning" -msgstr "" +msgstr "Versionnage des fichiers" #: templates/settings.php:4 msgid "Enable" -msgstr "" +msgstr "Activer" diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index 7e5fba19f0..df93aec9fa 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/settings.po @@ -19,9 +19,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:03+0200\n" -"PO-Revision-Date: 2012-09-17 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-25 02:03+0200\n" +"PO-Revision-Date: 2012-09-24 14:48+0000\n" +"Last-Translator: Romain DEP. \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -46,9 +46,9 @@ msgstr "Ce groupe existe déjà" msgid "Unable to add group" msgstr "Impossible d'ajouter le groupe" -#: ajax/enableapp.php:13 +#: ajax/enableapp.php:14 msgid "Could not enable app. " -msgstr "" +msgstr "Impossible d'activer l'Application" #: ajax/lostpassword.php:14 msgid "Email saved" @@ -88,15 +88,11 @@ msgstr "Impossible d'ajouter l'utilisateur au groupe %s" msgid "Unable to remove user from group %s" msgstr "Impossible de supprimer l'utilisateur du groupe %s" -#: js/apps.js:18 -msgid "Error" -msgstr "Erreur" - -#: js/apps.js:39 js/apps.js:73 +#: js/apps.js:27 js/apps.js:61 msgid "Disable" msgstr "Désactiver" -#: js/apps.js:39 js/apps.js:62 +#: js/apps.js:27 js/apps.js:50 msgid "Enable" msgstr "Activer" @@ -127,23 +123,23 @@ msgstr "Cron" #: templates/admin.php:37 msgid "Execute one task with each page loaded" -msgstr "" +msgstr "Exécute une tâche à chaque chargement de page" #: templates/admin.php:43 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." -msgstr "" +msgstr "cron.php est enregistré en tant que service webcron. Veuillez appeler la page cron.php située à la racine du serveur ownCoud via http toute les minutes." #: templates/admin.php:49 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "" +msgstr "Utilise le service cron du système. Appelle le fichier cron.php du répertoire owncloud toutes les minutes grâce à une tâche cron du système." #: templates/admin.php:56 msgid "Sharing" -msgstr "" +msgstr "Partage" #: templates/admin.php:61 msgid "Enable Share API" @@ -236,12 +232,9 @@ msgid "Answer" msgstr "Réponse" #: templates/personal.php:8 -msgid "You use" -msgstr "Vous utilisez" - -#: templates/personal.php:8 -msgid "of the available" -msgstr "de votre espace de stockage d'une taille totale de" +#, php-format +msgid "You have used %s of the available %s" +msgstr "Vous avez utilisé %s des %s disponibles" #: templates/personal.php:12 msgid "Desktop and Mobile Syncing Clients" @@ -252,7 +245,7 @@ msgid "Download" msgstr "Télécharger" #: templates/personal.php:19 -msgid "Your password got changed" +msgid "Your password was changed" msgstr "Votre mot de passe a été changé" #: templates/personal.php:20 diff --git a/l10n/gl/core.po b/l10n/gl/core.po index 98c21db78b..e1324b3c42 100644 --- a/l10n/gl/core.po +++ b/l10n/gl/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -31,58 +31,62 @@ msgstr "Sen categoría que engadir?" msgid "This category already exists: " msgstr "Esta categoría xa existe: " -#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Preferencias" -#: js/js.js:593 +#: js/js.js:645 msgid "January" msgstr "Xaneiro" -#: js/js.js:593 +#: js/js.js:645 msgid "February" msgstr "Febreiro" -#: js/js.js:593 +#: js/js.js:645 msgid "March" msgstr "Marzo" -#: js/js.js:593 +#: js/js.js:645 msgid "April" msgstr "Abril" -#: js/js.js:593 +#: js/js.js:645 msgid "May" msgstr "Maio" -#: js/js.js:593 +#: js/js.js:645 msgid "June" msgstr "Xuño" -#: js/js.js:594 +#: js/js.js:646 msgid "July" msgstr "Xullo" -#: js/js.js:594 +#: js/js.js:646 msgid "August" msgstr "Agosto" -#: js/js.js:594 +#: js/js.js:646 msgid "September" msgstr "Setembro" -#: js/js.js:594 +#: js/js.js:646 msgid "October" msgstr "Outubro" -#: js/js.js:594 +#: js/js.js:646 msgid "November" msgstr "Novembro" -#: js/js.js:594 +#: js/js.js:646 msgid "December" msgstr "Nadal" +#: js/oc-dialogs.js:123 +msgid "Choose" +msgstr "" + #: js/oc-dialogs.js:143 js/oc-dialogs.js:163 msgid "Cancel" msgstr "Cancelar" @@ -103,10 +107,119 @@ msgstr "Ok" msgid "No categories selected for deletion." msgstr "Non hai categorías seleccionadas para eliminar." -#: js/oc-vcategories.js:68 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 +#: js/share.js:501 msgid "Error" msgstr "Erro" +#: js/share.js:103 +msgid "Error while sharing" +msgstr "" + +#: js/share.js:114 +msgid "Error while unsharing" +msgstr "" + +#: js/share.js:121 +msgid "Error while changing permissions" +msgstr "" + +#: js/share.js:130 +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" +msgstr "" + +#: js/share.js:132 +msgid "Shared with you by" +msgstr "" + +#: js/share.js:137 +msgid "Share with" +msgstr "" + +#: js/share.js:142 +msgid "Share with link" +msgstr "" + +#: js/share.js:143 +msgid "Password protect" +msgstr "" + +#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +msgid "Password" +msgstr "Contrasinal" + +#: js/share.js:152 +msgid "Set expiration date" +msgstr "" + +#: js/share.js:153 +msgid "Expiration date" +msgstr "" + +#: js/share.js:185 +msgid "Share via email:" +msgstr "" + +#: js/share.js:187 +msgid "No people found" +msgstr "" + +#: js/share.js:214 +msgid "Resharing is not allowed" +msgstr "" + +#: js/share.js:250 +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" +msgstr "" + +#: js/share.js:271 +msgid "Unshare" +msgstr "" + +#: js/share.js:279 +msgid "can edit" +msgstr "" + +#: js/share.js:281 +msgid "access control" +msgstr "" + +#: js/share.js:284 +msgid "create" +msgstr "" + +#: js/share.js:287 +msgid "update" +msgstr "" + +#: js/share.js:290 +msgid "delete" +msgstr "" + +#: js/share.js:293 +msgid "share" +msgstr "" + +#: js/share.js:317 js/share.js:476 +msgid "Password protected" +msgstr "" + +#: js/share.js:489 +msgid "Error unsetting expiration date" +msgstr "" + +#: js/share.js:501 +msgid "Error setting expiration date" +msgstr "" + #: lostpassword/index.php:26 msgid "ownCloud password reset" msgstr "Restablecer contrasinal de ownCloud" @@ -192,10 +305,6 @@ msgstr "Engadir" msgid "Create an admin account" msgstr "Crear unha contra de administrador" -#: templates/installation.php:30 templates/login.php:13 -msgid "Password" -msgstr "Contrasinal" - #: templates/installation.php:36 msgid "Advanced" msgstr "Avanzado" @@ -237,11 +346,11 @@ msgstr "Servidor da base de datos" msgid "Finish setup" msgstr "Rematar configuración" -#: templates/layout.guest.php:42 +#: templates/layout.guest.php:36 msgid "web services under your control" msgstr "servizos web baixo o seu control" -#: templates/layout.user.php:45 +#: templates/layout.user.php:34 msgid "Log out" msgstr "Desconectar" diff --git a/l10n/gl/files.po b/l10n/gl/files.po index f51ab64695..d55fcad4c6 100644 --- a/l10n/gl/files.po +++ b/l10n/gl/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-26 13:19+0200\n" +"PO-Revision-Date: 2012-09-26 11:20+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -55,45 +55,49 @@ msgstr "Ficheiros" #: js/fileactions.js:108 templates/index.php:62 msgid "Unshare" -msgstr "" +msgstr "Deixar de compartir" #: js/fileactions.js:110 templates/index.php:64 msgid "Delete" msgstr "Eliminar" -#: js/filelist.js:186 js/filelist.js:188 +#: js/fileactions.js:182 +msgid "Rename" +msgstr "" + +#: js/filelist.js:190 js/filelist.js:192 msgid "already exists" msgstr "xa existe" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "replace" msgstr "substituír" -#: js/filelist.js:186 +#: js/filelist.js:190 msgid "suggest name" -msgstr "" +msgstr "suxira nome" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "cancel" msgstr "cancelar" -#: js/filelist.js:235 js/filelist.js:237 +#: js/filelist.js:239 js/filelist.js:241 msgid "replaced" msgstr "substituído" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:239 js/filelist.js:241 js/filelist.js:273 js/filelist.js:275 msgid "undo" msgstr "desfacer" -#: js/filelist.js:237 +#: js/filelist.js:241 msgid "with" msgstr "con" -#: js/filelist.js:268 +#: js/filelist.js:273 msgid "unshared" -msgstr "" +msgstr "non compartido" -#: js/filelist.js:270 +#: js/filelist.js:275 msgid "deleted" msgstr "eliminado" @@ -109,47 +113,107 @@ msgstr "Non se puido subir o ficheiro pois ou é un directorio ou ten 0 bytes" msgid "Upload Error" msgstr "Erro na subida" -#: js/files.js:236 js/files.js:341 js/files.js:370 +#: js/files.js:236 js/files.js:341 js/files.js:371 msgid "Pending" msgstr "Pendentes" -#: js/files.js:355 +#: js/files.js:256 +msgid "1 file uploading" +msgstr "" + +#: js/files.js:259 js/files.js:304 js/files.js:319 +msgid "files uploading" +msgstr "" + +#: js/files.js:322 js/files.js:355 msgid "Upload cancelled." msgstr "Subida cancelada." -#: js/files.js:423 +#: js/files.js:424 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "" +msgstr "A subida do ficheiro está en curso. Saír agora da páxina cancelará a subida." -#: js/files.js:493 +#: js/files.js:494 msgid "Invalid name, '/' is not allowed." msgstr "Nome non válido, '/' non está permitido." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:667 +msgid "files scanned" +msgstr "ficheiros analizados" + +#: js/files.js:675 +msgid "error while scanning" +msgstr "erro mentras analizaba" + +#: js/files.js:748 templates/index.php:48 +msgid "Name" +msgstr "Nome" + +#: js/files.js:749 templates/index.php:56 msgid "Size" msgstr "Tamaño" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:750 templates/index.php:58 msgid "Modified" msgstr "Modificado" -#: js/files.js:774 +#: js/files.js:777 msgid "folder" msgstr "cartafol" -#: js/files.js:776 +#: js/files.js:779 msgid "folders" msgstr "cartafoles" -#: js/files.js:784 +#: js/files.js:787 msgid "file" msgstr "ficheiro" -#: js/files.js:786 +#: js/files.js:789 msgid "files" msgstr "ficheiros" +#: js/files.js:833 +msgid "seconds ago" +msgstr "" + +#: js/files.js:834 +msgid "minute ago" +msgstr "" + +#: js/files.js:835 +msgid "minutes ago" +msgstr "" + +#: js/files.js:838 +msgid "today" +msgstr "" + +#: js/files.js:839 +msgid "yesterday" +msgstr "" + +#: js/files.js:840 +msgid "days ago" +msgstr "" + +#: js/files.js:841 +msgid "last month" +msgstr "" + +#: js/files.js:843 +msgid "months ago" +msgstr "" + +#: js/files.js:844 +msgid "last year" +msgstr "" + +#: js/files.js:845 +msgid "years ago" +msgstr "" + #: templates/admin.php:5 msgid "File handling" msgstr "Manexo de ficheiro" @@ -180,7 +244,7 @@ msgstr "Tamaño máximo de descarga para os ZIP" #: templates/admin.php:14 msgid "Save" -msgstr "" +msgstr "Gardar" #: templates/index.php:7 msgid "New" @@ -198,7 +262,7 @@ msgstr "Cartafol" msgid "From url" msgstr "Desde url" -#: templates/index.php:21 +#: templates/index.php:20 msgid "Upload" msgstr "Enviar" @@ -210,10 +274,6 @@ msgstr "Cancelar subida" msgid "Nothing in here. Upload something!" msgstr "Nada por aquí. Envíe algo." -#: templates/index.php:48 -msgid "Name" -msgstr "Nome" - #: templates/index.php:50 msgid "Share" msgstr "Compartir" diff --git a/l10n/gl/files_encryption.po b/l10n/gl/files_encryption.po index c401e95b84..42f3744efd 100644 --- a/l10n/gl/files_encryption.po +++ b/l10n/gl/files_encryption.po @@ -3,32 +3,33 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Xosé M. Lamas , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:33+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-19 02:02+0200\n" +"PO-Revision-Date: 2012-09-18 10:02+0000\n" +"Last-Translator: Xosé M. Lamas \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: gl\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/settings.php:3 msgid "Encryption" -msgstr "" +msgstr "Encriptado" #: templates/settings.php:4 msgid "Exclude the following file types from encryption" -msgstr "" +msgstr "Excluír os seguintes tipos de ficheiro da encriptación" #: templates/settings.php:5 msgid "None" -msgstr "" +msgstr "Nada" #: templates/settings.php:10 msgid "Enable Encryption" -msgstr "" +msgstr "Habilitar encriptación" diff --git a/l10n/gl/files_external.po b/l10n/gl/files_external.po index 056cc10b6a..d700ed9f80 100644 --- a/l10n/gl/files_external.po +++ b/l10n/gl/files_external.po @@ -3,80 +3,81 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Xosé M. Lamas , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:34+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-19 02:02+0200\n" +"PO-Revision-Date: 2012-09-18 10:13+0000\n" +"Last-Translator: Xosé M. Lamas \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: gl\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/settings.php:3 msgid "External Storage" -msgstr "" +msgstr "Almacenamento externo" #: templates/settings.php:7 templates/settings.php:19 msgid "Mount point" -msgstr "" +msgstr "Punto de montaxe" #: templates/settings.php:8 msgid "Backend" -msgstr "" +msgstr "Almacén" #: templates/settings.php:9 msgid "Configuration" -msgstr "" +msgstr "Configuración" #: templates/settings.php:10 msgid "Options" -msgstr "" +msgstr "Opcións" #: templates/settings.php:11 msgid "Applicable" -msgstr "" +msgstr "Aplicable" #: templates/settings.php:23 msgid "Add mount point" -msgstr "" +msgstr "Engadir punto de montaxe" #: templates/settings.php:54 templates/settings.php:62 msgid "None set" -msgstr "" +msgstr "Non establecido" #: templates/settings.php:63 msgid "All Users" -msgstr "" +msgstr "Tódolos usuarios" #: templates/settings.php:64 msgid "Groups" -msgstr "" +msgstr "Grupos" #: templates/settings.php:69 msgid "Users" -msgstr "" +msgstr "Usuarios" #: templates/settings.php:77 templates/settings.php:96 msgid "Delete" -msgstr "" +msgstr "Eliminar" #: templates/settings.php:88 msgid "SSL root certificates" -msgstr "" +msgstr "Certificados raíz SSL" #: templates/settings.php:102 msgid "Import Root Certificate" -msgstr "" +msgstr "Importar Certificado Raíz" #: templates/settings.php:108 msgid "Enable User External Storage" -msgstr "" +msgstr "Habilitar almacenamento externo do usuario" #: templates/settings.php:109 msgid "Allow users to mount their own external storage" -msgstr "" +msgstr "Permitir aos usuarios montar os seus propios almacenamentos externos" diff --git a/l10n/gl/files_sharing.po b/l10n/gl/files_sharing.po index 88ab158776..4fdd23736c 100644 --- a/l10n/gl/files_sharing.po +++ b/l10n/gl/files_sharing.po @@ -3,36 +3,47 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Xosé M. Lamas , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-22 01:14+0200\n" +"PO-Revision-Date: 2012-09-21 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: gl\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 msgid "Password" -msgstr "" +msgstr "Contrasinal" #: templates/authenticate.php:6 msgid "Submit" +msgstr "Enviar" + +#: templates/public.php:9 +#, php-format +msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:9 templates/public.php:19 +#: templates/public.php:11 +#, php-format +msgid "%s shared the file %s with you" +msgstr "" + +#: templates/public.php:14 templates/public.php:30 msgid "Download" -msgstr "" +msgstr "Baixar" -#: templates/public.php:18 +#: templates/public.php:29 msgid "No preview available for" -msgstr "" +msgstr "Sen vista previa dispoñible para " -#: templates/public.php:23 +#: templates/public.php:37 msgid "web services under your control" -msgstr "" +msgstr "servizos web baixo o seu control" diff --git a/l10n/gl/files_versions.po b/l10n/gl/files_versions.po index ceb964a6b7..05d1520574 100644 --- a/l10n/gl/files_versions.po +++ b/l10n/gl/files_versions.po @@ -3,12 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Xosé M. Lamas , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" -"PO-Revision-Date: 2012-09-17 00:04+0000\n" +"POT-Creation-Date: 2012-09-22 01:14+0200\n" +"PO-Revision-Date: 2012-09-21 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -19,20 +20,24 @@ msgstr "" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" +msgstr "Caducar todas as versións" + +#: js/versions.js:16 +msgid "History" msgstr "" #: templates/settings-personal.php:4 msgid "Versions" -msgstr "" +msgstr "Versións" #: templates/settings-personal.php:7 msgid "This will delete all existing backup versions of your files" -msgstr "" +msgstr "Esto eliminará todas as copias de respaldo existentes dos seus ficheiros" #: templates/settings.php:3 msgid "Files Versioning" -msgstr "" +msgstr "Versionado de ficheiros" #: templates/settings.php:4 msgid "Enable" -msgstr "" +msgstr "Habilitar" diff --git a/l10n/gl/lib.po b/l10n/gl/lib.po index a0531aaba0..677bba794d 100644 --- a/l10n/gl/lib.po +++ b/l10n/gl/lib.po @@ -3,123 +3,124 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Xosé M. Lamas , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-09-01 00:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-19 02:02+0200\n" +"PO-Revision-Date: 2012-09-18 09:28+0000\n" +"Last-Translator: Xosé M. Lamas \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: gl\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:288 +#: app.php:285 msgid "Help" -msgstr "" +msgstr "Axuda" -#: app.php:295 +#: app.php:292 msgid "Personal" -msgstr "" +msgstr "Personal" -#: app.php:300 +#: app.php:297 msgid "Settings" -msgstr "" +msgstr "Preferencias" -#: app.php:305 +#: app.php:302 msgid "Users" -msgstr "" +msgstr "Usuarios" -#: app.php:312 +#: app.php:309 msgid "Apps" -msgstr "" +msgstr "Apps" -#: app.php:314 +#: app.php:311 msgid "Admin" -msgstr "" +msgstr "Administración" #: files.php:280 msgid "ZIP download is turned off." -msgstr "" +msgstr "Descargas ZIP está deshabilitadas" #: files.php:281 msgid "Files need to be downloaded one by one." -msgstr "" +msgstr "Os ficheiros necesitan ser descargados de un en un" #: files.php:281 files.php:306 msgid "Back to Files" -msgstr "" +msgstr "Voltar a ficheiros" #: files.php:305 msgid "Selected files too large to generate zip file." -msgstr "" +msgstr "Os ficheiros seleccionados son demasiado grandes para xerar un ficheiro ZIP" #: json.php:28 msgid "Application is not enabled" -msgstr "" +msgstr "O aplicativo non está habilitado" #: json.php:39 json.php:63 json.php:75 msgid "Authentication error" -msgstr "" +msgstr "Erro na autenticación" #: json.php:51 msgid "Token expired. Please reload page." -msgstr "" - -#: template.php:86 -msgid "seconds ago" -msgstr "" +msgstr "Testemuño caducado. Por favor recargue a páxina." #: template.php:87 -msgid "1 minute ago" -msgstr "" +msgid "seconds ago" +msgstr "hai segundos" #: template.php:88 +msgid "1 minute ago" +msgstr "hai 1 minuto" + +#: template.php:89 #, php-format msgid "%d minutes ago" -msgstr "" - -#: template.php:91 -msgid "today" -msgstr "" +msgstr "hai %d minutos" #: template.php:92 -msgid "yesterday" -msgstr "" +msgid "today" +msgstr "hoxe" #: template.php:93 -#, php-format -msgid "%d days ago" -msgstr "" +msgid "yesterday" +msgstr "onte" #: template.php:94 -msgid "last month" -msgstr "" +#, php-format +msgid "%d days ago" +msgstr "hai %d días" #: template.php:95 -msgid "months ago" -msgstr "" +msgid "last month" +msgstr "último mes" #: template.php:96 -msgid "last year" -msgstr "" +msgid "months ago" +msgstr "meses atrás" #: template.php:97 +msgid "last year" +msgstr "último ano" + +#: template.php:98 msgid "years ago" -msgstr "" +msgstr "anos atrás" #: updater.php:66 #, php-format msgid "%s is available. Get more information" -msgstr "" +msgstr "%s está dispoñible. Obteña máis información" #: updater.php:68 msgid "up to date" -msgstr "" +msgstr "ao día" #: updater.php:71 msgid "updates check is disabled" -msgstr "" +msgstr "comprobación de actualizacións está deshabilitada" diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po index 306515b40d..948cb35b5a 100644 --- a/l10n/gl/settings.po +++ b/l10n/gl/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:03+0200\n" -"PO-Revision-Date: 2012-09-17 00:03+0000\n" +"POT-Creation-Date: 2012-09-19 02:02+0200\n" +"PO-Revision-Date: 2012-09-19 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -36,7 +36,7 @@ msgstr "" msgid "Unable to add group" msgstr "" -#: ajax/enableapp.php:13 +#: ajax/enableapp.php:14 msgid "Could not enable app. " msgstr "" @@ -78,15 +78,11 @@ msgstr "" msgid "Unable to remove user from group %s" msgstr "" -#: js/apps.js:18 -msgid "Error" -msgstr "Erro" - -#: js/apps.js:39 js/apps.js:73 +#: js/apps.js:27 js/apps.js:61 msgid "Disable" msgstr "Deshabilitar" -#: js/apps.js:39 js/apps.js:62 +#: js/apps.js:27 js/apps.js:50 msgid "Enable" msgstr "Habilitar" @@ -226,12 +222,9 @@ msgid "Answer" msgstr "Resposta" #: templates/personal.php:8 -msgid "You use" -msgstr "Vostede usa" - -#: templates/personal.php:8 -msgid "of the available" -msgstr "dun total de" +#, php-format +msgid "You have used %s of the available %s" +msgstr "" #: templates/personal.php:12 msgid "Desktop and Mobile Syncing Clients" @@ -242,8 +235,8 @@ msgid "Download" msgstr "Descargar" #: templates/personal.php:19 -msgid "Your password got changed" -msgstr "O seu contrasinal mudou" +msgid "Your password was changed" +msgstr "" #: templates/personal.php:20 msgid "Unable to change your password" diff --git a/l10n/he/core.po b/l10n/he/core.po index 3c738506dd..715be471e8 100644 --- a/l10n/he/core.po +++ b/l10n/he/core.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" -"PO-Revision-Date: 2012-09-16 18:05+0000\n" -"Last-Translator: Dovix Dovix \n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -33,58 +33,62 @@ msgstr "אין קטגוריה להוספה?" msgid "This category already exists: " msgstr "קטגוריה זאת כבר קיימת: " -#: js/js.js:214 templates/layout.user.php:54 templates/layout.user.php:55 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "הגדרות" -#: js/js.js:642 +#: js/js.js:645 msgid "January" msgstr "ינואר" -#: js/js.js:642 +#: js/js.js:645 msgid "February" msgstr "פברואר" -#: js/js.js:642 +#: js/js.js:645 msgid "March" msgstr "מרץ" -#: js/js.js:642 +#: js/js.js:645 msgid "April" msgstr "אפריל" -#: js/js.js:642 +#: js/js.js:645 msgid "May" msgstr "מאי" -#: js/js.js:642 +#: js/js.js:645 msgid "June" msgstr "יוני" -#: js/js.js:643 +#: js/js.js:646 msgid "July" msgstr "יולי" -#: js/js.js:643 +#: js/js.js:646 msgid "August" msgstr "אוגוסט" -#: js/js.js:643 +#: js/js.js:646 msgid "September" msgstr "ספטמבר" -#: js/js.js:643 +#: js/js.js:646 msgid "October" msgstr "אוקטובר" -#: js/js.js:643 +#: js/js.js:646 msgid "November" msgstr "נובמבר" -#: js/js.js:643 +#: js/js.js:646 msgid "December" msgstr "דצמבר" +#: js/oc-dialogs.js:123 +msgid "Choose" +msgstr "" + #: js/oc-dialogs.js:143 js/oc-dialogs.js:163 msgid "Cancel" msgstr "ביטול" @@ -105,10 +109,119 @@ msgstr "בסדר" msgid "No categories selected for deletion." msgstr "לא נבחרו קטגוריות למחיקה" -#: js/oc-vcategories.js:68 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 +#: js/share.js:501 msgid "Error" msgstr "שגיאה" +#: js/share.js:103 +msgid "Error while sharing" +msgstr "" + +#: js/share.js:114 +msgid "Error while unsharing" +msgstr "" + +#: js/share.js:121 +msgid "Error while changing permissions" +msgstr "" + +#: js/share.js:130 +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" +msgstr "" + +#: js/share.js:132 +msgid "Shared with you by" +msgstr "" + +#: js/share.js:137 +msgid "Share with" +msgstr "" + +#: js/share.js:142 +msgid "Share with link" +msgstr "" + +#: js/share.js:143 +msgid "Password protect" +msgstr "" + +#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +msgid "Password" +msgstr "ססמה" + +#: js/share.js:152 +msgid "Set expiration date" +msgstr "" + +#: js/share.js:153 +msgid "Expiration date" +msgstr "" + +#: js/share.js:185 +msgid "Share via email:" +msgstr "" + +#: js/share.js:187 +msgid "No people found" +msgstr "" + +#: js/share.js:214 +msgid "Resharing is not allowed" +msgstr "" + +#: js/share.js:250 +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" +msgstr "" + +#: js/share.js:271 +msgid "Unshare" +msgstr "" + +#: js/share.js:279 +msgid "can edit" +msgstr "" + +#: js/share.js:281 +msgid "access control" +msgstr "" + +#: js/share.js:284 +msgid "create" +msgstr "" + +#: js/share.js:287 +msgid "update" +msgstr "" + +#: js/share.js:290 +msgid "delete" +msgstr "" + +#: js/share.js:293 +msgid "share" +msgstr "" + +#: js/share.js:317 js/share.js:476 +msgid "Password protected" +msgstr "" + +#: js/share.js:489 +msgid "Error unsetting expiration date" +msgstr "" + +#: js/share.js:501 +msgid "Error setting expiration date" +msgstr "" + #: lostpassword/index.php:26 msgid "ownCloud password reset" msgstr "איפוס הססמה של ownCloud" @@ -194,10 +307,6 @@ msgstr "הוספה" msgid "Create an admin account" msgstr "יצירת חשבון מנהל" -#: templates/installation.php:30 templates/login.php:13 -msgid "Password" -msgstr "ססמה" - #: templates/installation.php:36 msgid "Advanced" msgstr "מתקדם" @@ -243,7 +352,7 @@ msgstr "סיום התקנה" msgid "web services under your control" msgstr "שירותי רשת בשליטתך" -#: templates/layout.user.php:39 +#: templates/layout.user.php:34 msgid "Log out" msgstr "התנתקות" diff --git a/l10n/he/files.po b/l10n/he/files.po index 1c6d3f8f90..2e585d9a67 100644 --- a/l10n/he/files.po +++ b/l10n/he/files.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-15 02:02+0200\n" -"PO-Revision-Date: 2012-09-14 03:53+0000\n" -"Last-Translator: Dovix Dovix \n" +"POT-Creation-Date: 2012-09-26 13:19+0200\n" +"PO-Revision-Date: 2012-09-26 11:20+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -63,39 +63,43 @@ msgstr "" msgid "Delete" msgstr "מחיקה" -#: js/filelist.js:186 js/filelist.js:188 +#: js/fileactions.js:182 +msgid "Rename" +msgstr "" + +#: js/filelist.js:190 js/filelist.js:192 msgid "already exists" msgstr "כבר קיים" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "replace" msgstr "" -#: js/filelist.js:186 +#: js/filelist.js:190 msgid "suggest name" msgstr "" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "cancel" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 +#: js/filelist.js:239 js/filelist.js:241 msgid "replaced" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:239 js/filelist.js:241 js/filelist.js:273 js/filelist.js:275 msgid "undo" msgstr "" -#: js/filelist.js:237 +#: js/filelist.js:241 msgid "with" msgstr "" -#: js/filelist.js:268 +#: js/filelist.js:273 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:275 msgid "deleted" msgstr "" @@ -111,47 +115,107 @@ msgstr "לא יכול להעלות את הקובץ מכיוון שזו תקיה msgid "Upload Error" msgstr "שגיאת העלאה" -#: js/files.js:236 js/files.js:341 js/files.js:370 +#: js/files.js:236 js/files.js:341 js/files.js:371 msgid "Pending" msgstr "ממתין" -#: js/files.js:355 +#: js/files.js:256 +msgid "1 file uploading" +msgstr "" + +#: js/files.js:259 js/files.js:304 js/files.js:319 +msgid "files uploading" +msgstr "" + +#: js/files.js:322 js/files.js:355 msgid "Upload cancelled." msgstr "ההעלאה בוטלה." -#: js/files.js:423 +#: js/files.js:424 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:493 +#: js/files.js:494 msgid "Invalid name, '/' is not allowed." msgstr "שם לא חוקי, '/' אסור לשימוש." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:667 +msgid "files scanned" +msgstr "" + +#: js/files.js:675 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:48 +msgid "Name" +msgstr "שם" + +#: js/files.js:749 templates/index.php:56 msgid "Size" msgstr "גודל" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:750 templates/index.php:58 msgid "Modified" msgstr "זמן שינוי" -#: js/files.js:774 +#: js/files.js:777 msgid "folder" msgstr "תקיה" -#: js/files.js:776 +#: js/files.js:779 msgid "folders" msgstr "תקיות" -#: js/files.js:784 +#: js/files.js:787 msgid "file" msgstr "קובץ" -#: js/files.js:786 +#: js/files.js:789 msgid "files" msgstr "קבצים" +#: js/files.js:833 +msgid "seconds ago" +msgstr "" + +#: js/files.js:834 +msgid "minute ago" +msgstr "" + +#: js/files.js:835 +msgid "minutes ago" +msgstr "" + +#: js/files.js:838 +msgid "today" +msgstr "" + +#: js/files.js:839 +msgid "yesterday" +msgstr "" + +#: js/files.js:840 +msgid "days ago" +msgstr "" + +#: js/files.js:841 +msgid "last month" +msgstr "" + +#: js/files.js:843 +msgid "months ago" +msgstr "" + +#: js/files.js:844 +msgid "last year" +msgstr "" + +#: js/files.js:845 +msgid "years ago" +msgstr "" + #: templates/admin.php:5 msgid "File handling" msgstr "טיפול בקבצים" @@ -200,7 +264,7 @@ msgstr "תיקייה" msgid "From url" msgstr "מכתובת" -#: templates/index.php:21 +#: templates/index.php:20 msgid "Upload" msgstr "העלאה" @@ -212,10 +276,6 @@ msgstr "ביטול ההעלאה" msgid "Nothing in here. Upload something!" msgstr "אין כאן שום דבר. אולי ברצונך להעלות משהו?" -#: templates/index.php:48 -msgid "Name" -msgstr "שם" - #: templates/index.php:50 msgid "Share" msgstr "שיתוף" diff --git a/l10n/he/files_sharing.po b/l10n/he/files_sharing.po index 0e6dea4b5b..51347af93b 100644 --- a/l10n/he/files_sharing.po +++ b/l10n/he/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-04 23:20+0000\n" -"Last-Translator: Tomer Cohen \n" +"POT-Creation-Date: 2012-09-22 01:14+0200\n" +"PO-Revision-Date: 2012-09-21 23:15+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,14 +26,24 @@ msgstr "ססמה" msgid "Submit" msgstr "שליחה" -#: templates/public.php:9 templates/public.php:19 +#: templates/public.php:9 +#, php-format +msgid "%s shared the folder %s with you" +msgstr "" + +#: templates/public.php:11 +#, php-format +msgid "%s shared the file %s with you" +msgstr "" + +#: templates/public.php:14 templates/public.php:30 msgid "Download" msgstr "הורדה" -#: templates/public.php:18 +#: templates/public.php:29 msgid "No preview available for" msgstr "אין תצוגה מקדימה זמינה עבור" -#: templates/public.php:25 +#: templates/public.php:37 msgid "web services under your control" msgstr "שירותי רשת תחת השליטה שלך" diff --git a/l10n/he/files_versions.po b/l10n/he/files_versions.po index cb49463e16..20cfd9e737 100644 --- a/l10n/he/files_versions.po +++ b/l10n/he/files_versions.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" -"PO-Revision-Date: 2012-09-17 00:04+0000\n" +"POT-Creation-Date: 2012-09-22 01:14+0200\n" +"PO-Revision-Date: 2012-09-21 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -22,6 +22,10 @@ msgstr "" msgid "Expire all versions" msgstr "הפגת תוקף כל הגרסאות" +#: js/versions.js:16 +msgid "History" +msgstr "" + #: templates/settings-personal.php:4 msgid "Versions" msgstr "גרסאות" diff --git a/l10n/he/settings.po b/l10n/he/settings.po index b1857fd4bc..f92518c05e 100644 --- a/l10n/he/settings.po +++ b/l10n/he/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:03+0200\n" -"PO-Revision-Date: 2012-09-17 00:03+0000\n" +"POT-Creation-Date: 2012-09-19 02:02+0200\n" +"PO-Revision-Date: 2012-09-19 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -37,7 +37,7 @@ msgstr "" msgid "Unable to add group" msgstr "" -#: ajax/enableapp.php:13 +#: ajax/enableapp.php:14 msgid "Could not enable app. " msgstr "" @@ -79,15 +79,11 @@ msgstr "" msgid "Unable to remove user from group %s" msgstr "" -#: js/apps.js:18 -msgid "Error" -msgstr "" - -#: js/apps.js:39 js/apps.js:73 +#: js/apps.js:27 js/apps.js:61 msgid "Disable" msgstr "בטל" -#: js/apps.js:39 js/apps.js:62 +#: js/apps.js:27 js/apps.js:50 msgid "Enable" msgstr "הפעל" @@ -227,12 +223,9 @@ msgid "Answer" msgstr "מענה" #: templates/personal.php:8 -msgid "You use" -msgstr "הנך משתמש " - -#: templates/personal.php:8 -msgid "of the available" -msgstr "מתוך " +#, php-format +msgid "You have used %s of the available %s" +msgstr "" #: templates/personal.php:12 msgid "Desktop and Mobile Syncing Clients" @@ -243,8 +236,8 @@ msgid "Download" msgstr "הורדה" #: templates/personal.php:19 -msgid "Your password got changed" -msgstr "הססמה שלך שונתה" +msgid "Your password was changed" +msgstr "" #: templates/personal.php:20 msgid "Unable to change your password" diff --git a/l10n/hi/core.po b/l10n/hi/core.po index 67cd5aa9ff..b6cb8ef89b 100644 --- a/l10n/hi/core.po +++ b/l10n/hi/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -30,58 +30,62 @@ msgstr "" msgid "This category already exists: " msgstr "" -#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "" -#: js/js.js:593 +#: js/js.js:645 msgid "January" msgstr "" -#: js/js.js:593 +#: js/js.js:645 msgid "February" msgstr "" -#: js/js.js:593 +#: js/js.js:645 msgid "March" msgstr "" -#: js/js.js:593 +#: js/js.js:645 msgid "April" msgstr "" -#: js/js.js:593 +#: js/js.js:645 msgid "May" msgstr "" -#: js/js.js:593 +#: js/js.js:645 msgid "June" msgstr "" -#: js/js.js:594 +#: js/js.js:646 msgid "July" msgstr "" -#: js/js.js:594 +#: js/js.js:646 msgid "August" msgstr "" -#: js/js.js:594 +#: js/js.js:646 msgid "September" msgstr "" -#: js/js.js:594 +#: js/js.js:646 msgid "October" msgstr "" -#: js/js.js:594 +#: js/js.js:646 msgid "November" msgstr "" -#: js/js.js:594 +#: js/js.js:646 msgid "December" msgstr "" +#: js/oc-dialogs.js:123 +msgid "Choose" +msgstr "" + #: js/oc-dialogs.js:143 js/oc-dialogs.js:163 msgid "Cancel" msgstr "" @@ -102,10 +106,119 @@ msgstr "" msgid "No categories selected for deletion." msgstr "" -#: js/oc-vcategories.js:68 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 +#: js/share.js:501 msgid "Error" msgstr "" +#: js/share.js:103 +msgid "Error while sharing" +msgstr "" + +#: js/share.js:114 +msgid "Error while unsharing" +msgstr "" + +#: js/share.js:121 +msgid "Error while changing permissions" +msgstr "" + +#: js/share.js:130 +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" +msgstr "" + +#: js/share.js:132 +msgid "Shared with you by" +msgstr "" + +#: js/share.js:137 +msgid "Share with" +msgstr "" + +#: js/share.js:142 +msgid "Share with link" +msgstr "" + +#: js/share.js:143 +msgid "Password protect" +msgstr "" + +#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +msgid "Password" +msgstr "पासवर्ड" + +#: js/share.js:152 +msgid "Set expiration date" +msgstr "" + +#: js/share.js:153 +msgid "Expiration date" +msgstr "" + +#: js/share.js:185 +msgid "Share via email:" +msgstr "" + +#: js/share.js:187 +msgid "No people found" +msgstr "" + +#: js/share.js:214 +msgid "Resharing is not allowed" +msgstr "" + +#: js/share.js:250 +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" +msgstr "" + +#: js/share.js:271 +msgid "Unshare" +msgstr "" + +#: js/share.js:279 +msgid "can edit" +msgstr "" + +#: js/share.js:281 +msgid "access control" +msgstr "" + +#: js/share.js:284 +msgid "create" +msgstr "" + +#: js/share.js:287 +msgid "update" +msgstr "" + +#: js/share.js:290 +msgid "delete" +msgstr "" + +#: js/share.js:293 +msgid "share" +msgstr "" + +#: js/share.js:317 js/share.js:476 +msgid "Password protected" +msgstr "" + +#: js/share.js:489 +msgid "Error unsetting expiration date" +msgstr "" + +#: js/share.js:501 +msgid "Error setting expiration date" +msgstr "" + #: lostpassword/index.php:26 msgid "ownCloud password reset" msgstr "" @@ -191,10 +304,6 @@ msgstr "" msgid "Create an admin account" msgstr "व्यवस्थापक खाता बनाएँ" -#: templates/installation.php:30 templates/login.php:13 -msgid "Password" -msgstr "पासवर्ड" - #: templates/installation.php:36 msgid "Advanced" msgstr "उन्नत" @@ -236,11 +345,11 @@ msgstr "" msgid "Finish setup" msgstr "सेटअप समाप्त करे" -#: templates/layout.guest.php:42 +#: templates/layout.guest.php:36 msgid "web services under your control" msgstr "" -#: templates/layout.user.php:45 +#: templates/layout.user.php:34 msgid "Log out" msgstr "" diff --git a/l10n/hi/files.po b/l10n/hi/files.po index 238575d5e4..cc9c0f501f 100644 --- a/l10n/hi/files.po +++ b/l10n/hi/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-26 13:19+0200\n" +"PO-Revision-Date: 2012-09-26 11:20+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -59,39 +59,43 @@ msgstr "" msgid "Delete" msgstr "" -#: js/filelist.js:186 js/filelist.js:188 +#: js/fileactions.js:182 +msgid "Rename" +msgstr "" + +#: js/filelist.js:190 js/filelist.js:192 msgid "already exists" msgstr "" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "replace" msgstr "" -#: js/filelist.js:186 +#: js/filelist.js:190 msgid "suggest name" msgstr "" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "cancel" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 +#: js/filelist.js:239 js/filelist.js:241 msgid "replaced" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:239 js/filelist.js:241 js/filelist.js:273 js/filelist.js:275 msgid "undo" msgstr "" -#: js/filelist.js:237 +#: js/filelist.js:241 msgid "with" msgstr "" -#: js/filelist.js:268 +#: js/filelist.js:273 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:275 msgid "deleted" msgstr "" @@ -107,47 +111,107 @@ msgstr "" msgid "Upload Error" msgstr "" -#: js/files.js:236 js/files.js:341 js/files.js:370 +#: js/files.js:236 js/files.js:341 js/files.js:371 msgid "Pending" msgstr "" -#: js/files.js:355 +#: js/files.js:256 +msgid "1 file uploading" +msgstr "" + +#: js/files.js:259 js/files.js:304 js/files.js:319 +msgid "files uploading" +msgstr "" + +#: js/files.js:322 js/files.js:355 msgid "Upload cancelled." msgstr "" -#: js/files.js:423 +#: js/files.js:424 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:493 +#: js/files.js:494 msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:667 +msgid "files scanned" +msgstr "" + +#: js/files.js:675 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:48 +msgid "Name" +msgstr "" + +#: js/files.js:749 templates/index.php:56 msgid "Size" msgstr "" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:750 templates/index.php:58 msgid "Modified" msgstr "" -#: js/files.js:774 +#: js/files.js:777 msgid "folder" msgstr "" -#: js/files.js:776 +#: js/files.js:779 msgid "folders" msgstr "" -#: js/files.js:784 +#: js/files.js:787 msgid "file" msgstr "" -#: js/files.js:786 +#: js/files.js:789 msgid "files" msgstr "" +#: js/files.js:833 +msgid "seconds ago" +msgstr "" + +#: js/files.js:834 +msgid "minute ago" +msgstr "" + +#: js/files.js:835 +msgid "minutes ago" +msgstr "" + +#: js/files.js:838 +msgid "today" +msgstr "" + +#: js/files.js:839 +msgid "yesterday" +msgstr "" + +#: js/files.js:840 +msgid "days ago" +msgstr "" + +#: js/files.js:841 +msgid "last month" +msgstr "" + +#: js/files.js:843 +msgid "months ago" +msgstr "" + +#: js/files.js:844 +msgid "last year" +msgstr "" + +#: js/files.js:845 +msgid "years ago" +msgstr "" + #: templates/admin.php:5 msgid "File handling" msgstr "" @@ -196,7 +260,7 @@ msgstr "" msgid "From url" msgstr "" -#: templates/index.php:21 +#: templates/index.php:20 msgid "Upload" msgstr "" @@ -208,10 +272,6 @@ msgstr "" msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:48 -msgid "Name" -msgstr "" - #: templates/index.php:50 msgid "Share" msgstr "" diff --git a/l10n/hi/files_sharing.po b/l10n/hi/files_sharing.po index 2c1a5c6945..65e94288b4 100644 --- a/l10n/hi/files_sharing.po +++ b/l10n/hi/files_sharing.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:04+0000\n" +"POT-Creation-Date: 2012-09-22 01:14+0200\n" +"PO-Revision-Date: 2012-09-21 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: hi\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 msgid "Password" @@ -25,14 +25,24 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 templates/public.php:19 +#: templates/public.php:9 +#, php-format +msgid "%s shared the folder %s with you" +msgstr "" + +#: templates/public.php:11 +#, php-format +msgid "%s shared the file %s with you" +msgstr "" + +#: templates/public.php:14 templates/public.php:30 msgid "Download" msgstr "" -#: templates/public.php:18 +#: templates/public.php:29 msgid "No preview available for" msgstr "" -#: templates/public.php:23 +#: templates/public.php:37 msgid "web services under your control" msgstr "" diff --git a/l10n/hi/files_versions.po b/l10n/hi/files_versions.po index af2c20c4b4..1f21f8aca7 100644 --- a/l10n/hi/files_versions.po +++ b/l10n/hi/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" -"PO-Revision-Date: 2012-09-17 00:04+0000\n" +"POT-Creation-Date: 2012-09-22 01:14+0200\n" +"PO-Revision-Date: 2012-09-21 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -21,6 +21,10 @@ msgstr "" msgid "Expire all versions" msgstr "" +#: js/versions.js:16 +msgid "History" +msgstr "" + #: templates/settings-personal.php:4 msgid "Versions" msgstr "" diff --git a/l10n/hi/settings.po b/l10n/hi/settings.po index 1b137320ef..34276cb01c 100644 --- a/l10n/hi/settings.po +++ b/l10n/hi/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:03+0200\n" -"PO-Revision-Date: 2012-09-17 00:03+0000\n" +"POT-Creation-Date: 2012-09-19 02:02+0200\n" +"PO-Revision-Date: 2012-09-19 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -34,7 +34,7 @@ msgstr "" msgid "Unable to add group" msgstr "" -#: ajax/enableapp.php:13 +#: ajax/enableapp.php:14 msgid "Could not enable app. " msgstr "" @@ -76,15 +76,11 @@ msgstr "" msgid "Unable to remove user from group %s" msgstr "" -#: js/apps.js:18 -msgid "Error" -msgstr "" - -#: js/apps.js:39 js/apps.js:73 +#: js/apps.js:27 js/apps.js:61 msgid "Disable" msgstr "" -#: js/apps.js:39 js/apps.js:62 +#: js/apps.js:27 js/apps.js:50 msgid "Enable" msgstr "" @@ -224,11 +220,8 @@ msgid "Answer" msgstr "" #: templates/personal.php:8 -msgid "You use" -msgstr "" - -#: templates/personal.php:8 -msgid "of the available" +#, php-format +msgid "You have used %s of the available %s" msgstr "" #: templates/personal.php:12 @@ -240,7 +233,7 @@ msgid "Download" msgstr "" #: templates/personal.php:19 -msgid "Your password got changed" +msgid "Your password was changed" msgstr "" #: templates/personal.php:20 diff --git a/l10n/hr/core.po b/l10n/hr/core.po index 3c0fc97186..79c1221b88 100644 --- a/l10n/hr/core.po +++ b/l10n/hr/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -32,58 +32,62 @@ msgstr "Nemate kategorija koje možete dodati?" msgid "This category already exists: " msgstr "Ova kategorija već postoji: " -#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Postavke" -#: js/js.js:593 +#: js/js.js:645 msgid "January" msgstr "Siječanj" -#: js/js.js:593 +#: js/js.js:645 msgid "February" msgstr "Veljača" -#: js/js.js:593 +#: js/js.js:645 msgid "March" msgstr "Ožujak" -#: js/js.js:593 +#: js/js.js:645 msgid "April" msgstr "Travanj" -#: js/js.js:593 +#: js/js.js:645 msgid "May" msgstr "Svibanj" -#: js/js.js:593 +#: js/js.js:645 msgid "June" msgstr "Lipanj" -#: js/js.js:594 +#: js/js.js:646 msgid "July" msgstr "Srpanj" -#: js/js.js:594 +#: js/js.js:646 msgid "August" msgstr "Kolovoz" -#: js/js.js:594 +#: js/js.js:646 msgid "September" msgstr "Rujan" -#: js/js.js:594 +#: js/js.js:646 msgid "October" msgstr "Listopad" -#: js/js.js:594 +#: js/js.js:646 msgid "November" msgstr "Studeni" -#: js/js.js:594 +#: js/js.js:646 msgid "December" msgstr "Prosinac" +#: js/oc-dialogs.js:123 +msgid "Choose" +msgstr "" + #: js/oc-dialogs.js:143 js/oc-dialogs.js:163 msgid "Cancel" msgstr "Odustani" @@ -104,10 +108,119 @@ msgstr "U redu" msgid "No categories selected for deletion." msgstr "Nema odabranih kategorija za brisanje." -#: js/oc-vcategories.js:68 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 +#: js/share.js:501 msgid "Error" msgstr "Pogreška" +#: js/share.js:103 +msgid "Error while sharing" +msgstr "" + +#: js/share.js:114 +msgid "Error while unsharing" +msgstr "" + +#: js/share.js:121 +msgid "Error while changing permissions" +msgstr "" + +#: js/share.js:130 +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" +msgstr "" + +#: js/share.js:132 +msgid "Shared with you by" +msgstr "" + +#: js/share.js:137 +msgid "Share with" +msgstr "" + +#: js/share.js:142 +msgid "Share with link" +msgstr "" + +#: js/share.js:143 +msgid "Password protect" +msgstr "" + +#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +msgid "Password" +msgstr "Lozinka" + +#: js/share.js:152 +msgid "Set expiration date" +msgstr "" + +#: js/share.js:153 +msgid "Expiration date" +msgstr "" + +#: js/share.js:185 +msgid "Share via email:" +msgstr "" + +#: js/share.js:187 +msgid "No people found" +msgstr "" + +#: js/share.js:214 +msgid "Resharing is not allowed" +msgstr "" + +#: js/share.js:250 +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" +msgstr "" + +#: js/share.js:271 +msgid "Unshare" +msgstr "" + +#: js/share.js:279 +msgid "can edit" +msgstr "" + +#: js/share.js:281 +msgid "access control" +msgstr "" + +#: js/share.js:284 +msgid "create" +msgstr "" + +#: js/share.js:287 +msgid "update" +msgstr "" + +#: js/share.js:290 +msgid "delete" +msgstr "" + +#: js/share.js:293 +msgid "share" +msgstr "" + +#: js/share.js:317 js/share.js:476 +msgid "Password protected" +msgstr "" + +#: js/share.js:489 +msgid "Error unsetting expiration date" +msgstr "" + +#: js/share.js:501 +msgid "Error setting expiration date" +msgstr "" + #: lostpassword/index.php:26 msgid "ownCloud password reset" msgstr "ownCloud resetiranje lozinke" @@ -193,10 +306,6 @@ msgstr "Dodaj" msgid "Create an admin account" msgstr "Stvori administratorski račun" -#: templates/installation.php:30 templates/login.php:13 -msgid "Password" -msgstr "Lozinka" - #: templates/installation.php:36 msgid "Advanced" msgstr "Dodatno" @@ -238,11 +347,11 @@ msgstr "Poslužitelj baze podataka" msgid "Finish setup" msgstr "Završi postavljanje" -#: templates/layout.guest.php:42 +#: templates/layout.guest.php:36 msgid "web services under your control" msgstr "web usluge pod vašom kontrolom" -#: templates/layout.user.php:45 +#: templates/layout.user.php:34 msgid "Log out" msgstr "Odjava" diff --git a/l10n/hr/files.po b/l10n/hr/files.po index c7d3870a5a..9b97261662 100644 --- a/l10n/hr/files.po +++ b/l10n/hr/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-26 13:19+0200\n" +"PO-Revision-Date: 2012-09-26 11:20+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -62,39 +62,43 @@ msgstr "" msgid "Delete" msgstr "Briši" -#: js/filelist.js:186 js/filelist.js:188 +#: js/fileactions.js:182 +msgid "Rename" +msgstr "" + +#: js/filelist.js:190 js/filelist.js:192 msgid "already exists" msgstr "već postoji" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "replace" msgstr "zamjeni" -#: js/filelist.js:186 +#: js/filelist.js:190 msgid "suggest name" msgstr "" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "cancel" msgstr "odustani" -#: js/filelist.js:235 js/filelist.js:237 +#: js/filelist.js:239 js/filelist.js:241 msgid "replaced" msgstr "zamjenjeno" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:239 js/filelist.js:241 js/filelist.js:273 js/filelist.js:275 msgid "undo" msgstr "vrati" -#: js/filelist.js:237 +#: js/filelist.js:241 msgid "with" msgstr "sa" -#: js/filelist.js:268 +#: js/filelist.js:273 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:275 msgid "deleted" msgstr "izbrisano" @@ -110,47 +114,107 @@ msgstr "Nemoguće poslati datoteku jer je prazna ili je direktorij" msgid "Upload Error" msgstr "Pogreška pri slanju" -#: js/files.js:236 js/files.js:341 js/files.js:370 +#: js/files.js:236 js/files.js:341 js/files.js:371 msgid "Pending" msgstr "U tijeku" -#: js/files.js:355 +#: js/files.js:256 +msgid "1 file uploading" +msgstr "" + +#: js/files.js:259 js/files.js:304 js/files.js:319 +msgid "files uploading" +msgstr "" + +#: js/files.js:322 js/files.js:355 msgid "Upload cancelled." msgstr "Slanje poništeno." -#: js/files.js:423 +#: js/files.js:424 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:493 +#: js/files.js:494 msgid "Invalid name, '/' is not allowed." msgstr "Neispravan naziv, znak '/' nije dozvoljen." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:667 +msgid "files scanned" +msgstr "" + +#: js/files.js:675 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:48 +msgid "Name" +msgstr "Naziv" + +#: js/files.js:749 templates/index.php:56 msgid "Size" msgstr "Veličina" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:750 templates/index.php:58 msgid "Modified" msgstr "Zadnja promjena" -#: js/files.js:774 +#: js/files.js:777 msgid "folder" msgstr "mapa" -#: js/files.js:776 +#: js/files.js:779 msgid "folders" msgstr "mape" -#: js/files.js:784 +#: js/files.js:787 msgid "file" msgstr "datoteka" -#: js/files.js:786 +#: js/files.js:789 msgid "files" msgstr "datoteke" +#: js/files.js:833 +msgid "seconds ago" +msgstr "" + +#: js/files.js:834 +msgid "minute ago" +msgstr "" + +#: js/files.js:835 +msgid "minutes ago" +msgstr "" + +#: js/files.js:838 +msgid "today" +msgstr "" + +#: js/files.js:839 +msgid "yesterday" +msgstr "" + +#: js/files.js:840 +msgid "days ago" +msgstr "" + +#: js/files.js:841 +msgid "last month" +msgstr "" + +#: js/files.js:843 +msgid "months ago" +msgstr "" + +#: js/files.js:844 +msgid "last year" +msgstr "" + +#: js/files.js:845 +msgid "years ago" +msgstr "" + #: templates/admin.php:5 msgid "File handling" msgstr "datoteka za rukovanje" @@ -199,7 +263,7 @@ msgstr "mapa" msgid "From url" msgstr "od URL-a" -#: templates/index.php:21 +#: templates/index.php:20 msgid "Upload" msgstr "Pošalji" @@ -211,10 +275,6 @@ msgstr "Prekini upload" msgid "Nothing in here. Upload something!" msgstr "Nema ničega u ovoj mapi. Pošalji nešto!" -#: templates/index.php:48 -msgid "Name" -msgstr "Naziv" - #: templates/index.php:50 msgid "Share" msgstr "podjeli" diff --git a/l10n/hr/files_sharing.po b/l10n/hr/files_sharing.po index d104bf184a..90582fb737 100644 --- a/l10n/hr/files_sharing.po +++ b/l10n/hr/files_sharing.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:04+0000\n" +"POT-Creation-Date: 2012-09-22 01:14+0200\n" +"PO-Revision-Date: 2012-09-21 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: hr\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" #: templates/authenticate.php:4 msgid "Password" @@ -25,14 +25,24 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 templates/public.php:19 +#: templates/public.php:9 +#, php-format +msgid "%s shared the folder %s with you" +msgstr "" + +#: templates/public.php:11 +#, php-format +msgid "%s shared the file %s with you" +msgstr "" + +#: templates/public.php:14 templates/public.php:30 msgid "Download" msgstr "" -#: templates/public.php:18 +#: templates/public.php:29 msgid "No preview available for" msgstr "" -#: templates/public.php:23 +#: templates/public.php:37 msgid "web services under your control" msgstr "" diff --git a/l10n/hr/files_versions.po b/l10n/hr/files_versions.po index 4037662f02..557b211780 100644 --- a/l10n/hr/files_versions.po +++ b/l10n/hr/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" -"PO-Revision-Date: 2012-09-17 00:04+0000\n" +"POT-Creation-Date: 2012-09-22 01:14+0200\n" +"PO-Revision-Date: 2012-09-21 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -21,6 +21,10 @@ msgstr "" msgid "Expire all versions" msgstr "" +#: js/versions.js:16 +msgid "History" +msgstr "" + #: templates/settings-personal.php:4 msgid "Versions" msgstr "" diff --git a/l10n/hr/settings.po b/l10n/hr/settings.po index c6c42e6193..39c7bc61ee 100644 --- a/l10n/hr/settings.po +++ b/l10n/hr/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:03+0200\n" -"PO-Revision-Date: 2012-09-17 00:03+0000\n" +"POT-Creation-Date: 2012-09-19 02:02+0200\n" +"PO-Revision-Date: 2012-09-19 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -37,7 +37,7 @@ msgstr "" msgid "Unable to add group" msgstr "" -#: ajax/enableapp.php:13 +#: ajax/enableapp.php:14 msgid "Could not enable app. " msgstr "" @@ -79,15 +79,11 @@ msgstr "" msgid "Unable to remove user from group %s" msgstr "" -#: js/apps.js:18 -msgid "Error" -msgstr "Greška" - -#: js/apps.js:39 js/apps.js:73 +#: js/apps.js:27 js/apps.js:61 msgid "Disable" msgstr "Isključi" -#: js/apps.js:39 js/apps.js:62 +#: js/apps.js:27 js/apps.js:50 msgid "Enable" msgstr "Uključi" @@ -227,12 +223,9 @@ msgid "Answer" msgstr "Odgovor" #: templates/personal.php:8 -msgid "You use" -msgstr "Koristite" - -#: templates/personal.php:8 -msgid "of the available" -msgstr "od dostupno" +#, php-format +msgid "You have used %s of the available %s" +msgstr "" #: templates/personal.php:12 msgid "Desktop and Mobile Syncing Clients" @@ -243,8 +236,8 @@ msgid "Download" msgstr "preuzimanje" #: templates/personal.php:19 -msgid "Your password got changed" -msgstr "Vaša lozinka je promijenjena" +msgid "Your password was changed" +msgstr "" #: templates/personal.php:20 msgid "Unable to change your password" diff --git a/l10n/hu_HU/core.po b/l10n/hu_HU/core.po index 6d1680b032..0b0e753c08 100644 --- a/l10n/hu_HU/core.po +++ b/l10n/hu_HU/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -32,58 +32,62 @@ msgstr "Nincs hozzáadandó kategória?" msgid "This category already exists: " msgstr "Ez a kategória már létezik" -#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Beállítások" -#: js/js.js:593 +#: js/js.js:645 msgid "January" msgstr "Január" -#: js/js.js:593 +#: js/js.js:645 msgid "February" msgstr "Február" -#: js/js.js:593 +#: js/js.js:645 msgid "March" msgstr "Március" -#: js/js.js:593 +#: js/js.js:645 msgid "April" msgstr "Április" -#: js/js.js:593 +#: js/js.js:645 msgid "May" msgstr "Május" -#: js/js.js:593 +#: js/js.js:645 msgid "June" msgstr "Június" -#: js/js.js:594 +#: js/js.js:646 msgid "July" msgstr "Július" -#: js/js.js:594 +#: js/js.js:646 msgid "August" msgstr "Augusztus" -#: js/js.js:594 +#: js/js.js:646 msgid "September" msgstr "Szeptember" -#: js/js.js:594 +#: js/js.js:646 msgid "October" msgstr "Október" -#: js/js.js:594 +#: js/js.js:646 msgid "November" msgstr "November" -#: js/js.js:594 +#: js/js.js:646 msgid "December" msgstr "December" +#: js/oc-dialogs.js:123 +msgid "Choose" +msgstr "" + #: js/oc-dialogs.js:143 js/oc-dialogs.js:163 msgid "Cancel" msgstr "Mégse" @@ -104,10 +108,119 @@ msgstr "Ok" msgid "No categories selected for deletion." msgstr "Nincs törlésre jelölt kategória" -#: js/oc-vcategories.js:68 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 +#: js/share.js:501 msgid "Error" msgstr "Hiba" +#: js/share.js:103 +msgid "Error while sharing" +msgstr "" + +#: js/share.js:114 +msgid "Error while unsharing" +msgstr "" + +#: js/share.js:121 +msgid "Error while changing permissions" +msgstr "" + +#: js/share.js:130 +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" +msgstr "" + +#: js/share.js:132 +msgid "Shared with you by" +msgstr "" + +#: js/share.js:137 +msgid "Share with" +msgstr "" + +#: js/share.js:142 +msgid "Share with link" +msgstr "" + +#: js/share.js:143 +msgid "Password protect" +msgstr "" + +#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +msgid "Password" +msgstr "Jelszó" + +#: js/share.js:152 +msgid "Set expiration date" +msgstr "" + +#: js/share.js:153 +msgid "Expiration date" +msgstr "" + +#: js/share.js:185 +msgid "Share via email:" +msgstr "" + +#: js/share.js:187 +msgid "No people found" +msgstr "" + +#: js/share.js:214 +msgid "Resharing is not allowed" +msgstr "" + +#: js/share.js:250 +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" +msgstr "" + +#: js/share.js:271 +msgid "Unshare" +msgstr "" + +#: js/share.js:279 +msgid "can edit" +msgstr "" + +#: js/share.js:281 +msgid "access control" +msgstr "" + +#: js/share.js:284 +msgid "create" +msgstr "" + +#: js/share.js:287 +msgid "update" +msgstr "" + +#: js/share.js:290 +msgid "delete" +msgstr "" + +#: js/share.js:293 +msgid "share" +msgstr "" + +#: js/share.js:317 js/share.js:476 +msgid "Password protected" +msgstr "" + +#: js/share.js:489 +msgid "Error unsetting expiration date" +msgstr "" + +#: js/share.js:501 +msgid "Error setting expiration date" +msgstr "" + #: lostpassword/index.php:26 msgid "ownCloud password reset" msgstr "ownCloud jelszó-visszaállítás" @@ -193,10 +306,6 @@ msgstr "Hozzáadás" msgid "Create an admin account" msgstr "Rendszergazdafiók létrehozása" -#: templates/installation.php:30 templates/login.php:13 -msgid "Password" -msgstr "Jelszó" - #: templates/installation.php:36 msgid "Advanced" msgstr "Haladó" @@ -238,11 +347,11 @@ msgstr "Adatbázis szerver" msgid "Finish setup" msgstr "Beállítás befejezése" -#: templates/layout.guest.php:42 +#: templates/layout.guest.php:36 msgid "web services under your control" msgstr "webszolgáltatások az irányításod alatt" -#: templates/layout.user.php:45 +#: templates/layout.user.php:34 msgid "Log out" msgstr "Kilépés" diff --git a/l10n/hu_HU/files.po b/l10n/hu_HU/files.po index 09722e3871..bd28c3b21e 100644 --- a/l10n/hu_HU/files.po +++ b/l10n/hu_HU/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-26 13:19+0200\n" +"PO-Revision-Date: 2012-09-26 11:20+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -62,39 +62,43 @@ msgstr "" msgid "Delete" msgstr "Törlés" -#: js/filelist.js:186 js/filelist.js:188 +#: js/fileactions.js:182 +msgid "Rename" +msgstr "" + +#: js/filelist.js:190 js/filelist.js:192 msgid "already exists" msgstr "már létezik" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "replace" msgstr "cserél" -#: js/filelist.js:186 +#: js/filelist.js:190 msgid "suggest name" msgstr "" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "cancel" msgstr "mégse" -#: js/filelist.js:235 js/filelist.js:237 +#: js/filelist.js:239 js/filelist.js:241 msgid "replaced" msgstr "kicserélve" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:239 js/filelist.js:241 js/filelist.js:273 js/filelist.js:275 msgid "undo" msgstr "visszavon" -#: js/filelist.js:237 +#: js/filelist.js:241 msgid "with" msgstr "-val/-vel" -#: js/filelist.js:268 +#: js/filelist.js:273 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:275 msgid "deleted" msgstr "törölve" @@ -110,47 +114,107 @@ msgstr "Nem tölthető fel, mert mappa volt, vagy 0 byte méretű" msgid "Upload Error" msgstr "Feltöltési hiba" -#: js/files.js:236 js/files.js:341 js/files.js:370 +#: js/files.js:236 js/files.js:341 js/files.js:371 msgid "Pending" msgstr "Folyamatban" -#: js/files.js:355 +#: js/files.js:256 +msgid "1 file uploading" +msgstr "" + +#: js/files.js:259 js/files.js:304 js/files.js:319 +msgid "files uploading" +msgstr "" + +#: js/files.js:322 js/files.js:355 msgid "Upload cancelled." msgstr "Feltöltés megszakítva" -#: js/files.js:423 +#: js/files.js:424 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:493 +#: js/files.js:494 msgid "Invalid name, '/' is not allowed." msgstr "Érvénytelen név, a '/' nem megengedett" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:667 +msgid "files scanned" +msgstr "" + +#: js/files.js:675 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:48 +msgid "Name" +msgstr "Név" + +#: js/files.js:749 templates/index.php:56 msgid "Size" msgstr "Méret" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:750 templates/index.php:58 msgid "Modified" msgstr "Módosítva" -#: js/files.js:774 +#: js/files.js:777 msgid "folder" msgstr "mappa" -#: js/files.js:776 +#: js/files.js:779 msgid "folders" msgstr "mappák" -#: js/files.js:784 +#: js/files.js:787 msgid "file" msgstr "fájl" -#: js/files.js:786 +#: js/files.js:789 msgid "files" msgstr "fájlok" +#: js/files.js:833 +msgid "seconds ago" +msgstr "" + +#: js/files.js:834 +msgid "minute ago" +msgstr "" + +#: js/files.js:835 +msgid "minutes ago" +msgstr "" + +#: js/files.js:838 +msgid "today" +msgstr "" + +#: js/files.js:839 +msgid "yesterday" +msgstr "" + +#: js/files.js:840 +msgid "days ago" +msgstr "" + +#: js/files.js:841 +msgid "last month" +msgstr "" + +#: js/files.js:843 +msgid "months ago" +msgstr "" + +#: js/files.js:844 +msgid "last year" +msgstr "" + +#: js/files.js:845 +msgid "years ago" +msgstr "" + #: templates/admin.php:5 msgid "File handling" msgstr "Fájlkezelés" @@ -199,7 +263,7 @@ msgstr "Mappa" msgid "From url" msgstr "URL-ből" -#: templates/index.php:21 +#: templates/index.php:20 msgid "Upload" msgstr "Feltöltés" @@ -211,10 +275,6 @@ msgstr "Feltöltés megszakítása" msgid "Nothing in here. Upload something!" msgstr "Töltsön fel egy fájlt." -#: templates/index.php:48 -msgid "Name" -msgstr "Név" - #: templates/index.php:50 msgid "Share" msgstr "Megosztás" diff --git a/l10n/hu_HU/files_sharing.po b/l10n/hu_HU/files_sharing.po index 11d84d4a40..4379b279a6 100644 --- a/l10n/hu_HU/files_sharing.po +++ b/l10n/hu_HU/files_sharing.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-22 01:14+0200\n" +"PO-Revision-Date: 2012-09-21 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: hu_HU\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 msgid "Password" @@ -26,14 +26,24 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 templates/public.php:19 +#: templates/public.php:9 +#, php-format +msgid "%s shared the folder %s with you" +msgstr "" + +#: templates/public.php:11 +#, php-format +msgid "%s shared the file %s with you" +msgstr "" + +#: templates/public.php:14 templates/public.php:30 msgid "Download" msgstr "" -#: templates/public.php:18 +#: templates/public.php:29 msgid "No preview available for" msgstr "" -#: templates/public.php:23 +#: templates/public.php:37 msgid "web services under your control" msgstr "" diff --git a/l10n/hu_HU/files_versions.po b/l10n/hu_HU/files_versions.po index fa823d968f..b55e474da7 100644 --- a/l10n/hu_HU/files_versions.po +++ b/l10n/hu_HU/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" -"PO-Revision-Date: 2012-09-17 00:04+0000\n" +"POT-Creation-Date: 2012-09-22 01:14+0200\n" +"PO-Revision-Date: 2012-09-21 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -21,6 +21,10 @@ msgstr "" msgid "Expire all versions" msgstr "" +#: js/versions.js:16 +msgid "History" +msgstr "" + #: templates/settings-personal.php:4 msgid "Versions" msgstr "" diff --git a/l10n/hu_HU/settings.po b/l10n/hu_HU/settings.po index 1554df638c..1da66e2854 100644 --- a/l10n/hu_HU/settings.po +++ b/l10n/hu_HU/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:03+0200\n" -"PO-Revision-Date: 2012-09-17 00:03+0000\n" +"POT-Creation-Date: 2012-09-19 02:02+0200\n" +"PO-Revision-Date: 2012-09-19 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -36,7 +36,7 @@ msgstr "" msgid "Unable to add group" msgstr "" -#: ajax/enableapp.php:13 +#: ajax/enableapp.php:14 msgid "Could not enable app. " msgstr "" @@ -78,15 +78,11 @@ msgstr "" msgid "Unable to remove user from group %s" msgstr "" -#: js/apps.js:18 -msgid "Error" -msgstr "Hiba" - -#: js/apps.js:39 js/apps.js:73 +#: js/apps.js:27 js/apps.js:61 msgid "Disable" msgstr "Letiltás" -#: js/apps.js:39 js/apps.js:62 +#: js/apps.js:27 js/apps.js:50 msgid "Enable" msgstr "Engedélyezés" @@ -226,12 +222,9 @@ msgid "Answer" msgstr "Válasz" #: templates/personal.php:8 -msgid "You use" -msgstr "Használatban: " - -#: templates/personal.php:8 -msgid "of the available" -msgstr ", rendelkezésre áll: " +#, php-format +msgid "You have used %s of the available %s" +msgstr "" #: templates/personal.php:12 msgid "Desktop and Mobile Syncing Clients" @@ -242,8 +235,8 @@ msgid "Download" msgstr "Letöltés" #: templates/personal.php:19 -msgid "Your password got changed" -msgstr "A jelszavad megváltozott" +msgid "Your password was changed" +msgstr "" #: templates/personal.php:20 msgid "Unable to change your password" diff --git a/l10n/hy/core.po b/l10n/hy/core.po index bd1b74571d..7a03a8bcd2 100644 --- a/l10n/hy/core.po +++ b/l10n/hy/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+0000\n" "Last-Translator: I Robot \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" @@ -29,58 +29,62 @@ msgstr "" msgid "This category already exists: " msgstr "" -#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "" -#: js/js.js:593 +#: js/js.js:645 msgid "January" msgstr "" -#: js/js.js:593 +#: js/js.js:645 msgid "February" msgstr "" -#: js/js.js:593 +#: js/js.js:645 msgid "March" msgstr "" -#: js/js.js:593 +#: js/js.js:645 msgid "April" msgstr "" -#: js/js.js:593 +#: js/js.js:645 msgid "May" msgstr "" -#: js/js.js:593 +#: js/js.js:645 msgid "June" msgstr "" -#: js/js.js:594 +#: js/js.js:646 msgid "July" msgstr "" -#: js/js.js:594 +#: js/js.js:646 msgid "August" msgstr "" -#: js/js.js:594 +#: js/js.js:646 msgid "September" msgstr "" -#: js/js.js:594 +#: js/js.js:646 msgid "October" msgstr "" -#: js/js.js:594 +#: js/js.js:646 msgid "November" msgstr "" -#: js/js.js:594 +#: js/js.js:646 msgid "December" msgstr "" +#: js/oc-dialogs.js:123 +msgid "Choose" +msgstr "" + #: js/oc-dialogs.js:143 js/oc-dialogs.js:163 msgid "Cancel" msgstr "" @@ -101,10 +105,119 @@ msgstr "" msgid "No categories selected for deletion." msgstr "" -#: js/oc-vcategories.js:68 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 +#: js/share.js:501 msgid "Error" msgstr "" +#: js/share.js:103 +msgid "Error while sharing" +msgstr "" + +#: js/share.js:114 +msgid "Error while unsharing" +msgstr "" + +#: js/share.js:121 +msgid "Error while changing permissions" +msgstr "" + +#: js/share.js:130 +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" +msgstr "" + +#: js/share.js:132 +msgid "Shared with you by" +msgstr "" + +#: js/share.js:137 +msgid "Share with" +msgstr "" + +#: js/share.js:142 +msgid "Share with link" +msgstr "" + +#: js/share.js:143 +msgid "Password protect" +msgstr "" + +#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +msgid "Password" +msgstr "" + +#: js/share.js:152 +msgid "Set expiration date" +msgstr "" + +#: js/share.js:153 +msgid "Expiration date" +msgstr "" + +#: js/share.js:185 +msgid "Share via email:" +msgstr "" + +#: js/share.js:187 +msgid "No people found" +msgstr "" + +#: js/share.js:214 +msgid "Resharing is not allowed" +msgstr "" + +#: js/share.js:250 +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" +msgstr "" + +#: js/share.js:271 +msgid "Unshare" +msgstr "" + +#: js/share.js:279 +msgid "can edit" +msgstr "" + +#: js/share.js:281 +msgid "access control" +msgstr "" + +#: js/share.js:284 +msgid "create" +msgstr "" + +#: js/share.js:287 +msgid "update" +msgstr "" + +#: js/share.js:290 +msgid "delete" +msgstr "" + +#: js/share.js:293 +msgid "share" +msgstr "" + +#: js/share.js:317 js/share.js:476 +msgid "Password protected" +msgstr "" + +#: js/share.js:489 +msgid "Error unsetting expiration date" +msgstr "" + +#: js/share.js:501 +msgid "Error setting expiration date" +msgstr "" + #: lostpassword/index.php:26 msgid "ownCloud password reset" msgstr "" @@ -190,10 +303,6 @@ msgstr "" msgid "Create an admin account" msgstr "" -#: templates/installation.php:30 templates/login.php:13 -msgid "Password" -msgstr "" - #: templates/installation.php:36 msgid "Advanced" msgstr "" @@ -235,11 +344,11 @@ msgstr "" msgid "Finish setup" msgstr "" -#: templates/layout.guest.php:42 +#: templates/layout.guest.php:36 msgid "web services under your control" msgstr "" -#: templates/layout.user.php:45 +#: templates/layout.user.php:34 msgid "Log out" msgstr "" diff --git a/l10n/hy/files.po b/l10n/hy/files.po index 9a144a8130..c512f61b78 100644 --- a/l10n/hy/files.po +++ b/l10n/hy/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-26 13:19+0200\n" +"PO-Revision-Date: 2012-09-26 11:20+0000\n" "Last-Translator: I Robot \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" @@ -59,39 +59,43 @@ msgstr "" msgid "Delete" msgstr "" -#: js/filelist.js:186 js/filelist.js:188 +#: js/fileactions.js:182 +msgid "Rename" +msgstr "" + +#: js/filelist.js:190 js/filelist.js:192 msgid "already exists" msgstr "" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "replace" msgstr "" -#: js/filelist.js:186 +#: js/filelist.js:190 msgid "suggest name" msgstr "" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "cancel" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 +#: js/filelist.js:239 js/filelist.js:241 msgid "replaced" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:239 js/filelist.js:241 js/filelist.js:273 js/filelist.js:275 msgid "undo" msgstr "" -#: js/filelist.js:237 +#: js/filelist.js:241 msgid "with" msgstr "" -#: js/filelist.js:268 +#: js/filelist.js:273 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:275 msgid "deleted" msgstr "" @@ -107,47 +111,107 @@ msgstr "" msgid "Upload Error" msgstr "" -#: js/files.js:236 js/files.js:341 js/files.js:370 +#: js/files.js:236 js/files.js:341 js/files.js:371 msgid "Pending" msgstr "" -#: js/files.js:355 +#: js/files.js:256 +msgid "1 file uploading" +msgstr "" + +#: js/files.js:259 js/files.js:304 js/files.js:319 +msgid "files uploading" +msgstr "" + +#: js/files.js:322 js/files.js:355 msgid "Upload cancelled." msgstr "" -#: js/files.js:423 +#: js/files.js:424 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:493 +#: js/files.js:494 msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:667 +msgid "files scanned" +msgstr "" + +#: js/files.js:675 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:48 +msgid "Name" +msgstr "" + +#: js/files.js:749 templates/index.php:56 msgid "Size" msgstr "" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:750 templates/index.php:58 msgid "Modified" msgstr "" -#: js/files.js:774 +#: js/files.js:777 msgid "folder" msgstr "" -#: js/files.js:776 +#: js/files.js:779 msgid "folders" msgstr "" -#: js/files.js:784 +#: js/files.js:787 msgid "file" msgstr "" -#: js/files.js:786 +#: js/files.js:789 msgid "files" msgstr "" +#: js/files.js:833 +msgid "seconds ago" +msgstr "" + +#: js/files.js:834 +msgid "minute ago" +msgstr "" + +#: js/files.js:835 +msgid "minutes ago" +msgstr "" + +#: js/files.js:838 +msgid "today" +msgstr "" + +#: js/files.js:839 +msgid "yesterday" +msgstr "" + +#: js/files.js:840 +msgid "days ago" +msgstr "" + +#: js/files.js:841 +msgid "last month" +msgstr "" + +#: js/files.js:843 +msgid "months ago" +msgstr "" + +#: js/files.js:844 +msgid "last year" +msgstr "" + +#: js/files.js:845 +msgid "years ago" +msgstr "" + #: templates/admin.php:5 msgid "File handling" msgstr "" @@ -196,7 +260,7 @@ msgstr "" msgid "From url" msgstr "" -#: templates/index.php:21 +#: templates/index.php:20 msgid "Upload" msgstr "" @@ -208,10 +272,6 @@ msgstr "" msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:48 -msgid "Name" -msgstr "" - #: templates/index.php:50 msgid "Share" msgstr "" diff --git a/l10n/hy/files_sharing.po b/l10n/hy/files_sharing.po index b21d68c683..8d83b7805c 100644 --- a/l10n/hy/files_sharing.po +++ b/l10n/hy/files_sharing.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-22 01:14+0200\n" +"PO-Revision-Date: 2012-09-21 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: hy\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 msgid "Password" @@ -25,14 +25,24 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 templates/public.php:19 +#: templates/public.php:9 +#, php-format +msgid "%s shared the folder %s with you" +msgstr "" + +#: templates/public.php:11 +#, php-format +msgid "%s shared the file %s with you" +msgstr "" + +#: templates/public.php:14 templates/public.php:30 msgid "Download" msgstr "" -#: templates/public.php:18 +#: templates/public.php:29 msgid "No preview available for" msgstr "" -#: templates/public.php:23 +#: templates/public.php:37 msgid "web services under your control" msgstr "" diff --git a/l10n/hy/files_versions.po b/l10n/hy/files_versions.po index 54fa5d6e19..4caf1f1827 100644 --- a/l10n/hy/files_versions.po +++ b/l10n/hy/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" -"PO-Revision-Date: 2012-09-17 00:04+0000\n" +"POT-Creation-Date: 2012-09-22 01:14+0200\n" +"PO-Revision-Date: 2012-09-21 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" @@ -21,6 +21,10 @@ msgstr "" msgid "Expire all versions" msgstr "" +#: js/versions.js:16 +msgid "History" +msgstr "" + #: templates/settings-personal.php:4 msgid "Versions" msgstr "" diff --git a/l10n/hy/settings.po b/l10n/hy/settings.po index 3698a77bef..19c237b32a 100644 --- a/l10n/hy/settings.po +++ b/l10n/hy/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:03+0200\n" -"PO-Revision-Date: 2012-09-17 00:03+0000\n" +"POT-Creation-Date: 2012-09-19 02:02+0200\n" +"PO-Revision-Date: 2012-09-19 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" @@ -34,7 +34,7 @@ msgstr "" msgid "Unable to add group" msgstr "" -#: ajax/enableapp.php:13 +#: ajax/enableapp.php:14 msgid "Could not enable app. " msgstr "" @@ -76,15 +76,11 @@ msgstr "" msgid "Unable to remove user from group %s" msgstr "" -#: js/apps.js:18 -msgid "Error" -msgstr "" - -#: js/apps.js:39 js/apps.js:73 +#: js/apps.js:27 js/apps.js:61 msgid "Disable" msgstr "" -#: js/apps.js:39 js/apps.js:62 +#: js/apps.js:27 js/apps.js:50 msgid "Enable" msgstr "" @@ -224,11 +220,8 @@ msgid "Answer" msgstr "" #: templates/personal.php:8 -msgid "You use" -msgstr "" - -#: templates/personal.php:8 -msgid "of the available" +#, php-format +msgid "You have used %s of the available %s" msgstr "" #: templates/personal.php:12 @@ -240,7 +233,7 @@ msgid "Download" msgstr "" #: templates/personal.php:19 -msgid "Your password got changed" +msgid "Your password was changed" msgstr "" #: templates/personal.php:20 diff --git a/l10n/ia/core.po b/l10n/ia/core.po index 100482b024..76ea29ba15 100644 --- a/l10n/ia/core.po +++ b/l10n/ia/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -30,58 +30,62 @@ msgstr "" msgid "This category already exists: " msgstr "Iste categoria jam existe:" -#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Configurationes" -#: js/js.js:593 +#: js/js.js:645 msgid "January" msgstr "" -#: js/js.js:593 +#: js/js.js:645 msgid "February" msgstr "" -#: js/js.js:593 +#: js/js.js:645 msgid "March" msgstr "" -#: js/js.js:593 +#: js/js.js:645 msgid "April" msgstr "" -#: js/js.js:593 +#: js/js.js:645 msgid "May" msgstr "" -#: js/js.js:593 +#: js/js.js:645 msgid "June" msgstr "" -#: js/js.js:594 +#: js/js.js:646 msgid "July" msgstr "" -#: js/js.js:594 +#: js/js.js:646 msgid "August" msgstr "" -#: js/js.js:594 +#: js/js.js:646 msgid "September" msgstr "" -#: js/js.js:594 +#: js/js.js:646 msgid "October" msgstr "" -#: js/js.js:594 +#: js/js.js:646 msgid "November" msgstr "" -#: js/js.js:594 +#: js/js.js:646 msgid "December" msgstr "" +#: js/oc-dialogs.js:123 +msgid "Choose" +msgstr "" + #: js/oc-dialogs.js:143 js/oc-dialogs.js:163 msgid "Cancel" msgstr "" @@ -102,10 +106,119 @@ msgstr "" msgid "No categories selected for deletion." msgstr "" -#: js/oc-vcategories.js:68 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 +#: js/share.js:501 msgid "Error" msgstr "" +#: js/share.js:103 +msgid "Error while sharing" +msgstr "" + +#: js/share.js:114 +msgid "Error while unsharing" +msgstr "" + +#: js/share.js:121 +msgid "Error while changing permissions" +msgstr "" + +#: js/share.js:130 +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" +msgstr "" + +#: js/share.js:132 +msgid "Shared with you by" +msgstr "" + +#: js/share.js:137 +msgid "Share with" +msgstr "" + +#: js/share.js:142 +msgid "Share with link" +msgstr "" + +#: js/share.js:143 +msgid "Password protect" +msgstr "" + +#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +msgid "Password" +msgstr "Contrasigno" + +#: js/share.js:152 +msgid "Set expiration date" +msgstr "" + +#: js/share.js:153 +msgid "Expiration date" +msgstr "" + +#: js/share.js:185 +msgid "Share via email:" +msgstr "" + +#: js/share.js:187 +msgid "No people found" +msgstr "" + +#: js/share.js:214 +msgid "Resharing is not allowed" +msgstr "" + +#: js/share.js:250 +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" +msgstr "" + +#: js/share.js:271 +msgid "Unshare" +msgstr "" + +#: js/share.js:279 +msgid "can edit" +msgstr "" + +#: js/share.js:281 +msgid "access control" +msgstr "" + +#: js/share.js:284 +msgid "create" +msgstr "" + +#: js/share.js:287 +msgid "update" +msgstr "" + +#: js/share.js:290 +msgid "delete" +msgstr "" + +#: js/share.js:293 +msgid "share" +msgstr "" + +#: js/share.js:317 js/share.js:476 +msgid "Password protected" +msgstr "" + +#: js/share.js:489 +msgid "Error unsetting expiration date" +msgstr "" + +#: js/share.js:501 +msgid "Error setting expiration date" +msgstr "" + #: lostpassword/index.php:26 msgid "ownCloud password reset" msgstr "Reinitialisation del contrasigno de ownCLoud" @@ -191,10 +304,6 @@ msgstr "Adder" msgid "Create an admin account" msgstr "Crear un conto de administration" -#: templates/installation.php:30 templates/login.php:13 -msgid "Password" -msgstr "Contrasigno" - #: templates/installation.php:36 msgid "Advanced" msgstr "Avantiate" @@ -236,11 +345,11 @@ msgstr "Hospite de base de datos" msgid "Finish setup" msgstr "" -#: templates/layout.guest.php:42 +#: templates/layout.guest.php:36 msgid "web services under your control" msgstr "servicios web sub tu controlo" -#: templates/layout.user.php:45 +#: templates/layout.user.php:34 msgid "Log out" msgstr "Clauder le session" diff --git a/l10n/ia/files.po b/l10n/ia/files.po index cdce2e1a66..193354c48b 100644 --- a/l10n/ia/files.po +++ b/l10n/ia/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-26 13:19+0200\n" +"PO-Revision-Date: 2012-09-26 11:20+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -61,39 +61,43 @@ msgstr "" msgid "Delete" msgstr "Deler" -#: js/filelist.js:186 js/filelist.js:188 +#: js/fileactions.js:182 +msgid "Rename" +msgstr "" + +#: js/filelist.js:190 js/filelist.js:192 msgid "already exists" msgstr "" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "replace" msgstr "" -#: js/filelist.js:186 +#: js/filelist.js:190 msgid "suggest name" msgstr "" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "cancel" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 +#: js/filelist.js:239 js/filelist.js:241 msgid "replaced" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:239 js/filelist.js:241 js/filelist.js:273 js/filelist.js:275 msgid "undo" msgstr "" -#: js/filelist.js:237 +#: js/filelist.js:241 msgid "with" msgstr "" -#: js/filelist.js:268 +#: js/filelist.js:273 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:275 msgid "deleted" msgstr "" @@ -109,47 +113,107 @@ msgstr "" msgid "Upload Error" msgstr "" -#: js/files.js:236 js/files.js:341 js/files.js:370 +#: js/files.js:236 js/files.js:341 js/files.js:371 msgid "Pending" msgstr "" -#: js/files.js:355 +#: js/files.js:256 +msgid "1 file uploading" +msgstr "" + +#: js/files.js:259 js/files.js:304 js/files.js:319 +msgid "files uploading" +msgstr "" + +#: js/files.js:322 js/files.js:355 msgid "Upload cancelled." msgstr "" -#: js/files.js:423 +#: js/files.js:424 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:493 +#: js/files.js:494 msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:667 +msgid "files scanned" +msgstr "" + +#: js/files.js:675 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:48 +msgid "Name" +msgstr "Nomine" + +#: js/files.js:749 templates/index.php:56 msgid "Size" msgstr "Dimension" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:750 templates/index.php:58 msgid "Modified" msgstr "Modificate" -#: js/files.js:774 +#: js/files.js:777 msgid "folder" msgstr "" -#: js/files.js:776 +#: js/files.js:779 msgid "folders" msgstr "" -#: js/files.js:784 +#: js/files.js:787 msgid "file" msgstr "" -#: js/files.js:786 +#: js/files.js:789 msgid "files" msgstr "" +#: js/files.js:833 +msgid "seconds ago" +msgstr "" + +#: js/files.js:834 +msgid "minute ago" +msgstr "" + +#: js/files.js:835 +msgid "minutes ago" +msgstr "" + +#: js/files.js:838 +msgid "today" +msgstr "" + +#: js/files.js:839 +msgid "yesterday" +msgstr "" + +#: js/files.js:840 +msgid "days ago" +msgstr "" + +#: js/files.js:841 +msgid "last month" +msgstr "" + +#: js/files.js:843 +msgid "months ago" +msgstr "" + +#: js/files.js:844 +msgid "last year" +msgstr "" + +#: js/files.js:845 +msgid "years ago" +msgstr "" + #: templates/admin.php:5 msgid "File handling" msgstr "" @@ -198,7 +262,7 @@ msgstr "Dossier" msgid "From url" msgstr "" -#: templates/index.php:21 +#: templates/index.php:20 msgid "Upload" msgstr "Incargar" @@ -210,10 +274,6 @@ msgstr "" msgid "Nothing in here. Upload something!" msgstr "Nihil hic. Incarga alcun cosa!" -#: templates/index.php:48 -msgid "Name" -msgstr "Nomine" - #: templates/index.php:50 msgid "Share" msgstr "" diff --git a/l10n/ia/files_sharing.po b/l10n/ia/files_sharing.po index 2c01e0d398..05ecbbb146 100644 --- a/l10n/ia/files_sharing.po +++ b/l10n/ia/files_sharing.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-22 01:14+0200\n" +"PO-Revision-Date: 2012-09-21 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ia\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 msgid "Password" @@ -25,14 +25,24 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 templates/public.php:19 +#: templates/public.php:9 +#, php-format +msgid "%s shared the folder %s with you" +msgstr "" + +#: templates/public.php:11 +#, php-format +msgid "%s shared the file %s with you" +msgstr "" + +#: templates/public.php:14 templates/public.php:30 msgid "Download" msgstr "" -#: templates/public.php:18 +#: templates/public.php:29 msgid "No preview available for" msgstr "" -#: templates/public.php:23 +#: templates/public.php:37 msgid "web services under your control" msgstr "" diff --git a/l10n/ia/files_versions.po b/l10n/ia/files_versions.po index 123a9945da..d0287f45ff 100644 --- a/l10n/ia/files_versions.po +++ b/l10n/ia/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" -"PO-Revision-Date: 2012-09-17 00:04+0000\n" +"POT-Creation-Date: 2012-09-22 01:14+0200\n" +"PO-Revision-Date: 2012-09-21 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -21,6 +21,10 @@ msgstr "" msgid "Expire all versions" msgstr "" +#: js/versions.js:16 +msgid "History" +msgstr "" + #: templates/settings-personal.php:4 msgid "Versions" msgstr "" diff --git a/l10n/ia/settings.po b/l10n/ia/settings.po index 14db6bd79c..6255220541 100644 --- a/l10n/ia/settings.po +++ b/l10n/ia/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:03+0200\n" -"PO-Revision-Date: 2012-09-17 00:03+0000\n" +"POT-Creation-Date: 2012-09-19 02:02+0200\n" +"PO-Revision-Date: 2012-09-19 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -36,7 +36,7 @@ msgstr "" msgid "Unable to add group" msgstr "" -#: ajax/enableapp.php:13 +#: ajax/enableapp.php:14 msgid "Could not enable app. " msgstr "" @@ -78,15 +78,11 @@ msgstr "" msgid "Unable to remove user from group %s" msgstr "" -#: js/apps.js:18 -msgid "Error" -msgstr "" - -#: js/apps.js:39 js/apps.js:73 +#: js/apps.js:27 js/apps.js:61 msgid "Disable" msgstr "" -#: js/apps.js:39 js/apps.js:62 +#: js/apps.js:27 js/apps.js:50 msgid "Enable" msgstr "" @@ -226,12 +222,9 @@ msgid "Answer" msgstr "Responsa" #: templates/personal.php:8 -msgid "You use" -msgstr "Tu usa" - -#: templates/personal.php:8 -msgid "of the available" -msgstr "del disponibile" +#, php-format +msgid "You have used %s of the available %s" +msgstr "" #: templates/personal.php:12 msgid "Desktop and Mobile Syncing Clients" @@ -242,8 +235,8 @@ msgid "Download" msgstr "Discargar" #: templates/personal.php:19 -msgid "Your password got changed" -msgstr "Tu contrasigno esseva cambiate" +msgid "Your password was changed" +msgstr "" #: templates/personal.php:20 msgid "Unable to change your password" diff --git a/l10n/id/core.po b/l10n/id/core.po index 9cb0f7651e..1cd079372c 100644 --- a/l10n/id/core.po +++ b/l10n/id/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -32,58 +32,62 @@ msgstr "Tidak ada kategori yang akan ditambahkan?" msgid "This category already exists: " msgstr "Kategori ini sudah ada:" -#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Setelan" -#: js/js.js:593 +#: js/js.js:645 msgid "January" msgstr "Januari" -#: js/js.js:593 +#: js/js.js:645 msgid "February" msgstr "Februari" -#: js/js.js:593 +#: js/js.js:645 msgid "March" msgstr "Maret" -#: js/js.js:593 +#: js/js.js:645 msgid "April" msgstr "April" -#: js/js.js:593 +#: js/js.js:645 msgid "May" msgstr "Mei" -#: js/js.js:593 +#: js/js.js:645 msgid "June" msgstr "Juni" -#: js/js.js:594 +#: js/js.js:646 msgid "July" msgstr "Juli" -#: js/js.js:594 +#: js/js.js:646 msgid "August" msgstr "Agustus" -#: js/js.js:594 +#: js/js.js:646 msgid "September" msgstr "September" -#: js/js.js:594 +#: js/js.js:646 msgid "October" msgstr "Oktober" -#: js/js.js:594 +#: js/js.js:646 msgid "November" msgstr "Nopember" -#: js/js.js:594 +#: js/js.js:646 msgid "December" msgstr "Desember" +#: js/oc-dialogs.js:123 +msgid "Choose" +msgstr "" + #: js/oc-dialogs.js:143 js/oc-dialogs.js:163 msgid "Cancel" msgstr "Batalkan" @@ -104,10 +108,119 @@ msgstr "Oke" msgid "No categories selected for deletion." msgstr "Tidak ada kategori terpilih untuk penghapusan." -#: js/oc-vcategories.js:68 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 +#: js/share.js:501 msgid "Error" msgstr "" +#: js/share.js:103 +msgid "Error while sharing" +msgstr "" + +#: js/share.js:114 +msgid "Error while unsharing" +msgstr "" + +#: js/share.js:121 +msgid "Error while changing permissions" +msgstr "" + +#: js/share.js:130 +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" +msgstr "" + +#: js/share.js:132 +msgid "Shared with you by" +msgstr "" + +#: js/share.js:137 +msgid "Share with" +msgstr "" + +#: js/share.js:142 +msgid "Share with link" +msgstr "" + +#: js/share.js:143 +msgid "Password protect" +msgstr "" + +#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +msgid "Password" +msgstr "Password" + +#: js/share.js:152 +msgid "Set expiration date" +msgstr "" + +#: js/share.js:153 +msgid "Expiration date" +msgstr "" + +#: js/share.js:185 +msgid "Share via email:" +msgstr "" + +#: js/share.js:187 +msgid "No people found" +msgstr "" + +#: js/share.js:214 +msgid "Resharing is not allowed" +msgstr "" + +#: js/share.js:250 +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" +msgstr "" + +#: js/share.js:271 +msgid "Unshare" +msgstr "" + +#: js/share.js:279 +msgid "can edit" +msgstr "" + +#: js/share.js:281 +msgid "access control" +msgstr "" + +#: js/share.js:284 +msgid "create" +msgstr "" + +#: js/share.js:287 +msgid "update" +msgstr "" + +#: js/share.js:290 +msgid "delete" +msgstr "" + +#: js/share.js:293 +msgid "share" +msgstr "" + +#: js/share.js:317 js/share.js:476 +msgid "Password protected" +msgstr "" + +#: js/share.js:489 +msgid "Error unsetting expiration date" +msgstr "" + +#: js/share.js:501 +msgid "Error setting expiration date" +msgstr "" + #: lostpassword/index.php:26 msgid "ownCloud password reset" msgstr "reset password ownCloud" @@ -193,10 +306,6 @@ msgstr "Tambahkan" msgid "Create an admin account" msgstr "Buat sebuah akun admin" -#: templates/installation.php:30 templates/login.php:13 -msgid "Password" -msgstr "Password" - #: templates/installation.php:36 msgid "Advanced" msgstr "Tingkat Lanjut" @@ -238,11 +347,11 @@ msgstr "Host database" msgid "Finish setup" msgstr "Selesaikan instalasi" -#: templates/layout.guest.php:42 +#: templates/layout.guest.php:36 msgid "web services under your control" msgstr "web service dibawah kontrol anda" -#: templates/layout.user.php:45 +#: templates/layout.user.php:34 msgid "Log out" msgstr "Keluar" diff --git a/l10n/id/files.po b/l10n/id/files.po index 9479165468..a24bba4147 100644 --- a/l10n/id/files.po +++ b/l10n/id/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-26 13:19+0200\n" +"PO-Revision-Date: 2012-09-26 11:20+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -62,39 +62,43 @@ msgstr "" msgid "Delete" msgstr "Hapus" -#: js/filelist.js:186 js/filelist.js:188 +#: js/fileactions.js:182 +msgid "Rename" +msgstr "" + +#: js/filelist.js:190 js/filelist.js:192 msgid "already exists" msgstr "sudah ada" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "replace" msgstr "mengganti" -#: js/filelist.js:186 +#: js/filelist.js:190 msgid "suggest name" msgstr "" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "cancel" msgstr "batalkan" -#: js/filelist.js:235 js/filelist.js:237 +#: js/filelist.js:239 js/filelist.js:241 msgid "replaced" msgstr "diganti" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:239 js/filelist.js:241 js/filelist.js:273 js/filelist.js:275 msgid "undo" msgstr "batal dikerjakan" -#: js/filelist.js:237 +#: js/filelist.js:241 msgid "with" msgstr "dengan" -#: js/filelist.js:268 +#: js/filelist.js:273 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:275 msgid "deleted" msgstr "dihapus" @@ -110,47 +114,107 @@ msgstr "Gagal mengunggah berkas anda karena berupa direktori atau mempunyai ukur msgid "Upload Error" msgstr "Terjadi Galat Pengunggahan" -#: js/files.js:236 js/files.js:341 js/files.js:370 +#: js/files.js:236 js/files.js:341 js/files.js:371 msgid "Pending" msgstr "Menunggu" -#: js/files.js:355 +#: js/files.js:256 +msgid "1 file uploading" +msgstr "" + +#: js/files.js:259 js/files.js:304 js/files.js:319 +msgid "files uploading" +msgstr "" + +#: js/files.js:322 js/files.js:355 msgid "Upload cancelled." msgstr "Pengunggahan dibatalkan." -#: js/files.js:423 +#: js/files.js:424 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:493 +#: js/files.js:494 msgid "Invalid name, '/' is not allowed." msgstr "Kesalahan nama, '/' tidak diijinkan." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:667 +msgid "files scanned" +msgstr "" + +#: js/files.js:675 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:48 +msgid "Name" +msgstr "Nama" + +#: js/files.js:749 templates/index.php:56 msgid "Size" msgstr "Ukuran" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:750 templates/index.php:58 msgid "Modified" msgstr "Dimodifikasi" -#: js/files.js:774 +#: js/files.js:777 msgid "folder" msgstr "folder" -#: js/files.js:776 +#: js/files.js:779 msgid "folders" msgstr "folder-folder" -#: js/files.js:784 +#: js/files.js:787 msgid "file" msgstr "berkas" -#: js/files.js:786 +#: js/files.js:789 msgid "files" msgstr "berkas-berkas" +#: js/files.js:833 +msgid "seconds ago" +msgstr "" + +#: js/files.js:834 +msgid "minute ago" +msgstr "" + +#: js/files.js:835 +msgid "minutes ago" +msgstr "" + +#: js/files.js:838 +msgid "today" +msgstr "" + +#: js/files.js:839 +msgid "yesterday" +msgstr "" + +#: js/files.js:840 +msgid "days ago" +msgstr "" + +#: js/files.js:841 +msgid "last month" +msgstr "" + +#: js/files.js:843 +msgid "months ago" +msgstr "" + +#: js/files.js:844 +msgid "last year" +msgstr "" + +#: js/files.js:845 +msgid "years ago" +msgstr "" + #: templates/admin.php:5 msgid "File handling" msgstr "Penanganan berkas" @@ -199,7 +263,7 @@ msgstr "Folder" msgid "From url" msgstr "Dari url" -#: templates/index.php:21 +#: templates/index.php:20 msgid "Upload" msgstr "Unggah" @@ -211,10 +275,6 @@ msgstr "Batal mengunggah" msgid "Nothing in here. Upload something!" msgstr "Tidak ada apa-apa di sini. Unggah sesuatu!" -#: templates/index.php:48 -msgid "Name" -msgstr "Nama" - #: templates/index.php:50 msgid "Share" msgstr "Bagikan" diff --git a/l10n/id/files_sharing.po b/l10n/id/files_sharing.po index e2be0ffdea..8acea84a1e 100644 --- a/l10n/id/files_sharing.po +++ b/l10n/id/files_sharing.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-22 01:14+0200\n" +"PO-Revision-Date: 2012-09-21 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: id\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: templates/authenticate.php:4 msgid "Password" @@ -25,14 +25,24 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 templates/public.php:19 +#: templates/public.php:9 +#, php-format +msgid "%s shared the folder %s with you" +msgstr "" + +#: templates/public.php:11 +#, php-format +msgid "%s shared the file %s with you" +msgstr "" + +#: templates/public.php:14 templates/public.php:30 msgid "Download" msgstr "" -#: templates/public.php:18 +#: templates/public.php:29 msgid "No preview available for" msgstr "" -#: templates/public.php:23 +#: templates/public.php:37 msgid "web services under your control" msgstr "" diff --git a/l10n/id/files_versions.po b/l10n/id/files_versions.po index 487329246e..41ffd9c752 100644 --- a/l10n/id/files_versions.po +++ b/l10n/id/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" -"PO-Revision-Date: 2012-09-17 00:04+0000\n" +"POT-Creation-Date: 2012-09-22 01:14+0200\n" +"PO-Revision-Date: 2012-09-21 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -21,6 +21,10 @@ msgstr "" msgid "Expire all versions" msgstr "" +#: js/versions.js:16 +msgid "History" +msgstr "" + #: templates/settings-personal.php:4 msgid "Versions" msgstr "" diff --git a/l10n/id/settings.po b/l10n/id/settings.po index 2683a4b638..460b492bef 100644 --- a/l10n/id/settings.po +++ b/l10n/id/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:03+0200\n" -"PO-Revision-Date: 2012-09-17 00:03+0000\n" +"POT-Creation-Date: 2012-09-19 02:02+0200\n" +"PO-Revision-Date: 2012-09-19 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -37,7 +37,7 @@ msgstr "" msgid "Unable to add group" msgstr "" -#: ajax/enableapp.php:13 +#: ajax/enableapp.php:14 msgid "Could not enable app. " msgstr "" @@ -79,15 +79,11 @@ msgstr "" msgid "Unable to remove user from group %s" msgstr "" -#: js/apps.js:18 -msgid "Error" -msgstr "" - -#: js/apps.js:39 js/apps.js:73 +#: js/apps.js:27 js/apps.js:61 msgid "Disable" msgstr "NonAktifkan" -#: js/apps.js:39 js/apps.js:62 +#: js/apps.js:27 js/apps.js:50 msgid "Enable" msgstr "Aktifkan" @@ -227,12 +223,9 @@ msgid "Answer" msgstr "Jawab" #: templates/personal.php:8 -msgid "You use" -msgstr "Anda menggunakan" - -#: templates/personal.php:8 -msgid "of the available" -msgstr "dari yang tersedia" +#, php-format +msgid "You have used %s of the available %s" +msgstr "" #: templates/personal.php:12 msgid "Desktop and Mobile Syncing Clients" @@ -243,8 +236,8 @@ msgid "Download" msgstr "Unduh" #: templates/personal.php:19 -msgid "Your password got changed" -msgstr "Password anda telah dirubah" +msgid "Your password was changed" +msgstr "" #: templates/personal.php:20 msgid "Unable to change your password" diff --git a/l10n/id_ID/core.po b/l10n/id_ID/core.po index a7ada9179b..d0c351df95 100644 --- a/l10n/id_ID/core.po +++ b/l10n/id_ID/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (Indonesia) (http://www.transifex.com/projects/p/owncloud/language/id_ID/)\n" "MIME-Version: 1.0\n" @@ -29,58 +29,62 @@ msgstr "" msgid "This category already exists: " msgstr "" -#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "" -#: js/js.js:593 +#: js/js.js:645 msgid "January" msgstr "" -#: js/js.js:593 +#: js/js.js:645 msgid "February" msgstr "" -#: js/js.js:593 +#: js/js.js:645 msgid "March" msgstr "" -#: js/js.js:593 +#: js/js.js:645 msgid "April" msgstr "" -#: js/js.js:593 +#: js/js.js:645 msgid "May" msgstr "" -#: js/js.js:593 +#: js/js.js:645 msgid "June" msgstr "" -#: js/js.js:594 +#: js/js.js:646 msgid "July" msgstr "" -#: js/js.js:594 +#: js/js.js:646 msgid "August" msgstr "" -#: js/js.js:594 +#: js/js.js:646 msgid "September" msgstr "" -#: js/js.js:594 +#: js/js.js:646 msgid "October" msgstr "" -#: js/js.js:594 +#: js/js.js:646 msgid "November" msgstr "" -#: js/js.js:594 +#: js/js.js:646 msgid "December" msgstr "" +#: js/oc-dialogs.js:123 +msgid "Choose" +msgstr "" + #: js/oc-dialogs.js:143 js/oc-dialogs.js:163 msgid "Cancel" msgstr "" @@ -101,10 +105,119 @@ msgstr "" msgid "No categories selected for deletion." msgstr "" -#: js/oc-vcategories.js:68 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 +#: js/share.js:501 msgid "Error" msgstr "" +#: js/share.js:103 +msgid "Error while sharing" +msgstr "" + +#: js/share.js:114 +msgid "Error while unsharing" +msgstr "" + +#: js/share.js:121 +msgid "Error while changing permissions" +msgstr "" + +#: js/share.js:130 +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" +msgstr "" + +#: js/share.js:132 +msgid "Shared with you by" +msgstr "" + +#: js/share.js:137 +msgid "Share with" +msgstr "" + +#: js/share.js:142 +msgid "Share with link" +msgstr "" + +#: js/share.js:143 +msgid "Password protect" +msgstr "" + +#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +msgid "Password" +msgstr "" + +#: js/share.js:152 +msgid "Set expiration date" +msgstr "" + +#: js/share.js:153 +msgid "Expiration date" +msgstr "" + +#: js/share.js:185 +msgid "Share via email:" +msgstr "" + +#: js/share.js:187 +msgid "No people found" +msgstr "" + +#: js/share.js:214 +msgid "Resharing is not allowed" +msgstr "" + +#: js/share.js:250 +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" +msgstr "" + +#: js/share.js:271 +msgid "Unshare" +msgstr "" + +#: js/share.js:279 +msgid "can edit" +msgstr "" + +#: js/share.js:281 +msgid "access control" +msgstr "" + +#: js/share.js:284 +msgid "create" +msgstr "" + +#: js/share.js:287 +msgid "update" +msgstr "" + +#: js/share.js:290 +msgid "delete" +msgstr "" + +#: js/share.js:293 +msgid "share" +msgstr "" + +#: js/share.js:317 js/share.js:476 +msgid "Password protected" +msgstr "" + +#: js/share.js:489 +msgid "Error unsetting expiration date" +msgstr "" + +#: js/share.js:501 +msgid "Error setting expiration date" +msgstr "" + #: lostpassword/index.php:26 msgid "ownCloud password reset" msgstr "" @@ -190,10 +303,6 @@ msgstr "" msgid "Create an admin account" msgstr "" -#: templates/installation.php:30 templates/login.php:13 -msgid "Password" -msgstr "" - #: templates/installation.php:36 msgid "Advanced" msgstr "" @@ -235,11 +344,11 @@ msgstr "" msgid "Finish setup" msgstr "" -#: templates/layout.guest.php:42 +#: templates/layout.guest.php:36 msgid "web services under your control" msgstr "" -#: templates/layout.user.php:45 +#: templates/layout.user.php:34 msgid "Log out" msgstr "" diff --git a/l10n/id_ID/files.po b/l10n/id_ID/files.po index 813b83410c..a4212970ad 100644 --- a/l10n/id_ID/files.po +++ b/l10n/id_ID/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-26 13:19+0200\n" +"PO-Revision-Date: 2012-09-26 11:20+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (Indonesia) (http://www.transifex.com/projects/p/owncloud/language/id_ID/)\n" "MIME-Version: 1.0\n" @@ -59,39 +59,43 @@ msgstr "" msgid "Delete" msgstr "" -#: js/filelist.js:186 js/filelist.js:188 +#: js/fileactions.js:182 +msgid "Rename" +msgstr "" + +#: js/filelist.js:190 js/filelist.js:192 msgid "already exists" msgstr "" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "replace" msgstr "" -#: js/filelist.js:186 +#: js/filelist.js:190 msgid "suggest name" msgstr "" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "cancel" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 +#: js/filelist.js:239 js/filelist.js:241 msgid "replaced" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:239 js/filelist.js:241 js/filelist.js:273 js/filelist.js:275 msgid "undo" msgstr "" -#: js/filelist.js:237 +#: js/filelist.js:241 msgid "with" msgstr "" -#: js/filelist.js:268 +#: js/filelist.js:273 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:275 msgid "deleted" msgstr "" @@ -107,47 +111,107 @@ msgstr "" msgid "Upload Error" msgstr "" -#: js/files.js:236 js/files.js:341 js/files.js:370 +#: js/files.js:236 js/files.js:341 js/files.js:371 msgid "Pending" msgstr "" -#: js/files.js:355 +#: js/files.js:256 +msgid "1 file uploading" +msgstr "" + +#: js/files.js:259 js/files.js:304 js/files.js:319 +msgid "files uploading" +msgstr "" + +#: js/files.js:322 js/files.js:355 msgid "Upload cancelled." msgstr "" -#: js/files.js:423 +#: js/files.js:424 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:493 +#: js/files.js:494 msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:667 +msgid "files scanned" +msgstr "" + +#: js/files.js:675 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:48 +msgid "Name" +msgstr "" + +#: js/files.js:749 templates/index.php:56 msgid "Size" msgstr "" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:750 templates/index.php:58 msgid "Modified" msgstr "" -#: js/files.js:774 +#: js/files.js:777 msgid "folder" msgstr "" -#: js/files.js:776 +#: js/files.js:779 msgid "folders" msgstr "" -#: js/files.js:784 +#: js/files.js:787 msgid "file" msgstr "" -#: js/files.js:786 +#: js/files.js:789 msgid "files" msgstr "" +#: js/files.js:833 +msgid "seconds ago" +msgstr "" + +#: js/files.js:834 +msgid "minute ago" +msgstr "" + +#: js/files.js:835 +msgid "minutes ago" +msgstr "" + +#: js/files.js:838 +msgid "today" +msgstr "" + +#: js/files.js:839 +msgid "yesterday" +msgstr "" + +#: js/files.js:840 +msgid "days ago" +msgstr "" + +#: js/files.js:841 +msgid "last month" +msgstr "" + +#: js/files.js:843 +msgid "months ago" +msgstr "" + +#: js/files.js:844 +msgid "last year" +msgstr "" + +#: js/files.js:845 +msgid "years ago" +msgstr "" + #: templates/admin.php:5 msgid "File handling" msgstr "" @@ -196,7 +260,7 @@ msgstr "" msgid "From url" msgstr "" -#: templates/index.php:21 +#: templates/index.php:20 msgid "Upload" msgstr "" @@ -208,10 +272,6 @@ msgstr "" msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:48 -msgid "Name" -msgstr "" - #: templates/index.php:50 msgid "Share" msgstr "" diff --git a/l10n/id_ID/files_sharing.po b/l10n/id_ID/files_sharing.po index c3989d2207..59a11d3195 100644 --- a/l10n/id_ID/files_sharing.po +++ b/l10n/id_ID/files_sharing.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-22 01:14+0200\n" +"PO-Revision-Date: 2012-09-21 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (Indonesia) (http://www.transifex.com/projects/p/owncloud/language/id_ID/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: id_ID\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: templates/authenticate.php:4 msgid "Password" @@ -25,14 +25,24 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 templates/public.php:19 +#: templates/public.php:9 +#, php-format +msgid "%s shared the folder %s with you" +msgstr "" + +#: templates/public.php:11 +#, php-format +msgid "%s shared the file %s with you" +msgstr "" + +#: templates/public.php:14 templates/public.php:30 msgid "Download" msgstr "" -#: templates/public.php:18 +#: templates/public.php:29 msgid "No preview available for" msgstr "" -#: templates/public.php:23 +#: templates/public.php:37 msgid "web services under your control" msgstr "" diff --git a/l10n/id_ID/files_versions.po b/l10n/id_ID/files_versions.po index c91232aacc..581fac1e7d 100644 --- a/l10n/id_ID/files_versions.po +++ b/l10n/id_ID/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" -"PO-Revision-Date: 2012-09-17 00:04+0000\n" +"POT-Creation-Date: 2012-09-22 01:14+0200\n" +"PO-Revision-Date: 2012-09-21 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (Indonesia) (http://www.transifex.com/projects/p/owncloud/language/id_ID/)\n" "MIME-Version: 1.0\n" @@ -21,6 +21,10 @@ msgstr "" msgid "Expire all versions" msgstr "" +#: js/versions.js:16 +msgid "History" +msgstr "" + #: templates/settings-personal.php:4 msgid "Versions" msgstr "" diff --git a/l10n/id_ID/settings.po b/l10n/id_ID/settings.po index 68339ff2e3..1258d3790e 100644 --- a/l10n/id_ID/settings.po +++ b/l10n/id_ID/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:03+0200\n" -"PO-Revision-Date: 2012-09-17 00:03+0000\n" +"POT-Creation-Date: 2012-09-19 02:02+0200\n" +"PO-Revision-Date: 2012-09-19 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (Indonesia) (http://www.transifex.com/projects/p/owncloud/language/id_ID/)\n" "MIME-Version: 1.0\n" @@ -34,7 +34,7 @@ msgstr "" msgid "Unable to add group" msgstr "" -#: ajax/enableapp.php:13 +#: ajax/enableapp.php:14 msgid "Could not enable app. " msgstr "" @@ -76,15 +76,11 @@ msgstr "" msgid "Unable to remove user from group %s" msgstr "" -#: js/apps.js:18 -msgid "Error" -msgstr "" - -#: js/apps.js:39 js/apps.js:73 +#: js/apps.js:27 js/apps.js:61 msgid "Disable" msgstr "" -#: js/apps.js:39 js/apps.js:62 +#: js/apps.js:27 js/apps.js:50 msgid "Enable" msgstr "" @@ -224,11 +220,8 @@ msgid "Answer" msgstr "" #: templates/personal.php:8 -msgid "You use" -msgstr "" - -#: templates/personal.php:8 -msgid "of the available" +#, php-format +msgid "You have used %s of the available %s" msgstr "" #: templates/personal.php:12 @@ -240,7 +233,7 @@ msgid "Download" msgstr "" #: templates/personal.php:19 -msgid "Your password got changed" +msgid "Your password was changed" msgstr "" #: templates/personal.php:20 diff --git a/l10n/it/core.po b/l10n/it/core.po index f4904b2792..6127433b0f 100644 --- a/l10n/it/core.po +++ b/l10n/it/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-07 02:04+0200\n" -"PO-Revision-Date: 2012-09-06 05:05+0000\n" +"POT-Creation-Date: 2012-09-30 02:02+0200\n" +"PO-Revision-Date: 2012-09-29 05:31+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -34,58 +34,62 @@ msgstr "Nessuna categoria da aggiungere?" msgid "This category already exists: " msgstr "Questa categoria esiste già: " -#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Impostazioni" -#: js/js.js:593 +#: js/js.js:645 msgid "January" msgstr "Gennaio" -#: js/js.js:593 +#: js/js.js:645 msgid "February" msgstr "Febbraio" -#: js/js.js:593 +#: js/js.js:645 msgid "March" msgstr "Marzo" -#: js/js.js:593 +#: js/js.js:645 msgid "April" msgstr "Aprile" -#: js/js.js:593 +#: js/js.js:645 msgid "May" msgstr "Maggio" -#: js/js.js:593 +#: js/js.js:645 msgid "June" msgstr "Giugno" -#: js/js.js:594 +#: js/js.js:646 msgid "July" msgstr "Luglio" -#: js/js.js:594 +#: js/js.js:646 msgid "August" msgstr "Agosto" -#: js/js.js:594 +#: js/js.js:646 msgid "September" msgstr "Settembre" -#: js/js.js:594 +#: js/js.js:646 msgid "October" msgstr "Ottobre" -#: js/js.js:594 +#: js/js.js:646 msgid "November" msgstr "Novembre" -#: js/js.js:594 +#: js/js.js:646 msgid "December" msgstr "Dicembre" +#: js/oc-dialogs.js:123 +msgid "Choose" +msgstr "Scegli" + #: js/oc-dialogs.js:143 js/oc-dialogs.js:163 msgid "Cancel" msgstr "Annulla" @@ -106,10 +110,119 @@ msgstr "Ok" msgid "No categories selected for deletion." msgstr "Nessuna categoria selezionata per l'eliminazione." -#: js/oc-vcategories.js:68 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 +#: js/share.js:501 msgid "Error" msgstr "Errore" +#: js/share.js:103 +msgid "Error while sharing" +msgstr "Errore durante la condivisione" + +#: js/share.js:114 +msgid "Error while unsharing" +msgstr "Errore durante la rimozione della condivisione" + +#: js/share.js:121 +msgid "Error while changing permissions" +msgstr "Errore durante la modifica dei permessi" + +#: js/share.js:130 +msgid "Shared with you and the group" +msgstr "Condiviso con te e con il gruppo" + +#: js/share.js:130 +msgid "by" +msgstr "da" + +#: js/share.js:132 +msgid "Shared with you by" +msgstr "Condiviso con te da" + +#: js/share.js:137 +msgid "Share with" +msgstr "Condividi con" + +#: js/share.js:142 +msgid "Share with link" +msgstr "Condividi con collegamento" + +#: js/share.js:143 +msgid "Password protect" +msgstr "Proteggi con password" + +#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +msgid "Password" +msgstr "Password" + +#: js/share.js:152 +msgid "Set expiration date" +msgstr "Imposta data di scadenza" + +#: js/share.js:153 +msgid "Expiration date" +msgstr "Data di scadenza" + +#: js/share.js:185 +msgid "Share via email:" +msgstr "Condividi tramite email:" + +#: js/share.js:187 +msgid "No people found" +msgstr "Non sono state trovate altre persone" + +#: js/share.js:214 +msgid "Resharing is not allowed" +msgstr "La ri-condivisione non è consentita" + +#: js/share.js:250 +msgid "Shared in" +msgstr "Condiviso in" + +#: js/share.js:250 +msgid "with" +msgstr "con" + +#: js/share.js:271 +msgid "Unshare" +msgstr "Rimuovi condivisione" + +#: js/share.js:279 +msgid "can edit" +msgstr "può modificare" + +#: js/share.js:281 +msgid "access control" +msgstr "controllo d'accesso" + +#: js/share.js:284 +msgid "create" +msgstr "creare" + +#: js/share.js:287 +msgid "update" +msgstr "aggiornare" + +#: js/share.js:290 +msgid "delete" +msgstr "eliminare" + +#: js/share.js:293 +msgid "share" +msgstr "condividere" + +#: js/share.js:317 js/share.js:476 +msgid "Password protected" +msgstr "Protetta da password" + +#: js/share.js:489 +msgid "Error unsetting expiration date" +msgstr "Errore durante la rimozione della data di scadenza" + +#: js/share.js:501 +msgid "Error setting expiration date" +msgstr "Errore durante l'impostazione della data di scadenza" + #: lostpassword/index.php:26 msgid "ownCloud password reset" msgstr "Ripristino password di ownCloud" @@ -135,7 +248,7 @@ msgstr "Accesso non riuscito!" msgid "Username" msgstr "Nome utente" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:14 msgid "Request reset" msgstr "Richiesta di ripristino" @@ -195,10 +308,6 @@ msgstr "Aggiungi" msgid "Create an admin account" msgstr "Crea un account amministratore" -#: templates/installation.php:30 templates/login.php:13 -msgid "Password" -msgstr "Password" - #: templates/installation.php:36 msgid "Advanced" msgstr "Avanzate" @@ -240,11 +349,11 @@ msgstr "Host del database" msgid "Finish setup" msgstr "Termina la configurazione" -#: templates/layout.guest.php:42 +#: templates/layout.guest.php:36 msgid "web services under your control" msgstr "servizi web nelle tue mani" -#: templates/layout.user.php:45 +#: templates/layout.user.php:34 msgid "Log out" msgstr "Esci" @@ -252,11 +361,11 @@ msgstr "Esci" msgid "Lost your password?" msgstr "Hai perso la password?" -#: templates/login.php:17 +#: templates/login.php:16 msgid "remember" msgstr "ricorda" -#: templates/login.php:18 +#: templates/login.php:17 msgid "Log in" msgstr "Accedi" diff --git a/l10n/it/files.po b/l10n/it/files.po index 0c00e3d9e9..0677f2ddd4 100644 --- a/l10n/it/files.po +++ b/l10n/it/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-09 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 07:13+0000\n" +"POT-Creation-Date: 2012-09-27 02:01+0200\n" +"PO-Revision-Date: 2012-09-26 12:00+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -63,39 +63,43 @@ msgstr "Rimuovi condivisione" msgid "Delete" msgstr "Elimina" -#: js/filelist.js:186 js/filelist.js:188 +#: js/fileactions.js:182 +msgid "Rename" +msgstr "Rinomina" + +#: js/filelist.js:190 js/filelist.js:192 msgid "already exists" msgstr "esiste già" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "replace" msgstr "sostituisci" -#: js/filelist.js:186 +#: js/filelist.js:190 msgid "suggest name" msgstr "suggerisci nome" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "cancel" msgstr "annulla" -#: js/filelist.js:235 js/filelist.js:237 +#: js/filelist.js:239 js/filelist.js:241 msgid "replaced" msgstr "sostituito" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:239 js/filelist.js:241 js/filelist.js:273 js/filelist.js:275 msgid "undo" msgstr "annulla" -#: js/filelist.js:237 +#: js/filelist.js:241 msgid "with" msgstr "con" -#: js/filelist.js:268 +#: js/filelist.js:273 msgid "unshared" msgstr "condivisione rimossa" -#: js/filelist.js:270 +#: js/filelist.js:275 msgid "deleted" msgstr "eliminati" @@ -111,47 +115,107 @@ msgstr "Impossibile inviare il file poiché è una cartella o ha dimensione 0 by msgid "Upload Error" msgstr "Errore di invio" -#: js/files.js:236 js/files.js:341 js/files.js:370 +#: js/files.js:236 js/files.js:341 js/files.js:371 msgid "Pending" msgstr "In corso" -#: js/files.js:355 +#: js/files.js:256 +msgid "1 file uploading" +msgstr "1 file in fase di caricamento" + +#: js/files.js:259 js/files.js:304 js/files.js:319 +msgid "files uploading" +msgstr "file in fase di caricamento" + +#: js/files.js:322 js/files.js:355 msgid "Upload cancelled." msgstr "Invio annullato" -#: js/files.js:423 +#: js/files.js:424 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Caricamento del file in corso. La chiusura della pagina annullerà il caricamento." -#: js/files.js:493 +#: js/files.js:494 msgid "Invalid name, '/' is not allowed." msgstr "Nome non valido" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:668 +msgid "files scanned" +msgstr "file analizzati" + +#: js/files.js:676 +msgid "error while scanning" +msgstr "errore durante la scansione" + +#: js/files.js:749 templates/index.php:48 +msgid "Name" +msgstr "Nome" + +#: js/files.js:750 templates/index.php:56 msgid "Size" msgstr "Dimensione" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:751 templates/index.php:58 msgid "Modified" msgstr "Modificato" -#: js/files.js:774 +#: js/files.js:778 msgid "folder" msgstr "cartella" -#: js/files.js:776 +#: js/files.js:780 msgid "folders" msgstr "cartelle" -#: js/files.js:784 +#: js/files.js:788 msgid "file" msgstr "file" -#: js/files.js:786 +#: js/files.js:790 msgid "files" msgstr "file" +#: js/files.js:834 +msgid "seconds ago" +msgstr "secondi fa" + +#: js/files.js:835 +msgid "minute ago" +msgstr "minuto fa" + +#: js/files.js:836 +msgid "minutes ago" +msgstr "minuti fa" + +#: js/files.js:839 +msgid "today" +msgstr "oggi" + +#: js/files.js:840 +msgid "yesterday" +msgstr "ieri" + +#: js/files.js:841 +msgid "days ago" +msgstr "giorni fa" + +#: js/files.js:842 +msgid "last month" +msgstr "mese scorso" + +#: js/files.js:844 +msgid "months ago" +msgstr "mesi fa" + +#: js/files.js:845 +msgid "last year" +msgstr "anno scorso" + +#: js/files.js:846 +msgid "years ago" +msgstr "anni fa" + #: templates/admin.php:5 msgid "File handling" msgstr "Gestione file" @@ -200,7 +264,7 @@ msgstr "Cartella" msgid "From url" msgstr "Da URL" -#: templates/index.php:21 +#: templates/index.php:20 msgid "Upload" msgstr "Carica" @@ -212,10 +276,6 @@ msgstr "Annulla invio" msgid "Nothing in here. Upload something!" msgstr "Non c'è niente qui. Carica qualcosa!" -#: templates/index.php:48 -msgid "Name" -msgstr "Nome" - #: templates/index.php:50 msgid "Share" msgstr "Condividi" diff --git a/l10n/it/files_sharing.po b/l10n/it/files_sharing.po index b2494f4211..aaabba1bea 100644 --- a/l10n/it/files_sharing.po +++ b/l10n/it/files_sharing.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-08-31 05:29+0000\n" +"POT-Creation-Date: 2012-09-23 02:01+0200\n" +"PO-Revision-Date: 2012-09-22 06:41+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: it\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 msgid "Password" @@ -26,14 +26,24 @@ msgstr "Password" msgid "Submit" msgstr "Invia" -#: templates/public.php:9 templates/public.php:19 +#: templates/public.php:9 +#, php-format +msgid "%s shared the folder %s with you" +msgstr "%s ha condiviso la cartella %s con te" + +#: templates/public.php:11 +#, php-format +msgid "%s shared the file %s with you" +msgstr "%s ha condiviso il file %s con te" + +#: templates/public.php:14 templates/public.php:30 msgid "Download" msgstr "Scarica" -#: templates/public.php:18 +#: templates/public.php:29 msgid "No preview available for" msgstr "Nessuna anteprima disponibile per" -#: templates/public.php:23 +#: templates/public.php:37 msgid "web services under your control" msgstr "servizi web nelle tue mani" diff --git a/l10n/it/files_versions.po b/l10n/it/files_versions.po index 1b5c72695a..273bdef29b 100644 --- a/l10n/it/files_versions.po +++ b/l10n/it/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" -"PO-Revision-Date: 2012-09-17 00:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-23 02:01+0200\n" +"PO-Revision-Date: 2012-09-22 06:40+0000\n" +"Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,6 +22,10 @@ msgstr "" msgid "Expire all versions" msgstr "Scadenza di tutte le versioni" +#: js/versions.js:16 +msgid "History" +msgstr "Cronologia" + #: templates/settings-personal.php:4 msgid "Versions" msgstr "Versioni" @@ -32,8 +36,8 @@ msgstr "Ciò eliminerà tutte le versioni esistenti dei tuoi file" #: templates/settings.php:3 msgid "Files Versioning" -msgstr "" +msgstr "Controllo di versione dei file" #: templates/settings.php:4 msgid "Enable" -msgstr "" +msgstr "Abilita" diff --git a/l10n/it/settings.po b/l10n/it/settings.po index 65b4ad108b..9b7f3967cf 100644 --- a/l10n/it/settings.po +++ b/l10n/it/settings.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:03+0200\n" -"PO-Revision-Date: 2012-09-17 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-20 02:05+0200\n" +"PO-Revision-Date: 2012-09-19 05:42+0000\n" +"Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -41,7 +41,7 @@ msgstr "Il gruppo esiste già" msgid "Unable to add group" msgstr "Impossibile aggiungere il gruppo" -#: ajax/enableapp.php:13 +#: ajax/enableapp.php:14 msgid "Could not enable app. " msgstr "Impossibile abilitare l'applicazione." @@ -83,15 +83,11 @@ msgstr "Impossibile aggiungere l'utente al gruppo %s" msgid "Unable to remove user from group %s" msgstr "Impossibile rimuovere l'utente dal gruppo %s" -#: js/apps.js:18 -msgid "Error" -msgstr "Errore" - -#: js/apps.js:39 js/apps.js:73 +#: js/apps.js:27 js/apps.js:61 msgid "Disable" msgstr "Disabilita" -#: js/apps.js:39 js/apps.js:62 +#: js/apps.js:27 js/apps.js:50 msgid "Enable" msgstr "Abilita" @@ -122,7 +118,7 @@ msgstr "Cron" #: templates/admin.php:37 msgid "Execute one task with each page loaded" -msgstr "" +msgstr "Esegui un'operazione per ogni pagina caricata" #: templates/admin.php:43 msgid "" @@ -134,11 +130,11 @@ msgstr "cron.php è registrato su un servizio webcron. Chiama la pagina cron.php msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "" +msgstr "Usa il servizio cron di sistema. Chiama il file cron.php nella cartella di owncloud tramite una pianificazione del cron di sistema ogni minuto." #: templates/admin.php:56 msgid "Sharing" -msgstr "" +msgstr "Condivisione" #: templates/admin.php:61 msgid "Enable Share API" @@ -231,12 +227,9 @@ msgid "Answer" msgstr "Risposta" #: templates/personal.php:8 -msgid "You use" -msgstr "Stai utilizzando" - -#: templates/personal.php:8 -msgid "of the available" -msgstr "su un totale di" +#, php-format +msgid "You have used %s of the available %s" +msgstr "Hai utilizzato %s dei %s disponibili" #: templates/personal.php:12 msgid "Desktop and Mobile Syncing Clients" @@ -247,8 +240,8 @@ msgid "Download" msgstr "Scaricamento" #: templates/personal.php:19 -msgid "Your password got changed" -msgstr "La tua password è stata cambiata" +msgid "Your password was changed" +msgstr "La tua password è cambiata" #: templates/personal.php:20 msgid "Unable to change your password" diff --git a/l10n/ja_JP/core.po b/l10n/ja_JP/core.po index 139012d619..438ce437a4 100644 --- a/l10n/ja_JP/core.po +++ b/l10n/ja_JP/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" @@ -31,58 +31,62 @@ msgstr "追加するカテゴリはありませんか?" msgid "This category already exists: " msgstr "このカテゴリはすでに存在します: " -#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "設定" -#: js/js.js:593 +#: js/js.js:645 msgid "January" msgstr "1月" -#: js/js.js:593 +#: js/js.js:645 msgid "February" msgstr "2月" -#: js/js.js:593 +#: js/js.js:645 msgid "March" msgstr "3月" -#: js/js.js:593 +#: js/js.js:645 msgid "April" msgstr "4月" -#: js/js.js:593 +#: js/js.js:645 msgid "May" msgstr "5月" -#: js/js.js:593 +#: js/js.js:645 msgid "June" msgstr "6月" -#: js/js.js:594 +#: js/js.js:646 msgid "July" msgstr "7月" -#: js/js.js:594 +#: js/js.js:646 msgid "August" msgstr "8月" -#: js/js.js:594 +#: js/js.js:646 msgid "September" msgstr "9月" -#: js/js.js:594 +#: js/js.js:646 msgid "October" msgstr "10月" -#: js/js.js:594 +#: js/js.js:646 msgid "November" msgstr "11月" -#: js/js.js:594 +#: js/js.js:646 msgid "December" msgstr "12月" +#: js/oc-dialogs.js:123 +msgid "Choose" +msgstr "選択" + #: js/oc-dialogs.js:143 js/oc-dialogs.js:163 msgid "Cancel" msgstr "キャンセル" @@ -103,10 +107,119 @@ msgstr "OK" msgid "No categories selected for deletion." msgstr "削除するカテゴリが選択されていません。" -#: js/oc-vcategories.js:68 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 +#: js/share.js:501 msgid "Error" msgstr "エラー" +#: js/share.js:103 +msgid "Error while sharing" +msgstr "共有でエラー発生" + +#: js/share.js:114 +msgid "Error while unsharing" +msgstr "共有解除でエラー発生" + +#: js/share.js:121 +msgid "Error while changing permissions" +msgstr "権限変更でエラー発生" + +#: js/share.js:130 +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" +msgstr "" + +#: js/share.js:132 +msgid "Shared with you by" +msgstr "" + +#: js/share.js:137 +msgid "Share with" +msgstr "共有者" + +#: js/share.js:142 +msgid "Share with link" +msgstr "URLリンクで共有" + +#: js/share.js:143 +msgid "Password protect" +msgstr "パスワード保護" + +#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +msgid "Password" +msgstr "パスワード" + +#: js/share.js:152 +msgid "Set expiration date" +msgstr "有効期限を設定" + +#: js/share.js:153 +msgid "Expiration date" +msgstr "有効期限" + +#: js/share.js:185 +msgid "Share via email:" +msgstr "" + +#: js/share.js:187 +msgid "No people found" +msgstr "ユーザーが見つかりません" + +#: js/share.js:214 +msgid "Resharing is not allowed" +msgstr "再共有は許可されていません" + +#: js/share.js:250 +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" +msgstr "" + +#: js/share.js:271 +msgid "Unshare" +msgstr "共有解除" + +#: js/share.js:279 +msgid "can edit" +msgstr "編集可能" + +#: js/share.js:281 +msgid "access control" +msgstr "アクセス権限" + +#: js/share.js:284 +msgid "create" +msgstr "作成" + +#: js/share.js:287 +msgid "update" +msgstr "更新" + +#: js/share.js:290 +msgid "delete" +msgstr "削除" + +#: js/share.js:293 +msgid "share" +msgstr "共有" + +#: js/share.js:317 js/share.js:476 +msgid "Password protected" +msgstr "パスワード保護" + +#: js/share.js:489 +msgid "Error unsetting expiration date" +msgstr "有効期限の未設定エラー" + +#: js/share.js:501 +msgid "Error setting expiration date" +msgstr "有効期限の設定でエラー発生" + #: lostpassword/index.php:26 msgid "ownCloud password reset" msgstr "ownCloudのパスワードをリセットします" @@ -192,10 +305,6 @@ msgstr "追加" msgid "Create an admin account" msgstr "管理者アカウントを作成してください" -#: templates/installation.php:30 templates/login.php:13 -msgid "Password" -msgstr "パスワード" - #: templates/installation.php:36 msgid "Advanced" msgstr "詳細設定" @@ -237,11 +346,11 @@ msgstr "データベースのホスト名" msgid "Finish setup" msgstr "セットアップを完了します" -#: templates/layout.guest.php:42 +#: templates/layout.guest.php:36 msgid "web services under your control" msgstr "管理下にあるウェブサービス" -#: templates/layout.user.php:45 +#: templates/layout.user.php:34 msgid "Log out" msgstr "ログアウト" diff --git a/l10n/ja_JP/files.po b/l10n/ja_JP/files.po index 6e3d70c125..786548648c 100644 --- a/l10n/ja_JP/files.po +++ b/l10n/ja_JP/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-10 02:02+0200\n" -"PO-Revision-Date: 2012-09-09 05:11+0000\n" -"Last-Translator: ttyn \n" +"POT-Creation-Date: 2012-09-28 02:02+0200\n" +"PO-Revision-Date: 2012-09-27 00:51+0000\n" +"Last-Translator: Daisuke Deguchi \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -61,39 +61,43 @@ msgstr "共有しない" msgid "Delete" msgstr "削除" -#: js/filelist.js:186 js/filelist.js:188 +#: js/fileactions.js:182 +msgid "Rename" +msgstr "名前の変更" + +#: js/filelist.js:190 js/filelist.js:192 msgid "already exists" msgstr "既に存在します" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "replace" msgstr "置き換え" -#: js/filelist.js:186 +#: js/filelist.js:190 msgid "suggest name" msgstr "推奨名称" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "cancel" msgstr "キャンセル" -#: js/filelist.js:235 js/filelist.js:237 +#: js/filelist.js:239 js/filelist.js:241 msgid "replaced" msgstr "置換:" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:239 js/filelist.js:241 js/filelist.js:273 js/filelist.js:275 msgid "undo" msgstr "元に戻す" -#: js/filelist.js:237 +#: js/filelist.js:241 msgid "with" msgstr "←" -#: js/filelist.js:268 +#: js/filelist.js:273 msgid "unshared" msgstr "未共有" -#: js/filelist.js:270 +#: js/filelist.js:275 msgid "deleted" msgstr "削除" @@ -109,47 +113,107 @@ msgstr "アップロード使用としているファイルがディレクトリ msgid "Upload Error" msgstr "アップロードエラー" -#: js/files.js:236 js/files.js:341 js/files.js:370 +#: js/files.js:236 js/files.js:341 js/files.js:371 msgid "Pending" msgstr "保留" -#: js/files.js:355 +#: js/files.js:256 +msgid "1 file uploading" +msgstr "ファイルを1つアップロード中" + +#: js/files.js:259 js/files.js:304 js/files.js:319 +msgid "files uploading" +msgstr "ファイルをアップロード中" + +#: js/files.js:322 js/files.js:355 msgid "Upload cancelled." msgstr "アップロードはキャンセルされました。" -#: js/files.js:423 +#: js/files.js:424 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "ファイル転送を実行中です。今このページから移動するとアップロードが中止されます。" -#: js/files.js:493 +#: js/files.js:494 msgid "Invalid name, '/' is not allowed." msgstr "無効な名前、'/' は使用できません。" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:668 +msgid "files scanned" +msgstr "ファイルをスキャンしました" + +#: js/files.js:676 +msgid "error while scanning" +msgstr "スキャン中のエラー" + +#: js/files.js:749 templates/index.php:48 +msgid "Name" +msgstr "名前" + +#: js/files.js:750 templates/index.php:56 msgid "Size" msgstr "サイズ" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:751 templates/index.php:58 msgid "Modified" msgstr "更新日時" -#: js/files.js:774 +#: js/files.js:778 msgid "folder" msgstr "フォルダ" -#: js/files.js:776 +#: js/files.js:780 msgid "folders" msgstr "フォルダ" -#: js/files.js:784 +#: js/files.js:788 msgid "file" msgstr "ファイル" -#: js/files.js:786 +#: js/files.js:790 msgid "files" msgstr "ファイル" +#: js/files.js:834 +msgid "seconds ago" +msgstr "秒前" + +#: js/files.js:835 +msgid "minute ago" +msgstr "分前" + +#: js/files.js:836 +msgid "minutes ago" +msgstr "分前" + +#: js/files.js:839 +msgid "today" +msgstr "今日" + +#: js/files.js:840 +msgid "yesterday" +msgstr "昨日" + +#: js/files.js:841 +msgid "days ago" +msgstr "日前" + +#: js/files.js:842 +msgid "last month" +msgstr "一月前" + +#: js/files.js:844 +msgid "months ago" +msgstr "月前" + +#: js/files.js:845 +msgid "last year" +msgstr "一年前" + +#: js/files.js:846 +msgid "years ago" +msgstr "年前" + #: templates/admin.php:5 msgid "File handling" msgstr "ファイル操作" @@ -198,7 +262,7 @@ msgstr "フォルダ" msgid "From url" msgstr "URL" -#: templates/index.php:21 +#: templates/index.php:20 msgid "Upload" msgstr "アップロード" @@ -210,10 +274,6 @@ msgstr "アップロードをキャンセル" msgid "Nothing in here. Upload something!" msgstr "ここには何もありません。何かアップロードしてください。" -#: templates/index.php:48 -msgid "Name" -msgstr "名前" - #: templates/index.php:50 msgid "Share" msgstr "共有" diff --git a/l10n/ja_JP/files_sharing.po b/l10n/ja_JP/files_sharing.po index 648cb83f0f..0fc95c1944 100644 --- a/l10n/ja_JP/files_sharing.po +++ b/l10n/ja_JP/files_sharing.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-08-31 07:43+0000\n" +"POT-Creation-Date: 2012-09-23 02:01+0200\n" +"PO-Revision-Date: 2012-09-22 00:56+0000\n" "Last-Translator: ttyn \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ja_JP\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: templates/authenticate.php:4 msgid "Password" @@ -27,14 +27,24 @@ msgstr "パスワード" msgid "Submit" msgstr "送信" -#: templates/public.php:9 templates/public.php:19 +#: templates/public.php:9 +#, php-format +msgid "%s shared the folder %s with you" +msgstr "%s はフォルダー %s をあなたと共有" + +#: templates/public.php:11 +#, php-format +msgid "%s shared the file %s with you" +msgstr "%s はファイル %s をあなたと共有" + +#: templates/public.php:14 templates/public.php:30 msgid "Download" msgstr "ダウンロード" -#: templates/public.php:18 +#: templates/public.php:29 msgid "No preview available for" msgstr "プレビューはありません" -#: templates/public.php:23 +#: templates/public.php:37 msgid "web services under your control" msgstr "管理下のウェブサービス" diff --git a/l10n/ja_JP/files_versions.po b/l10n/ja_JP/files_versions.po index 2923fe476f..9c717bd2fa 100644 --- a/l10n/ja_JP/files_versions.po +++ b/l10n/ja_JP/files_versions.po @@ -4,13 +4,14 @@ # # Translators: # Daisuke Deguchi , 2012. +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" -"PO-Revision-Date: 2012-09-17 00:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-23 02:01+0200\n" +"PO-Revision-Date: 2012-09-22 00:30+0000\n" +"Last-Translator: ttyn \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,6 +23,10 @@ msgstr "" msgid "Expire all versions" msgstr "すべてのバージョンを削除する" +#: js/versions.js:16 +msgid "History" +msgstr "履歴" + #: templates/settings-personal.php:4 msgid "Versions" msgstr "バージョン" @@ -32,8 +37,8 @@ msgstr "これは、あなたのファイルのすべてのバックアップバ #: templates/settings.php:3 msgid "Files Versioning" -msgstr "" +msgstr "ファイルのバージョン管理" #: templates/settings.php:4 msgid "Enable" -msgstr "" +msgstr "有効化" diff --git a/l10n/ja_JP/settings.po b/l10n/ja_JP/settings.po index a22d6af28b..073691da01 100644 --- a/l10n/ja_JP/settings.po +++ b/l10n/ja_JP/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:03+0200\n" -"PO-Revision-Date: 2012-09-17 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-21 02:02+0200\n" +"PO-Revision-Date: 2012-09-20 01:05+0000\n" +"Last-Translator: Daisuke Deguchi \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -36,7 +36,7 @@ msgstr "グループは既に存在しています" msgid "Unable to add group" msgstr "グループを追加できません" -#: ajax/enableapp.php:13 +#: ajax/enableapp.php:14 msgid "Could not enable app. " msgstr "アプリを有効にできませんでした。" @@ -78,15 +78,11 @@ msgstr "ユーザをグループ %s に追加できません" msgid "Unable to remove user from group %s" msgstr "ユーザをグループ %s から削除できません" -#: js/apps.js:18 -msgid "Error" -msgstr "エラー" - -#: js/apps.js:39 js/apps.js:73 +#: js/apps.js:27 js/apps.js:61 msgid "Disable" msgstr "無効" -#: js/apps.js:39 js/apps.js:62 +#: js/apps.js:27 js/apps.js:50 msgid "Enable" msgstr "有効" @@ -117,7 +113,7 @@ msgstr "cron(自動定期実行)" #: templates/admin.php:37 msgid "Execute one task with each page loaded" -msgstr "" +msgstr "各ページの読み込み時にタスクを1つ実行する" #: templates/admin.php:43 msgid "" @@ -129,11 +125,11 @@ msgstr "cron.php は webcron サービスとして登録されています。HTT msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "" +msgstr "システムのcronサービスを利用する。1分に1回の頻度でシステムのcronジョブによりowncloudフォルダ内のcron.phpファイルを呼び出してください。" #: templates/admin.php:56 msgid "Sharing" -msgstr "" +msgstr "共有中" #: templates/admin.php:61 msgid "Enable Share API" @@ -226,12 +222,9 @@ msgid "Answer" msgstr "解答" #: templates/personal.php:8 -msgid "You use" -msgstr "あなたは" - -#: templates/personal.php:8 -msgid "of the available" -msgstr "を利用しています。利用可能容量:" +#, php-format +msgid "You have used %s of the available %s" +msgstr "現在、%s / %s を利用しています" #: templates/personal.php:12 msgid "Desktop and Mobile Syncing Clients" @@ -242,8 +235,8 @@ msgid "Download" msgstr "ダウンロード" #: templates/personal.php:19 -msgid "Your password got changed" -msgstr "パスワードは変更されました" +msgid "Your password was changed" +msgstr "パスワードを変更しました" #: templates/personal.php:20 msgid "Unable to change your password" diff --git a/l10n/ko/core.po b/l10n/ko/core.po index 4d2f0561de..abd9275c62 100644 --- a/l10n/ko/core.po +++ b/l10n/ko/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -31,58 +31,62 @@ msgstr "추가할 카테고리가 없습니까?" msgid "This category already exists: " msgstr "이 카테고리는 이미 존재합니다:" -#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "설정" -#: js/js.js:593 +#: js/js.js:645 msgid "January" msgstr "1월" -#: js/js.js:593 +#: js/js.js:645 msgid "February" msgstr "2월" -#: js/js.js:593 +#: js/js.js:645 msgid "March" msgstr "3월" -#: js/js.js:593 +#: js/js.js:645 msgid "April" msgstr "4월" -#: js/js.js:593 +#: js/js.js:645 msgid "May" msgstr "5월" -#: js/js.js:593 +#: js/js.js:645 msgid "June" msgstr "6월" -#: js/js.js:594 +#: js/js.js:646 msgid "July" msgstr "7월" -#: js/js.js:594 +#: js/js.js:646 msgid "August" msgstr "8월" -#: js/js.js:594 +#: js/js.js:646 msgid "September" msgstr "9월" -#: js/js.js:594 +#: js/js.js:646 msgid "October" msgstr "10월" -#: js/js.js:594 +#: js/js.js:646 msgid "November" msgstr "11월" -#: js/js.js:594 +#: js/js.js:646 msgid "December" msgstr "12월" +#: js/oc-dialogs.js:123 +msgid "Choose" +msgstr "" + #: js/oc-dialogs.js:143 js/oc-dialogs.js:163 msgid "Cancel" msgstr "취소" @@ -103,10 +107,119 @@ msgstr "승락" msgid "No categories selected for deletion." msgstr "삭제 카테고리를 선택하지 않았습니다." -#: js/oc-vcategories.js:68 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 +#: js/share.js:501 msgid "Error" msgstr "에러" +#: js/share.js:103 +msgid "Error while sharing" +msgstr "" + +#: js/share.js:114 +msgid "Error while unsharing" +msgstr "" + +#: js/share.js:121 +msgid "Error while changing permissions" +msgstr "" + +#: js/share.js:130 +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" +msgstr "" + +#: js/share.js:132 +msgid "Shared with you by" +msgstr "" + +#: js/share.js:137 +msgid "Share with" +msgstr "" + +#: js/share.js:142 +msgid "Share with link" +msgstr "" + +#: js/share.js:143 +msgid "Password protect" +msgstr "" + +#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +msgid "Password" +msgstr "암호" + +#: js/share.js:152 +msgid "Set expiration date" +msgstr "" + +#: js/share.js:153 +msgid "Expiration date" +msgstr "" + +#: js/share.js:185 +msgid "Share via email:" +msgstr "" + +#: js/share.js:187 +msgid "No people found" +msgstr "" + +#: js/share.js:214 +msgid "Resharing is not allowed" +msgstr "" + +#: js/share.js:250 +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" +msgstr "" + +#: js/share.js:271 +msgid "Unshare" +msgstr "" + +#: js/share.js:279 +msgid "can edit" +msgstr "" + +#: js/share.js:281 +msgid "access control" +msgstr "" + +#: js/share.js:284 +msgid "create" +msgstr "" + +#: js/share.js:287 +msgid "update" +msgstr "" + +#: js/share.js:290 +msgid "delete" +msgstr "" + +#: js/share.js:293 +msgid "share" +msgstr "" + +#: js/share.js:317 js/share.js:476 +msgid "Password protected" +msgstr "" + +#: js/share.js:489 +msgid "Error unsetting expiration date" +msgstr "" + +#: js/share.js:501 +msgid "Error setting expiration date" +msgstr "" + #: lostpassword/index.php:26 msgid "ownCloud password reset" msgstr "ownCloud 비밀번호 재설정" @@ -192,10 +305,6 @@ msgstr "추가" msgid "Create an admin account" msgstr "관리자 계정을 만드십시오" -#: templates/installation.php:30 templates/login.php:13 -msgid "Password" -msgstr "암호" - #: templates/installation.php:36 msgid "Advanced" msgstr "고급" @@ -237,11 +346,11 @@ msgstr "데이터베이스 호스트" msgid "Finish setup" msgstr "설치 완료" -#: templates/layout.guest.php:42 +#: templates/layout.guest.php:36 msgid "web services under your control" msgstr "내가 관리하는 웹 서비스" -#: templates/layout.user.php:45 +#: templates/layout.user.php:34 msgid "Log out" msgstr "로그아웃" diff --git a/l10n/ko/files.po b/l10n/ko/files.po index 7167506ae4..fdbc75250d 100644 --- a/l10n/ko/files.po +++ b/l10n/ko/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-26 13:19+0200\n" +"PO-Revision-Date: 2012-09-26 11:20+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -61,39 +61,43 @@ msgstr "" msgid "Delete" msgstr "삭제" -#: js/filelist.js:186 js/filelist.js:188 +#: js/fileactions.js:182 +msgid "Rename" +msgstr "" + +#: js/filelist.js:190 js/filelist.js:192 msgid "already exists" msgstr "이미 존재 합니다" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "replace" msgstr "대체" -#: js/filelist.js:186 +#: js/filelist.js:190 msgid "suggest name" msgstr "" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "cancel" msgstr "취소" -#: js/filelist.js:235 js/filelist.js:237 +#: js/filelist.js:239 js/filelist.js:241 msgid "replaced" msgstr "대체됨" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:239 js/filelist.js:241 js/filelist.js:273 js/filelist.js:275 msgid "undo" msgstr "복구" -#: js/filelist.js:237 +#: js/filelist.js:241 msgid "with" msgstr "와" -#: js/filelist.js:268 +#: js/filelist.js:273 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:275 msgid "deleted" msgstr "삭제" @@ -109,47 +113,107 @@ msgstr "이 파일은 디렉토리이거나 0 바이트이기 때문에 업로 msgid "Upload Error" msgstr "업로드 에러" -#: js/files.js:236 js/files.js:341 js/files.js:370 +#: js/files.js:236 js/files.js:341 js/files.js:371 msgid "Pending" msgstr "보류 중" -#: js/files.js:355 +#: js/files.js:256 +msgid "1 file uploading" +msgstr "" + +#: js/files.js:259 js/files.js:304 js/files.js:319 +msgid "files uploading" +msgstr "" + +#: js/files.js:322 js/files.js:355 msgid "Upload cancelled." msgstr "업로드 취소." -#: js/files.js:423 +#: js/files.js:424 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:493 +#: js/files.js:494 msgid "Invalid name, '/' is not allowed." msgstr "잘못된 이름, '/' 은 허용이 되지 않습니다." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:667 +msgid "files scanned" +msgstr "" + +#: js/files.js:675 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:48 +msgid "Name" +msgstr "이름" + +#: js/files.js:749 templates/index.php:56 msgid "Size" msgstr "크기" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:750 templates/index.php:58 msgid "Modified" msgstr "수정됨" -#: js/files.js:774 +#: js/files.js:777 msgid "folder" msgstr "폴더" -#: js/files.js:776 +#: js/files.js:779 msgid "folders" msgstr "폴더" -#: js/files.js:784 +#: js/files.js:787 msgid "file" msgstr "파일" -#: js/files.js:786 +#: js/files.js:789 msgid "files" msgstr "파일" +#: js/files.js:833 +msgid "seconds ago" +msgstr "" + +#: js/files.js:834 +msgid "minute ago" +msgstr "" + +#: js/files.js:835 +msgid "minutes ago" +msgstr "" + +#: js/files.js:838 +msgid "today" +msgstr "" + +#: js/files.js:839 +msgid "yesterday" +msgstr "" + +#: js/files.js:840 +msgid "days ago" +msgstr "" + +#: js/files.js:841 +msgid "last month" +msgstr "" + +#: js/files.js:843 +msgid "months ago" +msgstr "" + +#: js/files.js:844 +msgid "last year" +msgstr "" + +#: js/files.js:845 +msgid "years ago" +msgstr "" + #: templates/admin.php:5 msgid "File handling" msgstr "파일 처리" @@ -198,7 +262,7 @@ msgstr "폴더" msgid "From url" msgstr "URL 에서" -#: templates/index.php:21 +#: templates/index.php:20 msgid "Upload" msgstr "업로드" @@ -210,10 +274,6 @@ msgstr "업로드 취소" msgid "Nothing in here. Upload something!" msgstr "내용이 없습니다. 업로드할 수 있습니다!" -#: templates/index.php:48 -msgid "Name" -msgstr "이름" - #: templates/index.php:50 msgid "Share" msgstr "공유" diff --git a/l10n/ko/files_sharing.po b/l10n/ko/files_sharing.po index c02f8ffff5..3b01080f8d 100644 --- a/l10n/ko/files_sharing.po +++ b/l10n/ko/files_sharing.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-22 01:14+0200\n" +"PO-Revision-Date: 2012-09-21 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ko\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: templates/authenticate.php:4 msgid "Password" @@ -25,14 +25,24 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 templates/public.php:19 +#: templates/public.php:9 +#, php-format +msgid "%s shared the folder %s with you" +msgstr "" + +#: templates/public.php:11 +#, php-format +msgid "%s shared the file %s with you" +msgstr "" + +#: templates/public.php:14 templates/public.php:30 msgid "Download" msgstr "" -#: templates/public.php:18 +#: templates/public.php:29 msgid "No preview available for" msgstr "" -#: templates/public.php:23 +#: templates/public.php:37 msgid "web services under your control" msgstr "" diff --git a/l10n/ko/files_versions.po b/l10n/ko/files_versions.po index 60f6f7ab63..58730e41e0 100644 --- a/l10n/ko/files_versions.po +++ b/l10n/ko/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" -"PO-Revision-Date: 2012-09-17 00:04+0000\n" +"POT-Creation-Date: 2012-09-22 01:14+0200\n" +"PO-Revision-Date: 2012-09-21 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -21,6 +21,10 @@ msgstr "" msgid "Expire all versions" msgstr "" +#: js/versions.js:16 +msgid "History" +msgstr "" + #: templates/settings-personal.php:4 msgid "Versions" msgstr "" diff --git a/l10n/ko/settings.po b/l10n/ko/settings.po index 7012c67898..20ae40411c 100644 --- a/l10n/ko/settings.po +++ b/l10n/ko/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:03+0200\n" -"PO-Revision-Date: 2012-09-17 00:03+0000\n" +"POT-Creation-Date: 2012-09-19 02:02+0200\n" +"PO-Revision-Date: 2012-09-19 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -36,7 +36,7 @@ msgstr "" msgid "Unable to add group" msgstr "" -#: ajax/enableapp.php:13 +#: ajax/enableapp.php:14 msgid "Could not enable app. " msgstr "" @@ -78,15 +78,11 @@ msgstr "" msgid "Unable to remove user from group %s" msgstr "" -#: js/apps.js:18 -msgid "Error" -msgstr "에러" - -#: js/apps.js:39 js/apps.js:73 +#: js/apps.js:27 js/apps.js:61 msgid "Disable" msgstr "비활성화" -#: js/apps.js:39 js/apps.js:62 +#: js/apps.js:27 js/apps.js:50 msgid "Enable" msgstr "활성화" @@ -226,12 +222,9 @@ msgid "Answer" msgstr "대답" #: templates/personal.php:8 -msgid "You use" -msgstr "현재 사용 중:" - -#: templates/personal.php:8 -msgid "of the available" -msgstr "사용 가능:" +#, php-format +msgid "You have used %s of the available %s" +msgstr "" #: templates/personal.php:12 msgid "Desktop and Mobile Syncing Clients" @@ -242,8 +235,8 @@ msgid "Download" msgstr "다운로드" #: templates/personal.php:19 -msgid "Your password got changed" -msgstr "암호가 변경되었습니다" +msgid "Your password was changed" +msgstr "" #: templates/personal.php:20 msgid "Unable to change your password" diff --git a/l10n/l10n.pl b/l10n/l10n.pl index 0f75cc5c7e..346a21bfef 100644 --- a/l10n/l10n.pl +++ b/l10n/l10n.pl @@ -101,7 +101,7 @@ if( $task eq 'read' ){ foreach my $file ( @totranslate ){ next if $ignore{$file}; my $keyword = ( $file =~ /\.js$/ ? 't:2' : 't'); - my $language = ( $file =~ /\.js$/ ? 'Perl' : 'PHP'); + my $language = ( $file =~ /\.js$/ ? 'Python' : 'PHP'); my $joinexisting = ( -e $output ? '--join-existing' : ''); print " Reading $file\n"; `xgettext --output="$output" $joinexisting --keyword=$keyword --language=$language "$file"`; diff --git a/l10n/lb/core.po b/l10n/lb/core.po index 6c3da7e6b5..80b7b61b14 100644 --- a/l10n/lb/core.po +++ b/l10n/lb/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -30,58 +30,62 @@ msgstr "Keng Kategorie fir bäizesetzen?" msgid "This category already exists: " msgstr "Des Kategorie existéiert schonn:" -#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Astellungen" -#: js/js.js:593 +#: js/js.js:645 msgid "January" msgstr "Januar" -#: js/js.js:593 +#: js/js.js:645 msgid "February" msgstr "Februar" -#: js/js.js:593 +#: js/js.js:645 msgid "March" msgstr "Mäerz" -#: js/js.js:593 +#: js/js.js:645 msgid "April" msgstr "Abrëll" -#: js/js.js:593 +#: js/js.js:645 msgid "May" msgstr "Mee" -#: js/js.js:593 +#: js/js.js:645 msgid "June" msgstr "Juni" -#: js/js.js:594 +#: js/js.js:646 msgid "July" msgstr "Juli" -#: js/js.js:594 +#: js/js.js:646 msgid "August" msgstr "August" -#: js/js.js:594 +#: js/js.js:646 msgid "September" msgstr "September" -#: js/js.js:594 +#: js/js.js:646 msgid "October" msgstr "Oktober" -#: js/js.js:594 +#: js/js.js:646 msgid "November" msgstr "November" -#: js/js.js:594 +#: js/js.js:646 msgid "December" msgstr "Dezember" +#: js/oc-dialogs.js:123 +msgid "Choose" +msgstr "" + #: js/oc-dialogs.js:143 js/oc-dialogs.js:163 msgid "Cancel" msgstr "Ofbriechen" @@ -102,10 +106,119 @@ msgstr "OK" msgid "No categories selected for deletion." msgstr "Keng Kategorien ausgewielt fir ze läschen." -#: js/oc-vcategories.js:68 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 +#: js/share.js:501 msgid "Error" msgstr "Fehler" +#: js/share.js:103 +msgid "Error while sharing" +msgstr "" + +#: js/share.js:114 +msgid "Error while unsharing" +msgstr "" + +#: js/share.js:121 +msgid "Error while changing permissions" +msgstr "" + +#: js/share.js:130 +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" +msgstr "" + +#: js/share.js:132 +msgid "Shared with you by" +msgstr "" + +#: js/share.js:137 +msgid "Share with" +msgstr "" + +#: js/share.js:142 +msgid "Share with link" +msgstr "" + +#: js/share.js:143 +msgid "Password protect" +msgstr "" + +#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +msgid "Password" +msgstr "Passwuert" + +#: js/share.js:152 +msgid "Set expiration date" +msgstr "" + +#: js/share.js:153 +msgid "Expiration date" +msgstr "" + +#: js/share.js:185 +msgid "Share via email:" +msgstr "" + +#: js/share.js:187 +msgid "No people found" +msgstr "" + +#: js/share.js:214 +msgid "Resharing is not allowed" +msgstr "" + +#: js/share.js:250 +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" +msgstr "" + +#: js/share.js:271 +msgid "Unshare" +msgstr "" + +#: js/share.js:279 +msgid "can edit" +msgstr "" + +#: js/share.js:281 +msgid "access control" +msgstr "" + +#: js/share.js:284 +msgid "create" +msgstr "" + +#: js/share.js:287 +msgid "update" +msgstr "" + +#: js/share.js:290 +msgid "delete" +msgstr "" + +#: js/share.js:293 +msgid "share" +msgstr "" + +#: js/share.js:317 js/share.js:476 +msgid "Password protected" +msgstr "" + +#: js/share.js:489 +msgid "Error unsetting expiration date" +msgstr "" + +#: js/share.js:501 +msgid "Error setting expiration date" +msgstr "" + #: lostpassword/index.php:26 msgid "ownCloud password reset" msgstr "ownCloud Passwuert reset" @@ -191,10 +304,6 @@ msgstr "Bäisetzen" msgid "Create an admin account" msgstr "En Admin Account uleeën" -#: templates/installation.php:30 templates/login.php:13 -msgid "Password" -msgstr "Passwuert" - #: templates/installation.php:36 msgid "Advanced" msgstr "Advanced" @@ -236,11 +345,11 @@ msgstr "Datebank Server" msgid "Finish setup" msgstr "Installatioun ofschléissen" -#: templates/layout.guest.php:42 +#: templates/layout.guest.php:36 msgid "web services under your control" msgstr "Web Servicer ënnert denger Kontroll" -#: templates/layout.user.php:45 +#: templates/layout.user.php:34 msgid "Log out" msgstr "Ausloggen" diff --git a/l10n/lb/files.po b/l10n/lb/files.po index 6e4157f7be..582e344c38 100644 --- a/l10n/lb/files.po +++ b/l10n/lb/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-26 13:19+0200\n" +"PO-Revision-Date: 2012-09-26 11:20+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -60,39 +60,43 @@ msgstr "" msgid "Delete" msgstr "Läschen" -#: js/filelist.js:186 js/filelist.js:188 +#: js/fileactions.js:182 +msgid "Rename" +msgstr "" + +#: js/filelist.js:190 js/filelist.js:192 msgid "already exists" msgstr "existéiert schonn" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "replace" msgstr "ersetzen" -#: js/filelist.js:186 +#: js/filelist.js:190 msgid "suggest name" msgstr "" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "cancel" msgstr "ofbriechen" -#: js/filelist.js:235 js/filelist.js:237 +#: js/filelist.js:239 js/filelist.js:241 msgid "replaced" msgstr "ersat" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:239 js/filelist.js:241 js/filelist.js:273 js/filelist.js:275 msgid "undo" msgstr "réckgängeg man" -#: js/filelist.js:237 +#: js/filelist.js:241 msgid "with" msgstr "mat" -#: js/filelist.js:268 +#: js/filelist.js:273 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:275 msgid "deleted" msgstr "geläscht" @@ -108,47 +112,107 @@ msgstr "Kann deng Datei net eroplueden well et en Dossier ass oder 0 byte grouss msgid "Upload Error" msgstr "Fehler beim eroplueden" -#: js/files.js:236 js/files.js:341 js/files.js:370 +#: js/files.js:236 js/files.js:341 js/files.js:371 msgid "Pending" msgstr "" -#: js/files.js:355 +#: js/files.js:256 +msgid "1 file uploading" +msgstr "" + +#: js/files.js:259 js/files.js:304 js/files.js:319 +msgid "files uploading" +msgstr "" + +#: js/files.js:322 js/files.js:355 msgid "Upload cancelled." msgstr "Upload ofgebrach." -#: js/files.js:423 +#: js/files.js:424 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "File Upload am gaang. Wann's de des Säit verléiss gëtt den Upload ofgebrach." -#: js/files.js:493 +#: js/files.js:494 msgid "Invalid name, '/' is not allowed." msgstr "Ongültege Numm, '/' net erlaabt." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:667 +msgid "files scanned" +msgstr "" + +#: js/files.js:675 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:48 +msgid "Name" +msgstr "Numm" + +#: js/files.js:749 templates/index.php:56 msgid "Size" msgstr "Gréisst" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:750 templates/index.php:58 msgid "Modified" msgstr "Geännert" -#: js/files.js:774 +#: js/files.js:777 msgid "folder" msgstr "Dossier" -#: js/files.js:776 +#: js/files.js:779 msgid "folders" msgstr "Dossieren" -#: js/files.js:784 +#: js/files.js:787 msgid "file" msgstr "Datei" -#: js/files.js:786 +#: js/files.js:789 msgid "files" msgstr "Dateien" +#: js/files.js:833 +msgid "seconds ago" +msgstr "" + +#: js/files.js:834 +msgid "minute ago" +msgstr "" + +#: js/files.js:835 +msgid "minutes ago" +msgstr "" + +#: js/files.js:838 +msgid "today" +msgstr "" + +#: js/files.js:839 +msgid "yesterday" +msgstr "" + +#: js/files.js:840 +msgid "days ago" +msgstr "" + +#: js/files.js:841 +msgid "last month" +msgstr "" + +#: js/files.js:843 +msgid "months ago" +msgstr "" + +#: js/files.js:844 +msgid "last year" +msgstr "" + +#: js/files.js:845 +msgid "years ago" +msgstr "" + #: templates/admin.php:5 msgid "File handling" msgstr "Fichier handling" @@ -197,7 +261,7 @@ msgstr "Dossier" msgid "From url" msgstr "From URL" -#: templates/index.php:21 +#: templates/index.php:20 msgid "Upload" msgstr "Eroplueden" @@ -209,10 +273,6 @@ msgstr "Upload ofbriechen" msgid "Nothing in here. Upload something!" msgstr "Hei ass näischt. Lued eppes rop!" -#: templates/index.php:48 -msgid "Name" -msgstr "Numm" - #: templates/index.php:50 msgid "Share" msgstr "Share" diff --git a/l10n/lb/files_sharing.po b/l10n/lb/files_sharing.po index 83d2cf1bb5..ebdb3f5932 100644 --- a/l10n/lb/files_sharing.po +++ b/l10n/lb/files_sharing.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-22 01:14+0200\n" +"PO-Revision-Date: 2012-09-21 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: lb\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 msgid "Password" @@ -25,14 +25,24 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 templates/public.php:19 +#: templates/public.php:9 +#, php-format +msgid "%s shared the folder %s with you" +msgstr "" + +#: templates/public.php:11 +#, php-format +msgid "%s shared the file %s with you" +msgstr "" + +#: templates/public.php:14 templates/public.php:30 msgid "Download" msgstr "" -#: templates/public.php:18 +#: templates/public.php:29 msgid "No preview available for" msgstr "" -#: templates/public.php:23 +#: templates/public.php:37 msgid "web services under your control" msgstr "" diff --git a/l10n/lb/files_versions.po b/l10n/lb/files_versions.po index 7f552845f6..9f3294d11f 100644 --- a/l10n/lb/files_versions.po +++ b/l10n/lb/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" -"PO-Revision-Date: 2012-09-17 00:04+0000\n" +"POT-Creation-Date: 2012-09-22 01:14+0200\n" +"PO-Revision-Date: 2012-09-21 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -21,6 +21,10 @@ msgstr "" msgid "Expire all versions" msgstr "" +#: js/versions.js:16 +msgid "History" +msgstr "" + #: templates/settings-personal.php:4 msgid "Versions" msgstr "" diff --git a/l10n/lb/settings.po b/l10n/lb/settings.po index 80921ebde3..034503e12c 100644 --- a/l10n/lb/settings.po +++ b/l10n/lb/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:03+0200\n" -"PO-Revision-Date: 2012-09-17 00:03+0000\n" +"POT-Creation-Date: 2012-09-19 02:02+0200\n" +"PO-Revision-Date: 2012-09-19 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -35,7 +35,7 @@ msgstr "" msgid "Unable to add group" msgstr "" -#: ajax/enableapp.php:13 +#: ajax/enableapp.php:14 msgid "Could not enable app. " msgstr "" @@ -77,15 +77,11 @@ msgstr "" msgid "Unable to remove user from group %s" msgstr "" -#: js/apps.js:18 -msgid "Error" -msgstr "Fehler" - -#: js/apps.js:39 js/apps.js:73 +#: js/apps.js:27 js/apps.js:61 msgid "Disable" msgstr "Ofschalten" -#: js/apps.js:39 js/apps.js:62 +#: js/apps.js:27 js/apps.js:50 msgid "Enable" msgstr "Aschalten" @@ -225,12 +221,9 @@ msgid "Answer" msgstr "Äntwert" #: templates/personal.php:8 -msgid "You use" -msgstr "Du benotz" - -#: templates/personal.php:8 -msgid "of the available" -msgstr "vun den disponibelen" +#, php-format +msgid "You have used %s of the available %s" +msgstr "" #: templates/personal.php:12 msgid "Desktop and Mobile Syncing Clients" @@ -241,8 +234,8 @@ msgid "Download" msgstr "Download" #: templates/personal.php:19 -msgid "Your password got changed" -msgstr "Däin Passwuert ass geännert ginn" +msgid "Your password was changed" +msgstr "" #: templates/personal.php:20 msgid "Unable to change your password" diff --git a/l10n/lt_LT/core.po b/l10n/lt_LT/core.po index 1e9dd8d63a..130c447211 100644 --- a/l10n/lt_LT/core.po +++ b/l10n/lt_LT/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -30,58 +30,62 @@ msgstr "Nepridėsite jokios kategorijos?" msgid "This category already exists: " msgstr "Tokia kategorija jau yra:" -#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Nustatymai" -#: js/js.js:593 +#: js/js.js:645 msgid "January" msgstr "Sausis" -#: js/js.js:593 +#: js/js.js:645 msgid "February" msgstr "Vasaris" -#: js/js.js:593 +#: js/js.js:645 msgid "March" msgstr "Kovas" -#: js/js.js:593 +#: js/js.js:645 msgid "April" msgstr "Balandis" -#: js/js.js:593 +#: js/js.js:645 msgid "May" msgstr "Gegužė" -#: js/js.js:593 +#: js/js.js:645 msgid "June" msgstr "Birželis" -#: js/js.js:594 +#: js/js.js:646 msgid "July" msgstr "Liepa" -#: js/js.js:594 +#: js/js.js:646 msgid "August" msgstr "Rugpjūtis" -#: js/js.js:594 +#: js/js.js:646 msgid "September" msgstr "Rugsėjis" -#: js/js.js:594 +#: js/js.js:646 msgid "October" msgstr "Spalis" -#: js/js.js:594 +#: js/js.js:646 msgid "November" msgstr "Lapkritis" -#: js/js.js:594 +#: js/js.js:646 msgid "December" msgstr "Gruodis" +#: js/oc-dialogs.js:123 +msgid "Choose" +msgstr "" + #: js/oc-dialogs.js:143 js/oc-dialogs.js:163 msgid "Cancel" msgstr "Atšaukti" @@ -102,10 +106,119 @@ msgstr "Gerai" msgid "No categories selected for deletion." msgstr "Trynimui nepasirinkta jokia kategorija." -#: js/oc-vcategories.js:68 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 +#: js/share.js:501 msgid "Error" msgstr "Klaida" +#: js/share.js:103 +msgid "Error while sharing" +msgstr "" + +#: js/share.js:114 +msgid "Error while unsharing" +msgstr "" + +#: js/share.js:121 +msgid "Error while changing permissions" +msgstr "" + +#: js/share.js:130 +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" +msgstr "" + +#: js/share.js:132 +msgid "Shared with you by" +msgstr "" + +#: js/share.js:137 +msgid "Share with" +msgstr "" + +#: js/share.js:142 +msgid "Share with link" +msgstr "" + +#: js/share.js:143 +msgid "Password protect" +msgstr "" + +#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +msgid "Password" +msgstr "Slaptažodis" + +#: js/share.js:152 +msgid "Set expiration date" +msgstr "" + +#: js/share.js:153 +msgid "Expiration date" +msgstr "" + +#: js/share.js:185 +msgid "Share via email:" +msgstr "" + +#: js/share.js:187 +msgid "No people found" +msgstr "" + +#: js/share.js:214 +msgid "Resharing is not allowed" +msgstr "" + +#: js/share.js:250 +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" +msgstr "" + +#: js/share.js:271 +msgid "Unshare" +msgstr "" + +#: js/share.js:279 +msgid "can edit" +msgstr "" + +#: js/share.js:281 +msgid "access control" +msgstr "" + +#: js/share.js:284 +msgid "create" +msgstr "" + +#: js/share.js:287 +msgid "update" +msgstr "" + +#: js/share.js:290 +msgid "delete" +msgstr "" + +#: js/share.js:293 +msgid "share" +msgstr "" + +#: js/share.js:317 js/share.js:476 +msgid "Password protected" +msgstr "" + +#: js/share.js:489 +msgid "Error unsetting expiration date" +msgstr "" + +#: js/share.js:501 +msgid "Error setting expiration date" +msgstr "" + #: lostpassword/index.php:26 msgid "ownCloud password reset" msgstr "ownCloud slaptažodžio atkūrimas" @@ -191,10 +304,6 @@ msgstr "Pridėti" msgid "Create an admin account" msgstr "Sukurti administratoriaus paskyrą" -#: templates/installation.php:30 templates/login.php:13 -msgid "Password" -msgstr "Slaptažodis" - #: templates/installation.php:36 msgid "Advanced" msgstr "Išplėstiniai" @@ -236,11 +345,11 @@ msgstr "Duomenų bazės serveris" msgid "Finish setup" msgstr "Baigti diegimą" -#: templates/layout.guest.php:42 +#: templates/layout.guest.php:36 msgid "web services under your control" msgstr "jūsų valdomos web paslaugos" -#: templates/layout.user.php:45 +#: templates/layout.user.php:34 msgid "Log out" msgstr "Atsijungti" diff --git a/l10n/lt_LT/files.po b/l10n/lt_LT/files.po index d4a5701df7..60cfe9abe2 100644 --- a/l10n/lt_LT/files.po +++ b/l10n/lt_LT/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-26 13:19+0200\n" +"PO-Revision-Date: 2012-09-26 11:20+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -61,39 +61,43 @@ msgstr "" msgid "Delete" msgstr "Ištrinti" -#: js/filelist.js:186 js/filelist.js:188 +#: js/fileactions.js:182 +msgid "Rename" +msgstr "" + +#: js/filelist.js:190 js/filelist.js:192 msgid "already exists" msgstr "" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "replace" msgstr "" -#: js/filelist.js:186 +#: js/filelist.js:190 msgid "suggest name" msgstr "" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "cancel" msgstr "atšaukti" -#: js/filelist.js:235 js/filelist.js:237 +#: js/filelist.js:239 js/filelist.js:241 msgid "replaced" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:239 js/filelist.js:241 js/filelist.js:273 js/filelist.js:275 msgid "undo" msgstr "" -#: js/filelist.js:237 +#: js/filelist.js:241 msgid "with" msgstr "" -#: js/filelist.js:268 +#: js/filelist.js:273 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:275 msgid "deleted" msgstr "" @@ -109,47 +113,107 @@ msgstr "Neįmanoma įkelti failo - jo dydis gali būti 0 bitų arba tai kataloga msgid "Upload Error" msgstr "Įkėlimo klaida" -#: js/files.js:236 js/files.js:341 js/files.js:370 +#: js/files.js:236 js/files.js:341 js/files.js:371 msgid "Pending" msgstr "Laukiantis" -#: js/files.js:355 +#: js/files.js:256 +msgid "1 file uploading" +msgstr "" + +#: js/files.js:259 js/files.js:304 js/files.js:319 +msgid "files uploading" +msgstr "" + +#: js/files.js:322 js/files.js:355 msgid "Upload cancelled." msgstr "Įkėlimas atšauktas." -#: js/files.js:423 +#: js/files.js:424 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:493 +#: js/files.js:494 msgid "Invalid name, '/' is not allowed." msgstr "Pavadinime negali būti naudojamas ženklas \"/\"." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:667 +msgid "files scanned" +msgstr "" + +#: js/files.js:675 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:48 +msgid "Name" +msgstr "Pavadinimas" + +#: js/files.js:749 templates/index.php:56 msgid "Size" msgstr "Dydis" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:750 templates/index.php:58 msgid "Modified" msgstr "Pakeista" -#: js/files.js:774 +#: js/files.js:777 msgid "folder" msgstr "katalogas" -#: js/files.js:776 +#: js/files.js:779 msgid "folders" msgstr "katalogai" -#: js/files.js:784 +#: js/files.js:787 msgid "file" msgstr "failas" -#: js/files.js:786 +#: js/files.js:789 msgid "files" msgstr "failai" +#: js/files.js:833 +msgid "seconds ago" +msgstr "" + +#: js/files.js:834 +msgid "minute ago" +msgstr "" + +#: js/files.js:835 +msgid "minutes ago" +msgstr "" + +#: js/files.js:838 +msgid "today" +msgstr "" + +#: js/files.js:839 +msgid "yesterday" +msgstr "" + +#: js/files.js:840 +msgid "days ago" +msgstr "" + +#: js/files.js:841 +msgid "last month" +msgstr "" + +#: js/files.js:843 +msgid "months ago" +msgstr "" + +#: js/files.js:844 +msgid "last year" +msgstr "" + +#: js/files.js:845 +msgid "years ago" +msgstr "" + #: templates/admin.php:5 msgid "File handling" msgstr "Failų tvarkymas" @@ -198,7 +262,7 @@ msgstr "Katalogas" msgid "From url" msgstr "Iš adreso" -#: templates/index.php:21 +#: templates/index.php:20 msgid "Upload" msgstr "Įkelti" @@ -210,10 +274,6 @@ msgstr "Atšaukti siuntimą" msgid "Nothing in here. Upload something!" msgstr "Čia tuščia. Įkelkite ką nors!" -#: templates/index.php:48 -msgid "Name" -msgstr "Pavadinimas" - #: templates/index.php:50 msgid "Share" msgstr "Dalintis" diff --git a/l10n/lt_LT/files_sharing.po b/l10n/lt_LT/files_sharing.po index c51f93d5cf..e6c1c3865f 100644 --- a/l10n/lt_LT/files_sharing.po +++ b/l10n/lt_LT/files_sharing.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-22 01:14+0200\n" +"PO-Revision-Date: 2012-09-21 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: lt_LT\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2)\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: templates/authenticate.php:4 msgid "Password" @@ -26,14 +26,24 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 templates/public.php:19 +#: templates/public.php:9 +#, php-format +msgid "%s shared the folder %s with you" +msgstr "" + +#: templates/public.php:11 +#, php-format +msgid "%s shared the file %s with you" +msgstr "" + +#: templates/public.php:14 templates/public.php:30 msgid "Download" msgstr "" -#: templates/public.php:18 +#: templates/public.php:29 msgid "No preview available for" msgstr "" -#: templates/public.php:23 +#: templates/public.php:37 msgid "web services under your control" msgstr "" diff --git a/l10n/lt_LT/files_versions.po b/l10n/lt_LT/files_versions.po index 2b7d314d00..9e25e32816 100644 --- a/l10n/lt_LT/files_versions.po +++ b/l10n/lt_LT/files_versions.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" -"PO-Revision-Date: 2012-09-17 00:04+0000\n" +"POT-Creation-Date: 2012-09-22 01:14+0200\n" +"PO-Revision-Date: 2012-09-21 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -22,6 +22,10 @@ msgstr "" msgid "Expire all versions" msgstr "Panaikinti visų versijų galiojimą" +#: js/versions.js:16 +msgid "History" +msgstr "" + #: templates/settings-personal.php:4 msgid "Versions" msgstr "" diff --git a/l10n/lt_LT/settings.po b/l10n/lt_LT/settings.po index e7274b4e65..a04942dae1 100644 --- a/l10n/lt_LT/settings.po +++ b/l10n/lt_LT/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:03+0200\n" -"PO-Revision-Date: 2012-09-17 00:03+0000\n" +"POT-Creation-Date: 2012-09-19 02:02+0200\n" +"PO-Revision-Date: 2012-09-19 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -35,7 +35,7 @@ msgstr "" msgid "Unable to add group" msgstr "" -#: ajax/enableapp.php:13 +#: ajax/enableapp.php:14 msgid "Could not enable app. " msgstr "" @@ -77,15 +77,11 @@ msgstr "" msgid "Unable to remove user from group %s" msgstr "" -#: js/apps.js:18 -msgid "Error" -msgstr "Klaida" - -#: js/apps.js:39 js/apps.js:73 +#: js/apps.js:27 js/apps.js:61 msgid "Disable" msgstr "Išjungti" -#: js/apps.js:39 js/apps.js:62 +#: js/apps.js:27 js/apps.js:50 msgid "Enable" msgstr "Įjungti" @@ -225,12 +221,9 @@ msgid "Answer" msgstr "Atsakyti" #: templates/personal.php:8 -msgid "You use" -msgstr "Jūs naudojate" - -#: templates/personal.php:8 -msgid "of the available" -msgstr "iš galimų" +#, php-format +msgid "You have used %s of the available %s" +msgstr "" #: templates/personal.php:12 msgid "Desktop and Mobile Syncing Clients" @@ -241,8 +234,8 @@ msgid "Download" msgstr "Atsisiųsti" #: templates/personal.php:19 -msgid "Your password got changed" -msgstr "Jūsų slaptažodis buvo pakeistas" +msgid "Your password was changed" +msgstr "" #: templates/personal.php:20 msgid "Unable to change your password" diff --git a/l10n/lv/core.po b/l10n/lv/core.po index 3716a06f25..a28f72fdd5 100644 --- a/l10n/lv/core.po +++ b/l10n/lv/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -30,58 +30,62 @@ msgstr "" msgid "This category already exists: " msgstr "" -#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Iestatījumi" -#: js/js.js:593 +#: js/js.js:645 msgid "January" msgstr "" -#: js/js.js:593 +#: js/js.js:645 msgid "February" msgstr "" -#: js/js.js:593 +#: js/js.js:645 msgid "March" msgstr "" -#: js/js.js:593 +#: js/js.js:645 msgid "April" msgstr "" -#: js/js.js:593 +#: js/js.js:645 msgid "May" msgstr "" -#: js/js.js:593 +#: js/js.js:645 msgid "June" msgstr "" -#: js/js.js:594 +#: js/js.js:646 msgid "July" msgstr "" -#: js/js.js:594 +#: js/js.js:646 msgid "August" msgstr "" -#: js/js.js:594 +#: js/js.js:646 msgid "September" msgstr "" -#: js/js.js:594 +#: js/js.js:646 msgid "October" msgstr "" -#: js/js.js:594 +#: js/js.js:646 msgid "November" msgstr "" -#: js/js.js:594 +#: js/js.js:646 msgid "December" msgstr "" +#: js/oc-dialogs.js:123 +msgid "Choose" +msgstr "" + #: js/oc-dialogs.js:143 js/oc-dialogs.js:163 msgid "Cancel" msgstr "" @@ -102,10 +106,119 @@ msgstr "" msgid "No categories selected for deletion." msgstr "" -#: js/oc-vcategories.js:68 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 +#: js/share.js:501 msgid "Error" msgstr "" +#: js/share.js:103 +msgid "Error while sharing" +msgstr "" + +#: js/share.js:114 +msgid "Error while unsharing" +msgstr "" + +#: js/share.js:121 +msgid "Error while changing permissions" +msgstr "" + +#: js/share.js:130 +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" +msgstr "" + +#: js/share.js:132 +msgid "Shared with you by" +msgstr "" + +#: js/share.js:137 +msgid "Share with" +msgstr "" + +#: js/share.js:142 +msgid "Share with link" +msgstr "" + +#: js/share.js:143 +msgid "Password protect" +msgstr "" + +#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +msgid "Password" +msgstr "Parole" + +#: js/share.js:152 +msgid "Set expiration date" +msgstr "" + +#: js/share.js:153 +msgid "Expiration date" +msgstr "" + +#: js/share.js:185 +msgid "Share via email:" +msgstr "" + +#: js/share.js:187 +msgid "No people found" +msgstr "" + +#: js/share.js:214 +msgid "Resharing is not allowed" +msgstr "" + +#: js/share.js:250 +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" +msgstr "" + +#: js/share.js:271 +msgid "Unshare" +msgstr "" + +#: js/share.js:279 +msgid "can edit" +msgstr "" + +#: js/share.js:281 +msgid "access control" +msgstr "" + +#: js/share.js:284 +msgid "create" +msgstr "" + +#: js/share.js:287 +msgid "update" +msgstr "" + +#: js/share.js:290 +msgid "delete" +msgstr "" + +#: js/share.js:293 +msgid "share" +msgstr "" + +#: js/share.js:317 js/share.js:476 +msgid "Password protected" +msgstr "" + +#: js/share.js:489 +msgid "Error unsetting expiration date" +msgstr "" + +#: js/share.js:501 +msgid "Error setting expiration date" +msgstr "" + #: lostpassword/index.php:26 msgid "ownCloud password reset" msgstr "" @@ -191,10 +304,6 @@ msgstr "" msgid "Create an admin account" msgstr "" -#: templates/installation.php:30 templates/login.php:13 -msgid "Password" -msgstr "Parole" - #: templates/installation.php:36 msgid "Advanced" msgstr "" @@ -236,11 +345,11 @@ msgstr "Datubāzes mājvieta" msgid "Finish setup" msgstr "Pabeigt uzstādījumus" -#: templates/layout.guest.php:42 +#: templates/layout.guest.php:36 msgid "web services under your control" msgstr "" -#: templates/layout.user.php:45 +#: templates/layout.user.php:34 msgid "Log out" msgstr "Izlogoties" diff --git a/l10n/lv/files.po b/l10n/lv/files.po index 4adbfa4bf0..ae81cbe59e 100644 --- a/l10n/lv/files.po +++ b/l10n/lv/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-26 13:19+0200\n" +"PO-Revision-Date: 2012-09-26 11:20+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -60,39 +60,43 @@ msgstr "" msgid "Delete" msgstr "Izdzēst" -#: js/filelist.js:186 js/filelist.js:188 +#: js/fileactions.js:182 +msgid "Rename" +msgstr "" + +#: js/filelist.js:190 js/filelist.js:192 msgid "already exists" msgstr "tāds fails jau eksistē" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "replace" msgstr "aizvietot" -#: js/filelist.js:186 +#: js/filelist.js:190 msgid "suggest name" msgstr "" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "cancel" msgstr "atcelt" -#: js/filelist.js:235 js/filelist.js:237 +#: js/filelist.js:239 js/filelist.js:241 msgid "replaced" msgstr "aizvietots" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:239 js/filelist.js:241 js/filelist.js:273 js/filelist.js:275 msgid "undo" msgstr "vienu soli atpakaļ" -#: js/filelist.js:237 +#: js/filelist.js:241 msgid "with" msgstr "ar" -#: js/filelist.js:268 +#: js/filelist.js:273 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:275 msgid "deleted" msgstr "izdzests" @@ -108,47 +112,107 @@ msgstr "Nav iespējams augšuplādēt jūsu failu, jo tāds jau eksistē vai ar msgid "Upload Error" msgstr "Augšuplādēšanas laikā radās kļūda" -#: js/files.js:236 js/files.js:341 js/files.js:370 +#: js/files.js:236 js/files.js:341 js/files.js:371 msgid "Pending" msgstr "Gaida savu kārtu" -#: js/files.js:355 +#: js/files.js:256 +msgid "1 file uploading" +msgstr "" + +#: js/files.js:259 js/files.js:304 js/files.js:319 +msgid "files uploading" +msgstr "" + +#: js/files.js:322 js/files.js:355 msgid "Upload cancelled." msgstr "Augšuplāde ir atcelta" -#: js/files.js:423 +#: js/files.js:424 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:493 +#: js/files.js:494 msgid "Invalid name, '/' is not allowed." msgstr "Šis simbols '/', nav atļauts." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:667 +msgid "files scanned" +msgstr "" + +#: js/files.js:675 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:48 +msgid "Name" +msgstr "Nosaukums" + +#: js/files.js:749 templates/index.php:56 msgid "Size" msgstr "Izmērs" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:750 templates/index.php:58 msgid "Modified" msgstr "Izmainīts" -#: js/files.js:774 +#: js/files.js:777 msgid "folder" msgstr "mape" -#: js/files.js:776 +#: js/files.js:779 msgid "folders" msgstr "mapes" -#: js/files.js:784 +#: js/files.js:787 msgid "file" msgstr "fails" -#: js/files.js:786 +#: js/files.js:789 msgid "files" msgstr "faili" +#: js/files.js:833 +msgid "seconds ago" +msgstr "" + +#: js/files.js:834 +msgid "minute ago" +msgstr "" + +#: js/files.js:835 +msgid "minutes ago" +msgstr "" + +#: js/files.js:838 +msgid "today" +msgstr "" + +#: js/files.js:839 +msgid "yesterday" +msgstr "" + +#: js/files.js:840 +msgid "days ago" +msgstr "" + +#: js/files.js:841 +msgid "last month" +msgstr "" + +#: js/files.js:843 +msgid "months ago" +msgstr "" + +#: js/files.js:844 +msgid "last year" +msgstr "" + +#: js/files.js:845 +msgid "years ago" +msgstr "" + #: templates/admin.php:5 msgid "File handling" msgstr "" @@ -197,7 +261,7 @@ msgstr "Mape" msgid "From url" msgstr "No URL saites" -#: templates/index.php:21 +#: templates/index.php:20 msgid "Upload" msgstr "Augšuplādet" @@ -209,10 +273,6 @@ msgstr "Atcelt augšuplādi" msgid "Nothing in here. Upload something!" msgstr "Te vēl nekas nav. Rīkojies, sāc augšuplādēt" -#: templates/index.php:48 -msgid "Name" -msgstr "Nosaukums" - #: templates/index.php:50 msgid "Share" msgstr "Līdzdalīt" diff --git a/l10n/lv/files_sharing.po b/l10n/lv/files_sharing.po index f102c0e8e3..77168f1b72 100644 --- a/l10n/lv/files_sharing.po +++ b/l10n/lv/files_sharing.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-22 01:14+0200\n" +"PO-Revision-Date: 2012-09-21 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2)\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" #: templates/authenticate.php:4 msgid "Password" @@ -25,14 +25,24 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 templates/public.php:19 +#: templates/public.php:9 +#, php-format +msgid "%s shared the folder %s with you" +msgstr "" + +#: templates/public.php:11 +#, php-format +msgid "%s shared the file %s with you" +msgstr "" + +#: templates/public.php:14 templates/public.php:30 msgid "Download" msgstr "" -#: templates/public.php:18 +#: templates/public.php:29 msgid "No preview available for" msgstr "" -#: templates/public.php:23 +#: templates/public.php:37 msgid "web services under your control" msgstr "" diff --git a/l10n/lv/files_versions.po b/l10n/lv/files_versions.po index 8e28055622..8f4cc2911f 100644 --- a/l10n/lv/files_versions.po +++ b/l10n/lv/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" -"PO-Revision-Date: 2012-09-17 00:04+0000\n" +"POT-Creation-Date: 2012-09-22 01:14+0200\n" +"PO-Revision-Date: 2012-09-21 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -21,6 +21,10 @@ msgstr "" msgid "Expire all versions" msgstr "" +#: js/versions.js:16 +msgid "History" +msgstr "" + #: templates/settings-personal.php:4 msgid "Versions" msgstr "" diff --git a/l10n/lv/settings.po b/l10n/lv/settings.po index 5f35f0bfa5..455a3b65ea 100644 --- a/l10n/lv/settings.po +++ b/l10n/lv/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:03+0200\n" -"PO-Revision-Date: 2012-09-17 00:03+0000\n" +"POT-Creation-Date: 2012-09-19 02:02+0200\n" +"PO-Revision-Date: 2012-09-19 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -35,7 +35,7 @@ msgstr "" msgid "Unable to add group" msgstr "" -#: ajax/enableapp.php:13 +#: ajax/enableapp.php:14 msgid "Could not enable app. " msgstr "" @@ -77,15 +77,11 @@ msgstr "" msgid "Unable to remove user from group %s" msgstr "" -#: js/apps.js:18 -msgid "Error" -msgstr "Kļūme" - -#: js/apps.js:39 js/apps.js:73 +#: js/apps.js:27 js/apps.js:61 msgid "Disable" msgstr "Atvienot" -#: js/apps.js:39 js/apps.js:62 +#: js/apps.js:27 js/apps.js:50 msgid "Enable" msgstr "Pievienot" @@ -225,12 +221,9 @@ msgid "Answer" msgstr "Atbildēt" #: templates/personal.php:8 -msgid "You use" -msgstr "Jūs iymantojat" - -#: templates/personal.php:8 -msgid "of the available" -msgstr "no pieejamajiem" +#, php-format +msgid "You have used %s of the available %s" +msgstr "" #: templates/personal.php:12 msgid "Desktop and Mobile Syncing Clients" @@ -241,8 +234,8 @@ msgid "Download" msgstr "Lejuplādēt" #: templates/personal.php:19 -msgid "Your password got changed" -msgstr "Jūsu parole tika nomainīta" +msgid "Your password was changed" +msgstr "" #: templates/personal.php:20 msgid "Unable to change your password" diff --git a/l10n/mk/core.po b/l10n/mk/core.po index f818b6bad6..367a70fb29 100644 --- a/l10n/mk/core.po +++ b/l10n/mk/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -32,58 +32,62 @@ msgstr "Нема категорија да се додаде?" msgid "This category already exists: " msgstr "Оваа категорија веќе постои:" -#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Поставки" -#: js/js.js:593 +#: js/js.js:645 msgid "January" msgstr "Јануари" -#: js/js.js:593 +#: js/js.js:645 msgid "February" msgstr "Февруари" -#: js/js.js:593 +#: js/js.js:645 msgid "March" msgstr "Март" -#: js/js.js:593 +#: js/js.js:645 msgid "April" msgstr "Април" -#: js/js.js:593 +#: js/js.js:645 msgid "May" msgstr "Мај" -#: js/js.js:593 +#: js/js.js:645 msgid "June" msgstr "Јуни" -#: js/js.js:594 +#: js/js.js:646 msgid "July" msgstr "Јули" -#: js/js.js:594 +#: js/js.js:646 msgid "August" msgstr "Август" -#: js/js.js:594 +#: js/js.js:646 msgid "September" msgstr "Септември" -#: js/js.js:594 +#: js/js.js:646 msgid "October" msgstr "Октомври" -#: js/js.js:594 +#: js/js.js:646 msgid "November" msgstr "Ноември" -#: js/js.js:594 +#: js/js.js:646 msgid "December" msgstr "Декември" +#: js/oc-dialogs.js:123 +msgid "Choose" +msgstr "" + #: js/oc-dialogs.js:143 js/oc-dialogs.js:163 msgid "Cancel" msgstr "Откажи" @@ -104,10 +108,119 @@ msgstr "Во ред" msgid "No categories selected for deletion." msgstr "Не е одбрана категорија за бришење." -#: js/oc-vcategories.js:68 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 +#: js/share.js:501 msgid "Error" msgstr "Грешка" +#: js/share.js:103 +msgid "Error while sharing" +msgstr "" + +#: js/share.js:114 +msgid "Error while unsharing" +msgstr "" + +#: js/share.js:121 +msgid "Error while changing permissions" +msgstr "" + +#: js/share.js:130 +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" +msgstr "" + +#: js/share.js:132 +msgid "Shared with you by" +msgstr "" + +#: js/share.js:137 +msgid "Share with" +msgstr "" + +#: js/share.js:142 +msgid "Share with link" +msgstr "" + +#: js/share.js:143 +msgid "Password protect" +msgstr "" + +#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +msgid "Password" +msgstr "Лозинка" + +#: js/share.js:152 +msgid "Set expiration date" +msgstr "" + +#: js/share.js:153 +msgid "Expiration date" +msgstr "" + +#: js/share.js:185 +msgid "Share via email:" +msgstr "" + +#: js/share.js:187 +msgid "No people found" +msgstr "" + +#: js/share.js:214 +msgid "Resharing is not allowed" +msgstr "" + +#: js/share.js:250 +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" +msgstr "" + +#: js/share.js:271 +msgid "Unshare" +msgstr "" + +#: js/share.js:279 +msgid "can edit" +msgstr "" + +#: js/share.js:281 +msgid "access control" +msgstr "" + +#: js/share.js:284 +msgid "create" +msgstr "" + +#: js/share.js:287 +msgid "update" +msgstr "" + +#: js/share.js:290 +msgid "delete" +msgstr "" + +#: js/share.js:293 +msgid "share" +msgstr "" + +#: js/share.js:317 js/share.js:476 +msgid "Password protected" +msgstr "" + +#: js/share.js:489 +msgid "Error unsetting expiration date" +msgstr "" + +#: js/share.js:501 +msgid "Error setting expiration date" +msgstr "" + #: lostpassword/index.php:26 msgid "ownCloud password reset" msgstr "ресетирање на лозинка за ownCloud" @@ -193,10 +306,6 @@ msgstr "Додади" msgid "Create an admin account" msgstr "Направете администраторска сметка" -#: templates/installation.php:30 templates/login.php:13 -msgid "Password" -msgstr "Лозинка" - #: templates/installation.php:36 msgid "Advanced" msgstr "Напредно" @@ -238,11 +347,11 @@ msgstr "Сервер со база" msgid "Finish setup" msgstr "Заврши го подесувањето" -#: templates/layout.guest.php:42 +#: templates/layout.guest.php:36 msgid "web services under your control" msgstr "веб сервиси под Ваша контрола" -#: templates/layout.user.php:45 +#: templates/layout.user.php:34 msgid "Log out" msgstr "Одјава" diff --git a/l10n/mk/files.po b/l10n/mk/files.po index 7793167ca3..c04e3640bb 100644 --- a/l10n/mk/files.po +++ b/l10n/mk/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-26 13:19+0200\n" +"PO-Revision-Date: 2012-09-26 11:20+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -62,39 +62,43 @@ msgstr "" msgid "Delete" msgstr "Избриши" -#: js/filelist.js:186 js/filelist.js:188 +#: js/fileactions.js:182 +msgid "Rename" +msgstr "" + +#: js/filelist.js:190 js/filelist.js:192 msgid "already exists" msgstr "" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "replace" msgstr "" -#: js/filelist.js:186 +#: js/filelist.js:190 msgid "suggest name" msgstr "" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "cancel" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 +#: js/filelist.js:239 js/filelist.js:241 msgid "replaced" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:239 js/filelist.js:241 js/filelist.js:273 js/filelist.js:275 msgid "undo" msgstr "" -#: js/filelist.js:237 +#: js/filelist.js:241 msgid "with" msgstr "" -#: js/filelist.js:268 +#: js/filelist.js:273 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:275 msgid "deleted" msgstr "" @@ -110,47 +114,107 @@ msgstr "Не може да се преземе вашата датотека б msgid "Upload Error" msgstr "Грешка при преземање" -#: js/files.js:236 js/files.js:341 js/files.js:370 +#: js/files.js:236 js/files.js:341 js/files.js:371 msgid "Pending" msgstr "Чека" -#: js/files.js:355 +#: js/files.js:256 +msgid "1 file uploading" +msgstr "" + +#: js/files.js:259 js/files.js:304 js/files.js:319 +msgid "files uploading" +msgstr "" + +#: js/files.js:322 js/files.js:355 msgid "Upload cancelled." msgstr "Преземањето е прекинато." -#: js/files.js:423 +#: js/files.js:424 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:493 +#: js/files.js:494 msgid "Invalid name, '/' is not allowed." msgstr "неисправно име, '/' не е дозволено." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:667 +msgid "files scanned" +msgstr "" + +#: js/files.js:675 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:48 +msgid "Name" +msgstr "Име" + +#: js/files.js:749 templates/index.php:56 msgid "Size" msgstr "Големина" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:750 templates/index.php:58 msgid "Modified" msgstr "Променето" -#: js/files.js:774 +#: js/files.js:777 msgid "folder" msgstr "фолдер" -#: js/files.js:776 +#: js/files.js:779 msgid "folders" msgstr "фолдери" -#: js/files.js:784 +#: js/files.js:787 msgid "file" msgstr "датотека" -#: js/files.js:786 +#: js/files.js:789 msgid "files" msgstr "датотеки" +#: js/files.js:833 +msgid "seconds ago" +msgstr "" + +#: js/files.js:834 +msgid "minute ago" +msgstr "" + +#: js/files.js:835 +msgid "minutes ago" +msgstr "" + +#: js/files.js:838 +msgid "today" +msgstr "" + +#: js/files.js:839 +msgid "yesterday" +msgstr "" + +#: js/files.js:840 +msgid "days ago" +msgstr "" + +#: js/files.js:841 +msgid "last month" +msgstr "" + +#: js/files.js:843 +msgid "months ago" +msgstr "" + +#: js/files.js:844 +msgid "last year" +msgstr "" + +#: js/files.js:845 +msgid "years ago" +msgstr "" + #: templates/admin.php:5 msgid "File handling" msgstr "Ракување со датотеки" @@ -199,7 +263,7 @@ msgstr "Папка" msgid "From url" msgstr "Од адреса" -#: templates/index.php:21 +#: templates/index.php:20 msgid "Upload" msgstr "Подигни" @@ -211,10 +275,6 @@ msgstr "Откажи прикачување" msgid "Nothing in here. Upload something!" msgstr "Тука нема ништо. Снимете нешто!" -#: templates/index.php:48 -msgid "Name" -msgstr "Име" - #: templates/index.php:50 msgid "Share" msgstr "Сподели" diff --git a/l10n/mk/files_sharing.po b/l10n/mk/files_sharing.po index 53057883d0..99f5454f5a 100644 --- a/l10n/mk/files_sharing.po +++ b/l10n/mk/files_sharing.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-22 01:14+0200\n" +"PO-Revision-Date: 2012-09-21 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: mk\n" -"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1\n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" #: templates/authenticate.php:4 msgid "Password" @@ -25,14 +25,24 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 templates/public.php:19 +#: templates/public.php:9 +#, php-format +msgid "%s shared the folder %s with you" +msgstr "" + +#: templates/public.php:11 +#, php-format +msgid "%s shared the file %s with you" +msgstr "" + +#: templates/public.php:14 templates/public.php:30 msgid "Download" msgstr "" -#: templates/public.php:18 +#: templates/public.php:29 msgid "No preview available for" msgstr "" -#: templates/public.php:23 +#: templates/public.php:37 msgid "web services under your control" msgstr "" diff --git a/l10n/mk/files_versions.po b/l10n/mk/files_versions.po index b4aa86ae3f..c611ab40b1 100644 --- a/l10n/mk/files_versions.po +++ b/l10n/mk/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" -"PO-Revision-Date: 2012-09-17 00:04+0000\n" +"POT-Creation-Date: 2012-09-22 01:14+0200\n" +"PO-Revision-Date: 2012-09-21 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -21,6 +21,10 @@ msgstr "" msgid "Expire all versions" msgstr "" +#: js/versions.js:16 +msgid "History" +msgstr "" + #: templates/settings-personal.php:4 msgid "Versions" msgstr "" diff --git a/l10n/mk/settings.po b/l10n/mk/settings.po index 847b78c915..0d2b29fc07 100644 --- a/l10n/mk/settings.po +++ b/l10n/mk/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:03+0200\n" -"PO-Revision-Date: 2012-09-17 00:03+0000\n" +"POT-Creation-Date: 2012-09-19 02:02+0200\n" +"PO-Revision-Date: 2012-09-19 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -36,7 +36,7 @@ msgstr "" msgid "Unable to add group" msgstr "" -#: ajax/enableapp.php:13 +#: ajax/enableapp.php:14 msgid "Could not enable app. " msgstr "" @@ -78,15 +78,11 @@ msgstr "" msgid "Unable to remove user from group %s" msgstr "" -#: js/apps.js:18 -msgid "Error" -msgstr "" - -#: js/apps.js:39 js/apps.js:73 +#: js/apps.js:27 js/apps.js:61 msgid "Disable" msgstr "Оневозможи" -#: js/apps.js:39 js/apps.js:62 +#: js/apps.js:27 js/apps.js:50 msgid "Enable" msgstr "Овозможи" @@ -226,12 +222,9 @@ msgid "Answer" msgstr "Одговор" #: templates/personal.php:8 -msgid "You use" -msgstr "Вие користите" - -#: templates/personal.php:8 -msgid "of the available" -msgstr "од достапните" +#, php-format +msgid "You have used %s of the available %s" +msgstr "" #: templates/personal.php:12 msgid "Desktop and Mobile Syncing Clients" @@ -242,8 +235,8 @@ msgid "Download" msgstr "Преземање" #: templates/personal.php:19 -msgid "Your password got changed" -msgstr "Вашата лозинка беше сменета" +msgid "Your password was changed" +msgstr "" #: templates/personal.php:20 msgid "Unable to change your password" diff --git a/l10n/ms_MY/core.po b/l10n/ms_MY/core.po index 9902f55e84..006132e209 100644 --- a/l10n/ms_MY/core.po +++ b/l10n/ms_MY/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -32,58 +32,62 @@ msgstr "Tiada kategori untuk di tambah?" msgid "This category already exists: " msgstr "Kategori ini telah wujud" -#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Tetapan" -#: js/js.js:593 +#: js/js.js:645 msgid "January" msgstr "Januari" -#: js/js.js:593 +#: js/js.js:645 msgid "February" msgstr "Februari" -#: js/js.js:593 +#: js/js.js:645 msgid "March" msgstr "Mac" -#: js/js.js:593 +#: js/js.js:645 msgid "April" msgstr "April" -#: js/js.js:593 +#: js/js.js:645 msgid "May" msgstr "Mei" -#: js/js.js:593 +#: js/js.js:645 msgid "June" msgstr "Jun" -#: js/js.js:594 +#: js/js.js:646 msgid "July" msgstr "Julai" -#: js/js.js:594 +#: js/js.js:646 msgid "August" msgstr "Ogos" -#: js/js.js:594 +#: js/js.js:646 msgid "September" msgstr "September" -#: js/js.js:594 +#: js/js.js:646 msgid "October" msgstr "Oktober" -#: js/js.js:594 +#: js/js.js:646 msgid "November" msgstr "November" -#: js/js.js:594 +#: js/js.js:646 msgid "December" msgstr "Disember" +#: js/oc-dialogs.js:123 +msgid "Choose" +msgstr "" + #: js/oc-dialogs.js:143 js/oc-dialogs.js:163 msgid "Cancel" msgstr "Batal" @@ -104,10 +108,119 @@ msgstr "Ok" msgid "No categories selected for deletion." msgstr "tiada kategori dipilih untuk penghapusan" -#: js/oc-vcategories.js:68 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 +#: js/share.js:501 msgid "Error" msgstr "Ralat" +#: js/share.js:103 +msgid "Error while sharing" +msgstr "" + +#: js/share.js:114 +msgid "Error while unsharing" +msgstr "" + +#: js/share.js:121 +msgid "Error while changing permissions" +msgstr "" + +#: js/share.js:130 +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" +msgstr "" + +#: js/share.js:132 +msgid "Shared with you by" +msgstr "" + +#: js/share.js:137 +msgid "Share with" +msgstr "" + +#: js/share.js:142 +msgid "Share with link" +msgstr "" + +#: js/share.js:143 +msgid "Password protect" +msgstr "" + +#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +msgid "Password" +msgstr "Kata laluan" + +#: js/share.js:152 +msgid "Set expiration date" +msgstr "" + +#: js/share.js:153 +msgid "Expiration date" +msgstr "" + +#: js/share.js:185 +msgid "Share via email:" +msgstr "" + +#: js/share.js:187 +msgid "No people found" +msgstr "" + +#: js/share.js:214 +msgid "Resharing is not allowed" +msgstr "" + +#: js/share.js:250 +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" +msgstr "" + +#: js/share.js:271 +msgid "Unshare" +msgstr "" + +#: js/share.js:279 +msgid "can edit" +msgstr "" + +#: js/share.js:281 +msgid "access control" +msgstr "" + +#: js/share.js:284 +msgid "create" +msgstr "" + +#: js/share.js:287 +msgid "update" +msgstr "" + +#: js/share.js:290 +msgid "delete" +msgstr "" + +#: js/share.js:293 +msgid "share" +msgstr "" + +#: js/share.js:317 js/share.js:476 +msgid "Password protected" +msgstr "" + +#: js/share.js:489 +msgid "Error unsetting expiration date" +msgstr "" + +#: js/share.js:501 +msgid "Error setting expiration date" +msgstr "" + #: lostpassword/index.php:26 msgid "ownCloud password reset" msgstr "Set semula kata lalaun ownCloud" @@ -193,10 +306,6 @@ msgstr "Tambah" msgid "Create an admin account" msgstr "buat akaun admin" -#: templates/installation.php:30 templates/login.php:13 -msgid "Password" -msgstr "Kata laluan" - #: templates/installation.php:36 msgid "Advanced" msgstr "Maju" @@ -238,11 +347,11 @@ msgstr "Hos pangkalan data" msgid "Finish setup" msgstr "Setup selesai" -#: templates/layout.guest.php:42 +#: templates/layout.guest.php:36 msgid "web services under your control" msgstr "Perkhidmatan web di bawah kawalan anda" -#: templates/layout.user.php:45 +#: templates/layout.user.php:34 msgid "Log out" msgstr "Log keluar" diff --git a/l10n/ms_MY/files.po b/l10n/ms_MY/files.po index e429d35b82..49c390d75c 100644 --- a/l10n/ms_MY/files.po +++ b/l10n/ms_MY/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-26 13:19+0200\n" +"PO-Revision-Date: 2012-09-26 11:20+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -63,39 +63,43 @@ msgstr "" msgid "Delete" msgstr "Padam" -#: js/filelist.js:186 js/filelist.js:188 +#: js/fileactions.js:182 +msgid "Rename" +msgstr "" + +#: js/filelist.js:190 js/filelist.js:192 msgid "already exists" msgstr "Sudah wujud" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "replace" msgstr "ganti" -#: js/filelist.js:186 +#: js/filelist.js:190 msgid "suggest name" msgstr "" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "cancel" msgstr "Batal" -#: js/filelist.js:235 js/filelist.js:237 +#: js/filelist.js:239 js/filelist.js:241 msgid "replaced" msgstr "diganti" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:239 js/filelist.js:241 js/filelist.js:273 js/filelist.js:275 msgid "undo" msgstr "" -#: js/filelist.js:237 +#: js/filelist.js:241 msgid "with" msgstr "dengan" -#: js/filelist.js:268 +#: js/filelist.js:273 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:275 msgid "deleted" msgstr "dihapus" @@ -111,47 +115,107 @@ msgstr "Tidak boleh memuatnaik fail anda kerana mungkin ianya direktori atau sai msgid "Upload Error" msgstr "Muat naik ralat" -#: js/files.js:236 js/files.js:341 js/files.js:370 +#: js/files.js:236 js/files.js:341 js/files.js:371 msgid "Pending" msgstr "Dalam proses" -#: js/files.js:355 +#: js/files.js:256 +msgid "1 file uploading" +msgstr "" + +#: js/files.js:259 js/files.js:304 js/files.js:319 +msgid "files uploading" +msgstr "" + +#: js/files.js:322 js/files.js:355 msgid "Upload cancelled." msgstr "Muatnaik dibatalkan." -#: js/files.js:423 +#: js/files.js:424 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:493 +#: js/files.js:494 msgid "Invalid name, '/' is not allowed." msgstr "penggunaa nama tidak sah, '/' tidak dibenarkan." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:667 +msgid "files scanned" +msgstr "" + +#: js/files.js:675 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:48 +msgid "Name" +msgstr "Nama " + +#: js/files.js:749 templates/index.php:56 msgid "Size" msgstr "Saiz" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:750 templates/index.php:58 msgid "Modified" msgstr "Dimodifikasi" -#: js/files.js:774 +#: js/files.js:777 msgid "folder" msgstr "direktori" -#: js/files.js:776 +#: js/files.js:779 msgid "folders" msgstr "direktori" -#: js/files.js:784 +#: js/files.js:787 msgid "file" msgstr "fail" -#: js/files.js:786 +#: js/files.js:789 msgid "files" msgstr "fail" +#: js/files.js:833 +msgid "seconds ago" +msgstr "" + +#: js/files.js:834 +msgid "minute ago" +msgstr "" + +#: js/files.js:835 +msgid "minutes ago" +msgstr "" + +#: js/files.js:838 +msgid "today" +msgstr "" + +#: js/files.js:839 +msgid "yesterday" +msgstr "" + +#: js/files.js:840 +msgid "days ago" +msgstr "" + +#: js/files.js:841 +msgid "last month" +msgstr "" + +#: js/files.js:843 +msgid "months ago" +msgstr "" + +#: js/files.js:844 +msgid "last year" +msgstr "" + +#: js/files.js:845 +msgid "years ago" +msgstr "" + #: templates/admin.php:5 msgid "File handling" msgstr "Pengendalian fail" @@ -200,7 +264,7 @@ msgstr "Folder" msgid "From url" msgstr "Dari url" -#: templates/index.php:21 +#: templates/index.php:20 msgid "Upload" msgstr "Muat naik" @@ -212,10 +276,6 @@ msgstr "Batal muat naik" msgid "Nothing in here. Upload something!" msgstr "Tiada apa-apa di sini. Muat naik sesuatu!" -#: templates/index.php:48 -msgid "Name" -msgstr "Nama " - #: templates/index.php:50 msgid "Share" msgstr "Kongsi" diff --git a/l10n/ms_MY/files_sharing.po b/l10n/ms_MY/files_sharing.po index ed56ac1736..6518fcc4c6 100644 --- a/l10n/ms_MY/files_sharing.po +++ b/l10n/ms_MY/files_sharing.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-22 01:14+0200\n" +"PO-Revision-Date: 2012-09-21 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ms_MY\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: templates/authenticate.php:4 msgid "Password" @@ -25,14 +25,24 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 templates/public.php:19 +#: templates/public.php:9 +#, php-format +msgid "%s shared the folder %s with you" +msgstr "" + +#: templates/public.php:11 +#, php-format +msgid "%s shared the file %s with you" +msgstr "" + +#: templates/public.php:14 templates/public.php:30 msgid "Download" msgstr "" -#: templates/public.php:18 +#: templates/public.php:29 msgid "No preview available for" msgstr "" -#: templates/public.php:23 +#: templates/public.php:37 msgid "web services under your control" msgstr "" diff --git a/l10n/ms_MY/files_versions.po b/l10n/ms_MY/files_versions.po index 1eb0340867..46f3f7ed90 100644 --- a/l10n/ms_MY/files_versions.po +++ b/l10n/ms_MY/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" -"PO-Revision-Date: 2012-09-17 00:04+0000\n" +"POT-Creation-Date: 2012-09-22 01:14+0200\n" +"PO-Revision-Date: 2012-09-21 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -21,6 +21,10 @@ msgstr "" msgid "Expire all versions" msgstr "" +#: js/versions.js:16 +msgid "History" +msgstr "" + #: templates/settings-personal.php:4 msgid "Versions" msgstr "" diff --git a/l10n/ms_MY/settings.po b/l10n/ms_MY/settings.po index c9700ca3a0..a1f4ffdd29 100644 --- a/l10n/ms_MY/settings.po +++ b/l10n/ms_MY/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:03+0200\n" -"PO-Revision-Date: 2012-09-17 00:03+0000\n" +"POT-Creation-Date: 2012-09-19 02:02+0200\n" +"PO-Revision-Date: 2012-09-19 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -38,7 +38,7 @@ msgstr "" msgid "Unable to add group" msgstr "" -#: ajax/enableapp.php:13 +#: ajax/enableapp.php:14 msgid "Could not enable app. " msgstr "" @@ -80,15 +80,11 @@ msgstr "" msgid "Unable to remove user from group %s" msgstr "" -#: js/apps.js:18 -msgid "Error" -msgstr "" - -#: js/apps.js:39 js/apps.js:73 +#: js/apps.js:27 js/apps.js:61 msgid "Disable" msgstr "Nyahaktif" -#: js/apps.js:39 js/apps.js:62 +#: js/apps.js:27 js/apps.js:50 msgid "Enable" msgstr "Aktif" @@ -228,12 +224,9 @@ msgid "Answer" msgstr "Jawapan" #: templates/personal.php:8 -msgid "You use" -msgstr "Anda menggunakan" - -#: templates/personal.php:8 -msgid "of the available" -msgstr "yang tersedia" +#, php-format +msgid "You have used %s of the available %s" +msgstr "" #: templates/personal.php:12 msgid "Desktop and Mobile Syncing Clients" @@ -244,8 +237,8 @@ msgid "Download" msgstr "Muat turun" #: templates/personal.php:19 -msgid "Your password got changed" -msgstr "Kata laluan anda diubah" +msgid "Your password was changed" +msgstr "" #: templates/personal.php:20 msgid "Unable to change your password" diff --git a/l10n/nb_NO/core.po b/l10n/nb_NO/core.po index edb38d95e5..3a89a7bb4b 100644 --- a/l10n/nb_NO/core.po +++ b/l10n/nb_NO/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -34,58 +34,62 @@ msgstr "Ingen kategorier å legge til?" msgid "This category already exists: " msgstr "Denne kategorien finnes allerede:" -#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Innstillinger" -#: js/js.js:593 +#: js/js.js:645 msgid "January" msgstr "Januar" -#: js/js.js:593 +#: js/js.js:645 msgid "February" msgstr "Februar" -#: js/js.js:593 +#: js/js.js:645 msgid "March" msgstr "Mars" -#: js/js.js:593 +#: js/js.js:645 msgid "April" msgstr "April" -#: js/js.js:593 +#: js/js.js:645 msgid "May" msgstr "Mai" -#: js/js.js:593 +#: js/js.js:645 msgid "June" msgstr "Juni" -#: js/js.js:594 +#: js/js.js:646 msgid "July" msgstr "Juli" -#: js/js.js:594 +#: js/js.js:646 msgid "August" msgstr "August" -#: js/js.js:594 +#: js/js.js:646 msgid "September" msgstr "September" -#: js/js.js:594 +#: js/js.js:646 msgid "October" msgstr "Oktober" -#: js/js.js:594 +#: js/js.js:646 msgid "November" msgstr "November" -#: js/js.js:594 +#: js/js.js:646 msgid "December" msgstr "Desember" +#: js/oc-dialogs.js:123 +msgid "Choose" +msgstr "" + #: js/oc-dialogs.js:143 js/oc-dialogs.js:163 msgid "Cancel" msgstr "Avbryt" @@ -106,10 +110,119 @@ msgstr "Ok" msgid "No categories selected for deletion." msgstr "Ingen kategorier merket for sletting." -#: js/oc-vcategories.js:68 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 +#: js/share.js:501 msgid "Error" msgstr "Feil" +#: js/share.js:103 +msgid "Error while sharing" +msgstr "" + +#: js/share.js:114 +msgid "Error while unsharing" +msgstr "" + +#: js/share.js:121 +msgid "Error while changing permissions" +msgstr "" + +#: js/share.js:130 +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" +msgstr "" + +#: js/share.js:132 +msgid "Shared with you by" +msgstr "" + +#: js/share.js:137 +msgid "Share with" +msgstr "" + +#: js/share.js:142 +msgid "Share with link" +msgstr "" + +#: js/share.js:143 +msgid "Password protect" +msgstr "" + +#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +msgid "Password" +msgstr "Passord" + +#: js/share.js:152 +msgid "Set expiration date" +msgstr "" + +#: js/share.js:153 +msgid "Expiration date" +msgstr "" + +#: js/share.js:185 +msgid "Share via email:" +msgstr "" + +#: js/share.js:187 +msgid "No people found" +msgstr "" + +#: js/share.js:214 +msgid "Resharing is not allowed" +msgstr "" + +#: js/share.js:250 +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" +msgstr "" + +#: js/share.js:271 +msgid "Unshare" +msgstr "" + +#: js/share.js:279 +msgid "can edit" +msgstr "" + +#: js/share.js:281 +msgid "access control" +msgstr "" + +#: js/share.js:284 +msgid "create" +msgstr "" + +#: js/share.js:287 +msgid "update" +msgstr "" + +#: js/share.js:290 +msgid "delete" +msgstr "" + +#: js/share.js:293 +msgid "share" +msgstr "" + +#: js/share.js:317 js/share.js:476 +msgid "Password protected" +msgstr "" + +#: js/share.js:489 +msgid "Error unsetting expiration date" +msgstr "" + +#: js/share.js:501 +msgid "Error setting expiration date" +msgstr "" + #: lostpassword/index.php:26 msgid "ownCloud password reset" msgstr "Tilbakestill ownCloud passord" @@ -195,10 +308,6 @@ msgstr "Legg til" msgid "Create an admin account" msgstr "opprett en administrator-konto" -#: templates/installation.php:30 templates/login.php:13 -msgid "Password" -msgstr "Passord" - #: templates/installation.php:36 msgid "Advanced" msgstr "Avansert" @@ -240,11 +349,11 @@ msgstr "Databasevert" msgid "Finish setup" msgstr "Fullfør oppsetting" -#: templates/layout.guest.php:42 +#: templates/layout.guest.php:36 msgid "web services under your control" msgstr "nettjenester under din kontroll" -#: templates/layout.user.php:45 +#: templates/layout.user.php:34 msgid "Log out" msgstr "Logg ut" diff --git a/l10n/nb_NO/files.po b/l10n/nb_NO/files.po index 8366b5c7be..3a28425725 100644 --- a/l10n/nb_NO/files.po +++ b/l10n/nb_NO/files.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-26 13:19+0200\n" +"PO-Revision-Date: 2012-09-26 11:20+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -65,39 +65,43 @@ msgstr "" msgid "Delete" msgstr "Slett" -#: js/filelist.js:186 js/filelist.js:188 +#: js/fileactions.js:182 +msgid "Rename" +msgstr "" + +#: js/filelist.js:190 js/filelist.js:192 msgid "already exists" msgstr "eksisterer allerede" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "replace" msgstr "erstatt" -#: js/filelist.js:186 +#: js/filelist.js:190 msgid "suggest name" msgstr "" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "cancel" msgstr "avbryt" -#: js/filelist.js:235 js/filelist.js:237 +#: js/filelist.js:239 js/filelist.js:241 msgid "replaced" msgstr "erstattet" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:239 js/filelist.js:241 js/filelist.js:273 js/filelist.js:275 msgid "undo" msgstr "angre" -#: js/filelist.js:237 +#: js/filelist.js:241 msgid "with" msgstr "med" -#: js/filelist.js:268 +#: js/filelist.js:273 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:275 msgid "deleted" msgstr "slettet" @@ -113,47 +117,107 @@ msgstr "Kan ikke laste opp filen din siden det er en mappe eller den har 0 bytes msgid "Upload Error" msgstr "Opplasting feilet" -#: js/files.js:236 js/files.js:341 js/files.js:370 +#: js/files.js:236 js/files.js:341 js/files.js:371 msgid "Pending" msgstr "Ventende" -#: js/files.js:355 +#: js/files.js:256 +msgid "1 file uploading" +msgstr "" + +#: js/files.js:259 js/files.js:304 js/files.js:319 +msgid "files uploading" +msgstr "" + +#: js/files.js:322 js/files.js:355 msgid "Upload cancelled." msgstr "Opplasting avbrutt." -#: js/files.js:423 +#: js/files.js:424 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:493 +#: js/files.js:494 msgid "Invalid name, '/' is not allowed." msgstr "Ugyldig navn, '/' er ikke tillatt. " -#: js/files.js:746 templates/index.php:56 +#: js/files.js:667 +msgid "files scanned" +msgstr "" + +#: js/files.js:675 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:48 +msgid "Name" +msgstr "Navn" + +#: js/files.js:749 templates/index.php:56 msgid "Size" msgstr "Størrelse" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:750 templates/index.php:58 msgid "Modified" msgstr "Endret" -#: js/files.js:774 +#: js/files.js:777 msgid "folder" msgstr "mappe" -#: js/files.js:776 +#: js/files.js:779 msgid "folders" msgstr "mapper" -#: js/files.js:784 +#: js/files.js:787 msgid "file" msgstr "fil" -#: js/files.js:786 +#: js/files.js:789 msgid "files" msgstr "filer" +#: js/files.js:833 +msgid "seconds ago" +msgstr "" + +#: js/files.js:834 +msgid "minute ago" +msgstr "" + +#: js/files.js:835 +msgid "minutes ago" +msgstr "" + +#: js/files.js:838 +msgid "today" +msgstr "" + +#: js/files.js:839 +msgid "yesterday" +msgstr "" + +#: js/files.js:840 +msgid "days ago" +msgstr "" + +#: js/files.js:841 +msgid "last month" +msgstr "" + +#: js/files.js:843 +msgid "months ago" +msgstr "" + +#: js/files.js:844 +msgid "last year" +msgstr "" + +#: js/files.js:845 +msgid "years ago" +msgstr "" + #: templates/admin.php:5 msgid "File handling" msgstr "Filhåndtering" @@ -202,7 +266,7 @@ msgstr "Mappe" msgid "From url" msgstr "Fra url" -#: templates/index.php:21 +#: templates/index.php:20 msgid "Upload" msgstr "Last opp" @@ -214,10 +278,6 @@ msgstr "Avbryt opplasting" msgid "Nothing in here. Upload something!" msgstr "Ingenting her. Last opp noe!" -#: templates/index.php:48 -msgid "Name" -msgstr "Navn" - #: templates/index.php:50 msgid "Share" msgstr "Del" diff --git a/l10n/nb_NO/files_sharing.po b/l10n/nb_NO/files_sharing.po index 941f7443cf..f449d2b5d8 100644 --- a/l10n/nb_NO/files_sharing.po +++ b/l10n/nb_NO/files_sharing.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:04+0000\n" +"POT-Creation-Date: 2012-09-22 01:14+0200\n" +"PO-Revision-Date: 2012-09-21 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: nb_NO\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 msgid "Password" @@ -26,14 +26,24 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 templates/public.php:19 +#: templates/public.php:9 +#, php-format +msgid "%s shared the folder %s with you" +msgstr "" + +#: templates/public.php:11 +#, php-format +msgid "%s shared the file %s with you" +msgstr "" + +#: templates/public.php:14 templates/public.php:30 msgid "Download" msgstr "" -#: templates/public.php:18 +#: templates/public.php:29 msgid "No preview available for" msgstr "" -#: templates/public.php:23 +#: templates/public.php:37 msgid "web services under your control" msgstr "" diff --git a/l10n/nb_NO/files_versions.po b/l10n/nb_NO/files_versions.po index d14b394910..de2fd2c976 100644 --- a/l10n/nb_NO/files_versions.po +++ b/l10n/nb_NO/files_versions.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" -"PO-Revision-Date: 2012-09-17 00:04+0000\n" +"POT-Creation-Date: 2012-09-22 01:14+0200\n" +"PO-Revision-Date: 2012-09-21 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -22,6 +22,10 @@ msgstr "" msgid "Expire all versions" msgstr "" +#: js/versions.js:16 +msgid "History" +msgstr "" + #: templates/settings-personal.php:4 msgid "Versions" msgstr "" diff --git a/l10n/nb_NO/settings.po b/l10n/nb_NO/settings.po index 2a926e6f97..6660a5baa7 100644 --- a/l10n/nb_NO/settings.po +++ b/l10n/nb_NO/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:03+0200\n" -"PO-Revision-Date: 2012-09-17 00:03+0000\n" +"POT-Creation-Date: 2012-09-19 02:02+0200\n" +"PO-Revision-Date: 2012-09-19 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -40,7 +40,7 @@ msgstr "" msgid "Unable to add group" msgstr "" -#: ajax/enableapp.php:13 +#: ajax/enableapp.php:14 msgid "Could not enable app. " msgstr "" @@ -82,15 +82,11 @@ msgstr "" msgid "Unable to remove user from group %s" msgstr "" -#: js/apps.js:18 -msgid "Error" -msgstr "Feil" - -#: js/apps.js:39 js/apps.js:73 +#: js/apps.js:27 js/apps.js:61 msgid "Disable" msgstr "Slå avBehandle " -#: js/apps.js:39 js/apps.js:62 +#: js/apps.js:27 js/apps.js:50 msgid "Enable" msgstr "Slå på" @@ -230,12 +226,9 @@ msgid "Answer" msgstr "Svar" #: templates/personal.php:8 -msgid "You use" -msgstr "Du bruker" - -#: templates/personal.php:8 -msgid "of the available" -msgstr "av den tilgjengelige" +#, php-format +msgid "You have used %s of the available %s" +msgstr "" #: templates/personal.php:12 msgid "Desktop and Mobile Syncing Clients" @@ -246,8 +239,8 @@ msgid "Download" msgstr "Last ned" #: templates/personal.php:19 -msgid "Your password got changed" -msgstr "Passordet ditt ble endret" +msgid "Your password was changed" +msgstr "" #: templates/personal.php:20 msgid "Unable to change your password" diff --git a/l10n/nl/core.po b/l10n/nl/core.po index 03a847800e..ab6365ed88 100644 --- a/l10n/nl/core.po +++ b/l10n/nl/core.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -37,58 +37,62 @@ msgstr "Geen categorie toevoegen?" msgid "This category already exists: " msgstr "De categorie bestaat al." -#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Instellingen" -#: js/js.js:593 +#: js/js.js:645 msgid "January" msgstr "Januari" -#: js/js.js:593 +#: js/js.js:645 msgid "February" msgstr "Februari" -#: js/js.js:593 +#: js/js.js:645 msgid "March" msgstr "Maart" -#: js/js.js:593 +#: js/js.js:645 msgid "April" msgstr "April" -#: js/js.js:593 +#: js/js.js:645 msgid "May" msgstr "Mei" -#: js/js.js:593 +#: js/js.js:645 msgid "June" msgstr "Juni" -#: js/js.js:594 +#: js/js.js:646 msgid "July" msgstr "Juli" -#: js/js.js:594 +#: js/js.js:646 msgid "August" msgstr "Augustus" -#: js/js.js:594 +#: js/js.js:646 msgid "September" msgstr "September" -#: js/js.js:594 +#: js/js.js:646 msgid "October" msgstr "Oktober" -#: js/js.js:594 +#: js/js.js:646 msgid "November" msgstr "November" -#: js/js.js:594 +#: js/js.js:646 msgid "December" msgstr "December" +#: js/oc-dialogs.js:123 +msgid "Choose" +msgstr "Kies" + #: js/oc-dialogs.js:143 js/oc-dialogs.js:163 msgid "Cancel" msgstr "Annuleren" @@ -109,10 +113,119 @@ msgstr "Ok" msgid "No categories selected for deletion." msgstr "Geen categorie geselecteerd voor verwijdering." -#: js/oc-vcategories.js:68 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 +#: js/share.js:501 msgid "Error" msgstr "Fout" +#: js/share.js:103 +msgid "Error while sharing" +msgstr "Fout tijdens het delen" + +#: js/share.js:114 +msgid "Error while unsharing" +msgstr "Fout tijdens het stoppen met delen" + +#: js/share.js:121 +msgid "Error while changing permissions" +msgstr "Fout tijdens het veranderen van permissies" + +#: js/share.js:130 +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" +msgstr "" + +#: js/share.js:132 +msgid "Shared with you by" +msgstr "" + +#: js/share.js:137 +msgid "Share with" +msgstr "Deel met" + +#: js/share.js:142 +msgid "Share with link" +msgstr "Deel met link" + +#: js/share.js:143 +msgid "Password protect" +msgstr "Passeerwoord beveiliging" + +#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +msgid "Password" +msgstr "Wachtwoord" + +#: js/share.js:152 +msgid "Set expiration date" +msgstr "Zet vervaldatum" + +#: js/share.js:153 +msgid "Expiration date" +msgstr "Vervaldatum" + +#: js/share.js:185 +msgid "Share via email:" +msgstr "" + +#: js/share.js:187 +msgid "No people found" +msgstr "Geen mensen gevonden" + +#: js/share.js:214 +msgid "Resharing is not allowed" +msgstr "Verder delen is niet toegestaan" + +#: js/share.js:250 +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" +msgstr "" + +#: js/share.js:271 +msgid "Unshare" +msgstr "Stop met delen" + +#: js/share.js:279 +msgid "can edit" +msgstr "kan wijzigen" + +#: js/share.js:281 +msgid "access control" +msgstr "toegangscontrole" + +#: js/share.js:284 +msgid "create" +msgstr "maak" + +#: js/share.js:287 +msgid "update" +msgstr "bijwerken" + +#: js/share.js:290 +msgid "delete" +msgstr "verwijderen" + +#: js/share.js:293 +msgid "share" +msgstr "deel" + +#: js/share.js:317 js/share.js:476 +msgid "Password protected" +msgstr "Passeerwoord beveiligd" + +#: js/share.js:489 +msgid "Error unsetting expiration date" +msgstr "" + +#: js/share.js:501 +msgid "Error setting expiration date" +msgstr "Fout tijdens het configureren van de vervaldatum" + #: lostpassword/index.php:26 msgid "ownCloud password reset" msgstr "ownCloud wachtwoord herstellen" @@ -198,10 +311,6 @@ msgstr "Toevoegen" msgid "Create an admin account" msgstr "Maak een beheerdersaccount aan" -#: templates/installation.php:30 templates/login.php:13 -msgid "Password" -msgstr "Wachtwoord" - #: templates/installation.php:36 msgid "Advanced" msgstr "Geavanceerd" @@ -243,11 +352,11 @@ msgstr "Database server" msgid "Finish setup" msgstr "Installatie afronden" -#: templates/layout.guest.php:42 +#: templates/layout.guest.php:36 msgid "web services under your control" msgstr "webdiensten die je beheerst" -#: templates/layout.user.php:45 +#: templates/layout.user.php:34 msgid "Log out" msgstr "Afmelden" diff --git a/l10n/nl/files.po b/l10n/nl/files.po index 0a77bef234..da97c5575e 100644 --- a/l10n/nl/files.po +++ b/l10n/nl/files.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-10 02:02+0200\n" -"PO-Revision-Date: 2012-09-09 07:08+0000\n" -"Last-Translator: Richard Bos \n" +"POT-Creation-Date: 2012-09-26 13:19+0200\n" +"PO-Revision-Date: 2012-09-26 11:20+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -68,39 +68,43 @@ msgstr "Stop delen" msgid "Delete" msgstr "Verwijder" -#: js/filelist.js:186 js/filelist.js:188 +#: js/fileactions.js:182 +msgid "Rename" +msgstr "Hernoem" + +#: js/filelist.js:190 js/filelist.js:192 msgid "already exists" msgstr "bestaat al" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "replace" msgstr "vervang" -#: js/filelist.js:186 +#: js/filelist.js:190 msgid "suggest name" msgstr "Stel een naam voor" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "cancel" msgstr "annuleren" -#: js/filelist.js:235 js/filelist.js:237 +#: js/filelist.js:239 js/filelist.js:241 msgid "replaced" msgstr "vervangen" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:239 js/filelist.js:241 js/filelist.js:273 js/filelist.js:275 msgid "undo" msgstr "ongedaan maken" -#: js/filelist.js:237 +#: js/filelist.js:241 msgid "with" msgstr "door" -#: js/filelist.js:268 +#: js/filelist.js:273 msgid "unshared" msgstr "niet gedeeld" -#: js/filelist.js:270 +#: js/filelist.js:275 msgid "deleted" msgstr "verwijderd" @@ -116,47 +120,107 @@ msgstr "uploaden van de file mislukt, het is of een directory of de bestandsgroo msgid "Upload Error" msgstr "Upload Fout" -#: js/files.js:236 js/files.js:341 js/files.js:370 +#: js/files.js:236 js/files.js:341 js/files.js:371 msgid "Pending" msgstr "Wachten" -#: js/files.js:355 +#: js/files.js:256 +msgid "1 file uploading" +msgstr "" + +#: js/files.js:259 js/files.js:304 js/files.js:319 +msgid "files uploading" +msgstr "" + +#: js/files.js:322 js/files.js:355 msgid "Upload cancelled." msgstr "Uploaden geannuleerd." -#: js/files.js:423 +#: js/files.js:424 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Bestands upload is bezig. Wanneer de pagina nu verlaten wordt, stopt de upload." -#: js/files.js:493 +#: js/files.js:494 msgid "Invalid name, '/' is not allowed." msgstr "Ongeldige naam, '/' is niet toegestaan." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:667 +msgid "files scanned" +msgstr "Gescande bestanden" + +#: js/files.js:675 +msgid "error while scanning" +msgstr "Fout tijdens het scannen" + +#: js/files.js:748 templates/index.php:48 +msgid "Name" +msgstr "Naam" + +#: js/files.js:749 templates/index.php:56 msgid "Size" msgstr "Bestandsgrootte" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:750 templates/index.php:58 msgid "Modified" msgstr "Laatst aangepast" -#: js/files.js:774 +#: js/files.js:777 msgid "folder" msgstr "map" -#: js/files.js:776 +#: js/files.js:779 msgid "folders" msgstr "mappen" -#: js/files.js:784 +#: js/files.js:787 msgid "file" msgstr "bestand" -#: js/files.js:786 +#: js/files.js:789 msgid "files" msgstr "bestanden" +#: js/files.js:833 +msgid "seconds ago" +msgstr "" + +#: js/files.js:834 +msgid "minute ago" +msgstr "" + +#: js/files.js:835 +msgid "minutes ago" +msgstr "" + +#: js/files.js:838 +msgid "today" +msgstr "" + +#: js/files.js:839 +msgid "yesterday" +msgstr "" + +#: js/files.js:840 +msgid "days ago" +msgstr "" + +#: js/files.js:841 +msgid "last month" +msgstr "" + +#: js/files.js:843 +msgid "months ago" +msgstr "" + +#: js/files.js:844 +msgid "last year" +msgstr "" + +#: js/files.js:845 +msgid "years ago" +msgstr "" + #: templates/admin.php:5 msgid "File handling" msgstr "Bestand" @@ -205,7 +269,7 @@ msgstr "Map" msgid "From url" msgstr "Van hyperlink" -#: templates/index.php:21 +#: templates/index.php:20 msgid "Upload" msgstr "Upload" @@ -217,10 +281,6 @@ msgstr "Upload afbreken" msgid "Nothing in here. Upload something!" msgstr "Er bevindt zich hier niets. Upload een bestand!" -#: templates/index.php:48 -msgid "Name" -msgstr "Naam" - #: templates/index.php:50 msgid "Share" msgstr "Delen" diff --git a/l10n/nl/files_sharing.po b/l10n/nl/files_sharing.po index 7027b58719..4ac028d4f8 100644 --- a/l10n/nl/files_sharing.po +++ b/l10n/nl/files_sharing.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 11:13+0000\n" -"Last-Translator: diederikdehaas \n" +"POT-Creation-Date: 2012-09-24 02:01+0200\n" +"PO-Revision-Date: 2012-09-23 14:47+0000\n" +"Last-Translator: Richard Bos \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,14 +27,24 @@ msgstr "Wachtwoord" msgid "Submit" msgstr "Verzenden" -#: templates/public.php:9 templates/public.php:19 +#: templates/public.php:9 +#, php-format +msgid "%s shared the folder %s with you" +msgstr "%s deelt de map %s met u" + +#: templates/public.php:11 +#, php-format +msgid "%s shared the file %s with you" +msgstr "%s deelt het bestand %s met u" + +#: templates/public.php:14 templates/public.php:30 msgid "Download" msgstr "Downloaden" -#: templates/public.php:18 +#: templates/public.php:29 msgid "No preview available for" msgstr "Geen voorbeeldweergave beschikbaar voor" -#: templates/public.php:25 +#: templates/public.php:37 msgid "web services under your control" msgstr "Webdiensten in eigen beheer" diff --git a/l10n/nl/files_versions.po b/l10n/nl/files_versions.po index f50f1a2ae3..5db59a4122 100644 --- a/l10n/nl/files_versions.po +++ b/l10n/nl/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" -"PO-Revision-Date: 2012-09-17 00:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-24 02:01+0200\n" +"PO-Revision-Date: 2012-09-23 14:45+0000\n" +"Last-Translator: Richard Bos \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,6 +22,10 @@ msgstr "" msgid "Expire all versions" msgstr "Alle versies laten verlopen" +#: js/versions.js:16 +msgid "History" +msgstr "Geschiedenis" + #: templates/settings-personal.php:4 msgid "Versions" msgstr "Versies" @@ -32,8 +36,8 @@ msgstr "Dit zal alle bestaande backup versies van uw bestanden verwijderen" #: templates/settings.php:3 msgid "Files Versioning" -msgstr "" +msgstr "Bestand versies" #: templates/settings.php:4 msgid "Enable" -msgstr "" +msgstr "Zet aan" diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index 75b4f754a8..3753bd818f 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/settings.po @@ -4,6 +4,7 @@ # # Translators: # , 2011. +# , 2012. # , 2012. # Erik Bent , 2012. # , 2011, 2012. @@ -15,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:03+0200\n" -"PO-Revision-Date: 2012-09-17 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-24 02:02+0200\n" +"PO-Revision-Date: 2012-09-23 14:44+0000\n" +"Last-Translator: Richard Bos \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -42,7 +43,7 @@ msgstr "Groep bestaat al" msgid "Unable to add group" msgstr "Niet in staat om groep toe te voegen" -#: ajax/enableapp.php:13 +#: ajax/enableapp.php:14 msgid "Could not enable app. " msgstr "Kan de app. niet activeren" @@ -84,15 +85,11 @@ msgstr "Niet in staat om gebruiker toe te voegen aan groep %s" msgid "Unable to remove user from group %s" msgstr "Niet in staat om gebruiker te verwijderen uit groep %s" -#: js/apps.js:18 -msgid "Error" -msgstr "Fout" - -#: js/apps.js:39 js/apps.js:73 +#: js/apps.js:27 js/apps.js:61 msgid "Disable" msgstr "Uitschakelen" -#: js/apps.js:39 js/apps.js:62 +#: js/apps.js:27 js/apps.js:50 msgid "Enable" msgstr "Inschakelen" @@ -123,7 +120,7 @@ msgstr "Cron" #: templates/admin.php:37 msgid "Execute one task with each page loaded" -msgstr "" +msgstr "Voer één taak uit met elke pagina die wordt geladen" #: templates/admin.php:43 msgid "" @@ -135,11 +132,11 @@ msgstr "cron.php is bij een webcron dienst geregistreerd. Roep de cron.php pagi msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "" +msgstr "Gebruik de systeem cron dienst. Gebruik, eens per minuut, het bestand cron.php in de owncloud map via de systeem cronjob." #: templates/admin.php:56 msgid "Sharing" -msgstr "" +msgstr "Delen" #: templates/admin.php:61 msgid "Enable Share API" @@ -232,12 +229,9 @@ msgid "Answer" msgstr "Beantwoord" #: templates/personal.php:8 -msgid "You use" -msgstr "U gebruikt" - -#: templates/personal.php:8 -msgid "of the available" -msgstr "van de beschikbare" +#, php-format +msgid "You have used %s of the available %s" +msgstr "Je hebt %s gebruikt van de beschikbare %s" #: templates/personal.php:12 msgid "Desktop and Mobile Syncing Clients" @@ -248,8 +242,8 @@ msgid "Download" msgstr "Download" #: templates/personal.php:19 -msgid "Your password got changed" -msgstr "Uw wachtwoord is aangepast" +msgid "Your password was changed" +msgstr "Je wachtwoord is veranderd" #: templates/personal.php:20 msgid "Unable to change your password" diff --git a/l10n/nn_NO/core.po b/l10n/nn_NO/core.po index ea34767b84..d2c8eef0fb 100644 --- a/l10n/nn_NO/core.po +++ b/l10n/nn_NO/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -31,58 +31,62 @@ msgstr "" msgid "This category already exists: " msgstr "" -#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Innstillingar" -#: js/js.js:593 +#: js/js.js:645 msgid "January" msgstr "" -#: js/js.js:593 +#: js/js.js:645 msgid "February" msgstr "" -#: js/js.js:593 +#: js/js.js:645 msgid "March" msgstr "" -#: js/js.js:593 +#: js/js.js:645 msgid "April" msgstr "" -#: js/js.js:593 +#: js/js.js:645 msgid "May" msgstr "" -#: js/js.js:593 +#: js/js.js:645 msgid "June" msgstr "" -#: js/js.js:594 +#: js/js.js:646 msgid "July" msgstr "" -#: js/js.js:594 +#: js/js.js:646 msgid "August" msgstr "" -#: js/js.js:594 +#: js/js.js:646 msgid "September" msgstr "" -#: js/js.js:594 +#: js/js.js:646 msgid "October" msgstr "" -#: js/js.js:594 +#: js/js.js:646 msgid "November" msgstr "" -#: js/js.js:594 +#: js/js.js:646 msgid "December" msgstr "" +#: js/oc-dialogs.js:123 +msgid "Choose" +msgstr "" + #: js/oc-dialogs.js:143 js/oc-dialogs.js:163 msgid "Cancel" msgstr "" @@ -103,10 +107,119 @@ msgstr "" msgid "No categories selected for deletion." msgstr "" -#: js/oc-vcategories.js:68 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 +#: js/share.js:501 msgid "Error" msgstr "" +#: js/share.js:103 +msgid "Error while sharing" +msgstr "" + +#: js/share.js:114 +msgid "Error while unsharing" +msgstr "" + +#: js/share.js:121 +msgid "Error while changing permissions" +msgstr "" + +#: js/share.js:130 +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" +msgstr "" + +#: js/share.js:132 +msgid "Shared with you by" +msgstr "" + +#: js/share.js:137 +msgid "Share with" +msgstr "" + +#: js/share.js:142 +msgid "Share with link" +msgstr "" + +#: js/share.js:143 +msgid "Password protect" +msgstr "" + +#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +msgid "Password" +msgstr "Passord" + +#: js/share.js:152 +msgid "Set expiration date" +msgstr "" + +#: js/share.js:153 +msgid "Expiration date" +msgstr "" + +#: js/share.js:185 +msgid "Share via email:" +msgstr "" + +#: js/share.js:187 +msgid "No people found" +msgstr "" + +#: js/share.js:214 +msgid "Resharing is not allowed" +msgstr "" + +#: js/share.js:250 +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" +msgstr "" + +#: js/share.js:271 +msgid "Unshare" +msgstr "" + +#: js/share.js:279 +msgid "can edit" +msgstr "" + +#: js/share.js:281 +msgid "access control" +msgstr "" + +#: js/share.js:284 +msgid "create" +msgstr "" + +#: js/share.js:287 +msgid "update" +msgstr "" + +#: js/share.js:290 +msgid "delete" +msgstr "" + +#: js/share.js:293 +msgid "share" +msgstr "" + +#: js/share.js:317 js/share.js:476 +msgid "Password protected" +msgstr "" + +#: js/share.js:489 +msgid "Error unsetting expiration date" +msgstr "" + +#: js/share.js:501 +msgid "Error setting expiration date" +msgstr "" + #: lostpassword/index.php:26 msgid "ownCloud password reset" msgstr "" @@ -192,10 +305,6 @@ msgstr "" msgid "Create an admin account" msgstr "Lag ein admin-konto" -#: templates/installation.php:30 templates/login.php:13 -msgid "Password" -msgstr "Passord" - #: templates/installation.php:36 msgid "Advanced" msgstr "Avansert" @@ -237,11 +346,11 @@ msgstr "Databasetenar" msgid "Finish setup" msgstr "Fullfør oppsettet" -#: templates/layout.guest.php:42 +#: templates/layout.guest.php:36 msgid "web services under your control" msgstr "Vev tjenester under din kontroll" -#: templates/layout.user.php:45 +#: templates/layout.user.php:34 msgid "Log out" msgstr "Logg ut" diff --git a/l10n/nn_NO/files.po b/l10n/nn_NO/files.po index f473b58ff4..7dc3daff6d 100644 --- a/l10n/nn_NO/files.po +++ b/l10n/nn_NO/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-26 13:19+0200\n" +"PO-Revision-Date: 2012-09-26 11:20+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -61,39 +61,43 @@ msgstr "" msgid "Delete" msgstr "Slett" -#: js/filelist.js:186 js/filelist.js:188 +#: js/fileactions.js:182 +msgid "Rename" +msgstr "" + +#: js/filelist.js:190 js/filelist.js:192 msgid "already exists" msgstr "" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "replace" msgstr "" -#: js/filelist.js:186 +#: js/filelist.js:190 msgid "suggest name" msgstr "" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "cancel" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 +#: js/filelist.js:239 js/filelist.js:241 msgid "replaced" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:239 js/filelist.js:241 js/filelist.js:273 js/filelist.js:275 msgid "undo" msgstr "" -#: js/filelist.js:237 +#: js/filelist.js:241 msgid "with" msgstr "" -#: js/filelist.js:268 +#: js/filelist.js:273 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:275 msgid "deleted" msgstr "" @@ -109,47 +113,107 @@ msgstr "" msgid "Upload Error" msgstr "" -#: js/files.js:236 js/files.js:341 js/files.js:370 +#: js/files.js:236 js/files.js:341 js/files.js:371 msgid "Pending" msgstr "" -#: js/files.js:355 +#: js/files.js:256 +msgid "1 file uploading" +msgstr "" + +#: js/files.js:259 js/files.js:304 js/files.js:319 +msgid "files uploading" +msgstr "" + +#: js/files.js:322 js/files.js:355 msgid "Upload cancelled." msgstr "" -#: js/files.js:423 +#: js/files.js:424 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:493 +#: js/files.js:494 msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:667 +msgid "files scanned" +msgstr "" + +#: js/files.js:675 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:48 +msgid "Name" +msgstr "Namn" + +#: js/files.js:749 templates/index.php:56 msgid "Size" msgstr "Storleik" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:750 templates/index.php:58 msgid "Modified" msgstr "Endra" -#: js/files.js:774 +#: js/files.js:777 msgid "folder" msgstr "" -#: js/files.js:776 +#: js/files.js:779 msgid "folders" msgstr "" -#: js/files.js:784 +#: js/files.js:787 msgid "file" msgstr "" -#: js/files.js:786 +#: js/files.js:789 msgid "files" msgstr "" +#: js/files.js:833 +msgid "seconds ago" +msgstr "" + +#: js/files.js:834 +msgid "minute ago" +msgstr "" + +#: js/files.js:835 +msgid "minutes ago" +msgstr "" + +#: js/files.js:838 +msgid "today" +msgstr "" + +#: js/files.js:839 +msgid "yesterday" +msgstr "" + +#: js/files.js:840 +msgid "days ago" +msgstr "" + +#: js/files.js:841 +msgid "last month" +msgstr "" + +#: js/files.js:843 +msgid "months ago" +msgstr "" + +#: js/files.js:844 +msgid "last year" +msgstr "" + +#: js/files.js:845 +msgid "years ago" +msgstr "" + #: templates/admin.php:5 msgid "File handling" msgstr "" @@ -198,7 +262,7 @@ msgstr "Mappe" msgid "From url" msgstr "" -#: templates/index.php:21 +#: templates/index.php:20 msgid "Upload" msgstr "Last opp" @@ -210,10 +274,6 @@ msgstr "" msgid "Nothing in here. Upload something!" msgstr "Ingenting her. Last noko opp!" -#: templates/index.php:48 -msgid "Name" -msgstr "Namn" - #: templates/index.php:50 msgid "Share" msgstr "" diff --git a/l10n/nn_NO/files_sharing.po b/l10n/nn_NO/files_sharing.po index e5055f0809..6a569d362f 100644 --- a/l10n/nn_NO/files_sharing.po +++ b/l10n/nn_NO/files_sharing.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-22 01:14+0200\n" +"PO-Revision-Date: 2012-09-21 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: nn_NO\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 msgid "Password" @@ -25,14 +25,24 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 templates/public.php:19 +#: templates/public.php:9 +#, php-format +msgid "%s shared the folder %s with you" +msgstr "" + +#: templates/public.php:11 +#, php-format +msgid "%s shared the file %s with you" +msgstr "" + +#: templates/public.php:14 templates/public.php:30 msgid "Download" msgstr "" -#: templates/public.php:18 +#: templates/public.php:29 msgid "No preview available for" msgstr "" -#: templates/public.php:23 +#: templates/public.php:37 msgid "web services under your control" msgstr "" diff --git a/l10n/nn_NO/files_versions.po b/l10n/nn_NO/files_versions.po index 1ff9bd768f..4e0539875a 100644 --- a/l10n/nn_NO/files_versions.po +++ b/l10n/nn_NO/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" -"PO-Revision-Date: 2012-09-17 00:04+0000\n" +"POT-Creation-Date: 2012-09-22 01:14+0200\n" +"PO-Revision-Date: 2012-09-21 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -21,6 +21,10 @@ msgstr "" msgid "Expire all versions" msgstr "" +#: js/versions.js:16 +msgid "History" +msgstr "" + #: templates/settings-personal.php:4 msgid "Versions" msgstr "" diff --git a/l10n/nn_NO/settings.po b/l10n/nn_NO/settings.po index 3ab1c66633..474aa16ec7 100644 --- a/l10n/nn_NO/settings.po +++ b/l10n/nn_NO/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:03+0200\n" -"PO-Revision-Date: 2012-09-17 00:03+0000\n" +"POT-Creation-Date: 2012-09-19 02:02+0200\n" +"PO-Revision-Date: 2012-09-19 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -36,7 +36,7 @@ msgstr "" msgid "Unable to add group" msgstr "" -#: ajax/enableapp.php:13 +#: ajax/enableapp.php:14 msgid "Could not enable app. " msgstr "" @@ -78,15 +78,11 @@ msgstr "" msgid "Unable to remove user from group %s" msgstr "" -#: js/apps.js:18 -msgid "Error" -msgstr "Feil" - -#: js/apps.js:39 js/apps.js:73 +#: js/apps.js:27 js/apps.js:61 msgid "Disable" msgstr "Slå av" -#: js/apps.js:39 js/apps.js:62 +#: js/apps.js:27 js/apps.js:50 msgid "Enable" msgstr "Slå på" @@ -226,12 +222,9 @@ msgid "Answer" msgstr "Svar" #: templates/personal.php:8 -msgid "You use" -msgstr "Du bruker" - -#: templates/personal.php:8 -msgid "of the available" -msgstr "av dei tilgjengelege" +#, php-format +msgid "You have used %s of the available %s" +msgstr "" #: templates/personal.php:12 msgid "Desktop and Mobile Syncing Clients" @@ -242,8 +235,8 @@ msgid "Download" msgstr "" #: templates/personal.php:19 -msgid "Your password got changed" -msgstr "Passordet ditt er endra" +msgid "Your password was changed" +msgstr "" #: templates/personal.php:20 msgid "Unable to change your password" diff --git a/l10n/oc/core.po b/l10n/oc/core.po index 00223969d7..f2a698077e 100644 --- a/l10n/oc/core.po +++ b/l10n/oc/core.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-08 02:02+0200\n" -"PO-Revision-Date: 2011-07-25 16:05+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-29 02:02+0200\n" +"PO-Revision-Date: 2012-09-28 22:00+0000\n" +"Last-Translator: tartafione \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,250 +20,359 @@ msgstr "" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." -msgstr "" +msgstr "Nom d'applicacion pas donat." #: ajax/vcategories/add.php:29 msgid "No category to add?" -msgstr "" +msgstr "Pas de categoria d'ajustar ?" #: ajax/vcategories/add.php:36 msgid "This category already exists: " -msgstr "" +msgstr "La categoria exista ja :" -#: js/js.js:208 templates/layout.user.php:54 templates/layout.user.php:55 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" -msgstr "" +msgstr "Configuracion" -#: js/js.js:593 +#: js/js.js:645 msgid "January" -msgstr "" +msgstr "Genièr" -#: js/js.js:593 +#: js/js.js:645 msgid "February" -msgstr "" +msgstr "Febrièr" -#: js/js.js:593 +#: js/js.js:645 msgid "March" -msgstr "" +msgstr "Març" -#: js/js.js:593 +#: js/js.js:645 msgid "April" -msgstr "" +msgstr "Abril" -#: js/js.js:593 +#: js/js.js:645 msgid "May" -msgstr "" +msgstr "Mai" -#: js/js.js:593 +#: js/js.js:645 msgid "June" -msgstr "" +msgstr "Junh" -#: js/js.js:594 +#: js/js.js:646 msgid "July" -msgstr "" +msgstr "Julhet" -#: js/js.js:594 +#: js/js.js:646 msgid "August" -msgstr "" +msgstr "Agost" -#: js/js.js:594 +#: js/js.js:646 msgid "September" -msgstr "" +msgstr "Septembre" -#: js/js.js:594 +#: js/js.js:646 msgid "October" -msgstr "" +msgstr "Octobre" -#: js/js.js:594 +#: js/js.js:646 msgid "November" -msgstr "" +msgstr "Novembre" -#: js/js.js:594 +#: js/js.js:646 msgid "December" -msgstr "" +msgstr "Decembre" + +#: js/oc-dialogs.js:123 +msgid "Choose" +msgstr "Causís" #: js/oc-dialogs.js:143 js/oc-dialogs.js:163 msgid "Cancel" -msgstr "" +msgstr "Anulla" #: js/oc-dialogs.js:159 msgid "No" -msgstr "" +msgstr "Non" #: js/oc-dialogs.js:160 msgid "Yes" -msgstr "" +msgstr "Òc" #: js/oc-dialogs.js:177 msgid "Ok" -msgstr "" +msgstr "D'accòrdi" #: js/oc-vcategories.js:68 msgid "No categories selected for deletion." -msgstr "" +msgstr "Pas de categorias seleccionadas per escafar." -#: js/oc-vcategories.js:68 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 +#: js/share.js:501 msgid "Error" -msgstr "" +msgstr "Error" + +#: js/share.js:103 +msgid "Error while sharing" +msgstr "Error al partejar" + +#: js/share.js:114 +msgid "Error while unsharing" +msgstr "Error al non partejar" + +#: js/share.js:121 +msgid "Error while changing permissions" +msgstr "Error al cambiar permissions" + +#: js/share.js:130 +msgid "Shared with you and the group" +msgstr "Partejat amb tu e lo grop" + +#: js/share.js:130 +msgid "by" +msgstr "per" + +#: js/share.js:132 +msgid "Shared with you by" +msgstr "Partejat amb tu per" + +#: js/share.js:137 +msgid "Share with" +msgstr "Parteja amb" + +#: js/share.js:142 +msgid "Share with link" +msgstr "Parteja amb lo ligam" + +#: js/share.js:143 +msgid "Password protect" +msgstr "Parat per senhal" + +#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +msgid "Password" +msgstr "Senhal" + +#: js/share.js:152 +msgid "Set expiration date" +msgstr "Met la data d'expiracion" + +#: js/share.js:153 +msgid "Expiration date" +msgstr "Data d'expiracion" + +#: js/share.js:185 +msgid "Share via email:" +msgstr "Parteja tras corrièl :" + +#: js/share.js:187 +msgid "No people found" +msgstr "Deguns trobat" + +#: js/share.js:214 +msgid "Resharing is not allowed" +msgstr "Tornar partejar es pas permis" + +#: js/share.js:250 +msgid "Shared in" +msgstr "Partejat dins" + +#: js/share.js:250 +msgid "with" +msgstr "amb" + +#: js/share.js:271 +msgid "Unshare" +msgstr "Non parteje" + +#: js/share.js:279 +msgid "can edit" +msgstr "pòt modificar" + +#: js/share.js:281 +msgid "access control" +msgstr "Contraròtle d'acces" + +#: js/share.js:284 +msgid "create" +msgstr "crea" + +#: js/share.js:287 +msgid "update" +msgstr "met a jorn" + +#: js/share.js:290 +msgid "delete" +msgstr "escafa" + +#: js/share.js:293 +msgid "share" +msgstr "parteja" + +#: js/share.js:317 js/share.js:476 +msgid "Password protected" +msgstr "Parat per senhal" + +#: js/share.js:489 +msgid "Error unsetting expiration date" +msgstr "Error al metre de la data d'expiracion" + +#: js/share.js:501 +msgid "Error setting expiration date" +msgstr "Error setting expiration date" #: lostpassword/index.php:26 msgid "ownCloud password reset" -msgstr "" +msgstr "senhal d'ownCloud tornat botar" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" -msgstr "" +msgstr "Utiliza lo ligam seguent per tornar botar lo senhal : {link}" #: lostpassword/templates/lostpassword.php:3 msgid "You will receive a link to reset your password via Email." -msgstr "" +msgstr "Reçaupràs un ligam per tornar botar ton senhal via corrièl." #: lostpassword/templates/lostpassword.php:5 msgid "Requested" -msgstr "" +msgstr "Requesit" #: lostpassword/templates/lostpassword.php:8 msgid "Login failed!" -msgstr "" +msgstr "Fracàs de login" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:26 #: templates/login.php:9 msgid "Username" -msgstr "" +msgstr "Nom d'usancièr" #: lostpassword/templates/lostpassword.php:15 msgid "Request reset" -msgstr "" +msgstr "Tornar botar requesit" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" -msgstr "" +msgstr "Ton senhal es estat tornat botar" #: lostpassword/templates/resetpassword.php:5 msgid "To login page" -msgstr "" +msgstr "Pagina cap al login" #: lostpassword/templates/resetpassword.php:8 msgid "New password" -msgstr "" +msgstr "Senhal nòu" #: lostpassword/templates/resetpassword.php:11 msgid "Reset password" -msgstr "" +msgstr "Senhal tornat botar" #: strings.php:5 msgid "Personal" -msgstr "" +msgstr "Personal" #: strings.php:6 msgid "Users" -msgstr "" +msgstr "Usancièrs" #: strings.php:7 msgid "Apps" -msgstr "" +msgstr "Apps" #: strings.php:8 msgid "Admin" -msgstr "" +msgstr "Admin" #: strings.php:9 msgid "Help" -msgstr "" +msgstr "Ajuda" #: templates/403.php:12 msgid "Access forbidden" -msgstr "" +msgstr "Acces enebit" #: templates/404.php:12 msgid "Cloud not found" -msgstr "" +msgstr "Nívol pas trobada" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" -msgstr "" +msgstr "Edita categorias" #: templates/edit_categories_dialog.php:14 msgid "Add" -msgstr "" +msgstr "Ajusta" #: templates/installation.php:24 msgid "Create an admin account" -msgstr "" - -#: templates/installation.php:30 templates/login.php:13 -msgid "Password" -msgstr "" +msgstr "Crea un compte admin" #: templates/installation.php:36 msgid "Advanced" -msgstr "" +msgstr "Avançat" #: templates/installation.php:38 msgid "Data folder" -msgstr "" +msgstr "Dorsièr de donadas" #: templates/installation.php:45 msgid "Configure the database" -msgstr "" +msgstr "Configura la basa de donadas" #: templates/installation.php:50 templates/installation.php:61 #: templates/installation.php:71 templates/installation.php:81 msgid "will be used" -msgstr "" +msgstr "serà utilizat" #: templates/installation.php:93 msgid "Database user" -msgstr "" +msgstr "Usancièr de la basa de donadas" #: templates/installation.php:97 msgid "Database password" -msgstr "" +msgstr "Senhal de la basa de donadas" #: templates/installation.php:101 msgid "Database name" -msgstr "" +msgstr "Nom de la basa de donadas" #: templates/installation.php:109 msgid "Database tablespace" -msgstr "" +msgstr "Espandi de taula de basa de donadas" #: templates/installation.php:115 msgid "Database host" -msgstr "" +msgstr "Òste de basa de donadas" #: templates/installation.php:120 msgid "Finish setup" -msgstr "" +msgstr "Configuracion acabada" #: templates/layout.guest.php:36 msgid "web services under your control" -msgstr "" +msgstr "Services web jos ton contraròtle" -#: templates/layout.user.php:39 +#: templates/layout.user.php:34 msgid "Log out" -msgstr "" +msgstr "Sortida" #: templates/login.php:6 msgid "Lost your password?" -msgstr "" +msgstr "L'as perdut lo senhal ?" #: templates/login.php:17 msgid "remember" -msgstr "" +msgstr "bremba-te" #: templates/login.php:18 msgid "Log in" -msgstr "" +msgstr "Dintrada" #: templates/logout.php:1 msgid "You are logged out." -msgstr "" +msgstr "Sias pas dintra (t/ada)" #: templates/part.pagenavi.php:3 msgid "prev" -msgstr "" +msgstr "dariièr" #: templates/part.pagenavi.php:20 msgid "next" -msgstr "" +msgstr "venent" diff --git a/l10n/oc/files.po b/l10n/oc/files.po index a6f4c0b62c..1e4cc9832b 100644 --- a/l10n/oc/files.po +++ b/l10n/oc/files.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 11:55+0000\n" +"Last-Translator: tartafione \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,221 +20,281 @@ msgstr "" #: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" -msgstr "" +msgstr "Amontcargament capitat, pas d'errors" #: ajax/upload.php:21 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" -msgstr "" +msgstr "Lo fichièr amontcargat es tròp bèl per la directiva «upload_max_filesize » del php.ini" #: ajax/upload.php:22 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" -msgstr "" +msgstr "Lo fichièr amontcargat es mai gròs que la directiva «MAX_FILE_SIZE» especifiada dins lo formulari HTML" #: ajax/upload.php:23 msgid "The uploaded file was only partially uploaded" -msgstr "" +msgstr "Lo fichièr foguèt pas completament amontcargat" #: ajax/upload.php:24 msgid "No file was uploaded" -msgstr "" +msgstr "Cap de fichièrs son estats amontcargats" #: ajax/upload.php:25 msgid "Missing a temporary folder" -msgstr "" +msgstr "Un dorsièr temporari manca" #: ajax/upload.php:26 msgid "Failed to write to disk" -msgstr "" +msgstr "L'escriptura sul disc a fracassat" #: appinfo/app.php:6 msgid "Files" -msgstr "" +msgstr "Fichièrs" #: js/fileactions.js:108 templates/index.php:62 msgid "Unshare" -msgstr "" +msgstr "Non parteja" #: js/fileactions.js:110 templates/index.php:64 msgid "Delete" -msgstr "" +msgstr "Escafa" -#: js/filelist.js:186 js/filelist.js:188 +#: js/fileactions.js:182 +msgid "Rename" +msgstr "Torna nomenar" + +#: js/filelist.js:190 js/filelist.js:192 msgid "already exists" -msgstr "" +msgstr "existís jà" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "replace" -msgstr "" +msgstr "remplaça" -#: js/filelist.js:186 +#: js/filelist.js:190 msgid "suggest name" -msgstr "" +msgstr "nom prepausat" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "cancel" -msgstr "" +msgstr "anulla" -#: js/filelist.js:235 js/filelist.js:237 +#: js/filelist.js:239 js/filelist.js:241 msgid "replaced" -msgstr "" +msgstr "remplaçat" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:239 js/filelist.js:241 js/filelist.js:273 js/filelist.js:275 msgid "undo" -msgstr "" +msgstr "defar" -#: js/filelist.js:237 +#: js/filelist.js:241 msgid "with" -msgstr "" +msgstr "amb" -#: js/filelist.js:268 +#: js/filelist.js:273 msgid "unshared" -msgstr "" +msgstr "Non partejat" -#: js/filelist.js:270 +#: js/filelist.js:275 msgid "deleted" -msgstr "" +msgstr "escafat" #: js/files.js:179 msgid "generating ZIP-file, it may take some time." -msgstr "" +msgstr "Fichièr ZIP a se far, aquò pòt trigar un briu." #: js/files.js:208 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "" +msgstr "Impossible d'amontcargar lo teu fichièr qu'es un repertòri o que ten pas que 0 octet." #: js/files.js:208 msgid "Upload Error" -msgstr "" +msgstr "Error d'amontcargar" -#: js/files.js:236 js/files.js:341 js/files.js:370 +#: js/files.js:236 js/files.js:341 js/files.js:371 msgid "Pending" -msgstr "" +msgstr "Al esperar" -#: js/files.js:355 +#: js/files.js:256 +msgid "1 file uploading" +msgstr "1 fichièr al amontcargar" + +#: js/files.js:259 js/files.js:304 js/files.js:319 +msgid "files uploading" +msgstr "fichièrs al amontcargar" + +#: js/files.js:322 js/files.js:355 msgid "Upload cancelled." -msgstr "" +msgstr "Amontcargar anullat." -#: js/files.js:423 +#: js/files.js:424 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "" +msgstr "Un amontcargar es a se far. Daissar aquesta pagina ara tamparà lo cargament. " -#: js/files.js:493 +#: js/files.js:494 msgid "Invalid name, '/' is not allowed." -msgstr "" +msgstr "Nom invalid, '/' es pas permis." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:668 +msgid "files scanned" +msgstr "Fichièr explorat" + +#: js/files.js:676 +msgid "error while scanning" +msgstr "error pendant l'exploracion" + +#: js/files.js:749 templates/index.php:48 +msgid "Name" +msgstr "Nom" + +#: js/files.js:750 templates/index.php:56 msgid "Size" -msgstr "" +msgstr "Talha" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:751 templates/index.php:58 msgid "Modified" -msgstr "" +msgstr "Modificat" -#: js/files.js:774 +#: js/files.js:778 msgid "folder" -msgstr "" +msgstr "Dorsièr" -#: js/files.js:776 +#: js/files.js:780 msgid "folders" -msgstr "" +msgstr "Dorsièrs" -#: js/files.js:784 +#: js/files.js:788 msgid "file" -msgstr "" +msgstr "fichièr" -#: js/files.js:786 +#: js/files.js:790 msgid "files" -msgstr "" +msgstr "fichièrs" + +#: js/files.js:834 +msgid "seconds ago" +msgstr "secondas" + +#: js/files.js:835 +msgid "minute ago" +msgstr "minuta" + +#: js/files.js:836 +msgid "minutes ago" +msgstr "minutas" + +#: js/files.js:839 +msgid "today" +msgstr "uèi" + +#: js/files.js:840 +msgid "yesterday" +msgstr "ièr" + +#: js/files.js:841 +msgid "days ago" +msgstr "jorns" + +#: js/files.js:842 +msgid "last month" +msgstr "mes passat" + +#: js/files.js:844 +msgid "months ago" +msgstr "meses" + +#: js/files.js:845 +msgid "last year" +msgstr "an passat" + +#: js/files.js:846 +msgid "years ago" +msgstr "ans" #: templates/admin.php:5 msgid "File handling" -msgstr "" +msgstr "Manejament de fichièr" #: templates/admin.php:7 msgid "Maximum upload size" -msgstr "" +msgstr "Talha maximum d'amontcargament" #: templates/admin.php:7 msgid "max. possible: " -msgstr "" +msgstr "max. possible: " #: templates/admin.php:9 msgid "Needed for multi-file and folder downloads." -msgstr "" +msgstr "Requesit per avalcargar gropat de fichièrs e dorsièr" #: templates/admin.php:9 msgid "Enable ZIP-download" -msgstr "" +msgstr "Activa l'avalcargament de ZIP" #: templates/admin.php:11 msgid "0 is unlimited" -msgstr "" +msgstr "0 es pas limitat" #: templates/admin.php:12 msgid "Maximum input size for ZIP files" -msgstr "" +msgstr "Talha maximum de dintrada per fichièrs ZIP" #: templates/admin.php:14 msgid "Save" -msgstr "" +msgstr "Enregistra" #: templates/index.php:7 msgid "New" -msgstr "" +msgstr "Nòu" #: templates/index.php:9 msgid "Text file" -msgstr "" +msgstr "Fichièr de tèxte" #: templates/index.php:10 msgid "Folder" -msgstr "" +msgstr "Dorsièr" #: templates/index.php:11 msgid "From url" -msgstr "" +msgstr "Dempuèi l'URL" -#: templates/index.php:21 +#: templates/index.php:20 msgid "Upload" -msgstr "" +msgstr "Amontcarga" #: templates/index.php:27 msgid "Cancel upload" -msgstr "" +msgstr " Anulla l'amontcargar" #: templates/index.php:40 msgid "Nothing in here. Upload something!" -msgstr "" - -#: templates/index.php:48 -msgid "Name" -msgstr "" +msgstr "Pas res dedins. Amontcarga qualquaren" #: templates/index.php:50 msgid "Share" -msgstr "" +msgstr "Parteja" #: templates/index.php:52 msgid "Download" -msgstr "" +msgstr "Avalcarga" #: templates/index.php:75 msgid "Upload too large" -msgstr "" +msgstr "Amontcargament tròp gròs" #: templates/index.php:77 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." -msgstr "" +msgstr "Los fichièrs que sias a amontcargar son tròp pesucs per la talha maxi pel servidor." #: templates/index.php:82 msgid "Files are being scanned, please wait." -msgstr "" +msgstr "Los fiichièrs son a èsser explorats, " #: templates/index.php:85 msgid "Current scanning" -msgstr "" +msgstr "Exploracion en cors" diff --git a/l10n/oc/files_sharing.po b/l10n/oc/files_sharing.po index 1f90264d68..0e83b85076 100644 --- a/l10n/oc/files_sharing.po +++ b/l10n/oc/files_sharing.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-08 02:02+0200\n" -"PO-Revision-Date: 2012-08-12 22:35+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-22 01:14+0200\n" +"PO-Revision-Date: 2012-09-21 23:15+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,14 +25,24 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 templates/public.php:19 +#: templates/public.php:9 +#, php-format +msgid "%s shared the folder %s with you" +msgstr "" + +#: templates/public.php:11 +#, php-format +msgid "%s shared the file %s with you" +msgstr "" + +#: templates/public.php:14 templates/public.php:30 msgid "Download" msgstr "" -#: templates/public.php:18 +#: templates/public.php:29 msgid "No preview available for" msgstr "" -#: templates/public.php:25 +#: templates/public.php:37 msgid "web services under your control" msgstr "" diff --git a/l10n/oc/files_versions.po b/l10n/oc/files_versions.po index 405166dc1a..8ea27eb324 100644 --- a/l10n/oc/files_versions.po +++ b/l10n/oc/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" -"PO-Revision-Date: 2012-09-17 00:04+0000\n" +"POT-Creation-Date: 2012-09-22 01:14+0200\n" +"PO-Revision-Date: 2012-09-21 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -21,6 +21,10 @@ msgstr "" msgid "Expire all versions" msgstr "" +#: js/versions.js:16 +msgid "History" +msgstr "" + #: templates/settings-personal.php:4 msgid "Versions" msgstr "" diff --git a/l10n/oc/lib.po b/l10n/oc/lib.po index 499df461d8..e3081d2cff 100644 --- a/l10n/oc/lib.po +++ b/l10n/oc/lib.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-08 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-29 02:02+0200\n" +"PO-Revision-Date: 2012-09-28 22:27+0000\n" +"Last-Translator: tartafione \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,41 +20,41 @@ msgstr "" #: app.php:285 msgid "Help" -msgstr "" +msgstr "Ajuda" #: app.php:292 msgid "Personal" -msgstr "" +msgstr "Personal" #: app.php:297 msgid "Settings" -msgstr "" +msgstr "Configuracion" #: app.php:302 msgid "Users" -msgstr "" +msgstr "Usancièrs" #: app.php:309 msgid "Apps" -msgstr "" +msgstr "Apps" #: app.php:311 msgid "Admin" -msgstr "" +msgstr "Admin" -#: files.php:280 +#: files.php:327 msgid "ZIP download is turned off." -msgstr "" +msgstr "Avalcargar los ZIP es inactiu." -#: files.php:281 +#: files.php:328 msgid "Files need to be downloaded one by one." -msgstr "" +msgstr "Los fichièrs devan èsser avalcargats un per un." -#: files.php:281 files.php:306 +#: files.php:328 files.php:353 msgid "Back to Files" -msgstr "" +msgstr "Torna cap als fichièrs" -#: files.php:305 +#: files.php:352 msgid "Selected files too large to generate zip file." msgstr "" @@ -63,7 +64,7 @@ msgstr "" #: json.php:39 json.php:63 json.php:75 msgid "Authentication error" -msgstr "" +msgstr "Error d'autentificacion" #: json.php:51 msgid "Token expired. Please reload page." @@ -71,45 +72,45 @@ msgstr "" #: template.php:87 msgid "seconds ago" -msgstr "" +msgstr "segonda a" #: template.php:88 msgid "1 minute ago" -msgstr "" +msgstr "1 minuta a" #: template.php:89 #, php-format msgid "%d minutes ago" -msgstr "" +msgstr "%d minutas a" #: template.php:92 msgid "today" -msgstr "" +msgstr "uèi" #: template.php:93 msgid "yesterday" -msgstr "" +msgstr "ièr" #: template.php:94 #, php-format msgid "%d days ago" -msgstr "" +msgstr "%d jorns a" #: template.php:95 msgid "last month" -msgstr "" +msgstr "mes passat" #: template.php:96 msgid "months ago" -msgstr "" +msgstr "meses a" #: template.php:97 msgid "last year" -msgstr "" +msgstr "an passat" #: template.php:98 msgid "years ago" -msgstr "" +msgstr "ans a" #: updater.php:66 #, php-format @@ -118,8 +119,8 @@ msgstr "" #: updater.php:68 msgid "up to date" -msgstr "" +msgstr "a jorn" #: updater.php:71 msgid "updates check is disabled" -msgstr "" +msgstr "la verificacion de mesa a jorn es inactiva" diff --git a/l10n/oc/settings.po b/l10n/oc/settings.po index f46812b102..52cb2e0f6d 100644 --- a/l10n/oc/settings.po +++ b/l10n/oc/settings.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:03+0200\n" -"PO-Revision-Date: 2012-09-17 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 14:00+0000\n" +"Last-Translator: tartafione \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,86 +20,82 @@ msgstr "" #: ajax/apps/ocs.php:23 msgid "Unable to load list from App Store" -msgstr "" +msgstr "Pas possible de cargar la tièra dempuèi App Store" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 #: ajax/togglegroups.php:15 msgid "Authentication error" -msgstr "" +msgstr "Error d'autentificacion" #: ajax/creategroup.php:19 msgid "Group already exists" -msgstr "" +msgstr "Lo grop existís ja" #: ajax/creategroup.php:28 msgid "Unable to add group" -msgstr "" +msgstr "Pas capable d'apondre un grop" -#: ajax/enableapp.php:13 +#: ajax/enableapp.php:14 msgid "Could not enable app. " -msgstr "" +msgstr "Pòt pas activar app. " #: ajax/lostpassword.php:14 msgid "Email saved" -msgstr "" +msgstr "Corrièl enregistrat" #: ajax/lostpassword.php:16 msgid "Invalid email" -msgstr "" +msgstr "Corrièl incorrècte" #: ajax/openid.php:16 msgid "OpenID Changed" -msgstr "" +msgstr "OpenID cambiat" #: ajax/openid.php:18 ajax/setlanguage.php:20 ajax/setlanguage.php:23 msgid "Invalid request" -msgstr "" +msgstr "Demanda invalida" #: ajax/removegroup.php:16 msgid "Unable to delete group" -msgstr "" +msgstr "Pas capable d'escafar un grop" #: ajax/removeuser.php:22 msgid "Unable to delete user" -msgstr "" +msgstr "Pas capable d'escafar un usancièr" #: ajax/setlanguage.php:18 msgid "Language changed" -msgstr "" +msgstr "Lengas cambiadas" #: ajax/togglegroups.php:25 #, php-format msgid "Unable to add user to group %s" -msgstr "" +msgstr "Pas capable d'apondre un usancièr al grop %s" #: ajax/togglegroups.php:31 #, php-format msgid "Unable to remove user from group %s" -msgstr "" +msgstr "Pas capable de tira un usancièr del grop %s" -#: js/apps.js:18 -msgid "Error" -msgstr "" - -#: js/apps.js:39 js/apps.js:73 +#: js/apps.js:27 js/apps.js:61 msgid "Disable" -msgstr "" +msgstr "Desactiva" -#: js/apps.js:39 js/apps.js:62 +#: js/apps.js:27 js/apps.js:50 msgid "Enable" -msgstr "" +msgstr "Activa" #: js/personal.js:69 msgid "Saving..." -msgstr "" +msgstr "Enregistra..." #: personal.php:46 personal.php:47 msgid "__language_name__" -msgstr "" +msgstr "__language_name__" #: templates/admin.php:14 msgid "Security Warning" -msgstr "" +msgstr "Avertiment de securitat" #: templates/admin.php:17 msgid "" @@ -111,11 +108,11 @@ msgstr "" #: templates/admin.php:31 msgid "Cron" -msgstr "" +msgstr "Cron" #: templates/admin.php:37 msgid "Execute one task with each page loaded" -msgstr "" +msgstr "Executa un prètfach amb cada pagina cargada" #: templates/admin.php:43 msgid "" @@ -127,15 +124,15 @@ msgstr "" msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "" +msgstr "Utiliza lo servici cron de ton sistèm operatiu. Executa lo fichièr cron.php dins lo dorsier owncloud tras cronjob del sistèm cada minuta." #: templates/admin.php:56 msgid "Sharing" -msgstr "" +msgstr "Al partejar" #: templates/admin.php:61 msgid "Enable Share API" -msgstr "" +msgstr "Activa API partejada" #: templates/admin.php:62 msgid "Allow apps to use the Share API" @@ -167,11 +164,11 @@ msgstr "" #: templates/admin.php:88 msgid "Log" -msgstr "" +msgstr "Jornal" #: templates/admin.php:116 msgid "More" -msgstr "" +msgstr "Mai d'aquò" #: templates/admin.php:124 msgid "" @@ -185,51 +182,48 @@ msgstr "" #: templates/apps.php:10 msgid "Add your App" -msgstr "" +msgstr "Ajusta ton App" #: templates/apps.php:26 msgid "Select an App" -msgstr "" +msgstr "Selecciona una applicacion" #: templates/apps.php:29 msgid "See application page at apps.owncloud.com" -msgstr "" +msgstr "Agacha la pagina d'applications en cò de apps.owncloud.com" #: templates/apps.php:30 msgid "-licensed by " -msgstr "" +msgstr "-licençiat per " #: templates/help.php:9 msgid "Documentation" -msgstr "" +msgstr "Documentacion" #: templates/help.php:10 msgid "Managing Big Files" -msgstr "" +msgstr "Al bailejar de fichièrs pesucasses" #: templates/help.php:11 msgid "Ask a question" -msgstr "" +msgstr "Respond a una question" #: templates/help.php:23 msgid "Problems connecting to help database." -msgstr "" +msgstr "Problemas al connectar de la basa de donadas d'ajuda" #: templates/help.php:24 msgid "Go there manually." -msgstr "" +msgstr "Vas çai manualament" #: templates/help.php:32 msgid "Answer" -msgstr "" +msgstr "Responsa" #: templates/personal.php:8 -msgid "You use" -msgstr "" - -#: templates/personal.php:8 -msgid "of the available" -msgstr "" +#, php-format +msgid "You have used %s of the available %s" +msgstr "As utilizat %s dels %s disponibles" #: templates/personal.php:12 msgid "Desktop and Mobile Syncing Clients" @@ -237,88 +231,88 @@ msgstr "" #: templates/personal.php:13 msgid "Download" -msgstr "" +msgstr "Avalcarga" #: templates/personal.php:19 -msgid "Your password got changed" -msgstr "" +msgid "Your password was changed" +msgstr "Ton senhal a cambiat" #: templates/personal.php:20 msgid "Unable to change your password" -msgstr "" +msgstr "Pas possible de cambiar ton senhal" #: templates/personal.php:21 msgid "Current password" -msgstr "" +msgstr "Senhal en cors" #: templates/personal.php:22 msgid "New password" -msgstr "" +msgstr "Senhal novèl" #: templates/personal.php:23 msgid "show" -msgstr "" +msgstr "mòstra" #: templates/personal.php:24 msgid "Change password" -msgstr "" +msgstr "Cambia lo senhal" #: templates/personal.php:30 msgid "Email" -msgstr "" +msgstr "Corrièl" #: templates/personal.php:31 msgid "Your email address" -msgstr "" +msgstr "Ton adreiça de corrièl" #: templates/personal.php:32 msgid "Fill in an email address to enable password recovery" -msgstr "" +msgstr "Emplena una adreiça de corrièl per permetre lo mandadís del senhal perdut" #: templates/personal.php:38 templates/personal.php:39 msgid "Language" -msgstr "" +msgstr "Lenga" #: templates/personal.php:44 msgid "Help translate" -msgstr "" +msgstr "Ajuda a la revirada" #: templates/personal.php:51 msgid "use this address to connect to your ownCloud in your file manager" -msgstr "" +msgstr "utiliza aquela adreiça per te connectar al ownCloud amb ton explorator de fichièrs" #: templates/users.php:21 templates/users.php:76 msgid "Name" -msgstr "" +msgstr "Nom" #: templates/users.php:23 templates/users.php:77 msgid "Password" -msgstr "" +msgstr "Senhal" #: templates/users.php:26 templates/users.php:78 templates/users.php:98 msgid "Groups" -msgstr "" +msgstr "Grops" #: templates/users.php:32 msgid "Create" -msgstr "" +msgstr "Crea" #: templates/users.php:35 msgid "Default Quota" -msgstr "" +msgstr "Quota per defaut" #: templates/users.php:55 templates/users.php:138 msgid "Other" -msgstr "" +msgstr "Autres" #: templates/users.php:80 templates/users.php:112 msgid "Group Admin" -msgstr "" +msgstr "Grop Admin" #: templates/users.php:82 msgid "Quota" -msgstr "" +msgstr "Quota" #: templates/users.php:146 msgid "Delete" -msgstr "" +msgstr "Escafa" diff --git a/l10n/pl/core.po b/l10n/pl/core.po index 0cd447bf8e..cfdcf6124b 100644 --- a/l10n/pl/core.po +++ b/l10n/pl/core.po @@ -8,13 +8,14 @@ # Marcin Małecki , 2011, 2012. # Marcin Małecki , 2011. # , 2011. +# , 2012. # Piotr Sokół , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -35,58 +36,62 @@ msgstr "Brak kategorii" msgid "This category already exists: " msgstr "Ta kategoria już istnieje" -#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Ustawienia" -#: js/js.js:593 +#: js/js.js:645 msgid "January" msgstr "Styczeń" -#: js/js.js:593 +#: js/js.js:645 msgid "February" msgstr "Luty" -#: js/js.js:593 +#: js/js.js:645 msgid "March" msgstr "Marzec" -#: js/js.js:593 +#: js/js.js:645 msgid "April" msgstr "Kwiecień" -#: js/js.js:593 +#: js/js.js:645 msgid "May" msgstr "Maj" -#: js/js.js:593 +#: js/js.js:645 msgid "June" msgstr "Czerwiec" -#: js/js.js:594 +#: js/js.js:646 msgid "July" msgstr "Lipiec" -#: js/js.js:594 +#: js/js.js:646 msgid "August" msgstr "Sierpień" -#: js/js.js:594 +#: js/js.js:646 msgid "September" msgstr "Wrzesień" -#: js/js.js:594 +#: js/js.js:646 msgid "October" msgstr "Październik" -#: js/js.js:594 +#: js/js.js:646 msgid "November" msgstr "Listopad" -#: js/js.js:594 +#: js/js.js:646 msgid "December" msgstr "Grudzień" +#: js/oc-dialogs.js:123 +msgid "Choose" +msgstr "Wybierz" + #: js/oc-dialogs.js:143 js/oc-dialogs.js:163 msgid "Cancel" msgstr "Anuluj" @@ -107,10 +112,119 @@ msgstr "Ok" msgid "No categories selected for deletion." msgstr "Nie ma kategorii zaznaczonych do usunięcia." -#: js/oc-vcategories.js:68 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 +#: js/share.js:501 msgid "Error" msgstr "Błąd" +#: js/share.js:103 +msgid "Error while sharing" +msgstr "Błąd podczas współdzielenia" + +#: js/share.js:114 +msgid "Error while unsharing" +msgstr "" + +#: js/share.js:121 +msgid "Error while changing permissions" +msgstr "Błąd przy zmianie uprawnień" + +#: js/share.js:130 +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" +msgstr "" + +#: js/share.js:132 +msgid "Shared with you by" +msgstr "" + +#: js/share.js:137 +msgid "Share with" +msgstr "Współdziel z" + +#: js/share.js:142 +msgid "Share with link" +msgstr "Współdziel z link" + +#: js/share.js:143 +msgid "Password protect" +msgstr "Zabezpieczone hasłem" + +#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +msgid "Password" +msgstr "Hasło" + +#: js/share.js:152 +msgid "Set expiration date" +msgstr "Ustaw datę wygaśnięcia" + +#: js/share.js:153 +msgid "Expiration date" +msgstr "Data wygaśnięcia" + +#: js/share.js:185 +msgid "Share via email:" +msgstr "" + +#: js/share.js:187 +msgid "No people found" +msgstr "Nie znaleziono ludzi" + +#: js/share.js:214 +msgid "Resharing is not allowed" +msgstr "Współdzielenie nie jest możliwe" + +#: js/share.js:250 +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" +msgstr "" + +#: js/share.js:271 +msgid "Unshare" +msgstr "" + +#: js/share.js:279 +msgid "can edit" +msgstr "można edytować" + +#: js/share.js:281 +msgid "access control" +msgstr "kontrola dostępu" + +#: js/share.js:284 +msgid "create" +msgstr "utwórz" + +#: js/share.js:287 +msgid "update" +msgstr "uaktualnij" + +#: js/share.js:290 +msgid "delete" +msgstr "usuń" + +#: js/share.js:293 +msgid "share" +msgstr "współdziel" + +#: js/share.js:317 js/share.js:476 +msgid "Password protected" +msgstr "Zabezpieczone hasłem" + +#: js/share.js:489 +msgid "Error unsetting expiration date" +msgstr "" + +#: js/share.js:501 +msgid "Error setting expiration date" +msgstr "Błąd podczas ustawiania daty wygaśnięcia" + #: lostpassword/index.php:26 msgid "ownCloud password reset" msgstr "restart hasła" @@ -196,10 +310,6 @@ msgstr "Dodaj" msgid "Create an admin account" msgstr "Tworzenie konta administratora" -#: templates/installation.php:30 templates/login.php:13 -msgid "Password" -msgstr "Hasło" - #: templates/installation.php:36 msgid "Advanced" msgstr "Zaawansowane" @@ -241,11 +351,11 @@ msgstr "Komputer bazy danych" msgid "Finish setup" msgstr "Zakończ konfigurowanie" -#: templates/layout.guest.php:42 +#: templates/layout.guest.php:36 msgid "web services under your control" msgstr "usługi internetowe pod kontrolą" -#: templates/layout.user.php:45 +#: templates/layout.user.php:34 msgid "Log out" msgstr "Wylogowuje użytkownika" diff --git a/l10n/pl/files.po b/l10n/pl/files.po index bac8f89bee..3344225a5c 100644 --- a/l10n/pl/files.po +++ b/l10n/pl/files.po @@ -4,6 +4,7 @@ # # Translators: # Cyryl Sochacki <>, 2012. +# Cyryl Sochacki , 2012. # Marcin Małecki , 2011-2012. # , 2011. # , 2012. @@ -12,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-13 02:01+0200\n" -"PO-Revision-Date: 2012-09-12 12:39+0000\n" -"Last-Translator: Cyryl Sochacki \n" +"POT-Creation-Date: 2012-09-26 13:19+0200\n" +"PO-Revision-Date: 2012-09-26 11:20+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -64,39 +65,43 @@ msgstr "Nie udostępniaj" msgid "Delete" msgstr "Usuwa element" -#: js/filelist.js:186 js/filelist.js:188 +#: js/fileactions.js:182 +msgid "Rename" +msgstr "Zmień nazwę" + +#: js/filelist.js:190 js/filelist.js:192 msgid "already exists" msgstr "Już istnieje" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "replace" msgstr "zastap" -#: js/filelist.js:186 +#: js/filelist.js:190 msgid "suggest name" msgstr "zasugeruj nazwę" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "cancel" msgstr "anuluj" -#: js/filelist.js:235 js/filelist.js:237 +#: js/filelist.js:239 js/filelist.js:241 msgid "replaced" msgstr "zastąpione" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:239 js/filelist.js:241 js/filelist.js:273 js/filelist.js:275 msgid "undo" msgstr "wróć" -#: js/filelist.js:237 +#: js/filelist.js:241 msgid "with" msgstr "z" -#: js/filelist.js:268 +#: js/filelist.js:273 msgid "unshared" msgstr "Nie udostępnione" -#: js/filelist.js:270 +#: js/filelist.js:275 msgid "deleted" msgstr "skasuj" @@ -112,47 +117,107 @@ msgstr "Nie można wczytać pliku jeśli jest katalogiem lub ma 0 bajtów" msgid "Upload Error" msgstr "Błąd wczytywania" -#: js/files.js:236 js/files.js:341 js/files.js:370 +#: js/files.js:236 js/files.js:341 js/files.js:371 msgid "Pending" msgstr "Oczekujące" -#: js/files.js:355 +#: js/files.js:256 +msgid "1 file uploading" +msgstr "" + +#: js/files.js:259 js/files.js:304 js/files.js:319 +msgid "files uploading" +msgstr "" + +#: js/files.js:322 js/files.js:355 msgid "Upload cancelled." msgstr "Wczytywanie anulowane." -#: js/files.js:423 +#: js/files.js:424 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Wysyłanie pliku jest w toku. Teraz opuszczając stronę wysyłanie zostanie anulowane." -#: js/files.js:493 +#: js/files.js:494 msgid "Invalid name, '/' is not allowed." msgstr "Nieprawidłowa nazwa '/' jest niedozwolone." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:667 +msgid "files scanned" +msgstr "Pliki skanowane" + +#: js/files.js:675 +msgid "error while scanning" +msgstr "Wystąpił błąd podczas skanowania" + +#: js/files.js:748 templates/index.php:48 +msgid "Name" +msgstr "Nazwa" + +#: js/files.js:749 templates/index.php:56 msgid "Size" msgstr "Rozmiar" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:750 templates/index.php:58 msgid "Modified" msgstr "Czas modyfikacji" -#: js/files.js:774 +#: js/files.js:777 msgid "folder" msgstr "folder" -#: js/files.js:776 +#: js/files.js:779 msgid "folders" msgstr "foldery" -#: js/files.js:784 +#: js/files.js:787 msgid "file" msgstr "plik" -#: js/files.js:786 +#: js/files.js:789 msgid "files" msgstr "pliki" +#: js/files.js:833 +msgid "seconds ago" +msgstr "" + +#: js/files.js:834 +msgid "minute ago" +msgstr "" + +#: js/files.js:835 +msgid "minutes ago" +msgstr "" + +#: js/files.js:838 +msgid "today" +msgstr "" + +#: js/files.js:839 +msgid "yesterday" +msgstr "" + +#: js/files.js:840 +msgid "days ago" +msgstr "" + +#: js/files.js:841 +msgid "last month" +msgstr "" + +#: js/files.js:843 +msgid "months ago" +msgstr "" + +#: js/files.js:844 +msgid "last year" +msgstr "" + +#: js/files.js:845 +msgid "years ago" +msgstr "" + #: templates/admin.php:5 msgid "File handling" msgstr "Zarządzanie plikami" @@ -201,7 +266,7 @@ msgstr "Katalog" msgid "From url" msgstr "Z adresu" -#: templates/index.php:21 +#: templates/index.php:20 msgid "Upload" msgstr "Prześlij" @@ -213,10 +278,6 @@ msgstr "Przestań wysyłać" msgid "Nothing in here. Upload something!" msgstr "Brak zawartości. Proszę wysłać pliki!" -#: templates/index.php:48 -msgid "Name" -msgstr "Nazwa" - #: templates/index.php:50 msgid "Share" msgstr "Współdziel" diff --git a/l10n/pl/files_sharing.po b/l10n/pl/files_sharing.po index fee8ef8b65..9ad1cd88a4 100644 --- a/l10n/pl/files_sharing.po +++ b/l10n/pl/files_sharing.po @@ -4,14 +4,15 @@ # # Translators: # Cyryl Sochacki <>, 2012. +# , 2012. # Paweł Ciecierski , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-04 02:01+0200\n" -"PO-Revision-Date: 2012-09-03 07:03+0000\n" -"Last-Translator: Cyryl Sochacki <>\n" +"POT-Creation-Date: 2012-09-26 13:19+0200\n" +"PO-Revision-Date: 2012-09-26 10:44+0000\n" +"Last-Translator: emc \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,14 +28,24 @@ msgstr "Hasło" msgid "Submit" msgstr "Wyślij" -#: templates/public.php:9 templates/public.php:19 +#: templates/public.php:9 +#, php-format +msgid "%s shared the folder %s with you" +msgstr "%s współdzieli folder z tobą %s" + +#: templates/public.php:11 +#, php-format +msgid "%s shared the file %s with you" +msgstr "%s współdzieli z tobą plik %s" + +#: templates/public.php:14 templates/public.php:30 msgid "Download" msgstr "Pobierz" -#: templates/public.php:18 +#: templates/public.php:29 msgid "No preview available for" msgstr "Podgląd nie jest dostępny dla" -#: templates/public.php:25 +#: templates/public.php:37 msgid "web services under your control" msgstr "Kontrolowane serwisy" diff --git a/l10n/pl/files_versions.po b/l10n/pl/files_versions.po index 003982e43f..adfdc97439 100644 --- a/l10n/pl/files_versions.po +++ b/l10n/pl/files_versions.po @@ -4,13 +4,14 @@ # # Translators: # Cyryl Sochacki <>, 2012. +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" -"PO-Revision-Date: 2012-09-17 00:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-26 13:19+0200\n" +"PO-Revision-Date: 2012-09-26 10:42+0000\n" +"Last-Translator: emc \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,6 +23,10 @@ msgstr "" msgid "Expire all versions" msgstr "Wygasają wszystkie wersje" +#: js/versions.js:16 +msgid "History" +msgstr "Historia" + #: templates/settings-personal.php:4 msgid "Versions" msgstr "Wersje" @@ -32,8 +37,8 @@ msgstr "Spowoduje to usunięcie wszystkich istniejących wersji kopii zapasowych #: templates/settings.php:3 msgid "Files Versioning" -msgstr "" +msgstr "Wersjonowanie plików" #: templates/settings.php:4 msgid "Enable" -msgstr "" +msgstr "Włącz" diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index d1c25e8f75..31d3ab5c96 100644 --- a/l10n/pl/settings.po +++ b/l10n/pl/settings.po @@ -4,6 +4,7 @@ # # Translators: # Cyryl Sochacki <>, 2012. +# Cyryl Sochacki , 2012. # , 2012. # Kamil Domański , 2011. # Marcin Małecki , 2011, 2012. @@ -15,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:03+0200\n" -"PO-Revision-Date: 2012-09-17 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-26 13:19+0200\n" +"PO-Revision-Date: 2012-09-26 10:40+0000\n" +"Last-Translator: emc \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -42,9 +43,9 @@ msgstr "Grupa już istnieje" msgid "Unable to add group" msgstr "Nie można dodać grupy" -#: ajax/enableapp.php:13 +#: ajax/enableapp.php:14 msgid "Could not enable app. " -msgstr "" +msgstr "Nie można włączyć aplikacji." #: ajax/lostpassword.php:14 msgid "Email saved" @@ -84,15 +85,11 @@ msgstr "Nie można dodać użytkownika do grupy %s" msgid "Unable to remove user from group %s" msgstr "Nie można usunąć użytkownika z grupy %s" -#: js/apps.js:18 -msgid "Error" -msgstr "Błąd" - -#: js/apps.js:39 js/apps.js:73 +#: js/apps.js:27 js/apps.js:61 msgid "Disable" msgstr "Wyłączone" -#: js/apps.js:39 js/apps.js:62 +#: js/apps.js:27 js/apps.js:50 msgid "Enable" msgstr "Włączone" @@ -123,23 +120,23 @@ msgstr "Cron" #: templates/admin.php:37 msgid "Execute one task with each page loaded" -msgstr "" +msgstr "Wykonanie jednego zadania z każdej strony wczytywania" #: templates/admin.php:43 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." -msgstr "" +msgstr "cron.php jest zarejestrowany w usłudze webcron. Przywołaj stronę cron.php w katalogu głównym owncloud raz na minute przez http." #: templates/admin.php:49 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "" +msgstr "Użyj usługi systemowej cron. Przywołaj plik cron.php z katalogu owncloud przez systemowe cronjob raz na minute." #: templates/admin.php:56 msgid "Sharing" -msgstr "" +msgstr "Udostępnianij" #: templates/admin.php:61 msgid "Enable Share API" @@ -232,12 +229,9 @@ msgid "Answer" msgstr "Odpowiedź" #: templates/personal.php:8 -msgid "You use" -msgstr "Używane" - -#: templates/personal.php:8 -msgid "of the available" -msgstr "z dostępnych" +#, php-format +msgid "You have used %s of the available %s" +msgstr "Używasz %s z dostępnych %s" #: templates/personal.php:12 msgid "Desktop and Mobile Syncing Clients" @@ -248,8 +242,8 @@ msgid "Download" msgstr "Ściągnij" #: templates/personal.php:19 -msgid "Your password got changed" -msgstr "Zmieniono hasło" +msgid "Your password was changed" +msgstr "Twoje hasło zostało zmienione" #: templates/personal.php:20 msgid "Unable to change your password" diff --git a/l10n/pl_PL/core.po b/l10n/pl_PL/core.po index 55486564fd..4b3dc86393 100644 --- a/l10n/pl_PL/core.po +++ b/l10n/pl_PL/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" @@ -29,58 +29,62 @@ msgstr "" msgid "This category already exists: " msgstr "" -#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "" -#: js/js.js:593 +#: js/js.js:645 msgid "January" msgstr "" -#: js/js.js:593 +#: js/js.js:645 msgid "February" msgstr "" -#: js/js.js:593 +#: js/js.js:645 msgid "March" msgstr "" -#: js/js.js:593 +#: js/js.js:645 msgid "April" msgstr "" -#: js/js.js:593 +#: js/js.js:645 msgid "May" msgstr "" -#: js/js.js:593 +#: js/js.js:645 msgid "June" msgstr "" -#: js/js.js:594 +#: js/js.js:646 msgid "July" msgstr "" -#: js/js.js:594 +#: js/js.js:646 msgid "August" msgstr "" -#: js/js.js:594 +#: js/js.js:646 msgid "September" msgstr "" -#: js/js.js:594 +#: js/js.js:646 msgid "October" msgstr "" -#: js/js.js:594 +#: js/js.js:646 msgid "November" msgstr "" -#: js/js.js:594 +#: js/js.js:646 msgid "December" msgstr "" +#: js/oc-dialogs.js:123 +msgid "Choose" +msgstr "" + #: js/oc-dialogs.js:143 js/oc-dialogs.js:163 msgid "Cancel" msgstr "" @@ -101,10 +105,119 @@ msgstr "" msgid "No categories selected for deletion." msgstr "" -#: js/oc-vcategories.js:68 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 +#: js/share.js:501 msgid "Error" msgstr "" +#: js/share.js:103 +msgid "Error while sharing" +msgstr "" + +#: js/share.js:114 +msgid "Error while unsharing" +msgstr "" + +#: js/share.js:121 +msgid "Error while changing permissions" +msgstr "" + +#: js/share.js:130 +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" +msgstr "" + +#: js/share.js:132 +msgid "Shared with you by" +msgstr "" + +#: js/share.js:137 +msgid "Share with" +msgstr "" + +#: js/share.js:142 +msgid "Share with link" +msgstr "" + +#: js/share.js:143 +msgid "Password protect" +msgstr "" + +#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +msgid "Password" +msgstr "" + +#: js/share.js:152 +msgid "Set expiration date" +msgstr "" + +#: js/share.js:153 +msgid "Expiration date" +msgstr "" + +#: js/share.js:185 +msgid "Share via email:" +msgstr "" + +#: js/share.js:187 +msgid "No people found" +msgstr "" + +#: js/share.js:214 +msgid "Resharing is not allowed" +msgstr "" + +#: js/share.js:250 +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" +msgstr "" + +#: js/share.js:271 +msgid "Unshare" +msgstr "" + +#: js/share.js:279 +msgid "can edit" +msgstr "" + +#: js/share.js:281 +msgid "access control" +msgstr "" + +#: js/share.js:284 +msgid "create" +msgstr "" + +#: js/share.js:287 +msgid "update" +msgstr "" + +#: js/share.js:290 +msgid "delete" +msgstr "" + +#: js/share.js:293 +msgid "share" +msgstr "" + +#: js/share.js:317 js/share.js:476 +msgid "Password protected" +msgstr "" + +#: js/share.js:489 +msgid "Error unsetting expiration date" +msgstr "" + +#: js/share.js:501 +msgid "Error setting expiration date" +msgstr "" + #: lostpassword/index.php:26 msgid "ownCloud password reset" msgstr "" @@ -190,10 +303,6 @@ msgstr "" msgid "Create an admin account" msgstr "" -#: templates/installation.php:30 templates/login.php:13 -msgid "Password" -msgstr "" - #: templates/installation.php:36 msgid "Advanced" msgstr "" @@ -235,11 +344,11 @@ msgstr "" msgid "Finish setup" msgstr "" -#: templates/layout.guest.php:42 +#: templates/layout.guest.php:36 msgid "web services under your control" msgstr "" -#: templates/layout.user.php:45 +#: templates/layout.user.php:34 msgid "Log out" msgstr "" diff --git a/l10n/pl_PL/files.po b/l10n/pl_PL/files.po index 6b1c826da5..cbd95ad6ef 100644 --- a/l10n/pl_PL/files.po +++ b/l10n/pl_PL/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-26 13:19+0200\n" +"PO-Revision-Date: 2012-09-26 11:20+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" @@ -59,39 +59,43 @@ msgstr "" msgid "Delete" msgstr "" -#: js/filelist.js:186 js/filelist.js:188 +#: js/fileactions.js:182 +msgid "Rename" +msgstr "" + +#: js/filelist.js:190 js/filelist.js:192 msgid "already exists" msgstr "" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "replace" msgstr "" -#: js/filelist.js:186 +#: js/filelist.js:190 msgid "suggest name" msgstr "" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "cancel" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 +#: js/filelist.js:239 js/filelist.js:241 msgid "replaced" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:239 js/filelist.js:241 js/filelist.js:273 js/filelist.js:275 msgid "undo" msgstr "" -#: js/filelist.js:237 +#: js/filelist.js:241 msgid "with" msgstr "" -#: js/filelist.js:268 +#: js/filelist.js:273 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:275 msgid "deleted" msgstr "" @@ -107,47 +111,107 @@ msgstr "" msgid "Upload Error" msgstr "" -#: js/files.js:236 js/files.js:341 js/files.js:370 +#: js/files.js:236 js/files.js:341 js/files.js:371 msgid "Pending" msgstr "" -#: js/files.js:355 +#: js/files.js:256 +msgid "1 file uploading" +msgstr "" + +#: js/files.js:259 js/files.js:304 js/files.js:319 +msgid "files uploading" +msgstr "" + +#: js/files.js:322 js/files.js:355 msgid "Upload cancelled." msgstr "" -#: js/files.js:423 +#: js/files.js:424 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:493 +#: js/files.js:494 msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:667 +msgid "files scanned" +msgstr "" + +#: js/files.js:675 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:48 +msgid "Name" +msgstr "" + +#: js/files.js:749 templates/index.php:56 msgid "Size" msgstr "" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:750 templates/index.php:58 msgid "Modified" msgstr "" -#: js/files.js:774 +#: js/files.js:777 msgid "folder" msgstr "" -#: js/files.js:776 +#: js/files.js:779 msgid "folders" msgstr "" -#: js/files.js:784 +#: js/files.js:787 msgid "file" msgstr "" -#: js/files.js:786 +#: js/files.js:789 msgid "files" msgstr "" +#: js/files.js:833 +msgid "seconds ago" +msgstr "" + +#: js/files.js:834 +msgid "minute ago" +msgstr "" + +#: js/files.js:835 +msgid "minutes ago" +msgstr "" + +#: js/files.js:838 +msgid "today" +msgstr "" + +#: js/files.js:839 +msgid "yesterday" +msgstr "" + +#: js/files.js:840 +msgid "days ago" +msgstr "" + +#: js/files.js:841 +msgid "last month" +msgstr "" + +#: js/files.js:843 +msgid "months ago" +msgstr "" + +#: js/files.js:844 +msgid "last year" +msgstr "" + +#: js/files.js:845 +msgid "years ago" +msgstr "" + #: templates/admin.php:5 msgid "File handling" msgstr "" @@ -196,7 +260,7 @@ msgstr "" msgid "From url" msgstr "" -#: templates/index.php:21 +#: templates/index.php:20 msgid "Upload" msgstr "" @@ -208,10 +272,6 @@ msgstr "" msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:48 -msgid "Name" -msgstr "" - #: templates/index.php:50 msgid "Share" msgstr "" diff --git a/l10n/pl_PL/files_sharing.po b/l10n/pl_PL/files_sharing.po index f92619c2f7..5735894fdf 100644 --- a/l10n/pl_PL/files_sharing.po +++ b/l10n/pl_PL/files_sharing.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:04+0000\n" +"POT-Creation-Date: 2012-09-22 01:14+0200\n" +"PO-Revision-Date: 2012-09-21 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: pl_PL\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: templates/authenticate.php:4 msgid "Password" @@ -25,14 +25,24 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 templates/public.php:19 +#: templates/public.php:9 +#, php-format +msgid "%s shared the folder %s with you" +msgstr "" + +#: templates/public.php:11 +#, php-format +msgid "%s shared the file %s with you" +msgstr "" + +#: templates/public.php:14 templates/public.php:30 msgid "Download" msgstr "" -#: templates/public.php:18 +#: templates/public.php:29 msgid "No preview available for" msgstr "" -#: templates/public.php:23 +#: templates/public.php:37 msgid "web services under your control" msgstr "" diff --git a/l10n/pl_PL/files_versions.po b/l10n/pl_PL/files_versions.po index db3eb7edd2..40053b76ef 100644 --- a/l10n/pl_PL/files_versions.po +++ b/l10n/pl_PL/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" -"PO-Revision-Date: 2012-09-17 00:04+0000\n" +"POT-Creation-Date: 2012-09-22 01:14+0200\n" +"PO-Revision-Date: 2012-09-21 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" @@ -21,6 +21,10 @@ msgstr "" msgid "Expire all versions" msgstr "" +#: js/versions.js:16 +msgid "History" +msgstr "" + #: templates/settings-personal.php:4 msgid "Versions" msgstr "" diff --git a/l10n/pl_PL/settings.po b/l10n/pl_PL/settings.po index 69bcf9ca78..3a26454d13 100644 --- a/l10n/pl_PL/settings.po +++ b/l10n/pl_PL/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:03+0200\n" -"PO-Revision-Date: 2012-09-17 00:03+0000\n" +"POT-Creation-Date: 2012-09-19 02:02+0200\n" +"PO-Revision-Date: 2012-09-19 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" @@ -34,7 +34,7 @@ msgstr "" msgid "Unable to add group" msgstr "" -#: ajax/enableapp.php:13 +#: ajax/enableapp.php:14 msgid "Could not enable app. " msgstr "" @@ -76,15 +76,11 @@ msgstr "" msgid "Unable to remove user from group %s" msgstr "" -#: js/apps.js:18 -msgid "Error" -msgstr "" - -#: js/apps.js:39 js/apps.js:73 +#: js/apps.js:27 js/apps.js:61 msgid "Disable" msgstr "" -#: js/apps.js:39 js/apps.js:62 +#: js/apps.js:27 js/apps.js:50 msgid "Enable" msgstr "" @@ -224,11 +220,8 @@ msgid "Answer" msgstr "" #: templates/personal.php:8 -msgid "You use" -msgstr "" - -#: templates/personal.php:8 -msgid "of the available" +#, php-format +msgid "You have used %s of the available %s" msgstr "" #: templates/personal.php:12 @@ -240,7 +233,7 @@ msgid "Download" msgstr "" #: templates/personal.php:19 -msgid "Your password got changed" +msgid "Your password was changed" msgstr "" #: templates/personal.php:20 diff --git a/l10n/pt_BR/core.po b/l10n/pt_BR/core.po index 6e1c9fdcd9..42ce9d1672 100644 --- a/l10n/pt_BR/core.po +++ b/l10n/pt_BR/core.po @@ -5,6 +5,7 @@ # Translators: # , 2011. # Guilherme Maluf Balzana , 2012. +# , 2012. # Thiago Vicente , 2012. # Unforgiving Fallout <>, 2012. # Van Der Fran , 2011, 2012. @@ -12,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -34,58 +35,62 @@ msgstr "Nenhuma categoria adicionada?" msgid "This category already exists: " msgstr "Essa categoria já existe" -#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Configurações" -#: js/js.js:593 +#: js/js.js:645 msgid "January" msgstr "Janeiro" -#: js/js.js:593 +#: js/js.js:645 msgid "February" msgstr "Fevereiro" -#: js/js.js:593 +#: js/js.js:645 msgid "March" msgstr "Março" -#: js/js.js:593 +#: js/js.js:645 msgid "April" msgstr "Abril" -#: js/js.js:593 +#: js/js.js:645 msgid "May" msgstr "Maio" -#: js/js.js:593 +#: js/js.js:645 msgid "June" msgstr "Junho" -#: js/js.js:594 +#: js/js.js:646 msgid "July" msgstr "Julho" -#: js/js.js:594 +#: js/js.js:646 msgid "August" msgstr "Agosto" -#: js/js.js:594 +#: js/js.js:646 msgid "September" msgstr "Setembro" -#: js/js.js:594 +#: js/js.js:646 msgid "October" msgstr "Outubro" -#: js/js.js:594 +#: js/js.js:646 msgid "November" msgstr "Novembro" -#: js/js.js:594 +#: js/js.js:646 msgid "December" msgstr "Dezembro" +#: js/oc-dialogs.js:123 +msgid "Choose" +msgstr "Escolha" + #: js/oc-dialogs.js:143 js/oc-dialogs.js:163 msgid "Cancel" msgstr "Cancelar" @@ -106,10 +111,119 @@ msgstr "Ok" msgid "No categories selected for deletion." msgstr "Nenhuma categoria selecionada para deletar." -#: js/oc-vcategories.js:68 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 +#: js/share.js:501 msgid "Error" msgstr "Erro" +#: js/share.js:103 +msgid "Error while sharing" +msgstr "Erro ao compartilhar" + +#: js/share.js:114 +msgid "Error while unsharing" +msgstr "Erro ao descompartilhar" + +#: js/share.js:121 +msgid "Error while changing permissions" +msgstr "Erro ao mudar permissões" + +#: js/share.js:130 +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" +msgstr "" + +#: js/share.js:132 +msgid "Shared with you by" +msgstr "" + +#: js/share.js:137 +msgid "Share with" +msgstr "Compartilhar com" + +#: js/share.js:142 +msgid "Share with link" +msgstr "Compartilhar com link" + +#: js/share.js:143 +msgid "Password protect" +msgstr "Proteger com senha" + +#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +msgid "Password" +msgstr "Senha" + +#: js/share.js:152 +msgid "Set expiration date" +msgstr "Definir data de expiração" + +#: js/share.js:153 +msgid "Expiration date" +msgstr "Data de expiração" + +#: js/share.js:185 +msgid "Share via email:" +msgstr "" + +#: js/share.js:187 +msgid "No people found" +msgstr "Nenhuma pessoa encontrada" + +#: js/share.js:214 +msgid "Resharing is not allowed" +msgstr "Não é permitido re-compartilhar" + +#: js/share.js:250 +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" +msgstr "" + +#: js/share.js:271 +msgid "Unshare" +msgstr "Descompartilhar" + +#: js/share.js:279 +msgid "can edit" +msgstr "pode editar" + +#: js/share.js:281 +msgid "access control" +msgstr "controle de acesso" + +#: js/share.js:284 +msgid "create" +msgstr "criar" + +#: js/share.js:287 +msgid "update" +msgstr "atualizar" + +#: js/share.js:290 +msgid "delete" +msgstr "remover" + +#: js/share.js:293 +msgid "share" +msgstr "compartilhar" + +#: js/share.js:317 js/share.js:476 +msgid "Password protected" +msgstr "Protegido com senha" + +#: js/share.js:489 +msgid "Error unsetting expiration date" +msgstr "Erro ao remover data de expiração" + +#: js/share.js:501 +msgid "Error setting expiration date" +msgstr "Erro ao definir data de expiração" + #: lostpassword/index.php:26 msgid "ownCloud password reset" msgstr "Redefinir senha ownCloud" @@ -195,10 +309,6 @@ msgstr "Adicionar" msgid "Create an admin account" msgstr "Criar uma conta de administrador" -#: templates/installation.php:30 templates/login.php:13 -msgid "Password" -msgstr "Senha" - #: templates/installation.php:36 msgid "Advanced" msgstr "Avançado" @@ -230,7 +340,7 @@ msgstr "Nome do banco de dados" #: templates/installation.php:109 msgid "Database tablespace" -msgstr "" +msgstr "Espaço de tabela do banco de dados" #: templates/installation.php:115 msgid "Database host" @@ -240,11 +350,11 @@ msgstr "Banco de dados do host" msgid "Finish setup" msgstr "Concluir configuração" -#: templates/layout.guest.php:42 +#: templates/layout.guest.php:36 msgid "web services under your control" msgstr "web services sob seu controle" -#: templates/layout.user.php:45 +#: templates/layout.user.php:34 msgid "Log out" msgstr "Sair" diff --git a/l10n/pt_BR/files.po b/l10n/pt_BR/files.po index dba70ec6de..a262359b9c 100644 --- a/l10n/pt_BR/files.po +++ b/l10n/pt_BR/files.po @@ -4,6 +4,7 @@ # # Translators: # Guilherme Maluf Balzana , 2012. +# , 2012. # , 2012. # Thiago Vicente , 2012. # Unforgiving Fallout <>, 2012. @@ -12,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-27 02:01+0200\n" +"PO-Revision-Date: 2012-09-26 12:31+0000\n" +"Last-Translator: sedir \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -58,45 +59,49 @@ msgstr "Arquivos" #: js/fileactions.js:108 templates/index.php:62 msgid "Unshare" -msgstr "" +msgstr "Descompartilhar" #: js/fileactions.js:110 templates/index.php:64 msgid "Delete" msgstr "Excluir" -#: js/filelist.js:186 js/filelist.js:188 +#: js/fileactions.js:182 +msgid "Rename" +msgstr "Renomear" + +#: js/filelist.js:190 js/filelist.js:192 msgid "already exists" msgstr "já existe" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "replace" msgstr "substituir" -#: js/filelist.js:186 +#: js/filelist.js:190 msgid "suggest name" -msgstr "" +msgstr "sugerir nome" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "cancel" msgstr "cancelar" -#: js/filelist.js:235 js/filelist.js:237 +#: js/filelist.js:239 js/filelist.js:241 msgid "replaced" msgstr "substituido " -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:239 js/filelist.js:241 js/filelist.js:273 js/filelist.js:275 msgid "undo" msgstr "desfazer" -#: js/filelist.js:237 +#: js/filelist.js:241 msgid "with" msgstr "com" -#: js/filelist.js:268 +#: js/filelist.js:273 msgid "unshared" -msgstr "" +msgstr "descompartilhado" -#: js/filelist.js:270 +#: js/filelist.js:275 msgid "deleted" msgstr "deletado" @@ -112,47 +117,107 @@ msgstr "Impossível enviar seus arquivo como diretório ou ele tem 0 bytes." msgid "Upload Error" msgstr "Erro de envio" -#: js/files.js:236 js/files.js:341 js/files.js:370 +#: js/files.js:236 js/files.js:341 js/files.js:371 msgid "Pending" msgstr "Pendente" -#: js/files.js:355 +#: js/files.js:256 +msgid "1 file uploading" +msgstr "enviando 1 arquivo" + +#: js/files.js:259 js/files.js:304 js/files.js:319 +msgid "files uploading" +msgstr "enviando arquivos" + +#: js/files.js:322 js/files.js:355 msgid "Upload cancelled." msgstr "Envio cancelado." -#: js/files.js:423 +#: js/files.js:424 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "" +msgstr "Upload em andamento. Sair da página agora resultará no cancelamento do envio." -#: js/files.js:493 +#: js/files.js:494 msgid "Invalid name, '/' is not allowed." msgstr "Nome inválido, '/' não é permitido." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:668 +msgid "files scanned" +msgstr "arquivos verificados" + +#: js/files.js:676 +msgid "error while scanning" +msgstr "erro durante verificação" + +#: js/files.js:749 templates/index.php:48 +msgid "Name" +msgstr "Nome" + +#: js/files.js:750 templates/index.php:56 msgid "Size" msgstr "Tamanho" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:751 templates/index.php:58 msgid "Modified" msgstr "Modificado" -#: js/files.js:774 +#: js/files.js:778 msgid "folder" msgstr "pasta" -#: js/files.js:776 +#: js/files.js:780 msgid "folders" msgstr "pastas" -#: js/files.js:784 +#: js/files.js:788 msgid "file" msgstr "arquivo" -#: js/files.js:786 +#: js/files.js:790 msgid "files" msgstr "arquivos" +#: js/files.js:834 +msgid "seconds ago" +msgstr "segundos atrás" + +#: js/files.js:835 +msgid "minute ago" +msgstr "minuto atrás" + +#: js/files.js:836 +msgid "minutes ago" +msgstr "minutos atrás" + +#: js/files.js:839 +msgid "today" +msgstr "hoje" + +#: js/files.js:840 +msgid "yesterday" +msgstr "ontem" + +#: js/files.js:841 +msgid "days ago" +msgstr "dias atrás" + +#: js/files.js:842 +msgid "last month" +msgstr "último mês" + +#: js/files.js:844 +msgid "months ago" +msgstr "meses atrás" + +#: js/files.js:845 +msgid "last year" +msgstr "último ano" + +#: js/files.js:846 +msgid "years ago" +msgstr "anos atrás" + #: templates/admin.php:5 msgid "File handling" msgstr "Tratamento de Arquivo" @@ -183,7 +248,7 @@ msgstr "Tamanho máximo para arquivo ZIP" #: templates/admin.php:14 msgid "Save" -msgstr "" +msgstr "Salvar" #: templates/index.php:7 msgid "New" @@ -201,7 +266,7 @@ msgstr "Pasta" msgid "From url" msgstr "URL de origem" -#: templates/index.php:21 +#: templates/index.php:20 msgid "Upload" msgstr "Carregar" @@ -213,10 +278,6 @@ msgstr "Cancelar upload" msgid "Nothing in here. Upload something!" msgstr "Nada aqui.Carrege alguma coisa!" -#: templates/index.php:48 -msgid "Name" -msgstr "Nome" - #: templates/index.php:50 msgid "Share" msgstr "Compartilhar" diff --git a/l10n/pt_BR/files_encryption.po b/l10n/pt_BR/files_encryption.po index aba18662d4..250fed658f 100644 --- a/l10n/pt_BR/files_encryption.po +++ b/l10n/pt_BR/files_encryption.po @@ -3,32 +3,33 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:33+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-24 02:01+0200\n" +"PO-Revision-Date: 2012-09-23 16:57+0000\n" +"Last-Translator: sedir \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: pt_BR\n" -"Plural-Forms: nplurals=2; plural=(n > 1)\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" #: templates/settings.php:3 msgid "Encryption" -msgstr "" +msgstr "Criptografia" #: templates/settings.php:4 msgid "Exclude the following file types from encryption" -msgstr "" +msgstr "Excluir os seguintes tipos de arquivo da criptografia" #: templates/settings.php:5 msgid "None" -msgstr "" +msgstr "Nenhuma" #: templates/settings.php:10 msgid "Enable Encryption" -msgstr "" +msgstr "Habilitar Criptografia" diff --git a/l10n/pt_BR/files_external.po b/l10n/pt_BR/files_external.po index 8af2e8806b..93784eea4e 100644 --- a/l10n/pt_BR/files_external.po +++ b/l10n/pt_BR/files_external.po @@ -3,80 +3,81 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:34+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-24 02:01+0200\n" +"PO-Revision-Date: 2012-09-23 16:48+0000\n" +"Last-Translator: sedir \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: pt_BR\n" -"Plural-Forms: nplurals=2; plural=(n > 1)\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" #: templates/settings.php:3 msgid "External Storage" -msgstr "" +msgstr "Armazenamento Externo" #: templates/settings.php:7 templates/settings.php:19 msgid "Mount point" -msgstr "" +msgstr "Ponto de montagem" #: templates/settings.php:8 msgid "Backend" -msgstr "" +msgstr "Backend" #: templates/settings.php:9 msgid "Configuration" -msgstr "" +msgstr "Configuração" #: templates/settings.php:10 msgid "Options" -msgstr "" +msgstr "Opções" #: templates/settings.php:11 msgid "Applicable" -msgstr "" +msgstr "Aplicável" #: templates/settings.php:23 msgid "Add mount point" -msgstr "" +msgstr "Adicionar ponto de montagem" #: templates/settings.php:54 templates/settings.php:62 msgid "None set" -msgstr "" +msgstr "Nenhum definido" #: templates/settings.php:63 msgid "All Users" -msgstr "" +msgstr "Todos os Usuários" #: templates/settings.php:64 msgid "Groups" -msgstr "" +msgstr "Grupos" #: templates/settings.php:69 msgid "Users" -msgstr "" +msgstr "Usuários" #: templates/settings.php:77 templates/settings.php:96 msgid "Delete" -msgstr "" +msgstr "Remover" #: templates/settings.php:88 msgid "SSL root certificates" -msgstr "" +msgstr "Certificados SSL raíz" #: templates/settings.php:102 msgid "Import Root Certificate" -msgstr "" +msgstr "Importar Certificado Raíz" #: templates/settings.php:108 msgid "Enable User External Storage" -msgstr "" +msgstr "Habilitar Armazenamento Externo do Usuário" #: templates/settings.php:109 msgid "Allow users to mount their own external storage" -msgstr "" +msgstr "Permitir usuários a montar seus próprios armazenamentos externos" diff --git a/l10n/pt_BR/files_sharing.po b/l10n/pt_BR/files_sharing.po index 0e7ee14344..b9d69c3164 100644 --- a/l10n/pt_BR/files_sharing.po +++ b/l10n/pt_BR/files_sharing.po @@ -3,36 +3,47 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-24 02:01+0200\n" +"PO-Revision-Date: 2012-09-23 16:45+0000\n" +"Last-Translator: sedir \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: pt_BR\n" -"Plural-Forms: nplurals=2; plural=(n > 1)\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" #: templates/authenticate.php:4 msgid "Password" -msgstr "" +msgstr "Senha" #: templates/authenticate.php:6 msgid "Submit" -msgstr "" +msgstr "Submeter" -#: templates/public.php:9 templates/public.php:19 +#: templates/public.php:9 +#, php-format +msgid "%s shared the folder %s with you" +msgstr "%s compartilhou a pasta %s com você" + +#: templates/public.php:11 +#, php-format +msgid "%s shared the file %s with you" +msgstr "%s compartilhou o arquivo %s com você" + +#: templates/public.php:14 templates/public.php:30 msgid "Download" -msgstr "" +msgstr "Baixar" -#: templates/public.php:18 +#: templates/public.php:29 msgid "No preview available for" -msgstr "" +msgstr "Nenhuma visualização disponível para" -#: templates/public.php:23 +#: templates/public.php:37 msgid "web services under your control" -msgstr "" +msgstr "web services sob seu controle" diff --git a/l10n/pt_BR/files_versions.po b/l10n/pt_BR/files_versions.po index 9fb1e30b67..f310a86a67 100644 --- a/l10n/pt_BR/files_versions.po +++ b/l10n/pt_BR/files_versions.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. # , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" -"PO-Revision-Date: 2012-09-17 00:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-24 02:01+0200\n" +"PO-Revision-Date: 2012-09-23 15:33+0000\n" +"Last-Translator: sedir \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,18 +23,22 @@ msgstr "" msgid "Expire all versions" msgstr "Expirar todas as versões" +#: js/versions.js:16 +msgid "History" +msgstr "Histórico" + #: templates/settings-personal.php:4 msgid "Versions" -msgstr "" +msgstr "Versões" #: templates/settings-personal.php:7 msgid "This will delete all existing backup versions of your files" -msgstr "" +msgstr "Isso removerá todas as versões de backup existentes dos seus arquivos" #: templates/settings.php:3 msgid "Files Versioning" -msgstr "" +msgstr "Versionamento de Arquivos" #: templates/settings.php:4 msgid "Enable" -msgstr "" +msgstr "Habilitar" diff --git a/l10n/pt_BR/lib.po b/l10n/pt_BR/lib.po index 3ff7a35f89..6e42d00239 100644 --- a/l10n/pt_BR/lib.po +++ b/l10n/pt_BR/lib.po @@ -3,123 +3,124 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-09-01 00:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-24 02:02+0200\n" +"PO-Revision-Date: 2012-09-23 17:07+0000\n" +"Last-Translator: sedir \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: pt_BR\n" -"Plural-Forms: nplurals=2; plural=(n > 1)\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: app.php:288 +#: app.php:285 msgid "Help" -msgstr "" +msgstr "Ajuda" -#: app.php:295 +#: app.php:292 msgid "Personal" -msgstr "" +msgstr "Pessoal" -#: app.php:300 +#: app.php:297 msgid "Settings" -msgstr "" +msgstr "Ajustes" -#: app.php:305 +#: app.php:302 msgid "Users" -msgstr "" +msgstr "Usuários" -#: app.php:312 +#: app.php:309 msgid "Apps" -msgstr "" +msgstr "Aplicações" -#: app.php:314 +#: app.php:311 msgid "Admin" -msgstr "" +msgstr "Admin" -#: files.php:280 +#: files.php:309 msgid "ZIP download is turned off." -msgstr "" +msgstr "Download ZIP está desligado." -#: files.php:281 +#: files.php:310 msgid "Files need to be downloaded one by one." -msgstr "" +msgstr "Arquivos precisam ser baixados um de cada vez." -#: files.php:281 files.php:306 +#: files.php:310 files.php:335 msgid "Back to Files" -msgstr "" +msgstr "Voltar para Arquivos" -#: files.php:305 +#: files.php:334 msgid "Selected files too large to generate zip file." -msgstr "" +msgstr "Arquivos selecionados são muito grandes para gerar arquivo zip." #: json.php:28 msgid "Application is not enabled" -msgstr "" +msgstr "Aplicação não está habilitada" #: json.php:39 json.php:63 json.php:75 msgid "Authentication error" -msgstr "" +msgstr "Erro de autenticação" #: json.php:51 msgid "Token expired. Please reload page." -msgstr "" - -#: template.php:86 -msgid "seconds ago" -msgstr "" +msgstr "Token expirou. Por favor recarregue a página." #: template.php:87 -msgid "1 minute ago" -msgstr "" +msgid "seconds ago" +msgstr "segundos atrás" #: template.php:88 +msgid "1 minute ago" +msgstr "1 minuto atrás" + +#: template.php:89 #, php-format msgid "%d minutes ago" -msgstr "" - -#: template.php:91 -msgid "today" -msgstr "" +msgstr "%d minutos atrás" #: template.php:92 -msgid "yesterday" -msgstr "" +msgid "today" +msgstr "hoje" #: template.php:93 -#, php-format -msgid "%d days ago" -msgstr "" +msgid "yesterday" +msgstr "ontem" #: template.php:94 -msgid "last month" -msgstr "" +#, php-format +msgid "%d days ago" +msgstr "%d dias atrás" #: template.php:95 -msgid "months ago" -msgstr "" +msgid "last month" +msgstr "último mês" #: template.php:96 -msgid "last year" -msgstr "" +msgid "months ago" +msgstr "meses atrás" #: template.php:97 +msgid "last year" +msgstr "último ano" + +#: template.php:98 msgid "years ago" -msgstr "" +msgstr "anos atrás" #: updater.php:66 #, php-format msgid "%s is available. Get more information" -msgstr "" +msgstr "%s está disponível. Obtenha mais informações" #: updater.php:68 msgid "up to date" -msgstr "" +msgstr "atualizado" #: updater.php:71 msgid "updates check is disabled" -msgstr "" +msgstr "checagens de atualização estão desativadas" diff --git a/l10n/pt_BR/settings.po b/l10n/pt_BR/settings.po index 605cee5db9..b50c866aba 100644 --- a/l10n/pt_BR/settings.po +++ b/l10n/pt_BR/settings.po @@ -5,6 +5,7 @@ # Translators: # , 2011. # Guilherme Maluf Balzana , 2012. +# , 2012. # Sandro Venezuela , 2012. # , 2012. # Thiago Vicente , 2012. @@ -13,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:03+0200\n" -"PO-Revision-Date: 2012-09-17 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-25 02:03+0200\n" +"PO-Revision-Date: 2012-09-24 01:31+0000\n" +"Last-Translator: sedir \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,7 +26,7 @@ msgstr "" #: ajax/apps/ocs.php:23 msgid "Unable to load list from App Store" -msgstr "" +msgstr "Não foi possivel carregar lista da App Store" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 #: ajax/togglegroups.php:15 @@ -34,15 +35,15 @@ msgstr "erro de autenticação" #: ajax/creategroup.php:19 msgid "Group already exists" -msgstr "" +msgstr "Grupo já existe" #: ajax/creategroup.php:28 msgid "Unable to add group" -msgstr "" +msgstr "Não foi possivel adicionar grupo" -#: ajax/enableapp.php:13 +#: ajax/enableapp.php:14 msgid "Could not enable app. " -msgstr "" +msgstr "Não pôde habilitar aplicação" #: ajax/lostpassword.php:14 msgid "Email saved" @@ -62,11 +63,11 @@ msgstr "Pedido inválido" #: ajax/removegroup.php:16 msgid "Unable to delete group" -msgstr "" +msgstr "Não foi possivel remover grupo" #: ajax/removeuser.php:22 msgid "Unable to delete user" -msgstr "" +msgstr "Não foi possivel remover usuário" #: ajax/setlanguage.php:18 msgid "Language changed" @@ -75,22 +76,18 @@ msgstr "Mudou Idioma" #: ajax/togglegroups.php:25 #, php-format msgid "Unable to add user to group %s" -msgstr "" +msgstr "Não foi possivel adicionar usuário ao grupo %s" #: ajax/togglegroups.php:31 #, php-format msgid "Unable to remove user from group %s" -msgstr "" +msgstr "Não foi possivel remover usuário ao grupo %s" -#: js/apps.js:18 -msgid "Error" -msgstr "Erro" - -#: js/apps.js:39 js/apps.js:73 +#: js/apps.js:27 js/apps.js:61 msgid "Disable" msgstr "Desabilitado" -#: js/apps.js:39 js/apps.js:62 +#: js/apps.js:27 js/apps.js:50 msgid "Enable" msgstr "Habilitado" @@ -113,63 +110,63 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "" +msgstr "Seu diretório de dados e seus arquivos estão, provavelmente, acessíveis a partir da internet. O .htaccess que o ownCloud fornece não está funcionando. Nós sugerimos que você configure o seu servidor web de uma forma que o diretório de dados esteja mais acessível ou que você mova o diretório de dados para fora da raiz do servidor web." #: templates/admin.php:31 msgid "Cron" -msgstr "" +msgstr "Cron" #: templates/admin.php:37 msgid "Execute one task with each page loaded" -msgstr "" +msgstr "Executa uma tarefa com cada página carregada" #: templates/admin.php:43 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." -msgstr "" +msgstr "cron.php está registrado no serviço webcron. Chama a página cron.php na raíz do owncloud uma vez por minuto via http." #: templates/admin.php:49 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "" +msgstr "Usa o serviço cron do sistema. Chama o arquivo cron.php na pasta do owncloud através do cronjob do sistema uma vez a cada minuto." #: templates/admin.php:56 msgid "Sharing" -msgstr "" +msgstr "Compartilhamento" #: templates/admin.php:61 msgid "Enable Share API" -msgstr "" +msgstr "Habilitar API de Compartilhamento" #: templates/admin.php:62 msgid "Allow apps to use the Share API" -msgstr "" +msgstr "Permitir aplicações a usar a API de Compartilhamento" #: templates/admin.php:67 msgid "Allow links" -msgstr "" +msgstr "Permitir links" #: templates/admin.php:68 msgid "Allow users to share items to the public with links" -msgstr "" +msgstr "Permitir usuários a compartilhar itens para o público com links" #: templates/admin.php:73 msgid "Allow resharing" -msgstr "" +msgstr "Permitir re-compartilhamento" #: templates/admin.php:74 msgid "Allow users to share items shared with them again" -msgstr "" +msgstr "Permitir usuário a compartilhar itens compartilhados com eles novamente" #: templates/admin.php:79 msgid "Allow users to share with anyone" -msgstr "" +msgstr "Permitir usuários a compartilhar com qualquer um" #: templates/admin.php:81 msgid "Allow users to only share with users in their groups" -msgstr "" +msgstr "Permitir usuários a somente compartilhar com usuários em seus respectivos grupos" #: templates/admin.php:88 msgid "Log" @@ -187,7 +184,7 @@ msgid "" "licensed under the AGPL." -msgstr "" +msgstr "Desenvolvido pela comunidade ownCloud, o código fonte está licenciado sob AGPL." #: templates/apps.php:10 msgid "Add your App" @@ -203,7 +200,7 @@ msgstr "Ver página do aplicativo em apps.owncloud.com" #: templates/apps.php:30 msgid "-licensed by " -msgstr "" +msgstr "-licenciado por " #: templates/help.php:9 msgid "Documentation" @@ -230,12 +227,9 @@ msgid "Answer" msgstr "Resposta" #: templates/personal.php:8 -msgid "You use" -msgstr "Você usa" - -#: templates/personal.php:8 -msgid "of the available" -msgstr "do disponível" +#, php-format +msgid "You have used %s of the available %s" +msgstr "Você usou %s do %s disponível" #: templates/personal.php:12 msgid "Desktop and Mobile Syncing Clients" @@ -246,8 +240,8 @@ msgid "Download" msgstr "Download" #: templates/personal.php:19 -msgid "Your password got changed" -msgstr "Sua senha foi modificada" +msgid "Your password was changed" +msgstr "Sua senha foi alterada" #: templates/personal.php:20 msgid "Unable to change your password" diff --git a/l10n/pt_BR/user_ldap.po b/l10n/pt_BR/user_ldap.po index 71b15d98cf..ddfc711b8e 100644 --- a/l10n/pt_BR/user_ldap.po +++ b/l10n/pt_BR/user_ldap.po @@ -3,168 +3,169 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-29 02:01+0200\n" -"PO-Revision-Date: 2012-08-29 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-24 02:01+0200\n" +"PO-Revision-Date: 2012-09-23 17:35+0000\n" +"Last-Translator: sedir \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: pt_BR\n" -"Plural-Forms: nplurals=2; plural=(n > 1)\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" #: templates/settings.php:8 msgid "Host" -msgstr "" +msgstr "Host" #: templates/settings.php:8 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" -msgstr "" +msgstr "Você pode omitir o protocolo, exceto quando requerer SSL. Então inicie com ldaps://" #: templates/settings.php:9 msgid "Base DN" -msgstr "" +msgstr "DN Base" #: templates/settings.php:9 msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "" +msgstr "Você pode especificar DN Base para usuários e grupos na guia Avançada" #: templates/settings.php:10 msgid "User DN" -msgstr "" +msgstr "DN Usuário" #: templates/settings.php:10 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." -msgstr "" +msgstr "O DN do cliente usuário com qual a ligação deverá ser feita, ex. uid=agent,dc=example,dc=com. Para acesso anônimo, deixe DN e Senha vazios." #: templates/settings.php:11 msgid "Password" -msgstr "" +msgstr "Senha" #: templates/settings.php:11 msgid "For anonymous access, leave DN and Password empty." -msgstr "" +msgstr "Para acesso anônimo, deixe DN e Senha vazios." #: templates/settings.php:12 msgid "User Login Filter" -msgstr "" +msgstr "Filtro de Login de Usuário" #: templates/settings.php:12 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." -msgstr "" +msgstr "Define o filtro pra aplicar ao efetuar uma tentativa de login. %%uuid substitui o nome de usuário na ação de login." #: templates/settings.php:12 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" -msgstr "" +msgstr "use %%uid placeholder, ex. \"uid=%%uid\"" #: templates/settings.php:13 msgid "User List Filter" -msgstr "" +msgstr "Filtro de Lista de Usuário" #: templates/settings.php:13 msgid "Defines the filter to apply, when retrieving users." -msgstr "" +msgstr "Define filtro a aplicar ao obter usuários." #: templates/settings.php:13 msgid "without any placeholder, e.g. \"objectClass=person\"." -msgstr "" +msgstr "sem nenhum espaço reservado, ex. \"objectClass=person\"." #: templates/settings.php:14 msgid "Group Filter" -msgstr "" +msgstr "Filtro de Grupo" #: templates/settings.php:14 msgid "Defines the filter to apply, when retrieving groups." -msgstr "" +msgstr "Define o filtro a aplicar ao obter grupos." #: templates/settings.php:14 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." -msgstr "" +msgstr "sem nenhum espaço reservado, ex. \"objectClass=posixGroup\"" #: templates/settings.php:17 msgid "Port" -msgstr "" +msgstr "Porta" #: templates/settings.php:18 msgid "Base User Tree" -msgstr "" +msgstr "Árvore de Usuário Base" #: templates/settings.php:19 msgid "Base Group Tree" -msgstr "" +msgstr "Árvore de Grupo Base" #: templates/settings.php:20 msgid "Group-Member association" -msgstr "" +msgstr "Associação Grupo-Membro" #: templates/settings.php:21 msgid "Use TLS" -msgstr "" +msgstr "Usar TLS" #: templates/settings.php:21 msgid "Do not use it for SSL connections, it will fail." -msgstr "" +msgstr "Não use-o para conexões SSL, pois falhará." #: templates/settings.php:22 msgid "Case insensitve LDAP server (Windows)" -msgstr "" +msgstr "Servidor LDAP sensível à caixa alta (Windows)" #: templates/settings.php:23 msgid "Turn off SSL certificate validation." -msgstr "" +msgstr "Desligar validação de certificado SSL." #: templates/settings.php:23 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." -msgstr "" +msgstr "Se a conexão só funciona com essa opção, importe o certificado SSL do servidor LDAP no seu servidor ownCloud." #: templates/settings.php:23 msgid "Not recommended, use for testing only." -msgstr "" +msgstr "Não recomendado, use somente para testes." #: templates/settings.php:24 msgid "User Display Name Field" -msgstr "" +msgstr "Campo Nome de Exibição de Usuário" #: templates/settings.php:24 msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "" +msgstr "O atributo LDAP para usar para gerar nome ownCloud do usuário." #: templates/settings.php:25 msgid "Group Display Name Field" -msgstr "" +msgstr "Campo Nome de Exibição de Grupo" #: templates/settings.php:25 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "" +msgstr "O atributo LDAP para usar para gerar nome ownCloud do grupo." #: templates/settings.php:27 msgid "in bytes" -msgstr "" +msgstr "em bytes" #: templates/settings.php:29 msgid "in seconds. A change empties the cache." -msgstr "" +msgstr "em segundos. Uma mudança esvaziará o cache." #: templates/settings.php:30 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." -msgstr "" +msgstr "Deixe vazio para nome de usuário (padrão). Caso contrário, especifique um atributo LDAP/AD." #: templates/settings.php:32 msgid "Help" -msgstr "" +msgstr "Ajuda" diff --git a/l10n/pt_PT/core.po b/l10n/pt_PT/core.po index ef75d8f6bd..a7b168b09f 100644 --- a/l10n/pt_PT/core.po +++ b/l10n/pt_PT/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -32,58 +32,62 @@ msgstr "Nenhuma categoria para adicionar?" msgid "This category already exists: " msgstr "Esta categoria já existe:" -#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Definições" -#: js/js.js:593 +#: js/js.js:645 msgid "January" msgstr "Janeiro" -#: js/js.js:593 +#: js/js.js:645 msgid "February" msgstr "Fevereiro" -#: js/js.js:593 +#: js/js.js:645 msgid "March" msgstr "Março" -#: js/js.js:593 +#: js/js.js:645 msgid "April" msgstr "Abril" -#: js/js.js:593 +#: js/js.js:645 msgid "May" msgstr "Maio" -#: js/js.js:593 +#: js/js.js:645 msgid "June" msgstr "Junho" -#: js/js.js:594 +#: js/js.js:646 msgid "July" msgstr "Julho" -#: js/js.js:594 +#: js/js.js:646 msgid "August" msgstr "Agosto" -#: js/js.js:594 +#: js/js.js:646 msgid "September" msgstr "Setembro" -#: js/js.js:594 +#: js/js.js:646 msgid "October" msgstr "Outubro" -#: js/js.js:594 +#: js/js.js:646 msgid "November" msgstr "Novembro" -#: js/js.js:594 +#: js/js.js:646 msgid "December" msgstr "Dezembro" +#: js/oc-dialogs.js:123 +msgid "Choose" +msgstr "" + #: js/oc-dialogs.js:143 js/oc-dialogs.js:163 msgid "Cancel" msgstr "Cancelar" @@ -104,10 +108,119 @@ msgstr "Ok" msgid "No categories selected for deletion." msgstr "Nenhuma categoria seleccionar para eliminar" -#: js/oc-vcategories.js:68 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 +#: js/share.js:501 msgid "Error" msgstr "Erro" +#: js/share.js:103 +msgid "Error while sharing" +msgstr "" + +#: js/share.js:114 +msgid "Error while unsharing" +msgstr "" + +#: js/share.js:121 +msgid "Error while changing permissions" +msgstr "" + +#: js/share.js:130 +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" +msgstr "" + +#: js/share.js:132 +msgid "Shared with you by" +msgstr "" + +#: js/share.js:137 +msgid "Share with" +msgstr "" + +#: js/share.js:142 +msgid "Share with link" +msgstr "" + +#: js/share.js:143 +msgid "Password protect" +msgstr "" + +#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +msgid "Password" +msgstr "Palavra chave" + +#: js/share.js:152 +msgid "Set expiration date" +msgstr "" + +#: js/share.js:153 +msgid "Expiration date" +msgstr "" + +#: js/share.js:185 +msgid "Share via email:" +msgstr "" + +#: js/share.js:187 +msgid "No people found" +msgstr "" + +#: js/share.js:214 +msgid "Resharing is not allowed" +msgstr "" + +#: js/share.js:250 +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" +msgstr "" + +#: js/share.js:271 +msgid "Unshare" +msgstr "" + +#: js/share.js:279 +msgid "can edit" +msgstr "" + +#: js/share.js:281 +msgid "access control" +msgstr "" + +#: js/share.js:284 +msgid "create" +msgstr "" + +#: js/share.js:287 +msgid "update" +msgstr "" + +#: js/share.js:290 +msgid "delete" +msgstr "" + +#: js/share.js:293 +msgid "share" +msgstr "" + +#: js/share.js:317 js/share.js:476 +msgid "Password protected" +msgstr "" + +#: js/share.js:489 +msgid "Error unsetting expiration date" +msgstr "" + +#: js/share.js:501 +msgid "Error setting expiration date" +msgstr "" + #: lostpassword/index.php:26 msgid "ownCloud password reset" msgstr "Reposição da password ownCloud" @@ -193,10 +306,6 @@ msgstr "Adicionar" msgid "Create an admin account" msgstr "Criar uma conta administrativa" -#: templates/installation.php:30 templates/login.php:13 -msgid "Password" -msgstr "Palavra chave" - #: templates/installation.php:36 msgid "Advanced" msgstr "Avançado" @@ -238,11 +347,11 @@ msgstr "Host da base de dados" msgid "Finish setup" msgstr "Acabar instalação" -#: templates/layout.guest.php:42 +#: templates/layout.guest.php:36 msgid "web services under your control" msgstr "serviços web sob o seu controlo" -#: templates/layout.user.php:45 +#: templates/layout.user.php:34 msgid "Log out" msgstr "Sair" diff --git a/l10n/pt_PT/files.po b/l10n/pt_PT/files.po index 874fc55cb8..0a5a7eb073 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-26 13:19+0200\n" +"PO-Revision-Date: 2012-09-26 11:20+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -62,39 +62,43 @@ msgstr "" msgid "Delete" msgstr "Apagar" -#: js/filelist.js:186 js/filelist.js:188 +#: js/fileactions.js:182 +msgid "Rename" +msgstr "" + +#: js/filelist.js:190 js/filelist.js:192 msgid "already exists" msgstr "Já existe" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "replace" msgstr "substituir" -#: js/filelist.js:186 +#: js/filelist.js:190 msgid "suggest name" msgstr "" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "cancel" msgstr "cancelar" -#: js/filelist.js:235 js/filelist.js:237 +#: js/filelist.js:239 js/filelist.js:241 msgid "replaced" msgstr "substituido" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:239 js/filelist.js:241 js/filelist.js:273 js/filelist.js:275 msgid "undo" msgstr "desfazer" -#: js/filelist.js:237 +#: js/filelist.js:241 msgid "with" msgstr "com" -#: js/filelist.js:268 +#: js/filelist.js:273 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:275 msgid "deleted" msgstr "apagado" @@ -110,47 +114,107 @@ msgstr "Não é possivel fazer o upload do ficheiro devido a ser uma pasta ou te msgid "Upload Error" msgstr "Erro no upload" -#: js/files.js:236 js/files.js:341 js/files.js:370 +#: js/files.js:236 js/files.js:341 js/files.js:371 msgid "Pending" msgstr "Pendente" -#: js/files.js:355 +#: js/files.js:256 +msgid "1 file uploading" +msgstr "" + +#: js/files.js:259 js/files.js:304 js/files.js:319 +msgid "files uploading" +msgstr "" + +#: js/files.js:322 js/files.js:355 msgid "Upload cancelled." msgstr "O upload foi cancelado." -#: js/files.js:423 +#: js/files.js:424 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:493 +#: js/files.js:494 msgid "Invalid name, '/' is not allowed." msgstr "nome inválido, '/' não permitido." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:667 +msgid "files scanned" +msgstr "" + +#: js/files.js:675 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:48 +msgid "Name" +msgstr "Nome" + +#: js/files.js:749 templates/index.php:56 msgid "Size" msgstr "Tamanho" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:750 templates/index.php:58 msgid "Modified" msgstr "Modificado" -#: js/files.js:774 +#: js/files.js:777 msgid "folder" msgstr "pasta" -#: js/files.js:776 +#: js/files.js:779 msgid "folders" msgstr "pastas" -#: js/files.js:784 +#: js/files.js:787 msgid "file" msgstr "ficheiro" -#: js/files.js:786 +#: js/files.js:789 msgid "files" msgstr "ficheiros" +#: js/files.js:833 +msgid "seconds ago" +msgstr "" + +#: js/files.js:834 +msgid "minute ago" +msgstr "" + +#: js/files.js:835 +msgid "minutes ago" +msgstr "" + +#: js/files.js:838 +msgid "today" +msgstr "" + +#: js/files.js:839 +msgid "yesterday" +msgstr "" + +#: js/files.js:840 +msgid "days ago" +msgstr "" + +#: js/files.js:841 +msgid "last month" +msgstr "" + +#: js/files.js:843 +msgid "months ago" +msgstr "" + +#: js/files.js:844 +msgid "last year" +msgstr "" + +#: js/files.js:845 +msgid "years ago" +msgstr "" + #: templates/admin.php:5 msgid "File handling" msgstr "Manuseamento de ficheiros" @@ -199,7 +263,7 @@ msgstr "Pasta" msgid "From url" msgstr "Do endereço" -#: templates/index.php:21 +#: templates/index.php:20 msgid "Upload" msgstr "Enviar" @@ -211,10 +275,6 @@ msgstr "Cancelar upload" msgid "Nothing in here. Upload something!" msgstr "Vazio. Envia alguma coisa!" -#: templates/index.php:48 -msgid "Name" -msgstr "Nome" - #: templates/index.php:50 msgid "Share" msgstr "Partilhar" diff --git a/l10n/pt_PT/files_encryption.po b/l10n/pt_PT/files_encryption.po index ea24c46071..803037caf4 100644 --- a/l10n/pt_PT/files_encryption.po +++ b/l10n/pt_PT/files_encryption.po @@ -3,32 +3,33 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Duarte Velez Grilo , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:33+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-27 02:01+0200\n" +"PO-Revision-Date: 2012-09-26 13:24+0000\n" +"Last-Translator: Duarte Velez Grilo \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: pt_PT\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/settings.php:3 msgid "Encryption" -msgstr "" +msgstr "Encriptação" #: templates/settings.php:4 msgid "Exclude the following file types from encryption" -msgstr "" +msgstr "Excluir da encriptação os seguintes tipo de ficheiros" #: templates/settings.php:5 msgid "None" -msgstr "" +msgstr "Nenhum" #: templates/settings.php:10 msgid "Enable Encryption" -msgstr "" +msgstr "Activar Encriptação" diff --git a/l10n/pt_PT/files_external.po b/l10n/pt_PT/files_external.po index b0c55a3de6..bac559da63 100644 --- a/l10n/pt_PT/files_external.po +++ b/l10n/pt_PT/files_external.po @@ -3,19 +3,20 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Duarte Velez Grilo , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:34+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-27 02:01+0200\n" +"PO-Revision-Date: 2012-09-26 13:10+0000\n" +"Last-Translator: Duarte Velez Grilo \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: pt_PT\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/settings.php:3 msgid "External Storage" @@ -31,15 +32,15 @@ msgstr "" #: templates/settings.php:9 msgid "Configuration" -msgstr "" +msgstr "Configuração" #: templates/settings.php:10 msgid "Options" -msgstr "" +msgstr "Opções" #: templates/settings.php:11 msgid "Applicable" -msgstr "" +msgstr "Aplicável" #: templates/settings.php:23 msgid "Add mount point" @@ -51,32 +52,32 @@ msgstr "" #: templates/settings.php:63 msgid "All Users" -msgstr "" +msgstr "Todos os utilizadores" #: templates/settings.php:64 msgid "Groups" -msgstr "" +msgstr "Grupos" #: templates/settings.php:69 msgid "Users" -msgstr "" +msgstr "Utilizadores" -#: templates/settings.php:77 templates/settings.php:96 +#: templates/settings.php:77 templates/settings.php:107 msgid "Delete" -msgstr "" +msgstr "Apagar" -#: templates/settings.php:88 -msgid "SSL root certificates" -msgstr "" - -#: templates/settings.php:102 -msgid "Import Root Certificate" -msgstr "" - -#: templates/settings.php:108 +#: templates/settings.php:87 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:109 +#: templates/settings.php:88 msgid "Allow users to mount their own external storage" msgstr "" + +#: templates/settings.php:99 +msgid "SSL root certificates" +msgstr "" + +#: templates/settings.php:113 +msgid "Import Root Certificate" +msgstr "Importar Certificado Root" diff --git a/l10n/pt_PT/files_sharing.po b/l10n/pt_PT/files_sharing.po index 99b0c7c215..a593fe89b5 100644 --- a/l10n/pt_PT/files_sharing.po +++ b/l10n/pt_PT/files_sharing.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:04+0000\n" +"POT-Creation-Date: 2012-09-22 01:14+0200\n" +"PO-Revision-Date: 2012-09-21 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: pt_PT\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 msgid "Password" @@ -25,14 +25,24 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 templates/public.php:19 +#: templates/public.php:9 +#, php-format +msgid "%s shared the folder %s with you" +msgstr "" + +#: templates/public.php:11 +#, php-format +msgid "%s shared the file %s with you" +msgstr "" + +#: templates/public.php:14 templates/public.php:30 msgid "Download" msgstr "" -#: templates/public.php:18 +#: templates/public.php:29 msgid "No preview available for" msgstr "" -#: templates/public.php:23 +#: templates/public.php:37 msgid "web services under your control" msgstr "" diff --git a/l10n/pt_PT/files_versions.po b/l10n/pt_PT/files_versions.po index f4b82dc62c..4da2f774a1 100644 --- a/l10n/pt_PT/files_versions.po +++ b/l10n/pt_PT/files_versions.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Duarte Velez Grilo , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" -"PO-Revision-Date: 2012-09-17 00:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-27 02:01+0200\n" +"PO-Revision-Date: 2012-09-26 13:15+0000\n" +"Last-Translator: Duarte Velez Grilo \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,15 +20,19 @@ msgstr "" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" -msgstr "" +msgstr "Expirar todas as versões" + +#: js/versions.js:16 +msgid "History" +msgstr "Histórico" #: templates/settings-personal.php:4 msgid "Versions" -msgstr "" +msgstr "Versões" #: templates/settings-personal.php:7 msgid "This will delete all existing backup versions of your files" -msgstr "" +msgstr "Isto irá apagar todas as versões de backup do seus ficheiros" #: templates/settings.php:3 msgid "Files Versioning" @@ -35,4 +40,4 @@ msgstr "" #: templates/settings.php:4 msgid "Enable" -msgstr "" +msgstr "Activar" diff --git a/l10n/pt_PT/settings.po b/l10n/pt_PT/settings.po index 1ed27b86f7..f81755fd9c 100644 --- a/l10n/pt_PT/settings.po +++ b/l10n/pt_PT/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:03+0200\n" -"PO-Revision-Date: 2012-09-17 00:03+0000\n" +"POT-Creation-Date: 2012-09-19 02:02+0200\n" +"PO-Revision-Date: 2012-09-19 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -37,7 +37,7 @@ msgstr "" msgid "Unable to add group" msgstr "" -#: ajax/enableapp.php:13 +#: ajax/enableapp.php:14 msgid "Could not enable app. " msgstr "" @@ -79,15 +79,11 @@ msgstr "" msgid "Unable to remove user from group %s" msgstr "" -#: js/apps.js:18 -msgid "Error" -msgstr "Erro" - -#: js/apps.js:39 js/apps.js:73 +#: js/apps.js:27 js/apps.js:61 msgid "Disable" msgstr "Desativar" -#: js/apps.js:39 js/apps.js:62 +#: js/apps.js:27 js/apps.js:50 msgid "Enable" msgstr "Ativar" @@ -227,12 +223,9 @@ msgid "Answer" msgstr "Resposta" #: templates/personal.php:8 -msgid "You use" -msgstr "Está a usar" - -#: templates/personal.php:8 -msgid "of the available" -msgstr "do disponível" +#, php-format +msgid "You have used %s of the available %s" +msgstr "" #: templates/personal.php:12 msgid "Desktop and Mobile Syncing Clients" @@ -243,8 +236,8 @@ msgid "Download" msgstr "Transferir" #: templates/personal.php:19 -msgid "Your password got changed" -msgstr "A sua palavra-chave foi alterada" +msgid "Your password was changed" +msgstr "" #: templates/personal.php:20 msgid "Unable to change your password" diff --git a/l10n/ro/core.po b/l10n/ro/core.po index 42e779595e..48c69f2447 100644 --- a/l10n/ro/core.po +++ b/l10n/ro/core.po @@ -6,12 +6,13 @@ # Claudiu , 2011, 2012. # Dimon Pockemon <>, 2012. # Eugen Mihalache , 2012. +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -32,82 +33,195 @@ msgstr "Nici o categorie de adăugat?" msgid "This category already exists: " msgstr "Această categorie deja există:" -#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Configurări" -#: js/js.js:593 +#: js/js.js:645 msgid "January" -msgstr "" +msgstr "Ianuarie" -#: js/js.js:593 +#: js/js.js:645 msgid "February" -msgstr "" +msgstr "Februarie" -#: js/js.js:593 +#: js/js.js:645 msgid "March" -msgstr "" +msgstr "Martie" -#: js/js.js:593 +#: js/js.js:645 msgid "April" -msgstr "" +msgstr "Aprilie" -#: js/js.js:593 +#: js/js.js:645 msgid "May" -msgstr "" +msgstr "Mai" -#: js/js.js:593 +#: js/js.js:645 msgid "June" -msgstr "" +msgstr "Iunie" -#: js/js.js:594 +#: js/js.js:646 msgid "July" -msgstr "" +msgstr "Iulie" -#: js/js.js:594 +#: js/js.js:646 msgid "August" -msgstr "" +msgstr "August" -#: js/js.js:594 +#: js/js.js:646 msgid "September" -msgstr "" +msgstr "Septembrie" -#: js/js.js:594 +#: js/js.js:646 msgid "October" -msgstr "" +msgstr "Octombrie" -#: js/js.js:594 +#: js/js.js:646 msgid "November" -msgstr "" +msgstr "Noiembrie" -#: js/js.js:594 +#: js/js.js:646 msgid "December" -msgstr "" +msgstr "Decembrie" + +#: js/oc-dialogs.js:123 +msgid "Choose" +msgstr "Alege" #: js/oc-dialogs.js:143 js/oc-dialogs.js:163 msgid "Cancel" -msgstr "" +msgstr "Anulare" #: js/oc-dialogs.js:159 msgid "No" -msgstr "" +msgstr "Nu" #: js/oc-dialogs.js:160 msgid "Yes" -msgstr "" +msgstr "Da" #: js/oc-dialogs.js:177 msgid "Ok" -msgstr "" +msgstr "Ok" #: js/oc-vcategories.js:68 msgid "No categories selected for deletion." +msgstr "Nici o categorie selectată pentru ștergere." + +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 +#: js/share.js:501 +msgid "Error" +msgstr "Eroare" + +#: js/share.js:103 +msgid "Error while sharing" +msgstr "Eroare la partajare" + +#: js/share.js:114 +msgid "Error while unsharing" +msgstr "Eroare la anularea partajării" + +#: js/share.js:121 +msgid "Error while changing permissions" +msgstr "Eroare la modificarea permisiunilor" + +#: js/share.js:130 +msgid "Shared with you and the group" msgstr "" -#: js/oc-vcategories.js:68 -msgid "Error" +#: js/share.js:130 +msgid "by" msgstr "" +#: js/share.js:132 +msgid "Shared with you by" +msgstr "" + +#: js/share.js:137 +msgid "Share with" +msgstr "Partajat cu" + +#: js/share.js:142 +msgid "Share with link" +msgstr "Partajare cu legătură" + +#: js/share.js:143 +msgid "Password protect" +msgstr "Protejare cu parolă" + +#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +msgid "Password" +msgstr "Parola" + +#: js/share.js:152 +msgid "Set expiration date" +msgstr "Specifică data expirării" + +#: js/share.js:153 +msgid "Expiration date" +msgstr "Data expirării" + +#: js/share.js:185 +msgid "Share via email:" +msgstr "" + +#: js/share.js:187 +msgid "No people found" +msgstr "Nici o persoană găsită" + +#: js/share.js:214 +msgid "Resharing is not allowed" +msgstr "Repartajarea nu este permisă" + +#: js/share.js:250 +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" +msgstr "" + +#: js/share.js:271 +msgid "Unshare" +msgstr "Anulare partajare" + +#: js/share.js:279 +msgid "can edit" +msgstr "poate edita" + +#: js/share.js:281 +msgid "access control" +msgstr "control acces" + +#: js/share.js:284 +msgid "create" +msgstr "creare" + +#: js/share.js:287 +msgid "update" +msgstr "actualizare" + +#: js/share.js:290 +msgid "delete" +msgstr "ștergere" + +#: js/share.js:293 +msgid "share" +msgstr "partajare" + +#: js/share.js:317 js/share.js:476 +msgid "Password protected" +msgstr "Protejare cu parolă" + +#: js/share.js:489 +msgid "Error unsetting expiration date" +msgstr "Eroare la anularea datei de expirare" + +#: js/share.js:501 +msgid "Error setting expiration date" +msgstr "Eroare la specificarea datei de expirare" + #: lostpassword/index.php:26 msgid "ownCloud password reset" msgstr "Resetarea parolei ownCloud " @@ -193,10 +307,6 @@ msgstr "Adaugă" msgid "Create an admin account" msgstr "Crează un cont de administrator" -#: templates/installation.php:30 templates/login.php:13 -msgid "Password" -msgstr "Parola" - #: templates/installation.php:36 msgid "Advanced" msgstr "Avansat" @@ -228,7 +338,7 @@ msgstr "Numele bazei de date" #: templates/installation.php:109 msgid "Database tablespace" -msgstr "" +msgstr "Tabela de spațiu a bazei de date" #: templates/installation.php:115 msgid "Database host" @@ -238,11 +348,11 @@ msgstr "Bază date" msgid "Finish setup" msgstr "Finalizează instalarea" -#: templates/layout.guest.php:42 +#: templates/layout.guest.php:36 msgid "web services under your control" msgstr "servicii web controlate de tine" -#: templates/layout.user.php:45 +#: templates/layout.user.php:34 msgid "Log out" msgstr "Ieșire" diff --git a/l10n/ro/files.po b/l10n/ro/files.po index a1551d7f5c..ebc77fb07b 100644 --- a/l10n/ro/files.po +++ b/l10n/ro/files.po @@ -6,13 +6,14 @@ # Claudiu , 2011, 2012. # Dimon Pockemon <>, 2012. # Eugen Mihalache , 2012. +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-27 02:01+0200\n" +"PO-Revision-Date: 2012-09-26 13:07+0000\n" +"Last-Translator: g.ciprian \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -56,100 +57,164 @@ msgstr "Fișiere" #: js/fileactions.js:108 templates/index.php:62 msgid "Unshare" -msgstr "" +msgstr "Anulează partajarea" #: js/fileactions.js:110 templates/index.php:64 msgid "Delete" msgstr "Șterge" -#: js/filelist.js:186 js/filelist.js:188 +#: js/fileactions.js:182 +msgid "Rename" +msgstr "Redenumire" + +#: js/filelist.js:190 js/filelist.js:192 msgid "already exists" -msgstr "" +msgstr "deja există" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "replace" -msgstr "" +msgstr "înlocuire" -#: js/filelist.js:186 +#: js/filelist.js:190 msgid "suggest name" -msgstr "" +msgstr "sugerează nume" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "cancel" -msgstr "" +msgstr "anulare" -#: js/filelist.js:235 js/filelist.js:237 +#: js/filelist.js:239 js/filelist.js:241 msgid "replaced" -msgstr "" +msgstr "înlocuit" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:239 js/filelist.js:241 js/filelist.js:273 js/filelist.js:275 msgid "undo" -msgstr "" +msgstr "Anulează ultima acțiune" -#: js/filelist.js:237 +#: js/filelist.js:241 msgid "with" -msgstr "" +msgstr "cu" -#: js/filelist.js:268 +#: js/filelist.js:273 msgid "unshared" -msgstr "" +msgstr "nepartajat" -#: js/filelist.js:270 +#: js/filelist.js:275 msgid "deleted" -msgstr "" +msgstr "șters" #: js/files.js:179 msgid "generating ZIP-file, it may take some time." -msgstr "" +msgstr "se generază fișierul ZIP, va dura ceva timp." #: js/files.js:208 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "" +msgstr "Nu s-a putut încărca fișierul tău deoarece pare să fie un director sau are 0 bytes." #: js/files.js:208 msgid "Upload Error" -msgstr "" +msgstr "Eroare la încărcare" -#: js/files.js:236 js/files.js:341 js/files.js:370 +#: js/files.js:236 js/files.js:341 js/files.js:371 msgid "Pending" -msgstr "" +msgstr "În așteptare" -#: js/files.js:355 +#: js/files.js:256 +msgid "1 file uploading" +msgstr "un fișier se încarcă" + +#: js/files.js:259 js/files.js:304 js/files.js:319 +msgid "files uploading" +msgstr "fișiere se încarcă" + +#: js/files.js:322 js/files.js:355 msgid "Upload cancelled." -msgstr "" +msgstr "Încărcare anulată." -#: js/files.js:423 +#: js/files.js:424 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "" +msgstr "Fișierul este în curs de încărcare. Părăsirea paginii va întrerupe încărcarea." -#: js/files.js:493 +#: js/files.js:494 msgid "Invalid name, '/' is not allowed." -msgstr "" +msgstr "Nume invalid, '/' nu este permis." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:668 +msgid "files scanned" +msgstr "fișiere scanate" + +#: js/files.js:676 +msgid "error while scanning" +msgstr "eroare la scanarea" + +#: js/files.js:749 templates/index.php:48 +msgid "Name" +msgstr "Nume" + +#: js/files.js:750 templates/index.php:56 msgid "Size" msgstr "Dimensiune" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:751 templates/index.php:58 msgid "Modified" msgstr "Modificat" -#: js/files.js:774 +#: js/files.js:778 msgid "folder" -msgstr "" +msgstr "director" -#: js/files.js:776 +#: js/files.js:780 msgid "folders" -msgstr "" +msgstr "directoare" -#: js/files.js:784 +#: js/files.js:788 msgid "file" -msgstr "" +msgstr "fișier" -#: js/files.js:786 +#: js/files.js:790 msgid "files" -msgstr "" +msgstr "fișiere" + +#: js/files.js:834 +msgid "seconds ago" +msgstr "secunde în urmă" + +#: js/files.js:835 +msgid "minute ago" +msgstr "minut în urmă" + +#: js/files.js:836 +msgid "minutes ago" +msgstr "minute în urmă" + +#: js/files.js:839 +msgid "today" +msgstr "astăzi" + +#: js/files.js:840 +msgid "yesterday" +msgstr "ieri" + +#: js/files.js:841 +msgid "days ago" +msgstr "zile în urmă" + +#: js/files.js:842 +msgid "last month" +msgstr "ultima lună" + +#: js/files.js:844 +msgid "months ago" +msgstr "luni în urmă" + +#: js/files.js:845 +msgid "last year" +msgstr "ultimul an" + +#: js/files.js:846 +msgid "years ago" +msgstr "ani în urmă" #: templates/admin.php:5 msgid "File handling" @@ -181,7 +246,7 @@ msgstr "Dimensiunea maximă de intrare pentru fișiere compresate" #: templates/admin.php:14 msgid "Save" -msgstr "" +msgstr "Salvare" #: templates/index.php:7 msgid "New" @@ -199,7 +264,7 @@ msgstr "Dosar" msgid "From url" msgstr "De la URL" -#: templates/index.php:21 +#: templates/index.php:20 msgid "Upload" msgstr "Încarcă" @@ -211,10 +276,6 @@ msgstr "Anulează încărcarea" msgid "Nothing in here. Upload something!" msgstr "Nimic aici. Încarcă ceva!" -#: templates/index.php:48 -msgid "Name" -msgstr "Nume" - #: templates/index.php:50 msgid "Share" msgstr "Partajează" diff --git a/l10n/ro/files_encryption.po b/l10n/ro/files_encryption.po index f042cb49fc..2c3a3ed30b 100644 --- a/l10n/ro/files_encryption.po +++ b/l10n/ro/files_encryption.po @@ -3,32 +3,33 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:33+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-19 02:02+0200\n" +"PO-Revision-Date: 2012-09-18 11:31+0000\n" +"Last-Translator: g.ciprian \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ro\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1))\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" #: templates/settings.php:3 msgid "Encryption" -msgstr "" +msgstr "Încriptare" #: templates/settings.php:4 msgid "Exclude the following file types from encryption" -msgstr "" +msgstr "Exclude următoarele tipuri de fișiere de la încriptare" #: templates/settings.php:5 msgid "None" -msgstr "" +msgstr "Niciuna" #: templates/settings.php:10 msgid "Enable Encryption" -msgstr "" +msgstr "Activare încriptare" diff --git a/l10n/ro/files_external.po b/l10n/ro/files_external.po index 6b9e6f0955..17931832c6 100644 --- a/l10n/ro/files_external.po +++ b/l10n/ro/files_external.po @@ -3,80 +3,81 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:34+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-19 02:02+0200\n" +"PO-Revision-Date: 2012-09-18 12:38+0000\n" +"Last-Translator: g.ciprian \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ro\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1))\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" #: templates/settings.php:3 msgid "External Storage" -msgstr "" +msgstr "Stocare externă" #: templates/settings.php:7 templates/settings.php:19 msgid "Mount point" -msgstr "" +msgstr "Punctul de montare" #: templates/settings.php:8 msgid "Backend" -msgstr "" +msgstr "Backend" #: templates/settings.php:9 msgid "Configuration" -msgstr "" +msgstr "Configurație" #: templates/settings.php:10 msgid "Options" -msgstr "" +msgstr "Opțiuni" #: templates/settings.php:11 msgid "Applicable" -msgstr "" +msgstr "Aplicabil" #: templates/settings.php:23 msgid "Add mount point" -msgstr "" +msgstr "Adaugă punct de montare" #: templates/settings.php:54 templates/settings.php:62 msgid "None set" -msgstr "" +msgstr "Niciunul" #: templates/settings.php:63 msgid "All Users" -msgstr "" +msgstr "Toți utilizatorii" #: templates/settings.php:64 msgid "Groups" -msgstr "" +msgstr "Grupuri" #: templates/settings.php:69 msgid "Users" -msgstr "" +msgstr "Utilizatori" #: templates/settings.php:77 templates/settings.php:96 msgid "Delete" -msgstr "" +msgstr "Șterge" #: templates/settings.php:88 msgid "SSL root certificates" -msgstr "" +msgstr "Certificate SSL root" #: templates/settings.php:102 msgid "Import Root Certificate" -msgstr "" +msgstr "Importă certificat root" #: templates/settings.php:108 msgid "Enable User External Storage" -msgstr "" +msgstr "Permite stocare externă pentru utilizatori" #: templates/settings.php:109 msgid "Allow users to mount their own external storage" -msgstr "" +msgstr "Permite utilizatorilor să monteze stocare externă proprie" diff --git a/l10n/ro/files_sharing.po b/l10n/ro/files_sharing.po index 6772dfc57a..7966d650da 100644 --- a/l10n/ro/files_sharing.po +++ b/l10n/ro/files_sharing.po @@ -3,36 +3,47 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-27 02:01+0200\n" +"PO-Revision-Date: 2012-09-26 13:27+0000\n" +"Last-Translator: g.ciprian \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ro\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1))\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" #: templates/authenticate.php:4 msgid "Password" -msgstr "" +msgstr "Parolă" #: templates/authenticate.php:6 msgid "Submit" -msgstr "" +msgstr "Trimite" -#: templates/public.php:9 templates/public.php:19 +#: templates/public.php:9 +#, php-format +msgid "%s shared the folder %s with you" +msgstr "%s a partajat directorul %s cu tine" + +#: templates/public.php:11 +#, php-format +msgid "%s shared the file %s with you" +msgstr "%s a partajat fișierul %s cu tine" + +#: templates/public.php:14 templates/public.php:30 msgid "Download" -msgstr "" +msgstr "Descarcă" -#: templates/public.php:18 +#: templates/public.php:29 msgid "No preview available for" -msgstr "" +msgstr "Nici o previzualizare disponibilă pentru " -#: templates/public.php:23 +#: templates/public.php:37 msgid "web services under your control" -msgstr "" +msgstr "servicii web controlate de tine" diff --git a/l10n/ro/files_versions.po b/l10n/ro/files_versions.po index c972244652..d3058eb6ed 100644 --- a/l10n/ro/files_versions.po +++ b/l10n/ro/files_versions.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" -"PO-Revision-Date: 2012-09-17 00:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-27 02:01+0200\n" +"PO-Revision-Date: 2012-09-26 13:05+0000\n" +"Last-Translator: g.ciprian \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,20 +20,24 @@ msgstr "" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" -msgstr "" +msgstr "Expiră toate versiunile" + +#: js/versions.js:16 +msgid "History" +msgstr "Istoric" #: templates/settings-personal.php:4 msgid "Versions" -msgstr "" +msgstr "Versiuni" #: templates/settings-personal.php:7 msgid "This will delete all existing backup versions of your files" -msgstr "" +msgstr "Această acțiune va șterge toate versiunile salvate ale fișierelor tale" #: templates/settings.php:3 msgid "Files Versioning" -msgstr "" +msgstr "Versionare fișiere" #: templates/settings.php:4 msgid "Enable" -msgstr "" +msgstr "Activare" diff --git a/l10n/ro/lib.po b/l10n/ro/lib.po index 1c5698fa22..d9b2796cc9 100644 --- a/l10n/ro/lib.po +++ b/l10n/ro/lib.po @@ -3,123 +3,124 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-09-01 00:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-19 02:02+0200\n" +"PO-Revision-Date: 2012-09-18 12:54+0000\n" +"Last-Translator: g.ciprian \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ro\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1))\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" -#: app.php:288 +#: app.php:285 msgid "Help" -msgstr "" +msgstr "Ajutor" -#: app.php:295 +#: app.php:292 msgid "Personal" -msgstr "" +msgstr "Personal" -#: app.php:300 +#: app.php:297 msgid "Settings" -msgstr "" +msgstr "Setări" -#: app.php:305 +#: app.php:302 msgid "Users" -msgstr "" +msgstr "Utilizatori" -#: app.php:312 +#: app.php:309 msgid "Apps" -msgstr "" +msgstr "Aplicații" -#: app.php:314 +#: app.php:311 msgid "Admin" -msgstr "" +msgstr "Admin" #: files.php:280 msgid "ZIP download is turned off." -msgstr "" +msgstr "Descărcarea ZIP este dezactivată." #: files.php:281 msgid "Files need to be downloaded one by one." -msgstr "" +msgstr "Fișierele trebuie descărcate unul câte unul." #: files.php:281 files.php:306 msgid "Back to Files" -msgstr "" +msgstr "Înapoi la fișiere" #: files.php:305 msgid "Selected files too large to generate zip file." -msgstr "" +msgstr "Fișierele selectate sunt prea mari pentru a genera un fișier zip." #: json.php:28 msgid "Application is not enabled" -msgstr "" +msgstr "Aplicația nu este activată" #: json.php:39 json.php:63 json.php:75 msgid "Authentication error" -msgstr "" +msgstr "Eroare la autentificare" #: json.php:51 msgid "Token expired. Please reload page." -msgstr "" - -#: template.php:86 -msgid "seconds ago" -msgstr "" +msgstr "Token expirat. Te rugăm să reîncarci pagina." #: template.php:87 -msgid "1 minute ago" -msgstr "" +msgid "seconds ago" +msgstr "secunde în urmă" #: template.php:88 +msgid "1 minute ago" +msgstr "1 minut în urmă" + +#: template.php:89 #, php-format msgid "%d minutes ago" -msgstr "" - -#: template.php:91 -msgid "today" -msgstr "" +msgstr "%d minute în urmă" #: template.php:92 -msgid "yesterday" -msgstr "" +msgid "today" +msgstr "astăzi" #: template.php:93 -#, php-format -msgid "%d days ago" -msgstr "" +msgid "yesterday" +msgstr "ieri" #: template.php:94 -msgid "last month" -msgstr "" +#, php-format +msgid "%d days ago" +msgstr "%d zile în urmă" #: template.php:95 -msgid "months ago" -msgstr "" +msgid "last month" +msgstr "ultima lună" #: template.php:96 -msgid "last year" -msgstr "" +msgid "months ago" +msgstr "luni în urmă" #: template.php:97 +msgid "last year" +msgstr "ultimul an" + +#: template.php:98 msgid "years ago" -msgstr "" +msgstr "ani în urmă" #: updater.php:66 #, php-format msgid "%s is available. Get more information" -msgstr "" +msgstr "%s este disponibil. Vezi mai multe informații" #: updater.php:68 msgid "up to date" -msgstr "" +msgstr "la zi" #: updater.php:71 msgid "updates check is disabled" -msgstr "" +msgstr "verificarea după actualizări este dezactivată" diff --git a/l10n/ro/settings.po b/l10n/ro/settings.po index bf628a0ea6..b4a1b3932a 100644 --- a/l10n/ro/settings.po +++ b/l10n/ro/settings.po @@ -6,15 +6,16 @@ # Claudiu , 2011, 2012. # Dimon Pockemon <>, 2012. # Eugen Mihalache , 2012. +# , 2012. # , 2012. # , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:03+0200\n" -"PO-Revision-Date: 2012-09-17 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-22 01:14+0200\n" +"PO-Revision-Date: 2012-09-21 08:28+0000\n" +"Last-Translator: g.ciprian \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -33,15 +34,15 @@ msgstr "Eroare de autentificare" #: ajax/creategroup.php:19 msgid "Group already exists" -msgstr "" +msgstr "Grupul există deja" #: ajax/creategroup.php:28 msgid "Unable to add group" -msgstr "" +msgstr "Nu s-a putut adăuga grupul" -#: ajax/enableapp.php:13 +#: ajax/enableapp.php:14 msgid "Could not enable app. " -msgstr "" +msgstr "Nu s-a putut activa aplicația." #: ajax/lostpassword.php:14 msgid "Email saved" @@ -61,11 +62,11 @@ msgstr "Cerere eronată" #: ajax/removegroup.php:16 msgid "Unable to delete group" -msgstr "" +msgstr "Nu s-a putut șterge grupul" #: ajax/removeuser.php:22 msgid "Unable to delete user" -msgstr "" +msgstr "Nu s-a putut șterge utilizatorul" #: ajax/setlanguage.php:18 msgid "Language changed" @@ -74,22 +75,18 @@ msgstr "Limba a fost schimbată" #: ajax/togglegroups.php:25 #, php-format msgid "Unable to add user to group %s" -msgstr "" +msgstr "Nu s-a putut adăuga utilizatorul la grupul %s" #: ajax/togglegroups.php:31 #, php-format msgid "Unable to remove user from group %s" -msgstr "" +msgstr "Nu s-a putut elimina utilizatorul din grupul %s" -#: js/apps.js:18 -msgid "Error" -msgstr "Erroare" - -#: js/apps.js:39 js/apps.js:73 +#: js/apps.js:27 js/apps.js:61 msgid "Disable" msgstr "Dezactivați" -#: js/apps.js:39 js/apps.js:62 +#: js/apps.js:27 js/apps.js:50 msgid "Enable" msgstr "Activați" @@ -112,7 +109,7 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "" +msgstr "Directorul tău de date și fișierele tale probabil sunt accesibile prin internet. Fișierul .htaccess oferit de ownCloud nu funcționează. Îți recomandăm să configurezi server-ul tău web într-un mod în care directorul de date să nu mai fie accesibil sau mută directorul de date în afara directorului root al server-ului web." #: templates/admin.php:31 msgid "Cron" @@ -120,55 +117,55 @@ msgstr "Cron" #: templates/admin.php:37 msgid "Execute one task with each page loaded" -msgstr "" +msgstr "Execută o sarcină la fiecare pagină încărcată" #: templates/admin.php:43 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." -msgstr "" +msgstr "cron.php este înregistrat în serviciul webcron. Accesează pagina cron.php din root-ul owncloud odată pe minut prin http." #: templates/admin.php:49 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "" +msgstr "Folosește serviciul cron al sistemului. Accesează fișierul cron.php din directorul owncloud printr-un cronjob de sistem odată la fiecare minut." #: templates/admin.php:56 msgid "Sharing" -msgstr "" +msgstr "Partajare" #: templates/admin.php:61 msgid "Enable Share API" -msgstr "" +msgstr "Activare API partajare" #: templates/admin.php:62 msgid "Allow apps to use the Share API" -msgstr "" +msgstr "Permite aplicațiilor să folosească API-ul de partajare" #: templates/admin.php:67 msgid "Allow links" -msgstr "" +msgstr "Pemite legături" #: templates/admin.php:68 msgid "Allow users to share items to the public with links" -msgstr "" +msgstr "Permite utilizatorilor să partajeze fișiere în mod public prin legături" #: templates/admin.php:73 msgid "Allow resharing" -msgstr "" +msgstr "Permite repartajarea" #: templates/admin.php:74 msgid "Allow users to share items shared with them again" -msgstr "" +msgstr "Permite utilizatorilor să repartajeze fișiere partajate cu ei" #: templates/admin.php:79 msgid "Allow users to share with anyone" -msgstr "" +msgstr "Permite utilizatorilor să partajeze cu oricine" #: templates/admin.php:81 msgid "Allow users to only share with users in their groups" -msgstr "" +msgstr "Permite utilizatorilor să partajeze doar cu utilizatori din același grup" #: templates/admin.php:88 msgid "Log" @@ -186,7 +183,7 @@ msgid "" "licensed under the AGPL." -msgstr "" +msgstr "Dezvoltat de the comunitatea ownCloud, codul sursă este licențiat sub AGPL." #: templates/apps.php:10 msgid "Add your App" @@ -202,7 +199,7 @@ msgstr "Vizualizează pagina applicației pe apps.owncloud.com" #: templates/apps.php:30 msgid "-licensed by " -msgstr "" +msgstr "-licențiat " #: templates/help.php:9 msgid "Documentation" @@ -229,12 +226,9 @@ msgid "Answer" msgstr "Răspuns" #: templates/personal.php:8 -msgid "You use" -msgstr "Utilizezi" - -#: templates/personal.php:8 -msgid "of the available" -msgstr "din cele diponibile" +#, php-format +msgid "You have used %s of the available %s" +msgstr "Ai utilizat %s din %s spațiu disponibil" #: templates/personal.php:12 msgid "Desktop and Mobile Syncing Clients" @@ -245,8 +239,8 @@ msgid "Download" msgstr "Descărcări" #: templates/personal.php:19 -msgid "Your password got changed" -msgstr "Parola ta s-a schimbat" +msgid "Your password was changed" +msgstr "Parola a fost modificată" #: templates/personal.php:20 msgid "Unable to change your password" diff --git a/l10n/ru/core.po b/l10n/ru/core.po index 303b4ff13f..b76cabfb0f 100644 --- a/l10n/ru/core.po +++ b/l10n/ru/core.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-08 02:02+0200\n" -"PO-Revision-Date: 2012-09-07 10:55+0000\n" -"Last-Translator: VicDeo \n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -34,58 +34,62 @@ msgstr "Нет категорий для добавления?" msgid "This category already exists: " msgstr "Эта категория уже существует: " -#: js/js.js:208 templates/layout.user.php:54 templates/layout.user.php:55 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Настройки" -#: js/js.js:593 +#: js/js.js:645 msgid "January" msgstr "Январь" -#: js/js.js:593 +#: js/js.js:645 msgid "February" msgstr "Февраль" -#: js/js.js:593 +#: js/js.js:645 msgid "March" msgstr "Март" -#: js/js.js:593 +#: js/js.js:645 msgid "April" msgstr "Апрель" -#: js/js.js:593 +#: js/js.js:645 msgid "May" msgstr "Май" -#: js/js.js:593 +#: js/js.js:645 msgid "June" msgstr "Июнь" -#: js/js.js:594 +#: js/js.js:646 msgid "July" msgstr "Июль" -#: js/js.js:594 +#: js/js.js:646 msgid "August" msgstr "Август" -#: js/js.js:594 +#: js/js.js:646 msgid "September" msgstr "Сентябрь" -#: js/js.js:594 +#: js/js.js:646 msgid "October" msgstr "Октябрь" -#: js/js.js:594 +#: js/js.js:646 msgid "November" msgstr "Ноябрь" -#: js/js.js:594 +#: js/js.js:646 msgid "December" msgstr "Декабрь" +#: js/oc-dialogs.js:123 +msgid "Choose" +msgstr "" + #: js/oc-dialogs.js:143 js/oc-dialogs.js:163 msgid "Cancel" msgstr "Отмена" @@ -106,10 +110,119 @@ msgstr "Ок" msgid "No categories selected for deletion." msgstr "Нет категорий для удаления." -#: js/oc-vcategories.js:68 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 +#: js/share.js:501 msgid "Error" msgstr "Ошибка" +#: js/share.js:103 +msgid "Error while sharing" +msgstr "" + +#: js/share.js:114 +msgid "Error while unsharing" +msgstr "" + +#: js/share.js:121 +msgid "Error while changing permissions" +msgstr "" + +#: js/share.js:130 +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" +msgstr "" + +#: js/share.js:132 +msgid "Shared with you by" +msgstr "" + +#: js/share.js:137 +msgid "Share with" +msgstr "" + +#: js/share.js:142 +msgid "Share with link" +msgstr "" + +#: js/share.js:143 +msgid "Password protect" +msgstr "" + +#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +msgid "Password" +msgstr "Пароль" + +#: js/share.js:152 +msgid "Set expiration date" +msgstr "" + +#: js/share.js:153 +msgid "Expiration date" +msgstr "" + +#: js/share.js:185 +msgid "Share via email:" +msgstr "" + +#: js/share.js:187 +msgid "No people found" +msgstr "" + +#: js/share.js:214 +msgid "Resharing is not allowed" +msgstr "" + +#: js/share.js:250 +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" +msgstr "" + +#: js/share.js:271 +msgid "Unshare" +msgstr "" + +#: js/share.js:279 +msgid "can edit" +msgstr "" + +#: js/share.js:281 +msgid "access control" +msgstr "" + +#: js/share.js:284 +msgid "create" +msgstr "" + +#: js/share.js:287 +msgid "update" +msgstr "" + +#: js/share.js:290 +msgid "delete" +msgstr "" + +#: js/share.js:293 +msgid "share" +msgstr "" + +#: js/share.js:317 js/share.js:476 +msgid "Password protected" +msgstr "" + +#: js/share.js:489 +msgid "Error unsetting expiration date" +msgstr "" + +#: js/share.js:501 +msgid "Error setting expiration date" +msgstr "" + #: lostpassword/index.php:26 msgid "ownCloud password reset" msgstr "Сброс пароля " @@ -195,10 +308,6 @@ msgstr "Добавить" msgid "Create an admin account" msgstr "Создать учётную запись администратора" -#: templates/installation.php:30 templates/login.php:13 -msgid "Password" -msgstr "Пароль" - #: templates/installation.php:36 msgid "Advanced" msgstr "Дополнительно" @@ -244,7 +353,7 @@ msgstr "Завершить установку" msgid "web services under your control" msgstr "Сетевые службы под твоим контролем" -#: templates/layout.user.php:39 +#: templates/layout.user.php:34 msgid "Log out" msgstr "Выйти" diff --git a/l10n/ru/files.po b/l10n/ru/files.po index 234fbe404e..e1aaa13211 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-09 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 14:18+0000\n" -"Last-Translator: VicDeo \n" +"POT-Creation-Date: 2012-09-26 13:19+0200\n" +"PO-Revision-Date: 2012-09-26 11:20+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -66,39 +66,43 @@ msgstr "Отменить публикацию" msgid "Delete" msgstr "Удалить" -#: js/filelist.js:186 js/filelist.js:188 +#: js/fileactions.js:182 +msgid "Rename" +msgstr "" + +#: js/filelist.js:190 js/filelist.js:192 msgid "already exists" msgstr "уже существует" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "replace" msgstr "заменить" -#: js/filelist.js:186 +#: js/filelist.js:190 msgid "suggest name" msgstr "предложить название" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "cancel" msgstr "отмена" -#: js/filelist.js:235 js/filelist.js:237 +#: js/filelist.js:239 js/filelist.js:241 msgid "replaced" msgstr "заменён" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:239 js/filelist.js:241 js/filelist.js:273 js/filelist.js:275 msgid "undo" msgstr "отмена" -#: js/filelist.js:237 +#: js/filelist.js:241 msgid "with" msgstr "с" -#: js/filelist.js:268 +#: js/filelist.js:273 msgid "unshared" msgstr "публикация отменена" -#: js/filelist.js:270 +#: js/filelist.js:275 msgid "deleted" msgstr "удален" @@ -114,47 +118,107 @@ msgstr "Не удается загрузить файл размером 0 ба msgid "Upload Error" msgstr "Ошибка загрузки" -#: js/files.js:236 js/files.js:341 js/files.js:370 +#: js/files.js:236 js/files.js:341 js/files.js:371 msgid "Pending" msgstr "Ожидание" -#: js/files.js:355 +#: js/files.js:256 +msgid "1 file uploading" +msgstr "" + +#: js/files.js:259 js/files.js:304 js/files.js:319 +msgid "files uploading" +msgstr "" + +#: js/files.js:322 js/files.js:355 msgid "Upload cancelled." msgstr "Загрузка отменена." -#: js/files.js:423 +#: js/files.js:424 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Файл в процессе загрузки. Покинув страницу вы прервёте загрузку." -#: js/files.js:493 +#: js/files.js:494 msgid "Invalid name, '/' is not allowed." msgstr "Неверное имя, '/' не допускается." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:667 +msgid "files scanned" +msgstr "" + +#: js/files.js:675 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:48 +msgid "Name" +msgstr "Название" + +#: js/files.js:749 templates/index.php:56 msgid "Size" msgstr "Размер" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:750 templates/index.php:58 msgid "Modified" msgstr "Изменён" -#: js/files.js:774 +#: js/files.js:777 msgid "folder" msgstr "папка" -#: js/files.js:776 +#: js/files.js:779 msgid "folders" msgstr "папки" -#: js/files.js:784 +#: js/files.js:787 msgid "file" msgstr "файл" -#: js/files.js:786 +#: js/files.js:789 msgid "files" msgstr "файлы" +#: js/files.js:833 +msgid "seconds ago" +msgstr "" + +#: js/files.js:834 +msgid "minute ago" +msgstr "" + +#: js/files.js:835 +msgid "minutes ago" +msgstr "" + +#: js/files.js:838 +msgid "today" +msgstr "" + +#: js/files.js:839 +msgid "yesterday" +msgstr "" + +#: js/files.js:840 +msgid "days ago" +msgstr "" + +#: js/files.js:841 +msgid "last month" +msgstr "" + +#: js/files.js:843 +msgid "months ago" +msgstr "" + +#: js/files.js:844 +msgid "last year" +msgstr "" + +#: js/files.js:845 +msgid "years ago" +msgstr "" + #: templates/admin.php:5 msgid "File handling" msgstr "Управление файлами" @@ -203,7 +267,7 @@ msgstr "Папка" msgid "From url" msgstr "С url" -#: templates/index.php:21 +#: templates/index.php:20 msgid "Upload" msgstr "Загрузить" @@ -215,10 +279,6 @@ msgstr "Отмена загрузки" msgid "Nothing in here. Upload something!" msgstr "Здесь ничего нет. Загрузите что-нибудь!" -#: templates/index.php:48 -msgid "Name" -msgstr "Название" - #: templates/index.php:50 msgid "Share" msgstr "Опубликовать" diff --git a/l10n/ru/files_sharing.po b/l10n/ru/files_sharing.po index 217d6cdf37..803a4863c4 100644 --- a/l10n/ru/files_sharing.po +++ b/l10n/ru/files_sharing.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-09 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 12:10+0000\n" -"Last-Translator: VicDeo \n" +"POT-Creation-Date: 2012-09-22 01:14+0200\n" +"PO-Revision-Date: 2012-09-21 23:15+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,14 +28,24 @@ msgstr "Пароль" msgid "Submit" msgstr "Отправить" -#: templates/public.php:9 templates/public.php:19 +#: templates/public.php:9 +#, php-format +msgid "%s shared the folder %s with you" +msgstr "" + +#: templates/public.php:11 +#, php-format +msgid "%s shared the file %s with you" +msgstr "" + +#: templates/public.php:14 templates/public.php:30 msgid "Download" msgstr "Скачать" -#: templates/public.php:18 +#: templates/public.php:29 msgid "No preview available for" msgstr "Предпросмотр недоступен для" -#: templates/public.php:25 +#: templates/public.php:37 msgid "web services under your control" msgstr "веб-сервисы под вашим управлением" diff --git a/l10n/ru/files_versions.po b/l10n/ru/files_versions.po index dfa8a12274..4ea65271fb 100644 --- a/l10n/ru/files_versions.po +++ b/l10n/ru/files_versions.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" -"PO-Revision-Date: 2012-09-17 00:04+0000\n" +"POT-Creation-Date: 2012-09-22 01:14+0200\n" +"PO-Revision-Date: 2012-09-21 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -23,6 +23,10 @@ msgstr "" msgid "Expire all versions" msgstr "Просрочить все версии" +#: js/versions.js:16 +msgid "History" +msgstr "" + #: templates/settings-personal.php:4 msgid "Versions" msgstr "Версии" diff --git a/l10n/ru/settings.po b/l10n/ru/settings.po index 58403d5b2f..634c9aa217 100644 --- a/l10n/ru/settings.po +++ b/l10n/ru/settings.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:03+0200\n" -"PO-Revision-Date: 2012-09-17 00:03+0000\n" +"POT-Creation-Date: 2012-09-19 02:02+0200\n" +"PO-Revision-Date: 2012-09-19 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -43,7 +43,7 @@ msgstr "Группа уже существует" msgid "Unable to add group" msgstr "Невозможно добавить группу" -#: ajax/enableapp.php:13 +#: ajax/enableapp.php:14 msgid "Could not enable app. " msgstr "" @@ -85,15 +85,11 @@ msgstr "Невозможно добавить пользователя в гру msgid "Unable to remove user from group %s" msgstr "Невозможно удалить пользователя из группы %s" -#: js/apps.js:18 -msgid "Error" -msgstr "Ошибка" - -#: js/apps.js:39 js/apps.js:73 +#: js/apps.js:27 js/apps.js:61 msgid "Disable" msgstr "Выключить" -#: js/apps.js:39 js/apps.js:62 +#: js/apps.js:27 js/apps.js:50 msgid "Enable" msgstr "Включить" @@ -233,12 +229,9 @@ msgid "Answer" msgstr "Ответ" #: templates/personal.php:8 -msgid "You use" -msgstr "Вы используете" - -#: templates/personal.php:8 -msgid "of the available" -msgstr "из доступных" +#, php-format +msgid "You have used %s of the available %s" +msgstr "" #: templates/personal.php:12 msgid "Desktop and Mobile Syncing Clients" @@ -249,8 +242,8 @@ msgid "Download" msgstr "Загрузка" #: templates/personal.php:19 -msgid "Your password got changed" -msgstr "Ваш пароль был изменён" +msgid "Your password was changed" +msgstr "" #: templates/personal.php:20 msgid "Unable to change your password" diff --git a/l10n/ru_RU/core.po b/l10n/ru_RU/core.po index be63870a07..6b8d6d1268 100644 --- a/l10n/ru_RU/core.po +++ b/l10n/ru_RU/core.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-14 02:01+0200\n" -"PO-Revision-Date: 2012-09-13 12:09+0000\n" -"Last-Translator: AnnaSch \n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,58 +30,62 @@ msgstr "Нет категории для добавления?" msgid "This category already exists: " msgstr "Эта категория уже существует:" -#: js/js.js:214 templates/layout.user.php:54 templates/layout.user.php:55 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Настройки" -#: js/js.js:642 +#: js/js.js:645 msgid "January" msgstr "Январь" -#: js/js.js:642 +#: js/js.js:645 msgid "February" msgstr "Февраль" -#: js/js.js:642 +#: js/js.js:645 msgid "March" msgstr "Март" -#: js/js.js:642 +#: js/js.js:645 msgid "April" msgstr "Апрель" -#: js/js.js:642 +#: js/js.js:645 msgid "May" msgstr "Май" -#: js/js.js:642 +#: js/js.js:645 msgid "June" msgstr "Июнь" -#: js/js.js:643 +#: js/js.js:646 msgid "July" msgstr "Июль" -#: js/js.js:643 +#: js/js.js:646 msgid "August" msgstr "Август" -#: js/js.js:643 +#: js/js.js:646 msgid "September" msgstr "Сентябрь" -#: js/js.js:643 +#: js/js.js:646 msgid "October" msgstr "Октябрь" -#: js/js.js:643 +#: js/js.js:646 msgid "November" msgstr "Ноябрь" -#: js/js.js:643 +#: js/js.js:646 msgid "December" msgstr "Декабрь" +#: js/oc-dialogs.js:123 +msgid "Choose" +msgstr "Выбрать" + #: js/oc-dialogs.js:143 js/oc-dialogs.js:163 msgid "Cancel" msgstr "Отмена" @@ -102,10 +106,119 @@ msgstr "Да" msgid "No categories selected for deletion." msgstr "Нет категорий, выбранных для удаления." -#: js/oc-vcategories.js:68 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 +#: js/share.js:501 msgid "Error" msgstr "Ошибка" +#: js/share.js:103 +msgid "Error while sharing" +msgstr "Ошибка создания общего доступа" + +#: js/share.js:114 +msgid "Error while unsharing" +msgstr "Ошибка отключения общего доступа" + +#: js/share.js:121 +msgid "Error while changing permissions" +msgstr "Ошибка при изменении прав доступа" + +#: js/share.js:130 +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" +msgstr "" + +#: js/share.js:132 +msgid "Shared with you by" +msgstr "" + +#: js/share.js:137 +msgid "Share with" +msgstr "" + +#: js/share.js:142 +msgid "Share with link" +msgstr "" + +#: js/share.js:143 +msgid "Password protect" +msgstr "Защитить паролем" + +#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +msgid "Password" +msgstr "Пароль" + +#: js/share.js:152 +msgid "Set expiration date" +msgstr "" + +#: js/share.js:153 +msgid "Expiration date" +msgstr "" + +#: js/share.js:185 +msgid "Share via email:" +msgstr "" + +#: js/share.js:187 +msgid "No people found" +msgstr "Не найдено людей" + +#: js/share.js:214 +msgid "Resharing is not allowed" +msgstr "" + +#: js/share.js:250 +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" +msgstr "" + +#: js/share.js:271 +msgid "Unshare" +msgstr "Отключить общий доступ" + +#: js/share.js:279 +msgid "can edit" +msgstr "" + +#: js/share.js:281 +msgid "access control" +msgstr "контроль доступа" + +#: js/share.js:284 +msgid "create" +msgstr "создать" + +#: js/share.js:287 +msgid "update" +msgstr "обновить" + +#: js/share.js:290 +msgid "delete" +msgstr "удалить" + +#: js/share.js:293 +msgid "share" +msgstr "сделать общим" + +#: js/share.js:317 js/share.js:476 +msgid "Password protected" +msgstr "" + +#: js/share.js:489 +msgid "Error unsetting expiration date" +msgstr "" + +#: js/share.js:501 +msgid "Error setting expiration date" +msgstr "" + #: lostpassword/index.php:26 msgid "ownCloud password reset" msgstr "Переназначение пароля" @@ -191,10 +304,6 @@ msgstr "Добавить" msgid "Create an admin account" msgstr "Создать admin account" -#: templates/installation.php:30 templates/login.php:13 -msgid "Password" -msgstr "Пароль" - #: templates/installation.php:36 msgid "Advanced" msgstr "Расширенный" @@ -240,7 +349,7 @@ msgstr "Завершение настройки" msgid "web services under your control" msgstr "веб-сервисы под Вашим контролем" -#: templates/layout.user.php:39 +#: templates/layout.user.php:34 msgid "Log out" msgstr "Выйти" diff --git a/l10n/ru_RU/files.po b/l10n/ru_RU/files.po index a3844380e8..767e9967c9 100644 --- a/l10n/ru_RU/files.po +++ b/l10n/ru_RU/files.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-14 02:01+0200\n" -"PO-Revision-Date: 2012-09-13 10:17+0000\n" -"Last-Translator: AnnaSch \n" +"POT-Creation-Date: 2012-09-26 13:19+0200\n" +"PO-Revision-Date: 2012-09-26 11:20+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -60,39 +60,43 @@ msgstr "Скрыть" msgid "Delete" msgstr "Удалить" -#: js/filelist.js:186 js/filelist.js:188 +#: js/fileactions.js:182 +msgid "Rename" +msgstr "" + +#: js/filelist.js:190 js/filelist.js:192 msgid "already exists" msgstr "уже существует" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "replace" msgstr "отмена" -#: js/filelist.js:186 +#: js/filelist.js:190 msgid "suggest name" msgstr "подобрать название" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "cancel" msgstr "отменить" -#: js/filelist.js:235 js/filelist.js:237 +#: js/filelist.js:239 js/filelist.js:241 msgid "replaced" msgstr "заменено" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:239 js/filelist.js:241 js/filelist.js:273 js/filelist.js:275 msgid "undo" msgstr "отменить действие" -#: js/filelist.js:237 +#: js/filelist.js:241 msgid "with" msgstr "с" -#: js/filelist.js:268 +#: js/filelist.js:273 msgid "unshared" msgstr "скрытый" -#: js/filelist.js:270 +#: js/filelist.js:275 msgid "deleted" msgstr "удалено" @@ -108,47 +112,107 @@ msgstr "Невозможно загрузить файл,\n так как он msgid "Upload Error" msgstr "Ошибка загрузки" -#: js/files.js:236 js/files.js:341 js/files.js:370 +#: js/files.js:236 js/files.js:341 js/files.js:371 msgid "Pending" msgstr "Ожидающий решения" -#: js/files.js:355 +#: js/files.js:256 +msgid "1 file uploading" +msgstr "" + +#: js/files.js:259 js/files.js:304 js/files.js:319 +msgid "files uploading" +msgstr "" + +#: js/files.js:322 js/files.js:355 msgid "Upload cancelled." msgstr "Загрузка отменена" -#: js/files.js:423 +#: js/files.js:424 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Процесс загрузки файла. Если покинуть страницу сейчас, загрузка будет отменена." -#: js/files.js:493 +#: js/files.js:494 msgid "Invalid name, '/' is not allowed." msgstr "Неправильное имя, '/' не допускается." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:667 +msgid "files scanned" +msgstr "" + +#: js/files.js:675 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:48 +msgid "Name" +msgstr "Имя" + +#: js/files.js:749 templates/index.php:56 msgid "Size" msgstr "Размер" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:750 templates/index.php:58 msgid "Modified" msgstr "Изменен" -#: js/files.js:774 +#: js/files.js:777 msgid "folder" msgstr "папка" -#: js/files.js:776 +#: js/files.js:779 msgid "folders" msgstr "папки" -#: js/files.js:784 +#: js/files.js:787 msgid "file" msgstr "файл" -#: js/files.js:786 +#: js/files.js:789 msgid "files" msgstr "файлы" +#: js/files.js:833 +msgid "seconds ago" +msgstr "" + +#: js/files.js:834 +msgid "minute ago" +msgstr "" + +#: js/files.js:835 +msgid "minutes ago" +msgstr "" + +#: js/files.js:838 +msgid "today" +msgstr "" + +#: js/files.js:839 +msgid "yesterday" +msgstr "" + +#: js/files.js:840 +msgid "days ago" +msgstr "" + +#: js/files.js:841 +msgid "last month" +msgstr "" + +#: js/files.js:843 +msgid "months ago" +msgstr "" + +#: js/files.js:844 +msgid "last year" +msgstr "" + +#: js/files.js:845 +msgid "years ago" +msgstr "" + #: templates/admin.php:5 msgid "File handling" msgstr "Работа с файлами" @@ -197,7 +261,7 @@ msgstr "Папка" msgid "From url" msgstr "Из url" -#: templates/index.php:21 +#: templates/index.php:20 msgid "Upload" msgstr "Загрузить " @@ -209,10 +273,6 @@ msgstr "Отмена загрузки" msgid "Nothing in here. Upload something!" msgstr "Здесь ничего нет. Загрузите что-нибудь!" -#: templates/index.php:48 -msgid "Name" -msgstr "Имя" - #: templates/index.php:50 msgid "Share" msgstr "Сделать общим" diff --git a/l10n/ru_RU/files_encryption.po b/l10n/ru_RU/files_encryption.po index 852ced02fd..11a6170114 100644 --- a/l10n/ru_RU/files_encryption.po +++ b/l10n/ru_RU/files_encryption.po @@ -3,32 +3,33 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-12 22:33+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-20 02:05+0200\n" +"PO-Revision-Date: 2012-09-19 12:14+0000\n" +"Last-Translator: AnnaSch \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ru_RU\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: templates/settings.php:3 msgid "Encryption" -msgstr "" +msgstr "Шифрование" #: templates/settings.php:4 msgid "Exclude the following file types from encryption" -msgstr "" +msgstr "Исключите следующие типы файлов из шифрования" #: templates/settings.php:5 msgid "None" -msgstr "" +msgstr "Ни один" #: templates/settings.php:10 msgid "Enable Encryption" -msgstr "" +msgstr "Включить шифрование" diff --git a/l10n/ru_RU/files_external.po b/l10n/ru_RU/files_external.po index 8d86942227..225f0f78ff 100644 --- a/l10n/ru_RU/files_external.po +++ b/l10n/ru_RU/files_external.po @@ -3,80 +3,81 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-12 22:34+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-20 02:05+0200\n" +"PO-Revision-Date: 2012-09-19 13:11+0000\n" +"Last-Translator: AnnaSch \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ru_RU\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: templates/settings.php:3 msgid "External Storage" -msgstr "" +msgstr "Внешние системы хранения данных" #: templates/settings.php:7 templates/settings.php:19 msgid "Mount point" -msgstr "" +msgstr "Точка монтирования" #: templates/settings.php:8 msgid "Backend" -msgstr "" +msgstr "Бэкэнд" #: templates/settings.php:9 msgid "Configuration" -msgstr "" +msgstr "Конфигурация" #: templates/settings.php:10 msgid "Options" -msgstr "" +msgstr "Опции" #: templates/settings.php:11 msgid "Applicable" -msgstr "" +msgstr "Применимый" #: templates/settings.php:23 msgid "Add mount point" -msgstr "" +msgstr "Добавить точку монтирования" #: templates/settings.php:54 templates/settings.php:62 msgid "None set" -msgstr "" +msgstr "Не задан" #: templates/settings.php:63 msgid "All Users" -msgstr "" +msgstr "Все пользователи" #: templates/settings.php:64 msgid "Groups" -msgstr "" +msgstr "Группы" #: templates/settings.php:69 msgid "Users" -msgstr "" +msgstr "Пользователи" #: templates/settings.php:77 templates/settings.php:96 msgid "Delete" -msgstr "" +msgstr "Удалить" #: templates/settings.php:88 msgid "SSL root certificates" -msgstr "" +msgstr "Корневые сертификаты SSL" #: templates/settings.php:102 msgid "Import Root Certificate" -msgstr "" +msgstr "Импортировать корневые сертификаты" #: templates/settings.php:108 msgid "Enable User External Storage" -msgstr "" +msgstr "Включить пользовательскую внешнюю систему хранения данных" #: templates/settings.php:109 msgid "Allow users to mount their own external storage" -msgstr "" +msgstr "Разрешить пользователям монтировать их собственную внешнюю систему хранения данных" diff --git a/l10n/ru_RU/files_sharing.po b/l10n/ru_RU/files_sharing.po index 5a793d15d3..bb667a04c5 100644 --- a/l10n/ru_RU/files_sharing.po +++ b/l10n/ru_RU/files_sharing.po @@ -3,36 +3,47 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:04+0000\n" +"POT-Creation-Date: 2012-09-22 01:14+0200\n" +"PO-Revision-Date: 2012-09-21 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ru_RU\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: templates/authenticate.php:4 msgid "Password" -msgstr "" +msgstr "Пароль" #: templates/authenticate.php:6 msgid "Submit" +msgstr "Передать" + +#: templates/public.php:9 +#, php-format +msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:9 templates/public.php:19 +#: templates/public.php:11 +#, php-format +msgid "%s shared the file %s with you" +msgstr "" + +#: templates/public.php:14 templates/public.php:30 msgid "Download" -msgstr "" +msgstr "Загрузка" -#: templates/public.php:18 +#: templates/public.php:29 msgid "No preview available for" -msgstr "" +msgstr "Предварительный просмотр недоступен" -#: templates/public.php:23 +#: templates/public.php:37 msgid "web services under your control" -msgstr "" +msgstr "веб-сервисы под Вашим контролем" diff --git a/l10n/ru_RU/files_versions.po b/l10n/ru_RU/files_versions.po index d48bed5764..e8828a703f 100644 --- a/l10n/ru_RU/files_versions.po +++ b/l10n/ru_RU/files_versions.po @@ -3,12 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" -"PO-Revision-Date: 2012-09-17 00:04+0000\n" +"POT-Creation-Date: 2012-09-22 01:14+0200\n" +"PO-Revision-Date: 2012-09-21 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" @@ -21,18 +22,22 @@ msgstr "" msgid "Expire all versions" msgstr "" +#: js/versions.js:16 +msgid "History" +msgstr "" + #: templates/settings-personal.php:4 msgid "Versions" -msgstr "" +msgstr "Версии" #: templates/settings-personal.php:7 msgid "This will delete all existing backup versions of your files" -msgstr "" +msgstr "Это приведет к удалению всех существующих версий резервной копии ваших файлов" #: templates/settings.php:3 msgid "Files Versioning" -msgstr "" +msgstr "Файлы управления версиями" #: templates/settings.php:4 msgid "Enable" -msgstr "" +msgstr "Включить" diff --git a/l10n/ru_RU/lib.po b/l10n/ru_RU/lib.po index 9b7bced542..006bcb62b0 100644 --- a/l10n/ru_RU/lib.po +++ b/l10n/ru_RU/lib.po @@ -3,43 +3,44 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-09-01 00:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-20 02:05+0200\n" +"PO-Revision-Date: 2012-09-19 12:09+0000\n" +"Last-Translator: AnnaSch \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ru_RU\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: app.php:288 +#: app.php:285 msgid "Help" -msgstr "" +msgstr "Помощь" -#: app.php:295 +#: app.php:292 msgid "Personal" -msgstr "" +msgstr "Персональный" -#: app.php:300 +#: app.php:297 msgid "Settings" -msgstr "" +msgstr "Настройки" -#: app.php:305 +#: app.php:302 msgid "Users" -msgstr "" +msgstr "Пользователи" -#: app.php:312 +#: app.php:309 msgid "Apps" -msgstr "" +msgstr "Приложения" -#: app.php:314 +#: app.php:311 msgid "Admin" -msgstr "" +msgstr "Админ" #: files.php:280 msgid "ZIP download is turned off." @@ -47,79 +48,79 @@ msgstr "" #: files.php:281 msgid "Files need to be downloaded one by one." -msgstr "" +msgstr "Файлы должны быть загружены один за другим." #: files.php:281 files.php:306 msgid "Back to Files" -msgstr "" +msgstr "Обратно к файлам" #: files.php:305 msgid "Selected files too large to generate zip file." -msgstr "" +msgstr "Выбранные файлы слишком велики для генерации zip-архива." #: json.php:28 msgid "Application is not enabled" -msgstr "" +msgstr "Приложение не запущено" #: json.php:39 json.php:63 json.php:75 msgid "Authentication error" -msgstr "" +msgstr "Ошибка аутентификации" #: json.php:51 msgid "Token expired. Please reload page." -msgstr "" - -#: template.php:86 -msgid "seconds ago" -msgstr "" +msgstr "Маркер истек. Пожалуйста, перезагрузите страницу." #: template.php:87 -msgid "1 minute ago" -msgstr "" +msgid "seconds ago" +msgstr "секунд назад" #: template.php:88 +msgid "1 minute ago" +msgstr "1 минуту назад" + +#: template.php:89 #, php-format msgid "%d minutes ago" -msgstr "" - -#: template.php:91 -msgid "today" -msgstr "" +msgstr "%d минут назад" #: template.php:92 -msgid "yesterday" -msgstr "" +msgid "today" +msgstr "сегодня" #: template.php:93 -#, php-format -msgid "%d days ago" -msgstr "" +msgid "yesterday" +msgstr "вчера" #: template.php:94 -msgid "last month" -msgstr "" +#, php-format +msgid "%d days ago" +msgstr "%d дней назад" #: template.php:95 -msgid "months ago" -msgstr "" +msgid "last month" +msgstr "в прошлом месяце" #: template.php:96 -msgid "last year" -msgstr "" +msgid "months ago" +msgstr "месяц назад" #: template.php:97 +msgid "last year" +msgstr "в прошлом году" + +#: template.php:98 msgid "years ago" -msgstr "" +msgstr "год назад" #: updater.php:66 #, php-format msgid "%s is available. Get more information" -msgstr "" +msgstr "%s доступно. Получите more information" #: updater.php:68 msgid "up to date" -msgstr "" +msgstr "до настоящего времени" #: updater.php:71 msgid "updates check is disabled" -msgstr "" +msgstr "Проверка обновлений отключена" diff --git a/l10n/ru_RU/settings.po b/l10n/ru_RU/settings.po index 851ca47160..4a264d59aa 100644 --- a/l10n/ru_RU/settings.po +++ b/l10n/ru_RU/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:03+0200\n" -"PO-Revision-Date: 2012-09-17 00:03+0000\n" +"POT-Creation-Date: 2012-09-19 02:02+0200\n" +"PO-Revision-Date: 2012-09-19 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" @@ -35,9 +35,9 @@ msgstr "Группа уже существует" msgid "Unable to add group" msgstr "Невозможно добавить группу" -#: ajax/enableapp.php:13 +#: ajax/enableapp.php:14 msgid "Could not enable app. " -msgstr "" +msgstr "Не удалось запустить приложение" #: ajax/lostpassword.php:14 msgid "Email saved" @@ -77,15 +77,11 @@ msgstr "Невозможно добавить пользователя в гру msgid "Unable to remove user from group %s" msgstr "Невозможно удалить пользователя из группы %s" -#: js/apps.js:18 -msgid "Error" -msgstr "Ошибка" - -#: js/apps.js:39 js/apps.js:73 +#: js/apps.js:27 js/apps.js:61 msgid "Disable" msgstr "Отключить" -#: js/apps.js:39 js/apps.js:62 +#: js/apps.js:27 js/apps.js:50 msgid "Enable" msgstr "Включить" @@ -108,7 +104,7 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "" +msgstr "Ваш каталог данных и файлы возможно доступны из Интернета. Файл .htaccess, предоставляемый ownCloud, не работает. Мы настоятельно рекомендуем Вам настроить сервер таким образом, чтобы каталог данных был бы больше не доступен, или переместить каталог данных за пределы корневой папки веб-сервера." #: templates/admin.php:31 msgid "Cron" @@ -116,23 +112,23 @@ msgstr "Cron" #: templates/admin.php:37 msgid "Execute one task with each page loaded" -msgstr "" +msgstr "Выполняйте одну задачу на каждой загружаемой странице" #: templates/admin.php:43 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." -msgstr "" +msgstr "cron.php зарегистрирован в службе webcron. Обращайтесь к странице cron.php в корне owncloud раз в минуту по http." #: templates/admin.php:49 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "" +msgstr "Используйте системный сервис cron. Исполняйте файл cron.php в папке owncloud с помощью системы cronjob раз в минуту." #: templates/admin.php:56 msgid "Sharing" -msgstr "" +msgstr "Совместное использование" #: templates/admin.php:61 msgid "Enable Share API" @@ -140,7 +136,7 @@ msgstr "Включить разделяемые API" #: templates/admin.php:62 msgid "Allow apps to use the Share API" -msgstr "" +msgstr "Разрешить приложениям использовать Share API" #: templates/admin.php:67 msgid "Allow links" @@ -152,7 +148,7 @@ msgstr "" #: templates/admin.php:73 msgid "Allow resharing" -msgstr "" +msgstr "Разрешить повторное совместное использование" #: templates/admin.php:74 msgid "Allow users to share items shared with them again" @@ -160,11 +156,11 @@ msgstr "" #: templates/admin.php:79 msgid "Allow users to share with anyone" -msgstr "" +msgstr "Разрешить пользователям разделение с кем-либо" #: templates/admin.php:81 msgid "Allow users to only share with users in their groups" -msgstr "" +msgstr "Разрешить пользователям разделение только с пользователями в их группах" #: templates/admin.php:88 msgid "Log" @@ -182,7 +178,7 @@ msgid "" "licensed under the AGPL." -msgstr "" +msgstr "Разработанный ownCloud community, the source code is licensed under the AGPL." #: templates/apps.php:10 msgid "Add your App" @@ -214,7 +210,7 @@ msgstr "Задать вопрос" #: templates/help.php:23 msgid "Problems connecting to help database." -msgstr "" +msgstr "Проблемы, связанные с разделом Помощь базы данных" #: templates/help.php:24 msgid "Go there manually." @@ -225,12 +221,9 @@ msgid "Answer" msgstr "Ответ" #: templates/personal.php:8 -msgid "You use" -msgstr "Вы используете" - -#: templates/personal.php:8 -msgid "of the available" -msgstr "из доступных" +#, php-format +msgid "You have used %s of the available %s" +msgstr "" #: templates/personal.php:12 msgid "Desktop and Mobile Syncing Clients" @@ -241,8 +234,8 @@ msgid "Download" msgstr "Загрузка" #: templates/personal.php:19 -msgid "Your password got changed" -msgstr "Ваш пароль был изменен" +msgid "Your password was changed" +msgstr "" #: templates/personal.php:20 msgid "Unable to change your password" @@ -314,7 +307,7 @@ msgstr "Другой" #: templates/users.php:80 templates/users.php:112 msgid "Group Admin" -msgstr "" +msgstr "Группа Admin" #: templates/users.php:82 msgid "Quota" diff --git a/l10n/ru_RU/user_ldap.po b/l10n/ru_RU/user_ldap.po index 13c174b780..72760a3543 100644 --- a/l10n/ru_RU/user_ldap.po +++ b/l10n/ru_RU/user_ldap.po @@ -3,32 +3,33 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-22 01:14+0200\n" +"PO-Revision-Date: 2012-09-21 12:37+0000\n" +"Last-Translator: AnnaSch \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ru_RU\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: templates/settings.php:8 msgid "Host" -msgstr "" +msgstr "Хост" #: templates/settings.php:8 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" -msgstr "" +msgstr "Вы можете пропустить протокол, если Вам не требуется SSL. Затем начните с ldaps://" #: templates/settings.php:9 msgid "Base DN" -msgstr "" +msgstr "База DN" #: templates/settings.php:9 msgid "You can specify Base DN for users and groups in the Advanced tab" @@ -36,7 +37,7 @@ msgstr "" #: templates/settings.php:10 msgid "User DN" -msgstr "" +msgstr "DN пользователя" #: templates/settings.php:10 msgid "" @@ -47,11 +48,11 @@ msgstr "" #: templates/settings.php:11 msgid "Password" -msgstr "" +msgstr "Пароль" #: templates/settings.php:11 msgid "For anonymous access, leave DN and Password empty." -msgstr "" +msgstr "Для анонимного доступа оставьте поля DN и пароль пустыми." #: templates/settings.php:12 msgid "User Login Filter" @@ -67,7 +68,7 @@ msgstr "" #: templates/settings.php:12 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" -msgstr "" +msgstr "используйте %%uid заполнитель, например, \"uid=%%uid\"" #: templates/settings.php:13 msgid "User List Filter" @@ -79,11 +80,11 @@ msgstr "" #: templates/settings.php:13 msgid "without any placeholder, e.g. \"objectClass=person\"." -msgstr "" +msgstr "без каких-либо заполнителей, например, \"objectClass=person\"." #: templates/settings.php:14 msgid "Group Filter" -msgstr "" +msgstr "Групповой фильтр" #: templates/settings.php:14 msgid "Defines the filter to apply, when retrieving groups." @@ -91,11 +92,11 @@ msgstr "" #: templates/settings.php:14 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." -msgstr "" +msgstr "без каких-либо заполнителей, например, \"objectClass=posixGroup\"." #: templates/settings.php:17 msgid "Port" -msgstr "" +msgstr "Порт" #: templates/settings.php:18 msgid "Base User Tree" @@ -111,11 +112,11 @@ msgstr "" #: templates/settings.php:21 msgid "Use TLS" -msgstr "" +msgstr "Использовать TLS" #: templates/settings.php:21 msgid "Do not use it for SSL connections, it will fail." -msgstr "" +msgstr "Не используйте это SSL-соединений, это не будет выполнено." #: templates/settings.php:22 msgid "Case insensitve LDAP server (Windows)" @@ -123,7 +124,7 @@ msgstr "" #: templates/settings.php:23 msgid "Turn off SSL certificate validation." -msgstr "" +msgstr "Выключить проверку сертификата SSL." #: templates/settings.php:23 msgid "" @@ -133,7 +134,7 @@ msgstr "" #: templates/settings.php:23 msgid "Not recommended, use for testing only." -msgstr "" +msgstr "Не рекомендовано, используйте только для тестирования." #: templates/settings.php:24 msgid "User Display Name Field" @@ -141,7 +142,7 @@ msgstr "" #: templates/settings.php:24 msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "" +msgstr "Атрибут LDAP, используемый для создания имени пользователя в ownCloud." #: templates/settings.php:25 msgid "Group Display Name Field" @@ -149,11 +150,11 @@ msgstr "" #: templates/settings.php:25 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "" +msgstr "Атрибут LDAP, используемый для создания группового имени в ownCloud." #: templates/settings.php:27 msgid "in bytes" -msgstr "" +msgstr "в байтах" #: templates/settings.php:29 msgid "in seconds. A change empties the cache." @@ -163,8 +164,8 @@ msgstr "" msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." -msgstr "" +msgstr "Оставьте пустым под имя пользователя (по умолчанию). В противном случае задайте LDAP/AD атрибут." #: templates/settings.php:32 msgid "Help" -msgstr "" +msgstr "Помощь" diff --git a/l10n/sk_SK/core.po b/l10n/sk_SK/core.po index bcdf41a7d2..514dfb07d6 100644 --- a/l10n/sk_SK/core.po +++ b/l10n/sk_SK/core.po @@ -4,13 +4,14 @@ # # Translators: # , 2011, 2012. +# , 2012. # Roman Priesol , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -31,58 +32,62 @@ msgstr "Žiadna kategória pre pridanie?" msgid "This category already exists: " msgstr "Táto kategória už existuje:" -#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Nastavenia" -#: js/js.js:593 +#: js/js.js:645 msgid "January" msgstr "Január" -#: js/js.js:593 +#: js/js.js:645 msgid "February" msgstr "Február" -#: js/js.js:593 +#: js/js.js:645 msgid "March" msgstr "Marec" -#: js/js.js:593 +#: js/js.js:645 msgid "April" msgstr "Apríl" -#: js/js.js:593 +#: js/js.js:645 msgid "May" msgstr "Máj" -#: js/js.js:593 +#: js/js.js:645 msgid "June" msgstr "Jún" -#: js/js.js:594 +#: js/js.js:646 msgid "July" msgstr "Júl" -#: js/js.js:594 +#: js/js.js:646 msgid "August" msgstr "August" -#: js/js.js:594 +#: js/js.js:646 msgid "September" msgstr "September" -#: js/js.js:594 +#: js/js.js:646 msgid "October" msgstr "Október" -#: js/js.js:594 +#: js/js.js:646 msgid "November" msgstr "November" -#: js/js.js:594 +#: js/js.js:646 msgid "December" msgstr "December" +#: js/oc-dialogs.js:123 +msgid "Choose" +msgstr "" + #: js/oc-dialogs.js:143 js/oc-dialogs.js:163 msgid "Cancel" msgstr "Zrušiť" @@ -103,10 +108,119 @@ msgstr "Ok" msgid "No categories selected for deletion." msgstr "Neboli vybrané žiadne kategórie pre odstránenie." -#: js/oc-vcategories.js:68 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 +#: js/share.js:501 msgid "Error" msgstr "Chyba" +#: js/share.js:103 +msgid "Error while sharing" +msgstr "" + +#: js/share.js:114 +msgid "Error while unsharing" +msgstr "" + +#: js/share.js:121 +msgid "Error while changing permissions" +msgstr "" + +#: js/share.js:130 +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" +msgstr "" + +#: js/share.js:132 +msgid "Shared with you by" +msgstr "" + +#: js/share.js:137 +msgid "Share with" +msgstr "" + +#: js/share.js:142 +msgid "Share with link" +msgstr "" + +#: js/share.js:143 +msgid "Password protect" +msgstr "" + +#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +msgid "Password" +msgstr "Heslo" + +#: js/share.js:152 +msgid "Set expiration date" +msgstr "" + +#: js/share.js:153 +msgid "Expiration date" +msgstr "" + +#: js/share.js:185 +msgid "Share via email:" +msgstr "" + +#: js/share.js:187 +msgid "No people found" +msgstr "" + +#: js/share.js:214 +msgid "Resharing is not allowed" +msgstr "" + +#: js/share.js:250 +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" +msgstr "" + +#: js/share.js:271 +msgid "Unshare" +msgstr "" + +#: js/share.js:279 +msgid "can edit" +msgstr "" + +#: js/share.js:281 +msgid "access control" +msgstr "" + +#: js/share.js:284 +msgid "create" +msgstr "" + +#: js/share.js:287 +msgid "update" +msgstr "" + +#: js/share.js:290 +msgid "delete" +msgstr "" + +#: js/share.js:293 +msgid "share" +msgstr "" + +#: js/share.js:317 js/share.js:476 +msgid "Password protected" +msgstr "" + +#: js/share.js:489 +msgid "Error unsetting expiration date" +msgstr "" + +#: js/share.js:501 +msgid "Error setting expiration date" +msgstr "" + #: lostpassword/index.php:26 msgid "ownCloud password reset" msgstr "Obnovenie hesla pre ownCloud" @@ -178,7 +292,7 @@ msgstr "Prístup odmietnutý" #: templates/404.php:12 msgid "Cloud not found" -msgstr "Nedokážem nájsť" +msgstr "Nenájdené" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" @@ -192,10 +306,6 @@ msgstr "Pridať" msgid "Create an admin account" msgstr "Vytvoriť administrátorský účet" -#: templates/installation.php:30 templates/login.php:13 -msgid "Password" -msgstr "Heslo" - #: templates/installation.php:36 msgid "Advanced" msgstr "Pokročilé" @@ -237,11 +347,11 @@ msgstr "Server databázy" msgid "Finish setup" msgstr "Dokončiť inštaláciu" -#: templates/layout.guest.php:42 +#: templates/layout.guest.php:36 msgid "web services under your control" msgstr "webové služby pod vašou kontrolou" -#: templates/layout.user.php:45 +#: templates/layout.user.php:34 msgid "Log out" msgstr "Odhlásiť" diff --git a/l10n/sk_SK/files.po b/l10n/sk_SK/files.po index a9285f4547..282acf836c 100644 --- a/l10n/sk_SK/files.po +++ b/l10n/sk_SK/files.po @@ -4,13 +4,14 @@ # # Translators: # , 2012. +# , 2012. # Roman Priesol , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-26 13:19+0200\n" +"PO-Revision-Date: 2012-09-26 11:20+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -55,47 +56,51 @@ msgstr "Súbory" #: js/fileactions.js:108 templates/index.php:62 msgid "Unshare" -msgstr "" +msgstr "Nezdielať" #: js/fileactions.js:110 templates/index.php:64 msgid "Delete" msgstr "Odstrániť" -#: js/filelist.js:186 js/filelist.js:188 +#: js/fileactions.js:182 +msgid "Rename" +msgstr "" + +#: js/filelist.js:190 js/filelist.js:192 msgid "already exists" -msgstr "" +msgstr "už existuje" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "replace" -msgstr "" +msgstr "nahradiť" -#: js/filelist.js:186 +#: js/filelist.js:190 msgid "suggest name" -msgstr "" +msgstr "pomôcť s menom" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "cancel" -msgstr "" +msgstr "zrušiť" -#: js/filelist.js:235 js/filelist.js:237 +#: js/filelist.js:239 js/filelist.js:241 msgid "replaced" -msgstr "" +msgstr "zmenené" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:239 js/filelist.js:241 js/filelist.js:273 js/filelist.js:275 msgid "undo" -msgstr "" +msgstr "vrátiť" -#: js/filelist.js:237 +#: js/filelist.js:241 msgid "with" -msgstr "" +msgstr "s" -#: js/filelist.js:268 +#: js/filelist.js:273 msgid "unshared" -msgstr "" +msgstr "zdielané" -#: js/filelist.js:270 +#: js/filelist.js:275 msgid "deleted" -msgstr "" +msgstr "zmazané" #: js/files.js:179 msgid "generating ZIP-file, it may take some time." @@ -109,54 +114,114 @@ msgstr "Nemôžem nahrať súbor lebo je to priečinok alebo má 0 bajtov." msgid "Upload Error" msgstr "Chyba nahrávania" -#: js/files.js:236 js/files.js:341 js/files.js:370 +#: js/files.js:236 js/files.js:341 js/files.js:371 msgid "Pending" msgstr "Čaká sa" -#: js/files.js:355 +#: js/files.js:256 +msgid "1 file uploading" +msgstr "" + +#: js/files.js:259 js/files.js:304 js/files.js:319 +msgid "files uploading" +msgstr "" + +#: js/files.js:322 js/files.js:355 msgid "Upload cancelled." msgstr "Nahrávanie zrušené" -#: js/files.js:423 +#: js/files.js:424 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "" +msgstr "Opustenie stránky zruší práve prebiehajúce odosielanie súboru." -#: js/files.js:493 +#: js/files.js:494 msgid "Invalid name, '/' is not allowed." msgstr "Chybný názov, \"/\" nie je povolené" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:667 +msgid "files scanned" +msgstr "skontrolovaných súborov" + +#: js/files.js:675 +msgid "error while scanning" +msgstr "chyba počas kontroly" + +#: js/files.js:748 templates/index.php:48 +msgid "Name" +msgstr "Meno" + +#: js/files.js:749 templates/index.php:56 msgid "Size" msgstr "Veľkosť" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:750 templates/index.php:58 msgid "Modified" msgstr "Upravené" -#: js/files.js:774 +#: js/files.js:777 msgid "folder" msgstr "priečinok" -#: js/files.js:776 +#: js/files.js:779 msgid "folders" msgstr "priečinky" -#: js/files.js:784 +#: js/files.js:787 msgid "file" msgstr "súbor" -#: js/files.js:786 +#: js/files.js:789 msgid "files" msgstr "súbory" +#: js/files.js:833 +msgid "seconds ago" +msgstr "" + +#: js/files.js:834 +msgid "minute ago" +msgstr "" + +#: js/files.js:835 +msgid "minutes ago" +msgstr "" + +#: js/files.js:838 +msgid "today" +msgstr "" + +#: js/files.js:839 +msgid "yesterday" +msgstr "" + +#: js/files.js:840 +msgid "days ago" +msgstr "" + +#: js/files.js:841 +msgid "last month" +msgstr "" + +#: js/files.js:843 +msgid "months ago" +msgstr "" + +#: js/files.js:844 +msgid "last year" +msgstr "" + +#: js/files.js:845 +msgid "years ago" +msgstr "" + #: templates/admin.php:5 msgid "File handling" msgstr "Nastavenie správanie k súborom" #: templates/admin.php:7 msgid "Maximum upload size" -msgstr "Maximálna veľkosť nahratia" +msgstr "Maximálna veľkosť odosielaného súboru" #: templates/admin.php:7 msgid "max. possible: " @@ -180,7 +245,7 @@ msgstr "Najväčšia veľkosť ZIP súborov" #: templates/admin.php:14 msgid "Save" -msgstr "" +msgstr "Uložiť" #: templates/index.php:7 msgid "New" @@ -198,7 +263,7 @@ msgstr "Priečinok" msgid "From url" msgstr "Z url" -#: templates/index.php:21 +#: templates/index.php:20 msgid "Upload" msgstr "Nahrať" @@ -208,11 +273,7 @@ msgstr "Zrušiť odosielanie" #: templates/index.php:40 msgid "Nothing in here. Upload something!" -msgstr "Nič tu nie je. Nahrajte niečo!" - -#: templates/index.php:48 -msgid "Name" -msgstr "Meno" +msgstr "Žiadny súbor. Nahrajte niečo!" #: templates/index.php:50 msgid "Share" @@ -224,7 +285,7 @@ msgstr "Stiahnuť" #: templates/index.php:75 msgid "Upload too large" -msgstr "Nahrávanie príliš veľké" +msgstr "Odosielaný súbor je príliš veľký" #: templates/index.php:77 msgid "" diff --git a/l10n/sk_SK/files_sharing.po b/l10n/sk_SK/files_sharing.po index d28ae49cf7..86f025ad21 100644 --- a/l10n/sk_SK/files_sharing.po +++ b/l10n/sk_SK/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-07 02:04+0200\n" -"PO-Revision-Date: 2012-09-06 17:47+0000\n" -"Last-Translator: intense \n" +"POT-Creation-Date: 2012-09-22 01:14+0200\n" +"PO-Revision-Date: 2012-09-21 23:15+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,14 +26,24 @@ msgstr "Heslo" msgid "Submit" msgstr "Odoslať" -#: templates/public.php:9 templates/public.php:19 +#: templates/public.php:9 +#, php-format +msgid "%s shared the folder %s with you" +msgstr "" + +#: templates/public.php:11 +#, php-format +msgid "%s shared the file %s with you" +msgstr "" + +#: templates/public.php:14 templates/public.php:30 msgid "Download" msgstr "Stiahnuť" -#: templates/public.php:18 +#: templates/public.php:29 msgid "No preview available for" msgstr "Žiaden náhľad k dispozícii pre" -#: templates/public.php:25 +#: templates/public.php:37 msgid "web services under your control" msgstr "webové služby pod Vašou kontrolou" diff --git a/l10n/sk_SK/files_versions.po b/l10n/sk_SK/files_versions.po index 4116e72935..89f540dae6 100644 --- a/l10n/sk_SK/files_versions.po +++ b/l10n/sk_SK/files_versions.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" -"PO-Revision-Date: 2012-09-17 00:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-24 02:01+0200\n" +"PO-Revision-Date: 2012-09-23 18:45+0000\n" +"Last-Translator: martinb \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,20 +20,24 @@ msgstr "" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" -msgstr "" +msgstr "Expirovať všetky verzie" + +#: js/versions.js:16 +msgid "History" +msgstr "História" #: templates/settings-personal.php:4 msgid "Versions" -msgstr "" +msgstr "Verzie" #: templates/settings-personal.php:7 msgid "This will delete all existing backup versions of your files" -msgstr "" +msgstr "Budú zmazané všetky zálohované verzie vašich súborov" #: templates/settings.php:3 msgid "Files Versioning" -msgstr "" +msgstr "Vytváranie verzií súborov" #: templates/settings.php:4 msgid "Enable" -msgstr "" +msgstr "Zapnúť" diff --git a/l10n/sk_SK/lib.po b/l10n/sk_SK/lib.po index b4ffed6537..1a98bd0de2 100644 --- a/l10n/sk_SK/lib.po +++ b/l10n/sk_SK/lib.po @@ -3,113 +3,114 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-09-01 00:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-22 01:14+0200\n" +"PO-Revision-Date: 2012-09-21 11:28+0000\n" +"Last-Translator: martinb \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: sk_SK\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: app.php:288 +#: app.php:285 msgid "Help" -msgstr "" +msgstr "Pomoc" -#: app.php:295 +#: app.php:292 msgid "Personal" -msgstr "" +msgstr "Osobné" -#: app.php:300 +#: app.php:297 msgid "Settings" -msgstr "" +msgstr "Nastavenia" -#: app.php:305 +#: app.php:302 msgid "Users" -msgstr "" +msgstr "Užívatelia" -#: app.php:312 +#: app.php:309 msgid "Apps" -msgstr "" +msgstr "Aplikácie" -#: app.php:314 +#: app.php:311 msgid "Admin" -msgstr "" +msgstr "Správca" -#: files.php:280 +#: files.php:309 msgid "ZIP download is turned off." -msgstr "" +msgstr "Sťahovanie súborov ZIP je vypnuté." -#: files.php:281 +#: files.php:310 msgid "Files need to be downloaded one by one." -msgstr "" +msgstr "Súbory musia byť nahrávané jeden za druhým." -#: files.php:281 files.php:306 +#: files.php:310 files.php:335 msgid "Back to Files" -msgstr "" +msgstr "Späť na súbory" -#: files.php:305 +#: files.php:334 msgid "Selected files too large to generate zip file." -msgstr "" +msgstr "Zvolené súbory sú príliž veľké na vygenerovanie zip súboru." #: json.php:28 msgid "Application is not enabled" -msgstr "" +msgstr "Aplikácia nie je zapnutá" #: json.php:39 json.php:63 json.php:75 msgid "Authentication error" -msgstr "" +msgstr "Chyba autentifikácie" #: json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: template.php:86 +#: template.php:87 msgid "seconds ago" msgstr "" -#: template.php:87 -msgid "1 minute ago" -msgstr "" - #: template.php:88 +msgid "1 minute ago" +msgstr "pred 1 minútou" + +#: template.php:89 #, php-format msgid "%d minutes ago" -msgstr "" - -#: template.php:91 -msgid "today" -msgstr "" +msgstr "pred %d minútami" #: template.php:92 -msgid "yesterday" -msgstr "" +msgid "today" +msgstr "dnes" #: template.php:93 -#, php-format -msgid "%d days ago" -msgstr "" +msgid "yesterday" +msgstr "včera" #: template.php:94 -msgid "last month" -msgstr "" +#, php-format +msgid "%d days ago" +msgstr "pred %d dňami" #: template.php:95 -msgid "months ago" -msgstr "" +msgid "last month" +msgstr "minulý mesiac" #: template.php:96 -msgid "last year" -msgstr "" +msgid "months ago" +msgstr "pred mesiacmi" #: template.php:97 +msgid "last year" +msgstr "minulý rok" + +#: template.php:98 msgid "years ago" -msgstr "" +msgstr "pred rokmi" #: updater.php:66 #, php-format @@ -118,8 +119,8 @@ msgstr "" #: updater.php:68 msgid "up to date" -msgstr "" +msgstr "aktuálny" #: updater.php:71 msgid "updates check is disabled" -msgstr "" +msgstr "sledovanie aktualizácií je vypnuté" diff --git a/l10n/sk_SK/settings.po b/l10n/sk_SK/settings.po index 3b261aff56..2089e7b7c5 100644 --- a/l10n/sk_SK/settings.po +++ b/l10n/sk_SK/settings.po @@ -4,15 +4,16 @@ # # Translators: # , 2011, 2012. +# , 2012. # Roman Priesol , 2012. # , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:03+0200\n" -"PO-Revision-Date: 2012-09-17 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-22 01:14+0200\n" +"PO-Revision-Date: 2012-09-21 10:33+0000\n" +"Last-Translator: martinb \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,24 +23,24 @@ msgstr "" #: ajax/apps/ocs.php:23 msgid "Unable to load list from App Store" -msgstr "" +msgstr "Nie je možné nahrať zoznam z App Store" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 #: ajax/togglegroups.php:15 msgid "Authentication error" -msgstr "" +msgstr "Chyba pri autentifikácii" #: ajax/creategroup.php:19 msgid "Group already exists" -msgstr "" +msgstr "Skupina už existuje" #: ajax/creategroup.php:28 msgid "Unable to add group" -msgstr "" +msgstr "Nie je možné pridať skupinu" -#: ajax/enableapp.php:13 +#: ajax/enableapp.php:14 msgid "Could not enable app. " -msgstr "" +msgstr "Nie je možné zapnúť aplikáciu." #: ajax/lostpassword.php:14 msgid "Email saved" @@ -59,11 +60,11 @@ msgstr "Neplatná požiadavka" #: ajax/removegroup.php:16 msgid "Unable to delete group" -msgstr "" +msgstr "Nie je možné zmazať skupinu" #: ajax/removeuser.php:22 msgid "Unable to delete user" -msgstr "" +msgstr "Nie je možné zmazať užívateľa" #: ajax/setlanguage.php:18 msgid "Language changed" @@ -72,22 +73,18 @@ msgstr "Jazyk zmenený" #: ajax/togglegroups.php:25 #, php-format msgid "Unable to add user to group %s" -msgstr "" +msgstr "Nie je možné pridať užívateľa do skupiny %s" #: ajax/togglegroups.php:31 #, php-format msgid "Unable to remove user from group %s" -msgstr "" +msgstr "Nie je možné zmazať užívateľa zo skupiny %s" -#: js/apps.js:18 -msgid "Error" -msgstr "" - -#: js/apps.js:39 js/apps.js:73 +#: js/apps.js:27 js/apps.js:61 msgid "Disable" msgstr "Zakázať" -#: js/apps.js:39 js/apps.js:62 +#: js/apps.js:27 js/apps.js:50 msgid "Enable" msgstr "Povoliť" @@ -101,7 +98,7 @@ msgstr "Slovensky" #: templates/admin.php:14 msgid "Security Warning" -msgstr "" +msgstr "Bezpečnostné varovanie" #: templates/admin.php:17 msgid "" @@ -134,27 +131,27 @@ msgstr "" #: templates/admin.php:56 msgid "Sharing" -msgstr "" +msgstr "Zdieľanie" #: templates/admin.php:61 msgid "Enable Share API" -msgstr "" +msgstr "Zapnúť API zdieľania" #: templates/admin.php:62 msgid "Allow apps to use the Share API" -msgstr "" +msgstr "Povoliť aplikáciam používať API pre zdieľanie" #: templates/admin.php:67 msgid "Allow links" -msgstr "" +msgstr "Povoliť odkazy" #: templates/admin.php:68 msgid "Allow users to share items to the public with links" -msgstr "" +msgstr "Povoliť užívateľom zdieľať obsah pomocou verejných odkazov" #: templates/admin.php:73 msgid "Allow resharing" -msgstr "" +msgstr "Povoliť opakované zdieľanie" #: templates/admin.php:74 msgid "Allow users to share items shared with them again" @@ -162,11 +159,11 @@ msgstr "" #: templates/admin.php:79 msgid "Allow users to share with anyone" -msgstr "" +msgstr "Povoliť užívateľom zdieľať s každým" #: templates/admin.php:81 msgid "Allow users to only share with users in their groups" -msgstr "" +msgstr "Povoliť užívateľom zdieľanie iba s užívateľmi ich vlastnej skupiny" #: templates/admin.php:88 msgid "Log" @@ -200,7 +197,7 @@ msgstr "Pozrite si stránku aplikácie na apps.owncloud.com" #: templates/apps.php:30 msgid "-licensed by " -msgstr "" +msgstr "-licencované " #: templates/help.php:9 msgid "Documentation" @@ -227,12 +224,9 @@ msgid "Answer" msgstr "Odpoveď" #: templates/personal.php:8 -msgid "You use" -msgstr "Používate" - -#: templates/personal.php:8 -msgid "of the available" -msgstr "z dostupných" +#, php-format +msgid "You have used %s of the available %s" +msgstr "Použili ste %s dostupného %s" #: templates/personal.php:12 msgid "Desktop and Mobile Syncing Clients" @@ -243,8 +237,8 @@ msgid "Download" msgstr "Stiahnúť" #: templates/personal.php:19 -msgid "Your password got changed" -msgstr "Vaše heslo sa zmenilo" +msgid "Your password was changed" +msgstr "Heslo bolo zmenené" #: templates/personal.php:20 msgid "Unable to change your password" @@ -316,7 +310,7 @@ msgstr "Iné" #: templates/users.php:80 templates/users.php:112 msgid "Group Admin" -msgstr "" +msgstr "Správca skupiny" #: templates/users.php:82 msgid "Quota" diff --git a/l10n/sl/core.po b/l10n/sl/core.po index 66b5310397..278ba738e1 100644 --- a/l10n/sl/core.po +++ b/l10n/sl/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -32,58 +32,62 @@ msgstr "Ni kategorije za dodajanje?" msgid "This category already exists: " msgstr "Ta kategorija že obstaja:" -#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Nastavitve" -#: js/js.js:593 +#: js/js.js:645 msgid "January" msgstr "januar" -#: js/js.js:593 +#: js/js.js:645 msgid "February" msgstr "februar" -#: js/js.js:593 +#: js/js.js:645 msgid "March" msgstr "marec" -#: js/js.js:593 +#: js/js.js:645 msgid "April" msgstr "april" -#: js/js.js:593 +#: js/js.js:645 msgid "May" msgstr "maj" -#: js/js.js:593 +#: js/js.js:645 msgid "June" msgstr "junij" -#: js/js.js:594 +#: js/js.js:646 msgid "July" msgstr "julij" -#: js/js.js:594 +#: js/js.js:646 msgid "August" msgstr "avgust" -#: js/js.js:594 +#: js/js.js:646 msgid "September" msgstr "september" -#: js/js.js:594 +#: js/js.js:646 msgid "October" msgstr "oktober" -#: js/js.js:594 +#: js/js.js:646 msgid "November" msgstr "november" -#: js/js.js:594 +#: js/js.js:646 msgid "December" msgstr "december" +#: js/oc-dialogs.js:123 +msgid "Choose" +msgstr "" + #: js/oc-dialogs.js:143 js/oc-dialogs.js:163 msgid "Cancel" msgstr "Prekliči" @@ -104,10 +108,119 @@ msgstr "V redu" msgid "No categories selected for deletion." msgstr "Za izbris ni bila izbrana nobena kategorija." -#: js/oc-vcategories.js:68 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 +#: js/share.js:501 msgid "Error" msgstr "Napaka" +#: js/share.js:103 +msgid "Error while sharing" +msgstr "" + +#: js/share.js:114 +msgid "Error while unsharing" +msgstr "" + +#: js/share.js:121 +msgid "Error while changing permissions" +msgstr "" + +#: js/share.js:130 +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" +msgstr "" + +#: js/share.js:132 +msgid "Shared with you by" +msgstr "" + +#: js/share.js:137 +msgid "Share with" +msgstr "" + +#: js/share.js:142 +msgid "Share with link" +msgstr "" + +#: js/share.js:143 +msgid "Password protect" +msgstr "" + +#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +msgid "Password" +msgstr "Geslo" + +#: js/share.js:152 +msgid "Set expiration date" +msgstr "" + +#: js/share.js:153 +msgid "Expiration date" +msgstr "" + +#: js/share.js:185 +msgid "Share via email:" +msgstr "" + +#: js/share.js:187 +msgid "No people found" +msgstr "" + +#: js/share.js:214 +msgid "Resharing is not allowed" +msgstr "" + +#: js/share.js:250 +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" +msgstr "" + +#: js/share.js:271 +msgid "Unshare" +msgstr "" + +#: js/share.js:279 +msgid "can edit" +msgstr "" + +#: js/share.js:281 +msgid "access control" +msgstr "" + +#: js/share.js:284 +msgid "create" +msgstr "" + +#: js/share.js:287 +msgid "update" +msgstr "" + +#: js/share.js:290 +msgid "delete" +msgstr "" + +#: js/share.js:293 +msgid "share" +msgstr "" + +#: js/share.js:317 js/share.js:476 +msgid "Password protected" +msgstr "Zaščiteno z geslom" + +#: js/share.js:489 +msgid "Error unsetting expiration date" +msgstr "" + +#: js/share.js:501 +msgid "Error setting expiration date" +msgstr "" + #: lostpassword/index.php:26 msgid "ownCloud password reset" msgstr "Ponastavitev gesla ownCloud" @@ -193,10 +306,6 @@ msgstr "Dodaj" msgid "Create an admin account" msgstr "Ustvari skrbniški račun" -#: templates/installation.php:30 templates/login.php:13 -msgid "Password" -msgstr "Geslo" - #: templates/installation.php:36 msgid "Advanced" msgstr "Napredne možnosti" @@ -238,11 +347,11 @@ msgstr "Gostitelj podatkovne zbirke" msgid "Finish setup" msgstr "Dokončaj namestitev" -#: templates/layout.guest.php:42 +#: templates/layout.guest.php:36 msgid "web services under your control" msgstr "spletne storitve pod vašim nadzorom" -#: templates/layout.user.php:45 +#: templates/layout.user.php:34 msgid "Log out" msgstr "Odjava" diff --git a/l10n/sl/files.po b/l10n/sl/files.po index 4f9fad5d5f..5332d836f2 100644 --- a/l10n/sl/files.po +++ b/l10n/sl/files.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-09 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 07:24+0000\n" -"Last-Translator: Peter Peroša \n" +"POT-Creation-Date: 2012-09-26 13:19+0200\n" +"PO-Revision-Date: 2012-09-26 11:20+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -62,39 +62,43 @@ msgstr "Odstrani iz souporabe" msgid "Delete" msgstr "Izbriši" -#: js/filelist.js:186 js/filelist.js:188 +#: js/fileactions.js:182 +msgid "Rename" +msgstr "Preimenuj" + +#: js/filelist.js:190 js/filelist.js:192 msgid "already exists" msgstr "že obstaja" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "replace" msgstr "nadomesti" -#: js/filelist.js:186 +#: js/filelist.js:190 msgid "suggest name" msgstr "predlagaj ime" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "cancel" msgstr "ekliči" -#: js/filelist.js:235 js/filelist.js:237 +#: js/filelist.js:239 js/filelist.js:241 msgid "replaced" msgstr "nadomeščen" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:239 js/filelist.js:241 js/filelist.js:273 js/filelist.js:275 msgid "undo" msgstr "razveljavi" -#: js/filelist.js:237 +#: js/filelist.js:241 msgid "with" msgstr "z" -#: js/filelist.js:268 +#: js/filelist.js:273 msgid "unshared" msgstr "odstranjeno iz souporabe" -#: js/filelist.js:270 +#: js/filelist.js:275 msgid "deleted" msgstr "izbrisano" @@ -110,47 +114,107 @@ msgstr "Nalaganje ni mogoče, saj gre za mapo, ali pa ima datoteka velikost 0 ba msgid "Upload Error" msgstr "Napaka pri nalaganju" -#: js/files.js:236 js/files.js:341 js/files.js:370 +#: js/files.js:236 js/files.js:341 js/files.js:371 msgid "Pending" msgstr "Na čakanju" -#: js/files.js:355 +#: js/files.js:256 +msgid "1 file uploading" +msgstr "" + +#: js/files.js:259 js/files.js:304 js/files.js:319 +msgid "files uploading" +msgstr "" + +#: js/files.js:322 js/files.js:355 msgid "Upload cancelled." msgstr "Nalaganje je bilo preklicano." -#: js/files.js:423 +#: js/files.js:424 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Nalaganje datoteke je v teku. Če zapustite to stran zdaj, boste nalaganje preklicali." -#: js/files.js:493 +#: js/files.js:494 msgid "Invalid name, '/' is not allowed." msgstr "Neveljavno ime. Znak '/' ni dovoljen." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:667 +msgid "files scanned" +msgstr "pregledanih datotek" + +#: js/files.js:675 +msgid "error while scanning" +msgstr "napaka med pregledovanjem datotek" + +#: js/files.js:748 templates/index.php:48 +msgid "Name" +msgstr "Ime" + +#: js/files.js:749 templates/index.php:56 msgid "Size" msgstr "Velikost" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:750 templates/index.php:58 msgid "Modified" msgstr "Spremenjeno" -#: js/files.js:774 +#: js/files.js:777 msgid "folder" msgstr "mapa" -#: js/files.js:776 +#: js/files.js:779 msgid "folders" msgstr "mape" -#: js/files.js:784 +#: js/files.js:787 msgid "file" msgstr "datoteka" -#: js/files.js:786 +#: js/files.js:789 msgid "files" msgstr "datoteke" +#: js/files.js:833 +msgid "seconds ago" +msgstr "" + +#: js/files.js:834 +msgid "minute ago" +msgstr "" + +#: js/files.js:835 +msgid "minutes ago" +msgstr "" + +#: js/files.js:838 +msgid "today" +msgstr "" + +#: js/files.js:839 +msgid "yesterday" +msgstr "" + +#: js/files.js:840 +msgid "days ago" +msgstr "" + +#: js/files.js:841 +msgid "last month" +msgstr "" + +#: js/files.js:843 +msgid "months ago" +msgstr "" + +#: js/files.js:844 +msgid "last year" +msgstr "" + +#: js/files.js:845 +msgid "years ago" +msgstr "" + #: templates/admin.php:5 msgid "File handling" msgstr "Rokovanje z datotekami" @@ -199,7 +263,7 @@ msgstr "Mapa" msgid "From url" msgstr "Iz url naslova" -#: templates/index.php:21 +#: templates/index.php:20 msgid "Upload" msgstr "Naloži" @@ -211,10 +275,6 @@ msgstr "Prekliči nalaganje" msgid "Nothing in here. Upload something!" msgstr "Tukaj ni ničesar. Naložite kaj!" -#: templates/index.php:48 -msgid "Name" -msgstr "Ime" - #: templates/index.php:50 msgid "Share" msgstr "Souporaba" diff --git a/l10n/sl/files_sharing.po b/l10n/sl/files_sharing.po index 54b84f8ba1..4fdbda00e6 100644 --- a/l10n/sl/files_sharing.po +++ b/l10n/sl/files_sharing.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-08-31 14:15+0000\n" +"POT-Creation-Date: 2012-09-26 02:02+0200\n" +"PO-Revision-Date: 2012-09-25 19:08+0000\n" "Last-Translator: Peter Peroša \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: sl\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3)\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" #: templates/authenticate.php:4 msgid "Password" @@ -26,14 +26,24 @@ msgstr "Geslo" msgid "Submit" msgstr "Pošlji" -#: templates/public.php:9 templates/public.php:19 +#: templates/public.php:9 +#, php-format +msgid "%s shared the folder %s with you" +msgstr "%s je dal v souporabo z vami mapo %s" + +#: templates/public.php:11 +#, php-format +msgid "%s shared the file %s with you" +msgstr "%s je dal v souporabo z vami datoteko %s" + +#: templates/public.php:14 templates/public.php:30 msgid "Download" msgstr "Prenesi" -#: templates/public.php:18 +#: templates/public.php:29 msgid "No preview available for" msgstr "Predogled ni na voljo za" -#: templates/public.php:23 +#: templates/public.php:37 msgid "web services under your control" msgstr "spletne storitve pod vašim nadzorom" diff --git a/l10n/sl/files_versions.po b/l10n/sl/files_versions.po index 80cae06ea8..974c8de546 100644 --- a/l10n/sl/files_versions.po +++ b/l10n/sl/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" -"PO-Revision-Date: 2012-09-17 00:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-26 02:02+0200\n" +"PO-Revision-Date: 2012-09-25 19:09+0000\n" +"Last-Translator: Peter Peroša \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,6 +22,10 @@ msgstr "" msgid "Expire all versions" msgstr "Zastaraj vse različice" +#: js/versions.js:16 +msgid "History" +msgstr "Zgodovina" + #: templates/settings-personal.php:4 msgid "Versions" msgstr "Različice" @@ -32,8 +36,8 @@ msgstr "To bo izbrisalo vse obstoječe različice varnostnih kopij vaših datote #: templates/settings.php:3 msgid "Files Versioning" -msgstr "" +msgstr "Sledenje različicam" #: templates/settings.php:4 msgid "Enable" -msgstr "" +msgstr "Omogoči" diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index 1f1dabc9e6..f82aa4ec64 100644 --- a/l10n/sl/settings.po +++ b/l10n/sl/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:03+0200\n" -"PO-Revision-Date: 2012-09-17 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-26 02:03+0200\n" +"PO-Revision-Date: 2012-09-25 19:07+0000\n" +"Last-Translator: Peter Peroša \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -37,7 +37,7 @@ msgstr "Skupina že obstaja" msgid "Unable to add group" msgstr "Ni mogoče dodati skupine" -#: ajax/enableapp.php:13 +#: ajax/enableapp.php:14 msgid "Could not enable app. " msgstr "Aplikacije ni bilo mogoče omogočiti." @@ -79,15 +79,11 @@ msgstr "Uporabnika ni mogoče dodati k skupini %s" msgid "Unable to remove user from group %s" msgstr "Uporabnika ni mogoče odstraniti iz skupine %s" -#: js/apps.js:18 -msgid "Error" -msgstr "Napaka" - -#: js/apps.js:39 js/apps.js:73 +#: js/apps.js:27 js/apps.js:61 msgid "Disable" msgstr "Onemogoči" -#: js/apps.js:39 js/apps.js:62 +#: js/apps.js:27 js/apps.js:50 msgid "Enable" msgstr "Omogoči" @@ -118,7 +114,7 @@ msgstr "Periodično opravilo" #: templates/admin.php:37 msgid "Execute one task with each page loaded" -msgstr "" +msgstr "Izvede eno opravilo z vsako naloženo stranjo." #: templates/admin.php:43 msgid "" @@ -130,11 +126,11 @@ msgstr "Datoteka cron.php je prijavljena pri enem od spletnih servisov za period msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "" +msgstr "Uporabi sistemski servis za periodična opravila. Preko sistemskega servisa pokličite datoteko cron.php, ki se nahaja v ownCloud korenski mapi, enkrat na minuto." #: templates/admin.php:56 msgid "Sharing" -msgstr "" +msgstr "Souporaba" #: templates/admin.php:61 msgid "Enable Share API" @@ -227,12 +223,9 @@ msgid "Answer" msgstr "Odgovor" #: templates/personal.php:8 -msgid "You use" -msgstr "Uporabljate" - -#: templates/personal.php:8 -msgid "of the available" -msgstr "od razpoložljivih" +#, php-format +msgid "You have used %s of the available %s" +msgstr "Uporabili ste %s od razpoložljivih %s" #: templates/personal.php:12 msgid "Desktop and Mobile Syncing Clients" @@ -243,7 +236,7 @@ msgid "Download" msgstr "Prenesi" #: templates/personal.php:19 -msgid "Your password got changed" +msgid "Your password was changed" msgstr "Vaše geslo je bilo spremenjeno" #: templates/personal.php:20 diff --git a/l10n/so/core.po b/l10n/so/core.po index f34edceab5..399a26593a 100644 --- a/l10n/so/core.po +++ b/l10n/so/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+0000\n" "Last-Translator: I Robot \n" "Language-Team: Somali (http://www.transifex.com/projects/p/owncloud/language/so/)\n" "MIME-Version: 1.0\n" @@ -29,58 +29,62 @@ msgstr "" msgid "This category already exists: " msgstr "" -#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "" -#: js/js.js:593 +#: js/js.js:645 msgid "January" msgstr "" -#: js/js.js:593 +#: js/js.js:645 msgid "February" msgstr "" -#: js/js.js:593 +#: js/js.js:645 msgid "March" msgstr "" -#: js/js.js:593 +#: js/js.js:645 msgid "April" msgstr "" -#: js/js.js:593 +#: js/js.js:645 msgid "May" msgstr "" -#: js/js.js:593 +#: js/js.js:645 msgid "June" msgstr "" -#: js/js.js:594 +#: js/js.js:646 msgid "July" msgstr "" -#: js/js.js:594 +#: js/js.js:646 msgid "August" msgstr "" -#: js/js.js:594 +#: js/js.js:646 msgid "September" msgstr "" -#: js/js.js:594 +#: js/js.js:646 msgid "October" msgstr "" -#: js/js.js:594 +#: js/js.js:646 msgid "November" msgstr "" -#: js/js.js:594 +#: js/js.js:646 msgid "December" msgstr "" +#: js/oc-dialogs.js:123 +msgid "Choose" +msgstr "" + #: js/oc-dialogs.js:143 js/oc-dialogs.js:163 msgid "Cancel" msgstr "" @@ -101,10 +105,119 @@ msgstr "" msgid "No categories selected for deletion." msgstr "" -#: js/oc-vcategories.js:68 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 +#: js/share.js:501 msgid "Error" msgstr "" +#: js/share.js:103 +msgid "Error while sharing" +msgstr "" + +#: js/share.js:114 +msgid "Error while unsharing" +msgstr "" + +#: js/share.js:121 +msgid "Error while changing permissions" +msgstr "" + +#: js/share.js:130 +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" +msgstr "" + +#: js/share.js:132 +msgid "Shared with you by" +msgstr "" + +#: js/share.js:137 +msgid "Share with" +msgstr "" + +#: js/share.js:142 +msgid "Share with link" +msgstr "" + +#: js/share.js:143 +msgid "Password protect" +msgstr "" + +#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +msgid "Password" +msgstr "" + +#: js/share.js:152 +msgid "Set expiration date" +msgstr "" + +#: js/share.js:153 +msgid "Expiration date" +msgstr "" + +#: js/share.js:185 +msgid "Share via email:" +msgstr "" + +#: js/share.js:187 +msgid "No people found" +msgstr "" + +#: js/share.js:214 +msgid "Resharing is not allowed" +msgstr "" + +#: js/share.js:250 +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" +msgstr "" + +#: js/share.js:271 +msgid "Unshare" +msgstr "" + +#: js/share.js:279 +msgid "can edit" +msgstr "" + +#: js/share.js:281 +msgid "access control" +msgstr "" + +#: js/share.js:284 +msgid "create" +msgstr "" + +#: js/share.js:287 +msgid "update" +msgstr "" + +#: js/share.js:290 +msgid "delete" +msgstr "" + +#: js/share.js:293 +msgid "share" +msgstr "" + +#: js/share.js:317 js/share.js:476 +msgid "Password protected" +msgstr "" + +#: js/share.js:489 +msgid "Error unsetting expiration date" +msgstr "" + +#: js/share.js:501 +msgid "Error setting expiration date" +msgstr "" + #: lostpassword/index.php:26 msgid "ownCloud password reset" msgstr "" @@ -190,10 +303,6 @@ msgstr "" msgid "Create an admin account" msgstr "" -#: templates/installation.php:30 templates/login.php:13 -msgid "Password" -msgstr "" - #: templates/installation.php:36 msgid "Advanced" msgstr "" @@ -235,11 +344,11 @@ msgstr "" msgid "Finish setup" msgstr "" -#: templates/layout.guest.php:42 +#: templates/layout.guest.php:36 msgid "web services under your control" msgstr "" -#: templates/layout.user.php:45 +#: templates/layout.user.php:34 msgid "Log out" msgstr "" diff --git a/l10n/so/files.po b/l10n/so/files.po index f168f0b775..31ef83859a 100644 --- a/l10n/so/files.po +++ b/l10n/so/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-26 13:19+0200\n" +"PO-Revision-Date: 2012-09-26 11:20+0000\n" "Last-Translator: I Robot \n" "Language-Team: Somali (http://www.transifex.com/projects/p/owncloud/language/so/)\n" "MIME-Version: 1.0\n" @@ -59,39 +59,43 @@ msgstr "" msgid "Delete" msgstr "" -#: js/filelist.js:186 js/filelist.js:188 +#: js/fileactions.js:182 +msgid "Rename" +msgstr "" + +#: js/filelist.js:190 js/filelist.js:192 msgid "already exists" msgstr "" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "replace" msgstr "" -#: js/filelist.js:186 +#: js/filelist.js:190 msgid "suggest name" msgstr "" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "cancel" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 +#: js/filelist.js:239 js/filelist.js:241 msgid "replaced" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:239 js/filelist.js:241 js/filelist.js:273 js/filelist.js:275 msgid "undo" msgstr "" -#: js/filelist.js:237 +#: js/filelist.js:241 msgid "with" msgstr "" -#: js/filelist.js:268 +#: js/filelist.js:273 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:275 msgid "deleted" msgstr "" @@ -107,47 +111,107 @@ msgstr "" msgid "Upload Error" msgstr "" -#: js/files.js:236 js/files.js:341 js/files.js:370 +#: js/files.js:236 js/files.js:341 js/files.js:371 msgid "Pending" msgstr "" -#: js/files.js:355 +#: js/files.js:256 +msgid "1 file uploading" +msgstr "" + +#: js/files.js:259 js/files.js:304 js/files.js:319 +msgid "files uploading" +msgstr "" + +#: js/files.js:322 js/files.js:355 msgid "Upload cancelled." msgstr "" -#: js/files.js:423 +#: js/files.js:424 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:493 +#: js/files.js:494 msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:667 +msgid "files scanned" +msgstr "" + +#: js/files.js:675 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:48 +msgid "Name" +msgstr "" + +#: js/files.js:749 templates/index.php:56 msgid "Size" msgstr "" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:750 templates/index.php:58 msgid "Modified" msgstr "" -#: js/files.js:774 +#: js/files.js:777 msgid "folder" msgstr "" -#: js/files.js:776 +#: js/files.js:779 msgid "folders" msgstr "" -#: js/files.js:784 +#: js/files.js:787 msgid "file" msgstr "" -#: js/files.js:786 +#: js/files.js:789 msgid "files" msgstr "" +#: js/files.js:833 +msgid "seconds ago" +msgstr "" + +#: js/files.js:834 +msgid "minute ago" +msgstr "" + +#: js/files.js:835 +msgid "minutes ago" +msgstr "" + +#: js/files.js:838 +msgid "today" +msgstr "" + +#: js/files.js:839 +msgid "yesterday" +msgstr "" + +#: js/files.js:840 +msgid "days ago" +msgstr "" + +#: js/files.js:841 +msgid "last month" +msgstr "" + +#: js/files.js:843 +msgid "months ago" +msgstr "" + +#: js/files.js:844 +msgid "last year" +msgstr "" + +#: js/files.js:845 +msgid "years ago" +msgstr "" + #: templates/admin.php:5 msgid "File handling" msgstr "" @@ -196,7 +260,7 @@ msgstr "" msgid "From url" msgstr "" -#: templates/index.php:21 +#: templates/index.php:20 msgid "Upload" msgstr "" @@ -208,10 +272,6 @@ msgstr "" msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:48 -msgid "Name" -msgstr "" - #: templates/index.php:50 msgid "Share" msgstr "" diff --git a/l10n/so/files_sharing.po b/l10n/so/files_sharing.po index dbbd4da284..ff0fc169de 100644 --- a/l10n/so/files_sharing.po +++ b/l10n/so/files_sharing.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:04+0000\n" +"POT-Creation-Date: 2012-09-22 01:14+0200\n" +"PO-Revision-Date: 2012-09-21 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Somali (http://www.transifex.com/projects/p/owncloud/language/so/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: so\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 msgid "Password" @@ -25,14 +25,24 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 templates/public.php:19 +#: templates/public.php:9 +#, php-format +msgid "%s shared the folder %s with you" +msgstr "" + +#: templates/public.php:11 +#, php-format +msgid "%s shared the file %s with you" +msgstr "" + +#: templates/public.php:14 templates/public.php:30 msgid "Download" msgstr "" -#: templates/public.php:18 +#: templates/public.php:29 msgid "No preview available for" msgstr "" -#: templates/public.php:23 +#: templates/public.php:37 msgid "web services under your control" msgstr "" diff --git a/l10n/so/files_versions.po b/l10n/so/files_versions.po index 194dbdb067..6be7c16884 100644 --- a/l10n/so/files_versions.po +++ b/l10n/so/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" -"PO-Revision-Date: 2012-09-17 00:04+0000\n" +"POT-Creation-Date: 2012-09-22 01:14+0200\n" +"PO-Revision-Date: 2012-09-21 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Somali (http://www.transifex.com/projects/p/owncloud/language/so/)\n" "MIME-Version: 1.0\n" @@ -21,6 +21,10 @@ msgstr "" msgid "Expire all versions" msgstr "" +#: js/versions.js:16 +msgid "History" +msgstr "" + #: templates/settings-personal.php:4 msgid "Versions" msgstr "" diff --git a/l10n/so/settings.po b/l10n/so/settings.po index 68d750e156..d8823a9d17 100644 --- a/l10n/so/settings.po +++ b/l10n/so/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:03+0200\n" -"PO-Revision-Date: 2012-09-17 00:03+0000\n" +"POT-Creation-Date: 2012-09-19 02:02+0200\n" +"PO-Revision-Date: 2012-09-19 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Somali (http://www.transifex.com/projects/p/owncloud/language/so/)\n" "MIME-Version: 1.0\n" @@ -34,7 +34,7 @@ msgstr "" msgid "Unable to add group" msgstr "" -#: ajax/enableapp.php:13 +#: ajax/enableapp.php:14 msgid "Could not enable app. " msgstr "" @@ -76,15 +76,11 @@ msgstr "" msgid "Unable to remove user from group %s" msgstr "" -#: js/apps.js:18 -msgid "Error" -msgstr "" - -#: js/apps.js:39 js/apps.js:73 +#: js/apps.js:27 js/apps.js:61 msgid "Disable" msgstr "" -#: js/apps.js:39 js/apps.js:62 +#: js/apps.js:27 js/apps.js:50 msgid "Enable" msgstr "" @@ -224,11 +220,8 @@ msgid "Answer" msgstr "" #: templates/personal.php:8 -msgid "You use" -msgstr "" - -#: templates/personal.php:8 -msgid "of the available" +#, php-format +msgid "You have used %s of the available %s" msgstr "" #: templates/personal.php:12 @@ -240,7 +233,7 @@ msgid "Download" msgstr "" #: templates/personal.php:19 -msgid "Your password got changed" +msgid "Your password was changed" msgstr "" #: templates/personal.php:20 diff --git a/l10n/sr/core.po b/l10n/sr/core.po index 2e4f99fe34..eaeee37161 100644 --- a/l10n/sr/core.po +++ b/l10n/sr/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -30,58 +30,62 @@ msgstr "" msgid "This category already exists: " msgstr "" -#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Подешавања" -#: js/js.js:593 +#: js/js.js:645 msgid "January" msgstr "" -#: js/js.js:593 +#: js/js.js:645 msgid "February" msgstr "" -#: js/js.js:593 +#: js/js.js:645 msgid "March" msgstr "" -#: js/js.js:593 +#: js/js.js:645 msgid "April" msgstr "" -#: js/js.js:593 +#: js/js.js:645 msgid "May" msgstr "" -#: js/js.js:593 +#: js/js.js:645 msgid "June" msgstr "" -#: js/js.js:594 +#: js/js.js:646 msgid "July" msgstr "" -#: js/js.js:594 +#: js/js.js:646 msgid "August" msgstr "" -#: js/js.js:594 +#: js/js.js:646 msgid "September" msgstr "" -#: js/js.js:594 +#: js/js.js:646 msgid "October" msgstr "" -#: js/js.js:594 +#: js/js.js:646 msgid "November" msgstr "" -#: js/js.js:594 +#: js/js.js:646 msgid "December" msgstr "" +#: js/oc-dialogs.js:123 +msgid "Choose" +msgstr "" + #: js/oc-dialogs.js:143 js/oc-dialogs.js:163 msgid "Cancel" msgstr "" @@ -102,10 +106,119 @@ msgstr "" msgid "No categories selected for deletion." msgstr "" -#: js/oc-vcategories.js:68 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 +#: js/share.js:501 msgid "Error" msgstr "" +#: js/share.js:103 +msgid "Error while sharing" +msgstr "" + +#: js/share.js:114 +msgid "Error while unsharing" +msgstr "" + +#: js/share.js:121 +msgid "Error while changing permissions" +msgstr "" + +#: js/share.js:130 +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" +msgstr "" + +#: js/share.js:132 +msgid "Shared with you by" +msgstr "" + +#: js/share.js:137 +msgid "Share with" +msgstr "" + +#: js/share.js:142 +msgid "Share with link" +msgstr "" + +#: js/share.js:143 +msgid "Password protect" +msgstr "" + +#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +msgid "Password" +msgstr "Лозинка" + +#: js/share.js:152 +msgid "Set expiration date" +msgstr "" + +#: js/share.js:153 +msgid "Expiration date" +msgstr "" + +#: js/share.js:185 +msgid "Share via email:" +msgstr "" + +#: js/share.js:187 +msgid "No people found" +msgstr "" + +#: js/share.js:214 +msgid "Resharing is not allowed" +msgstr "" + +#: js/share.js:250 +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" +msgstr "" + +#: js/share.js:271 +msgid "Unshare" +msgstr "" + +#: js/share.js:279 +msgid "can edit" +msgstr "" + +#: js/share.js:281 +msgid "access control" +msgstr "" + +#: js/share.js:284 +msgid "create" +msgstr "" + +#: js/share.js:287 +msgid "update" +msgstr "" + +#: js/share.js:290 +msgid "delete" +msgstr "" + +#: js/share.js:293 +msgid "share" +msgstr "" + +#: js/share.js:317 js/share.js:476 +msgid "Password protected" +msgstr "" + +#: js/share.js:489 +msgid "Error unsetting expiration date" +msgstr "" + +#: js/share.js:501 +msgid "Error setting expiration date" +msgstr "" + #: lostpassword/index.php:26 msgid "ownCloud password reset" msgstr "" @@ -191,10 +304,6 @@ msgstr "" msgid "Create an admin account" msgstr "Направи административни налог" -#: templates/installation.php:30 templates/login.php:13 -msgid "Password" -msgstr "Лозинка" - #: templates/installation.php:36 msgid "Advanced" msgstr "Напредно" @@ -236,11 +345,11 @@ msgstr "Домаћин базе" msgid "Finish setup" msgstr "Заврши подешавање" -#: templates/layout.guest.php:42 +#: templates/layout.guest.php:36 msgid "web services under your control" msgstr "веб сервиси под контролом" -#: templates/layout.user.php:45 +#: templates/layout.user.php:34 msgid "Log out" msgstr "Одјава" diff --git a/l10n/sr/files.po b/l10n/sr/files.po index 8874f6a4db..5d5d14a210 100644 --- a/l10n/sr/files.po +++ b/l10n/sr/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-26 13:19+0200\n" +"PO-Revision-Date: 2012-09-26 11:20+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -60,39 +60,43 @@ msgstr "" msgid "Delete" msgstr "Обриши" -#: js/filelist.js:186 js/filelist.js:188 +#: js/fileactions.js:182 +msgid "Rename" +msgstr "" + +#: js/filelist.js:190 js/filelist.js:192 msgid "already exists" msgstr "" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "replace" msgstr "" -#: js/filelist.js:186 +#: js/filelist.js:190 msgid "suggest name" msgstr "" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "cancel" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 +#: js/filelist.js:239 js/filelist.js:241 msgid "replaced" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:239 js/filelist.js:241 js/filelist.js:273 js/filelist.js:275 msgid "undo" msgstr "" -#: js/filelist.js:237 +#: js/filelist.js:241 msgid "with" msgstr "" -#: js/filelist.js:268 +#: js/filelist.js:273 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:275 msgid "deleted" msgstr "" @@ -108,47 +112,107 @@ msgstr "" msgid "Upload Error" msgstr "" -#: js/files.js:236 js/files.js:341 js/files.js:370 +#: js/files.js:236 js/files.js:341 js/files.js:371 msgid "Pending" msgstr "" -#: js/files.js:355 +#: js/files.js:256 +msgid "1 file uploading" +msgstr "" + +#: js/files.js:259 js/files.js:304 js/files.js:319 +msgid "files uploading" +msgstr "" + +#: js/files.js:322 js/files.js:355 msgid "Upload cancelled." msgstr "" -#: js/files.js:423 +#: js/files.js:424 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:493 +#: js/files.js:494 msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:667 +msgid "files scanned" +msgstr "" + +#: js/files.js:675 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:48 +msgid "Name" +msgstr "Име" + +#: js/files.js:749 templates/index.php:56 msgid "Size" msgstr "Величина" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:750 templates/index.php:58 msgid "Modified" msgstr "Задња измена" -#: js/files.js:774 +#: js/files.js:777 msgid "folder" msgstr "" -#: js/files.js:776 +#: js/files.js:779 msgid "folders" msgstr "" -#: js/files.js:784 +#: js/files.js:787 msgid "file" msgstr "" -#: js/files.js:786 +#: js/files.js:789 msgid "files" msgstr "" +#: js/files.js:833 +msgid "seconds ago" +msgstr "" + +#: js/files.js:834 +msgid "minute ago" +msgstr "" + +#: js/files.js:835 +msgid "minutes ago" +msgstr "" + +#: js/files.js:838 +msgid "today" +msgstr "" + +#: js/files.js:839 +msgid "yesterday" +msgstr "" + +#: js/files.js:840 +msgid "days ago" +msgstr "" + +#: js/files.js:841 +msgid "last month" +msgstr "" + +#: js/files.js:843 +msgid "months ago" +msgstr "" + +#: js/files.js:844 +msgid "last year" +msgstr "" + +#: js/files.js:845 +msgid "years ago" +msgstr "" + #: templates/admin.php:5 msgid "File handling" msgstr "" @@ -197,7 +261,7 @@ msgstr "фасцикла" msgid "From url" msgstr "" -#: templates/index.php:21 +#: templates/index.php:20 msgid "Upload" msgstr "Пошаљи" @@ -209,10 +273,6 @@ msgstr "" msgid "Nothing in here. Upload something!" msgstr "Овде нема ничег. Пошаљите нешто!" -#: templates/index.php:48 -msgid "Name" -msgstr "Име" - #: templates/index.php:50 msgid "Share" msgstr "" diff --git a/l10n/sr/files_sharing.po b/l10n/sr/files_sharing.po index c1bbe16e93..36c9d0ac46 100644 --- a/l10n/sr/files_sharing.po +++ b/l10n/sr/files_sharing.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-22 01:14+0200\n" +"PO-Revision-Date: 2012-09-21 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: sr\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: templates/authenticate.php:4 msgid "Password" @@ -25,14 +25,24 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 templates/public.php:19 +#: templates/public.php:9 +#, php-format +msgid "%s shared the folder %s with you" +msgstr "" + +#: templates/public.php:11 +#, php-format +msgid "%s shared the file %s with you" +msgstr "" + +#: templates/public.php:14 templates/public.php:30 msgid "Download" msgstr "" -#: templates/public.php:18 +#: templates/public.php:29 msgid "No preview available for" msgstr "" -#: templates/public.php:23 +#: templates/public.php:37 msgid "web services under your control" msgstr "" diff --git a/l10n/sr/files_versions.po b/l10n/sr/files_versions.po index 4018647302..592163313f 100644 --- a/l10n/sr/files_versions.po +++ b/l10n/sr/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" -"PO-Revision-Date: 2012-09-17 00:04+0000\n" +"POT-Creation-Date: 2012-09-22 01:14+0200\n" +"PO-Revision-Date: 2012-09-21 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -21,6 +21,10 @@ msgstr "" msgid "Expire all versions" msgstr "" +#: js/versions.js:16 +msgid "History" +msgstr "" + #: templates/settings-personal.php:4 msgid "Versions" msgstr "" diff --git a/l10n/sr/settings.po b/l10n/sr/settings.po index da8a79a19f..3117b26d3d 100644 --- a/l10n/sr/settings.po +++ b/l10n/sr/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:03+0200\n" -"PO-Revision-Date: 2012-09-17 00:03+0000\n" +"POT-Creation-Date: 2012-09-19 02:02+0200\n" +"PO-Revision-Date: 2012-09-19 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -35,7 +35,7 @@ msgstr "" msgid "Unable to add group" msgstr "" -#: ajax/enableapp.php:13 +#: ajax/enableapp.php:14 msgid "Could not enable app. " msgstr "" @@ -77,15 +77,11 @@ msgstr "" msgid "Unable to remove user from group %s" msgstr "" -#: js/apps.js:18 -msgid "Error" -msgstr "" - -#: js/apps.js:39 js/apps.js:73 +#: js/apps.js:27 js/apps.js:61 msgid "Disable" msgstr "" -#: js/apps.js:39 js/apps.js:62 +#: js/apps.js:27 js/apps.js:50 msgid "Enable" msgstr "" @@ -225,12 +221,9 @@ msgid "Answer" msgstr "Одговор" #: templates/personal.php:8 -msgid "You use" -msgstr "Користите" - -#: templates/personal.php:8 -msgid "of the available" -msgstr "од доступних" +#, php-format +msgid "You have used %s of the available %s" +msgstr "" #: templates/personal.php:12 msgid "Desktop and Mobile Syncing Clients" @@ -241,8 +234,8 @@ msgid "Download" msgstr "" #: templates/personal.php:19 -msgid "Your password got changed" -msgstr "Ваша лозинка је измењена" +msgid "Your password was changed" +msgstr "" #: templates/personal.php:20 msgid "Unable to change your password" diff --git a/l10n/sr@latin/core.po b/l10n/sr@latin/core.po index c3541b058a..cd06b0f3b2 100644 --- a/l10n/sr@latin/core.po +++ b/l10n/sr@latin/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -30,58 +30,62 @@ msgstr "" msgid "This category already exists: " msgstr "" -#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Podešavanja" -#: js/js.js:593 +#: js/js.js:645 msgid "January" msgstr "" -#: js/js.js:593 +#: js/js.js:645 msgid "February" msgstr "" -#: js/js.js:593 +#: js/js.js:645 msgid "March" msgstr "" -#: js/js.js:593 +#: js/js.js:645 msgid "April" msgstr "" -#: js/js.js:593 +#: js/js.js:645 msgid "May" msgstr "" -#: js/js.js:593 +#: js/js.js:645 msgid "June" msgstr "" -#: js/js.js:594 +#: js/js.js:646 msgid "July" msgstr "" -#: js/js.js:594 +#: js/js.js:646 msgid "August" msgstr "" -#: js/js.js:594 +#: js/js.js:646 msgid "September" msgstr "" -#: js/js.js:594 +#: js/js.js:646 msgid "October" msgstr "" -#: js/js.js:594 +#: js/js.js:646 msgid "November" msgstr "" -#: js/js.js:594 +#: js/js.js:646 msgid "December" msgstr "" +#: js/oc-dialogs.js:123 +msgid "Choose" +msgstr "" + #: js/oc-dialogs.js:143 js/oc-dialogs.js:163 msgid "Cancel" msgstr "" @@ -102,10 +106,119 @@ msgstr "" msgid "No categories selected for deletion." msgstr "" -#: js/oc-vcategories.js:68 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 +#: js/share.js:501 msgid "Error" msgstr "" +#: js/share.js:103 +msgid "Error while sharing" +msgstr "" + +#: js/share.js:114 +msgid "Error while unsharing" +msgstr "" + +#: js/share.js:121 +msgid "Error while changing permissions" +msgstr "" + +#: js/share.js:130 +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" +msgstr "" + +#: js/share.js:132 +msgid "Shared with you by" +msgstr "" + +#: js/share.js:137 +msgid "Share with" +msgstr "" + +#: js/share.js:142 +msgid "Share with link" +msgstr "" + +#: js/share.js:143 +msgid "Password protect" +msgstr "" + +#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +msgid "Password" +msgstr "Lozinka" + +#: js/share.js:152 +msgid "Set expiration date" +msgstr "" + +#: js/share.js:153 +msgid "Expiration date" +msgstr "" + +#: js/share.js:185 +msgid "Share via email:" +msgstr "" + +#: js/share.js:187 +msgid "No people found" +msgstr "" + +#: js/share.js:214 +msgid "Resharing is not allowed" +msgstr "" + +#: js/share.js:250 +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" +msgstr "" + +#: js/share.js:271 +msgid "Unshare" +msgstr "" + +#: js/share.js:279 +msgid "can edit" +msgstr "" + +#: js/share.js:281 +msgid "access control" +msgstr "" + +#: js/share.js:284 +msgid "create" +msgstr "" + +#: js/share.js:287 +msgid "update" +msgstr "" + +#: js/share.js:290 +msgid "delete" +msgstr "" + +#: js/share.js:293 +msgid "share" +msgstr "" + +#: js/share.js:317 js/share.js:476 +msgid "Password protected" +msgstr "" + +#: js/share.js:489 +msgid "Error unsetting expiration date" +msgstr "" + +#: js/share.js:501 +msgid "Error setting expiration date" +msgstr "" + #: lostpassword/index.php:26 msgid "ownCloud password reset" msgstr "" @@ -191,10 +304,6 @@ msgstr "" msgid "Create an admin account" msgstr "Napravi administrativni nalog" -#: templates/installation.php:30 templates/login.php:13 -msgid "Password" -msgstr "Lozinka" - #: templates/installation.php:36 msgid "Advanced" msgstr "Napredno" @@ -236,11 +345,11 @@ msgstr "Domaćin baze" msgid "Finish setup" msgstr "Završi podešavanje" -#: templates/layout.guest.php:42 +#: templates/layout.guest.php:36 msgid "web services under your control" msgstr "" -#: templates/layout.user.php:45 +#: templates/layout.user.php:34 msgid "Log out" msgstr "Odjava" diff --git a/l10n/sr@latin/files.po b/l10n/sr@latin/files.po index 11f37da7d1..fdca9ade63 100644 --- a/l10n/sr@latin/files.po +++ b/l10n/sr@latin/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-26 13:19+0200\n" +"PO-Revision-Date: 2012-09-26 11:20+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -60,39 +60,43 @@ msgstr "" msgid "Delete" msgstr "Obriši" -#: js/filelist.js:186 js/filelist.js:188 +#: js/fileactions.js:182 +msgid "Rename" +msgstr "" + +#: js/filelist.js:190 js/filelist.js:192 msgid "already exists" msgstr "" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "replace" msgstr "" -#: js/filelist.js:186 +#: js/filelist.js:190 msgid "suggest name" msgstr "" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "cancel" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 +#: js/filelist.js:239 js/filelist.js:241 msgid "replaced" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:239 js/filelist.js:241 js/filelist.js:273 js/filelist.js:275 msgid "undo" msgstr "" -#: js/filelist.js:237 +#: js/filelist.js:241 msgid "with" msgstr "" -#: js/filelist.js:268 +#: js/filelist.js:273 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:275 msgid "deleted" msgstr "" @@ -108,47 +112,107 @@ msgstr "" msgid "Upload Error" msgstr "" -#: js/files.js:236 js/files.js:341 js/files.js:370 +#: js/files.js:236 js/files.js:341 js/files.js:371 msgid "Pending" msgstr "" -#: js/files.js:355 +#: js/files.js:256 +msgid "1 file uploading" +msgstr "" + +#: js/files.js:259 js/files.js:304 js/files.js:319 +msgid "files uploading" +msgstr "" + +#: js/files.js:322 js/files.js:355 msgid "Upload cancelled." msgstr "" -#: js/files.js:423 +#: js/files.js:424 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:493 +#: js/files.js:494 msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:667 +msgid "files scanned" +msgstr "" + +#: js/files.js:675 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:48 +msgid "Name" +msgstr "Ime" + +#: js/files.js:749 templates/index.php:56 msgid "Size" msgstr "Veličina" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:750 templates/index.php:58 msgid "Modified" msgstr "Zadnja izmena" -#: js/files.js:774 +#: js/files.js:777 msgid "folder" msgstr "" -#: js/files.js:776 +#: js/files.js:779 msgid "folders" msgstr "" -#: js/files.js:784 +#: js/files.js:787 msgid "file" msgstr "" -#: js/files.js:786 +#: js/files.js:789 msgid "files" msgstr "" +#: js/files.js:833 +msgid "seconds ago" +msgstr "" + +#: js/files.js:834 +msgid "minute ago" +msgstr "" + +#: js/files.js:835 +msgid "minutes ago" +msgstr "" + +#: js/files.js:838 +msgid "today" +msgstr "" + +#: js/files.js:839 +msgid "yesterday" +msgstr "" + +#: js/files.js:840 +msgid "days ago" +msgstr "" + +#: js/files.js:841 +msgid "last month" +msgstr "" + +#: js/files.js:843 +msgid "months ago" +msgstr "" + +#: js/files.js:844 +msgid "last year" +msgstr "" + +#: js/files.js:845 +msgid "years ago" +msgstr "" + #: templates/admin.php:5 msgid "File handling" msgstr "" @@ -197,7 +261,7 @@ msgstr "" msgid "From url" msgstr "" -#: templates/index.php:21 +#: templates/index.php:20 msgid "Upload" msgstr "Pošalji" @@ -209,10 +273,6 @@ msgstr "" msgid "Nothing in here. Upload something!" msgstr "Ovde nema ničeg. Pošaljite nešto!" -#: templates/index.php:48 -msgid "Name" -msgstr "Ime" - #: templates/index.php:50 msgid "Share" msgstr "" diff --git a/l10n/sr@latin/files_sharing.po b/l10n/sr@latin/files_sharing.po index 7536a9cba8..cd27899cfc 100644 --- a/l10n/sr@latin/files_sharing.po +++ b/l10n/sr@latin/files_sharing.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-22 01:14+0200\n" +"PO-Revision-Date: 2012-09-21 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: sr@latin\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: templates/authenticate.php:4 msgid "Password" @@ -25,14 +25,24 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 templates/public.php:19 +#: templates/public.php:9 +#, php-format +msgid "%s shared the folder %s with you" +msgstr "" + +#: templates/public.php:11 +#, php-format +msgid "%s shared the file %s with you" +msgstr "" + +#: templates/public.php:14 templates/public.php:30 msgid "Download" msgstr "" -#: templates/public.php:18 +#: templates/public.php:29 msgid "No preview available for" msgstr "" -#: templates/public.php:23 +#: templates/public.php:37 msgid "web services under your control" msgstr "" diff --git a/l10n/sr@latin/files_versions.po b/l10n/sr@latin/files_versions.po index 821c0e6607..1f2db94b8a 100644 --- a/l10n/sr@latin/files_versions.po +++ b/l10n/sr@latin/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" -"PO-Revision-Date: 2012-09-17 00:04+0000\n" +"POT-Creation-Date: 2012-09-22 01:14+0200\n" +"PO-Revision-Date: 2012-09-21 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -21,6 +21,10 @@ msgstr "" msgid "Expire all versions" msgstr "" +#: js/versions.js:16 +msgid "History" +msgstr "" + #: templates/settings-personal.php:4 msgid "Versions" msgstr "" diff --git a/l10n/sr@latin/settings.po b/l10n/sr@latin/settings.po index eba1c39cf0..bff5fcab49 100644 --- a/l10n/sr@latin/settings.po +++ b/l10n/sr@latin/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:03+0200\n" -"PO-Revision-Date: 2012-09-17 00:03+0000\n" +"POT-Creation-Date: 2012-09-19 02:02+0200\n" +"PO-Revision-Date: 2012-09-19 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -35,7 +35,7 @@ msgstr "" msgid "Unable to add group" msgstr "" -#: ajax/enableapp.php:13 +#: ajax/enableapp.php:14 msgid "Could not enable app. " msgstr "" @@ -77,15 +77,11 @@ msgstr "" msgid "Unable to remove user from group %s" msgstr "" -#: js/apps.js:18 -msgid "Error" -msgstr "" - -#: js/apps.js:39 js/apps.js:73 +#: js/apps.js:27 js/apps.js:61 msgid "Disable" msgstr "" -#: js/apps.js:39 js/apps.js:62 +#: js/apps.js:27 js/apps.js:50 msgid "Enable" msgstr "" @@ -225,12 +221,9 @@ msgid "Answer" msgstr "Odgovor" #: templates/personal.php:8 -msgid "You use" -msgstr "Koristite" - -#: templates/personal.php:8 -msgid "of the available" -msgstr "od dostupnih" +#, php-format +msgid "You have used %s of the available %s" +msgstr "" #: templates/personal.php:12 msgid "Desktop and Mobile Syncing Clients" @@ -241,8 +234,8 @@ msgid "Download" msgstr "" #: templates/personal.php:19 -msgid "Your password got changed" -msgstr "Vaša lozinka je izmenjena" +msgid "Your password was changed" +msgstr "" #: templates/personal.php:20 msgid "Unable to change your password" diff --git a/l10n/sv/core.po b/l10n/sv/core.po index 57ad5c15e4..1eaf985129 100644 --- a/l10n/sv/core.po +++ b/l10n/sv/core.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-30 02:02+0200\n" +"PO-Revision-Date: 2012-09-29 11:11+0000\n" +"Last-Translator: Magnus Höglund \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -35,58 +35,62 @@ msgstr "Ingen kategori att lägga till?" msgid "This category already exists: " msgstr "Denna kategori finns redan:" -#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Inställningar" -#: js/js.js:593 +#: js/js.js:645 msgid "January" msgstr "Januari" -#: js/js.js:593 +#: js/js.js:645 msgid "February" msgstr "Februari" -#: js/js.js:593 +#: js/js.js:645 msgid "March" msgstr "Mars" -#: js/js.js:593 +#: js/js.js:645 msgid "April" msgstr "April" -#: js/js.js:593 +#: js/js.js:645 msgid "May" msgstr "Maj" -#: js/js.js:593 +#: js/js.js:645 msgid "June" msgstr "Juni" -#: js/js.js:594 +#: js/js.js:646 msgid "July" msgstr "Juli" -#: js/js.js:594 +#: js/js.js:646 msgid "August" msgstr "Augusti" -#: js/js.js:594 +#: js/js.js:646 msgid "September" msgstr "September" -#: js/js.js:594 +#: js/js.js:646 msgid "October" msgstr "Oktober" -#: js/js.js:594 +#: js/js.js:646 msgid "November" msgstr "November" -#: js/js.js:594 +#: js/js.js:646 msgid "December" msgstr "December" +#: js/oc-dialogs.js:123 +msgid "Choose" +msgstr "Välj" + #: js/oc-dialogs.js:143 js/oc-dialogs.js:163 msgid "Cancel" msgstr "Avbryt" @@ -107,10 +111,119 @@ msgstr "Ok" msgid "No categories selected for deletion." msgstr "Inga kategorier valda för radering." -#: js/oc-vcategories.js:68 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 +#: js/share.js:501 msgid "Error" msgstr "Fel" +#: js/share.js:103 +msgid "Error while sharing" +msgstr "Fel vid delning" + +#: js/share.js:114 +msgid "Error while unsharing" +msgstr "Fel när delning skulle avslutas" + +#: js/share.js:121 +msgid "Error while changing permissions" +msgstr "Fel vid ändring av rättigheter" + +#: js/share.js:130 +msgid "Shared with you and the group" +msgstr "Delas med dig och gruppen" + +#: js/share.js:130 +msgid "by" +msgstr "av" + +#: js/share.js:132 +msgid "Shared with you by" +msgstr "Delas med dig av" + +#: js/share.js:137 +msgid "Share with" +msgstr "Delad med" + +#: js/share.js:142 +msgid "Share with link" +msgstr "Delad med länk" + +#: js/share.js:143 +msgid "Password protect" +msgstr "Lösenordsskydda" + +#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +msgid "Password" +msgstr "Lösenord" + +#: js/share.js:152 +msgid "Set expiration date" +msgstr "Sätt utgångsdatum" + +#: js/share.js:153 +msgid "Expiration date" +msgstr "Utgångsdatum" + +#: js/share.js:185 +msgid "Share via email:" +msgstr "Dela via e-post:" + +#: js/share.js:187 +msgid "No people found" +msgstr "Hittar inga användare" + +#: js/share.js:214 +msgid "Resharing is not allowed" +msgstr "Dela vidare är inte tillåtet" + +#: js/share.js:250 +msgid "Shared in" +msgstr "Delas i" + +#: js/share.js:250 +msgid "with" +msgstr "med" + +#: js/share.js:271 +msgid "Unshare" +msgstr "Sluta dela" + +#: js/share.js:279 +msgid "can edit" +msgstr "kan redigera" + +#: js/share.js:281 +msgid "access control" +msgstr "åtkomstkontroll" + +#: js/share.js:284 +msgid "create" +msgstr "skapa" + +#: js/share.js:287 +msgid "update" +msgstr "uppdatera" + +#: js/share.js:290 +msgid "delete" +msgstr "radera" + +#: js/share.js:293 +msgid "share" +msgstr "dela" + +#: js/share.js:317 js/share.js:476 +msgid "Password protected" +msgstr "Lösenordsskyddad" + +#: js/share.js:489 +msgid "Error unsetting expiration date" +msgstr "Fel vid borttagning av utgångsdatum" + +#: js/share.js:501 +msgid "Error setting expiration date" +msgstr "Fel vid sättning av utgångsdatum" + #: lostpassword/index.php:26 msgid "ownCloud password reset" msgstr "ownCloud lösenordsåterställning" @@ -136,7 +249,7 @@ msgstr "Misslyckad inloggning!" msgid "Username" msgstr "Användarnamn" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:14 msgid "Request reset" msgstr "Begär återställning" @@ -196,10 +309,6 @@ msgstr "Lägg till" msgid "Create an admin account" msgstr "Skapa ett administratörskonto" -#: templates/installation.php:30 templates/login.php:13 -msgid "Password" -msgstr "Lösenord" - #: templates/installation.php:36 msgid "Advanced" msgstr "Avancerat" @@ -241,11 +350,11 @@ msgstr "Databasserver" msgid "Finish setup" msgstr "Avsluta installation" -#: templates/layout.guest.php:42 +#: templates/layout.guest.php:36 msgid "web services under your control" msgstr "webbtjänster under din kontroll" -#: templates/layout.user.php:45 +#: templates/layout.user.php:34 msgid "Log out" msgstr "Logga ut" @@ -253,11 +362,11 @@ msgstr "Logga ut" msgid "Lost your password?" msgstr "Glömt ditt lösenord?" -#: templates/login.php:17 +#: templates/login.php:16 msgid "remember" msgstr "kom ihåg" -#: templates/login.php:18 +#: templates/login.php:17 msgid "Log in" msgstr "Logga in" diff --git a/l10n/sv/files.po b/l10n/sv/files.po index 53d2e5a81a..4154c1118e 100644 --- a/l10n/sv/files.po +++ b/l10n/sv/files.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-09 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 12:05+0000\n" +"POT-Creation-Date: 2012-09-27 02:01+0200\n" +"PO-Revision-Date: 2012-09-26 14:51+0000\n" "Last-Translator: Magnus Höglund \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -65,39 +65,43 @@ msgstr "Sluta dela" msgid "Delete" msgstr "Radera" -#: js/filelist.js:186 js/filelist.js:188 +#: js/fileactions.js:182 +msgid "Rename" +msgstr "Byt namn" + +#: js/filelist.js:190 js/filelist.js:192 msgid "already exists" msgstr "finns redan" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "replace" msgstr "ersätt" -#: js/filelist.js:186 +#: js/filelist.js:190 msgid "suggest name" msgstr "föreslå namn" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "cancel" msgstr "avbryt" -#: js/filelist.js:235 js/filelist.js:237 +#: js/filelist.js:239 js/filelist.js:241 msgid "replaced" msgstr "ersatt" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:239 js/filelist.js:241 js/filelist.js:273 js/filelist.js:275 msgid "undo" msgstr "ångra" -#: js/filelist.js:237 +#: js/filelist.js:241 msgid "with" msgstr "med" -#: js/filelist.js:268 +#: js/filelist.js:273 msgid "unshared" msgstr "Ej delad" -#: js/filelist.js:270 +#: js/filelist.js:275 msgid "deleted" msgstr "raderad" @@ -113,47 +117,107 @@ msgstr "Kunde inte ladda upp dina filer eftersom det antingen är en mapp eller msgid "Upload Error" msgstr "Uppladdningsfel" -#: js/files.js:236 js/files.js:341 js/files.js:370 +#: js/files.js:236 js/files.js:341 js/files.js:371 msgid "Pending" msgstr "Väntar" -#: js/files.js:355 +#: js/files.js:256 +msgid "1 file uploading" +msgstr "1 filuppladdning" + +#: js/files.js:259 js/files.js:304 js/files.js:319 +msgid "files uploading" +msgstr "filer laddas upp" + +#: js/files.js:322 js/files.js:355 msgid "Upload cancelled." msgstr "Uppladdning avbruten." -#: js/files.js:423 +#: js/files.js:424 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Filuppladdning pågår. Lämnar du sidan så avbryts uppladdningen." -#: js/files.js:493 +#: js/files.js:494 msgid "Invalid name, '/' is not allowed." msgstr "Ogiltigt namn, '/' är inte tillåten." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:668 +msgid "files scanned" +msgstr "filer skannade" + +#: js/files.js:676 +msgid "error while scanning" +msgstr "fel vid skanning" + +#: js/files.js:749 templates/index.php:48 +msgid "Name" +msgstr "Namn" + +#: js/files.js:750 templates/index.php:56 msgid "Size" msgstr "Storlek" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:751 templates/index.php:58 msgid "Modified" msgstr "Ändrad" -#: js/files.js:774 +#: js/files.js:778 msgid "folder" msgstr "mapp" -#: js/files.js:776 +#: js/files.js:780 msgid "folders" msgstr "mappar" -#: js/files.js:784 +#: js/files.js:788 msgid "file" msgstr "fil" -#: js/files.js:786 +#: js/files.js:790 msgid "files" msgstr "filer" +#: js/files.js:834 +msgid "seconds ago" +msgstr "sekunder sedan" + +#: js/files.js:835 +msgid "minute ago" +msgstr "minut sedan" + +#: js/files.js:836 +msgid "minutes ago" +msgstr "minuter sedan" + +#: js/files.js:839 +msgid "today" +msgstr "i dag" + +#: js/files.js:840 +msgid "yesterday" +msgstr "i går" + +#: js/files.js:841 +msgid "days ago" +msgstr "dagar sedan" + +#: js/files.js:842 +msgid "last month" +msgstr "förra månaden" + +#: js/files.js:844 +msgid "months ago" +msgstr "månader sedan" + +#: js/files.js:845 +msgid "last year" +msgstr "förra året" + +#: js/files.js:846 +msgid "years ago" +msgstr "år sedan" + #: templates/admin.php:5 msgid "File handling" msgstr "Filhantering" @@ -202,7 +266,7 @@ msgstr "Mapp" msgid "From url" msgstr "Från webbadress" -#: templates/index.php:21 +#: templates/index.php:20 msgid "Upload" msgstr "Ladda upp" @@ -214,10 +278,6 @@ msgstr "Avbryt uppladdning" msgid "Nothing in here. Upload something!" msgstr "Ingenting här. Ladda upp något!" -#: templates/index.php:48 -msgid "Name" -msgstr "Namn" - #: templates/index.php:50 msgid "Share" msgstr "Dela" diff --git a/l10n/sv/files_sharing.po b/l10n/sv/files_sharing.po index 1888512788..8b3fffa739 100644 --- a/l10n/sv/files_sharing.po +++ b/l10n/sv/files_sharing.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-08-31 08:24+0000\n" +"POT-Creation-Date: 2012-09-24 02:01+0200\n" +"PO-Revision-Date: 2012-09-23 11:37+0000\n" "Last-Translator: Magnus Höglund \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: sv\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 msgid "Password" @@ -26,14 +26,24 @@ msgstr "Lösenord" msgid "Submit" msgstr "Skicka" -#: templates/public.php:9 templates/public.php:19 +#: templates/public.php:9 +#, php-format +msgid "%s shared the folder %s with you" +msgstr "%s delade mappen %s med dig" + +#: templates/public.php:11 +#, php-format +msgid "%s shared the file %s with you" +msgstr "%s delade filen %s med dig" + +#: templates/public.php:14 templates/public.php:30 msgid "Download" msgstr "Ladda ner" -#: templates/public.php:18 +#: templates/public.php:29 msgid "No preview available for" msgstr "Ingen förhandsgranskning tillgänglig för" -#: templates/public.php:23 +#: templates/public.php:37 msgid "web services under your control" msgstr "webbtjänster under din kontroll" diff --git a/l10n/sv/files_versions.po b/l10n/sv/files_versions.po index 0dab4ba976..a926036b89 100644 --- a/l10n/sv/files_versions.po +++ b/l10n/sv/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" -"PO-Revision-Date: 2012-09-17 00:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-24 02:01+0200\n" +"PO-Revision-Date: 2012-09-23 11:20+0000\n" +"Last-Translator: Magnus Höglund \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,6 +22,10 @@ msgstr "" msgid "Expire all versions" msgstr "Upphör alla versioner" +#: js/versions.js:16 +msgid "History" +msgstr "Historik" + #: templates/settings-personal.php:4 msgid "Versions" msgstr "Versioner" @@ -32,8 +36,8 @@ msgstr "Detta kommer att radera alla befintliga säkerhetskopior av dina filer" #: templates/settings.php:3 msgid "Files Versioning" -msgstr "" +msgstr "Versionshantering av filer" #: templates/settings.php:4 msgid "Enable" -msgstr "" +msgstr "Aktivera" diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index b079b0d28f..5cdb2f9b2e 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/settings.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:03+0200\n" -"PO-Revision-Date: 2012-09-17 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-20 02:05+0200\n" +"PO-Revision-Date: 2012-09-19 05:59+0000\n" +"Last-Translator: Magnus Höglund \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -41,7 +41,7 @@ msgstr "Gruppen finns redan" msgid "Unable to add group" msgstr "Kan inte lägga till grupp" -#: ajax/enableapp.php:13 +#: ajax/enableapp.php:14 msgid "Could not enable app. " msgstr "Kunde inte aktivera appen." @@ -83,15 +83,11 @@ msgstr "Kan inte lägga till användare i gruppen %s" msgid "Unable to remove user from group %s" msgstr "Kan inte radera användare från gruppen %s" -#: js/apps.js:18 -msgid "Error" -msgstr "Fel" - -#: js/apps.js:39 js/apps.js:73 +#: js/apps.js:27 js/apps.js:61 msgid "Disable" msgstr "Deaktivera" -#: js/apps.js:39 js/apps.js:62 +#: js/apps.js:27 js/apps.js:50 msgid "Enable" msgstr "Aktivera" @@ -122,7 +118,7 @@ msgstr "Cron" #: templates/admin.php:37 msgid "Execute one task with each page loaded" -msgstr "" +msgstr "Exekvera en uppgift vid varje sidladdning" #: templates/admin.php:43 msgid "" @@ -134,11 +130,11 @@ msgstr "cron.php är registrerad som en webcron-tjänst. Anropa cron.php sidan i msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "" +msgstr "Använd system-tjänsten cron. Anropa filen cron.php i ownCloud-mappen via ett cronjobb varje minut." #: templates/admin.php:56 msgid "Sharing" -msgstr "" +msgstr "Dela" #: templates/admin.php:61 msgid "Enable Share API" @@ -231,12 +227,9 @@ msgid "Answer" msgstr "Svar" #: templates/personal.php:8 -msgid "You use" -msgstr "Du använder" - -#: templates/personal.php:8 -msgid "of the available" -msgstr "av tillgängliga" +#, php-format +msgid "You have used %s of the available %s" +msgstr "Du har använt %s av tillgängliga %s" #: templates/personal.php:12 msgid "Desktop and Mobile Syncing Clients" @@ -247,7 +240,7 @@ msgid "Download" msgstr "Ladda ner" #: templates/personal.php:19 -msgid "Your password got changed" +msgid "Your password was changed" msgstr "Ditt lösenord har ändrats" #: templates/personal.php:20 diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index e33dd23fde..c68796eef7 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" +"POT-Creation-Date: 2012-09-30 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -29,58 +29,62 @@ msgstr "" msgid "This category already exists: " msgstr "" -#: js/js.js:214 templates/layout.user.php:54 templates/layout.user.php:55 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "" -#: js/js.js:642 +#: js/js.js:645 msgid "January" msgstr "" -#: js/js.js:642 +#: js/js.js:645 msgid "February" msgstr "" -#: js/js.js:642 +#: js/js.js:645 msgid "March" msgstr "" -#: js/js.js:642 +#: js/js.js:645 msgid "April" msgstr "" -#: js/js.js:642 +#: js/js.js:645 msgid "May" msgstr "" -#: js/js.js:642 +#: js/js.js:645 msgid "June" msgstr "" -#: js/js.js:643 +#: js/js.js:646 msgid "July" msgstr "" -#: js/js.js:643 +#: js/js.js:646 msgid "August" msgstr "" -#: js/js.js:643 +#: js/js.js:646 msgid "September" msgstr "" -#: js/js.js:643 +#: js/js.js:646 msgid "October" msgstr "" -#: js/js.js:643 +#: js/js.js:646 msgid "November" msgstr "" -#: js/js.js:643 +#: js/js.js:646 msgid "December" msgstr "" +#: js/oc-dialogs.js:123 +msgid "Choose" +msgstr "" + #: js/oc-dialogs.js:143 js/oc-dialogs.js:163 msgid "Cancel" msgstr "" @@ -101,10 +105,119 @@ msgstr "" msgid "No categories selected for deletion." msgstr "" -#: js/oc-vcategories.js:68 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 +#: js/share.js:501 msgid "Error" msgstr "" +#: js/share.js:103 +msgid "Error while sharing" +msgstr "" + +#: js/share.js:114 +msgid "Error while unsharing" +msgstr "" + +#: js/share.js:121 +msgid "Error while changing permissions" +msgstr "" + +#: js/share.js:130 +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" +msgstr "" + +#: js/share.js:132 +msgid "Shared with you by" +msgstr "" + +#: js/share.js:137 +msgid "Share with" +msgstr "" + +#: js/share.js:142 +msgid "Share with link" +msgstr "" + +#: js/share.js:143 +msgid "Password protect" +msgstr "" + +#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +msgid "Password" +msgstr "" + +#: js/share.js:152 +msgid "Set expiration date" +msgstr "" + +#: js/share.js:153 +msgid "Expiration date" +msgstr "" + +#: js/share.js:185 +msgid "Share via email:" +msgstr "" + +#: js/share.js:187 +msgid "No people found" +msgstr "" + +#: js/share.js:214 +msgid "Resharing is not allowed" +msgstr "" + +#: js/share.js:250 +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" +msgstr "" + +#: js/share.js:271 +msgid "Unshare" +msgstr "" + +#: js/share.js:279 +msgid "can edit" +msgstr "" + +#: js/share.js:281 +msgid "access control" +msgstr "" + +#: js/share.js:284 +msgid "create" +msgstr "" + +#: js/share.js:287 +msgid "update" +msgstr "" + +#: js/share.js:290 +msgid "delete" +msgstr "" + +#: js/share.js:293 +msgid "share" +msgstr "" + +#: js/share.js:317 js/share.js:476 +msgid "Password protected" +msgstr "" + +#: js/share.js:489 +msgid "Error unsetting expiration date" +msgstr "" + +#: js/share.js:501 +msgid "Error setting expiration date" +msgstr "" + #: lostpassword/index.php:26 msgid "ownCloud password reset" msgstr "" @@ -130,7 +243,7 @@ msgstr "" msgid "Username" msgstr "" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:14 msgid "Request reset" msgstr "" @@ -190,10 +303,6 @@ msgstr "" msgid "Create an admin account" msgstr "" -#: templates/installation.php:30 templates/login.php:13 -msgid "Password" -msgstr "" - #: templates/installation.php:36 msgid "Advanced" msgstr "" @@ -239,7 +348,7 @@ msgstr "" msgid "web services under your control" msgstr "" -#: templates/layout.user.php:39 +#: templates/layout.user.php:34 msgid "Log out" msgstr "" @@ -247,11 +356,11 @@ msgstr "" msgid "Lost your password?" msgstr "" -#: templates/login.php:17 +#: templates/login.php:16 msgid "remember" msgstr "" -#: templates/login.php:18 +#: templates/login.php:17 msgid "Log in" msgstr "" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index b1aa09a252..ed6ab3395c 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" +"POT-Creation-Date: 2012-09-30 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -59,39 +59,43 @@ msgstr "" msgid "Delete" msgstr "" -#: js/filelist.js:186 js/filelist.js:188 +#: js/fileactions.js:182 +msgid "Rename" +msgstr "" + +#: js/filelist.js:190 js/filelist.js:192 msgid "already exists" msgstr "" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "replace" msgstr "" -#: js/filelist.js:186 +#: js/filelist.js:190 msgid "suggest name" msgstr "" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "cancel" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 +#: js/filelist.js:239 js/filelist.js:241 msgid "replaced" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:239 js/filelist.js:241 js/filelist.js:273 js/filelist.js:275 msgid "undo" msgstr "" -#: js/filelist.js:237 +#: js/filelist.js:241 msgid "with" msgstr "" -#: js/filelist.js:268 +#: js/filelist.js:273 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:275 msgid "deleted" msgstr "" @@ -107,47 +111,107 @@ msgstr "" msgid "Upload Error" msgstr "" -#: js/files.js:236 js/files.js:341 js/files.js:370 +#: js/files.js:236 js/files.js:341 js/files.js:371 msgid "Pending" msgstr "" -#: js/files.js:355 +#: js/files.js:256 +msgid "1 file uploading" +msgstr "" + +#: js/files.js:259 js/files.js:304 js/files.js:319 +msgid "files uploading" +msgstr "" + +#: js/files.js:322 js/files.js:355 msgid "Upload cancelled." msgstr "" -#: js/files.js:423 +#: js/files.js:424 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:493 +#: js/files.js:494 msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:748 templates/index.php:56 +#: js/files.js:668 +msgid "files scanned" +msgstr "" + +#: js/files.js:676 +msgid "error while scanning" +msgstr "" + +#: js/files.js:749 templates/index.php:48 +msgid "Name" +msgstr "" + +#: js/files.js:750 templates/index.php:56 msgid "Size" msgstr "" -#: js/files.js:749 templates/index.php:58 +#: js/files.js:751 templates/index.php:58 msgid "Modified" msgstr "" -#: js/files.js:776 +#: js/files.js:778 msgid "folder" msgstr "" -#: js/files.js:778 +#: js/files.js:780 msgid "folders" msgstr "" -#: js/files.js:786 +#: js/files.js:788 msgid "file" msgstr "" -#: js/files.js:788 +#: js/files.js:790 msgid "files" msgstr "" +#: js/files.js:834 +msgid "seconds ago" +msgstr "" + +#: js/files.js:835 +msgid "minute ago" +msgstr "" + +#: js/files.js:836 +msgid "minutes ago" +msgstr "" + +#: js/files.js:839 +msgid "today" +msgstr "" + +#: js/files.js:840 +msgid "yesterday" +msgstr "" + +#: js/files.js:841 +msgid "days ago" +msgstr "" + +#: js/files.js:842 +msgid "last month" +msgstr "" + +#: js/files.js:844 +msgid "months ago" +msgstr "" + +#: js/files.js:845 +msgid "last year" +msgstr "" + +#: js/files.js:846 +msgid "years ago" +msgstr "" + #: templates/admin.php:5 msgid "File handling" msgstr "" @@ -196,7 +260,7 @@ msgstr "" msgid "From url" msgstr "" -#: templates/index.php:21 +#: templates/index.php:20 msgid "Upload" msgstr "" @@ -208,10 +272,6 @@ msgstr "" msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:48 -msgid "Name" -msgstr "" - #: templates/index.php:50 msgid "Share" msgstr "" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 0df6985522..a485c2fe9f 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" +"POT-Creation-Date: 2012-09-30 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index 8d42a6afa7..c47aea1111 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" +"POT-Creation-Date: 2012-09-30 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -61,22 +61,22 @@ msgstr "" msgid "Users" msgstr "" -#: templates/settings.php:77 templates/settings.php:96 +#: templates/settings.php:77 templates/settings.php:107 msgid "Delete" msgstr "" -#: templates/settings.php:88 -msgid "SSL root certificates" -msgstr "" - -#: templates/settings.php:102 -msgid "Import Root Certificate" -msgstr "" - -#: templates/settings.php:108 +#: templates/settings.php:87 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:109 +#: templates/settings.php:88 msgid "Allow users to mount their own external storage" msgstr "" + +#: templates/settings.php:99 +msgid "SSL root certificates" +msgstr "" + +#: templates/settings.php:113 +msgid "Import Root Certificate" +msgstr "" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index 35dd588cbf..b709e3dee2 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" +"POT-Creation-Date: 2012-09-30 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -25,14 +25,24 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 templates/public.php:19 +#: templates/public.php:9 +#, php-format +msgid "%s shared the folder %s with you" +msgstr "" + +#: templates/public.php:11 +#, php-format +msgid "%s shared the file %s with you" +msgstr "" + +#: templates/public.php:14 templates/public.php:30 msgid "Download" msgstr "" -#: templates/public.php:18 +#: templates/public.php:29 msgid "No preview available for" msgstr "" -#: templates/public.php:25 +#: templates/public.php:37 msgid "web services under your control" msgstr "" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index b1b3317462..881252cfd3 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" +"POT-Creation-Date: 2012-09-30 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -21,6 +21,10 @@ msgstr "" msgid "Expire all versions" msgstr "" +#: js/versions.js:16 +msgid "History" +msgstr "" + #: templates/settings-personal.php:4 msgid "Versions" msgstr "" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index 9ac5f5f69f..63c8b0486e 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" +"POT-Creation-Date: 2012-09-30 02:03+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -41,19 +41,19 @@ msgstr "" msgid "Admin" msgstr "" -#: files.php:280 +#: files.php:327 msgid "ZIP download is turned off." msgstr "" -#: files.php:281 +#: files.php:328 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:281 files.php:306 +#: files.php:328 files.php:353 msgid "Back to Files" msgstr "" -#: files.php:305 +#: files.php:352 msgid "Selected files too large to generate zip file." msgstr "" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 98e8f618fd..2f95688319 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"POT-Creation-Date: 2012-09-30 02:03+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -34,7 +34,7 @@ msgstr "" msgid "Unable to add group" msgstr "" -#: ajax/enableapp.php:13 +#: ajax/enableapp.php:14 msgid "Could not enable app. " msgstr "" @@ -76,15 +76,11 @@ msgstr "" msgid "Unable to remove user from group %s" msgstr "" -#: js/apps.js:18 -msgid "Error" -msgstr "" - -#: js/apps.js:39 js/apps.js:73 +#: js/apps.js:27 js/apps.js:61 msgid "Disable" msgstr "" -#: js/apps.js:39 js/apps.js:62 +#: js/apps.js:27 js/apps.js:50 msgid "Enable" msgstr "" @@ -224,11 +220,8 @@ msgid "Answer" msgstr "" #: templates/personal.php:8 -msgid "You use" -msgstr "" - -#: templates/personal.php:8 -msgid "of the available" +#, php-format +msgid "You have used %s of the available %s" msgstr "" #: templates/personal.php:12 @@ -240,7 +233,7 @@ msgid "Download" msgstr "" #: templates/personal.php:19 -msgid "Your password got changed" +msgid "Your password was changed" msgstr "" #: templates/personal.php:20 diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 6c8fec9d6a..45966a56a1 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" +"POT-Creation-Date: 2012-09-30 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/th_TH/core.po b/l10n/th_TH/core.po index 57ee6a0d22..24f87167eb 100644 --- a/l10n/th_TH/core.po +++ b/l10n/th_TH/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -31,58 +31,62 @@ msgstr "ไม่มีหมวดหมู่ที่ต้องการเ msgid "This category already exists: " msgstr "หมวดหมู่นี้มีอยู่แล้ว: " -#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "ตั้งค่า" -#: js/js.js:593 +#: js/js.js:645 msgid "January" msgstr "มกราคม" -#: js/js.js:593 +#: js/js.js:645 msgid "February" msgstr "กุมภาพันธ์" -#: js/js.js:593 +#: js/js.js:645 msgid "March" msgstr "มีนาคม" -#: js/js.js:593 +#: js/js.js:645 msgid "April" msgstr "เมษายน" -#: js/js.js:593 +#: js/js.js:645 msgid "May" msgstr "พฤษภาคม" -#: js/js.js:593 +#: js/js.js:645 msgid "June" msgstr "มิถุนายน" -#: js/js.js:594 +#: js/js.js:646 msgid "July" msgstr "กรกฏาคม" -#: js/js.js:594 +#: js/js.js:646 msgid "August" msgstr "สิงหาคม" -#: js/js.js:594 +#: js/js.js:646 msgid "September" msgstr "กันยายน" -#: js/js.js:594 +#: js/js.js:646 msgid "October" msgstr "ตุลาคม" -#: js/js.js:594 +#: js/js.js:646 msgid "November" msgstr "พฤศจิกายน" -#: js/js.js:594 +#: js/js.js:646 msgid "December" msgstr "ธันวาคม" +#: js/oc-dialogs.js:123 +msgid "Choose" +msgstr "เลือก" + #: js/oc-dialogs.js:143 js/oc-dialogs.js:163 msgid "Cancel" msgstr "ยกเลิก" @@ -103,10 +107,119 @@ msgstr "ตกลง" msgid "No categories selected for deletion." msgstr "ยังไม่ได้เลือกหมวดหมู่ที่ต้องการลบ" -#: js/oc-vcategories.js:68 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 +#: js/share.js:501 msgid "Error" msgstr "พบข้อผิดพลาด" +#: js/share.js:103 +msgid "Error while sharing" +msgstr "เกิดข้อผิดพลาดในระหว่างการแชร์ข้อมูล" + +#: js/share.js:114 +msgid "Error while unsharing" +msgstr "เกิดข้อผิดพลาดในการยกเลิกการแชร์ข้อมูล" + +#: js/share.js:121 +msgid "Error while changing permissions" +msgstr "เกิดข้อผิดพลาดในการเปลี่ยนสิทธิ์การเข้าใช้งาน" + +#: js/share.js:130 +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" +msgstr "" + +#: js/share.js:132 +msgid "Shared with you by" +msgstr "" + +#: js/share.js:137 +msgid "Share with" +msgstr "แชร์ให้กับ" + +#: js/share.js:142 +msgid "Share with link" +msgstr "แชร์ด้วยลิงก์" + +#: js/share.js:143 +msgid "Password protect" +msgstr "ใส่รหัสผ่านไว้" + +#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +msgid "Password" +msgstr "รหัสผ่าน" + +#: js/share.js:152 +msgid "Set expiration date" +msgstr "กำหนดวันที่หมดอายุ" + +#: js/share.js:153 +msgid "Expiration date" +msgstr "วันที่หมดอายุ" + +#: js/share.js:185 +msgid "Share via email:" +msgstr "" + +#: js/share.js:187 +msgid "No people found" +msgstr "ไม่พบบุคคลที่ต้องการ" + +#: js/share.js:214 +msgid "Resharing is not allowed" +msgstr "ไม่อนุญาตให้แชร์ข้อมูลซ้ำได้" + +#: js/share.js:250 +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" +msgstr "" + +#: js/share.js:271 +msgid "Unshare" +msgstr "ยกเลิกการแชร์" + +#: js/share.js:279 +msgid "can edit" +msgstr "สามารถแก้ไข" + +#: js/share.js:281 +msgid "access control" +msgstr "ระดับควบคุมการเข้าใช้งาน" + +#: js/share.js:284 +msgid "create" +msgstr "สร้าง" + +#: js/share.js:287 +msgid "update" +msgstr "อัพเดท" + +#: js/share.js:290 +msgid "delete" +msgstr "ลบ" + +#: js/share.js:293 +msgid "share" +msgstr "แชร์" + +#: js/share.js:317 js/share.js:476 +msgid "Password protected" +msgstr "ใส่รหัสผ่านไว้" + +#: js/share.js:489 +msgid "Error unsetting expiration date" +msgstr "เกิดข้อผิดพลาดในการยกเลิกการตั้งค่าวันที่หมดอายุ" + +#: js/share.js:501 +msgid "Error setting expiration date" +msgstr "เกิดข้อผิดพลาดในการตั้งค่าวันที่หมดอายุ" + #: lostpassword/index.php:26 msgid "ownCloud password reset" msgstr "รีเซ็ตรหัสผ่าน ownCloud" @@ -192,10 +305,6 @@ msgstr "เพิ่ม" msgid "Create an admin account" msgstr "สร้าง บัญชีผู้ดูแลระบบ" -#: templates/installation.php:30 templates/login.php:13 -msgid "Password" -msgstr "รหัสผ่าน" - #: templates/installation.php:36 msgid "Advanced" msgstr "ขั้นสูง" @@ -237,11 +346,11 @@ msgstr "Database host" msgid "Finish setup" msgstr "ติดตั้งเรียบร้อยแล้ว" -#: templates/layout.guest.php:42 +#: templates/layout.guest.php:36 msgid "web services under your control" msgstr "web services under your control" -#: templates/layout.user.php:45 +#: templates/layout.user.php:34 msgid "Log out" msgstr "ออกจากระบบ" diff --git a/l10n/th_TH/files.po b/l10n/th_TH/files.po index 1ade0abea9..51624d8fc1 100644 --- a/l10n/th_TH/files.po +++ b/l10n/th_TH/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-09 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 03:31+0000\n" +"POT-Creation-Date: 2012-09-27 02:01+0200\n" +"PO-Revision-Date: 2012-09-26 11:27+0000\n" "Last-Translator: AriesAnywhere Anywhere \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -61,39 +61,43 @@ msgstr "ยกเลิกการแชร์ข้อมูล" msgid "Delete" msgstr "ลบ" -#: js/filelist.js:186 js/filelist.js:188 +#: js/fileactions.js:182 +msgid "Rename" +msgstr "เปลี่ยนชื่อ" + +#: js/filelist.js:190 js/filelist.js:192 msgid "already exists" msgstr "มีอยู่แล้ว" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "replace" msgstr "แทนที่" -#: js/filelist.js:186 +#: js/filelist.js:190 msgid "suggest name" msgstr "แนะนำชื่อ" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "cancel" msgstr "ยกเลิก" -#: js/filelist.js:235 js/filelist.js:237 +#: js/filelist.js:239 js/filelist.js:241 msgid "replaced" msgstr "แทนที่แล้ว" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:239 js/filelist.js:241 js/filelist.js:273 js/filelist.js:275 msgid "undo" msgstr "เลิกทำ" -#: js/filelist.js:237 +#: js/filelist.js:241 msgid "with" msgstr "กับ" -#: js/filelist.js:268 +#: js/filelist.js:273 msgid "unshared" msgstr "ยกเลิกการแชร์ข้อมูลแล้ว" -#: js/filelist.js:270 +#: js/filelist.js:275 msgid "deleted" msgstr "ลบแล้ว" @@ -109,47 +113,107 @@ msgstr "ไม่สามารถอัพโหลดไฟล์ของค msgid "Upload Error" msgstr "เกิดข้อผิดพลาดในการอัพโหลด" -#: js/files.js:236 js/files.js:341 js/files.js:370 +#: js/files.js:236 js/files.js:341 js/files.js:371 msgid "Pending" msgstr "อยู่ระหว่างดำเนินการ" -#: js/files.js:355 +#: js/files.js:256 +msgid "1 file uploading" +msgstr "กำลังอัพโหลดไฟล์ 1 ไฟล์" + +#: js/files.js:259 js/files.js:304 js/files.js:319 +msgid "files uploading" +msgstr "การอัพโหลดไฟล์" + +#: js/files.js:322 js/files.js:355 msgid "Upload cancelled." msgstr "การอัพโหลดถูกยกเลิก" -#: js/files.js:423 +#: js/files.js:424 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "การอัพโหลดไฟล์กำลังอยู่ในระหว่างดำเนินการ การออกจากหน้าเว็บนี้จะทำให้การอัพโหลดถูกยกเลิก" -#: js/files.js:493 +#: js/files.js:494 msgid "Invalid name, '/' is not allowed." msgstr "ชื่อที่ใช้ไม่ถูกต้อง '/' ไม่อนุญาตให้ใช้งาน" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:668 +msgid "files scanned" +msgstr "ไฟล์ต่างๆได้รับการสแกนแล้ว" + +#: js/files.js:676 +msgid "error while scanning" +msgstr "พบข้อผิดพลาดในระหว่างการสแกนไฟล์" + +#: js/files.js:749 templates/index.php:48 +msgid "Name" +msgstr "ชื่อ" + +#: js/files.js:750 templates/index.php:56 msgid "Size" msgstr "ขนาด" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:751 templates/index.php:58 msgid "Modified" msgstr "ปรับปรุงล่าสุด" -#: js/files.js:774 +#: js/files.js:778 msgid "folder" msgstr "โฟลเดอร์" -#: js/files.js:776 +#: js/files.js:780 msgid "folders" msgstr "โฟลเดอร์" -#: js/files.js:784 +#: js/files.js:788 msgid "file" msgstr "ไฟล์" -#: js/files.js:786 +#: js/files.js:790 msgid "files" msgstr "ไฟล์" +#: js/files.js:834 +msgid "seconds ago" +msgstr "วินาที ก่อนหน้านี้" + +#: js/files.js:835 +msgid "minute ago" +msgstr "นาที ที่ผ่านมา" + +#: js/files.js:836 +msgid "minutes ago" +msgstr "นาที ที่ผ่านมา" + +#: js/files.js:839 +msgid "today" +msgstr "วันนี้" + +#: js/files.js:840 +msgid "yesterday" +msgstr "เมื่อวานนี้" + +#: js/files.js:841 +msgid "days ago" +msgstr "วัน ที่ผ่านมา" + +#: js/files.js:842 +msgid "last month" +msgstr "เดือนที่แล้ว" + +#: js/files.js:844 +msgid "months ago" +msgstr "เดือน ที่ผ่านมา" + +#: js/files.js:845 +msgid "last year" +msgstr "ปีที่แล้ว" + +#: js/files.js:846 +msgid "years ago" +msgstr "ปี ที่ผ่านมา" + #: templates/admin.php:5 msgid "File handling" msgstr "การจัดกาไฟล์" @@ -198,7 +262,7 @@ msgstr "แฟ้มเอกสาร" msgid "From url" msgstr "จาก url" -#: templates/index.php:21 +#: templates/index.php:20 msgid "Upload" msgstr "อัพโหลด" @@ -210,10 +274,6 @@ msgstr "ยกเลิกการอัพโหลด" msgid "Nothing in here. Upload something!" msgstr "ยังไม่มีไฟล์ใดๆอยู่ที่นี่ กรุณาอัพโหลดไฟล์!" -#: templates/index.php:48 -msgid "Name" -msgstr "ชื่อ" - #: templates/index.php:50 msgid "Share" msgstr "แชร์" diff --git a/l10n/th_TH/files_sharing.po b/l10n/th_TH/files_sharing.po index 27aa8b2872..ca52d4c444 100644 --- a/l10n/th_TH/files_sharing.po +++ b/l10n/th_TH/files_sharing.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-08-31 17:05+0000\n" +"POT-Creation-Date: 2012-09-23 02:01+0200\n" +"PO-Revision-Date: 2012-09-22 11:10+0000\n" "Last-Translator: AriesAnywhere Anywhere \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: th_TH\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: templates/authenticate.php:4 msgid "Password" @@ -26,14 +26,24 @@ msgstr "รหัสผ่าน" msgid "Submit" msgstr "ส่ง" -#: templates/public.php:9 templates/public.php:19 +#: templates/public.php:9 +#, php-format +msgid "%s shared the folder %s with you" +msgstr "%s ได้แชร์โฟลเดอร์ %s ให้กับคุณ" + +#: templates/public.php:11 +#, php-format +msgid "%s shared the file %s with you" +msgstr "%s ได้แชร์ไฟล์ %s ให้กับคุณ" + +#: templates/public.php:14 templates/public.php:30 msgid "Download" msgstr "ดาวน์โหลด" -#: templates/public.php:18 +#: templates/public.php:29 msgid "No preview available for" msgstr "ไม่สามารถดูตัวอย่างได้สำหรับ" -#: templates/public.php:23 +#: templates/public.php:37 msgid "web services under your control" msgstr "เว็บเซอร์วิสที่คุณควบคุมการใช้งานได้" diff --git a/l10n/th_TH/files_versions.po b/l10n/th_TH/files_versions.po index 2c49fa9e76..7582be9f67 100644 --- a/l10n/th_TH/files_versions.po +++ b/l10n/th_TH/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" -"PO-Revision-Date: 2012-09-17 00:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-23 02:01+0200\n" +"PO-Revision-Date: 2012-09-22 11:09+0000\n" +"Last-Translator: AriesAnywhere Anywhere \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,6 +22,10 @@ msgstr "" msgid "Expire all versions" msgstr "หมดอายุทุกรุ่น" +#: js/versions.js:16 +msgid "History" +msgstr "ประวัติ" + #: templates/settings-personal.php:4 msgid "Versions" msgstr "รุ่น" @@ -32,8 +36,8 @@ msgstr "นี่จะเป็นลบทิ้งไฟล์รุ่นท #: templates/settings.php:3 msgid "Files Versioning" -msgstr "" +msgstr "การกำหนดเวอร์ชั่นของไฟล์" #: templates/settings.php:4 msgid "Enable" -msgstr "" +msgstr "เปิดใช้งาน" diff --git a/l10n/th_TH/settings.po b/l10n/th_TH/settings.po index 1abfb4ff29..f892ef3aeb 100644 --- a/l10n/th_TH/settings.po +++ b/l10n/th_TH/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:03+0200\n" -"PO-Revision-Date: 2012-09-17 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-20 02:05+0200\n" +"PO-Revision-Date: 2012-09-19 17:08+0000\n" +"Last-Translator: AriesAnywhere Anywhere \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -37,7 +37,7 @@ msgstr "มีกลุ่มดังกล่าวอยู่ในระบ msgid "Unable to add group" msgstr "ไม่สามารถเพิ่มกลุ่มได้" -#: ajax/enableapp.php:13 +#: ajax/enableapp.php:14 msgid "Could not enable app. " msgstr "ไม่สามารถเปิดใช้งานแอปได้" @@ -79,15 +79,11 @@ msgstr "ไม่สามารถเพิ่มผู้ใช้งานเ msgid "Unable to remove user from group %s" msgstr "ไม่สามารถลบผู้ใช้งานออกจากกลุ่ม %s ได้" -#: js/apps.js:18 -msgid "Error" -msgstr "ข้อผิดพลาด" - -#: js/apps.js:39 js/apps.js:73 +#: js/apps.js:27 js/apps.js:61 msgid "Disable" msgstr "ปิดใช้งาน" -#: js/apps.js:39 js/apps.js:62 +#: js/apps.js:27 js/apps.js:50 msgid "Enable" msgstr "เปิดใช้งาน" @@ -118,7 +114,7 @@ msgstr "Cron" #: templates/admin.php:37 msgid "Execute one task with each page loaded" -msgstr "" +msgstr "ประมวลคำสั่งหนึ่งงานในแต่ละครั้งที่มีการโหลดหน้าเว็บ" #: templates/admin.php:43 msgid "" @@ -130,11 +126,11 @@ msgstr "cron.php ได้รับการลงทะเบียนแล้ msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "" +msgstr "ใช้บริการ cron จากระบบ เรียกไฟล์ cron.php ในโฟลเดอร์ owncloud ผ่านทาง cronjob ของระบบหลังจากนี้สักครู่" #: templates/admin.php:56 msgid "Sharing" -msgstr "" +msgstr "การแชร์ข้อมูล" #: templates/admin.php:61 msgid "Enable Share API" @@ -227,12 +223,9 @@ msgid "Answer" msgstr "คำตอบ" #: templates/personal.php:8 -msgid "You use" -msgstr "คุณใช้พื้นที่ไป" - -#: templates/personal.php:8 -msgid "of the available" -msgstr "จากจำนวนที่ใช้ได้" +#, php-format +msgid "You have used %s of the available %s" +msgstr "คุณได้ใช้ %s จากที่สามารถใช้ได้ %s" #: templates/personal.php:12 msgid "Desktop and Mobile Syncing Clients" @@ -243,8 +236,8 @@ msgid "Download" msgstr "ดาวน์โหลด" #: templates/personal.php:19 -msgid "Your password got changed" -msgstr "เปลี่ยนรหัสผ่านเรียบร้อยแล้ว" +msgid "Your password was changed" +msgstr "รหัสผ่านของคุณถูกเปลี่ยนแล้ว" #: templates/personal.php:20 msgid "Unable to change your password" diff --git a/l10n/tr/core.po b/l10n/tr/core.po index a715d982b6..0fdd0fc3b3 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -32,58 +32,62 @@ msgstr "Eklenecek kategori yok?" msgid "This category already exists: " msgstr "Bu kategori zaten mevcut: " -#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Ayarlar" -#: js/js.js:593 +#: js/js.js:645 msgid "January" msgstr "Ocak" -#: js/js.js:593 +#: js/js.js:645 msgid "February" msgstr "Şubat" -#: js/js.js:593 +#: js/js.js:645 msgid "March" msgstr "Mart" -#: js/js.js:593 +#: js/js.js:645 msgid "April" msgstr "Nisan" -#: js/js.js:593 +#: js/js.js:645 msgid "May" msgstr "Mayıs" -#: js/js.js:593 +#: js/js.js:645 msgid "June" msgstr "Haziran" -#: js/js.js:594 +#: js/js.js:646 msgid "July" msgstr "Temmuz" -#: js/js.js:594 +#: js/js.js:646 msgid "August" msgstr "Ağustos" -#: js/js.js:594 +#: js/js.js:646 msgid "September" msgstr "Eylül" -#: js/js.js:594 +#: js/js.js:646 msgid "October" msgstr "Ekim" -#: js/js.js:594 +#: js/js.js:646 msgid "November" msgstr "Kasım" -#: js/js.js:594 +#: js/js.js:646 msgid "December" msgstr "Aralık" +#: js/oc-dialogs.js:123 +msgid "Choose" +msgstr "" + #: js/oc-dialogs.js:143 js/oc-dialogs.js:163 msgid "Cancel" msgstr "İptal" @@ -104,10 +108,119 @@ msgstr "Tamam" msgid "No categories selected for deletion." msgstr "Silmek için bir kategori seçilmedi" -#: js/oc-vcategories.js:68 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 +#: js/share.js:501 msgid "Error" msgstr "Hata" +#: js/share.js:103 +msgid "Error while sharing" +msgstr "" + +#: js/share.js:114 +msgid "Error while unsharing" +msgstr "" + +#: js/share.js:121 +msgid "Error while changing permissions" +msgstr "" + +#: js/share.js:130 +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" +msgstr "" + +#: js/share.js:132 +msgid "Shared with you by" +msgstr "" + +#: js/share.js:137 +msgid "Share with" +msgstr "" + +#: js/share.js:142 +msgid "Share with link" +msgstr "" + +#: js/share.js:143 +msgid "Password protect" +msgstr "" + +#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +msgid "Password" +msgstr "Parola" + +#: js/share.js:152 +msgid "Set expiration date" +msgstr "" + +#: js/share.js:153 +msgid "Expiration date" +msgstr "" + +#: js/share.js:185 +msgid "Share via email:" +msgstr "" + +#: js/share.js:187 +msgid "No people found" +msgstr "" + +#: js/share.js:214 +msgid "Resharing is not allowed" +msgstr "" + +#: js/share.js:250 +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" +msgstr "" + +#: js/share.js:271 +msgid "Unshare" +msgstr "" + +#: js/share.js:279 +msgid "can edit" +msgstr "" + +#: js/share.js:281 +msgid "access control" +msgstr "" + +#: js/share.js:284 +msgid "create" +msgstr "" + +#: js/share.js:287 +msgid "update" +msgstr "" + +#: js/share.js:290 +msgid "delete" +msgstr "" + +#: js/share.js:293 +msgid "share" +msgstr "" + +#: js/share.js:317 js/share.js:476 +msgid "Password protected" +msgstr "" + +#: js/share.js:489 +msgid "Error unsetting expiration date" +msgstr "" + +#: js/share.js:501 +msgid "Error setting expiration date" +msgstr "" + #: lostpassword/index.php:26 msgid "ownCloud password reset" msgstr "ownCloud parola sıfırlama" @@ -193,10 +306,6 @@ msgstr "Ekle" msgid "Create an admin account" msgstr "Bir yönetici hesabı oluşturun" -#: templates/installation.php:30 templates/login.php:13 -msgid "Password" -msgstr "Parola" - #: templates/installation.php:36 msgid "Advanced" msgstr "Gelişmiş" @@ -238,11 +347,11 @@ msgstr "Veritabanı sunucusu" msgid "Finish setup" msgstr "Kurulumu tamamla" -#: templates/layout.guest.php:42 +#: templates/layout.guest.php:36 msgid "web services under your control" msgstr "kontrolünüzdeki web servisleri" -#: templates/layout.user.php:45 +#: templates/layout.user.php:34 msgid "Log out" msgstr "Çıkış yap" diff --git a/l10n/tr/files.po b/l10n/tr/files.po index c0a9c6b876..89562bcb1f 100644 --- a/l10n/tr/files.po +++ b/l10n/tr/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-26 13:19+0200\n" +"PO-Revision-Date: 2012-09-26 11:20+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -63,39 +63,43 @@ msgstr "" msgid "Delete" msgstr "Sil" -#: js/filelist.js:186 js/filelist.js:188 +#: js/fileactions.js:182 +msgid "Rename" +msgstr "" + +#: js/filelist.js:190 js/filelist.js:192 msgid "already exists" msgstr "zaten mevcut" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "replace" msgstr "değiştir" -#: js/filelist.js:186 +#: js/filelist.js:190 msgid "suggest name" msgstr "" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "cancel" msgstr "iptal" -#: js/filelist.js:235 js/filelist.js:237 +#: js/filelist.js:239 js/filelist.js:241 msgid "replaced" msgstr "değiştirildi" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:239 js/filelist.js:241 js/filelist.js:273 js/filelist.js:275 msgid "undo" msgstr "geri al" -#: js/filelist.js:237 +#: js/filelist.js:241 msgid "with" msgstr "ile" -#: js/filelist.js:268 +#: js/filelist.js:273 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:275 msgid "deleted" msgstr "silindi" @@ -111,47 +115,107 @@ msgstr "Dosyanızın boyutu 0 byte olduğundan veya bir dizin olduğundan yükle msgid "Upload Error" msgstr "Yükleme hatası" -#: js/files.js:236 js/files.js:341 js/files.js:370 +#: js/files.js:236 js/files.js:341 js/files.js:371 msgid "Pending" msgstr "Bekliyor" -#: js/files.js:355 +#: js/files.js:256 +msgid "1 file uploading" +msgstr "" + +#: js/files.js:259 js/files.js:304 js/files.js:319 +msgid "files uploading" +msgstr "" + +#: js/files.js:322 js/files.js:355 msgid "Upload cancelled." msgstr "Yükleme iptal edildi." -#: js/files.js:423 +#: js/files.js:424 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Dosya yükleme işlemi sürüyor. Şimdi sayfadan ayrılırsanız işleminiz iptal olur." -#: js/files.js:493 +#: js/files.js:494 msgid "Invalid name, '/' is not allowed." msgstr "Geçersiz isim, '/' işaretine izin verilmiyor." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:667 +msgid "files scanned" +msgstr "" + +#: js/files.js:675 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:48 +msgid "Name" +msgstr "Ad" + +#: js/files.js:749 templates/index.php:56 msgid "Size" msgstr "Boyut" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:750 templates/index.php:58 msgid "Modified" msgstr "Değiştirilme" -#: js/files.js:774 +#: js/files.js:777 msgid "folder" msgstr "dizin" -#: js/files.js:776 +#: js/files.js:779 msgid "folders" msgstr "dizinler" -#: js/files.js:784 +#: js/files.js:787 msgid "file" msgstr "dosya" -#: js/files.js:786 +#: js/files.js:789 msgid "files" msgstr "dosyalar" +#: js/files.js:833 +msgid "seconds ago" +msgstr "" + +#: js/files.js:834 +msgid "minute ago" +msgstr "" + +#: js/files.js:835 +msgid "minutes ago" +msgstr "" + +#: js/files.js:838 +msgid "today" +msgstr "" + +#: js/files.js:839 +msgid "yesterday" +msgstr "" + +#: js/files.js:840 +msgid "days ago" +msgstr "" + +#: js/files.js:841 +msgid "last month" +msgstr "" + +#: js/files.js:843 +msgid "months ago" +msgstr "" + +#: js/files.js:844 +msgid "last year" +msgstr "" + +#: js/files.js:845 +msgid "years ago" +msgstr "" + #: templates/admin.php:5 msgid "File handling" msgstr "Dosya taşıma" @@ -200,7 +264,7 @@ msgstr "Klasör" msgid "From url" msgstr "Url'den" -#: templates/index.php:21 +#: templates/index.php:20 msgid "Upload" msgstr "Yükle" @@ -212,10 +276,6 @@ msgstr "Yüklemeyi iptal et" msgid "Nothing in here. Upload something!" msgstr "Burada hiçbir şey yok. Birşeyler yükleyin!" -#: templates/index.php:48 -msgid "Name" -msgstr "Ad" - #: templates/index.php:50 msgid "Share" msgstr "Paylaş" diff --git a/l10n/tr/files_sharing.po b/l10n/tr/files_sharing.po index 7f22432893..fbf76ec640 100644 --- a/l10n/tr/files_sharing.po +++ b/l10n/tr/files_sharing.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:04+0000\n" +"POT-Creation-Date: 2012-09-22 01:14+0200\n" +"PO-Revision-Date: 2012-09-21 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: tr\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: templates/authenticate.php:4 msgid "Password" @@ -25,14 +25,24 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 templates/public.php:19 +#: templates/public.php:9 +#, php-format +msgid "%s shared the folder %s with you" +msgstr "" + +#: templates/public.php:11 +#, php-format +msgid "%s shared the file %s with you" +msgstr "" + +#: templates/public.php:14 templates/public.php:30 msgid "Download" msgstr "" -#: templates/public.php:18 +#: templates/public.php:29 msgid "No preview available for" msgstr "" -#: templates/public.php:23 +#: templates/public.php:37 msgid "web services under your control" msgstr "" diff --git a/l10n/tr/files_versions.po b/l10n/tr/files_versions.po index b358355e28..d9aaae9d16 100644 --- a/l10n/tr/files_versions.po +++ b/l10n/tr/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" -"PO-Revision-Date: 2012-09-17 00:04+0000\n" +"POT-Creation-Date: 2012-09-22 01:14+0200\n" +"PO-Revision-Date: 2012-09-21 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -21,6 +21,10 @@ msgstr "" msgid "Expire all versions" msgstr "" +#: js/versions.js:16 +msgid "History" +msgstr "" + #: templates/settings-personal.php:4 msgid "Versions" msgstr "" diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index 3cf53f10ff..180910c3b3 100644 --- a/l10n/tr/settings.po +++ b/l10n/tr/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:03+0200\n" -"PO-Revision-Date: 2012-09-17 00:03+0000\n" +"POT-Creation-Date: 2012-09-19 02:02+0200\n" +"PO-Revision-Date: 2012-09-19 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -37,7 +37,7 @@ msgstr "" msgid "Unable to add group" msgstr "" -#: ajax/enableapp.php:13 +#: ajax/enableapp.php:14 msgid "Could not enable app. " msgstr "" @@ -79,15 +79,11 @@ msgstr "" msgid "Unable to remove user from group %s" msgstr "" -#: js/apps.js:18 -msgid "Error" -msgstr "" - -#: js/apps.js:39 js/apps.js:73 +#: js/apps.js:27 js/apps.js:61 msgid "Disable" msgstr "Etkin değil" -#: js/apps.js:39 js/apps.js:62 +#: js/apps.js:27 js/apps.js:50 msgid "Enable" msgstr "Etkin" @@ -227,12 +223,9 @@ msgid "Answer" msgstr "Cevap" #: templates/personal.php:8 -msgid "You use" -msgstr "Kullanıyorsunuz" - -#: templates/personal.php:8 -msgid "of the available" -msgstr "mevcut olandan" +#, php-format +msgid "You have used %s of the available %s" +msgstr "" #: templates/personal.php:12 msgid "Desktop and Mobile Syncing Clients" @@ -243,8 +236,8 @@ msgid "Download" msgstr "İndir" #: templates/personal.php:19 -msgid "Your password got changed" -msgstr "Parolanız değiştirildi" +msgid "Your password was changed" +msgstr "" #: templates/personal.php:20 msgid "Unable to change your password" diff --git a/l10n/uk/core.po b/l10n/uk/core.po index a544613a18..47f5aeb743 100644 --- a/l10n/uk/core.po +++ b/l10n/uk/core.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-11 02:02+0200\n" -"PO-Revision-Date: 2012-09-10 11:16+0000\n" -"Last-Translator: VicDeo \n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -32,58 +32,62 @@ msgstr "" msgid "This category already exists: " msgstr "" -#: js/js.js:214 templates/layout.user.php:54 templates/layout.user.php:55 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Налаштування" -#: js/js.js:642 +#: js/js.js:645 msgid "January" msgstr "Січень" -#: js/js.js:642 +#: js/js.js:645 msgid "February" msgstr "Лютий" -#: js/js.js:642 +#: js/js.js:645 msgid "March" msgstr "Березень" -#: js/js.js:642 +#: js/js.js:645 msgid "April" msgstr "Квітень" -#: js/js.js:642 +#: js/js.js:645 msgid "May" msgstr "Травень" -#: js/js.js:642 +#: js/js.js:645 msgid "June" msgstr "Червень" -#: js/js.js:643 +#: js/js.js:646 msgid "July" msgstr "Липень" -#: js/js.js:643 +#: js/js.js:646 msgid "August" msgstr "Серпень" -#: js/js.js:643 +#: js/js.js:646 msgid "September" msgstr "Вересень" -#: js/js.js:643 +#: js/js.js:646 msgid "October" msgstr "Жовтень" -#: js/js.js:643 +#: js/js.js:646 msgid "November" msgstr "Листопад" -#: js/js.js:643 +#: js/js.js:646 msgid "December" msgstr "Грудень" +#: js/oc-dialogs.js:123 +msgid "Choose" +msgstr "" + #: js/oc-dialogs.js:143 js/oc-dialogs.js:163 msgid "Cancel" msgstr "Відмінити" @@ -104,10 +108,119 @@ msgstr "" msgid "No categories selected for deletion." msgstr "" -#: js/oc-vcategories.js:68 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 +#: js/share.js:501 msgid "Error" msgstr "Помилка" +#: js/share.js:103 +msgid "Error while sharing" +msgstr "" + +#: js/share.js:114 +msgid "Error while unsharing" +msgstr "" + +#: js/share.js:121 +msgid "Error while changing permissions" +msgstr "" + +#: js/share.js:130 +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" +msgstr "" + +#: js/share.js:132 +msgid "Shared with you by" +msgstr "" + +#: js/share.js:137 +msgid "Share with" +msgstr "" + +#: js/share.js:142 +msgid "Share with link" +msgstr "" + +#: js/share.js:143 +msgid "Password protect" +msgstr "" + +#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +msgid "Password" +msgstr "Пароль" + +#: js/share.js:152 +msgid "Set expiration date" +msgstr "" + +#: js/share.js:153 +msgid "Expiration date" +msgstr "" + +#: js/share.js:185 +msgid "Share via email:" +msgstr "" + +#: js/share.js:187 +msgid "No people found" +msgstr "" + +#: js/share.js:214 +msgid "Resharing is not allowed" +msgstr "" + +#: js/share.js:250 +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" +msgstr "" + +#: js/share.js:271 +msgid "Unshare" +msgstr "" + +#: js/share.js:279 +msgid "can edit" +msgstr "" + +#: js/share.js:281 +msgid "access control" +msgstr "" + +#: js/share.js:284 +msgid "create" +msgstr "" + +#: js/share.js:287 +msgid "update" +msgstr "" + +#: js/share.js:290 +msgid "delete" +msgstr "" + +#: js/share.js:293 +msgid "share" +msgstr "" + +#: js/share.js:317 js/share.js:476 +msgid "Password protected" +msgstr "" + +#: js/share.js:489 +msgid "Error unsetting expiration date" +msgstr "" + +#: js/share.js:501 +msgid "Error setting expiration date" +msgstr "" + #: lostpassword/index.php:26 msgid "ownCloud password reset" msgstr "" @@ -193,10 +306,6 @@ msgstr "Додати" msgid "Create an admin account" msgstr "" -#: templates/installation.php:30 templates/login.php:13 -msgid "Password" -msgstr "Пароль" - #: templates/installation.php:36 msgid "Advanced" msgstr "" @@ -242,7 +351,7 @@ msgstr "Завершити налаштування" msgid "web services under your control" msgstr "веб-сервіс під вашим контролем" -#: templates/layout.user.php:39 +#: templates/layout.user.php:34 msgid "Log out" msgstr "Вихід" diff --git a/l10n/uk/files.po b/l10n/uk/files.po index f81ff99674..500381e7cb 100644 --- a/l10n/uk/files.po +++ b/l10n/uk/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-26 13:19+0200\n" +"PO-Revision-Date: 2012-09-26 11:20+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -61,39 +61,43 @@ msgstr "" msgid "Delete" msgstr "Видалити" -#: js/filelist.js:186 js/filelist.js:188 +#: js/fileactions.js:182 +msgid "Rename" +msgstr "" + +#: js/filelist.js:190 js/filelist.js:192 msgid "already exists" msgstr "" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "replace" msgstr "" -#: js/filelist.js:186 +#: js/filelist.js:190 msgid "suggest name" msgstr "" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "cancel" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 +#: js/filelist.js:239 js/filelist.js:241 msgid "replaced" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:239 js/filelist.js:241 js/filelist.js:273 js/filelist.js:275 msgid "undo" msgstr "відмінити" -#: js/filelist.js:237 +#: js/filelist.js:241 msgid "with" msgstr "" -#: js/filelist.js:268 +#: js/filelist.js:273 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:275 msgid "deleted" msgstr "видалені" @@ -109,47 +113,107 @@ msgstr "Неможливо завантажити ваш файл тому, що msgid "Upload Error" msgstr "Помилка завантаження" -#: js/files.js:236 js/files.js:341 js/files.js:370 +#: js/files.js:236 js/files.js:341 js/files.js:371 msgid "Pending" msgstr "Очікування" -#: js/files.js:355 +#: js/files.js:256 +msgid "1 file uploading" +msgstr "" + +#: js/files.js:259 js/files.js:304 js/files.js:319 +msgid "files uploading" +msgstr "" + +#: js/files.js:322 js/files.js:355 msgid "Upload cancelled." msgstr "Завантаження перервано." -#: js/files.js:423 +#: js/files.js:424 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:493 +#: js/files.js:494 msgid "Invalid name, '/' is not allowed." msgstr "Некоректне ім'я, '/' не дозволено." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:667 +msgid "files scanned" +msgstr "" + +#: js/files.js:675 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:48 +msgid "Name" +msgstr "Ім'я" + +#: js/files.js:749 templates/index.php:56 msgid "Size" msgstr "Розмір" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:750 templates/index.php:58 msgid "Modified" msgstr "Змінено" -#: js/files.js:774 +#: js/files.js:777 msgid "folder" msgstr "тека" -#: js/files.js:776 +#: js/files.js:779 msgid "folders" msgstr "теки" -#: js/files.js:784 +#: js/files.js:787 msgid "file" msgstr "файл" -#: js/files.js:786 +#: js/files.js:789 msgid "files" msgstr "файли" +#: js/files.js:833 +msgid "seconds ago" +msgstr "" + +#: js/files.js:834 +msgid "minute ago" +msgstr "" + +#: js/files.js:835 +msgid "minutes ago" +msgstr "" + +#: js/files.js:838 +msgid "today" +msgstr "" + +#: js/files.js:839 +msgid "yesterday" +msgstr "" + +#: js/files.js:840 +msgid "days ago" +msgstr "" + +#: js/files.js:841 +msgid "last month" +msgstr "" + +#: js/files.js:843 +msgid "months ago" +msgstr "" + +#: js/files.js:844 +msgid "last year" +msgstr "" + +#: js/files.js:845 +msgid "years ago" +msgstr "" + #: templates/admin.php:5 msgid "File handling" msgstr "" @@ -198,7 +262,7 @@ msgstr "Папка" msgid "From url" msgstr "З URL" -#: templates/index.php:21 +#: templates/index.php:20 msgid "Upload" msgstr "Відвантажити" @@ -210,10 +274,6 @@ msgstr "Перервати завантаження" msgid "Nothing in here. Upload something!" msgstr "Тут нічого немає. Відвантажте що-небудь!" -#: templates/index.php:48 -msgid "Name" -msgstr "Ім'я" - #: templates/index.php:50 msgid "Share" msgstr "Поділитися" diff --git a/l10n/uk/files_sharing.po b/l10n/uk/files_sharing.po index 411329b93c..bb4445339e 100644 --- a/l10n/uk/files_sharing.po +++ b/l10n/uk/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-11 02:02+0200\n" -"PO-Revision-Date: 2012-09-10 10:38+0000\n" -"Last-Translator: VicDeo \n" +"POT-Creation-Date: 2012-09-22 01:14+0200\n" +"PO-Revision-Date: 2012-09-21 23:15+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,14 +26,24 @@ msgstr "Пароль" msgid "Submit" msgstr "" -#: templates/public.php:9 templates/public.php:19 +#: templates/public.php:9 +#, php-format +msgid "%s shared the folder %s with you" +msgstr "" + +#: templates/public.php:11 +#, php-format +msgid "%s shared the file %s with you" +msgstr "" + +#: templates/public.php:14 templates/public.php:30 msgid "Download" msgstr "Завантажити" -#: templates/public.php:18 +#: templates/public.php:29 msgid "No preview available for" msgstr "" -#: templates/public.php:25 +#: templates/public.php:37 msgid "web services under your control" msgstr "" diff --git a/l10n/uk/files_versions.po b/l10n/uk/files_versions.po index 15fa3309cd..45b78595d4 100644 --- a/l10n/uk/files_versions.po +++ b/l10n/uk/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" -"PO-Revision-Date: 2012-09-17 00:04+0000\n" +"POT-Creation-Date: 2012-09-22 01:14+0200\n" +"PO-Revision-Date: 2012-09-21 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -21,6 +21,10 @@ msgstr "" msgid "Expire all versions" msgstr "" +#: js/versions.js:16 +msgid "History" +msgstr "" + #: templates/settings-personal.php:4 msgid "Versions" msgstr "" diff --git a/l10n/uk/settings.po b/l10n/uk/settings.po index 768ec5f798..e051180457 100644 --- a/l10n/uk/settings.po +++ b/l10n/uk/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:03+0200\n" -"PO-Revision-Date: 2012-09-17 00:03+0000\n" +"POT-Creation-Date: 2012-09-19 02:02+0200\n" +"PO-Revision-Date: 2012-09-19 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -35,7 +35,7 @@ msgstr "" msgid "Unable to add group" msgstr "" -#: ajax/enableapp.php:13 +#: ajax/enableapp.php:14 msgid "Could not enable app. " msgstr "" @@ -77,15 +77,11 @@ msgstr "" msgid "Unable to remove user from group %s" msgstr "" -#: js/apps.js:18 -msgid "Error" -msgstr "" - -#: js/apps.js:39 js/apps.js:73 +#: js/apps.js:27 js/apps.js:61 msgid "Disable" msgstr "" -#: js/apps.js:39 js/apps.js:62 +#: js/apps.js:27 js/apps.js:50 msgid "Enable" msgstr "" @@ -225,12 +221,9 @@ msgid "Answer" msgstr "" #: templates/personal.php:8 -msgid "You use" -msgstr "Ви використовуєте" - -#: templates/personal.php:8 -msgid "of the available" -msgstr "з доступної" +#, php-format +msgid "You have used %s of the available %s" +msgstr "" #: templates/personal.php:12 msgid "Desktop and Mobile Syncing Clients" @@ -241,8 +234,8 @@ msgid "Download" msgstr "" #: templates/personal.php:19 -msgid "Your password got changed" -msgstr "Ваш пароль змінено" +msgid "Your password was changed" +msgstr "" #: templates/personal.php:20 msgid "Unable to change your password" diff --git a/l10n/vi/core.po b/l10n/vi/core.po index 4030732e1e..a5861cdf0f 100644 --- a/l10n/vi/core.po +++ b/l10n/vi/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -30,58 +30,62 @@ msgstr "Không có danh mục được thêm?" msgid "This category already exists: " msgstr "Danh mục này đã được tạo :" -#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Cài đặt" -#: js/js.js:593 +#: js/js.js:645 msgid "January" msgstr "Tháng 1" -#: js/js.js:593 +#: js/js.js:645 msgid "February" msgstr "Tháng 2" -#: js/js.js:593 +#: js/js.js:645 msgid "March" msgstr "Tháng 3" -#: js/js.js:593 +#: js/js.js:645 msgid "April" msgstr "Tháng 4" -#: js/js.js:593 +#: js/js.js:645 msgid "May" msgstr "Tháng 5" -#: js/js.js:593 +#: js/js.js:645 msgid "June" msgstr "Tháng 6" -#: js/js.js:594 +#: js/js.js:646 msgid "July" msgstr "Tháng 7" -#: js/js.js:594 +#: js/js.js:646 msgid "August" msgstr "Tháng 8" -#: js/js.js:594 +#: js/js.js:646 msgid "September" msgstr "Tháng 9" -#: js/js.js:594 +#: js/js.js:646 msgid "October" msgstr "Tháng 10" -#: js/js.js:594 +#: js/js.js:646 msgid "November" msgstr "Tháng 11" -#: js/js.js:594 +#: js/js.js:646 msgid "December" msgstr "Tháng 12" +#: js/oc-dialogs.js:123 +msgid "Choose" +msgstr "" + #: js/oc-dialogs.js:143 js/oc-dialogs.js:163 msgid "Cancel" msgstr "Hủy" @@ -102,10 +106,119 @@ msgstr "Ok" msgid "No categories selected for deletion." msgstr "Không có thể loại nào được chọn để xóa." -#: js/oc-vcategories.js:68 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 +#: js/share.js:501 msgid "Error" msgstr "Lỗi" +#: js/share.js:103 +msgid "Error while sharing" +msgstr "" + +#: js/share.js:114 +msgid "Error while unsharing" +msgstr "" + +#: js/share.js:121 +msgid "Error while changing permissions" +msgstr "" + +#: js/share.js:130 +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" +msgstr "" + +#: js/share.js:132 +msgid "Shared with you by" +msgstr "" + +#: js/share.js:137 +msgid "Share with" +msgstr "" + +#: js/share.js:142 +msgid "Share with link" +msgstr "" + +#: js/share.js:143 +msgid "Password protect" +msgstr "" + +#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +msgid "Password" +msgstr "Mật khẩu" + +#: js/share.js:152 +msgid "Set expiration date" +msgstr "" + +#: js/share.js:153 +msgid "Expiration date" +msgstr "" + +#: js/share.js:185 +msgid "Share via email:" +msgstr "" + +#: js/share.js:187 +msgid "No people found" +msgstr "" + +#: js/share.js:214 +msgid "Resharing is not allowed" +msgstr "" + +#: js/share.js:250 +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" +msgstr "" + +#: js/share.js:271 +msgid "Unshare" +msgstr "" + +#: js/share.js:279 +msgid "can edit" +msgstr "" + +#: js/share.js:281 +msgid "access control" +msgstr "" + +#: js/share.js:284 +msgid "create" +msgstr "" + +#: js/share.js:287 +msgid "update" +msgstr "" + +#: js/share.js:290 +msgid "delete" +msgstr "" + +#: js/share.js:293 +msgid "share" +msgstr "" + +#: js/share.js:317 js/share.js:476 +msgid "Password protected" +msgstr "" + +#: js/share.js:489 +msgid "Error unsetting expiration date" +msgstr "" + +#: js/share.js:501 +msgid "Error setting expiration date" +msgstr "" + #: lostpassword/index.php:26 msgid "ownCloud password reset" msgstr "Khôi phục mật khẩu Owncloud " @@ -191,10 +304,6 @@ msgstr "Thêm" msgid "Create an admin account" msgstr "Tạo một tài khoản quản trị" -#: templates/installation.php:30 templates/login.php:13 -msgid "Password" -msgstr "Mật khẩu" - #: templates/installation.php:36 msgid "Advanced" msgstr "Nâng cao" @@ -236,11 +345,11 @@ msgstr "Database host" msgid "Finish setup" msgstr "Cài đặt hoàn tất" -#: templates/layout.guest.php:42 +#: templates/layout.guest.php:36 msgid "web services under your control" msgstr "các dịch vụ web dưới sự kiểm soát của bạn" -#: templates/layout.user.php:45 +#: templates/layout.user.php:34 msgid "Log out" msgstr "Đăng xuất" diff --git a/l10n/vi/files.po b/l10n/vi/files.po index 451fc69587..70e04f13f7 100644 --- a/l10n/vi/files.po +++ b/l10n/vi/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-11 02:02+0200\n" -"PO-Revision-Date: 2012-09-10 09:22+0000\n" -"Last-Translator: mattheu_9x \n" +"POT-Creation-Date: 2012-09-26 13:19+0200\n" +"PO-Revision-Date: 2012-09-26 11:20+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -61,39 +61,43 @@ msgstr "Không chia sẽ" msgid "Delete" msgstr "Xóa" -#: js/filelist.js:186 js/filelist.js:188 +#: js/fileactions.js:182 +msgid "Rename" +msgstr "" + +#: js/filelist.js:190 js/filelist.js:192 msgid "already exists" msgstr "đã tồn tại" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "replace" msgstr "thay thế" -#: js/filelist.js:186 +#: js/filelist.js:190 msgid "suggest name" msgstr "tên gợi ý" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "cancel" msgstr "hủy" -#: js/filelist.js:235 js/filelist.js:237 +#: js/filelist.js:239 js/filelist.js:241 msgid "replaced" msgstr "đã được thay thế" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:239 js/filelist.js:241 js/filelist.js:273 js/filelist.js:275 msgid "undo" msgstr "lùi lại" -#: js/filelist.js:237 +#: js/filelist.js:241 msgid "with" msgstr "với" -#: js/filelist.js:268 +#: js/filelist.js:273 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:275 msgid "deleted" msgstr "đã xóa" @@ -109,47 +113,107 @@ msgstr "Không thể tải lên tập tin này do nó là một thư mục hoặ msgid "Upload Error" msgstr "Tải lên lỗi" -#: js/files.js:236 js/files.js:341 js/files.js:370 +#: js/files.js:236 js/files.js:341 js/files.js:371 msgid "Pending" msgstr "Chờ" -#: js/files.js:355 +#: js/files.js:256 +msgid "1 file uploading" +msgstr "" + +#: js/files.js:259 js/files.js:304 js/files.js:319 +msgid "files uploading" +msgstr "" + +#: js/files.js:322 js/files.js:355 msgid "Upload cancelled." msgstr "Hủy tải lên" -#: js/files.js:423 +#: js/files.js:424 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "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." -#: js/files.js:493 +#: js/files.js:494 msgid "Invalid name, '/' is not allowed." msgstr "Tên không hợp lệ ,không được phép dùng '/'" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:667 +msgid "files scanned" +msgstr "" + +#: js/files.js:675 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:48 +msgid "Name" +msgstr "Tên" + +#: js/files.js:749 templates/index.php:56 msgid "Size" msgstr "Kích cỡ" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:750 templates/index.php:58 msgid "Modified" msgstr "Thay đổi" -#: js/files.js:774 +#: js/files.js:777 msgid "folder" msgstr "folder" -#: js/files.js:776 +#: js/files.js:779 msgid "folders" msgstr "folders" -#: js/files.js:784 +#: js/files.js:787 msgid "file" msgstr "file" -#: js/files.js:786 +#: js/files.js:789 msgid "files" msgstr "files" +#: js/files.js:833 +msgid "seconds ago" +msgstr "" + +#: js/files.js:834 +msgid "minute ago" +msgstr "" + +#: js/files.js:835 +msgid "minutes ago" +msgstr "" + +#: js/files.js:838 +msgid "today" +msgstr "" + +#: js/files.js:839 +msgid "yesterday" +msgstr "" + +#: js/files.js:840 +msgid "days ago" +msgstr "" + +#: js/files.js:841 +msgid "last month" +msgstr "" + +#: js/files.js:843 +msgid "months ago" +msgstr "" + +#: js/files.js:844 +msgid "last year" +msgstr "" + +#: js/files.js:845 +msgid "years ago" +msgstr "" + #: templates/admin.php:5 msgid "File handling" msgstr "Xử lý tập tin" @@ -198,7 +262,7 @@ msgstr "Folder" msgid "From url" msgstr "Từ url" -#: templates/index.php:21 +#: templates/index.php:20 msgid "Upload" msgstr "Tải lên" @@ -210,10 +274,6 @@ msgstr "Hủy upload" msgid "Nothing in here. Upload something!" msgstr "Không có gì ở đây .Hãy tải lên một cái gì đó !" -#: templates/index.php:48 -msgid "Name" -msgstr "Tên" - #: templates/index.php:50 msgid "Share" msgstr "Chia sẻ" diff --git a/l10n/vi/files_sharing.po b/l10n/vi/files_sharing.po index fd39b546fd..c30ea0ef9b 100644 --- a/l10n/vi/files_sharing.po +++ b/l10n/vi/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-08 02:02+0200\n" -"PO-Revision-Date: 2012-09-07 14:58+0000\n" -"Last-Translator: Sơn Nguyễn \n" +"POT-Creation-Date: 2012-09-22 01:14+0200\n" +"PO-Revision-Date: 2012-09-21 23:15+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,14 +26,24 @@ msgstr "Mật khẩu" msgid "Submit" msgstr "Xác nhận" -#: templates/public.php:9 templates/public.php:19 +#: templates/public.php:9 +#, php-format +msgid "%s shared the folder %s with you" +msgstr "" + +#: templates/public.php:11 +#, php-format +msgid "%s shared the file %s with you" +msgstr "" + +#: templates/public.php:14 templates/public.php:30 msgid "Download" msgstr "Tải về" -#: templates/public.php:18 +#: templates/public.php:29 msgid "No preview available for" msgstr "Không có xem trước cho" -#: templates/public.php:25 +#: templates/public.php:37 msgid "web services under your control" msgstr "dịch vụ web dưới sự kiểm soát của bạn" diff --git a/l10n/vi/files_versions.po b/l10n/vi/files_versions.po index 0ce200328c..d6a9e9ee7a 100644 --- a/l10n/vi/files_versions.po +++ b/l10n/vi/files_versions.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" -"PO-Revision-Date: 2012-09-17 00:04+0000\n" +"POT-Creation-Date: 2012-09-22 01:14+0200\n" +"PO-Revision-Date: 2012-09-21 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -22,6 +22,10 @@ msgstr "" msgid "Expire all versions" msgstr "Hết hạn tất cả các phiên bản" +#: js/versions.js:16 +msgid "History" +msgstr "" + #: templates/settings-personal.php:4 msgid "Versions" msgstr "Phiên bản" diff --git a/l10n/vi/settings.po b/l10n/vi/settings.po index 587aca88e4..1f77b616b1 100644 --- a/l10n/vi/settings.po +++ b/l10n/vi/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:03+0200\n" -"PO-Revision-Date: 2012-09-17 00:03+0000\n" +"POT-Creation-Date: 2012-09-19 02:02+0200\n" +"PO-Revision-Date: 2012-09-19 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -38,7 +38,7 @@ msgstr "Nhóm đã tồn tại" msgid "Unable to add group" msgstr "Không thể thêm nhóm" -#: ajax/enableapp.php:13 +#: ajax/enableapp.php:14 msgid "Could not enable app. " msgstr "" @@ -80,15 +80,11 @@ msgstr "Không thể thêm người dùng vào nhóm %s" msgid "Unable to remove user from group %s" msgstr "Không thể xóa người dùng từ nhóm %s" -#: js/apps.js:18 -msgid "Error" -msgstr "Lỗi" - -#: js/apps.js:39 js/apps.js:73 +#: js/apps.js:27 js/apps.js:61 msgid "Disable" msgstr "Vô hiệu" -#: js/apps.js:39 js/apps.js:62 +#: js/apps.js:27 js/apps.js:50 msgid "Enable" msgstr "Cho phép" @@ -228,12 +224,9 @@ msgid "Answer" msgstr "trả lời" #: templates/personal.php:8 -msgid "You use" -msgstr "Bạn sử dụng" - -#: templates/personal.php:8 -msgid "of the available" -msgstr "có sẵn" +#, php-format +msgid "You have used %s of the available %s" +msgstr "" #: templates/personal.php:12 msgid "Desktop and Mobile Syncing Clients" @@ -244,8 +237,8 @@ msgid "Download" msgstr "Tải về" #: templates/personal.php:19 -msgid "Your password got changed" -msgstr "Mật khẩu đã được thay đổi" +msgid "Your password was changed" +msgstr "" #: templates/personal.php:20 msgid "Unable to change your password" diff --git a/l10n/zh_CN.GB2312/core.po b/l10n/zh_CN.GB2312/core.po index 1993d8aed9..7383234a43 100644 --- a/l10n/zh_CN.GB2312/core.po +++ b/l10n/zh_CN.GB2312/core.po @@ -4,12 +4,13 @@ # # Translators: # , 2012. +# marguerite su , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -30,58 +31,62 @@ msgstr "没有分类添加了?" msgid "This category already exists: " msgstr "这个分类已经存在了:" -#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "设置" -#: js/js.js:593 +#: js/js.js:645 msgid "January" msgstr "一月" -#: js/js.js:593 +#: js/js.js:645 msgid "February" msgstr "二月" -#: js/js.js:593 +#: js/js.js:645 msgid "March" msgstr "三月" -#: js/js.js:593 +#: js/js.js:645 msgid "April" msgstr "四月" -#: js/js.js:593 +#: js/js.js:645 msgid "May" msgstr "五月" -#: js/js.js:593 +#: js/js.js:645 msgid "June" msgstr "六月" -#: js/js.js:594 +#: js/js.js:646 msgid "July" msgstr "七月" -#: js/js.js:594 +#: js/js.js:646 msgid "August" msgstr "八月" -#: js/js.js:594 +#: js/js.js:646 msgid "September" msgstr "九月" -#: js/js.js:594 +#: js/js.js:646 msgid "October" msgstr "十月" -#: js/js.js:594 +#: js/js.js:646 msgid "November" msgstr "十一月" -#: js/js.js:594 +#: js/js.js:646 msgid "December" msgstr "十二月" +#: js/oc-dialogs.js:123 +msgid "Choose" +msgstr "" + #: js/oc-dialogs.js:143 js/oc-dialogs.js:163 msgid "Cancel" msgstr "取消" @@ -102,10 +107,119 @@ msgstr "好的" msgid "No categories selected for deletion." msgstr "没有选者要删除的分类." -#: js/oc-vcategories.js:68 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 +#: js/share.js:501 msgid "Error" msgstr "错误" +#: js/share.js:103 +msgid "Error while sharing" +msgstr "" + +#: js/share.js:114 +msgid "Error while unsharing" +msgstr "" + +#: js/share.js:121 +msgid "Error while changing permissions" +msgstr "" + +#: js/share.js:130 +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" +msgstr "" + +#: js/share.js:132 +msgid "Shared with you by" +msgstr "" + +#: js/share.js:137 +msgid "Share with" +msgstr "" + +#: js/share.js:142 +msgid "Share with link" +msgstr "" + +#: js/share.js:143 +msgid "Password protect" +msgstr "" + +#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +msgid "Password" +msgstr "密码" + +#: js/share.js:152 +msgid "Set expiration date" +msgstr "" + +#: js/share.js:153 +msgid "Expiration date" +msgstr "" + +#: js/share.js:185 +msgid "Share via email:" +msgstr "" + +#: js/share.js:187 +msgid "No people found" +msgstr "" + +#: js/share.js:214 +msgid "Resharing is not allowed" +msgstr "" + +#: js/share.js:250 +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" +msgstr "" + +#: js/share.js:271 +msgid "Unshare" +msgstr "" + +#: js/share.js:279 +msgid "can edit" +msgstr "" + +#: js/share.js:281 +msgid "access control" +msgstr "" + +#: js/share.js:284 +msgid "create" +msgstr "" + +#: js/share.js:287 +msgid "update" +msgstr "" + +#: js/share.js:290 +msgid "delete" +msgstr "" + +#: js/share.js:293 +msgid "share" +msgstr "" + +#: js/share.js:317 js/share.js:476 +msgid "Password protected" +msgstr "" + +#: js/share.js:489 +msgid "Error unsetting expiration date" +msgstr "" + +#: js/share.js:501 +msgid "Error setting expiration date" +msgstr "" + #: lostpassword/index.php:26 msgid "ownCloud password reset" msgstr "私有云密码重置" @@ -191,10 +305,6 @@ msgstr "添加" msgid "Create an admin account" msgstr "建立一个 管理帐户" -#: templates/installation.php:30 templates/login.php:13 -msgid "Password" -msgstr "密码" - #: templates/installation.php:36 msgid "Advanced" msgstr "进阶" @@ -226,7 +336,7 @@ msgstr "数据库用户名" #: templates/installation.php:109 msgid "Database tablespace" -msgstr "" +msgstr "数据库表格空间" #: templates/installation.php:115 msgid "Database host" @@ -236,11 +346,11 @@ msgstr "数据库主机" msgid "Finish setup" msgstr "完成安装" -#: templates/layout.guest.php:42 +#: templates/layout.guest.php:36 msgid "web services under your control" msgstr "你控制下的网络服务" -#: templates/layout.user.php:45 +#: templates/layout.user.php:34 msgid "Log out" msgstr "注销" diff --git a/l10n/zh_CN.GB2312/files.po b/l10n/zh_CN.GB2312/files.po index 27fb4d0b39..88323a828a 100644 --- a/l10n/zh_CN.GB2312/files.po +++ b/l10n/zh_CN.GB2312/files.po @@ -4,12 +4,13 @@ # # Translators: # , 2012. +# marguerite su , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-26 13:19+0200\n" +"PO-Revision-Date: 2012-09-26 11:20+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -54,45 +55,49 @@ msgstr "文件" #: js/fileactions.js:108 templates/index.php:62 msgid "Unshare" -msgstr "" +msgstr "取消共享" #: js/fileactions.js:110 templates/index.php:64 msgid "Delete" msgstr "删除" -#: js/filelist.js:186 js/filelist.js:188 +#: js/fileactions.js:182 +msgid "Rename" +msgstr "" + +#: js/filelist.js:190 js/filelist.js:192 msgid "already exists" msgstr "已经存在了" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "replace" msgstr "替换" -#: js/filelist.js:186 +#: js/filelist.js:190 msgid "suggest name" -msgstr "" +msgstr "推荐名称" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "cancel" msgstr "取消" -#: js/filelist.js:235 js/filelist.js:237 +#: js/filelist.js:239 js/filelist.js:241 msgid "replaced" msgstr "替换过了" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:239 js/filelist.js:241 js/filelist.js:273 js/filelist.js:275 msgid "undo" msgstr "撤销" -#: js/filelist.js:237 +#: js/filelist.js:241 msgid "with" msgstr "随着" -#: js/filelist.js:268 +#: js/filelist.js:273 msgid "unshared" -msgstr "" +msgstr "已取消共享" -#: js/filelist.js:270 +#: js/filelist.js:275 msgid "deleted" msgstr "删除" @@ -108,47 +113,107 @@ msgstr "不能上传你指定的文件,可能因为它是个文件夹或者大 msgid "Upload Error" msgstr "上传错误" -#: js/files.js:236 js/files.js:341 js/files.js:370 +#: js/files.js:236 js/files.js:341 js/files.js:371 msgid "Pending" msgstr "Pending" -#: js/files.js:355 +#: js/files.js:256 +msgid "1 file uploading" +msgstr "" + +#: js/files.js:259 js/files.js:304 js/files.js:319 +msgid "files uploading" +msgstr "" + +#: js/files.js:322 js/files.js:355 msgid "Upload cancelled." msgstr "上传取消了" -#: js/files.js:423 +#: js/files.js:424 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "" +msgstr "文件正在上传。关闭页面会取消上传。" -#: js/files.js:493 +#: js/files.js:494 msgid "Invalid name, '/' is not allowed." msgstr "非法文件名,\"/\"是不被许可的" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:667 +msgid "files scanned" +msgstr "文件已扫描" + +#: js/files.js:675 +msgid "error while scanning" +msgstr "扫描出错" + +#: js/files.js:748 templates/index.php:48 +msgid "Name" +msgstr "名字" + +#: js/files.js:749 templates/index.php:56 msgid "Size" msgstr "大小" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:750 templates/index.php:58 msgid "Modified" msgstr "修改日期" -#: js/files.js:774 +#: js/files.js:777 msgid "folder" msgstr "文件夹" -#: js/files.js:776 +#: js/files.js:779 msgid "folders" msgstr "文件夹" -#: js/files.js:784 +#: js/files.js:787 msgid "file" msgstr "文件" -#: js/files.js:786 +#: js/files.js:789 msgid "files" msgstr "文件" +#: js/files.js:833 +msgid "seconds ago" +msgstr "" + +#: js/files.js:834 +msgid "minute ago" +msgstr "" + +#: js/files.js:835 +msgid "minutes ago" +msgstr "" + +#: js/files.js:838 +msgid "today" +msgstr "" + +#: js/files.js:839 +msgid "yesterday" +msgstr "" + +#: js/files.js:840 +msgid "days ago" +msgstr "" + +#: js/files.js:841 +msgid "last month" +msgstr "" + +#: js/files.js:843 +msgid "months ago" +msgstr "" + +#: js/files.js:844 +msgid "last year" +msgstr "" + +#: js/files.js:845 +msgid "years ago" +msgstr "" + #: templates/admin.php:5 msgid "File handling" msgstr "文件处理中" @@ -179,7 +244,7 @@ msgstr "最大的ZIP文件输入大小" #: templates/admin.php:14 msgid "Save" -msgstr "" +msgstr "保存" #: templates/index.php:7 msgid "New" @@ -197,7 +262,7 @@ msgstr "文件夹" msgid "From url" msgstr "从URL:" -#: templates/index.php:21 +#: templates/index.php:20 msgid "Upload" msgstr "上传" @@ -209,10 +274,6 @@ msgstr "取消上传" msgid "Nothing in here. Upload something!" msgstr "这里没有东西.上传点什么!" -#: templates/index.php:48 -msgid "Name" -msgstr "名字" - #: templates/index.php:50 msgid "Share" msgstr "分享" diff --git a/l10n/zh_CN.GB2312/files_encryption.po b/l10n/zh_CN.GB2312/files_encryption.po index 2073826c24..eb4ddd9c54 100644 --- a/l10n/zh_CN.GB2312/files_encryption.po +++ b/l10n/zh_CN.GB2312/files_encryption.po @@ -3,32 +3,33 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# marguerite su , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:33+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 10:51+0000\n" +"Last-Translator: marguerite su \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: zh_CN.GB2312\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: templates/settings.php:3 msgid "Encryption" -msgstr "" +msgstr "加密" #: templates/settings.php:4 msgid "Exclude the following file types from encryption" -msgstr "" +msgstr "从加密中排除如下文件类型" #: templates/settings.php:5 msgid "None" -msgstr "" +msgstr "无" #: templates/settings.php:10 msgid "Enable Encryption" -msgstr "" +msgstr "启用加密" diff --git a/l10n/zh_CN.GB2312/files_external.po b/l10n/zh_CN.GB2312/files_external.po index 27dfa58801..4573b7bbdd 100644 --- a/l10n/zh_CN.GB2312/files_external.po +++ b/l10n/zh_CN.GB2312/files_external.po @@ -3,80 +3,81 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# marguerite su , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:34+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 12:25+0000\n" +"Last-Translator: marguerite su \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: zh_CN.GB2312\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: templates/settings.php:3 msgid "External Storage" -msgstr "" +msgstr "外部存储" #: templates/settings.php:7 templates/settings.php:19 msgid "Mount point" -msgstr "" +msgstr "挂载点" #: templates/settings.php:8 msgid "Backend" -msgstr "" +msgstr "后端" #: templates/settings.php:9 msgid "Configuration" -msgstr "" +msgstr "配置" #: templates/settings.php:10 msgid "Options" -msgstr "" +msgstr "选项" #: templates/settings.php:11 msgid "Applicable" -msgstr "" +msgstr "可应用" #: templates/settings.php:23 msgid "Add mount point" -msgstr "" +msgstr "添加挂载点" #: templates/settings.php:54 templates/settings.php:62 msgid "None set" -msgstr "" +msgstr "未设置" #: templates/settings.php:63 msgid "All Users" -msgstr "" +msgstr "所有用户" #: templates/settings.php:64 msgid "Groups" -msgstr "" +msgstr "群组" #: templates/settings.php:69 msgid "Users" -msgstr "" +msgstr "用户" #: templates/settings.php:77 templates/settings.php:96 msgid "Delete" -msgstr "" +msgstr "删除" #: templates/settings.php:88 msgid "SSL root certificates" -msgstr "" +msgstr "SSL 根证书" #: templates/settings.php:102 msgid "Import Root Certificate" -msgstr "" +msgstr "导入根证书" #: templates/settings.php:108 msgid "Enable User External Storage" -msgstr "" +msgstr "启用用户外部存储" #: templates/settings.php:109 msgid "Allow users to mount their own external storage" -msgstr "" +msgstr "允许用户挂载他们的外部存储" diff --git a/l10n/zh_CN.GB2312/files_sharing.po b/l10n/zh_CN.GB2312/files_sharing.po index 4fdcb4f36f..1509a1ab9e 100644 --- a/l10n/zh_CN.GB2312/files_sharing.po +++ b/l10n/zh_CN.GB2312/files_sharing.po @@ -3,36 +3,47 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# marguerite su , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:04+0000\n" +"POT-Creation-Date: 2012-09-22 01:14+0200\n" +"PO-Revision-Date: 2012-09-21 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: zh_CN.GB2312\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: templates/authenticate.php:4 msgid "Password" -msgstr "" +msgstr "密码" #: templates/authenticate.php:6 msgid "Submit" +msgstr "提交" + +#: templates/public.php:9 +#, php-format +msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:9 templates/public.php:19 +#: templates/public.php:11 +#, php-format +msgid "%s shared the file %s with you" +msgstr "" + +#: templates/public.php:14 templates/public.php:30 msgid "Download" -msgstr "" +msgstr "下载" -#: templates/public.php:18 +#: templates/public.php:29 msgid "No preview available for" -msgstr "" +msgstr "没有预览可用于" -#: templates/public.php:23 +#: templates/public.php:37 msgid "web services under your control" -msgstr "" +msgstr "您控制的网络服务" diff --git a/l10n/zh_CN.GB2312/files_versions.po b/l10n/zh_CN.GB2312/files_versions.po index 82b317a32e..f66d4f68be 100644 --- a/l10n/zh_CN.GB2312/files_versions.po +++ b/l10n/zh_CN.GB2312/files_versions.po @@ -3,12 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# marguerite su , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" -"PO-Revision-Date: 2012-09-17 00:04+0000\n" +"POT-Creation-Date: 2012-09-22 01:14+0200\n" +"PO-Revision-Date: 2012-09-21 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -19,20 +20,24 @@ msgstr "" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" +msgstr "作废所有版本" + +#: js/versions.js:16 +msgid "History" msgstr "" #: templates/settings-personal.php:4 msgid "Versions" -msgstr "" +msgstr "版本" #: templates/settings-personal.php:7 msgid "This will delete all existing backup versions of your files" -msgstr "" +msgstr "这将删除所有您现有文件的备份版本" #: templates/settings.php:3 msgid "Files Versioning" -msgstr "" +msgstr "文件版本" #: templates/settings.php:4 msgid "Enable" -msgstr "" +msgstr "启用" diff --git a/l10n/zh_CN.GB2312/lib.po b/l10n/zh_CN.GB2312/lib.po index 541a462fb8..4eac71c656 100644 --- a/l10n/zh_CN.GB2312/lib.po +++ b/l10n/zh_CN.GB2312/lib.po @@ -3,123 +3,124 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# marguerite su , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-09-01 00:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 12:19+0000\n" +"Last-Translator: marguerite su \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: zh_CN.GB2312\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:288 +#: app.php:285 msgid "Help" -msgstr "" +msgstr "帮助" -#: app.php:295 +#: app.php:292 msgid "Personal" -msgstr "" +msgstr "私人" -#: app.php:300 +#: app.php:297 msgid "Settings" -msgstr "" +msgstr "设置" -#: app.php:305 +#: app.php:302 msgid "Users" -msgstr "" +msgstr "用户" -#: app.php:312 +#: app.php:309 msgid "Apps" -msgstr "" +msgstr "程序" -#: app.php:314 +#: app.php:311 msgid "Admin" -msgstr "" +msgstr "管理员" #: files.php:280 msgid "ZIP download is turned off." -msgstr "" +msgstr "ZIP 下载已关闭" #: files.php:281 msgid "Files need to be downloaded one by one." -msgstr "" +msgstr "需要逐个下载文件。" #: files.php:281 files.php:306 msgid "Back to Files" -msgstr "" +msgstr "返回到文件" #: files.php:305 msgid "Selected files too large to generate zip file." -msgstr "" +msgstr "选择的文件太大而不能生成 zip 文件。" #: json.php:28 msgid "Application is not enabled" -msgstr "" +msgstr "应用未启用" #: json.php:39 json.php:63 json.php:75 msgid "Authentication error" -msgstr "" +msgstr "验证错误" #: json.php:51 msgid "Token expired. Please reload page." -msgstr "" - -#: template.php:86 -msgid "seconds ago" -msgstr "" +msgstr "会话过期。请刷新页面。" #: template.php:87 -msgid "1 minute ago" -msgstr "" +msgid "seconds ago" +msgstr "秒前" #: template.php:88 +msgid "1 minute ago" +msgstr "1 分钟前" + +#: template.php:89 #, php-format msgid "%d minutes ago" -msgstr "" - -#: template.php:91 -msgid "today" -msgstr "" +msgstr "%d 分钟前" #: template.php:92 -msgid "yesterday" -msgstr "" +msgid "today" +msgstr "今天" #: template.php:93 -#, php-format -msgid "%d days ago" -msgstr "" +msgid "yesterday" +msgstr "昨天" #: template.php:94 -msgid "last month" -msgstr "" +#, php-format +msgid "%d days ago" +msgstr "%d 天前" #: template.php:95 -msgid "months ago" -msgstr "" +msgid "last month" +msgstr "上个月" #: template.php:96 -msgid "last year" -msgstr "" +msgid "months ago" +msgstr "月前" #: template.php:97 +msgid "last year" +msgstr "去年" + +#: template.php:98 msgid "years ago" -msgstr "" +msgstr "年前" #: updater.php:66 #, php-format msgid "%s is available. Get more information" -msgstr "" +msgstr "%s 不可用。获知 详情" #: updater.php:68 msgid "up to date" -msgstr "" +msgstr "最新" #: updater.php:71 msgid "updates check is disabled" -msgstr "" +msgstr "更新检测已禁用" diff --git a/l10n/zh_CN.GB2312/settings.po b/l10n/zh_CN.GB2312/settings.po index 247d5f6e3f..97dbf49a93 100644 --- a/l10n/zh_CN.GB2312/settings.po +++ b/l10n/zh_CN.GB2312/settings.po @@ -4,13 +4,14 @@ # # Translators: # , 2012. +# marguerite su , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:03+0200\n" -"PO-Revision-Date: 2012-09-17 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-22 01:14+0200\n" +"PO-Revision-Date: 2012-09-21 19:03+0000\n" +"Last-Translator: marguerite su \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,15 +30,15 @@ msgstr "认证错误" #: ajax/creategroup.php:19 msgid "Group already exists" -msgstr "" +msgstr "群组已存在" #: ajax/creategroup.php:28 msgid "Unable to add group" -msgstr "" +msgstr "未能添加群组" -#: ajax/enableapp.php:13 +#: ajax/enableapp.php:14 msgid "Could not enable app. " -msgstr "" +msgstr "未能启用应用" #: ajax/lostpassword.php:14 msgid "Email saved" @@ -57,11 +58,11 @@ msgstr "非法请求" #: ajax/removegroup.php:16 msgid "Unable to delete group" -msgstr "" +msgstr "未能删除群组" #: ajax/removeuser.php:22 msgid "Unable to delete user" -msgstr "" +msgstr "未能删除用户" #: ajax/setlanguage.php:18 msgid "Language changed" @@ -70,22 +71,18 @@ msgstr "语言改变了" #: ajax/togglegroups.php:25 #, php-format msgid "Unable to add user to group %s" -msgstr "" +msgstr "未能添加用户到群组 %s" #: ajax/togglegroups.php:31 #, php-format msgid "Unable to remove user from group %s" -msgstr "" +msgstr "未能将用户从群组 %s 移除" -#: js/apps.js:18 -msgid "Error" -msgstr "错误" - -#: js/apps.js:39 js/apps.js:73 +#: js/apps.js:27 js/apps.js:61 msgid "Disable" msgstr "禁用" -#: js/apps.js:39 js/apps.js:62 +#: js/apps.js:27 js/apps.js:50 msgid "Enable" msgstr "启用" @@ -108,7 +105,7 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "" +msgstr "您的数据文件夹和您的文件可能可以从互联网访问。ownCloud 提供的 .htaccess 文件未工作。我们强烈建议您配置您的网络服务器,让数据文件夹不能访问,或将数据文件夹移出网络服务器文档根目录。" #: templates/admin.php:31 msgid "Cron" @@ -116,55 +113,55 @@ msgstr "定时" #: templates/admin.php:37 msgid "Execute one task with each page loaded" -msgstr "" +msgstr "在每个页面载入时执行一项任务" #: templates/admin.php:43 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." -msgstr "" +msgstr "cron.php 已作为 webcron 服务注册。owncloud 根用户将通过 http 协议每分钟调用一次 cron.php。" #: templates/admin.php:49 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "" +msgstr "使用系统 cron 服务。通过系统 cronjob 每分钟调用一次 owncloud 文件夹下的 cron.php" #: templates/admin.php:56 msgid "Sharing" -msgstr "" +msgstr "分享" #: templates/admin.php:61 msgid "Enable Share API" -msgstr "" +msgstr "启用分享 API" #: templates/admin.php:62 msgid "Allow apps to use the Share API" -msgstr "" +msgstr "允许应用使用分享 API" #: templates/admin.php:67 msgid "Allow links" -msgstr "" +msgstr "允许链接" #: templates/admin.php:68 msgid "Allow users to share items to the public with links" -msgstr "" +msgstr "允许用户使用链接与公众分享条目" #: templates/admin.php:73 msgid "Allow resharing" -msgstr "" +msgstr "允许重复分享" #: templates/admin.php:74 msgid "Allow users to share items shared with them again" -msgstr "" +msgstr "允许用户再次分享已经分享过的条目" #: templates/admin.php:79 msgid "Allow users to share with anyone" -msgstr "" +msgstr "允许用户与任何人分享" #: templates/admin.php:81 msgid "Allow users to only share with users in their groups" -msgstr "" +msgstr "只允许用户与群组内用户分享" #: templates/admin.php:88 msgid "Log" @@ -182,7 +179,7 @@ msgid "" "licensed under the AGPL." -msgstr "" +msgstr "由 ownCloud 社区开发,s源代码AGPL 许可协议发布。" #: templates/apps.php:10 msgid "Add your App" @@ -198,7 +195,7 @@ msgstr "在owncloud.com上查看应用程序" #: templates/apps.php:30 msgid "-licensed by " -msgstr "" +msgstr "授权协议 " #: templates/help.php:9 msgid "Documentation" @@ -225,12 +222,9 @@ msgid "Answer" msgstr "回答" #: templates/personal.php:8 -msgid "You use" -msgstr "你使用" - -#: templates/personal.php:8 -msgid "of the available" -msgstr "可用的" +#, php-format +msgid "You have used %s of the available %s" +msgstr "您已使用了 %s,总可用 %s" #: templates/personal.php:12 msgid "Desktop and Mobile Syncing Clients" @@ -241,8 +235,8 @@ msgid "Download" msgstr "下载" #: templates/personal.php:19 -msgid "Your password got changed" -msgstr "你的密码已经改变" +msgid "Your password was changed" +msgstr "您的密码以变更" #: templates/personal.php:20 msgid "Unable to change your password" @@ -314,7 +308,7 @@ msgstr "其他的" #: templates/users.php:80 templates/users.php:112 msgid "Group Admin" -msgstr "" +msgstr "群组管理员" #: templates/users.php:82 msgid "Quota" diff --git a/l10n/zh_CN.GB2312/user_ldap.po b/l10n/zh_CN.GB2312/user_ldap.po index 67a667a8ee..119c718867 100644 --- a/l10n/zh_CN.GB2312/user_ldap.po +++ b/l10n/zh_CN.GB2312/user_ldap.po @@ -3,168 +3,169 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# marguerite su , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-29 02:01+0200\n" -"PO-Revision-Date: 2012-08-29 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 12:39+0000\n" +"Last-Translator: marguerite su \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: zh_CN.GB2312\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: templates/settings.php:8 msgid "Host" -msgstr "" +msgstr "主机" #: templates/settings.php:8 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" -msgstr "" +msgstr "您可以忽略协议,除非您需要 SSL。然后用 ldaps:// 开头" #: templates/settings.php:9 msgid "Base DN" -msgstr "" +msgstr "基本判别名" #: templates/settings.php:9 msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "" +msgstr "您可以在高级选项卡中为用户和群组指定基本判别名" #: templates/settings.php:10 msgid "User DN" -msgstr "" +msgstr "用户判别名" #: templates/settings.php:10 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." -msgstr "" +msgstr "客户机用户的判别名,将用于绑定,例如 uid=agent, dc=example, dc=com。匿名访问请留空判别名和密码。" #: templates/settings.php:11 msgid "Password" -msgstr "" +msgstr "密码" #: templates/settings.php:11 msgid "For anonymous access, leave DN and Password empty." -msgstr "" +msgstr "匿名访问请留空判别名和密码。" #: templates/settings.php:12 msgid "User Login Filter" -msgstr "" +msgstr "用户登录过滤器" #: templates/settings.php:12 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." -msgstr "" +msgstr "定义尝试登录时要应用的过滤器。用 %%uid 替换登录操作中使用的用户名。" #: templates/settings.php:12 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" -msgstr "" +msgstr "使用 %%uid 占位符,例如 \"uid=%%uid\"" #: templates/settings.php:13 msgid "User List Filter" -msgstr "" +msgstr "用户列表过滤器" #: templates/settings.php:13 msgid "Defines the filter to apply, when retrieving users." -msgstr "" +msgstr "定义撷取用户时要应用的过滤器。" #: templates/settings.php:13 msgid "without any placeholder, e.g. \"objectClass=person\"." -msgstr "" +msgstr "不能使用占位符,例如 \"objectClass=person\"。" #: templates/settings.php:14 msgid "Group Filter" -msgstr "" +msgstr "群组过滤器" #: templates/settings.php:14 msgid "Defines the filter to apply, when retrieving groups." -msgstr "" +msgstr "定义撷取群组时要应用的过滤器" #: templates/settings.php:14 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." -msgstr "" +msgstr "不能使用占位符,例如 \"objectClass=posixGroup\"。" #: templates/settings.php:17 msgid "Port" -msgstr "" +msgstr "端口" #: templates/settings.php:18 msgid "Base User Tree" -msgstr "" +msgstr "基本用户树" #: templates/settings.php:19 msgid "Base Group Tree" -msgstr "" +msgstr "基本群组树" #: templates/settings.php:20 msgid "Group-Member association" -msgstr "" +msgstr "群组-成员组合" #: templates/settings.php:21 msgid "Use TLS" -msgstr "" +msgstr "使用 TLS" #: templates/settings.php:21 msgid "Do not use it for SSL connections, it will fail." -msgstr "" +msgstr "不要使用它进行 SSL 连接,会失败的。" #: templates/settings.php:22 msgid "Case insensitve LDAP server (Windows)" -msgstr "" +msgstr "大小写不敏感的 LDAP 服务器 (Windows)" #: templates/settings.php:23 msgid "Turn off SSL certificate validation." -msgstr "" +msgstr "关闭 SSL 证书校验。" #: templates/settings.php:23 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." -msgstr "" +msgstr "如果只有使用此选项才能连接,请导入 LDAP 服务器的 SSL 证书到您的 ownCloud 服务器。" #: templates/settings.php:23 msgid "Not recommended, use for testing only." -msgstr "" +msgstr "不推荐,仅供测试" #: templates/settings.php:24 msgid "User Display Name Field" -msgstr "" +msgstr "用户显示名称字段" #: templates/settings.php:24 msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "" +msgstr "用于生成用户的 ownCloud 名称的 LDAP 属性。" #: templates/settings.php:25 msgid "Group Display Name Field" -msgstr "" +msgstr "群组显示名称字段" #: templates/settings.php:25 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "" +msgstr "用于生成群组的 ownCloud 名称的 LDAP 属性。" #: templates/settings.php:27 msgid "in bytes" -msgstr "" +msgstr "以字节计" #: templates/settings.php:29 msgid "in seconds. A change empties the cache." -msgstr "" +msgstr "以秒计。修改会清空缓存。" #: templates/settings.php:30 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." -msgstr "" +msgstr "用户名请留空 (默认)。否则,请指定一个 LDAP/AD 属性。" #: templates/settings.php:32 msgid "Help" -msgstr "" +msgstr "帮助" diff --git a/l10n/zh_CN/core.po b/l10n/zh_CN/core.po index 5ecd449a62..2c70770418 100644 --- a/l10n/zh_CN/core.po +++ b/l10n/zh_CN/core.po @@ -5,14 +5,15 @@ # Translators: # , 2012. # Phoenix Nemo <>, 2012. +# , 2012. # , 2011, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-07 02:04+0200\n" -"PO-Revision-Date: 2012-09-06 07:30+0000\n" -"Last-Translator: hanfeng \n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -32,58 +33,62 @@ msgstr "没有可添加分类?" msgid "This category already exists: " msgstr "此分类已存在: " -#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "设置" -#: js/js.js:593 +#: js/js.js:645 msgid "January" msgstr "一月" -#: js/js.js:593 +#: js/js.js:645 msgid "February" msgstr "二月" -#: js/js.js:593 +#: js/js.js:645 msgid "March" msgstr "三月" -#: js/js.js:593 +#: js/js.js:645 msgid "April" msgstr "四月" -#: js/js.js:593 +#: js/js.js:645 msgid "May" msgstr "五月" -#: js/js.js:593 +#: js/js.js:645 msgid "June" msgstr "六月" -#: js/js.js:594 +#: js/js.js:646 msgid "July" msgstr "七月" -#: js/js.js:594 +#: js/js.js:646 msgid "August" msgstr "八月" -#: js/js.js:594 +#: js/js.js:646 msgid "September" msgstr "九月" -#: js/js.js:594 +#: js/js.js:646 msgid "October" msgstr "十月" -#: js/js.js:594 +#: js/js.js:646 msgid "November" msgstr "十一月" -#: js/js.js:594 +#: js/js.js:646 msgid "December" msgstr "十二月" +#: js/oc-dialogs.js:123 +msgid "Choose" +msgstr "选择(&C)..." + #: js/oc-dialogs.js:143 js/oc-dialogs.js:163 msgid "Cancel" msgstr "取消" @@ -104,10 +109,119 @@ msgstr "好" msgid "No categories selected for deletion." msgstr "没有选择要删除的类别" -#: js/oc-vcategories.js:68 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 +#: js/share.js:501 msgid "Error" msgstr "错误" +#: js/share.js:103 +msgid "Error while sharing" +msgstr "共享时出错" + +#: js/share.js:114 +msgid "Error while unsharing" +msgstr "取消共享时出错" + +#: js/share.js:121 +msgid "Error while changing permissions" +msgstr "修改权限时出错" + +#: js/share.js:130 +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" +msgstr "" + +#: js/share.js:132 +msgid "Shared with you by" +msgstr "" + +#: js/share.js:137 +msgid "Share with" +msgstr "共享" + +#: js/share.js:142 +msgid "Share with link" +msgstr "共享链接" + +#: js/share.js:143 +msgid "Password protect" +msgstr "密码保护" + +#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +msgid "Password" +msgstr "密码" + +#: js/share.js:152 +msgid "Set expiration date" +msgstr "设置过期日期" + +#: js/share.js:153 +msgid "Expiration date" +msgstr "过期日期" + +#: js/share.js:185 +msgid "Share via email:" +msgstr "" + +#: js/share.js:187 +msgid "No people found" +msgstr "未找到此人" + +#: js/share.js:214 +msgid "Resharing is not allowed" +msgstr "不允许二次共享" + +#: js/share.js:250 +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" +msgstr "" + +#: js/share.js:271 +msgid "Unshare" +msgstr "取消共享" + +#: js/share.js:279 +msgid "can edit" +msgstr "可以修改" + +#: js/share.js:281 +msgid "access control" +msgstr "访问控制" + +#: js/share.js:284 +msgid "create" +msgstr "创建" + +#: js/share.js:287 +msgid "update" +msgstr "更新" + +#: js/share.js:290 +msgid "delete" +msgstr "删除" + +#: js/share.js:293 +msgid "share" +msgstr "共享" + +#: js/share.js:317 js/share.js:476 +msgid "Password protected" +msgstr "密码已受保护" + +#: js/share.js:489 +msgid "Error unsetting expiration date" +msgstr "取消设置过期日期时出错" + +#: js/share.js:501 +msgid "Error setting expiration date" +msgstr "设置过期日期时出错" + #: lostpassword/index.php:26 msgid "ownCloud password reset" msgstr "重置 ownCloud 密码" @@ -193,10 +307,6 @@ msgstr "添加" msgid "Create an admin account" msgstr "创建管理员账号" -#: templates/installation.php:30 templates/login.php:13 -msgid "Password" -msgstr "密码" - #: templates/installation.php:36 msgid "Advanced" msgstr "高级" @@ -238,11 +348,11 @@ msgstr "数据库主机" msgid "Finish setup" msgstr "安装完成" -#: templates/layout.guest.php:42 +#: templates/layout.guest.php:36 msgid "web services under your control" msgstr "由您掌控的网络服务" -#: templates/layout.user.php:45 +#: templates/layout.user.php:34 msgid "Log out" msgstr "注销" diff --git a/l10n/zh_CN/files.po b/l10n/zh_CN/files.po index d1329bec33..f6d9aa43f8 100644 --- a/l10n/zh_CN/files.po +++ b/l10n/zh_CN/files.po @@ -5,14 +5,15 @@ # Translators: # , 2012. # , 2012. +# , 2012. # , 2011, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-16 02:01+0200\n" -"PO-Revision-Date: 2012-09-15 14:55+0000\n" -"Last-Translator: hanfeng \n" +"POT-Creation-Date: 2012-09-28 02:02+0200\n" +"PO-Revision-Date: 2012-09-27 14:26+0000\n" +"Last-Translator: waterone \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -62,39 +63,43 @@ msgstr "取消分享" msgid "Delete" msgstr "删除" -#: js/filelist.js:186 js/filelist.js:188 +#: js/fileactions.js:182 +msgid "Rename" +msgstr "重命名" + +#: js/filelist.js:190 js/filelist.js:192 msgid "already exists" msgstr "已经存在" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "replace" msgstr "替换" -#: js/filelist.js:186 +#: js/filelist.js:190 msgid "suggest name" msgstr "建议名称" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "cancel" msgstr "取消" -#: js/filelist.js:235 js/filelist.js:237 +#: js/filelist.js:239 js/filelist.js:241 msgid "replaced" msgstr "已经替换" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:239 js/filelist.js:241 js/filelist.js:273 js/filelist.js:275 msgid "undo" msgstr "撤销" -#: js/filelist.js:237 +#: js/filelist.js:241 msgid "with" msgstr "随着" -#: js/filelist.js:268 +#: js/filelist.js:273 msgid "unshared" msgstr "已取消分享" -#: js/filelist.js:270 +#: js/filelist.js:275 msgid "deleted" msgstr "已经删除" @@ -110,47 +115,107 @@ msgstr "无法上传文件,因为它是一个目录或者大小为 0 字节" msgid "Upload Error" msgstr "上传错误" -#: js/files.js:236 js/files.js:341 js/files.js:370 +#: js/files.js:236 js/files.js:341 js/files.js:371 msgid "Pending" msgstr "操作等待中" -#: js/files.js:355 +#: js/files.js:256 +msgid "1 file uploading" +msgstr "1个文件上传中" + +#: js/files.js:259 js/files.js:304 js/files.js:319 +msgid "files uploading" +msgstr "文件上传中" + +#: js/files.js:322 js/files.js:355 msgid "Upload cancelled." msgstr "上传已取消" -#: js/files.js:423 +#: js/files.js:424 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "文件正在上传中。现在离开此页会导致上传动作被取消。" -#: js/files.js:493 +#: js/files.js:494 msgid "Invalid name, '/' is not allowed." msgstr "非法的名称,不允许使用‘/’。" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:668 +msgid "files scanned" +msgstr "已扫描文件" + +#: js/files.js:676 +msgid "error while scanning" +msgstr "扫描时出错" + +#: js/files.js:749 templates/index.php:48 +msgid "Name" +msgstr "名称" + +#: js/files.js:750 templates/index.php:56 msgid "Size" msgstr "大小" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:751 templates/index.php:58 msgid "Modified" msgstr "修改日期" -#: js/files.js:774 +#: js/files.js:778 msgid "folder" msgstr "文件夹" -#: js/files.js:776 +#: js/files.js:780 msgid "folders" msgstr "文件夹" -#: js/files.js:784 +#: js/files.js:788 msgid "file" msgstr "文件" -#: js/files.js:786 +#: js/files.js:790 msgid "files" msgstr "文件" +#: js/files.js:834 +msgid "seconds ago" +msgstr "几秒前" + +#: js/files.js:835 +msgid "minute ago" +msgstr "1分钟前" + +#: js/files.js:836 +msgid "minutes ago" +msgstr "分钟前" + +#: js/files.js:839 +msgid "today" +msgstr "今天" + +#: js/files.js:840 +msgid "yesterday" +msgstr "昨天" + +#: js/files.js:841 +msgid "days ago" +msgstr "%d 天前" + +#: js/files.js:842 +msgid "last month" +msgstr "上月" + +#: js/files.js:844 +msgid "months ago" +msgstr "月前" + +#: js/files.js:845 +msgid "last year" +msgstr "上年" + +#: js/files.js:846 +msgid "years ago" +msgstr "几年前" + #: templates/admin.php:5 msgid "File handling" msgstr "文件处理" @@ -199,7 +264,7 @@ msgstr "文件夹" msgid "From url" msgstr "来自地址" -#: templates/index.php:21 +#: templates/index.php:20 msgid "Upload" msgstr "上传" @@ -211,10 +276,6 @@ msgstr "取消上传" msgid "Nothing in here. Upload something!" msgstr "这里还什么都没有。上传些东西吧!" -#: templates/index.php:48 -msgid "Name" -msgstr "名称" - #: templates/index.php:50 msgid "Share" msgstr "共享" diff --git a/l10n/zh_CN/files_sharing.po b/l10n/zh_CN/files_sharing.po index e6e603fc5a..149353d110 100644 --- a/l10n/zh_CN/files_sharing.po +++ b/l10n/zh_CN/files_sharing.po @@ -3,36 +3,47 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-28 02:02+0200\n" +"PO-Revision-Date: 2012-09-27 14:41+0000\n" +"Last-Translator: waterone \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: zh_CN\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: templates/authenticate.php:4 msgid "Password" -msgstr "" +msgstr "密码" #: templates/authenticate.php:6 msgid "Submit" -msgstr "" +msgstr "提交" -#: templates/public.php:9 templates/public.php:19 +#: templates/public.php:9 +#, php-format +msgid "%s shared the folder %s with you" +msgstr "%s与您共享了%s文件夹" + +#: templates/public.php:11 +#, php-format +msgid "%s shared the file %s with you" +msgstr "%s与您共享了%s文件" + +#: templates/public.php:14 templates/public.php:30 msgid "Download" -msgstr "" +msgstr "下载" -#: templates/public.php:18 +#: templates/public.php:29 msgid "No preview available for" -msgstr "" +msgstr "没有预览" -#: templates/public.php:23 +#: templates/public.php:37 msgid "web services under your control" -msgstr "" +msgstr "您控制的web服务" diff --git a/l10n/zh_CN/files_versions.po b/l10n/zh_CN/files_versions.po index d55e6f8112..df61cf98da 100644 --- a/l10n/zh_CN/files_versions.po +++ b/l10n/zh_CN/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" -"PO-Revision-Date: 2012-09-17 00:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 09:58+0000\n" +"Last-Translator: hanfeng \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,6 +22,10 @@ msgstr "" msgid "Expire all versions" msgstr "过期所有版本" +#: js/versions.js:16 +msgid "History" +msgstr "历史" + #: templates/settings-personal.php:4 msgid "Versions" msgstr "版本" @@ -32,8 +36,8 @@ msgstr "将会删除您的文件的所有备份版本" #: templates/settings.php:3 msgid "Files Versioning" -msgstr "" +msgstr "文件版本" #: templates/settings.php:4 msgid "Enable" -msgstr "" +msgstr "开启" diff --git a/l10n/zh_CN/settings.po b/l10n/zh_CN/settings.po index 8719804427..a0bc33f610 100644 --- a/l10n/zh_CN/settings.po +++ b/l10n/zh_CN/settings.po @@ -6,14 +6,15 @@ # , 2012. # Phoenix Nemo <>, 2012. # , 2012. +# , 2012. # , 2011, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:03+0200\n" -"PO-Revision-Date: 2012-09-17 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-28 02:03+0200\n" +"PO-Revision-Date: 2012-09-27 14:13+0000\n" +"Last-Translator: waterone \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -32,13 +33,13 @@ msgstr "认证错误" #: ajax/creategroup.php:19 msgid "Group already exists" -msgstr "已存在组" +msgstr "已存在该组" #: ajax/creategroup.php:28 msgid "Unable to add group" -msgstr "不能添加组" +msgstr "无法添加组" -#: ajax/enableapp.php:13 +#: ajax/enableapp.php:14 msgid "Could not enable app. " msgstr "无法开启App" @@ -60,11 +61,11 @@ msgstr "非法请求" #: ajax/removegroup.php:16 msgid "Unable to delete group" -msgstr "不能删除组" +msgstr "无法删除组" #: ajax/removeuser.php:22 msgid "Unable to delete user" -msgstr "不能删除用户" +msgstr "无法删除用户" #: ajax/setlanguage.php:18 msgid "Language changed" @@ -73,22 +74,18 @@ msgstr "语言已修改" #: ajax/togglegroups.php:25 #, php-format msgid "Unable to add user to group %s" -msgstr "不能把用户添加到组 %s" +msgstr "无法把用户添加到组 %s" #: ajax/togglegroups.php:31 #, php-format msgid "Unable to remove user from group %s" -msgstr "不能从组%s中移除用户" +msgstr "无法从组%s中移除用户" -#: js/apps.js:18 -msgid "Error" -msgstr "错误" - -#: js/apps.js:39 js/apps.js:73 +#: js/apps.js:27 js/apps.js:61 msgid "Disable" msgstr "禁用" -#: js/apps.js:39 js/apps.js:62 +#: js/apps.js:27 js/apps.js:50 msgid "Enable" msgstr "启用" @@ -111,7 +108,7 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "您的数据文件夹和文件可由互联网访问。OwnCloud提供的.htaccess文件未生效。我们强烈建议您配置服务器,以使数据文件夹不可被访问,或者将数据文件夹移到web服务器以外。" +msgstr "您的数据文件夹和文件可由互联网访问。OwnCloud提供的.htaccess文件未生效。我们强烈建议您配置服务器,以使数据文件夹不可被访问,或者将数据文件夹移到web服务器根目录以外。" #: templates/admin.php:31 msgid "Cron" @@ -119,7 +116,7 @@ msgstr "计划任务" #: templates/admin.php:37 msgid "Execute one task with each page loaded" -msgstr "" +msgstr "每次页面加载完成后执行任务" #: templates/admin.php:43 msgid "" @@ -131,11 +128,11 @@ msgstr "cron.php已被注册到网络定时任务服务。通过http每分钟调 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "" +msgstr "使用系统定时任务服务。每分钟通过系统定时任务调用owncloud文件夹中的cron.php文件" #: templates/admin.php:56 msgid "Sharing" -msgstr "" +msgstr "分享" #: templates/admin.php:61 msgid "Enable Share API" @@ -228,12 +225,9 @@ msgid "Answer" msgstr "回答" #: templates/personal.php:8 -msgid "You use" -msgstr "您使用了" - -#: templates/personal.php:8 -msgid "of the available" -msgstr "的空间,总容量为" +#, php-format +msgid "You have used %s of the available %s" +msgstr "您已使用空间: %s,总空间: %s" #: templates/personal.php:12 msgid "Desktop and Mobile Syncing Clients" @@ -244,7 +238,7 @@ msgid "Download" msgstr "下载" #: templates/personal.php:19 -msgid "Your password got changed" +msgid "Your password was changed" msgstr "密码已修改" #: templates/personal.php:20 @@ -289,7 +283,7 @@ msgstr "帮助翻译" #: templates/personal.php:51 msgid "use this address to connect to your ownCloud in your file manager" -msgstr "在文件管理器中使用这个地址来连接到您的 ownCloud" +msgstr "您可在文件管理器中使用该地址连接到ownCloud" #: templates/users.php:21 templates/users.php:76 msgid "Name" diff --git a/l10n/zh_CN/user_ldap.po b/l10n/zh_CN/user_ldap.po index a34796c9c3..e59cc26498 100644 --- a/l10n/zh_CN/user_ldap.po +++ b/l10n/zh_CN/user_ldap.po @@ -3,23 +3,24 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-29 02:01+0200\n" -"PO-Revision-Date: 2012-08-29 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-20 02:05+0200\n" +"PO-Revision-Date: 2012-09-19 12:44+0000\n" +"Last-Translator: hanfeng \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: zh_CN\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: templates/settings.php:8 msgid "Host" -msgstr "" +msgstr "主机" #: templates/settings.php:8 msgid "" @@ -28,15 +29,15 @@ msgstr "" #: templates/settings.php:9 msgid "Base DN" -msgstr "" +msgstr "Base DN" #: templates/settings.php:9 msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "" +msgstr "您可以在高级选项卡里为用户和组指定Base DN" #: templates/settings.php:10 msgid "User DN" -msgstr "" +msgstr "User DN" #: templates/settings.php:10 msgid "" @@ -47,7 +48,7 @@ msgstr "" #: templates/settings.php:11 msgid "Password" -msgstr "" +msgstr "密码" #: templates/settings.php:11 msgid "For anonymous access, leave DN and Password empty." @@ -95,7 +96,7 @@ msgstr "" #: templates/settings.php:17 msgid "Port" -msgstr "" +msgstr "端口" #: templates/settings.php:18 msgid "Base User Tree" @@ -167,4 +168,4 @@ msgstr "" #: templates/settings.php:32 msgid "Help" -msgstr "" +msgstr "帮助" diff --git a/l10n/zh_TW/core.po b/l10n/zh_TW/core.po index 72df7a953c..97fc8c8bf6 100644 --- a/l10n/zh_TW/core.po +++ b/l10n/zh_TW/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" +"POT-Creation-Date: 2012-09-28 23:34+0200\n" +"PO-Revision-Date: 2012-09-28 21:34+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -31,58 +31,62 @@ msgstr "無分類添加?" msgid "This category already exists: " msgstr "此分類已經存在:" -#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "設定" -#: js/js.js:593 +#: js/js.js:645 msgid "January" msgstr "一月" -#: js/js.js:593 +#: js/js.js:645 msgid "February" msgstr "二月" -#: js/js.js:593 +#: js/js.js:645 msgid "March" msgstr "三月" -#: js/js.js:593 +#: js/js.js:645 msgid "April" msgstr "四月" -#: js/js.js:593 +#: js/js.js:645 msgid "May" msgstr "五月" -#: js/js.js:593 +#: js/js.js:645 msgid "June" msgstr "六月" -#: js/js.js:594 +#: js/js.js:646 msgid "July" msgstr "七月" -#: js/js.js:594 +#: js/js.js:646 msgid "August" msgstr "八月" -#: js/js.js:594 +#: js/js.js:646 msgid "September" msgstr "九月" -#: js/js.js:594 +#: js/js.js:646 msgid "October" msgstr "十月" -#: js/js.js:594 +#: js/js.js:646 msgid "November" msgstr "十一月" -#: js/js.js:594 +#: js/js.js:646 msgid "December" msgstr "十二月" +#: js/oc-dialogs.js:123 +msgid "Choose" +msgstr "" + #: js/oc-dialogs.js:143 js/oc-dialogs.js:163 msgid "Cancel" msgstr "取消" @@ -103,10 +107,119 @@ msgstr "Ok" msgid "No categories selected for deletion." msgstr "沒選擇要刪除的分類" -#: js/oc-vcategories.js:68 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 +#: js/share.js:501 msgid "Error" msgstr "錯誤" +#: js/share.js:103 +msgid "Error while sharing" +msgstr "" + +#: js/share.js:114 +msgid "Error while unsharing" +msgstr "" + +#: js/share.js:121 +msgid "Error while changing permissions" +msgstr "" + +#: js/share.js:130 +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" +msgstr "" + +#: js/share.js:132 +msgid "Shared with you by" +msgstr "" + +#: js/share.js:137 +msgid "Share with" +msgstr "" + +#: js/share.js:142 +msgid "Share with link" +msgstr "" + +#: js/share.js:143 +msgid "Password protect" +msgstr "" + +#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +msgid "Password" +msgstr "密碼" + +#: js/share.js:152 +msgid "Set expiration date" +msgstr "" + +#: js/share.js:153 +msgid "Expiration date" +msgstr "" + +#: js/share.js:185 +msgid "Share via email:" +msgstr "" + +#: js/share.js:187 +msgid "No people found" +msgstr "" + +#: js/share.js:214 +msgid "Resharing is not allowed" +msgstr "" + +#: js/share.js:250 +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" +msgstr "" + +#: js/share.js:271 +msgid "Unshare" +msgstr "" + +#: js/share.js:279 +msgid "can edit" +msgstr "" + +#: js/share.js:281 +msgid "access control" +msgstr "" + +#: js/share.js:284 +msgid "create" +msgstr "" + +#: js/share.js:287 +msgid "update" +msgstr "" + +#: js/share.js:290 +msgid "delete" +msgstr "" + +#: js/share.js:293 +msgid "share" +msgstr "" + +#: js/share.js:317 js/share.js:476 +msgid "Password protected" +msgstr "" + +#: js/share.js:489 +msgid "Error unsetting expiration date" +msgstr "" + +#: js/share.js:501 +msgid "Error setting expiration date" +msgstr "" + #: lostpassword/index.php:26 msgid "ownCloud password reset" msgstr "ownCloud 密碼重設" @@ -192,10 +305,6 @@ msgstr "添加" msgid "Create an admin account" msgstr "建立一個管理者帳號" -#: templates/installation.php:30 templates/login.php:13 -msgid "Password" -msgstr "密碼" - #: templates/installation.php:36 msgid "Advanced" msgstr "進階" @@ -237,11 +346,11 @@ msgstr "資料庫主機" msgid "Finish setup" msgstr "完成設定" -#: templates/layout.guest.php:42 +#: templates/layout.guest.php:36 msgid "web services under your control" msgstr "網路服務已在你控制" -#: templates/layout.user.php:45 +#: templates/layout.user.php:34 msgid "Log out" msgstr "登出" diff --git a/l10n/zh_TW/files.po b/l10n/zh_TW/files.po index b4564768b7..edeaac3f47 100644 --- a/l10n/zh_TW/files.po +++ b/l10n/zh_TW/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-26 13:19+0200\n" +"PO-Revision-Date: 2012-09-26 11:20+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -62,39 +62,43 @@ msgstr "" msgid "Delete" msgstr "刪除" -#: js/filelist.js:186 js/filelist.js:188 +#: js/fileactions.js:182 +msgid "Rename" +msgstr "" + +#: js/filelist.js:190 js/filelist.js:192 msgid "already exists" msgstr "已經存在" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "replace" msgstr "取代" -#: js/filelist.js:186 +#: js/filelist.js:190 msgid "suggest name" msgstr "" -#: js/filelist.js:186 js/filelist.js:188 +#: js/filelist.js:190 js/filelist.js:192 msgid "cancel" msgstr "取消" -#: js/filelist.js:235 js/filelist.js:237 +#: js/filelist.js:239 js/filelist.js:241 msgid "replaced" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:239 js/filelist.js:241 js/filelist.js:273 js/filelist.js:275 msgid "undo" msgstr "" -#: js/filelist.js:237 +#: js/filelist.js:241 msgid "with" msgstr "" -#: js/filelist.js:268 +#: js/filelist.js:273 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:275 msgid "deleted" msgstr "" @@ -110,47 +114,107 @@ msgstr "無法上傳您的檔案因為它可能是一個目錄或檔案大小為 msgid "Upload Error" msgstr "上傳發生錯誤" -#: js/files.js:236 js/files.js:341 js/files.js:370 +#: js/files.js:236 js/files.js:341 js/files.js:371 msgid "Pending" msgstr "" -#: js/files.js:355 +#: js/files.js:256 +msgid "1 file uploading" +msgstr "" + +#: js/files.js:259 js/files.js:304 js/files.js:319 +msgid "files uploading" +msgstr "" + +#: js/files.js:322 js/files.js:355 msgid "Upload cancelled." msgstr "上傳取消" -#: js/files.js:423 +#: js/files.js:424 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "檔案上傳中. 離開此頁面將會取消上傳." -#: js/files.js:493 +#: js/files.js:494 msgid "Invalid name, '/' is not allowed." msgstr "無效的名稱, '/'是不被允許的" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:667 +msgid "files scanned" +msgstr "" + +#: js/files.js:675 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:48 +msgid "Name" +msgstr "名稱" + +#: js/files.js:749 templates/index.php:56 msgid "Size" msgstr "大小" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:750 templates/index.php:58 msgid "Modified" msgstr "修改" -#: js/files.js:774 +#: js/files.js:777 msgid "folder" msgstr "" -#: js/files.js:776 +#: js/files.js:779 msgid "folders" msgstr "" -#: js/files.js:784 +#: js/files.js:787 msgid "file" msgstr "" -#: js/files.js:786 +#: js/files.js:789 msgid "files" msgstr "" +#: js/files.js:833 +msgid "seconds ago" +msgstr "" + +#: js/files.js:834 +msgid "minute ago" +msgstr "" + +#: js/files.js:835 +msgid "minutes ago" +msgstr "" + +#: js/files.js:838 +msgid "today" +msgstr "" + +#: js/files.js:839 +msgid "yesterday" +msgstr "" + +#: js/files.js:840 +msgid "days ago" +msgstr "" + +#: js/files.js:841 +msgid "last month" +msgstr "" + +#: js/files.js:843 +msgid "months ago" +msgstr "" + +#: js/files.js:844 +msgid "last year" +msgstr "" + +#: js/files.js:845 +msgid "years ago" +msgstr "" + #: templates/admin.php:5 msgid "File handling" msgstr "檔案處理" @@ -199,7 +263,7 @@ msgstr "資料夾" msgid "From url" msgstr "由 url " -#: templates/index.php:21 +#: templates/index.php:20 msgid "Upload" msgstr "上傳" @@ -211,10 +275,6 @@ msgstr "取消上傳" msgid "Nothing in here. Upload something!" msgstr "沒有任何東西。請上傳內容!" -#: templates/index.php:48 -msgid "Name" -msgstr "名稱" - #: templates/index.php:50 msgid "Share" msgstr "分享" diff --git a/l10n/zh_TW/files_sharing.po b/l10n/zh_TW/files_sharing.po index 0b9f8057b5..8db01e4d10 100644 --- a/l10n/zh_TW/files_sharing.po +++ b/l10n/zh_TW/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-12 02:01+0200\n" -"PO-Revision-Date: 2012-09-11 15:56+0000\n" -"Last-Translator: Jeff5555 \n" +"POT-Creation-Date: 2012-09-22 01:14+0200\n" +"PO-Revision-Date: 2012-09-21 23:15+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,14 +26,24 @@ msgstr "密碼" msgid "Submit" msgstr "送出" -#: templates/public.php:9 templates/public.php:19 +#: templates/public.php:9 +#, php-format +msgid "%s shared the folder %s with you" +msgstr "" + +#: templates/public.php:11 +#, php-format +msgid "%s shared the file %s with you" +msgstr "" + +#: templates/public.php:14 templates/public.php:30 msgid "Download" msgstr "下載" -#: templates/public.php:18 +#: templates/public.php:29 msgid "No preview available for" msgstr "無法預覽" -#: templates/public.php:25 +#: templates/public.php:37 msgid "web services under your control" msgstr "" diff --git a/l10n/zh_TW/files_versions.po b/l10n/zh_TW/files_versions.po index eedc03d79e..ed8a556567 100644 --- a/l10n/zh_TW/files_versions.po +++ b/l10n/zh_TW/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:02+0200\n" -"PO-Revision-Date: 2012-09-17 00:04+0000\n" +"POT-Creation-Date: 2012-09-22 01:14+0200\n" +"PO-Revision-Date: 2012-09-21 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -21,6 +21,10 @@ msgstr "" msgid "Expire all versions" msgstr "" +#: js/versions.js:16 +msgid "History" +msgstr "" + #: templates/settings-personal.php:4 msgid "Versions" msgstr "" diff --git a/l10n/zh_TW/settings.po b/l10n/zh_TW/settings.po index 15d4d53529..a4adf33475 100644 --- a/l10n/zh_TW/settings.po +++ b/l10n/zh_TW/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-17 02:03+0200\n" -"PO-Revision-Date: 2012-09-17 00:03+0000\n" +"POT-Creation-Date: 2012-09-19 02:02+0200\n" +"PO-Revision-Date: 2012-09-19 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -38,7 +38,7 @@ msgstr "群組已存在" msgid "Unable to add group" msgstr "群組增加失敗" -#: ajax/enableapp.php:13 +#: ajax/enableapp.php:14 msgid "Could not enable app. " msgstr "" @@ -80,15 +80,11 @@ msgstr "使用者加入群組%s錯誤" msgid "Unable to remove user from group %s" msgstr "使用者移出群組%s錯誤" -#: js/apps.js:18 -msgid "Error" -msgstr "錯誤" - -#: js/apps.js:39 js/apps.js:73 +#: js/apps.js:27 js/apps.js:61 msgid "Disable" msgstr "停用" -#: js/apps.js:39 js/apps.js:62 +#: js/apps.js:27 js/apps.js:50 msgid "Enable" msgstr "啟用" @@ -228,12 +224,9 @@ msgid "Answer" msgstr "答案" #: templates/personal.php:8 -msgid "You use" -msgstr "你使用" - -#: templates/personal.php:8 -msgid "of the available" -msgstr "可用" +#, php-format +msgid "You have used %s of the available %s" +msgstr "" #: templates/personal.php:12 msgid "Desktop and Mobile Syncing Clients" @@ -244,8 +237,8 @@ msgid "Download" msgstr "下載" #: templates/personal.php:19 -msgid "Your password got changed" -msgstr "你的密碼已變更" +msgid "Your password was changed" +msgstr "" #: templates/personal.php:20 msgid "Unable to change your password" diff --git a/lib/app.php b/lib/app.php index 28f1f16eba..7889339e42 100755 --- a/lib/app.php +++ b/lib/app.php @@ -40,7 +40,7 @@ class OC_App{ /** * @brief loads all apps * @param array $types - * @returns true/false + * @return bool * * This function walks through the owncloud directory and loads all apps * it can find. A directory contains an app if the file /appinfo/app.php @@ -77,7 +77,7 @@ class OC_App{ /** * load a single app - * @param string app + * @param string $app */ public static function loadApp($app) { if(is_file(self::getAppPath($app).'/appinfo/app.php')) { @@ -90,6 +90,7 @@ class OC_App{ * check if an app is of a specific type * @param string $app * @param string/array $types + * @return bool */ public static function isType($app,$types) { if(is_string($types)) { @@ -156,8 +157,8 @@ class OC_App{ /** * @brief checks whether or not an app is enabled - * @param $app app - * @returns true/false + * @param string $app app + * @return bool * * This function checks whether or not an app is enabled. */ @@ -171,8 +172,8 @@ class OC_App{ /** * @brief enables an app - * @param $app app - * @returns true/false + * @param mixed $app app + * @return bool * * This function set an app as enabled in appconfig. */ @@ -202,13 +203,12 @@ class OC_App{ }else{ return false; } - return $app; } /** * @brief disables an app - * @param $app app - * @returns true/false + * @param string $app app + * @return bool * * This function set an app as disabled in appconfig. */ @@ -219,8 +219,8 @@ class OC_App{ /** * @brief adds an entry to the navigation - * @param $data array containing the data - * @returns true/false + * @param string $data array containing the data + * @return bool * * This function adds a new entry to the navigation visible to users. $data * is an associative array. @@ -245,8 +245,8 @@ class OC_App{ /** * @brief marks a navigation entry as active - * @param $id id of the entry - * @returns true/false + * @param string $id id of the entry + * @return bool * * This function sets a navigation entry as active and removes the 'active' * property from all other entries. The templates can use this for @@ -259,7 +259,7 @@ class OC_App{ /** * @brief gets the active Menu entry - * @returns id or empty string + * @return string id or empty string * * This function returns the id of the active navigation entry (set by * setActiveNavigationEntry @@ -270,7 +270,7 @@ class OC_App{ /** * @brief Returns the Settings Navigation - * @returns associative array + * @return array * * This function returns an array containing all settings pages added. The * entries are sorted by the key 'order' ascending. @@ -291,7 +291,7 @@ class OC_App{ // personal menu $settings[] = array( "id" => "personal", "order" => 1, "href" => OC_Helper::linkTo( "settings", "personal.php" ), "name" => $l->t("Personal"), "icon" => OC_Helper::imagePath( "settings", "personal.svg" )); - // if there're some settings forms + // if there are some settings forms if(!empty(self::$settingsForms)) // settings menu $settings[]=array( "id" => "settings", "order" => 1000, "href" => OC_Helper::linkTo( "settings", "settings.php" ), "name" => $l->t("Settings"), "icon" => OC_Helper::imagePath( "settings", "settings.svg" )); @@ -361,6 +361,7 @@ class OC_App{ return $app_dir[$appid]=$dir; } } + return false; } /** * Get the directory for the given app. @@ -370,6 +371,7 @@ class OC_App{ if( ($dir = self::findAppInDirectories($appid)) != false) { return $dir['path'].'/'.$appid; } + return false; } /** @@ -380,6 +382,7 @@ class OC_App{ if( ($dir = self::findAppInDirectories($appid)) != false) { return OC::$WEBROOT.$dir['url'].'/'.$appid; } + return false; } /** @@ -397,10 +400,11 @@ class OC_App{ } /** - * @brief Read app metadata from the info.xml file + * @brief Read all app metadata from the info.xml file * @param string $appid id of the app or the path of the info.xml file - * @param boolean path (optional) - * @returns array + * @param boolean $path (optional) + * @return array + * @note all data is read from info.xml, not just pre-defined fields */ public static function getAppInfo($appid,$path=false) { if($path) { @@ -414,24 +418,36 @@ class OC_App{ $data=array(); $content=@file_get_contents($file); if(!$content) { - return; + return null; } $xml = new SimpleXMLElement($content); $data['info']=array(); $data['remote']=array(); $data['public']=array(); foreach($xml->children() as $child) { + /** + * @var $child SimpleXMLElement + */ if($child->getName()=='remote') { foreach($child->children() as $remote) { + /** + * @var $remote SimpleXMLElement + */ $data['remote'][$remote->getName()]=(string)$remote; } }elseif($child->getName()=='public') { foreach($child->children() as $public) { + /** + * @var $public SimpleXMLElement + */ $data['public'][$public->getName()]=(string)$public; } }elseif($child->getName()=='types') { $data['types']=array(); foreach($child->children() as $type) { + /** + * @var $type SimpleXMLElement + */ $data['types'][]=$type->getName(); } }elseif($child->getName()=='description') { @@ -442,12 +458,13 @@ class OC_App{ } } self::$appInfo[$appid]=$data; + return $data; } /** * @brief Returns the navigation - * @returns associative array + * @return array * * This function returns an array containing all entries added. The * entries are sorted by the key 'order' ascending. Additional to the keys @@ -492,6 +509,8 @@ class OC_App{ case 'personal': $source=self::$personalForms; break; + default: + return array(); } foreach($source as $form) { $forms[]=include $form; @@ -521,20 +540,90 @@ class OC_App{ } /** - * get a list of all apps in the apps folder + * @brief: get a list of all apps in the apps folder + * @return array or app names (string IDs) + * @todo: change the name of this method to getInstalledApps, which is more accurate */ public static function getAllApps() { + $apps=array(); - foreach(OC::$APPSROOTS as $apps_dir) { - $dh=opendir($apps_dir['path']); - while($file=readdir($dh)) { - if($file[0]!='.' and is_file($apps_dir['path'].'/'.$file.'/appinfo/app.php')) { - $apps[]=$file; - } + + foreach ( OC::$APPSROOTS as $apps_dir ) { + if(! is_readable($apps_dir['path'])) { + OC_Log::write('core', 'unable to read app folder : ' .$apps_dir['path'] , OC_Log::WARN); + continue; } + $dh = opendir( $apps_dir['path'] ); + + while( $file = readdir( $dh ) ) { + + if ( + $file[0] != '.' + and is_file($apps_dir['path'].'/'.$file.'/appinfo/app.php' ) + ) { + + $apps[] = $file; + + } + + } + } + return $apps; } + + /** + * @brief: get a list of all apps on apps.owncloud.com + * @return array, multi-dimensional array of apps. Keys: id, name, type, typename, personid, license, detailpage, preview, changed, description + */ + public static function getAppstoreApps( $filter = 'approved' ) { + + $catagoryNames = OC_OCSClient::getCategories(); + + if ( is_array( $catagoryNames ) ) { + + // Check that categories of apps were retrieved correctly + if ( ! $categories = array_keys( $catagoryNames ) ) { + + return false; + + } + + $page = 0; + + $remoteApps = OC_OCSClient::getApplications( $categories, $page, $filter ); + + $app1 = array(); + + $i = 0; + + foreach ( $remoteApps as $app ) { + + $app1[$i] = $app; + + $app1[$i]['author'] = $app['personid']; + + $app1[$i]['ocs_id'] = $app['id']; + + $app1[$i]['internal'] = $app1[$i]['active'] = 0; + + $i++; + + } + + } + + if ( empty( $app1 ) ) { + + return false; + + } else { + + return $app1; + + } + } /** * check if the app need updating and update when needed @@ -550,7 +639,13 @@ class OC_App{ $installedVersion = $versions[$app]; if (version_compare($currentVersion, $installedVersion, '>')) { OC_Log::write($app, 'starting app upgrade from '.$installedVersion.' to '.$currentVersion, OC_Log::DEBUG); - OC_App::updateApp($app); + try { + OC_App::updateApp($app); + } + catch (Exception $e) { + echo 'Failed to upgrade "'.$app.'". Exception="'.$e->getMessage().'"'; + die; + } OC_Appconfig::setValue($app, 'installed_version', OC_App::getAppVersion($app)); } } @@ -596,7 +691,7 @@ class OC_App{ /** * update the database for the app and call the update script - * @param string appid + * @param string $appid */ public static function updateApp($appid) { if(file_exists(self::getAppPath($appid).'/appinfo/database.xml')) { @@ -610,7 +705,7 @@ class OC_App{ include self::getAppPath($appid).'/appinfo/update.php'; } - //set remote/public handelers + //set remote/public handlers $appData=self::getAppInfo($appid); foreach($appData['remote'] as $name=>$path) { OCP\CONFIG::setAppValue('core', 'remote_'.$name, $appid.'/'.$path); @@ -623,7 +718,7 @@ class OC_App{ } /** - * @param string appid + * @param string $appid * @return OC_FilesystemView */ public static function getStorage($appid) { @@ -640,7 +735,7 @@ class OC_App{ } }else{ OC_Log::write('core', 'Can\'t get app storage, app '.$appid.' not enabled', OC_Log::ERROR); - false; + return false; } } } diff --git a/lib/appconfig.php b/lib/appconfig.php index 7f58b87850..6604e854d5 100644 --- a/lib/appconfig.php +++ b/lib/appconfig.php @@ -40,7 +40,7 @@ class OC_Appconfig{ /** * @brief Get all apps using the config - * @returns array with app ids + * @return array with app ids * * This function returns a list of all apps that have at least one * entry in the appconfig table. @@ -60,8 +60,8 @@ class OC_Appconfig{ /** * @brief Get the available keys for an app - * @param $app the app we are looking for - * @returns array with key names + * @param string $app the app we are looking for + * @return array with key names * * This function gets all keys of an app. Please note that the values are * not returned. @@ -81,13 +81,13 @@ class OC_Appconfig{ /** * @brief Gets the config value - * @param $app app - * @param $key key - * @param $default = null, default value if the key does not exist - * @returns the value or $default + * @param string $app app + * @param string $key key + * @param string $default = null, default value if the key does not exist + * @return string the value or $default * * This function gets a value from the appconfig table. If the key does - * not exist the default value will be returnes + * not exist the default value will be returned */ public static function getValue( $app, $key, $default = null ) { // At least some magic in here :-) @@ -114,10 +114,10 @@ class OC_Appconfig{ /** * @brief sets a value in the appconfig - * @param $app app - * @param $key key - * @param $value value - * @returns true/false + * @param string $app app + * @param string $key key + * @param string $value value + * @return bool * * Sets a value. If the key did not exist before it will be created. */ @@ -135,9 +135,9 @@ class OC_Appconfig{ /** * @brief Deletes a key - * @param $app app - * @param $key key - * @returns true/false + * @param string $app app + * @param string $key key + * @return bool * * Deletes a key. */ @@ -151,8 +151,8 @@ class OC_Appconfig{ /** * @brief Remove app from appconfig - * @param $app app - * @returns true/false + * @param string $app app + * @return bool * * Removes all keys in appconfig belonging to the app. */ diff --git a/lib/base.php b/lib/base.php index 6b4dd789b2..41ff187005 100644 --- a/lib/base.php +++ b/lib/base.php @@ -240,6 +240,8 @@ class OC{ OC_Util::addScript( "jquery-tipsy" ); OC_Util::addScript( "oc-dialogs" ); OC_Util::addScript( "js" ); + // request protection token MUST be defined after the jquery library but before any $('document').ready() + OC_Util::addScript( "requesttoken" ); OC_Util::addScript( "eventsource" ); OC_Util::addScript( "config" ); //OC_Util::addScript( "multiselect" ); @@ -303,14 +305,14 @@ class OC{ //set http auth headers for apache+php-cgi work around if (isset($_SERVER['HTTP_AUTHORIZATION']) && preg_match('/Basic\s+(.*)$/i', $_SERVER['HTTP_AUTHORIZATION'], $matches)) { - list($name, $password) = explode(':', base64_decode($matches[1])); + list($name, $password) = explode(':', base64_decode($matches[1]), 2); $_SERVER['PHP_AUTH_USER'] = strip_tags($name); $_SERVER['PHP_AUTH_PW'] = strip_tags($password); } //set http auth headers for apache+php-cgi work around if variable gets renamed by apache if (isset($_SERVER['REDIRECT_HTTP_AUTHORIZATION']) && preg_match('/Basic\s+(.*)$/i', $_SERVER['REDIRECT_HTTP_AUTHORIZATION'], $matches)) { - list($name, $password) = explode(':', base64_decode($matches[1])); + list($name, $password) = explode(':', base64_decode($matches[1]), 2); $_SERVER['PHP_AUTH_USER'] = strip_tags($name); $_SERVER['PHP_AUTH_PW'] = strip_tags($password); } @@ -526,11 +528,7 @@ class OC{ } protected static function tryFormLogin() { - if(!isset($_POST["user"]) - || !isset($_POST['password']) - || !isset($_SESSION['sectoken']) - || !isset($_POST['sectoken']) - || ($_SESSION['sectoken']!=$_POST['sectoken']) ) { + if(!isset($_POST["user"]) || !isset($_POST['password'])) { return false; } @@ -551,7 +549,8 @@ class OC{ else { OC_User::unsetMagicInCookie(); } - OC_Util::redirectToDefaultPage(); + header( 'Location: '.$_SERVER['REQUEST_URI'] ); + exit(); } return true; } diff --git a/lib/cache/xcache.php b/lib/cache/xcache.php index cecdf46351..9f380f870b 100644 --- a/lib/cache/xcache.php +++ b/lib/cache/xcache.php @@ -44,6 +44,12 @@ class OC_Cache_XCache { } public function clear($prefix='') { + if(!function_exists('xcache_unset_by_prefix')) { + function xcache_unset_by_prefix($prefix) { + // Since we can't clear targetted cache, we'll clear all. :( + xcache_clear_cache(XC_TYPE_VAR, 0); + } + } xcache_unset_by_prefix($this->getNamespace().$prefix); return true; } diff --git a/lib/config.php b/lib/config.php index 032d401264..cbea919932 100644 --- a/lib/config.php +++ b/lib/config.php @@ -47,7 +47,7 @@ class OC_Config{ /** * @brief Lists all available config keys - * @returns array with key names + * @return array with key names * * This function returns all keys saved in config.php. Please note that it * does not return the values. @@ -60,9 +60,9 @@ class OC_Config{ /** * @brief Gets a value from config.php - * @param $key key - * @param $default = null default value - * @returns the value or $default + * @param string $key key + * @param string $default = null default value + * @return string the value or $default * * This function gets the value from config.php. If it does not exist, * $default will be returned. @@ -79,9 +79,9 @@ class OC_Config{ /** * @brief Sets a value - * @param $key key - * @param $value value - * @returns true/false + * @param string $key key + * @param string $value value + * @return bool * * This function sets the value and writes the config.php. If the file can * not be written, false will be returned. @@ -99,8 +99,8 @@ class OC_Config{ /** * @brief Removes a key from the config - * @param $key key - * @returns true/false + * @param string $key key + * @return bool * * This function removes a key from the config.php. If owncloud has no * write access to config.php, the function will return false. @@ -121,7 +121,7 @@ class OC_Config{ /** * @brief Loads the config file - * @returns true/false + * @return bool * * Reads the config file and saves it to the cache */ @@ -148,7 +148,7 @@ class OC_Config{ /** * @brief Writes the config file - * @returns true/false + * @return bool * * Saves the config to the config file. * diff --git a/lib/connector/sabre/directory.php b/lib/connector/sabre/directory.php index 39606577f6..413efef73b 100644 --- a/lib/connector/sabre/directory.php +++ b/lib/connector/sabre/directory.php @@ -50,12 +50,14 @@ class OC_Connector_Sabre_Directory extends OC_Connector_Sabre_Node implements Sa public function createFile($name, $data = null) { if (isset($_SERVER['HTTP_OC_CHUNKED'])) { $info = OC_FileChunking::decodeName($name); + if (empty($info)) { + throw new Sabre_DAV_Exception_NotImplemented(); + } $chunk_handler = new OC_FileChunking($info); $chunk_handler->store($info['index'], $data); if ($chunk_handler->isComplete()) { $newPath = $this->path . '/' . $info['name']; - $f = OC_Filesystem::fopen($newPath, 'w'); - $chunk_handler->assemble($f); + $chunk_handler->file_assemble($newPath); return OC_Connector_Sabre_Node::getETagPropertyForPath($newPath); } } else { @@ -91,10 +93,12 @@ class OC_Connector_Sabre_Directory extends OC_Connector_Sabre_Node implements Sa $path = $this->path . '/' . $name; if (is_null($info)) { - $info = OC_FileCache::get($path); + $info = OC_Files::getFileInfo($path); } - if (!$info) throw new Sabre_DAV_Exception_NotFound('File with name ' . $path . ' could not be located'); + if (!$info) { + throw new Sabre_DAV_Exception_NotFound('File with name ' . $path . ' could not be located'); + } if ($info['mimetype'] == 'httpd/unix-directory') { $node = new OC_Connector_Sabre_Directory($path); @@ -113,7 +117,7 @@ class OC_Connector_Sabre_Directory extends OC_Connector_Sabre_Node implements Sa */ public function getChildren() { - $folder_content = OC_FileCache::getFolderContent($this->path); + $folder_content = OC_Files::getDirectoryContent($this->path); $paths = array(); foreach($folder_content as $info) { $paths[] = $this->path.'/'.$info['name']; diff --git a/lib/connector/sabre/node.php b/lib/connector/sabre/node.php index ecbbef8129..bdedc030c8 100644 --- a/lib/connector/sabre/node.php +++ b/lib/connector/sabre/node.php @@ -23,7 +23,8 @@ abstract class OC_Connector_Sabre_Node implements Sabre_DAV_INode, Sabre_DAV_IProperties { const GETETAG_PROPERTYNAME = '{DAV:}getetag'; - + const LASTMODIFIED_PROPERTYNAME = '{DAV:}lastmodified'; + /** * The path to the current node * @@ -142,7 +143,6 @@ abstract class OC_Connector_Sabre_Node implements Sabre_DAV_INode, Sabre_DAV_IPr public function updateProperties($properties) { $existing = $this->getProperties(array()); foreach($properties as $propertyName => $propertyValue) { - $propertyName = preg_replace("/^{.*}/", "", $propertyName); // remove leading namespace from property name // If it was null, we need to delete the property if (is_null($propertyValue)) { if(array_key_exists( $propertyName, $existing )) { @@ -151,7 +151,7 @@ abstract class OC_Connector_Sabre_Node implements Sabre_DAV_INode, Sabre_DAV_IPr } } else { - if( strcmp( $propertyName, "lastmodified") === 0) { + if( strcmp( $propertyName, self::LASTMODIFIED_PROPERTYNAME) === 0 ) { $this->touch($propertyValue); } else { if(!array_key_exists( $propertyName, $existing )) { diff --git a/lib/db.php b/lib/db.php index 8598f659ca..db4aca19db 100644 --- a/lib/db.php +++ b/lib/db.php @@ -28,18 +28,30 @@ class OC_DB { const BACKEND_PDO=0; const BACKEND_MDB2=1; + /** + * @var MDB2_Driver_Common + */ static private $connection; //the prefered connection to use, either PDO or MDB2 static private $backend=null; - static private $MDB2=false; - static private $PDO=false; - static private $schema=false; + /** + * @var MDB2_Driver_Common + */ + static private $MDB2=null; + /** + * @var PDO + */ + static private $PDO=null; + /** + * @var MDB2_Schema + */ + static private $schema=null; static private $inTransaction=false; static private $prefix=null; static private $type=null; /** * check which backend we should use - * @return BACKEND_MDB2 or BACKEND_PDO + * @return int BACKEND_MDB2 or BACKEND_PDO */ private static function getDBBackend() { //check if we can use PDO, else use MDB2 (installation always needs to be done my mdb2) @@ -59,37 +71,41 @@ class OC_DB { /** * @brief connects to the database - * @returns true if connection can be established or nothing (die()) + * @param int $backend + * @return bool true if connection can be established or false on error * * Connects to the database as specified in config.php */ public static function connect($backend=null) { if(self::$connection) { - return; + return true; } if(is_null($backend)) { $backend=self::getDBBackend(); } if($backend==self::BACKEND_PDO) { - self::connectPDO(); + $success = self::connectPDO(); self::$connection=self::$PDO; self::$backend=self::BACKEND_PDO; }else{ - self::connectMDB2(); + $success = self::connectMDB2(); self::$connection=self::$MDB2; self::$backend=self::BACKEND_MDB2; } + return $success; } /** * connect to the database using pdo + * + * @return bool */ public static function connectPDO() { if(self::$connection) { if(self::$backend==self::BACKEND_MDB2) { self::disconnect(); }else{ - return; + return true; } } // The global data we need @@ -146,6 +162,8 @@ class OC_DB { $dsn = 'oci:dbname=//' . $host . '/' . $name; } break; + default: + return false; } try{ self::$PDO=new PDO($dsn, $user, $pass, $opts); @@ -168,7 +186,7 @@ class OC_DB { if(self::$backend==self::BACKEND_PDO) { self::disconnect(); }else{ - return; + return true; } } // The global data we need @@ -226,14 +244,18 @@ class OC_DB { 'phptype' => 'oci8', 'username' => $user, 'password' => $pass, + 'charset' => 'AL32UTF8', ); if ($host != '') { $dsn['hostspec'] = $host; $dsn['database'] = $name; } else { // use dbname for hostspec $dsn['hostspec'] = $name; + $dsn['database'] = $user; } break; + default: + return false; } // Try to establish connection @@ -244,7 +266,7 @@ class OC_DB { echo( 'can not connect to database, using '.$type.'. ('.self::$MDB2->getUserInfo().')'); OC_Log::write('core', self::$MDB2->getUserInfo(), OC_Log::FATAL); OC_Log::write('core', self::$MDB2->getMessage(), OC_Log::FATAL); - die( $error ); + die(); } // We always, really always want associative arrays @@ -257,8 +279,10 @@ class OC_DB { /** * @brief Prepare a SQL query - * @param $query Query string - * @returns prepared SQL query + * @param string $query Query string + * @param int $limit + * @param int $offset + * @return MDB2_Statement_Common prepared SQL query * * SQL query via MDB2 prepare(), needs to be execute()'d! */ @@ -273,8 +297,10 @@ class OC_DB { //FIXME: check limit notation for other dbs //the following sql thus might needs to take into account db ways of representing it //(oracle has no LIMIT / OFFSET) - $limitsql = ' LIMIT ' . $limit; + $limit = (int)$limit; + $limitsql = ' LIMIT ' . $limit; if (!is_null($offset)) { + $offset = (int)$offset; $limitsql .= ' OFFSET ' . $offset; } //insert limitsql @@ -297,7 +323,7 @@ class OC_DB { // Die if we have an error (error means: bad query, not 0 results!) if( PEAR::isError($result)) { $entry = 'DB Error: "'.$result->getMessage().'"
    '; - $entry .= 'Offending command was: '.$query.'
    '; + $entry .= 'Offending command was: '.htmlentities($query).'
    '; OC_Log::write('core', $entry,OC_Log::FATAL); error_log('DB error: '.$entry); die( $entry ); @@ -307,7 +333,7 @@ class OC_DB { $result=self::$connection->prepare($query); }catch(PDOException $e) { $entry = 'DB Error: "'.$e->getMessage().'"
    '; - $entry .= 'Offending command was: '.$query.'
    '; + $entry .= 'Offending command was: '.htmlentities($query).'
    '; OC_Log::write('core', $entry,OC_Log::FATAL); error_log('DB error: '.$entry); die( $entry ); @@ -319,8 +345,8 @@ class OC_DB { /** * @brief gets last value of autoincrement - * @param $table string The optional table name (will replace *PREFIX*) and add sequence suffix - * @returns id + * @param string $table The optional table name (will replace *PREFIX*) and add sequence suffix + * @return int id * * MDB2 lastInsertID() * @@ -332,14 +358,14 @@ class OC_DB { if($table !== null) { $prefix = OC_Config::getValue( "dbtableprefix", "oc_" ); $suffix = OC_Config::getValue( "dbsequencesuffix", "_id_seq" ); - $table = str_replace( '*PREFIX*', $prefix, $table ); + $table = str_replace( '*PREFIX*', $prefix, $table ).$suffix; } - return self::$connection->lastInsertId($table.$suffix); + return self::$connection->lastInsertId($table); } /** * @brief Disconnect - * @returns true/false + * @return bool * * This is good bye, good bye, yeah! */ @@ -359,8 +385,9 @@ class OC_DB { /** * @brief saves database scheme to xml file - * @param $file name of file - * @returns true/false + * @param string $file name of file + * @param int $mode + * @return bool * * TODO: write more documentation */ @@ -381,8 +408,8 @@ class OC_DB { /** * @brief Creates tables from XML file - * @param $file file to read structure from - * @returns true/false + * @param string $file file to read structure from + * @return bool * * TODO: write more documentation */ @@ -443,11 +470,11 @@ class OC_DB { /** * @brief update the database scheme - * @param $file file to read structure from + * @param string $file file to read structure from + * @return bool */ public static function updateDbFromStructure($file) { $CONFIG_DBTABLEPREFIX = OC_Config::getValue( "dbtableprefix", "oc_" ); - $CONFIG_DBTYPE = OC_Config::getValue( "dbtype", "sqlite" ); self::connectScheme(); @@ -493,7 +520,7 @@ class OC_DB { /** * @brief connects to a MDB2 database scheme - * @returns true/false + * @returns bool * * Connects to a MDB2 database scheme */ @@ -562,12 +589,12 @@ class OC_DB { } /** - * @brief does minor chages to query - * @param $query Query string - * @returns corrected query string + * @brief does minor changes to query + * @param string $query Query string + * @return string corrected query string * * This function replaces *PREFIX* with the value of $CONFIG_DBTABLEPREFIX - * and replaces the ` woth ' or " according to the database driver. + * and replaces the ` with ' or " according to the database driver. */ private static function processQuery( $query ) { self::connect(); @@ -602,7 +629,7 @@ class OC_DB { /** * @brief drop a table - * @param string $tableNamme the table to drop + * @param string $tableName the table to drop */ public static function dropTable($tableName) { self::connectMDB2(); @@ -663,6 +690,7 @@ class OC_DB { /** * Start a transaction + * @return bool */ public static function beginTransaction() { self::connect(); @@ -671,10 +699,12 @@ class OC_DB { } self::$connection->beginTransaction(); self::$inTransaction=true; + return true; } /** * Commit the database changes done during a transaction that is in progress + * @return bool */ public static function commit() { self::connect(); @@ -683,6 +713,7 @@ class OC_DB { } self::$connection->commit(); self::$inTransaction=false; + return true; } /** @@ -719,7 +750,11 @@ class OC_DB { $msg .= 'SQLSTATE = '.$errorInfo[0] . ', '; $msg .= 'Driver Code = '.$errorInfo[1] . ', '; $msg .= 'Driver Message = '.$errorInfo[2]; + }else{ + $msg = ''; } + }else{ + $msg = ''; } return $msg; } @@ -729,6 +764,9 @@ class OC_DB { * small wrapper around PDOStatement to make it behave ,more like an MDB2 Statement */ class PDOStatementWrapper{ + /** + * @var PDOStatement + */ private $statement=null; private $lastArguments=array(); diff --git a/lib/filecache.php b/lib/filecache.php index adcf97753e..07099bcccd 100644 --- a/lib/filecache.php +++ b/lib/filecache.php @@ -481,7 +481,7 @@ class OC_FileCache{ */ public static function clear($user='') { if($user) { - $query=OC_DB::prepare('DELETE FROM `*PREFIX*fscache` WHERE user=?'); + $query=OC_DB::prepare('DELETE FROM `*PREFIX*fscache` WHERE `user`=?'); $query->execute(array($user)); }else{ $query=OC_DB::prepare('DELETE FROM `*PREFIX*fscache`'); diff --git a/lib/filechunking.php b/lib/filechunking.php index d03af226d8..5ab33c77ad 100644 --- a/lib/filechunking.php +++ b/lib/filechunking.php @@ -55,12 +55,13 @@ class OC_FileChunking { public function assemble($f) { $cache = $this->getCache(); $prefix = $this->getPrefix(); + $count = 0; for($i=0; $i < $this->info['chunkcount']; $i++) { $chunk = $cache->get($prefix.$i); $cache->remove($prefix.$i); - fwrite($f,$chunk); + $count += fwrite($f,$chunk); } - fclose($f); + return $count; } public function signature_split($orgfile, $input) { @@ -91,4 +92,57 @@ class OC_FileChunking { 'count' => $count, ); } + + public function file_assemble($path) { + $absolutePath = OC_Filesystem::normalizePath(OC_Filesystem::getView()->getAbsolutePath($path)); + $data = ''; + // use file_put_contents as method because that best matches what this function does + if (OC_FileProxy::runPreProxies('file_put_contents', $absolutePath, $data) && OC_Filesystem::isValidPath($path)) { + $path = OC_Filesystem::getView()->getRelativePath($absolutePath); + $exists = OC_Filesystem::file_exists($path); + $run = true; + if(!$exists) { + OC_Hook::emit( + OC_Filesystem::CLASSNAME, + OC_Filesystem::signal_create, + array( + OC_Filesystem::signal_param_path => $path, + OC_Filesystem::signal_param_run => &$run + ) + ); + } + OC_Hook::emit( + OC_Filesystem::CLASSNAME, + OC_Filesystem::signal_write, + array( + OC_Filesystem::signal_param_path => $path, + OC_Filesystem::signal_param_run => &$run + ) + ); + if(!$run) { + return false; + } + $target = OC_Filesystem::fopen($path, 'w'); + if($target) { + $count = $this->assemble($target); + fclose($target); + if(!$exists) { + OC_Hook::emit( + OC_Filesystem::CLASSNAME, + OC_Filesystem::signal_post_create, + array( OC_Filesystem::signal_param_path => $path) + ); + } + OC_Hook::emit( + OC_Filesystem::CLASSNAME, + OC_Filesystem::signal_post_write, + array( OC_Filesystem::signal_param_path => $path) + ); + OC_FileProxy::runPostProxies('file_put_contents', $absolutePath, $count); + return $count > 0; + }else{ + return false; + } + } + } } diff --git a/lib/fileproxy/quota.php b/lib/fileproxy/quota.php index adbff3d301..5a0dbdb6fe 100644 --- a/lib/fileproxy/quota.php +++ b/lib/fileproxy/quota.php @@ -26,6 +26,7 @@ */ class OC_FileProxy_Quota extends OC_FileProxy{ + static $rootView; private $userQuota=-1; /** @@ -86,7 +87,10 @@ class OC_FileProxy_Quota extends OC_FileProxy{ } public function preCopy($path1,$path2) { - return (OC_Filesystem::filesize($path1)<$this->getFreeSpace() or $this->getFreeSpace()==0); + if(!self::$rootView){ + self::$rootView = new OC_FilesystemView(''); + } + return (self::$rootView->filesize($path1)<$this->getFreeSpace() or $this->getFreeSpace()==0); } public function preFromTmpFile($tmpfile,$path) { @@ -96,4 +100,4 @@ class OC_FileProxy_Quota extends OC_FileProxy{ public function preFromUploadedFile($tmpfile,$path) { return (filesize($tmpfile)<$this->getFreeSpace() or $this->getFreeSpace()==0); } -} \ No newline at end of file +} diff --git a/lib/files.php b/lib/files.php index 63dd96b950..ac999a9bd1 100644 --- a/lib/files.php +++ b/lib/files.php @@ -28,6 +28,36 @@ class OC_Files { static $tmpFiles=array(); + /** + * get the filesystem info + * @param string path + * @return array + * + * returns an associative array with the following keys: + * - size + * - mtime + * - ctime + * - mimetype + * - encrypted + * - versioned + */ + public static function getFileInfo($path) { + if (($path == '/Shared' || substr($path, 0, 8) == '/Shared/') && OC_App::isEnabled('files_sharing')) { + if ($path == '/Shared') { + $info = OCP\Share::getItemsSharedWith('file', OC_Share_Backend_File::FORMAT_FILE_APP_ROOT); + } + else { + $path = substr($path, 7); + $info = OCP\Share::getItemSharedWith('file', $path, OC_Share_Backend_File::FORMAT_FILE_APP); + } + $info = $info[0]; + } + else { + $info = OC_FileCache::get($path); + } + return $info; + } + /** * get the content of a directory * @param dir $directory path under datadirectory @@ -78,7 +108,24 @@ class OC_Files { return $files; } - + public static function searchByMime($mimetype_filter) { + $files = array(); + $dirs_to_check = array(''); + while (!empty($dirs_to_check)) { + // get next subdir to check + $dir = array_pop($dirs_to_check); + $dir_content = self::getDirectoryContent($dir, $mimetype_filter); + foreach($dir_content as $file) { + if ($file['type'] == 'file') { + $files[] = $dir.'/'.$file['name']; + } + else { + $dirs_to_check[] = $dir.'/'.$file['name']; + } + } + } + return $files; + } /** * return the content of a file or return a zip file containning multiply files diff --git a/lib/filesystem.php b/lib/filesystem.php index 92eb4fa477..c6da826a33 100644 --- a/lib/filesystem.php +++ b/lib/filesystem.php @@ -357,7 +357,7 @@ class OC_Filesystem{ * @return string */ static public function getLocalPath($path) { - $datadir = OC_User::getHome($user).'/files'; + $datadir = OC_User::getHome(OC_User::getUser()).'/files'; $newpath = $path; if (strncmp($newpath, $datadir, strlen($datadir)) == 0) { $newpath = substr($path, strlen($datadir)); @@ -521,12 +521,20 @@ class OC_Filesystem{ return self::$defaultInstance->hasUpdated($path,$time); } - static public function removeETagHook($params) { + static public function removeETagHook($params, $root = false) { if (isset($params['path'])) { $path=$params['path']; } else { $path=$params['oldpath']; } + + if ($root) { // reduce path to the required part of it (no 'username/files') + $fakeRootView = new OC_FilesystemView($root); + $count = 1; + $path=str_replace(OC_App::getStorage("files")->getAbsolutePath(), "", $fakeRootView->getAbsolutePath($path), $count); + } + + $path = self::normalizePath($path); OC_Connector_Sabre_Node::removeETagPropertyForPath($path); } diff --git a/lib/filesystemview.php b/lib/filesystemview.php index 743f940301..2950ced5f9 100644 --- a/lib/filesystemview.php +++ b/lib/filesystemview.php @@ -263,24 +263,26 @@ class OC_FilesystemView { $path = $this->getRelativePath($absolutePath); $exists = $this->file_exists($path); $run = true; - if(!$exists) { + if( $this->fakeRoot==OC_Filesystem::getRoot() ){ + if(!$exists) { + OC_Hook::emit( + OC_Filesystem::CLASSNAME, + OC_Filesystem::signal_create, + array( + OC_Filesystem::signal_param_path => $path, + OC_Filesystem::signal_param_run => &$run + ) + ); + } OC_Hook::emit( OC_Filesystem::CLASSNAME, - OC_Filesystem::signal_create, + OC_Filesystem::signal_write, array( OC_Filesystem::signal_param_path => $path, OC_Filesystem::signal_param_run => &$run ) ); } - OC_Hook::emit( - OC_Filesystem::CLASSNAME, - OC_Filesystem::signal_write, - array( - OC_Filesystem::signal_param_path => $path, - OC_Filesystem::signal_param_run => &$run - ) - ); if(!$run) { return false; } @@ -289,18 +291,20 @@ class OC_FilesystemView { $count=OC_Helper::streamCopy($data, $target); fclose($target); fclose($data); - if(!$exists) { + if( $this->fakeRoot==OC_Filesystem::getRoot() ){ + if(!$exists) { + OC_Hook::emit( + OC_Filesystem::CLASSNAME, + OC_Filesystem::signal_post_create, + array( OC_Filesystem::signal_param_path => $path) + ); + } OC_Hook::emit( OC_Filesystem::CLASSNAME, - OC_Filesystem::signal_post_create, + OC_Filesystem::signal_post_write, array( OC_Filesystem::signal_param_path => $path) ); } - OC_Hook::emit( - OC_Filesystem::CLASSNAME, - OC_Filesystem::signal_post_write, - array( OC_Filesystem::signal_param_path => $path) - ); OC_FileProxy::runPostProxies('file_put_contents', $absolutePath, $count); return $count > 0; }else{ @@ -330,14 +334,16 @@ class OC_FilesystemView { return false; } $run=true; - OC_Hook::emit( - OC_Filesystem::CLASSNAME, OC_Filesystem::signal_rename, - array( - OC_Filesystem::signal_param_oldpath => $path1, - OC_Filesystem::signal_param_newpath => $path2, - OC_Filesystem::signal_param_run => &$run - ) - ); + if( $this->fakeRoot==OC_Filesystem::getRoot() ){ + OC_Hook::emit( + OC_Filesystem::CLASSNAME, OC_Filesystem::signal_rename, + array( + OC_Filesystem::signal_param_oldpath => $path1, + OC_Filesystem::signal_param_newpath => $path2, + OC_Filesystem::signal_param_run => &$run + ) + ); + } if($run) { $mp1 = $this->getMountPoint($path1.$postFix1); $mp2 = $this->getMountPoint($path2.$postFix2); @@ -353,14 +359,16 @@ class OC_FilesystemView { $storage1->unlink($this->getInternalPath($path1.$postFix1)); $result = $count>0; } - OC_Hook::emit( - OC_Filesystem::CLASSNAME, - OC_Filesystem::signal_post_rename, - array( - OC_Filesystem::signal_param_oldpath => $path1, - OC_Filesystem::signal_param_newpath => $path2 - ) - ); + if( $this->fakeRoot==OC_Filesystem::getRoot() ){ + OC_Hook::emit( + OC_Filesystem::CLASSNAME, + OC_Filesystem::signal_post_rename, + array( + OC_Filesystem::signal_param_oldpath => $path1, + OC_Filesystem::signal_param_newpath => $path2 + ) + ); + } return $result; } } @@ -378,35 +386,37 @@ class OC_FilesystemView { return false; } $run=true; - OC_Hook::emit( - OC_Filesystem::CLASSNAME, - OC_Filesystem::signal_copy, - array( - OC_Filesystem::signal_param_oldpath => $path1, - OC_Filesystem::signal_param_newpath=>$path2, - OC_Filesystem::signal_param_run => &$run - ) - ); - $exists=$this->file_exists($path2); - if($run and !$exists) { + if( $this->fakeRoot==OC_Filesystem::getRoot() ){ OC_Hook::emit( OC_Filesystem::CLASSNAME, - OC_Filesystem::signal_create, + OC_Filesystem::signal_copy, array( - OC_Filesystem::signal_param_path => $path2, - OC_Filesystem::signal_param_run => &$run - ) - ); - } - if($run) { - OC_Hook::emit( - OC_Filesystem::CLASSNAME, - OC_Filesystem::signal_write, - array( - OC_Filesystem::signal_param_path => $path2, + OC_Filesystem::signal_param_oldpath => $path1, + OC_Filesystem::signal_param_newpath=>$path2, OC_Filesystem::signal_param_run => &$run ) ); + $exists=$this->file_exists($path2); + if($run and !$exists) { + OC_Hook::emit( + OC_Filesystem::CLASSNAME, + OC_Filesystem::signal_create, + array( + OC_Filesystem::signal_param_path => $path2, + OC_Filesystem::signal_param_run => &$run + ) + ); + } + if($run) { + OC_Hook::emit( + OC_Filesystem::CLASSNAME, + OC_Filesystem::signal_write, + array( + OC_Filesystem::signal_param_path => $path2, + OC_Filesystem::signal_param_run => &$run + ) + ); + } } if($run) { $mp1=$this->getMountPoint($path1.$postFix1); @@ -420,26 +430,31 @@ class OC_FilesystemView { $target = $this->fopen($path2.$postFix2, 'w'); $result = OC_Helper::streamCopy($source, $target); } - OC_Hook::emit( - OC_Filesystem::CLASSNAME, - OC_Filesystem::signal_post_copy, - array( - OC_Filesystem::signal_param_oldpath => $path1, - OC_Filesystem::signal_param_newpath=>$path2 - ) - ); - if(!$exists) { + if( $this->fakeRoot==OC_Filesystem::getRoot() ){ OC_Hook::emit( OC_Filesystem::CLASSNAME, - OC_Filesystem::signal_post_create, - array(OC_Filesystem::signal_param_path => $path2) + OC_Filesystem::signal_post_copy, + array( + OC_Filesystem::signal_param_oldpath => $path1, + OC_Filesystem::signal_param_newpath=>$path2 + ) ); + if(!$exists) { + OC_Hook::emit( + OC_Filesystem::CLASSNAME, + OC_Filesystem::signal_post_create, + array(OC_Filesystem::signal_param_path => $path2) + ); + } + OC_Hook::emit( + OC_Filesystem::CLASSNAME, + OC_Filesystem::signal_post_write, + array( OC_Filesystem::signal_param_path => $path2) + ); + } else { // no real copy, file comes from somewhere else, e.g. version rollback -> just update the file cache and the webdav properties without all the other post_write actions + OC_FileCache_Update::update($path2, $this->fakeRoot); + OC_Filesystem::removeETagHook(array("path" => $path2), $this->fakeRoot); } - OC_Hook::emit( - OC_Filesystem::CLASSNAME, - OC_Filesystem::signal_post_write, - array( OC_Filesystem::signal_param_path => $path2) - ); return $result; } } diff --git a/lib/group.php b/lib/group.php index b56a4ad456..66892a99b6 100644 --- a/lib/group.php +++ b/lib/group.php @@ -35,12 +35,15 @@ */ class OC_Group { // The backend used for group management + /** + * @var OC_Group_Interface[] + */ private static $_usedBackends = array(); /** * @brief set the group backend * @param string $backend The backend to use for user managment - * @returns true/false + * @return bool */ public static function useBackend( $backend ) { if($backend instanceof OC_Group_Interface) { @@ -57,10 +60,10 @@ class OC_Group { /** * @brief Try to create a new group - * @param $gid The name of the group to create - * @returns true/false + * @param string $gid The name of the group to create + * @return bool * - * Trys to create a new group. If the group name already exists, false will + * Tries to create a new group. If the group name already exists, false will * be returned. Basic checking of Group name * * Allowed characters in the username are: "a-z", "A-Z", "0-9" and "_.@-" @@ -94,6 +97,7 @@ class OC_Group { return true; } + return false; }else{ return false; } @@ -101,8 +105,8 @@ class OC_Group { /** * @brief delete a group - * @param $gid gid of the group to delete - * @returns true/false + * @param string $gid gid of the group to delete + * @return bool * * Deletes a group and removes it from the group_user-table */ @@ -126,6 +130,7 @@ class OC_Group { return true; } + return false; }else{ return false; } @@ -133,9 +138,9 @@ class OC_Group { /** * @brief is user in group? - * @param $uid uid of the user - * @param $gid gid of the group - * @returns true/false + * @param string $uid uid of the user + * @param string $gid gid of the group + * @return bool * * Checks whether the user is member of a group or not. */ @@ -150,9 +155,9 @@ class OC_Group { /** * @brief Add a user to a group - * @param $uid Name of the user to add to group - * @param $gid Name of the group in which add the user - * @returns true/false + * @param string $uid Name of the user to add to group + * @param string $gid Name of the group in which add the user + * @return bool * * Adds a user to a group. */ @@ -167,7 +172,7 @@ class OC_Group { OC_Hook::emit( "OC_Group", "pre_addToGroup", array( "run" => &$run, "uid" => $uid, "gid" => $gid )); if($run) { - $succes=false; + $success=false; //add the user to the all backends that have the group foreach(self::$_usedBackends as $backend) { @@ -175,13 +180,13 @@ class OC_Group { continue; if($backend->groupExists($gid)) { - $succes|=$backend->addToGroup($uid, $gid); + $success|=$backend->addToGroup($uid, $gid); } } - if($succes) { + if($success) { OC_Hook::emit( "OC_User", "post_addToGroup", array( "uid" => $uid, "gid" => $gid )); } - return $succes; + return $success; }else{ return false; } @@ -189,9 +194,9 @@ class OC_Group { /** * @brief Removes a user from a group - * @param $uid Name of the user to remove from group - * @param $gid Name of the group from which remove the user - * @returns true/false + * @param string $uid Name of the user to remove from group + * @param string $gid Name of the group from which remove the user + * @return bool * * removes the user from a group. */ @@ -216,8 +221,8 @@ class OC_Group { /** * @brief Get all groups a user belongs to - * @param $uid Name of the user - * @returns array with group names + * @param string $uid Name of the user + * @return array with group names * * This function fetches all groups a user belongs to. It does not check * if the user exists at all. @@ -275,7 +280,10 @@ class OC_Group { /** * @brief get a list of all users in several groups * @param array $gids - * @returns array with user ids + * @param string $search + * @param int $limit + * @param int $offset + * @return array with user ids */ public static function usersInGroups($gids, $search = '', $limit = -1, $offset = 0) { $users = array(); diff --git a/lib/group/backend.php b/lib/group/backend.php index 1ba34c940c..9ff432d066 100644 --- a/lib/group/backend.php +++ b/lib/group/backend.php @@ -47,7 +47,7 @@ abstract class OC_Group_Backend implements OC_Group_Interface { /** * @brief Get all supported actions - * @returns bitwise-or'ed actions + * @return int bitwise-or'ed actions * * Returns the supported actions as int to be * compared with OC_USER_BACKEND_CREATE_USER etc. @@ -65,8 +65,8 @@ abstract class OC_Group_Backend implements OC_Group_Interface { /** * @brief Check if backend implements actions - * @param $actions bitwise-or'ed actions - * @returns boolean + * @param int $actions bitwise-or'ed actions + * @return boolean * * Returns the supported actions as int to be * compared with OC_GROUP_BACKEND_CREATE_GROUP etc. @@ -77,9 +77,9 @@ abstract class OC_Group_Backend implements OC_Group_Interface { /** * @brief is user in group? - * @param $uid uid of the user - * @param $gid gid of the group - * @returns true/false + * @param string $uid uid of the user + * @param string $gid gid of the group + * @return bool * * Checks whether the user is member of a group or not. */ @@ -89,8 +89,8 @@ abstract class OC_Group_Backend implements OC_Group_Interface { /** * @brief Get all groups a user belongs to - * @param $uid Name of the user - * @returns array with group names + * @param string $uid Name of the user + * @return array with group names * * This function fetches all groups a user belongs to. It does not check * if the user exists at all. @@ -101,7 +101,10 @@ abstract class OC_Group_Backend implements OC_Group_Interface { /** * @brief get a list of all groups - * @returns array with group names + * @param string $search + * @param int $limit + * @param int $offset + * @return array with group names * * Returns a list with all groups */ @@ -121,7 +124,11 @@ abstract class OC_Group_Backend implements OC_Group_Interface { /** * @brief get a list of all users in a group - * @returns array with user ids + * @param string $gid + * @param string $search + * @param int $limit + * @param int $offset + * @return array with user ids */ public function usersInGroup($gid, $search = '', $limit = -1, $offset = 0) { return array(); diff --git a/lib/group/database.php b/lib/group/database.php index f3012563ac..6eca98ba01 100644 --- a/lib/group/database.php +++ b/lib/group/database.php @@ -44,10 +44,10 @@ class OC_Group_Database extends OC_Group_Backend { /** * @brief Try to create a new group - * @param $gid The name of the group to create - * @returns true/false + * @param string $gid The name of the group to create + * @return bool * - * Trys to create a new group. If the group name already exists, false will + * Tries to create a new group. If the group name already exists, false will * be returned. */ public function createGroup( $gid ) { @@ -70,28 +70,28 @@ class OC_Group_Database extends OC_Group_Backend { /** * @brief delete a group - * @param $gid gid of the group to delete - * @returns true/false + * @param string $gid gid of the group to delete + * @return bool * * Deletes a group and removes it from the group_user-table */ public function deleteGroup( $gid ) { // Delete the group $stmt = OC_DB::prepare( "DELETE FROM `*PREFIX*groups` WHERE `gid` = ?" ); - $result = $stmt->execute( array( $gid )); + $stmt->execute( array( $gid )); // Delete the group-user relation $stmt = OC_DB::prepare( "DELETE FROM `*PREFIX*group_user` WHERE `gid` = ?" ); - $result = $stmt->execute( array( $gid )); + $stmt->execute( array( $gid )); return true; } /** * @brief is user in group? - * @param $uid uid of the user - * @param $gid gid of the group - * @returns true/false + * @param string $uid uid of the user + * @param string $gid gid of the group + * @return bool * * Checks whether the user is member of a group or not. */ @@ -105,9 +105,9 @@ class OC_Group_Database extends OC_Group_Backend { /** * @brief Add a user to a group - * @param $uid Name of the user to add to group - * @param $gid Name of the group in which add the user - * @returns true/false + * @param string $uid Name of the user to add to group + * @param string $gid Name of the group in which add the user + * @return bool * * Adds a user to a group. */ @@ -124,9 +124,9 @@ class OC_Group_Database extends OC_Group_Backend { /** * @brief Removes a user from a group - * @param $uid Name of the user to remove from group - * @param $gid Name of the group from which remove the user - * @returns true/false + * @param string $uid Name of the user to remove from group + * @param string $gid Name of the group from which remove the user + * @return bool * * removes the user from a group. */ @@ -139,8 +139,8 @@ class OC_Group_Database extends OC_Group_Backend { /** * @brief Get all groups a user belongs to - * @param $uid Name of the user - * @returns array with group names + * @param string $uid Name of the user + * @return array with group names * * This function fetches all groups a user belongs to. It does not check * if the user exists at all. @@ -160,7 +160,10 @@ class OC_Group_Database extends OC_Group_Backend { /** * @brief get a list of all groups - * @returns array with group names + * @param string $search + * @param int $limit + * @param int $offset + * @return array with group names * * Returns a list with all groups */ @@ -190,7 +193,11 @@ class OC_Group_Database extends OC_Group_Backend { /** * @brief get a list of all users in a group - * @returns array with user ids + * @param string $gid + * @param string $search + * @param int $limit + * @param int $offset + * @return array with user ids */ public function usersInGroup($gid, $search = '', $limit = null, $offset = null) { $stmt = OC_DB::prepare('SELECT `uid` FROM `*PREFIX*group_user` WHERE `gid` = ? AND `uid` LIKE ?', $limit, $offset); diff --git a/lib/group/interface.php b/lib/group/interface.php index 12cc07a537..4ef3663837 100644 --- a/lib/group/interface.php +++ b/lib/group/interface.php @@ -24,8 +24,8 @@ interface OC_Group_Interface { /** * @brief Check if backend implements actions - * @param $actions bitwise-or'ed actions - * @returns boolean + * @param int $actions bitwise-or'ed actions + * @return boolean * * Returns the supported actions as int to be * compared with OC_GROUP_BACKEND_CREATE_GROUP etc. @@ -34,9 +34,9 @@ interface OC_Group_Interface { /** * @brief is user in group? - * @param $uid uid of the user - * @param $gid gid of the group - * @returns true/false + * @param string $uid uid of the user + * @param string $gid gid of the group + * @return bool * * Checks whether the user is member of a group or not. */ @@ -44,8 +44,8 @@ interface OC_Group_Interface { /** * @brief Get all groups a user belongs to - * @param $uid Name of the user - * @returns array with group names + * @param string $uid Name of the user + * @return array with group names * * This function fetches all groups a user belongs to. It does not check * if the user exists at all. @@ -54,7 +54,10 @@ interface OC_Group_Interface { /** * @brief get a list of all groups - * @returns array with group names + * @param string $search + * @param int $limit + * @param int $offset + * @return array with group names * * Returns a list with all groups */ @@ -69,8 +72,12 @@ interface OC_Group_Interface { /** * @brief get a list of all users in a group - * @returns array with user ids + * @param string $gid + * @param string $search + * @param int $limit + * @param int $offset + * @return array with user ids */ public function usersInGroup($gid, $search = '', $limit = -1, $offset = 0); -} \ No newline at end of file +} diff --git a/lib/helper.php b/lib/helper.php index 70b2f78862..908a61b5a2 100644 --- a/lib/helper.php +++ b/lib/helper.php @@ -30,10 +30,11 @@ class OC_Helper { /** * @brief Creates an url - * @param $app app - * @param $file file - * @param $args array with param=>value, will be appended to the returned url - * @returns the url + * @param string $app app + * @param string $file file + * @param array $args array with param=>value, will be appended to the returned url + * The value of $args will be urlencoded + * @return string the url * * Returns a url to the given app and file. */ @@ -62,8 +63,11 @@ class OC_Helper { } } - foreach($args as $k => $v) { - $urlLinkTo .= '&'.$k.'='.$v; + if (!empty($args)) { + $urlLinkTo .= '?'; + foreach($args as $k => $v) { + $urlLinkTo .= '&'.$k.'='.urlencode($v); + } } return $urlLinkTo; @@ -71,10 +75,11 @@ class OC_Helper { /** * @brief Creates an absolute url - * @param $app app - * @param $file file - * @param $args array with param=>value, will be appended to the returned url - * @returns the url + * @param string $app app + * @param string $file file + * @param array $args array with param=>value, will be appended to the returned url + * The value of $args will be urlencoded + * @return string the url * * Returns a absolute url to the given app and file. */ @@ -85,8 +90,8 @@ class OC_Helper { /** * @brief Makes an $url absolute - * @param $url the url - * @returns the absolute url + * @param string $url the url + * @return string the absolute url * * Returns a absolute url to the given app and file. */ @@ -97,8 +102,8 @@ class OC_Helper { /** * @brief Creates an absolute url for remote use - * @param $service id - * @returns the url + * @param string $service id + * @return string the url * * Returns a absolute url to the given service. */ @@ -108,8 +113,8 @@ class OC_Helper { /** * @brief Creates an absolute url for public use - * @param $service id - * @returns the url + * @param string $service id + * @return string the url * * Returns a absolute url to the given service. */ @@ -119,9 +124,9 @@ class OC_Helper { /** * @brief Creates path to an image - * @param $app app - * @param $image image name - * @returns the url + * @param string $app app + * @param string $image image name + * @return string the url * * Returns the path to the image. */ @@ -150,8 +155,8 @@ class OC_Helper { /** * @brief get path to icon of file type - * @param $mimetype mimetype - * @returns the url + * @param string $mimetype mimetype + * @return string the url * * Returns the path to the image of this file type. */ @@ -184,8 +189,8 @@ class OC_Helper { /** * @brief Make a human file size - * @param $bytes file size in bytes - * @returns a human readable file size + * @param int $bytes file size in bytes + * @return string a human readable file size * * Makes 2048 to 2 kB. */ @@ -209,15 +214,14 @@ class OC_Helper { /** * @brief Make a computer file size - * @param $str file size in a fancy format - * @returns a file size in bytes + * @param string $str file size in a fancy format + * @return int a file size in bytes * * Makes 2kB to 2048. * * Inspired by: http://www.php.net/manual/en/function.filesize.php#92418 */ public static function computerFileSize( $str ) { - $bytes = 0; $str=strtolower($str); $bytes_array = array( @@ -246,10 +250,10 @@ class OC_Helper { } /** - * @brief Recusive editing of file permissions - * @param $path path to file or folder - * @param $filemode unix style file permissions as integer - * + * @brief Recursive editing of file permissions + * @param string $path path to file or folder + * @param int $filemode unix style file permissions + * @return bool */ static function chmodr($path, $filemode) { if (!is_dir($path)) @@ -274,7 +278,7 @@ class OC_Helper { } /** - * @brief Recusive copying of folders + * @brief Recursive copying of folders * @param string $src source folder * @param string $dest target folder * @@ -296,9 +300,9 @@ class OC_Helper { } /** - * @brief Recusive deletion of folders + * @brief Recursive deletion of folders * @param string $dir path to the folder - * + * @return bool */ static function rmdirr($dir) { if(is_dir($dir)) { @@ -314,12 +318,14 @@ class OC_Helper { } if(file_exists($dir)) { return false; + }else{ + return true; } } /** * get the mimetype form a local file - * @param string path + * @param string $path * @return string * does NOT work for ownClouds filesystem, use OC_FileSystem::getMimeType instead */ @@ -364,6 +370,7 @@ class OC_Helper { //trim the character set from the end of the response $mimeType=substr($reply,0,strrpos($reply,' ')); + $mimeType=substr($mimeType,0,strrpos($mimeType,"\n")); //trim ; if (strpos($mimeType, ';') !== false) { @@ -376,7 +383,7 @@ class OC_Helper { /** * get the mimetype form a data string - * @param string data + * @param string $data * @return string */ static function getStringMimeType($data) { @@ -396,9 +403,9 @@ class OC_Helper { /** * @brief Checks $_REQUEST contains a var for the $s key. If so, returns the html-escaped value of this var; otherwise returns the default value provided by $d. - * @param $s name of the var to escape, if set. - * @param $d default value. - * @returns the print-safe value. + * @param string $s name of the var to escape, if set. + * @param string $d default value. + * @return string the print-safe value. * */ @@ -412,7 +419,7 @@ class OC_Helper { } /** - * returns "checked"-attribut if request contains selected radio element OR if radio element is the default one -- maybe? + * returns "checked"-attribute if request contains selected radio element OR if radio element is the default one -- maybe? * @param string $s Name of radio-button element name * @param string $v Value of current radio-button element * @param string $d Value of default radio-button element @@ -425,8 +432,8 @@ class OC_Helper { /** * detect if a given program is found in the search PATH * - * @param string program name - * @param string optional search path, defaults to $PATH + * @param string $program name + * @param string $optional search path, defaults to $PATH * @return bool true if executable program found in path */ public static function canExecute($name, $path = false) { @@ -448,18 +455,16 @@ class OC_Helper { $dirs = explode(PATH_SEPARATOR, $path); // WARNING : We have to check if open_basedir is enabled : $obd = ini_get('open_basedir'); - if($obd != "none") + if($obd != "none"){ $obd_values = explode(PATH_SEPARATOR, $obd); - if(count($obd_values) > 0 and $obd_values[0]) - { - // open_basedir is in effect ! - // We need to check if the program is in one of these dirs : - $dirs = $obd_values; + if(count($obd_values) > 0 and $obd_values[0]){ + // open_basedir is in effect ! + // We need to check if the program is in one of these dirs : + $dirs = $obd_values; + } } - foreach($dirs as $dir) - { - foreach($exts as $ext) - { + foreach($dirs as $dir){ + foreach($exts as $ext){ if($check_fn("$dir/$name".$ext)) return true; } @@ -469,8 +474,8 @@ class OC_Helper { /** * copy the contents of one stream to another - * @param resource source - * @param resource target + * @param resource $source + * @param resource $target * @return int the number of bytes copied */ public static function streamCopy($source,$target) { @@ -486,7 +491,7 @@ class OC_Helper { /** * create a temporary file with an unique filename - * @param string postfix + * @param string $postfix * @return string * * temporary files are automatically cleaned up after the script is finished @@ -550,10 +555,10 @@ class OC_Helper { $ext = substr($filename, $pos); } else { $name = $filename; + $ext = ''; } $newpath = $path . '/' . $filename; - $newname = $filename; $counter = 2; while (OC_Filesystem::file_exists($newpath)) { $newname = $name . ' (' . $counter . ')' . $ext; @@ -567,8 +572,8 @@ class OC_Helper { /* * checks if $sub is a subdirectory of $parent * - * @param $sub - * @param $parent + * @param string $sub + * @param string $parent * @return bool */ public static function issubdirectory($sub, $parent) { @@ -601,9 +606,9 @@ class OC_Helper { /** * @brief Returns an array with all keys from input lowercased or uppercased. Numbered indices are left as is. * - * @param $input The array to work on - * @param $case Either MB_CASE_UPPER or MB_CASE_LOWER (default) - * @param $encoding The encoding parameter is the character encoding. Defaults to UTF-8 + * @param array $input The array to work on + * @param int $case Either MB_CASE_UPPER or MB_CASE_LOWER (default) + * @param string $encoding The encoding parameter is the character encoding. Defaults to UTF-8 * @return array * * Returns an array with all keys from input lowercased or uppercased. Numbered indices are left as is. @@ -622,11 +627,11 @@ class OC_Helper { /** * @brief replaces a copy of string delimited by the start and (optionally) length parameters with the string given in replacement. * - * @param $input The input string. .Opposite to the PHP build-in function does not accept an array. - * @param $replacement The replacement string. - * @param $start If start is positive, the replacing will begin at the start'th offset into string. If start is negative, the replacing will begin at the start'th character from the end of string. - * @param $length Length of the part to be replaced - * @param $encoding The encoding parameter is the character encoding. Defaults to UTF-8 + * @param string $input The input string. .Opposite to the PHP build-in function does not accept an array. + * @param string $replacement The replacement string. + * @param int $start If start is positive, the replacing will begin at the start'th offset into string. If start is negative, the replacing will begin at the start'th character from the end of string. + * @param int $length Length of the part to be replaced + * @param string $encoding The encoding parameter is the character encoding. Defaults to UTF-8 * @return string * */ @@ -643,18 +648,18 @@ class OC_Helper { /** * @brief Replace all occurrences of the search string with the replacement string * - * @param $search The value being searched for, otherwise known as the needle. String. - * @param $replace The replacement string. - * @param $subject The string or array being searched and replaced on, otherwise known as the haystack. - * @param $encoding The encoding parameter is the character encoding. Defaults to UTF-8 - * @param $count If passed, this will be set to the number of replacements performed. + * @param string $search The value being searched for, otherwise known as the needle. + * @param string $replace The replacement + * @param string $subject The string or array being searched and replaced on, otherwise known as the haystack. + * @param string $encoding The encoding parameter is the character encoding. Defaults to UTF-8 + * @param int $count If passed, this will be set to the number of replacements performed. * @return string * */ public static function mb_str_replace($search, $replace, $subject, $encoding = 'UTF-8', &$count = null) { $offset = -1; $length = mb_strlen($search, $encoding); - while(($i = mb_strrpos($subject, $search, $offset, $encoding))) { + while(($i = mb_strrpos($subject, $search, $offset, $encoding)) !== false ) { $subject = OC_Helper::mb_substr_replace($subject, $replace, $i, $length); $offset = $i - mb_strlen($subject, $encoding) - 1; $count++; @@ -664,10 +669,10 @@ class OC_Helper { /** * @brief performs a search in a nested array - * @param haystack the array to be searched - * @param needle the search string - * @param $index optional, only search this key name - * @return the key of the matching field, otherwise false + * @param array $haystack the array to be searched + * @param string $needle the search string + * @param string $index optional, only search this key name + * @return mixed the key of the matching field, otherwise false * * performs a search in a nested array * diff --git a/lib/hook.php b/lib/hook.php index 1bf80f604f..26a5369374 100644 --- a/lib/hook.php +++ b/lib/hook.php @@ -9,11 +9,11 @@ class OC_Hook{ /** * @brief connects a function to a hook - * @param $signalclass class name of emitter - * @param $signalname name of signal - * @param $slotclass class name of slot - * @param $slotname name of slot - * @returns true/false + * @param string $signalclass class name of emitter + * @param string $signalname name of signal + * @param string $slotclass class name of slot + * @param string $slotname name of slot + * @return bool * * This function makes it very easy to connect to use hooks. * @@ -38,11 +38,11 @@ class OC_Hook{ } /** - * @brief emitts a signal - * @param $signalclass class name of emitter - * @param $signalname name of signal - * @param $params defautl: array() array with additional data - * @returns true if slots exists or false if not + * @brief emits a signal + * @param string $signalclass class name of emitter + * @param string $signalname name of signal + * @param array $params defautl: array() array with additional data + * @return bool, true if slots exists or false if not * * Emits a signal. To get data from the slot use references! * @@ -68,8 +68,8 @@ class OC_Hook{ /** * clear hooks - * @param string signalclass - * @param string signalname + * @param string $signalclass + * @param string $signalname */ static public function clear($signalclass='', $signalname='') { if($signalclass) { diff --git a/lib/l10n.php b/lib/l10n.php index 90877cbd74..4eb4c323d8 100644 --- a/lib/l10n.php +++ b/lib/l10n.php @@ -140,7 +140,7 @@ class OC_L10N{ /** * @brief Translating * @param $text String The text we need a translation for - * @param array|\default $parameters default:array() Parameters for sprintf + * @param array $parameters default:array() Parameters for sprintf * @return \OC_L10N_String Translation or the same text * * Returns the translation. If no translation is found, $text will be diff --git a/lib/l10n/da.php b/lib/l10n/da.php index 5c68174fa0..09124c1829 100644 --- a/lib/l10n/da.php +++ b/lib/l10n/da.php @@ -23,5 +23,6 @@ "last year" => "Sidste år", "years ago" => "år siden", "%s is available. Get more information" => "%s er tilgængelig. Få mere information", -"up to date" => "opdateret" +"up to date" => "opdateret", +"updates check is disabled" => "Check for opdateringer er deaktiveret" ); diff --git a/lib/l10n/de.php b/lib/l10n/de.php index 4a567003de..8c81be1658 100644 --- a/lib/l10n/de.php +++ b/lib/l10n/de.php @@ -11,13 +11,13 @@ "Selected files too large to generate zip file." => "Die gewählten Dateien sind zu groß, um eine ZIP-Datei zu erstellen.", "Application is not enabled" => "Die Anwendung ist nicht aktiviert", "Authentication error" => "Authentifizierungs-Fehler", -"Token expired. Please reload page." => "Token abgelaufen. Bitte laden Sie die Seite neu.", +"Token expired. Please reload page." => "Token abgelaufen. Bitte lade die Seite neu.", "seconds ago" => "Vor wenigen Sekunden", "1 minute ago" => "Vor einer Minute", "%d minutes ago" => "Vor %d Minuten", "today" => "Heute", "yesterday" => "Gestern", -"%d days ago" => "Vor %d Tagen", +"%d days ago" => "Vor %d Tag(en)", "last month" => "Letzten Monat", "months ago" => "Vor Monaten", "last year" => "Letztes Jahr", diff --git a/lib/l10n/el.php b/lib/l10n/el.php index d9f272258e..e4e1249071 100644 --- a/lib/l10n/el.php +++ b/lib/l10n/el.php @@ -11,7 +11,7 @@ "Selected files too large to generate zip file." => "Τα επιλεγμένα αρχεία είναι μεγάλα ώστε να δημιουργηθεί αρχείο zip.", "Application is not enabled" => "Δεν ενεργοποιήθηκε η εφαρμογή", "Authentication error" => "Σφάλμα πιστοποίησης", -"Token expired. Please reload page." => "Το αναγνωριστικό έληξε. Παρακαλώ επανα-φορτώστε την σελίδα.", +"Token expired. Please reload page." => "Το αναγνωριστικό έληξε. Παρακαλώ φορτώστε ξανά την σελίδα.", "seconds ago" => "δευτερόλεπτα πριν", "1 minute ago" => "1 λεπτό πριν", "%d minutes ago" => "%d λεπτά πριν", @@ -21,5 +21,8 @@ "last month" => "τον προηγούμενο μήνα", "months ago" => "μήνες πριν", "last year" => "τον προηγούμενο χρόνο", -"years ago" => "χρόνια πριν" +"years ago" => "χρόνια πριν", +"%s is available. Get more information" => "%s είναι διαθέσιμα. Δείτε περισσότερες πληροφορίες", +"up to date" => "ενημερωμένο", +"updates check is disabled" => "ο έλεγχος ενημερώσεων είναι απενεργοποιημένος" ); diff --git a/lib/l10n/es_AR.php b/lib/l10n/es_AR.php new file mode 100644 index 0000000000..fd50027d8a --- /dev/null +++ b/lib/l10n/es_AR.php @@ -0,0 +1,28 @@ + "Ayuda", +"Personal" => "Personal", +"Settings" => "Ajustes", +"Users" => "Usuarios", +"Apps" => "Aplicaciones", +"Admin" => "Administración", +"ZIP download is turned off." => "La descarga en ZIP está desactivada.", +"Files need to be downloaded one by one." => "Los archivos deben ser descargados de a uno.", +"Back to Files" => "Volver a archivos", +"Selected files too large to generate zip file." => "Los archivos seleccionados son demasiado grandes para generar el archivo zip.", +"Application is not enabled" => "La aplicación no está habilitada", +"Authentication error" => "Error de autenticación", +"Token expired. Please reload page." => "Token expirado. Por favor, recargá la página.", +"seconds ago" => "hace unos segundos", +"1 minute ago" => "hace 1 minuto", +"%d minutes ago" => "hace %d minutos", +"today" => "hoy", +"yesterday" => "ayer", +"%d days ago" => "hace %d días", +"last month" => "este mes", +"months ago" => "hace meses", +"last year" => "este año", +"years ago" => "hace años", +"%s is available. Get more information" => "%s está disponible. Conseguí más información", +"up to date" => "actualizado", +"updates check is disabled" => "comprobar actualizaciones está desactivado" +); diff --git a/lib/l10n/gl.php b/lib/l10n/gl.php new file mode 100644 index 0000000000..7a9de627c2 --- /dev/null +++ b/lib/l10n/gl.php @@ -0,0 +1,28 @@ + "Axuda", +"Personal" => "Personal", +"Settings" => "Preferencias", +"Users" => "Usuarios", +"Apps" => "Apps", +"Admin" => "Administración", +"ZIP download is turned off." => "Descargas ZIP está deshabilitadas", +"Files need to be downloaded one by one." => "Os ficheiros necesitan ser descargados de un en un", +"Back to Files" => "Voltar a ficheiros", +"Selected files too large to generate zip file." => "Os ficheiros seleccionados son demasiado grandes para xerar un ficheiro ZIP", +"Application is not enabled" => "O aplicativo non está habilitado", +"Authentication error" => "Erro na autenticación", +"Token expired. Please reload page." => "Testemuño caducado. Por favor recargue a páxina.", +"seconds ago" => "hai segundos", +"1 minute ago" => "hai 1 minuto", +"%d minutes ago" => "hai %d minutos", +"today" => "hoxe", +"yesterday" => "onte", +"%d days ago" => "hai %d días", +"last month" => "último mes", +"months ago" => "meses atrás", +"last year" => "último ano", +"years ago" => "anos atrás", +"%s is available. Get more information" => "%s está dispoñible. Obteña máis información", +"up to date" => "ao día", +"updates check is disabled" => "comprobación de actualizacións está deshabilitada" +); diff --git a/lib/l10n/oc.php b/lib/l10n/oc.php new file mode 100644 index 0000000000..ffc0588bec --- /dev/null +++ b/lib/l10n/oc.php @@ -0,0 +1,24 @@ + "Ajuda", +"Personal" => "Personal", +"Settings" => "Configuracion", +"Users" => "Usancièrs", +"Apps" => "Apps", +"Admin" => "Admin", +"ZIP download is turned off." => "Avalcargar los ZIP es inactiu.", +"Files need to be downloaded one by one." => "Los fichièrs devan èsser avalcargats un per un.", +"Back to Files" => "Torna cap als fichièrs", +"Authentication error" => "Error d'autentificacion", +"seconds ago" => "segonda a", +"1 minute ago" => "1 minuta a", +"%d minutes ago" => "%d minutas a", +"today" => "uèi", +"yesterday" => "ièr", +"%d days ago" => "%d jorns a", +"last month" => "mes passat", +"months ago" => "meses a", +"last year" => "an passat", +"years ago" => "ans a", +"up to date" => "a jorn", +"updates check is disabled" => "la verificacion de mesa a jorn es inactiva" +); diff --git a/lib/l10n/pt_BR.php b/lib/l10n/pt_BR.php new file mode 100644 index 0000000000..1455eabbc9 --- /dev/null +++ b/lib/l10n/pt_BR.php @@ -0,0 +1,28 @@ + "Ajuda", +"Personal" => "Pessoal", +"Settings" => "Ajustes", +"Users" => "Usuários", +"Apps" => "Aplicações", +"Admin" => "Admin", +"ZIP download is turned off." => "Download ZIP está desligado.", +"Files need to be downloaded one by one." => "Arquivos precisam ser baixados um de cada vez.", +"Back to Files" => "Voltar para Arquivos", +"Selected files too large to generate zip file." => "Arquivos selecionados são muito grandes para gerar arquivo zip.", +"Application is not enabled" => "Aplicação não está habilitada", +"Authentication error" => "Erro de autenticação", +"Token expired. Please reload page." => "Token expirou. Por favor recarregue a página.", +"seconds ago" => "segundos atrás", +"1 minute ago" => "1 minuto atrás", +"%d minutes ago" => "%d minutos atrás", +"today" => "hoje", +"yesterday" => "ontem", +"%d days ago" => "%d dias atrás", +"last month" => "último mês", +"months ago" => "meses atrás", +"last year" => "último ano", +"years ago" => "anos atrás", +"%s is available. Get more information" => "%s está disponível. Obtenha mais informações", +"up to date" => "atualizado", +"updates check is disabled" => "checagens de atualização estão desativadas" +); diff --git a/lib/l10n/ro.php b/lib/l10n/ro.php new file mode 100644 index 0000000000..5fffeec233 --- /dev/null +++ b/lib/l10n/ro.php @@ -0,0 +1,28 @@ + "Ajutor", +"Personal" => "Personal", +"Settings" => "Setări", +"Users" => "Utilizatori", +"Apps" => "Aplicații", +"Admin" => "Admin", +"ZIP download is turned off." => "Descărcarea ZIP este dezactivată.", +"Files need to be downloaded one by one." => "Fișierele trebuie descărcate unul câte unul.", +"Back to Files" => "Înapoi la fișiere", +"Selected files too large to generate zip file." => "Fișierele selectate sunt prea mari pentru a genera un fișier zip.", +"Application is not enabled" => "Aplicația nu este activată", +"Authentication error" => "Eroare la autentificare", +"Token expired. Please reload page." => "Token expirat. Te rugăm să reîncarci pagina.", +"seconds ago" => "secunde în urmă", +"1 minute ago" => "1 minut în urmă", +"%d minutes ago" => "%d minute în urmă", +"today" => "astăzi", +"yesterday" => "ieri", +"%d days ago" => "%d zile în urmă", +"last month" => "ultima lună", +"months ago" => "luni în urmă", +"last year" => "ultimul an", +"years ago" => "ani în urmă", +"%s is available. Get more information" => "%s este disponibil. Vezi mai multe informații", +"up to date" => "la zi", +"updates check is disabled" => "verificarea după actualizări este dezactivată" +); diff --git a/lib/l10n/ru_RU.php b/lib/l10n/ru_RU.php new file mode 100644 index 0000000000..1e69199301 --- /dev/null +++ b/lib/l10n/ru_RU.php @@ -0,0 +1,27 @@ + "Помощь", +"Personal" => "Персональный", +"Settings" => "Настройки", +"Users" => "Пользователи", +"Apps" => "Приложения", +"Admin" => "Админ", +"Files need to be downloaded one by one." => "Файлы должны быть загружены один за другим.", +"Back to Files" => "Обратно к файлам", +"Selected files too large to generate zip file." => "Выбранные файлы слишком велики для генерации zip-архива.", +"Application is not enabled" => "Приложение не запущено", +"Authentication error" => "Ошибка аутентификации", +"Token expired. Please reload page." => "Маркер истек. Пожалуйста, перезагрузите страницу.", +"seconds ago" => "секунд назад", +"1 minute ago" => "1 минуту назад", +"%d minutes ago" => "%d минут назад", +"today" => "сегодня", +"yesterday" => "вчера", +"%d days ago" => "%d дней назад", +"last month" => "в прошлом месяце", +"months ago" => "месяц назад", +"last year" => "в прошлом году", +"years ago" => "год назад", +"%s is available. Get more information" => "%s доступно. Получите more information", +"up to date" => "до настоящего времени", +"updates check is disabled" => "Проверка обновлений отключена" +); diff --git a/lib/l10n/sk_SK.php b/lib/l10n/sk_SK.php new file mode 100644 index 0000000000..33b329c30b --- /dev/null +++ b/lib/l10n/sk_SK.php @@ -0,0 +1,25 @@ + "Pomoc", +"Personal" => "Osobné", +"Settings" => "Nastavenia", +"Users" => "Užívatelia", +"Apps" => "Aplikácie", +"Admin" => "Správca", +"ZIP download is turned off." => "Sťahovanie súborov ZIP je vypnuté.", +"Files need to be downloaded one by one." => "Súbory musia byť nahrávané jeden za druhým.", +"Back to Files" => "Späť na súbory", +"Selected files too large to generate zip file." => "Zvolené súbory sú príliž veľké na vygenerovanie zip súboru.", +"Application is not enabled" => "Aplikácia nie je zapnutá", +"Authentication error" => "Chyba autentifikácie", +"1 minute ago" => "pred 1 minútou", +"%d minutes ago" => "pred %d minútami", +"today" => "dnes", +"yesterday" => "včera", +"%d days ago" => "pred %d dňami", +"last month" => "minulý mesiac", +"months ago" => "pred mesiacmi", +"last year" => "minulý rok", +"years ago" => "pred rokmi", +"up to date" => "aktuálny", +"updates check is disabled" => "sledovanie aktualizácií je vypnuté" +); diff --git a/lib/l10n/zh_CN.GB2312.php b/lib/l10n/zh_CN.GB2312.php new file mode 100644 index 0000000000..4b0a5e9f4d --- /dev/null +++ b/lib/l10n/zh_CN.GB2312.php @@ -0,0 +1,28 @@ + "帮助", +"Personal" => "私人", +"Settings" => "设置", +"Users" => "用户", +"Apps" => "程序", +"Admin" => "管理员", +"ZIP download is turned off." => "ZIP 下载已关闭", +"Files need to be downloaded one by one." => "需要逐个下载文件。", +"Back to Files" => "返回到文件", +"Selected files too large to generate zip file." => "选择的文件太大而不能生成 zip 文件。", +"Application is not enabled" => "应用未启用", +"Authentication error" => "验证错误", +"Token expired. Please reload page." => "会话过期。请刷新页面。", +"seconds ago" => "秒前", +"1 minute ago" => "1 分钟前", +"%d minutes ago" => "%d 分钟前", +"today" => "今天", +"yesterday" => "昨天", +"%d days ago" => "%d 天前", +"last month" => "上个月", +"months ago" => "月前", +"last year" => "去年", +"years ago" => "年前", +"%s is available. Get more information" => "%s 不可用。获知 详情", +"up to date" => "最新", +"updates check is disabled" => "更新检测已禁用" +); diff --git a/lib/migrate.php b/lib/migrate.php index 823b3574f1..611a935ee5 100644 --- a/lib/migrate.php +++ b/lib/migrate.php @@ -84,21 +84,15 @@ class OC_Migrate{ $types = array( 'user', 'instance', 'system', 'userfiles' ); if( !in_array( $type, $types ) ) { OC_Log::write( 'migration', 'Invalid export type', OC_Log::ERROR ); - return json_encode( array( array( 'success' => false ) ) ); + return json_encode( array( 'success' => false ) ); } self::$exporttype = $type; // Userid? if( self::$exporttype == 'user' ) { // Check user exists - if( !is_null($uid) ) { - $db = new OC_User_Database; - if( !$db->userExists( $uid ) ) { - OC_Log::write('migration', 'User: '.$uid.' is not in the database and so cannot be exported.', OC_Log::ERROR); - return json_encode( array( 'success' => false ) ); - } - self::$uid = $uid; - } else { - self::$uid = OC_User::getUser(); + self::$uid = is_null($uid) ? OC_User::getUser() : $uid; + if(!OC_User::userExists(self::$uid)){ + return json_encode( array( 'success' => false) ); } } // Calculate zipname diff --git a/lib/migration/content.php b/lib/migration/content.php index 64b8168cd9..89b1e782d8 100644 --- a/lib/migration/content.php +++ b/lib/migration/content.php @@ -30,7 +30,7 @@ class OC_Migration_Content{ // Holds the MDB2 object private $db=null; // Holds an array of tmpfiles to delete after zip creation - private $tmpfiles=false; + private $tmpfiles=array(); /** * @brief sets up the @@ -43,18 +43,21 @@ class OC_Migration_Content{ $this->zip = $zip; $this->db = $db; - if( !is_null( $db ) ) { - // Get db path - $db = $this->db->getDatabase(); - $this->tmpfiles[] = $db; - } - } // @brief prepares the db // @param $query the sql query to prepare public function prepare( $query ) { - + + // Only add database to tmpfiles if actually used + if( !is_null( $this->db ) ) { + // Get db path + $db = $this->db->getDatabase(); + if(!in_array($db, $this->tmpfiles)){ + $this->tmpfiles[] = $db; + } + } + // Optimize the query $query = $this->processQuery( $query ); diff --git a/lib/ocsclient.php b/lib/ocsclient.php index 8596ea0b3c..6428a88367 100644 --- a/lib/ocsclient.php +++ b/lib/ocsclient.php @@ -53,7 +53,7 @@ class OC_OCSClient{ /** * @brief Get all the categories from the OCS server * @returns array with category ids - * + * @note returns NULL if config value appstoreenabled is set to false * This function returns a list of all the application categories on the OCS server */ public static function getCategories() { diff --git a/lib/preferences.php b/lib/preferences.php index 3d61887785..b198a18415 100644 --- a/lib/preferences.php +++ b/lib/preferences.php @@ -40,7 +40,7 @@ class OC_Preferences{ /** * @brief Get all users using the preferences - * @returns array with user ids + * @return array with user ids * * This function returns a list of all users that have at least one entry * in the preferences table. @@ -60,8 +60,8 @@ class OC_Preferences{ /** * @brief Get all apps of a user - * @param $user user - * @returns array with app ids + * @param string $user user + * @return array with app ids * * This function returns a list of all apps of the user that have at least * one entry in the preferences table. @@ -81,9 +81,9 @@ class OC_Preferences{ /** * @brief Get the available keys for an app - * @param $user user - * @param $app the app we are looking for - * @returns array with key names + * @param string $user user + * @param string $app the app we are looking for + * @return array with key names * * This function gets all keys of an app of an user. Please note that the * values are not returned. @@ -103,14 +103,14 @@ class OC_Preferences{ /** * @brief Gets the preference - * @param $user user - * @param $app app - * @param $key key - * @param $default = null, default value if the key does not exist - * @returns the value or $default + * @param string $user user + * @param string $app app + * @param string $key key + * @param string $default = null, default value if the key does not exist + * @return string the value or $default * - * This function gets a value from the prefernces table. If the key does - * not exist the default value will be returnes + * This function gets a value from the preferences table. If the key does + * not exist the default value will be returned */ public static function getValue( $user, $app, $key, $default = null ) { // Try to fetch the value, return default if not exists. @@ -127,11 +127,11 @@ class OC_Preferences{ /** * @brief sets a value in the preferences - * @param $user user - * @param $app app - * @param $key key - * @param $value value - * @returns true/false + * @param string $user user + * @param string $app app + * @param string $key key + * @param string $value value + * @return bool * * Adds a value to the preferences. If the key did not exist before, it * will be added automagically. @@ -155,63 +155,63 @@ class OC_Preferences{ /** * @brief Deletes a key - * @param $user user - * @param $app app - * @param $key key - * @returns true/false + * @param string $user user + * @param string $app app + * @param string $key key + * @return bool * * Deletes a key. */ public static function deleteKey( $user, $app, $key ) { // No need for more comments $query = OC_DB::prepare( 'DELETE FROM `*PREFIX*preferences` WHERE `userid` = ? AND `appid` = ? AND `configkey` = ?' ); - $result = $query->execute( array( $user, $app, $key )); + $query->execute( array( $user, $app, $key )); return true; } /** * @brief Remove app of user from preferences - * @param $user user - * @param $app app - * @returns true/false + * @param string $user user + * @param string $app app + * @return bool * * Removes all keys in appconfig belonging to the app and the user. */ public static function deleteApp( $user, $app ) { // No need for more comments $query = OC_DB::prepare( 'DELETE FROM `*PREFIX*preferences` WHERE `userid` = ? AND `appid` = ?' ); - $result = $query->execute( array( $user, $app )); + $query->execute( array( $user, $app )); return true; } /** * @brief Remove user from preferences - * @param $user user - * @returns true/false + * @param string $user user + * @return bool * * Removes all keys in appconfig belonging to the user. */ public static function deleteUser( $user ) { // No need for more comments $query = OC_DB::prepare( 'DELETE FROM `*PREFIX*preferences` WHERE `userid` = ?' ); - $result = $query->execute( array( $user )); + $query->execute( array( $user )); return true; } /** * @brief Remove app from all users - * @param $app app - * @returns true/false + * @param string $app app + * @return bool * * Removes all keys in preferences belonging to the app. */ public static function deleteAppFromAllUsers( $app ) { // No need for more comments $query = OC_DB::prepare( 'DELETE FROM `*PREFIX*preferences` WHERE `appid` = ?' ); - $result = $query->execute( array( $app )); + $query->execute( array( $app )); return true; } diff --git a/lib/public/config.php b/lib/public/config.php index 377150115f..1f163d5261 100644 --- a/lib/public/config.php +++ b/lib/public/config.php @@ -40,9 +40,9 @@ namespace OCP; class Config { /** * @brief Gets a value from config.php - * @param $key key - * @param $default = null default value - * @returns the value or $default + * @param string $key key + * @param string $default = null default value + * @return string the value or $default * * This function gets the value from config.php. If it does not exist, * $default will be returned. @@ -53,9 +53,9 @@ class Config { /** * @brief Sets a value - * @param $key key - * @param $value value - * @returns true/false + * @param string $key key + * @param string $value value + * @return bool * * This function sets the value and writes the config.php. If the file can * not be written, false will be returned. @@ -66,13 +66,13 @@ class Config { /** * @brief Gets the config value - * @param $app app - * @param $key key - * @param $default = null, default value if the key does not exist - * @returns the value or $default + * @param string $app app + * @param string $key key + * @param string $default = null, default value if the key does not exist + * @return string the value or $default * * This function gets a value from the appconfig table. If the key does - * not exist the default value will be returnes + * not exist the default value will be returned */ public static function getAppValue( $app, $key, $default = null ) { return(\OC_Appconfig::getValue( $app, $key, $default )); @@ -80,10 +80,10 @@ class Config { /** * @brief sets a value in the appconfig - * @param $app app - * @param $key key - * @param $value value - * @returns true/false + * @param string $app app + * @param string $key key + * @param string $value value + * @return string true/false * * Sets a value. If the key did not exist before it will be created. */ @@ -93,14 +93,14 @@ class Config { /** * @brief Gets the preference - * @param $user user - * @param $app app - * @param $key key - * @param $default = null, default value if the key does not exist - * @returns the value or $default + * @param string $user user + * @param string $app app + * @param string $key key + * @param string $default = null, default value if the key does not exist + * @return string the value or $default * - * This function gets a value from the prefernces table. If the key does - * not exist the default value will be returnes + * This function gets a value from the preferences table. If the key does + * not exist the default value will be returned */ public static function getUserValue( $user, $app, $key, $default = null ) { return(\OC_Preferences::getValue( $user, $app, $key, $default )); @@ -108,16 +108,16 @@ class Config { /** * @brief sets a value in the preferences - * @param $user user - * @param $app app - * @param $key key - * @param $value value - * @returns true/false + * @param string $user user + * @param string $app app + * @param string $key key + * @param string $value value + * @returns bool * * Adds a value to the preferences. If the key did not exist before, it * will be added automagically. */ public static function setUserValue( $user, $app, $key, $value ) { - return(\OC_Preferences::setValue( $user, $app, $key, $value )); + return(\OC_Preferences::setValue( $user, $app, $key, $value )); } } diff --git a/lib/public/share.php b/lib/public/share.php index b215d7f938..1039d6f0db 100644 --- a/lib/public/share.php +++ b/lib/public/share.php @@ -418,11 +418,20 @@ class Share { } public static function setExpirationDate($itemType, $itemSource, $date) { - if ($item = self::getItems($itemType, $itemSource, null, null, \OC_User::getUser(), self::FORMAT_NONE, null, 1, false)) { - error_log('setting'); - $query = \OC_DB::prepare('UPDATE `*PREFIX*share` SET `expiration` = ? WHERE `id` = ?'); - $query->execute(array($date, $item['id'])); - return true; + if ($items = self::getItems($itemType, $itemSource, null, null, \OC_User::getUser(), self::FORMAT_NONE, null, -1, false)) { + if (!empty($items)) { + if ($date == '') { + $date = null; + } else { + $date = new \DateTime($date); + $date = date('Y-m-d H:i', $date->format('U') - $date->getOffset()); + } + $query = \OC_DB::prepare('UPDATE `*PREFIX*share` SET `expiration` = ? WHERE `id` = ?'); + foreach ($items as $item) { + $query->execute(array($date, $item['id'])); + } + return true; + } } return false; } diff --git a/lib/public/util.php b/lib/public/util.php index 747448e62e..38da7e8217 100644 --- a/lib/public/util.php +++ b/lib/public/util.php @@ -116,6 +116,7 @@ class Util { * @param $app app * @param $file file * @param $args array with param=>value, will be appended to the returned url + * The value of $args will be urlencoded * @returns the url * * Returns a absolute url to the given app and file. @@ -151,6 +152,7 @@ class Util { * @param $app app * @param $file file * @param $args array with param=>value, will be appended to the returned url + * The value of $args will be urlencoded * @returns the url * * Returns a url to the given app and file. diff --git a/lib/search/provider/file.php b/lib/search/provider/file.php index 50e1645767..e21278f391 100644 --- a/lib/search/provider/file.php +++ b/lib/search/provider/file.php @@ -5,29 +5,35 @@ class OC_Search_Provider_File extends OC_Search_Provider{ $files=OC_FileCache::search($query,true); $results=array(); foreach($files as $fileData) { - $file=$fileData['path']; - $mime=$fileData['mimetype']; + $path = $fileData['path']; + $mime = $fileData['mimetype']; + + $name = basename($path); + $text = ''; if($mime=='httpd/unix-directory') { - $results[]=new OC_Search_Result(basename($file),'',OC_Helper::linkTo( 'files', 'index.php', array('dir' => $file)),'Files'); + $link = OC_Helper::linkTo( 'files', 'index.php', array('dir' => $path)); + $type = 'Files'; }else{ - $mimeBase=$fileData['mimepart']; + $link = OC_Helper::linkTo( 'files', 'download.php', array('file' => $path)); + $mimeBase = $fileData['mimepart']; switch($mimeBase) { case 'audio': break; case 'text': - $results[]=new OC_Search_Result(basename($file),'',OC_Helper::linkTo( 'files', 'download.php', array('dir' => $file) ),'Text'); + $type = 'Text'; break; case 'image': - $results[]=new OC_Search_Result(basename($file),'',OC_Helper::linkTo( 'files', 'download.php', array('dir' => $file) ),'Images'); + $type = 'Images'; break; default: if($mime=='application/xml') { - $results[]=new OC_Search_Result(basename($file),'',OC_Helper::linkTo( 'files', 'download.php', array('dir' => $file) ),'Text'); + $type = 'Text'; }else{ - $results[]=new OC_Search_Result(basename($file),'',OC_Helper::linkTo( 'files', 'download.php', array('dir' => $file) ),'Files'); + $type = 'Files'; } } } + $results[] = new OC_Search_Result($name, $text, $link, $type); } return $results; } diff --git a/lib/setup.php b/lib/setup.php index c21c8be395..16b9ec68df 100644 --- a/lib/setup.php +++ b/lib/setup.php @@ -79,7 +79,7 @@ class OC_Setup { } //generate a random salt that is used to salt the local user passwords - $salt=mt_rand(1000,9000).mt_rand(1000,9000).mt_rand(1000,9000).mt_rand(1000,9000).mt_rand(1000,9000).mt_rand(1000,9000).mt_rand(1000,9000).mt_rand(1000,9000); + $salt = OC_Util::generate_random_bytes(30); OC_Config::setValue('passwordsalt', $salt); //write the config file diff --git a/lib/subadmin.php b/lib/subadmin.php index 363e4a97ca..9e83e6da43 100644 --- a/lib/subadmin.php +++ b/lib/subadmin.php @@ -172,7 +172,7 @@ class OC_SubAdmin{ } /** - * @brief delete all SubAdmins8 by gid + * @brief delete all SubAdmins by gid * @param $parameters * @return boolean */ diff --git a/lib/template.php b/lib/template.php index 8c872a2059..681b3f0b14 100644 --- a/lib/template.php +++ b/lib/template.php @@ -23,10 +23,10 @@ /** * @brief make OC_Helper::linkTo available as a simple function - * @param $app app - * @param $file file - * @param $args array with param=>value, will be appended to the returned url - * @returns link to the file + * @param string $app app + * @param string $file file + * @param array $args array with param=>value, will be appended to the returned url + * @return string link to the file * * For further information have a look at OC_Helper::linkTo */ @@ -36,9 +36,9 @@ function link_to( $app, $file, $args = array() ) { /** * @brief make OC_Helper::imagePath available as a simple function - * @param $app app - * @param $image image - * @returns link to the image + * @param string $app app + * @param string $image image + * @return string link to the image * * For further information have a look at OC_Helper::imagePath */ @@ -48,8 +48,8 @@ function image_path( $app, $image ) { /** * @brief make OC_Helper::mimetypeIcon available as a simple function - * @param $mimetype mimetype - * @returns link to the image + * @param string $mimetype mimetype + * @return string link to the image * * For further information have a look at OC_Helper::mimetypeIcon */ @@ -59,8 +59,8 @@ function mimetype_icon( $mimetype ) { /** * @brief make OC_Helper::humanFileSize available as a simple function - * @param $bytes size in bytes - * @returns size as string + * @param int $bytes size in bytes + * @return string size as string * * For further information have a look at OC_Helper::humanFileSize */ @@ -139,10 +139,10 @@ class OC_Template{ /** * @brief Constructor - * @param $app app providing the template - * @param $file name of the template file (without suffix) - * @param $renderas = ""; produce a full page - * @returns OC_Template object + * @param string $app app providing the template + * @param string $file name of the template file (without suffix) + * @param string $renderas = ""; produce a full page + * @return OC_Template object * * This function creates an OC_Template object. * @@ -157,8 +157,10 @@ class OC_Template{ $this->vars = array(); if($renderas == 'user') { $this->vars['requesttoken'] = OC_Util::callRegister(); + $this->vars['requestlifespan'] = OC_Util::$callLifespan; } - $this->l10n = OC_L10N::get($app); + $parts = explode('/', $app); // fix translation when app is something like core/lostpassword + $this->l10n = OC_L10N::get($parts[0]); header('X-Frame-Options: Sameorigin'); header('X-XSS-Protection: 1; mode=block'); header('X-Content-Type-Options: nosniff'); @@ -167,7 +169,7 @@ class OC_Template{ } /** - * autodetects the formfactor of the used device + * autodetect the formfactor of the used device * default -> the normal desktop browser interface * mobile -> interface for smartphones * tablet -> interface for tablets @@ -225,7 +227,7 @@ class OC_Template{ /** * @brief find the template with the given name - * @param $name of the template file (without suffix) + * @param string $name of the template file (without suffix) * * Will select the template file for the selected theme and formfactor. * Checking all the possible locations. @@ -270,13 +272,13 @@ class OC_Template{ /** * @brief check Path For Template with and without $fext - * @param $path to check - * @param $name of the template file (without suffix) - * @param $fext formfactor extension + * @param string $path to check + * @param string $name of the template file (without suffix) + * @param string $fext formfactor extension * @return bool true when found * * Will set $this->template and $this->path if there is a template at - * the specifief $path + * the specific $path */ protected function checkPathForTemplate($path, $name, $fext) { @@ -297,10 +299,10 @@ class OC_Template{ /** * @brief Assign variables - * @param $key key - * @param $value value - * @param $sanitizeHTML false, if data shouldn't get passed through htmlentities - * @returns true + * @param string $key key + * @param string $value value + * @param bool $sanitizeHTML false, if data shouldn't get passed through htmlentities + * @return bool * * This function assigns a variable. It can be accessed via $_[$key] in * the template. @@ -315,9 +317,9 @@ class OC_Template{ /** * @brief Appends a variable - * @param $key key - * @param $value value - * @returns true + * @param string $key key + * @param string $value value + * @return bool * * This function assigns a variable in an array context. If the key already * exists, the value will be appended. It can be accessed via @@ -334,7 +336,7 @@ class OC_Template{ /** * @brief Add a custom element to the header - * @param string tag tag name of the element + * @param string $tag tag name of the element * @param array $attributes array of attrobutes for the element * @param string $text the text content for the element */ @@ -344,7 +346,7 @@ class OC_Template{ /** * @brief Prints the proceeded template - * @returns true/false + * @return bool * * This function proceeds the template and prints its output. */ @@ -361,7 +363,7 @@ class OC_Template{ /** * @brief Proceeds the template - * @returns content + * @return bool * * This function proceeds the template. If $this->renderas is set, it * will produce a full page. @@ -373,6 +375,7 @@ class OC_Template{ $page = new OC_TemplateLayout($this->renderas); if($this->renderas == 'user') { $page->assign('requesttoken', $this->vars['requesttoken']); + $page->assign('requestlifespan', $this->vars['requestlifespan']); } // Add custom headers @@ -391,7 +394,7 @@ class OC_Template{ /** * @brief doing the actual work - * @returns content + * @return string content * * Includes the template file, fetches its output */ @@ -412,13 +415,12 @@ class OC_Template{ /** * @brief Include template - * @returns returns content of included template + * @return string returns content of included template * * Includes another template. use inc('template'); ?> to * do this. */ public function inc( $file, $additionalparams = null ) { - // $_ erstellen $_ = $this->vars; $l = $this->l10n; @@ -438,10 +440,10 @@ class OC_Template{ /** * @brief Shortcut to print a simple page for users - * @param $application The application we render the template for - * @param $name Name of the template - * @param $parameters Parameters for the template - * @returns true/false + * @param string $application The application we render the template for + * @param string $name Name of the template + * @param array $parameters Parameters for the template + * @return bool */ public static function printUserPage( $application, $name, $parameters = array() ) { $content = new OC_Template( $application, $name, "user" ); @@ -453,10 +455,10 @@ class OC_Template{ /** * @brief Shortcut to print a simple page for admins - * @param $application The application we render the template for - * @param $name Name of the template - * @param $parameters Parameters for the template - * @returns true/false + * @param string $application The application we render the template for + * @param string $name Name of the template + * @param array $parameters Parameters for the template + * @return bool */ public static function printAdminPage( $application, $name, $parameters = array() ) { $content = new OC_Template( $application, $name, "admin" ); @@ -468,10 +470,10 @@ class OC_Template{ /** * @brief Shortcut to print a simple page for guests - * @param $application The application we render the template for - * @param $name Name of the template - * @param $parameters Parameters for the template - * @returns true/false + * @param string $application The application we render the template for + * @param string $name Name of the template + * @param string $parameters Parameters for the template + * @return bool */ public static function printGuestPage( $application, $name, $parameters = array() ) { $content = new OC_Template( $application, $name, "guest" ); diff --git a/lib/util.php b/lib/util.php index 5e39fd1f91..310ca6afec 100755 --- a/lib/util.php +++ b/lib/util.php @@ -81,7 +81,7 @@ class OC_Util { */ public static function getVersion() { // hint: We only can count up. So the internal version number of ownCloud 4.5 will be 4,9,0. This is not visible to the user - return array(4,84,7); + return array(4,85,11); } /** @@ -89,7 +89,7 @@ class OC_Util { * @return string */ public static function getVersionString() { - return '4.5 beta 3a'; + return '4.5 RC 1'; } /** @@ -314,9 +314,6 @@ class OC_Util { $parameters["username"] = ''; $parameters['user_autofocus'] = true; } - $sectoken=rand(1000000,9999999); - $_SESSION['sectoken']=$sectoken; - $parameters["sectoken"] = $sectoken; if (isset($_REQUEST['redirect_url'])) { $redirect_url = OC_Util::sanitizeHTML($_REQUEST['redirect_url']); } else { @@ -344,7 +341,7 @@ class OC_Util { public static function checkLoggedIn() { // Check if we are a user if( !OC_User::isLoggedIn()) { - header( 'Location: '.OC_Helper::linkToAbsolute( '', 'index.php', array('redirect_url' => urlencode($_SERVER["REQUEST_URI"])))); + header( 'Location: '.OC_Helper::linkToAbsolute( '', 'index.php', array('redirect_url' => $_SERVER["REQUEST_URI"]))); exit(); } } @@ -416,16 +413,31 @@ class OC_Util { } /** - * @brief Register an get/post call. This is important to prevent CSRF attacks - * Todo: Write howto + * @brief Static lifespan (in seconds) when a request token expires. + * @see OC_Util::callRegister() + * @see OC_Util::isCallRegistered() + * @description + * Also required for the client side to compute the piont in time when to + * request a fresh token. The client will do so when nearly 97% of the + * timespan coded here has expired. + */ + public static $callLifespan = 3600; // 3600 secs = 1 hour + + /** + * @brief Register an get/post call. Important to prevent CSRF attacks. + * @todo Write howto: CSRF protection guide * @return $token Generated token. + * @description + * Creates a 'request token' (random) and stores it inside the session. + * Ever subsequent (ajax) request must use such a valid token to succeed, + * otherwise the request will be denied as a protection against CSRF. + * The tokens expire after a fixed lifespan. + * @see OC_Util::$callLifespan + * @see OC_Util::isCallRegistered() */ public static function callRegister() { - //mamimum time before token exires - $maxtime=(60*60); // 1 hour - // generate a random token. - $token=mt_rand(1000,9000).mt_rand(1000,9000).mt_rand(1000,9000); + $token = self::generate_random_bytes(20); // store the token together with a timestamp in the session. $_SESSION['requesttoken-'.$token]=time(); @@ -436,7 +448,8 @@ class OC_Util { foreach($_SESSION as $key=>$value) { // search all tokens in the session if(substr($key,0,12)=='requesttoken') { - if($value+$maxtime 'external', 'data' => $apps)); - diff --git a/settings/apps.php b/settings/apps.php index e613814fe9..a1c1bf6aa5 100644 --- a/settings/apps.php +++ b/settings/apps.php @@ -29,45 +29,116 @@ OC_Util::addStyle( "settings", "settings" ); OC_Util::addScript( "settings", "apps" ); OC_App::setActiveNavigationEntry( "core_apps" ); -$registeredApps=OC_App::getAllApps(); -$apps=array(); +$installedApps = OC_App::getAllApps(); -//TODO which apps do we want to blacklist and how do we integrate blacklisting with the multi apps folder feature -$blacklist=array('files');//we dont want to show configuration for these +//TODO which apps do we want to blacklist and how do we integrate blacklisting with the multi apps folder feature? -foreach($registeredApps as $app) { - if(array_search($app, $blacklist)===false) { +$blacklist = array('files');//we dont want to show configuration for these + +$appList = array(); + +foreach ( $installedApps as $app ) { + + if ( array_search( $app, $blacklist ) === false ) { + $info=OC_App::getAppInfo($app); + if (!isset($info['name'])) { + OC_Log::write('core', 'App id "'.$app.'" has no name in appinfo', OC_Log::ERROR); + continue; + } - $active=(OC_Appconfig::getValue($app, 'enabled', 'no')=='yes')?true:false; - $info['active']=$active; + + if ( OC_Appconfig::getValue( $app, 'enabled', 'no') == 'yes' ) { + + $active = true; + + } else { + + $active = false; + + } + + $info['active'] = $active; + if(isset($info['shipped']) and ($info['shipped']=='true')) { + $info['internal']=true; + $info['internallabel']='Internal App'; + }else{ + $info['internal']=false; + $info['internallabel']='3rd Party App'; + } - $info['preview']='trans.png'; - $info['version']=OC_App::getAppVersion($app); - $apps[]=$info; + + $info['preview'] = 'trans.png'; + + $info['version'] = OC_App::getAppVersion($app); + + $appList[] = $info; + } } -function app_sort($a, $b) { - if ($a['active'] != $b['active']) { - return $b['active'] - $a['active']; +$remoteApps = OC_App::getAppstoreApps(); + +if ( $remoteApps ) { + + // Remove duplicates + foreach ( $appList as $app ) { + + foreach ( $remoteApps AS $key => $remote ) { + + if ( + $app['name'] == $remote['name'] + // To set duplicate detection to use OCS ID instead of string name, + // enable this code, remove the line of code above, + // and add [ID] to info.xml of each 3rd party app: + // OR $app['ocs_id'] == $remote['ocs_id'] + ) { + + unset( $remoteApps[$key]); + + } + + } + } - return strcmp($a['name'], $b['name']); + + $combinedApps = array_merge( $appList, $remoteApps ); + +} else { + + $combinedApps = $appList; + } -usort($apps, 'app_sort'); + +function app_sort( $a, $b ) { + + if ($a['active'] != $b['active']) { + + return $b['active'] - $a['active']; + + } + + return strcmp($a['name'], $b['name']); + +} + +usort( $combinedApps, 'app_sort' ); $tmpl = new OC_Template( "settings", "apps", "user" ); -$tmpl->assign('apps', $apps, false); + +$tmpl->assign('apps', $combinedApps, false); + $appid = (isset($_GET['appid'])?strip_tags($_GET['appid']):''); + $tmpl->assign('appid', $appid); $tmpl->printPage(); diff --git a/settings/css/settings.css b/settings/css/settings.css index 2015e93b43..d5e826b33c 100644 --- a/settings/css/settings.css +++ b/settings/css/settings.css @@ -38,7 +38,7 @@ div.quota { float:right; display:block; position:absolute; right:25em; top:0; } div.quota-select-wrapper { position: relative; } select.quota { position:absolute; left:0; top:0; width:10em; } select.quota-user { position:relative; left:0; top:0; width:10em; } -input.quota-other { display:none; position:absolute; left:0.1em; top:0.1em; width:7em; border:none; -webkit-box-shadow: none -mox-box-shadow:none ; box-shadow:none; } +input.quota-other { display:none; position:absolute; left:0.1em; top:0.1em; width:7em; border:none; -webkit-box-shadow: none; -moz-box-shadow:none ; box-shadow:none; } div.quota>span { position:absolute; right:0em; white-space:nowrap; top: 0.7em } select.quota.active { background: #fff; } diff --git a/settings/js/apps.js b/settings/js/apps.js index bb93123276..4ffbc41f22 100644 --- a/settings/js/apps.js +++ b/settings/js/apps.js @@ -7,18 +7,6 @@ OC.Settings = OC.Settings || {}; OC.Settings.Apps = OC.Settings.Apps || { - loadOCS:function() { - $.getJSON(OC.filePath('settings', 'ajax', 'apps/ocs.php'), function(jsondata) { - if(jsondata.status == 'success'){ - var apps = jsondata.data; - $.each(apps, function(b, appdata) { - OC.Settings.Apps.insertApp(appdata); - }); - } else { - OC.dialogs.alert(jsondata.data.message, t('core', 'Error')); - } - }); - }, loadApp:function(app) { var page = $('#rightcontent'); page.find('p.license').show(); @@ -137,6 +125,4 @@ $(document).ready(function(){ $('#leftcontent').animate({scrollTop: $(item).offset().top-70}, 'slow','swing'); } } - - OC.Settings.Apps.loadOCS(); }); diff --git a/settings/l10n/ar.php b/settings/l10n/ar.php index eca8a300b1..36cad27d3a 100644 --- a/settings/l10n/ar.php +++ b/settings/l10n/ar.php @@ -8,9 +8,6 @@ "Problems connecting to help database." => "الاتصال بقاعدة بيانات المساعدة لم يتم بنجاح", "Go there manually." => "إذهب هنالك بنفسك", "Answer" => "الجواب", -"You use" => "أنت تستخدم", -"of the available" => "من الموجود", -"Your password got changed" => "لقد تم تغيير كلمات السر", "Unable to change your password" => "لم يتم تعديل كلمة السر بنجاح", "Current password" => "كلمات السر الحالية", "New password" => "كلمات سر جديدة", diff --git a/settings/l10n/bg_BG.php b/settings/l10n/bg_BG.php index b261c22b03..6a46348b30 100644 --- a/settings/l10n/bg_BG.php +++ b/settings/l10n/bg_BG.php @@ -13,10 +13,7 @@ "Problems connecting to help database." => "Проблеми при свързване с помощната база", "Go there manually." => "Отидете ръчно.", "Answer" => "Отговор", -"You use" => "Вие ползвате", -"of the available" => "от наличните", "Download" => "Изтегляне", -"Your password got changed" => "Вашата парола е сменена", "Unable to change your password" => "Невъзможна промяна на паролата", "Current password" => "Текуща парола", "New password" => "Нова парола", diff --git a/settings/l10n/ca.php b/settings/l10n/ca.php index c549ef2262..54bfdecde7 100644 --- a/settings/l10n/ca.php +++ b/settings/l10n/ca.php @@ -13,7 +13,6 @@ "Language changed" => "S'ha canviat l'idioma", "Unable to add user to group %s" => "No es pot afegir l'usuari al grup %s", "Unable to remove user from group %s" => "No es pot eliminar l'usuari del grup %s", -"Error" => "Error", "Disable" => "Desactiva", "Enable" => "Activa", "Saving..." => "S'està desant...", @@ -21,7 +20,10 @@ "Security Warning" => "Avís de seguretat", "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "La carpeta de dades i els vostres fitxersprobablement són accessibles des d'Internet. La fitxer .htaccess que ownCloud proporciona no funciona. Us recomanem que configureu el servidor web de tal manera que la carpeta de dades no sigui accessible o que moveu la carpeta de dades fora de l'arrel de documents del servidor web.", "Cron" => "Cron", +"Execute one task with each page loaded" => "Executar una tasca de cada pàgina carregada", "cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php està registrat en un servei webcron. Feu una crida a la pàgina cron.php a l'arrel de ownCloud cada minut a través de http.", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Utilitzeu el sistema de servei cron. Cridar el arxiu cron.php de la carpeta owncloud cada minut utilitzant el sistema de tasques cron.", +"Sharing" => "Compartir", "Enable Share API" => "Activa l'API de compartir", "Allow apps to use the Share API" => "Permet que les aplicacions usin l'API de compartir", "Allow links" => "Permet enllaços", @@ -43,11 +45,10 @@ "Problems connecting to help database." => "Problemes per connectar amb la base de dades d'ajuda.", "Go there manually." => "Vés-hi manualment.", "Answer" => "Resposta", -"You use" => "Esteu usant", -"of the available" => "d'un total disponible de", +"You have used %s of the available %s" => "Ha utilitzat %s de la %s disponible", "Desktop and Mobile Syncing Clients" => "Clients de sincronització d'escriptori i de mòbil", "Download" => "Baixada", -"Your password got changed" => "La contrasenya ha canviat", +"Your password was changed" => "La seva contrasenya s'ha canviat", "Unable to change your password" => "No s'ha pogut canviar la contrasenya", "Current password" => "Contrasenya actual", "New password" => "Contrasenya nova", diff --git a/settings/l10n/cs_CZ.php b/settings/l10n/cs_CZ.php index 382c2e75b3..bc64b68992 100644 --- a/settings/l10n/cs_CZ.php +++ b/settings/l10n/cs_CZ.php @@ -13,7 +13,6 @@ "Language changed" => "Jazyk byl změněn", "Unable to add user to group %s" => "Nelze přidat uživatele do skupiny %s", "Unable to remove user from group %s" => "Nelze odstranit uživatele ze skupiny %s", -"Error" => "Chyba", "Disable" => "Zakázat", "Enable" => "Povolit", "Saving..." => "Ukládám...", @@ -21,7 +20,10 @@ "Security Warning" => "Bezpečnostní varování", "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Váš adresář dat a soubory jsou pravděpodobně přístupné z internetu. Soubor .htacces, který ownCloud poskytuje nefunguje. Doporučujeme Vám abyste nastavili Váš webový server tak, aby nebylo možno přistupovat do adresáře s daty, nebo přesunuli adresář dat mimo kořenovou složku dokumentů webového serveru.", "Cron" => "Cron", +"Execute one task with each page loaded" => "Spustit jednu úlohu s každou načtenou stránkou", "cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php je registrován u služby webcron. Zavolá stránku cron.php v kořenovém adresáři owncloud každou minutu skrze http.", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Použít systémovou službu cron. Zavolat soubor cron.php ze složky owncloud pomocí systémové úlohy cron každou minutu.", +"Sharing" => "Sdílení", "Enable Share API" => "Povolit API sdílení", "Allow apps to use the Share API" => "Povolit aplikacím používat API sdílení", "Allow links" => "Povolit odkazy", @@ -43,11 +45,10 @@ "Problems connecting to help database." => "Problémy s připojením k databázi s nápovědou.", "Go there manually." => "Přejít ručně.", "Answer" => "Odpověď", -"You use" => "Využíváte", -"of the available" => "z dostupných", +"You have used %s of the available %s" => "Použili jste %s z dostupných %s", "Desktop and Mobile Syncing Clients" => "Klienti pro synchronizaci", "Download" => "Stáhnout", -"Your password got changed" => "Vaše heslo bylo změněno", +"Your password was changed" => "Vaše heslo bylo změněno", "Unable to change your password" => "Vaše heslo nelze změnit", "Current password" => "Současné heslo", "New password" => "Nové heslo", diff --git a/settings/l10n/da.php b/settings/l10n/da.php index 53e51111a2..4549bcc9d3 100644 --- a/settings/l10n/da.php +++ b/settings/l10n/da.php @@ -1,41 +1,54 @@ "Kunne ikke indlæse listen fra App Store", "Authentication error" => "Adgangsfejl", +"Group already exists" => "Gruppen findes allerede", +"Unable to add group" => "Gruppen kan ikke oprettes", +"Could not enable app. " => "Applikationen kunne ikke aktiveres.", "Email saved" => "Email adresse gemt", "Invalid email" => "Ugyldig email adresse", "OpenID Changed" => "OpenID ændret", "Invalid request" => "Ugyldig forespørgsel", +"Unable to delete group" => "Gruppen kan ikke slettes", +"Unable to delete user" => "Bruger kan ikke slettes", "Language changed" => "Sprog ændret", -"Error" => "Fejl", +"Unable to add user to group %s" => "Brugeren kan ikke tilføjes til gruppen %s", +"Unable to remove user from group %s" => "Brugeren kan ikke fjernes fra gruppen %s", "Disable" => "Deaktiver", "Enable" => "Aktiver", "Saving..." => "Gemmer...", "__language_name__" => "Dansk", "Security Warning" => "Sikkerhedsadvarsel", +"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Din datamappe og dine filer er formentligt tilgængelige fra internettet.\n.htaccess-filen, som ownCloud leverer, fungerer ikke. Vi anbefaler stærkt, at du opsætter din server på en måde, så datamappen ikke længere er direkte tilgængelig, eller at du flytter datamappen udenfor serverens tilgængelige rodfilsystem.", "Cron" => "Cron", +"Execute one task with each page loaded" => "Udfør en opgave med hver side indlæst", +"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php er registreret hos en webcron-tjeneste. Kald cron.php-siden i ownClouds rodmappe en gang i minuttet over http.", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "vend systemets cron-tjeneste. Kald cron.php-filen i ownCloud-mappen ved hjælp af systemets cronjob en gang i minuttet.", +"Sharing" => "Deling", "Enable Share API" => "Aktiver dele API", "Allow apps to use the Share API" => "Tillad apps a bruge dele APIen", "Allow links" => "Tillad links", "Allow users to share items to the public with links" => "Tillad brugere at dele elementer med offentligheden med links", "Allow resharing" => "Tillad gendeling", +"Allow users to share items shared with them again" => "Tillad brugere at dele elementer, som er blevet delt med dem, videre til andre", "Allow users to share with anyone" => "Tillad brugere at dele med hvem som helst", "Allow users to only share with users in their groups" => "Tillad kun deling med brugere i brugerens egen gruppe", "Log" => "Log", "More" => "Mere", +"Developed by the ownCloud community, the source code is licensed under the AGPL." => "Udviklet af ownClouds community, og kildekoden er underlagt licensen AGPL.", "Add your App" => "Tilføj din App", "Select an App" => "Vælg en App", "See application page at apps.owncloud.com" => "Se applikationens side på apps.owncloud.com", +"-licensed by " => "-licenseret af ", "Documentation" => "Dokumentation", "Managing Big Files" => "Håndter store filer", "Ask a question" => "Stil et spørgsmål", "Problems connecting to help database." => "Problemer med at forbinde til hjælpe-databasen.", "Go there manually." => "Gå derhen manuelt.", "Answer" => "Svar", -"You use" => "Du benytter", -"of the available" => "af det tilgængelige", +"You have used %s of the available %s" => "Du har brugt %s af de tilgængelige %s", "Desktop and Mobile Syncing Clients" => "Synkroniserings programmer for desktop og mobil", "Download" => "Download", -"Your password got changed" => "Din adgangskode er blevet ændret", +"Your password was changed" => "Din adgangskode blev ændret", "Unable to change your password" => "Ude af stand til at ændre dit kodeord", "Current password" => "Nuværende adgangskode", "New password" => "Ny adgangskode", diff --git a/settings/l10n/de.php b/settings/l10n/de.php index 83a57cc196..6b86a08ced 100644 --- a/settings/l10n/de.php +++ b/settings/l10n/de.php @@ -1,11 +1,11 @@ "Die Liste der Apps im Store konnte nicht geladen werden.", -"Authentication error" => "Anmeldungsfehler", +"Unable to load list from App Store" => "Die Liste der Anwendungen im Store konnte nicht geladen werden.", +"Authentication error" => "Fehler bei der Anmeldung", "Group already exists" => "Gruppe existiert bereits", "Unable to add group" => "Gruppe konnte nicht angelegt werden", "Could not enable app. " => "App konnte nicht aktiviert werden.", -"Email saved" => "E-Mail gespeichert", -"Invalid email" => "Ungültige E-Mail", +"Email saved" => "E-Mail Adresse gespeichert", +"Invalid email" => "Ungültige E-Mail Adresse", "OpenID Changed" => "OpenID geändert", "Invalid request" => "Ungültige Anfrage", "Unable to delete group" => "Gruppe konnte nicht gelöscht werden", @@ -13,51 +13,52 @@ "Language changed" => "Sprache geändert", "Unable to add user to group %s" => "Der Benutzer konnte nicht zur Gruppe %s hinzugefügt werden", "Unable to remove user from group %s" => "Der Benutzer konnte nicht aus der Gruppe %s entfernt werden", -"Error" => "Fehler", "Disable" => "Deaktivieren", "Enable" => "Aktivieren", "Saving..." => "Speichern...", "__language_name__" => "Deutsch", "Security Warning" => "Sicherheitshinweis", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Ihr Datenverzeichnis ist möglicher Weise aus dem Internet erreichbar. Die .htaccess-Datei von OwnCloud funktioniert nicht. Wir raten Ihnen dringend, dass Sie Ihren Webserver dahingehend konfigurieren, dass Ihr Datenverzeichnis nicht länger aus dem Internet erreichbar ist, oder Sie verschieben das Datenverzeichnis außerhalb des Wurzelverzeichnisses des Webservers.", -"Cron" => "Cron", -"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php ist bei einem Webcron-Dienst registriert. Rufen Sie die Seite cron.php im owncloud Root minütlich per HTTP auf.", -"Enable Share API" => "Teilungs-API aktivieren", -"Allow apps to use the Share API" => "Erlaubt Nutzern, die Teilungs-API zu nutzen", +"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Ihr Datenverzeichnis ist möglicher Weise aus dem Internet erreichbar. Die .htaccess-Datei von ownCloud funktioniert nicht. Wir raten Ihnen dringend, dass Sie Ihren Webserver dahingehend konfigurieren, dass Ihr Datenverzeichnis nicht länger aus dem Internet erreichbar ist, oder Sie verschieben das Datenverzeichnis außerhalb des Wurzelverzeichnisses des Webservers.", +"Cron" => "Cron-Jobs", +"Execute one task with each page loaded" => "Führe eine Aufgabe bei jeder geladenen Seite aus.", +"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php ist bei einem Webcron-Dienst registriert. Ruf die Seite cron.php im ownCloud-Root minütlich per HTTP auf.", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Benutze den System-Crondienst. Bitte ruf die cron.php im ownCloud-Ordner über einen System-Cronjob minütlich auf.", +"Sharing" => "Freigabe", +"Enable Share API" => "Freigabe-API aktivieren", +"Allow apps to use the Share API" => "Erlaubt Anwendungen, die Freigabe-API zu nutzen", "Allow links" => "Links erlauben", -"Allow users to share items to the public with links" => "Erlaube Nutzern, Dateien mithilfe von Links mit der Öffentlichkeit zu teilen", +"Allow users to share items to the public with links" => "Erlaube Nutzern, Dateien mithilfe von Links öffentlich zu teilen", "Allow resharing" => "Erneutes Teilen erlauben", "Allow users to share items shared with them again" => "Erlaubt Nutzern, Dateien die mit ihnen geteilt wurden, erneut zu teilen", -"Allow users to share with anyone" => "Erlaube Nutzern mit jedem zu Teilen", -"Allow users to only share with users in their groups" => "Erlaube Nutzern nur das Teilen in ihrer Gruppe", +"Allow users to share with anyone" => "Erlaubet Nutzern mit jedem zu Teilen", +"Allow users to only share with users in their groups" => "Erlaubet Nutzern nur das Teilen in ihrer Gruppe", "Log" => "Log", "More" => "Mehr", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Entwickelt von der ownCloud-Community, der Quellcode ist unter der AGPL lizenziert.", -"Add your App" => "Fügen Sie Ihre App hinzu", -"Select an App" => "Wählen Sie eine Anwendung aus", -"See application page at apps.owncloud.com" => "Weitere Anwendungen finden Sie auf apps.owncloud.com", +"Add your App" => "Füge Deine Anwendung hinzu", +"Select an App" => "Wähle eine Anwendung aus", +"See application page at apps.owncloud.com" => "Weitere Anwendungen findest Du auf apps.owncloud.com", "-licensed by " => "-lizenziert von ", "Documentation" => "Dokumentation", "Managing Big Files" => "Große Dateien verwalten", -"Ask a question" => "Stellen Sie eine Frage", +"Ask a question" => "Stelle eine Frage", "Problems connecting to help database." => "Probleme bei der Verbindung zur Hilfe-Datenbank.", "Go there manually." => "Datenbank direkt besuchen.", "Answer" => "Antwort", -"You use" => "Sie nutzen", -"of the available" => "der verfügbaren", -"Desktop and Mobile Syncing Clients" => "Desktop- und mobile Synchronierungs-Clients", +"You have used %s of the available %s" => "Du verwendest %s der verfügbaren %s", +"Desktop and Mobile Syncing Clients" => "Desktop- und mobile Clients für die Synchronisation", "Download" => "Download", -"Your password got changed" => "Ihr Passwort wurde geändert.", +"Your password was changed" => "Dein Passwort wurde geändert.", "Unable to change your password" => "Passwort konnte nicht geändert werden", "Current password" => "Aktuelles Passwort", "New password" => "Neues Passwort", "show" => "zeigen", "Change password" => "Passwort ändern", "Email" => "E-Mail", -"Your email address" => "Ihre E-Mail-Adresse", -"Fill in an email address to enable password recovery" => "Tragen Sie eine E-Mail-Adresse ein, um die Passwort-Wiederherstellung zu aktivieren.", +"Your email address" => "Deine E-Mail-Adresse", +"Fill in an email address to enable password recovery" => "Trage eine E-Mail-Adresse ein, um die Passwort-Wiederherstellung zu aktivieren.", "Language" => "Sprache", -"Help translate" => "Helfen Sie bei der Übersetzung", +"Help translate" => "Hilf bei der Übersetzung", "use this address to connect to your ownCloud in your file manager" => "Benutzen Sie diese Adresse, um Ihre ownCloud mit Ihrem Dateimanager zu verbinden.", "Name" => "Name", "Password" => "Passwort", diff --git a/settings/l10n/el.php b/settings/l10n/el.php index 075734fb5f..c6bb985710 100644 --- a/settings/l10n/el.php +++ b/settings/l10n/el.php @@ -1,52 +1,72 @@ "Σφάλμα στην φόρτωση της λίστας από το App Store", "Authentication error" => "Σφάλμα πιστοποίησης", +"Group already exists" => "Η ομάδα υπάρχει ήδη", +"Unable to add group" => "Αδυναμία προσθήκης ομάδας", +"Could not enable app. " => "Αδυναμία ενεργοποίησης εφαρμογής ", "Email saved" => "Το Email αποθηκεύτηκε ", "Invalid email" => "Μη έγκυρο email", "OpenID Changed" => "Το OpenID άλλαξε", "Invalid request" => "Μη έγκυρο αίτημα", +"Unable to delete group" => "Αδυναμία διαγραφής ομάδας", +"Unable to delete user" => "Αδυναμία διαγραφής χρήστη", "Language changed" => "Η γλώσσα άλλαξε", -"Error" => "Σφάλμα", +"Unable to add user to group %s" => "Αδυναμία προσθήκη χρήστη στην ομάδα %s", +"Unable to remove user from group %s" => "Αδυναμία αφαίρεσης χρήστη από την ομάδα %s", "Disable" => "Απενεργοποίηση", "Enable" => "Ενεργοποίηση", "Saving..." => "Αποθήκευση...", "__language_name__" => "__όνομα_γλώσσας__", "Security Warning" => "Προειδοποίηση Ασφαλείας", +"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Ο κατάλογος δεδομένων και τα αρχεία σας είναι πιθανότατα προσβάσιμα από το διαδίκτυο. Το αρχείο .htaccess που παρέχει το owncloud, δεν λειτουργεί. Σας συνιστούμε να ρυθμίσετε τον εξυπηρετητή σας έτσι ώστε ο κατάλογος δεδομένων να μην είναι πλεον προσβάσιμος ή μετακινήστε τον κατάλογο δεδομένων εκτός του καταλόγου document του εξυπηρετητή σας.", "Cron" => "Cron", +"Execute one task with each page loaded" => "Εκτέλεση μιας εργασίας με κάθε σελίδα που φορτώνεται", +"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "Το cron.php είναι καταχωρημένο στην υπηρεσία webcron. Να καλείται μια φορά το λεπτό η σελίδα cron.php από τον root του owncloud μέσω http", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Χρήση υπηρεσίας συστήματος cron. Να καλείται μια φορά το λεπτό, το αρχείο cron.php από τον φάκελο του owncloud μέσω του cronjob του συστήματος.", +"Sharing" => "Διαμοιρασμός", +"Enable Share API" => "Ενεργοποίηση API Διαμοιρασμού", +"Allow apps to use the Share API" => "Να επιτρέπεται στις εφαρμογές να χρησιμοποιούν το API Διαμοιρασμού", +"Allow links" => "Να επιτρέπονται σύνδεσμοι", +"Allow users to share items to the public with links" => "Να επιτρέπεται στους χρήστες να διαμοιράζονται δημόσια με συνδέσμους", +"Allow resharing" => "Να επιτρέπεται ο επαναδιαμοιρασμός", +"Allow users to share items shared with them again" => "Να επιτρέπεται στους χρήστες να διαμοιράζουν ότι τους έχει διαμοιραστεί", +"Allow users to share with anyone" => "Να επιτρέπεται ο διαμοιρασμός με οποιονδήποτε", +"Allow users to only share with users in their groups" => "Να επιτρέπεται ο διαμοιρασμός μόνο με χρήστες της ίδιας ομάδας", "Log" => "Αρχείο καταγραφής", "More" => "Περισσότερο", +"Developed by the ownCloud community, the source code is licensed under the AGPL." => "Αναπτύχθηκε από την κοινότητα ownCloud, ο πηγαίος κώδικας είναι υπό άδεια χρήσης AGPL.", "Add your App" => "Πρόσθεσε τη δικιά σου εφαρμογή ", "Select an App" => "Επιλέξτε μια εφαρμογή", "See application page at apps.owncloud.com" => "Η σελίδα εφαρμογών στο apps.owncloud.com", +"-licensed by " => "-άδεια από ", "Documentation" => "Τεκμηρίωση", "Managing Big Files" => "Διαχείριση μεγάλων αρχείων", "Ask a question" => "Ρωτήστε μια ερώτηση", "Problems connecting to help database." => "Προβλήματα κατά τη σύνδεση με τη βάση δεδομένων βοήθειας.", "Go there manually." => "Χειροκίνητη μετάβαση.", "Answer" => "Απάντηση", -"You use" => "Χρησιμοποιείτε", -"of the available" => "από τα διαθέσιμα", +"You have used %s of the available %s" => "Έχετε χρησιμοποιήσει %s από τα διαθέσιμα %s", "Desktop and Mobile Syncing Clients" => "Πελάτες συγχρονισμού για Desktop και Mobile", -"Download" => "Κατέβασε", -"Your password got changed" => "Ο κωδικός πρόσβασής σας άλλαξε", +"Download" => "Λήψη", +"Your password was changed" => "Το συνθηματικό σας έχει αλλάξει", "Unable to change your password" => "Δεν ήταν δυνατή η αλλαγή του κωδικού πρόσβασης", -"Current password" => "Τρέχων κωδικός πρόσβασης", -"New password" => "Νέος κωδικός", +"Current password" => "Τρέχων συνθηματικό", +"New password" => "Νέο συνθηματικό", "show" => "εμφάνιση", -"Change password" => "Αλλαγή κωδικού πρόσβασης", +"Change password" => "Αλλαγή συνθηματικού", "Email" => "Email", "Your email address" => "Διεύθυνση ηλεκτρονικού ταχυδρομείου σας", -"Fill in an email address to enable password recovery" => "Συμπληρώστε μια διεύθυνση ηλεκτρονικού ταχυδρομείου για να ενεργοποιηθεί η ανάκτηση κωδικού πρόσβασης", +"Fill in an email address to enable password recovery" => "Συμπληρώστε μια διεύθυνση ηλεκτρονικού ταχυδρομείου για να ενεργοποιηθεί η ανάκτηση συνθηματικού", "Language" => "Γλώσσα", "Help translate" => "Βοηθήστε στην μετάφραση", "use this address to connect to your ownCloud in your file manager" => "χρησιμοποιήστε αυτή τη διεύθυνση για να συνδεθείτε στο ownCloud σας από το διαχειριστή αρχείων σας", "Name" => "Όνομα", -"Password" => "Κωδικός", +"Password" => "Συνθηματικό", "Groups" => "Ομάδες", "Create" => "Δημιουργία", "Default Quota" => "Προεπιλεγμένο όριο", "Other" => "Άλλα", -"Group Admin" => "Διαχειρηστής ομάδας", +"Group Admin" => "Ομάδα Διαχειριστών", "Quota" => "Σύνολο χώρου", "Delete" => "Διαγραφή" ); diff --git a/settings/l10n/eo.php b/settings/l10n/eo.php index c3bfa63f15..7052bf34c9 100644 --- a/settings/l10n/eo.php +++ b/settings/l10n/eo.php @@ -6,7 +6,6 @@ "OpenID Changed" => "La agordo de OpenID estas ŝanĝita", "Invalid request" => "Nevalida peto", "Language changed" => "La lingvo estas ŝanĝita", -"Error" => "Eraro", "Disable" => "Malkapabligi", "Enable" => "Kapabligi", "Saving..." => "Konservante...", @@ -24,11 +23,8 @@ "Problems connecting to help database." => "Problemoj okazis dum konektado al la helpa datumbazo.", "Go there manually." => "Iri tien mane.", "Answer" => "Respondi", -"You use" => "Vi uzas", -"of the available" => "el la disponeblaj", "Desktop and Mobile Syncing Clients" => "Labortablaj kaj porteblaj sinkronigoklientoj", "Download" => "Elŝuti", -"Your password got changed" => "Via pasvorto ŝanĝiĝis", "Unable to change your password" => "Ne eblis ŝanĝi vian pasvorton", "Current password" => "Nuna pasvorto", "New password" => "Nova pasvorto", diff --git a/settings/l10n/es.php b/settings/l10n/es.php index c939399494..268c7ef126 100644 --- a/settings/l10n/es.php +++ b/settings/l10n/es.php @@ -13,7 +13,6 @@ "Language changed" => "Idioma cambiado", "Unable to add user to group %s" => "Imposible añadir el usuario al grupo %s", "Unable to remove user from group %s" => "Imposible eliminar al usuario del grupo %s", -"Error" => "Error", "Disable" => "Desactivar", "Enable" => "Activar", "Saving..." => "Guardando...", @@ -21,7 +20,10 @@ "Security Warning" => "Advertencia de seguridad", "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "El directorio de datos -data- y sus archivos probablemente son accesibles desde internet. El archivo .htaccess que provee ownCloud no está funcionando. Recomendamos fuertemente que configure su servidor web de forma que el directorio de datos ya no sea accesible o mueva el directorio de datos fuera de la raíz de documentos del servidor web.", "Cron" => "Cron", +"Execute one task with each page loaded" => "Ejecutar una tarea con cada página cargada", "cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php está registrado como un servicio del webcron. Llama a la página de cron.php en la raíz de owncloud cada minuto sobre http.", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Usar el servicio de cron del sitema. Llame al fichero cron.php en la carpeta de owncloud via servidor cronjob cada minuto.", +"Sharing" => "Compartir", "Enable Share API" => "Activar API de compartición", "Allow apps to use the Share API" => "Permitir a las aplicaciones usar la API de compartición", "Allow links" => "Permitir enlaces", @@ -43,11 +45,10 @@ "Problems connecting to help database." => "Problemas al conectar con la base de datos de ayuda.", "Go there manually." => "Ir manualmente", "Answer" => "Respuesta", -"You use" => "Estás utilizando", -"of the available" => "del total disponible de", +"You have used %s of the available %s" => "Ha usado %s de %s disponible", "Desktop and Mobile Syncing Clients" => "Clientes de sincronización móviles y de escritorio", "Download" => "Descargar", -"Your password got changed" => "Tu contraseña ha sido cambiada", +"Your password was changed" => "Su contraseña ha sido cambiada", "Unable to change your password" => "No se ha podido cambiar tu contraseña", "Current password" => "Contraseña actual", "New password" => "Nueva contraseña:", diff --git a/settings/l10n/es_AR.php b/settings/l10n/es_AR.php new file mode 100644 index 0000000000..06f808ee51 --- /dev/null +++ b/settings/l10n/es_AR.php @@ -0,0 +1,72 @@ + "Imposible cargar la lista desde el App Store", +"Authentication error" => "Error al autenticar", +"Group already exists" => "El grupo ya existe", +"Unable to add group" => "No fue posible añadir el grupo", +"Could not enable app. " => "No se puede habilitar la aplicación.", +"Email saved" => "e-mail guardado", +"Invalid email" => "el e-mail no es válido ", +"OpenID Changed" => "OpenID cambiado", +"Invalid request" => "Solicitud no válida", +"Unable to delete group" => "No fue posible eliminar el grupo", +"Unable to delete user" => "No fue posible eliminar el usuario", +"Language changed" => "Idioma cambiado", +"Unable to add user to group %s" => "No fue posible añadir el usuario al grupo %s", +"Unable to remove user from group %s" => "No es posible eliminar al usuario del grupo %s", +"Disable" => "Desactivar", +"Enable" => "Activar", +"Saving..." => "Guardando...", +"__language_name__" => "Castellano (Argentina)", +"Security Warning" => "Advertencia de seguridad", +"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "El directorio de datos -data- y los archivos que contiene, probablemente son accesibles desde internet. El archivo .htaccess que provee ownCloud no está funcionando. Recomendamos fuertemente que configures su servidor web de forma que el directorio de datos ya no sea accesible o que muevas el directorio de datos fuera de la raíz de documentos del servidor web.", +"Cron" => "Cron", +"Execute one task with each page loaded" => "Ejecutar una tarea con cada página cargada", +"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php está registrado como un servicio del webcron. Llamá a la página de cron.php en la raíz de ownCloud cada minuto sobre http.", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Usar el servicio de cron del sistema. Llamá al archivo cron.php en la carpeta de ownCloud via servidor cronjob cada minuto.", +"Sharing" => "Compartir", +"Enable Share API" => "Activar API de compartición", +"Allow apps to use the Share API" => "Permitir a las aplicaciones usar la API de compartición", +"Allow links" => "Permitir enlaces", +"Allow users to share items to the public with links" => "Permitir a los usuarios compartir elementos públicamente con enlaces", +"Allow resharing" => "Permitir re-compartir", +"Allow users to share items shared with them again" => "Permitir a los usuarios compartir elementos ya compartidos", +"Allow users to share with anyone" => "Permitir a los usuarios compartir con cualquiera", +"Allow users to only share with users in their groups" => "Permitir a los usuarios compartir con usuarios en sus grupos", +"Log" => "Registro", +"More" => "Más", +"Developed by the ownCloud community, the source code is licensed under the AGPL." => "Desarrollado por la comunidad ownCloud, el código fuente está bajo licencia AGPL.", +"Add your App" => "Añadí tu aplicación", +"Select an App" => "Seleccionar una aplicación", +"See application page at apps.owncloud.com" => "Mirá la web de aplicaciones apps.owncloud.com", +"-licensed by " => "-licenciado por ", +"Documentation" => "Documentación", +"Managing Big Files" => "Administrar archivos grandes", +"Ask a question" => "Hacer una pregunta", +"Problems connecting to help database." => "Problemas al conectar con la base de datos de ayuda.", +"Go there manually." => "Ir de forma manual", +"Answer" => "Respuesta", +"You have used %s of the available %s" => "Usaste %s de %s disponible", +"Desktop and Mobile Syncing Clients" => "Clientes de sincronización para celulares, tablets y de escritorio", +"Download" => "Descargar", +"Your password was changed" => "Tu contraseña fue cambiada", +"Unable to change your password" => "No fue posible cambiar tu contraseña", +"Current password" => "Contraseña actual", +"New password" => "Nueva contraseña:", +"show" => "mostrar", +"Change password" => "Cambiar contraseña", +"Email" => "Correo electrónico", +"Your email address" => "Tu dirección de e-mail", +"Fill in an email address to enable password recovery" => "Escribí una dirección de correo electrónico para restablecer la contraseña", +"Language" => "Idioma", +"Help translate" => "Ayudanos a traducir", +"use this address to connect to your ownCloud in your file manager" => "usá esta dirección para conectarte a tu ownCloud desde tu gestor de archivos", +"Name" => "Nombre", +"Password" => "Contraseña", +"Groups" => "Grupos", +"Create" => "Crear", +"Default Quota" => "Cuota predeterminada", +"Other" => "Otro", +"Group Admin" => "Grupo admin", +"Quota" => "Cuota", +"Delete" => "Borrar" +); diff --git a/settings/l10n/et_EE.php b/settings/l10n/et_EE.php index 9a8dd9fe13..42cb42bce9 100644 --- a/settings/l10n/et_EE.php +++ b/settings/l10n/et_EE.php @@ -12,7 +12,6 @@ "Language changed" => "Keel on muudetud", "Unable to add user to group %s" => "Kasutajat ei saa lisada gruppi %s", "Unable to remove user from group %s" => "Kasutajat ei saa eemaldada grupist %s", -"Error" => "Viga", "Disable" => "Lülita välja", "Enable" => "Lülita sisse", "Saving..." => "Salvestamine...", @@ -39,11 +38,8 @@ "Problems connecting to help database." => "Probleemid abiinfo andmebaasiga ühendumisel.", "Go there manually." => "Mine sinna käsitsi.", "Answer" => "Vasta", -"You use" => "Sa kasutad", -"of the available" => "saadaolevast", "Desktop and Mobile Syncing Clients" => "Töölaua ja mobiiliga sünkroniseerimise rakendused", "Download" => "Lae alla", -"Your password got changed" => "Sinu parooli on muudetud", "Unable to change your password" => "Sa ei saa oma parooli muuta", "Current password" => "Praegune parool", "New password" => "Uus parool", diff --git a/settings/l10n/eu.php b/settings/l10n/eu.php index 529b13df39..4320b8ae69 100644 --- a/settings/l10n/eu.php +++ b/settings/l10n/eu.php @@ -13,7 +13,6 @@ "Language changed" => "Hizkuntza aldatuta", "Unable to add user to group %s" => "Ezin izan da erabiltzailea %s taldera gehitu", "Unable to remove user from group %s" => "Ezin izan da erabiltzailea %s taldetik ezabatu", -"Error" => "Errorea", "Disable" => "Ez-gaitu", "Enable" => "Gaitu", "Saving..." => "Gordetzen...", @@ -21,7 +20,10 @@ "Security Warning" => "Segurtasun abisua", "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Zure data karpeta eta zure fitxategiak internetetik zuzenean eskuragarri egon daitezke. ownCloudek emandako .htaccess fitxategia ez du bere lana egiten. Aholkatzen dizugu zure web zerbitzaria ongi konfiguratzea data karpeta eskuragarri ez izateko edo data karpeta web zerbitzariaren dokumentu errotik mugitzea.", "Cron" => "Cron", +"Execute one task with each page loaded" => "Exekutatu zeregin bat orri karga bakoitzean", "cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php webcron zerbitzu batean erregistratua dago. Deitu cron.php orria ownclouden erroan minuturo http bidez.", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Erabili sistemaren cron zerbitzua. Deitu cron.php fitxategia owncloud karpetan minuturo sistemaren cron lan baten bidez.", +"Sharing" => "Partekatzea", "Enable Share API" => "Gaitu Partekatze APIa", "Allow apps to use the Share API" => "Baimendu aplikazioak Partekatze APIa erabiltzeko", "Allow links" => "Baimendu loturak", @@ -43,11 +45,10 @@ "Problems connecting to help database." => "Arazoak daude laguntza datubasera konektatzeko.", "Go there manually." => "Joan hara eskuz.", "Answer" => "Erantzun", -"You use" => "Erabiltzen ari zara ", -"of the available" => "eta guztira erabil dezakezu ", +"You have used %s of the available %s" => "Eskuragarri dituzun %setik %s erabili duzu", "Desktop and Mobile Syncing Clients" => "Mahaigain eta mugikorren sinkronizazio bezeroak", "Download" => "Deskargatu", -"Your password got changed" => "Zure pasahitza aldatu da", +"Your password was changed" => "Zere pasahitza aldatu da", "Unable to change your password" => "Ezin izan da zure pasahitza aldatu", "Current password" => "Uneko pasahitza", "New password" => "Pasahitz berria", diff --git a/settings/l10n/fa.php b/settings/l10n/fa.php index 215966728d..d8a49cc440 100644 --- a/settings/l10n/fa.php +++ b/settings/l10n/fa.php @@ -4,7 +4,6 @@ "OpenID Changed" => "OpenID تغییر کرد", "Invalid request" => "درخواست غیر قابل قبول", "Language changed" => "زبان تغییر کرد", -"Error" => "خطا", "Disable" => "غیرفعال", "Enable" => "فعال", "Saving..." => "درحال ذخیره ...", @@ -21,11 +20,8 @@ "Problems connecting to help database." => "مشکلاتی برای وصل شدن به پایگاه داده کمکی", "Go there manually." => "بروید آنجا به صورت دستی", "Answer" => "پاسخ", -"You use" => "شما استفاده می کنید", -"of the available" => "از فعال ها", "Desktop and Mobile Syncing Clients" => " ابزار مدیریت با دسکتاپ و موبایل", "Download" => "بارگیری", -"Your password got changed" => "گذرواژه شما تغییر یافته", "Unable to change your password" => "ناتوان در تغییر گذرواژه", "Current password" => "گذرواژه کنونی", "New password" => "گذرواژه جدید", diff --git a/settings/l10n/fi_FI.php b/settings/l10n/fi_FI.php index b5571ac9a5..0969b6e365 100644 --- a/settings/l10n/fi_FI.php +++ b/settings/l10n/fi_FI.php @@ -13,7 +13,6 @@ "Language changed" => "Kieli on vaihdettu", "Unable to add user to group %s" => "Käyttäjän tai ryhmän %s lisääminen ei onnistu", "Unable to remove user from group %s" => "Käyttäjän poistaminen ryhmästä %s ei onnistu", -"Error" => "Virhe", "Disable" => "Poista käytöstä", "Enable" => "Käytä", "Saving..." => "Tallennetaan...", @@ -21,6 +20,7 @@ "Security Warning" => "Turvallisuusvaroitus", "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Data-kansio ja tiedostot ovat ehkä saavutettavissa Internetistä. .htaccess-tiedosto, jolla kontrolloidaan pääsyä, ei toimi. Suosittelemme, että muutat web-palvelimesi asetukset niin ettei data-kansio ole enää pääsyä tai siirrät data-kansion pois web-palvelimen tiedostojen juuresta.", "Cron" => "Cron", +"Sharing" => "Jakaminen", "Enable Share API" => "Ota käyttöön jaon ohjelmoitirajapinta (Share API)", "Allow apps to use the Share API" => "Salli sovellusten käyttää jaon ohjelmointirajapintaa (Share API)", "Allow links" => "Salli linkit", @@ -42,11 +42,10 @@ "Problems connecting to help database." => "Virhe yhdistettäessä tietokantaan.", "Go there manually." => "Ohje löytyy sieltä.", "Answer" => "Vastaus", -"You use" => "Olet käyttänyt", -"of the available" => ", käytettävissäsi on yhteensä", +"You have used %s of the available %s" => "Käytössäsi on %s/%s", "Desktop and Mobile Syncing Clients" => "Tietokoneen ja mobiililaitteiden synkronointisovellukset", "Download" => "Lataa", -"Your password got changed" => "Salasanasi on vaihdettu", +"Your password was changed" => "Salasanasi vaihdettiin", "Unable to change your password" => "Salasanaasi ei voitu vaihtaa", "Current password" => "Nykyinen salasana", "New password" => "Uusi salasana", diff --git a/settings/l10n/fr.php b/settings/l10n/fr.php index 2ef64e2531..b81f545b13 100644 --- a/settings/l10n/fr.php +++ b/settings/l10n/fr.php @@ -3,6 +3,7 @@ "Authentication error" => "Erreur d'authentification", "Group already exists" => "Ce groupe existe déjà", "Unable to add group" => "Impossible d'ajouter le groupe", +"Could not enable app. " => "Impossible d'activer l'Application", "Email saved" => "E-mail sauvegardé", "Invalid email" => "E-mail invalide", "OpenID Changed" => "Identifiant OpenID changé", @@ -12,7 +13,6 @@ "Language changed" => "Langue changée", "Unable to add user to group %s" => "Impossible d'ajouter l'utilisateur au groupe %s", "Unable to remove user from group %s" => "Impossible de supprimer l'utilisateur du groupe %s", -"Error" => "Erreur", "Disable" => "Désactiver", "Enable" => "Activer", "Saving..." => "Sauvegarde...", @@ -20,6 +20,10 @@ "Security Warning" => "Alertes de sécurité", "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Votre répertoire de données et vos fichiers sont probablement accessibles depuis internet. Le fichier .htaccess fourni avec ownCloud ne fonctionne pas. Nous vous recommandons vivement de configurer votre serveur web de façon à ce que ce répertoire ne soit plus accessible, ou bien de déplacer le répertoire de données à l'extérieur de la racine du serveur web.", "Cron" => "Cron", +"Execute one task with each page loaded" => "Exécute une tâche à chaque chargement de page", +"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php est enregistré en tant que service webcron. Veuillez appeler la page cron.php située à la racine du serveur ownCoud via http toute les minutes.", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Utilise le service cron du système. Appelle le fichier cron.php du répertoire owncloud toutes les minutes grâce à une tâche cron du système.", +"Sharing" => "Partage", "Enable Share API" => "Activer l'API de partage", "Allow apps to use the Share API" => "Autoriser les applications à utiliser l'API de partage", "Allow links" => "Autoriser les liens", @@ -41,11 +45,10 @@ "Problems connecting to help database." => "Problème de connexion à la base de données d'aide.", "Go there manually." => "S'y rendre manuellement.", "Answer" => "Réponse", -"You use" => "Vous utilisez", -"of the available" => "de votre espace de stockage d'une taille totale de", +"You have used %s of the available %s" => "Vous avez utilisé %s des %s disponibles", "Desktop and Mobile Syncing Clients" => "Clients de synchronisation Mobile et Ordinateur", "Download" => "Télécharger", -"Your password got changed" => "Votre mot de passe a été changé", +"Your password was changed" => "Votre mot de passe a été changé", "Unable to change your password" => "Impossible de changer votre mot de passe", "Current password" => "Mot de passe actuel", "New password" => "Nouveau mot de passe", diff --git a/settings/l10n/gl.php b/settings/l10n/gl.php index 0cb1fbd646..a0fe098914 100644 --- a/settings/l10n/gl.php +++ b/settings/l10n/gl.php @@ -6,7 +6,6 @@ "OpenID Changed" => "Mudou o OpenID", "Invalid request" => "Petición incorrecta", "Language changed" => "O idioma mudou", -"Error" => "Erro", "Disable" => "Deshabilitar", "Enable" => "Habilitar", "Saving..." => "Gardando...", @@ -24,11 +23,8 @@ "Problems connecting to help database." => "Problemas conectando coa base de datos de axuda", "Go there manually." => "Ir manualmente.", "Answer" => "Resposta", -"You use" => "Vostede usa", -"of the available" => "dun total de", "Desktop and Mobile Syncing Clients" => "Cliente de sincronización de escritorio e móbil", "Download" => "Descargar", -"Your password got changed" => "O seu contrasinal mudou", "Unable to change your password" => "Incapaz de trocar o seu contrasinal", "Current password" => "Contrasinal actual", "New password" => "Novo contrasinal", diff --git a/settings/l10n/he.php b/settings/l10n/he.php index c7189e9435..bb98a876b8 100644 --- a/settings/l10n/he.php +++ b/settings/l10n/he.php @@ -19,11 +19,8 @@ "Problems connecting to help database." => "בעיות בהתחברות לבסיס נתוני העזרה", "Go there manually." => "גש לשם באופן ידני", "Answer" => "מענה", -"You use" => "הנך משתמש ", -"of the available" => "מתוך ", "Desktop and Mobile Syncing Clients" => "לקוחות סנכרון למחשב שולחני ולנייד", "Download" => "הורדה", -"Your password got changed" => "הססמה שלך שונתה", "Unable to change your password" => "לא ניתן לשנות את הססמה שלך", "Current password" => "ססמה נוכחית", "New password" => "ססמה חדשה", diff --git a/settings/l10n/hr.php b/settings/l10n/hr.php index de540cb50f..587974c8c7 100644 --- a/settings/l10n/hr.php +++ b/settings/l10n/hr.php @@ -6,7 +6,6 @@ "OpenID Changed" => "OpenID promijenjen", "Invalid request" => "Neispravan zahtjev", "Language changed" => "Jezik promijenjen", -"Error" => "Greška", "Disable" => "Isključi", "Enable" => "Uključi", "Saving..." => "Spremanje...", @@ -23,11 +22,8 @@ "Problems connecting to help database." => "Problem pri spajanju na bazu podataka pomoći", "Go there manually." => "Idite tamo ručno.", "Answer" => "Odgovor", -"You use" => "Koristite", -"of the available" => "od dostupno", "Desktop and Mobile Syncing Clients" => "Desktop i Mobile sinkronizaciji klijenti", "Download" => "preuzimanje", -"Your password got changed" => "Vaša lozinka je promijenjena", "Unable to change your password" => "Nemoguće promijeniti lozinku", "Current password" => "Trenutna lozinka", "New password" => "Nova lozinka", diff --git a/settings/l10n/hu_HU.php b/settings/l10n/hu_HU.php index 23534d8575..e58a0b6c19 100644 --- a/settings/l10n/hu_HU.php +++ b/settings/l10n/hu_HU.php @@ -6,7 +6,6 @@ "OpenID Changed" => "OpenID megváltozott", "Invalid request" => "Érvénytelen kérés", "Language changed" => "A nyelv megváltozott", -"Error" => "Hiba", "Disable" => "Letiltás", "Enable" => "Engedélyezés", "Saving..." => "Mentés...", @@ -23,11 +22,8 @@ "Problems connecting to help database." => "Sikertelen csatlakozás a Súgó adatbázishoz", "Go there manually." => "Menj oda kézzel", "Answer" => "Válasz", -"You use" => "Használatban: ", -"of the available" => ", rendelkezésre áll: ", "Desktop and Mobile Syncing Clients" => "Asztali- és mobilkliensek kezelése", "Download" => "Letöltés", -"Your password got changed" => "A jelszavad megváltozott", "Unable to change your password" => "Nem lehet megváltoztatni a jelszavad", "Current password" => "Jelenlegi jelszó", "New password" => "Új jelszó", diff --git a/settings/l10n/ia.php b/settings/l10n/ia.php index e9d6a065a2..398a59da13 100644 --- a/settings/l10n/ia.php +++ b/settings/l10n/ia.php @@ -10,10 +10,7 @@ "Documentation" => "Documentation", "Ask a question" => "Facer un question", "Answer" => "Responsa", -"You use" => "Tu usa", -"of the available" => "del disponibile", "Download" => "Discargar", -"Your password got changed" => "Tu contrasigno esseva cambiate", "Unable to change your password" => "Non pote cambiar tu contrasigno", "Current password" => "Contrasigno currente", "New password" => "Nove contrasigno", diff --git a/settings/l10n/id.php b/settings/l10n/id.php index 636be1af95..7ab21d7fea 100644 --- a/settings/l10n/id.php +++ b/settings/l10n/id.php @@ -20,11 +20,8 @@ "Problems connecting to help database." => "Bermasalah saat menghubungi database bantuan.", "Go there manually." => "Pergi kesana secara manual.", "Answer" => "Jawab", -"You use" => "Anda menggunakan", -"of the available" => "dari yang tersedia", "Desktop and Mobile Syncing Clients" => "Klien sync Desktop dan Mobile", "Download" => "Unduh", -"Your password got changed" => "Password anda telah dirubah", "Unable to change your password" => "Tidak dapat merubah password anda", "Current password" => "Password saat ini", "New password" => "Password baru", diff --git a/settings/l10n/it.php b/settings/l10n/it.php index 6359655b55..474149c836 100644 --- a/settings/l10n/it.php +++ b/settings/l10n/it.php @@ -13,7 +13,6 @@ "Language changed" => "Lingua modificata", "Unable to add user to group %s" => "Impossibile aggiungere l'utente al gruppo %s", "Unable to remove user from group %s" => "Impossibile rimuovere l'utente dal gruppo %s", -"Error" => "Errore", "Disable" => "Disabilita", "Enable" => "Abilita", "Saving..." => "Salvataggio in corso...", @@ -21,7 +20,10 @@ "Security Warning" => "Avviso di sicurezza", "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "La cartella dei dati e i tuoi file sono probabilmente accessibili da Internet.\nIl file .htaccess fornito da ownCloud non funziona. Ti consigliamo vivamente di configurare il server web in modo che la cartella dei dati non sia più accessibile e spostare la cartella fuori dalla radice del server web.", "Cron" => "Cron", +"Execute one task with each page loaded" => "Esegui un'operazione per ogni pagina caricata", "cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php è registrato su un servizio webcron. Chiama la pagina cron.php nella radice di owncloud ogni minuto su http.", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Usa il servizio cron di sistema. Chiama il file cron.php nella cartella di owncloud tramite una pianificazione del cron di sistema ogni minuto.", +"Sharing" => "Condivisione", "Enable Share API" => "Abilita API di condivisione", "Allow apps to use the Share API" => "Consenti alle applicazioni di utilizzare le API di condivisione", "Allow links" => "Consenti collegamenti", @@ -43,11 +45,10 @@ "Problems connecting to help database." => "Problemi di connessione al database di supporto.", "Go there manually." => "Raggiungilo manualmente.", "Answer" => "Risposta", -"You use" => "Stai utilizzando", -"of the available" => "su un totale di", +"You have used %s of the available %s" => "Hai utilizzato %s dei %s disponibili", "Desktop and Mobile Syncing Clients" => "Client di sincronizzazione desktop e mobile", "Download" => "Scaricamento", -"Your password got changed" => "La tua password è stata cambiata", +"Your password was changed" => "La tua password è cambiata", "Unable to change your password" => "Modifica password non riuscita", "Current password" => "Password attuale", "New password" => "Nuova password", diff --git a/settings/l10n/ja_JP.php b/settings/l10n/ja_JP.php index d675cc6836..72f79837d9 100644 --- a/settings/l10n/ja_JP.php +++ b/settings/l10n/ja_JP.php @@ -13,7 +13,6 @@ "Language changed" => "言語が変更されました", "Unable to add user to group %s" => "ユーザをグループ %s に追加できません", "Unable to remove user from group %s" => "ユーザをグループ %s から削除できません", -"Error" => "エラー", "Disable" => "無効", "Enable" => "有効", "Saving..." => "保存中...", @@ -21,7 +20,10 @@ "Security Warning" => "セキュリティ警告", "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "データディレクトリとファイルが恐らくインターネットからアクセスできるようになっています。ownCloudが提供する .htaccessファイルが機能していません。データディレクトリを全くアクセスできないようにするか、データディレクトリをウェブサーバのドキュメントルートの外に置くようにウェブサーバを設定することを強くお勧めします。", "Cron" => "cron(自動定期実行)", +"Execute one task with each page loaded" => "各ページの読み込み時にタスクを1つ実行する", "cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php は webcron サービスとして登録されています。HTTP経由で1分間に1回の頻度で owncloud のルートページ内の cron.php ページを呼び出します。", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "システムのcronサービスを利用する。1分に1回の頻度でシステムのcronジョブによりowncloudフォルダ内のcron.phpファイルを呼び出してください。", +"Sharing" => "共有中", "Enable Share API" => "Share APIを有効", "Allow apps to use the Share API" => "Share APIの使用をアプリケーションに許可", "Allow links" => "リンクを許可", @@ -43,11 +45,10 @@ "Problems connecting to help database." => "ヘルプデータベースへの接続時に問題が発生しました", "Go there manually." => "手動で移動してください。", "Answer" => "解答", -"You use" => "あなたは", -"of the available" => "を利用しています。利用可能容量:", +"You have used %s of the available %s" => "現在、%s / %s を利用しています", "Desktop and Mobile Syncing Clients" => "デスクトップおよびモバイル用の同期クライアント", "Download" => "ダウンロード", -"Your password got changed" => "パスワードは変更されました", +"Your password was changed" => "パスワードを変更しました", "Unable to change your password" => "パスワードを変更することができません", "Current password" => "現在のパスワード", "New password" => "新しいパスワード", diff --git a/settings/l10n/ko.php b/settings/l10n/ko.php index 3ea2674a18..b2c0080896 100644 --- a/settings/l10n/ko.php +++ b/settings/l10n/ko.php @@ -6,7 +6,6 @@ "OpenID Changed" => "OpenID 변경됨", "Invalid request" => "잘못된 요청", "Language changed" => "언어가 변경되었습니다", -"Error" => "에러", "Disable" => "비활성화", "Enable" => "활성화", "Saving..." => "저장...", @@ -24,11 +23,8 @@ "Problems connecting to help database." => "데이터베이스에 연결하는 데 문제가 발생하였습니다.", "Go there manually." => "직접 갈 수 있습니다.", "Answer" => "대답", -"You use" => "현재 사용 중:", -"of the available" => "사용 가능:", "Desktop and Mobile Syncing Clients" => "데스크탑 및 모바일 동기화 클라이언트", "Download" => "다운로드", -"Your password got changed" => "암호가 변경되었습니다", "Unable to change your password" => "암호를 변경할 수 없음", "Current password" => "현재 암호", "New password" => "새 암호", diff --git a/settings/l10n/lb.php b/settings/l10n/lb.php index d840a1d710..abad102bb5 100644 --- a/settings/l10n/lb.php +++ b/settings/l10n/lb.php @@ -6,7 +6,6 @@ "OpenID Changed" => "OpenID huet geännert", "Invalid request" => "Ongülteg Requête", "Language changed" => "Sprooch huet geännert", -"Error" => "Fehler", "Disable" => "Ofschalten", "Enable" => "Aschalten", "Saving..." => "Speicheren...", @@ -30,11 +29,8 @@ "Problems connecting to help database." => "Problemer sinn opgetrueden beim Versuch sech un d'Hëllef Datebank ze verbannen.", "Go there manually." => "Gei manuell dohinner.", "Answer" => "Äntwert", -"You use" => "Du benotz", -"of the available" => "vun den disponibelen", "Desktop and Mobile Syncing Clients" => "Desktop an Mobile Syncing Clienten", "Download" => "Download", -"Your password got changed" => "Däin Passwuert ass geännert ginn", "Unable to change your password" => "Konnt däin Passwuert net änneren", "Current password" => "Momentan 't Passwuert", "New password" => "Neit Passwuert", diff --git a/settings/l10n/lt_LT.php b/settings/l10n/lt_LT.php index 169892d6b2..09cb02d147 100644 --- a/settings/l10n/lt_LT.php +++ b/settings/l10n/lt_LT.php @@ -5,7 +5,6 @@ "OpenID Changed" => "OpenID pakeistas", "Invalid request" => "Klaidinga užklausa", "Language changed" => "Kalba pakeista", -"Error" => "Klaida", "Disable" => "Išjungti", "Enable" => "Įjungti", "Saving..." => "Saugoma..", @@ -20,10 +19,7 @@ "Ask a question" => "Užduoti klausimą", "Problems connecting to help database." => "Problemos jungiantis prie duomenų bazės", "Answer" => "Atsakyti", -"You use" => "Jūs naudojate", -"of the available" => "iš galimų", "Download" => "Atsisiųsti", -"Your password got changed" => "Jūsų slaptažodis buvo pakeistas", "Unable to change your password" => "Neįmanoma pakeisti slaptažodžio", "Current password" => "Dabartinis slaptažodis", "New password" => "Naujas slaptažodis", diff --git a/settings/l10n/lv.php b/settings/l10n/lv.php index 9780127890..829cda0f91 100644 --- a/settings/l10n/lv.php +++ b/settings/l10n/lv.php @@ -6,7 +6,6 @@ "OpenID Changed" => "OpenID nomainīts", "Invalid request" => "Nepareizs vaicājums", "Language changed" => "Valoda tika nomainīta", -"Error" => "Kļūme", "Disable" => "Atvienot", "Enable" => "Pievienot", "Saving..." => "Saglabā...", @@ -24,11 +23,8 @@ "Problems connecting to help database." => "Problēmas ar datubāzes savienojumu", "Go there manually." => "Nokļūt tur pašrocīgi", "Answer" => "Atbildēt", -"You use" => "Jūs iymantojat", -"of the available" => "no pieejamajiem", "Desktop and Mobile Syncing Clients" => "Desktop un mobīlo ierīču sinhronizācijas rīks", "Download" => "Lejuplādēt", -"Your password got changed" => "Jūsu parole tika nomainīta", "Unable to change your password" => "Nav iespējams nomainīt jūsu paroli", "Current password" => "Pašreizējā parole", "New password" => "Jauna parole", diff --git a/settings/l10n/mk.php b/settings/l10n/mk.php index ce89f3b40c..78d05660e7 100644 --- a/settings/l10n/mk.php +++ b/settings/l10n/mk.php @@ -19,11 +19,8 @@ "Problems connecting to help database." => "Проблем при поврзување со базата за помош", "Go there manually." => "Оди таму рачно.", "Answer" => "Одговор", -"You use" => "Вие користите", -"of the available" => "од достапните", "Desktop and Mobile Syncing Clients" => "Десктоп и мобилник клиенти за синхронизирање", "Download" => "Преземање", -"Your password got changed" => "Вашата лозинка беше сменета", "Unable to change your password" => "Вашата лозинка неможе да се смени", "Current password" => "Моментална лозинка", "New password" => "Нова лозинка", diff --git a/settings/l10n/ms_MY.php b/settings/l10n/ms_MY.php index a1d3007c89..1871998946 100644 --- a/settings/l10n/ms_MY.php +++ b/settings/l10n/ms_MY.php @@ -21,11 +21,8 @@ "Problems connecting to help database." => "Masalah menghubung untuk membantu pengkalan data", "Go there manually." => "Pergi ke sana secara manual", "Answer" => "Jawapan", -"You use" => "Anda menggunakan", -"of the available" => "yang tersedia", "Desktop and Mobile Syncing Clients" => "Klien Selarian untuk Desktop dan Mobile", "Download" => "Muat turun", -"Your password got changed" => "Kata laluan anda diubah", "Unable to change your password" => "Gagal mengubah kata laluan anda ", "Current password" => "Kata laluan semasa", "New password" => "Kata laluan baru", diff --git a/settings/l10n/nb_NO.php b/settings/l10n/nb_NO.php index 8a1f42b7bf..daeb1b78e7 100644 --- a/settings/l10n/nb_NO.php +++ b/settings/l10n/nb_NO.php @@ -6,7 +6,6 @@ "OpenID Changed" => "OpenID endret", "Invalid request" => "Ugyldig forespørsel", "Language changed" => "Språk endret", -"Error" => "Feil", "Disable" => "Slå avBehandle ", "Enable" => "Slå på", "Saving..." => "Lagrer...", @@ -24,11 +23,8 @@ "Problems connecting to help database." => "Problemer med å koble til hjelp-databasen", "Go there manually." => "Gå dit manuelt", "Answer" => "Svar", -"You use" => "Du bruker", -"of the available" => "av den tilgjengelige", "Desktop and Mobile Syncing Clients" => "Klienter for datamaskiner og mobile enheter", "Download" => "Last ned", -"Your password got changed" => "Passordet ditt ble endret", "Unable to change your password" => "Kunne ikke endre passordet ditt", "Current password" => "Nåværende passord", "New password" => "Nytt passord", diff --git a/settings/l10n/nl.php b/settings/l10n/nl.php index 098f29a06e..caff2ee2c2 100644 --- a/settings/l10n/nl.php +++ b/settings/l10n/nl.php @@ -13,7 +13,6 @@ "Language changed" => "Taal aangepast", "Unable to add user to group %s" => "Niet in staat om gebruiker toe te voegen aan groep %s", "Unable to remove user from group %s" => "Niet in staat om gebruiker te verwijderen uit groep %s", -"Error" => "Fout", "Disable" => "Uitschakelen", "Enable" => "Inschakelen", "Saving..." => "Aan het bewaren.....", @@ -21,7 +20,10 @@ "Security Warning" => "Veiligheidswaarschuwing", "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Uw data folder en uw bestanden zijn hoogst waarschijnlijk vanaf het internet bereikbaar. Het .htaccess bestand dat ownCloud meelevert werkt niet. Het is ten zeerste aangeraden om uw webserver zodanig te configureren, dat de data folder niet bereikbaar is vanaf het internet of verplaatst uw data folder naar een locatie buiten de webserver document root.", "Cron" => "Cron", +"Execute one task with each page loaded" => "Voer één taak uit met elke pagina die wordt geladen", "cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php is bij een webcron dienst geregistreerd. Roep de cron.php pagina in de owncloud root via http één maal per minuut op.", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Gebruik de systeem cron dienst. Gebruik, eens per minuut, het bestand cron.php in de owncloud map via de systeem cronjob.", +"Sharing" => "Delen", "Enable Share API" => "Zet de Deel API aan", "Allow apps to use the Share API" => "Sta apps toe om de Deel API te gebruiken", "Allow links" => "Sta links toe", @@ -43,11 +45,10 @@ "Problems connecting to help database." => "Problemen bij het verbinden met de helpdatabank.", "Go there manually." => "Ga er zelf heen.", "Answer" => "Beantwoord", -"You use" => "U gebruikt", -"of the available" => "van de beschikbare", +"You have used %s of the available %s" => "Je hebt %s gebruikt van de beschikbare %s", "Desktop and Mobile Syncing Clients" => "Desktop en mobiele synchronisatie apparaten", "Download" => "Download", -"Your password got changed" => "Uw wachtwoord is aangepast", +"Your password was changed" => "Je wachtwoord is veranderd", "Unable to change your password" => "Niet in staat om uw wachtwoord te wijzigen", "Current password" => "Huidig wachtwoord", "New password" => "Nieuw wachtwoord", diff --git a/settings/l10n/nn_NO.php b/settings/l10n/nn_NO.php index 25cf29b91d..d712f749bb 100644 --- a/settings/l10n/nn_NO.php +++ b/settings/l10n/nn_NO.php @@ -6,7 +6,6 @@ "OpenID Changed" => "OpenID endra", "Invalid request" => "Ugyldig førespurnad", "Language changed" => "Språk endra", -"Error" => "Feil", "Disable" => "Slå av", "Enable" => "Slå på", "__language_name__" => "Nynorsk", @@ -15,9 +14,6 @@ "Problems connecting to help database." => "Problem ved tilkopling til hjelpedatabasen.", "Go there manually." => "Gå der på eigen hand.", "Answer" => "Svar", -"You use" => "Du bruker", -"of the available" => "av dei tilgjengelege", -"Your password got changed" => "Passordet ditt er endra", "Unable to change your password" => "Klarte ikkje å endra passordet", "Current password" => "Passord", "New password" => "Nytt passord", diff --git a/settings/l10n/oc.php b/settings/l10n/oc.php new file mode 100644 index 0000000000..28835df95c --- /dev/null +++ b/settings/l10n/oc.php @@ -0,0 +1,61 @@ + "Pas possible de cargar la tièra dempuèi App Store", +"Authentication error" => "Error d'autentificacion", +"Group already exists" => "Lo grop existís ja", +"Unable to add group" => "Pas capable d'apondre un grop", +"Could not enable app. " => "Pòt pas activar app. ", +"Email saved" => "Corrièl enregistrat", +"Invalid email" => "Corrièl incorrècte", +"OpenID Changed" => "OpenID cambiat", +"Invalid request" => "Demanda invalida", +"Unable to delete group" => "Pas capable d'escafar un grop", +"Unable to delete user" => "Pas capable d'escafar un usancièr", +"Language changed" => "Lengas cambiadas", +"Unable to add user to group %s" => "Pas capable d'apondre un usancièr al grop %s", +"Unable to remove user from group %s" => "Pas capable de tira un usancièr del grop %s", +"Disable" => "Desactiva", +"Enable" => "Activa", +"Saving..." => "Enregistra...", +"__language_name__" => "__language_name__", +"Security Warning" => "Avertiment de securitat", +"Cron" => "Cron", +"Execute one task with each page loaded" => "Executa un prètfach amb cada pagina cargada", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Utiliza lo servici cron de ton sistèm operatiu. Executa lo fichièr cron.php dins lo dorsier owncloud tras cronjob del sistèm cada minuta.", +"Sharing" => "Al partejar", +"Enable Share API" => "Activa API partejada", +"Log" => "Jornal", +"More" => "Mai d'aquò", +"Add your App" => "Ajusta ton App", +"Select an App" => "Selecciona una applicacion", +"See application page at apps.owncloud.com" => "Agacha la pagina d'applications en cò de apps.owncloud.com", +"-licensed by " => "-licençiat per ", +"Documentation" => "Documentacion", +"Managing Big Files" => "Al bailejar de fichièrs pesucasses", +"Ask a question" => "Respond a una question", +"Problems connecting to help database." => "Problemas al connectar de la basa de donadas d'ajuda", +"Go there manually." => "Vas çai manualament", +"Answer" => "Responsa", +"You have used %s of the available %s" => "As utilizat %s dels %s disponibles", +"Download" => "Avalcarga", +"Your password was changed" => "Ton senhal a cambiat", +"Unable to change your password" => "Pas possible de cambiar ton senhal", +"Current password" => "Senhal en cors", +"New password" => "Senhal novèl", +"show" => "mòstra", +"Change password" => "Cambia lo senhal", +"Email" => "Corrièl", +"Your email address" => "Ton adreiça de corrièl", +"Fill in an email address to enable password recovery" => "Emplena una adreiça de corrièl per permetre lo mandadís del senhal perdut", +"Language" => "Lenga", +"Help translate" => "Ajuda a la revirada", +"use this address to connect to your ownCloud in your file manager" => "utiliza aquela adreiça per te connectar al ownCloud amb ton explorator de fichièrs", +"Name" => "Nom", +"Password" => "Senhal", +"Groups" => "Grops", +"Create" => "Crea", +"Default Quota" => "Quota per defaut", +"Other" => "Autres", +"Group Admin" => "Grop Admin", +"Quota" => "Quota", +"Delete" => "Escafa" +); diff --git a/settings/l10n/pl.php b/settings/l10n/pl.php index 7a3dfdfdde..432b303b0a 100644 --- a/settings/l10n/pl.php +++ b/settings/l10n/pl.php @@ -3,6 +3,7 @@ "Authentication error" => "Błąd uwierzytelniania", "Group already exists" => "Grupa już istnieje", "Unable to add group" => "Nie można dodać grupy", +"Could not enable app. " => "Nie można włączyć aplikacji.", "Email saved" => "Email zapisany", "Invalid email" => "Niepoprawny email", "OpenID Changed" => "Zmieniono OpenID", @@ -12,7 +13,6 @@ "Language changed" => "Język zmieniony", "Unable to add user to group %s" => "Nie można dodać użytkownika do grupy %s", "Unable to remove user from group %s" => "Nie można usunąć użytkownika z grupy %s", -"Error" => "Błąd", "Disable" => "Wyłączone", "Enable" => "Włączone", "Saving..." => "Zapisywanie...", @@ -20,6 +20,10 @@ "Security Warning" => "Ostrzeżenia bezpieczeństwa", "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Twój katalog danych i pliki są prawdopodobnie dostępne z Internetu. Plik .htaccess, który dostarcza ownCloud nie działa. Sugerujemy, aby skonfigurować serwer WWW w taki sposób, aby katalog danych nie był dostępny lub przenieść katalog danych poza główny katalog serwera WWW.", "Cron" => "Cron", +"Execute one task with each page loaded" => "Wykonanie jednego zadania z każdej strony wczytywania", +"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php jest zarejestrowany w usłudze webcron. Przywołaj stronę cron.php w katalogu głównym owncloud raz na minute przez http.", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Użyj usługi systemowej cron. Przywołaj plik cron.php z katalogu owncloud przez systemowe cronjob raz na minute.", +"Sharing" => "Udostępnianij", "Enable Share API" => "Włącz udostępniane API", "Allow apps to use the Share API" => "Zezwalaj aplikacjom na używanie API", "Allow links" => "Zezwalaj na łącza", @@ -41,11 +45,10 @@ "Problems connecting to help database." => "Problem z połączeniem z bazą danych.", "Go there manually." => "Przejdź na stronę ręcznie.", "Answer" => "Odpowiedź", -"You use" => "Używane", -"of the available" => "z dostępnych", +"You have used %s of the available %s" => "Używasz %s z dostępnych %s", "Desktop and Mobile Syncing Clients" => "Klienci synchronizacji", "Download" => "Ściągnij", -"Your password got changed" => "Zmieniono hasło", +"Your password was changed" => "Twoje hasło zostało zmienione", "Unable to change your password" => "Nie można zmienić hasła", "Current password" => "Bieżące hasło", "New password" => "Nowe hasło", diff --git a/settings/l10n/pt_BR.php b/settings/l10n/pt_BR.php index b5579d4f9e..ddfba1a670 100644 --- a/settings/l10n/pt_BR.php +++ b/settings/l10n/pt_BR.php @@ -1,32 +1,54 @@ "Não foi possivel carregar lista da App Store", "Authentication error" => "erro de autenticação", +"Group already exists" => "Grupo já existe", +"Unable to add group" => "Não foi possivel adicionar grupo", +"Could not enable app. " => "Não pôde habilitar aplicação", "Email saved" => "Email gravado", "Invalid email" => "Email inválido", "OpenID Changed" => "Mudou OpenID", "Invalid request" => "Pedido inválido", +"Unable to delete group" => "Não foi possivel remover grupo", +"Unable to delete user" => "Não foi possivel remover usuário", "Language changed" => "Mudou Idioma", -"Error" => "Erro", +"Unable to add user to group %s" => "Não foi possivel adicionar usuário ao grupo %s", +"Unable to remove user from group %s" => "Não foi possivel remover usuário ao grupo %s", "Disable" => "Desabilitado", "Enable" => "Habilitado", "Saving..." => "Gravando...", "__language_name__" => "Português", "Security Warning" => "Aviso de Segurança", +"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Seu diretório de dados e seus arquivos estão, provavelmente, acessíveis a partir da internet. O .htaccess que o ownCloud fornece não está funcionando. Nós sugerimos que você configure o seu servidor web de uma forma que o diretório de dados esteja mais acessível ou que você mova o diretório de dados para fora da raiz do servidor web.", +"Cron" => "Cron", +"Execute one task with each page loaded" => "Executa uma tarefa com cada página carregada", +"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php está registrado no serviço webcron. Chama a página cron.php na raíz do owncloud uma vez por minuto via http.", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Usa o serviço cron do sistema. Chama o arquivo cron.php na pasta do owncloud através do cronjob do sistema uma vez a cada minuto.", +"Sharing" => "Compartilhamento", +"Enable Share API" => "Habilitar API de Compartilhamento", +"Allow apps to use the Share API" => "Permitir aplicações a usar a API de Compartilhamento", +"Allow links" => "Permitir links", +"Allow users to share items to the public with links" => "Permitir usuários a compartilhar itens para o público com links", +"Allow resharing" => "Permitir re-compartilhamento", +"Allow users to share items shared with them again" => "Permitir usuário a compartilhar itens compartilhados com eles novamente", +"Allow users to share with anyone" => "Permitir usuários a compartilhar com qualquer um", +"Allow users to only share with users in their groups" => "Permitir usuários a somente compartilhar com usuários em seus respectivos grupos", "Log" => "Log", "More" => "Mais", +"Developed by the ownCloud community, the source code is licensed under the AGPL." => "Desenvolvido pela comunidade ownCloud, o código fonte está licenciado sob AGPL.", "Add your App" => "Adicione seu Aplicativo", "Select an App" => "Selecione uma Aplicação", "See application page at apps.owncloud.com" => "Ver página do aplicativo em apps.owncloud.com", +"-licensed by " => "-licenciado por ", "Documentation" => "Documentação", "Managing Big Files" => "Gerênciando Arquivos Grandes", "Ask a question" => "Faça uma pergunta", "Problems connecting to help database." => "Problemas ao conectar na base de dados.", "Go there manually." => "Ir manualmente.", "Answer" => "Resposta", -"You use" => "Você usa", -"of the available" => "do disponível", +"You have used %s of the available %s" => "Você usou %s do %s disponível", "Desktop and Mobile Syncing Clients" => "Sincronizando Desktop e Mobile", "Download" => "Download", -"Your password got changed" => "Sua senha foi modificada", +"Your password was changed" => "Sua senha foi alterada", "Unable to change your password" => "Não é possivel alterar a sua senha", "Current password" => "Senha atual", "New password" => "Nova senha", diff --git a/settings/l10n/pt_PT.php b/settings/l10n/pt_PT.php index bf5a742e1b..f7440d832a 100644 --- a/settings/l10n/pt_PT.php +++ b/settings/l10n/pt_PT.php @@ -6,7 +6,6 @@ "OpenID Changed" => "OpenID alterado", "Invalid request" => "Pedido inválido", "Language changed" => "Idioma alterado", -"Error" => "Erro", "Disable" => "Desativar", "Enable" => "Ativar", "Saving..." => "A guardar...", @@ -24,11 +23,8 @@ "Problems connecting to help database." => "Problemas ao conectar à base de dados de ajuda", "Go there manually." => "Vá lá manualmente", "Answer" => "Resposta", -"You use" => "Está a usar", -"of the available" => "do disponível", "Desktop and Mobile Syncing Clients" => "Clientes de sincronização desktop e movel", "Download" => "Transferir", -"Your password got changed" => "A sua palavra-chave foi alterada", "Unable to change your password" => "Não foi possivel alterar a sua palavra-chave", "Current password" => "Palavra-chave atual", "New password" => "Nova palavra-chave", diff --git a/settings/l10n/ro.php b/settings/l10n/ro.php index e072daa991..ee0d804716 100644 --- a/settings/l10n/ro.php +++ b/settings/l10n/ro.php @@ -1,34 +1,54 @@ "Imposibil de încărcat lista din App Store", "Authentication error" => "Eroare de autentificare", +"Group already exists" => "Grupul există deja", +"Unable to add group" => "Nu s-a putut adăuga grupul", +"Could not enable app. " => "Nu s-a putut activa aplicația.", "Email saved" => "E-mail salvat", "Invalid email" => "E-mail nevalid", "OpenID Changed" => "OpenID schimbat", "Invalid request" => "Cerere eronată", +"Unable to delete group" => "Nu s-a putut șterge grupul", +"Unable to delete user" => "Nu s-a putut șterge utilizatorul", "Language changed" => "Limba a fost schimbată", -"Error" => "Erroare", +"Unable to add user to group %s" => "Nu s-a putut adăuga utilizatorul la grupul %s", +"Unable to remove user from group %s" => "Nu s-a putut elimina utilizatorul din grupul %s", "Disable" => "Dezactivați", "Enable" => "Activați", "Saving..." => "Salvez...", "__language_name__" => "_language_name_", "Security Warning" => "Avertisment de securitate", +"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Directorul tău de date și fișierele tale probabil sunt accesibile prin internet. Fișierul .htaccess oferit de ownCloud nu funcționează. Îți recomandăm să configurezi server-ul tău web într-un mod în care directorul de date să nu mai fie accesibil sau mută directorul de date în afara directorului root al server-ului web.", "Cron" => "Cron", +"Execute one task with each page loaded" => "Execută o sarcină la fiecare pagină încărcată", +"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php este înregistrat în serviciul webcron. Accesează pagina cron.php din root-ul owncloud odată pe minut prin http.", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Folosește serviciul cron al sistemului. Accesează fișierul cron.php din directorul owncloud printr-un cronjob de sistem odată la fiecare minut.", +"Sharing" => "Partajare", +"Enable Share API" => "Activare API partajare", +"Allow apps to use the Share API" => "Permite aplicațiilor să folosească API-ul de partajare", +"Allow links" => "Pemite legături", +"Allow users to share items to the public with links" => "Permite utilizatorilor să partajeze fișiere în mod public prin legături", +"Allow resharing" => "Permite repartajarea", +"Allow users to share items shared with them again" => "Permite utilizatorilor să repartajeze fișiere partajate cu ei", +"Allow users to share with anyone" => "Permite utilizatorilor să partajeze cu oricine", +"Allow users to only share with users in their groups" => "Permite utilizatorilor să partajeze doar cu utilizatori din același grup", "Log" => "Jurnal de activitate", "More" => "Mai mult", +"Developed by the ownCloud community, the source code is licensed under the AGPL." => "Dezvoltat de the comunitatea ownCloud, codul sursă este licențiat sub AGPL.", "Add your App" => "Adaugă aplicația ta", "Select an App" => "Selectează o aplicație", "See application page at apps.owncloud.com" => "Vizualizează pagina applicației pe apps.owncloud.com", +"-licensed by " => "-licențiat ", "Documentation" => "Documetație", "Managing Big Files" => "Gestionînd fișiere mari", "Ask a question" => "Întreabă", "Problems connecting to help database." => "Probleme de conectare la baza de date.", "Go there manually." => "Pe cale manuală.", "Answer" => "Răspuns", -"You use" => "Utilizezi", -"of the available" => "din cele diponibile", +"You have used %s of the available %s" => "Ai utilizat %s din %s spațiu disponibil", "Desktop and Mobile Syncing Clients" => "Clienți de sincronizare pentru telefon mobil și desktop", "Download" => "Descărcări", -"Your password got changed" => "Parola ta s-a schimbat", +"Your password was changed" => "Parola a fost modificată", "Unable to change your password" => "Imposibil de-ați schimbat parola", "Current password" => "Parola curentă", "New password" => "Noua parolă", diff --git a/settings/l10n/ru.php b/settings/l10n/ru.php index 7ae8d53174..b658a4bbaf 100644 --- a/settings/l10n/ru.php +++ b/settings/l10n/ru.php @@ -12,7 +12,6 @@ "Language changed" => "Язык изменён", "Unable to add user to group %s" => "Невозможно добавить пользователя в группу %s", "Unable to remove user from group %s" => "Невозможно удалить пользователя из группы %s", -"Error" => "Ошибка", "Disable" => "Выключить", "Enable" => "Включить", "Saving..." => "Сохранение...", @@ -41,11 +40,8 @@ "Problems connecting to help database." => "Проблема соединения с базой данных помощи.", "Go there manually." => "Войти самостоятельно.", "Answer" => "Ответ", -"You use" => "Вы используете", -"of the available" => "из доступных", "Desktop and Mobile Syncing Clients" => "Клиенты синхронизации для рабочих станций и мобильных устройств", "Download" => "Загрузка", -"Your password got changed" => "Ваш пароль был изменён", "Unable to change your password" => "Невозможно сменить пароль", "Current password" => "Текущий пароль", "New password" => "Новый пароль", diff --git a/settings/l10n/ru_RU.php b/settings/l10n/ru_RU.php index 2b7400968a..a61b40e4fb 100644 --- a/settings/l10n/ru_RU.php +++ b/settings/l10n/ru_RU.php @@ -3,6 +3,7 @@ "Authentication error" => "Ошибка авторизации", "Group already exists" => "Группа уже существует", "Unable to add group" => "Невозможно добавить группу", +"Could not enable app. " => "Не удалось запустить приложение", "Email saved" => "Email сохранен", "Invalid email" => "Неверный email", "OpenID Changed" => "OpenID изменен", @@ -12,17 +13,26 @@ "Language changed" => "Язык изменен", "Unable to add user to group %s" => "Невозможно добавить пользователя в группу %s", "Unable to remove user from group %s" => "Невозможно удалить пользователя из группы %s", -"Error" => "Ошибка", "Disable" => "Отключить", "Enable" => "Включить", "Saving..." => "Сохранение", "__language_name__" => "__язык_имя__", "Security Warning" => "Предупреждение системы безопасности", +"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Ваш каталог данных и файлы возможно доступны из Интернета. Файл .htaccess, предоставляемый ownCloud, не работает. Мы настоятельно рекомендуем Вам настроить сервер таким образом, чтобы каталог данных был бы больше не доступен, или переместить каталог данных за пределы корневой папки веб-сервера.", "Cron" => "Cron", +"Execute one task with each page loaded" => "Выполняйте одну задачу на каждой загружаемой странице", +"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php зарегистрирован в службе webcron. Обращайтесь к странице cron.php в корне owncloud раз в минуту по http.", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Используйте системный сервис cron. Исполняйте файл cron.php в папке owncloud с помощью системы cronjob раз в минуту.", +"Sharing" => "Совместное использование", "Enable Share API" => "Включить разделяемые API", +"Allow apps to use the Share API" => "Разрешить приложениям использовать Share API", "Allow links" => "Предоставить ссылки", +"Allow resharing" => "Разрешить повторное совместное использование", +"Allow users to share with anyone" => "Разрешить пользователям разделение с кем-либо", +"Allow users to only share with users in their groups" => "Разрешить пользователям разделение только с пользователями в их группах", "Log" => "Вход", "More" => "Подробнее", +"Developed by the ownCloud community, the source code is licensed under the AGPL." => "Разработанный ownCloud community, the source code is licensed under the AGPL.", "Add your App" => "Добавить Ваше приложение", "Select an App" => "Выбрать приложение", "See application page at apps.owncloud.com" => "Обратитесь к странице приложений на apps.owncloud.com", @@ -30,13 +40,11 @@ "Documentation" => "Документация", "Managing Big Files" => "Управление большими файлами", "Ask a question" => "Задать вопрос", +"Problems connecting to help database." => "Проблемы, связанные с разделом Помощь базы данных", "Go there manually." => "Сделать вручную.", "Answer" => "Ответ", -"You use" => "Вы используете", -"of the available" => "из доступных", "Desktop and Mobile Syncing Clients" => "Клиенты синхронизации настольной и мобильной систем", "Download" => "Загрузка", -"Your password got changed" => "Ваш пароль был изменен", "Unable to change your password" => "Невозможно изменить Ваш пароль", "Current password" => "Текущий пароль", "New password" => "Новый пароль", @@ -54,6 +62,7 @@ "Create" => "Создать", "Default Quota" => "Квота по умолчанию", "Other" => "Другой", +"Group Admin" => "Группа Admin", "Quota" => "квота", "Delete" => "Удалить" ); diff --git a/settings/l10n/sk_SK.php b/settings/l10n/sk_SK.php index f8032afe5b..ebbd495df7 100644 --- a/settings/l10n/sk_SK.php +++ b/settings/l10n/sk_SK.php @@ -1,29 +1,47 @@ "Nie je možné nahrať zoznam z App Store", +"Authentication error" => "Chyba pri autentifikácii", +"Group already exists" => "Skupina už existuje", +"Unable to add group" => "Nie je možné pridať skupinu", +"Could not enable app. " => "Nie je možné zapnúť aplikáciu.", "Email saved" => "Email uložený", "Invalid email" => "Neplatný email", "OpenID Changed" => "OpenID zmenené", "Invalid request" => "Neplatná požiadavka", +"Unable to delete group" => "Nie je možné zmazať skupinu", +"Unable to delete user" => "Nie je možné zmazať užívateľa", "Language changed" => "Jazyk zmenený", +"Unable to add user to group %s" => "Nie je možné pridať užívateľa do skupiny %s", +"Unable to remove user from group %s" => "Nie je možné zmazať užívateľa zo skupiny %s", "Disable" => "Zakázať", "Enable" => "Povoliť", "Saving..." => "Ukladám...", "__language_name__" => "Slovensky", +"Security Warning" => "Bezpečnostné varovanie", +"Sharing" => "Zdieľanie", +"Enable Share API" => "Zapnúť API zdieľania", +"Allow apps to use the Share API" => "Povoliť aplikáciam používať API pre zdieľanie", +"Allow links" => "Povoliť odkazy", +"Allow users to share items to the public with links" => "Povoliť užívateľom zdieľať obsah pomocou verejných odkazov", +"Allow resharing" => "Povoliť opakované zdieľanie", +"Allow users to share with anyone" => "Povoliť užívateľom zdieľať s každým", +"Allow users to only share with users in their groups" => "Povoliť užívateľom zdieľanie iba s užívateľmi ich vlastnej skupiny", "Log" => "Záznam", "More" => "Viac", "Add your App" => "Pridať vašu aplikáciu", "Select an App" => "Vyberte aplikáciu", "See application page at apps.owncloud.com" => "Pozrite si stránku aplikácie na apps.owncloud.com", +"-licensed by " => "-licencované ", "Documentation" => "Dokumentácia", "Managing Big Files" => "Spravovanie veľké súbory", "Ask a question" => "Opýtajte sa otázku", "Problems connecting to help database." => "Problémy spojené s pomocnou databázou.", "Go there manually." => "Prejsť tam ručne.", "Answer" => "Odpoveď", -"You use" => "Používate", -"of the available" => "z dostupných", +"You have used %s of the available %s" => "Použili ste %s dostupného %s", "Desktop and Mobile Syncing Clients" => "Klienti pre synchronizáciu", "Download" => "Stiahnúť", -"Your password got changed" => "Vaše heslo sa zmenilo", +"Your password was changed" => "Heslo bolo zmenené", "Unable to change your password" => "Nedokážem zmeniť vaše heslo", "Current password" => "Aktuálne heslo", "New password" => "Nové heslo", @@ -41,6 +59,7 @@ "Create" => "Vytvoriť", "Default Quota" => "Predvolená kvóta", "Other" => "Iné", +"Group Admin" => "Správca skupiny", "Quota" => "Kvóta", "Delete" => "Odstrániť" ); diff --git a/settings/l10n/sl.php b/settings/l10n/sl.php index b15a70aef1..7f23d9dbc9 100644 --- a/settings/l10n/sl.php +++ b/settings/l10n/sl.php @@ -13,7 +13,6 @@ "Language changed" => "Jezik je bil spremenjen", "Unable to add user to group %s" => "Uporabnika ni mogoče dodati k skupini %s", "Unable to remove user from group %s" => "Uporabnika ni mogoče odstraniti iz skupine %s", -"Error" => "Napaka", "Disable" => "Onemogoči", "Enable" => "Omogoči", "Saving..." => "Shranjevanje...", @@ -21,7 +20,10 @@ "Security Warning" => "Varnostno opozorilo", "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Vaša mapa data in vaše datoteke so verjetno vsem dostopne preko interneta. Datoteka .htaccess vključena v ownCloud ni omogočena. Močno vam priporočamo, da nastavite vaš spletni strežnik tako, da mapa data ne bo več na voljo vsem, ali pa jo preselite izven korenske mape spletnega strežnika.", "Cron" => "Periodično opravilo", +"Execute one task with each page loaded" => "Izvede eno opravilo z vsako naloženo stranjo.", "cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "Datoteka cron.php je prijavljena pri enem od spletnih servisov za periodična opravila. Preko protokola http pokličite datoteko cron.php, ki se nahaja v ownCloud korenski mapi, enkrat na minuto.", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Uporabi sistemski servis za periodična opravila. Preko sistemskega servisa pokličite datoteko cron.php, ki se nahaja v ownCloud korenski mapi, enkrat na minuto.", +"Sharing" => "Souporaba", "Enable Share API" => "Omogoči API souporabe", "Allow apps to use the Share API" => "Aplikacijam dovoli uporabo API-ja souporabe", "Allow links" => "Dovoli povezave", @@ -43,11 +45,10 @@ "Problems connecting to help database." => "Težave pri povezovanju s podatkovno zbirko pomoči.", "Go there manually." => "Pojdi tja ročno.", "Answer" => "Odgovor", -"You use" => "Uporabljate", -"of the available" => "od razpoložljivih", +"You have used %s of the available %s" => "Uporabili ste %s od razpoložljivih %s", "Desktop and Mobile Syncing Clients" => "Namizni in mobilni odjemalci za sinhronizacijo", "Download" => "Prenesi", -"Your password got changed" => "Vaše geslo je bilo spremenjeno", +"Your password was changed" => "Vaše geslo je bilo spremenjeno", "Unable to change your password" => "Vašega gesla ni bilo mogoče spremeniti.", "Current password" => "Trenutno geslo", "New password" => "Novo geslo", diff --git a/settings/l10n/sr.php b/settings/l10n/sr.php index 84881c2f1a..3fc1cd8c1e 100644 --- a/settings/l10n/sr.php +++ b/settings/l10n/sr.php @@ -7,9 +7,6 @@ "Problems connecting to help database." => "Проблем у повезивању са базом помоћи", "Go there manually." => "Отиђите тамо ручно.", "Answer" => "Одговор", -"You use" => "Користите", -"of the available" => "од доступних", -"Your password got changed" => "Ваша лозинка је измењена", "Unable to change your password" => "Не могу да изменим вашу лозинку", "Current password" => "Тренутна лозинка", "New password" => "Нова лозинка", diff --git a/settings/l10n/sr@latin.php b/settings/l10n/sr@latin.php index 8bfc0fa989..5a85856979 100644 --- a/settings/l10n/sr@latin.php +++ b/settings/l10n/sr@latin.php @@ -7,9 +7,6 @@ "Problems connecting to help database." => "Problem u povezivanju sa bazom pomoći", "Go there manually." => "Otiđite tamo ručno.", "Answer" => "Odgovor", -"You use" => "Koristite", -"of the available" => "od dostupnih", -"Your password got changed" => "Vaša lozinka je izmenjena", "Unable to change your password" => "Ne mogu da izmenim vašu lozinku", "Current password" => "Trenutna lozinka", "New password" => "Nova lozinka", diff --git a/settings/l10n/sv.php b/settings/l10n/sv.php index 8886502044..8e6f0dbbd7 100644 --- a/settings/l10n/sv.php +++ b/settings/l10n/sv.php @@ -13,7 +13,6 @@ "Language changed" => "Språk ändrades", "Unable to add user to group %s" => "Kan inte lägga till användare i gruppen %s", "Unable to remove user from group %s" => "Kan inte radera användare från gruppen %s", -"Error" => "Fel", "Disable" => "Deaktivera", "Enable" => "Aktivera", "Saving..." => "Sparar...", @@ -21,7 +20,10 @@ "Security Warning" => "Säkerhetsvarning", "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Din datamapp och dina filer kan möjligen vara nåbara från internet. Filen .htaccess som ownCloud tillhandahåller fungerar inte. Vi rekommenderar starkt att du ställer in din webbserver på ett sätt så att datamappen inte är nåbar. Alternativt att ni flyttar datamappen utanför webbservern.", "Cron" => "Cron", +"Execute one task with each page loaded" => "Exekvera en uppgift vid varje sidladdning", "cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php är registrerad som en webcron-tjänst. Anropa cron.php sidan i ownCloud en gång i minuten över HTTP.", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Använd system-tjänsten cron. Anropa filen cron.php i ownCloud-mappen via ett cronjobb varje minut.", +"Sharing" => "Dela", "Enable Share API" => "Aktivera delat API", "Allow apps to use the Share API" => "Tillåt applikationer att använda delat API", "Allow links" => "Tillåt länkar", @@ -43,11 +45,10 @@ "Problems connecting to help database." => "Problem med att ansluta till hjälpdatabasen.", "Go there manually." => "Gå dit manuellt.", "Answer" => "Svar", -"You use" => "Du använder", -"of the available" => "av tillgängliga", +"You have used %s of the available %s" => "Du har använt %s av tillgängliga %s", "Desktop and Mobile Syncing Clients" => "Synkroniseringsklienter för dator och mobil", "Download" => "Ladda ner", -"Your password got changed" => "Ditt lösenord har ändrats", +"Your password was changed" => "Ditt lösenord har ändrats", "Unable to change your password" => "Kunde inte ändra ditt lösenord", "Current password" => "Nuvarande lösenord", "New password" => "Nytt lösenord", diff --git a/settings/l10n/th_TH.php b/settings/l10n/th_TH.php index 074c8128b4..c3ed4e859f 100644 --- a/settings/l10n/th_TH.php +++ b/settings/l10n/th_TH.php @@ -13,7 +13,6 @@ "Language changed" => "เปลี่ยนภาษาเรียบร้อยแล้ว", "Unable to add user to group %s" => "ไม่สามารถเพิ่มผู้ใช้งานเข้าไปที่กลุ่ม %s ได้", "Unable to remove user from group %s" => "ไม่สามารถลบผู้ใช้งานออกจากกลุ่ม %s ได้", -"Error" => "ข้อผิดพลาด", "Disable" => "ปิดใช้งาน", "Enable" => "เปิดใช้งาน", "Saving..." => "กำลังบันทึุกข้อมูล...", @@ -21,7 +20,10 @@ "Security Warning" => "คำเตือนเกี่ยวกับความปลอดภัย", "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "ไดเร็กทอรี่ข้อมูลและไฟล์ของคุณสามารถเข้าถึงได้จากอินเทอร์เน็ต ไฟล์ .htaccess ที่ ownCloud มีให้ไม่สามารถทำงานได้อย่างเหมาะสม เราขอแนะนำให้คุณกำหนดค่าเว็บเซิร์ฟเวอร์ใหม่ในรูปแบบที่ไดเร็กทอรี่เก็บข้อมูลไม่สามารถเข้าถึงได้อีกต่อไป หรือคุณได้ย้ายไดเร็กทอรี่ที่ใช้เก็บข้อมูลไปอยู่ภายนอกตำแหน่ง root ของเว็บเซิร์ฟเวอร์แล้ว", "Cron" => "Cron", +"Execute one task with each page loaded" => "ประมวลคำสั่งหนึ่งงานในแต่ละครั้งที่มีการโหลดหน้าเว็บ", "cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php ได้รับการลงทะเบียนแล้วกับเว็บผู้ให้บริการ webcron เรียกหน้าเว็บ cron.php ที่ตำแหน่ง root ของ owncloud หลังจากนี้สักครู่ผ่านทาง http", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "ใช้บริการ cron จากระบบ เรียกไฟล์ cron.php ในโฟลเดอร์ owncloud ผ่านทาง cronjob ของระบบหลังจากนี้สักครู่", +"Sharing" => "การแชร์ข้อมูล", "Enable Share API" => "เปิดใช้งาน API สำหรับคุณสมบัติแชร์ข้อมูล", "Allow apps to use the Share API" => "อนุญาตให้แอปฯสามารถใช้ API สำหรับแชร์ข้อมูลได้", "Allow links" => "อนุญาตให้ใช้งานลิงก์ได้", @@ -43,11 +45,10 @@ "Problems connecting to help database." => "เกิดปัญหาในการเชื่อมต่อกับฐานข้อมูลช่วยเหลือ", "Go there manually." => "ไปที่นั่นด้วยตนเอง", "Answer" => "คำตอบ", -"You use" => "คุณใช้พื้นที่ไป", -"of the available" => "จากจำนวนที่ใช้ได้", +"You have used %s of the available %s" => "คุณได้ใช้ %s จากที่สามารถใช้ได้ %s", "Desktop and Mobile Syncing Clients" => "โปรแกรมเชื่อมข้อมูลไฟล์สำหรับเครื่องเดสก์ท็อปและมือถือ", "Download" => "ดาวน์โหลด", -"Your password got changed" => "เปลี่ยนรหัสผ่านเรียบร้อยแล้ว", +"Your password was changed" => "รหัสผ่านของคุณถูกเปลี่ยนแล้ว", "Unable to change your password" => "ไม่สามารถเปลี่ยนรหัสผ่านของคุณได้", "Current password" => "รหัสผ่านปัจจุบัน", "New password" => "รหัสผ่านใหม่", diff --git a/settings/l10n/tr.php b/settings/l10n/tr.php index 6e68d792e7..31486c7776 100644 --- a/settings/l10n/tr.php +++ b/settings/l10n/tr.php @@ -21,11 +21,8 @@ "Problems connecting to help database." => "Yardım veritabanına bağlanmada sorunlar var.", "Go there manually." => "Oraya elle gidin.", "Answer" => "Cevap", -"You use" => "Kullanıyorsunuz", -"of the available" => "mevcut olandan", "Desktop and Mobile Syncing Clients" => "Masaüstü ve Mobil Senkron İstemcileri", "Download" => "İndir", -"Your password got changed" => "Parolanız değiştirildi", "Unable to change your password" => "Parolanız değiştirilemiyor", "Current password" => "Mevcut parola", "New password" => "Yeni parola", diff --git a/settings/l10n/uk.php b/settings/l10n/uk.php index 37ecd73fb6..82b6881dfc 100644 --- a/settings/l10n/uk.php +++ b/settings/l10n/uk.php @@ -5,9 +5,6 @@ "Select an App" => "Вибрати додаток", "Ask a question" => "Запитати", "Problems connecting to help database." => "Проблема при з'єднані з базою допомоги", -"You use" => "Ви використовуєте", -"of the available" => "з доступної", -"Your password got changed" => "Ваш пароль змінено", "Current password" => "Поточний пароль", "New password" => "Новий пароль", "show" => "показати", diff --git a/settings/l10n/vi.php b/settings/l10n/vi.php index ade8a02131..18de6a6068 100644 --- a/settings/l10n/vi.php +++ b/settings/l10n/vi.php @@ -12,7 +12,6 @@ "Language changed" => "Ngôn ngữ đã được thay đổi", "Unable to add user to group %s" => "Không thể thêm người dùng vào nhóm %s", "Unable to remove user from group %s" => "Không thể xóa người dùng từ nhóm %s", -"Error" => "Lỗi", "Disable" => "Vô hiệu", "Enable" => "Cho phép", "Saving..." => "Đang tiến hành lưu ...", @@ -41,11 +40,8 @@ "Problems connecting to help database." => "Vấn đề kết nối đến cơ sở dữ liệu.", "Go there manually." => "Đến bằng thủ công", "Answer" => "trả lời", -"You use" => "Bạn sử dụng", -"of the available" => "có sẵn", "Desktop and Mobile Syncing Clients" => "Đồng bộ dữ liệu", "Download" => "Tải về", -"Your password got changed" => "Mật khẩu đã được thay đổi", "Unable to change your password" => "Không thể đổi mật khẩu", "Current password" => "Mật khẩu cũ", "New password" => "Mật khẩu mới ", diff --git a/settings/l10n/zh_CN.GB2312.php b/settings/l10n/zh_CN.GB2312.php index 83111beb10..26bfbbd7ae 100644 --- a/settings/l10n/zh_CN.GB2312.php +++ b/settings/l10n/zh_CN.GB2312.php @@ -1,34 +1,54 @@ "不能从App Store 中加载列表", "Authentication error" => "认证错误", +"Group already exists" => "群组已存在", +"Unable to add group" => "未能添加群组", +"Could not enable app. " => "未能启用应用", "Email saved" => "Email 保存了", "Invalid email" => "非法Email", "OpenID Changed" => "OpenID 改变了", "Invalid request" => "非法请求", +"Unable to delete group" => "未能删除群组", +"Unable to delete user" => "未能删除用户", "Language changed" => "语言改变了", -"Error" => "错误", +"Unable to add user to group %s" => "未能添加用户到群组 %s", +"Unable to remove user from group %s" => "未能将用户从群组 %s 移除", "Disable" => "禁用", "Enable" => "启用", "Saving..." => "保存中...", "__language_name__" => "Chinese", "Security Warning" => "安全警告", +"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "您的数据文件夹和您的文件可能可以从互联网访问。ownCloud 提供的 .htaccess 文件未工作。我们强烈建议您配置您的网络服务器,让数据文件夹不能访问,或将数据文件夹移出网络服务器文档根目录。", "Cron" => "定时", +"Execute one task with each page loaded" => "在每个页面载入时执行一项任务", +"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php 已作为 webcron 服务注册。owncloud 根用户将通过 http 协议每分钟调用一次 cron.php。", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "使用系统 cron 服务。通过系统 cronjob 每分钟调用一次 owncloud 文件夹下的 cron.php", +"Sharing" => "分享", +"Enable Share API" => "启用分享 API", +"Allow apps to use the Share API" => "允许应用使用分享 API", +"Allow links" => "允许链接", +"Allow users to share items to the public with links" => "允许用户使用链接与公众分享条目", +"Allow resharing" => "允许重复分享", +"Allow users to share items shared with them again" => "允许用户再次分享已经分享过的条目", +"Allow users to share with anyone" => "允许用户与任何人分享", +"Allow users to only share with users in their groups" => "只允许用户与群组内用户分享", "Log" => "日志", "More" => "更多", +"Developed by the ownCloud community, the source code is licensed under the AGPL." => "由 ownCloud 社区开发,s源代码AGPL 许可协议发布。", "Add your App" => "添加你的应用程序", "Select an App" => "选择一个程序", "See application page at apps.owncloud.com" => "在owncloud.com上查看应用程序", +"-licensed by " => "授权协议 ", "Documentation" => "文档", "Managing Big Files" => "管理大文件", "Ask a question" => "提一个问题", "Problems connecting to help database." => "连接到帮助数据库时的问题", "Go there manually." => "收到转到.", "Answer" => "回答", -"You use" => "你使用", -"of the available" => "可用的", +"You have used %s of the available %s" => "您已使用了 %s,总可用 %s", "Desktop and Mobile Syncing Clients" => "桌面和移动同步客户端", "Download" => "下载", -"Your password got changed" => "你的密码已经改变", +"Your password was changed" => "您的密码以变更", "Unable to change your password" => "不能改变你的密码", "Current password" => "现在的密码", "New password" => "新密码", @@ -46,6 +66,7 @@ "Create" => "新建", "Default Quota" => "默认限额", "Other" => "其他的", +"Group Admin" => "群组管理员", "Quota" => "限额", "Delete" => "删除" ); diff --git a/settings/l10n/zh_CN.php b/settings/l10n/zh_CN.php index 89115f6c7c..31063d3a01 100644 --- a/settings/l10n/zh_CN.php +++ b/settings/l10n/zh_CN.php @@ -1,27 +1,29 @@ "无法从应用商店载入列表", "Authentication error" => "认证错误", -"Group already exists" => "已存在组", -"Unable to add group" => "不能添加组", +"Group already exists" => "已存在该组", +"Unable to add group" => "无法添加组", "Could not enable app. " => "无法开启App", "Email saved" => "电子邮件已保存", "Invalid email" => "无效的电子邮件", "OpenID Changed" => "OpenID 已修改", "Invalid request" => "非法请求", -"Unable to delete group" => "不能删除组", -"Unable to delete user" => "不能删除用户", +"Unable to delete group" => "无法删除组", +"Unable to delete user" => "无法删除用户", "Language changed" => "语言已修改", -"Unable to add user to group %s" => "不能把用户添加到组 %s", -"Unable to remove user from group %s" => "不能从组%s中移除用户", -"Error" => "错误", +"Unable to add user to group %s" => "无法把用户添加到组 %s", +"Unable to remove user from group %s" => "无法从组%s中移除用户", "Disable" => "禁用", "Enable" => "启用", "Saving..." => "正在保存", "__language_name__" => "简体中文", "Security Warning" => "安全警告", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "您的数据文件夹和文件可由互联网访问。OwnCloud提供的.htaccess文件未生效。我们强烈建议您配置服务器,以使数据文件夹不可被访问,或者将数据文件夹移到web服务器以外。", +"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "您的数据文件夹和文件可由互联网访问。OwnCloud提供的.htaccess文件未生效。我们强烈建议您配置服务器,以使数据文件夹不可被访问,或者将数据文件夹移到web服务器根目录以外。", "Cron" => "计划任务", +"Execute one task with each page loaded" => "每次页面加载完成后执行任务", "cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php已被注册到网络定时任务服务。通过http每分钟调用owncloud根目录的cron.php网页。", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "使用系统定时任务服务。每分钟通过系统定时任务调用owncloud文件夹中的cron.php文件", +"Sharing" => "分享", "Enable Share API" => "开启共享API", "Allow apps to use the Share API" => "允许 应用 使用共享API", "Allow links" => "允许连接", @@ -43,11 +45,10 @@ "Problems connecting to help database." => "连接帮助数据库错误 ", "Go there manually." => "手动访问", "Answer" => "回答", -"You use" => "您使用了", -"of the available" => "的空间,总容量为", +"You have used %s of the available %s" => "您已使用空间: %s,总空间: %s", "Desktop and Mobile Syncing Clients" => "桌面和移动设备同步程序", "Download" => "下载", -"Your password got changed" => "密码已修改", +"Your password was changed" => "密码已修改", "Unable to change your password" => "无法修改密码", "Current password" => "当前密码", "New password" => "新密码", @@ -58,7 +59,7 @@ "Fill in an email address to enable password recovery" => "填写电子邮件地址以启用密码恢复", "Language" => "语言", "Help translate" => "帮助翻译", -"use this address to connect to your ownCloud in your file manager" => "在文件管理器中使用这个地址来连接到您的 ownCloud", +"use this address to connect to your ownCloud in your file manager" => "您可在文件管理器中使用该地址连接到ownCloud", "Name" => "名称", "Password" => "密码", "Groups" => "组", diff --git a/settings/l10n/zh_TW.php b/settings/l10n/zh_TW.php index 1a16215230..ccf67cef03 100644 --- a/settings/l10n/zh_TW.php +++ b/settings/l10n/zh_TW.php @@ -12,7 +12,6 @@ "Language changed" => "語言已變更", "Unable to add user to group %s" => "使用者加入群組%s錯誤", "Unable to remove user from group %s" => "使用者移出群組%s錯誤", -"Error" => "錯誤", "Disable" => "停用", "Enable" => "啟用", "Saving..." => "儲存中...", @@ -36,11 +35,8 @@ "Problems connecting to help database." => "連接到求助資料庫發生問題", "Go there manually." => "手動前往", "Answer" => "答案", -"You use" => "你使用", -"of the available" => "可用", "Desktop and Mobile Syncing Clients" => "桌機與手機同步客戶端", "Download" => "下載", -"Your password got changed" => "你的密碼已變更", "Unable to change your password" => "無法變更你的密碼", "Current password" => "目前密碼", "New password" => "新密碼", diff --git a/settings/templates/apps.php b/settings/templates/apps.php index 30f919ac75..0662148ebf 100644 --- a/settings/templates/apps.php +++ b/settings/templates/apps.php @@ -11,7 +11,7 @@
      -
    • data-id="" +
    • data-id="" data-type="" data-installed="1">